diff -Nru libreoffice-7.1.2~rc2/basic/qa/basic_coverage/test_ccur_method.vb libreoffice-7.1.3~rc2/basic/qa/basic_coverage/test_ccur_method.vb --- libreoffice-7.1.2~rc2/basic/qa/basic_coverage/test_ccur_method.vb 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/basic/qa/basic_coverage/test_ccur_method.vb 2021-04-28 16:17:45.000000000 +0000 @@ -7,10 +7,16 @@ ' Function doUnitTest as Integer + + doUnitTest = 0 + ' CCUR - If (CCur("100") <> 100) Then - doUnitTest = 0 - Else - doUnitTest = 1 - End If + if (CCur("100") <> 100) Then Exit Function + ' tdf#141050 - passing a number with + sign + if (CCur("+100") <> 100) Then Exit Function + ' tdf#141050 - passing a number with - sign + if (CCur("-100") <> -100) Then Exit Function + + doUnitTest = 1 + End Function diff -Nru libreoffice-7.1.2~rc2/basic/qa/basic_coverage/test_mod_operator.vb libreoffice-7.1.3~rc2/basic/qa/basic_coverage/test_mod_operator.vb --- libreoffice-7.1.2~rc2/basic/qa/basic_coverage/test_mod_operator.vb 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/basic/qa/basic_coverage/test_mod_operator.vb 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1,25 @@ +' +' 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/. +' + +Function doUnitTest as Integer + + doUnitTest = 0 + + Dim a As Double, b as Double + a = 16.4 + b = 5.9 + + ' tdf#141201 - MOD operands are rounded to Integer values before the operation is performed + if (a MOD b <> 4) Then Exit Function + if (16.4 MOD 5.9 <> 4) Then Exit Function + if (15.9 MOD 6.4 <> 4) Then Exit Function + if (2147483647.4 MOD 4 <> 3) Then Exit Function + + doUnitTest = 1 + +End Function diff -Nru libreoffice-7.1.2~rc2/basic/source/comp/exprnode.cxx libreoffice-7.1.3~rc2/basic/source/comp/exprnode.cxx --- libreoffice-7.1.2~rc2/basic/source/comp/exprnode.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/basic/source/comp/exprnode.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -27,6 +27,8 @@ #include +#include + SbiExprNode::SbiExprNode( std::unique_ptr l, SbiToken t, std::unique_ptr r ) : pLeft(std::move(l)), pRight(std::move(r)), @@ -294,8 +296,13 @@ { double nl = pLeft->nVal; double nr = pRight->nVal; + // tdf#141201 - round MOD literals to Integer values + if (eTok == MOD) + { + nl = rtl::math::round(nl); + nr = rtl::math::round(nr); + } tools::Long ll = 0, lr = 0; - tools::Long llMod = 0, lrMod = 0; if( ( eTok >= AND && eTok <= IMP ) || eTok == IDIV || eTok == MOD ) { @@ -322,8 +329,6 @@ nr = SbxMINLNG; } ll = static_cast(nl); lr = static_cast(nr); - llMod = static_cast(nl); - lrMod = static_cast(nr); if( bErr ) { pParser->Error( ERRCODE_BASIC_MATH_OVERFLOW ); @@ -388,7 +393,7 @@ { pParser->Error( ERRCODE_BASIC_ZERODIV ); nVal = HUGE_VAL; bError = true; - } else nVal = llMod - lrMod * (llMod/lrMod); + } else nVal = ll - lr * (ll/lr); eType = SbxLONG; break; case AND: nVal = static_cast( ll & lr ); eType = SbxLONG; break; diff -Nru libreoffice-7.1.2~rc2/basic/source/sbx/sbxcurr.cxx libreoffice-7.1.3~rc2/basic/source/sbx/sbxcurr.cxx --- libreoffice-7.1.2~rc2/basic/source/sbx/sbxcurr.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/basic/source/sbx/sbxcurr.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -106,7 +106,7 @@ OUStringBuffer sNormalisedNumString( sTmp.getLength() + nFractDigit ); if ( *p == '-' || *p == '+' ) - sNormalisedNumString.append( *p ); + sNormalisedNumString.append( *p++ ); while ( *p >= '0' && *p <= '9' ) { diff -Nru libreoffice-7.1.2~rc2/chart2/qa/extras/chart2import.cxx libreoffice-7.1.3~rc2/chart2/qa/extras/chart2import.cxx --- libreoffice-7.1.2~rc2/chart2/qa/extras/chart2import.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/chart2/qa/extras/chart2import.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -120,6 +120,7 @@ void testAxisTitleRotationXLSX(); void testAxisTitlePositionDOCX(); void testCombinedChartAttachedAxisXLSX(); + void testTdf140489MultiSeriesChartAxisXLSX(); void testTdf90510(); // Pie chart label placement settings(XLS) void testTdf109858(); // Pie chart label placement settings(XLSX) @@ -242,6 +243,7 @@ CPPUNIT_TEST(testAxisTitleRotationXLSX); CPPUNIT_TEST(testAxisTitlePositionDOCX); CPPUNIT_TEST(testCombinedChartAttachedAxisXLSX); + CPPUNIT_TEST(testTdf140489MultiSeriesChartAxisXLSX); CPPUNIT_TEST(testTdf90510); CPPUNIT_TEST(testTdf109858); CPPUNIT_TEST(testTdf130105); @@ -1732,6 +1734,39 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(0), nAxisIndex); } +void Chart2ImportTest::testTdf140489MultiSeriesChartAxisXLSX() +{ + load(u"/chart2/qa/extras/data/xlsx/", "tdf140489.xlsx"); + Reference< chart2::XChartDocument> xChartDoc = getChartDocFromSheet(0, mxComponent); + // First series + Reference xSeries = getDataSeriesFromDoc(xChartDoc, 0); + CPPUNIT_ASSERT(xSeries.is()); + + Reference xPropSet(xSeries, uno::UNO_QUERY_THROW); + sal_Int32 nAxisIndex = -1; + uno::Any aAny = xPropSet->getPropertyValue("AttachedAxisIndex"); + CPPUNIT_ASSERT(aAny >>= nAxisIndex); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0), nAxisIndex); + + // Second series + xSeries = getDataSeriesFromDoc(xChartDoc, 0, 1); + CPPUNIT_ASSERT(xSeries.is()); + + xPropSet.set(xSeries, uno::UNO_QUERY_THROW); + aAny = xPropSet->getPropertyValue("AttachedAxisIndex"); + CPPUNIT_ASSERT(aAny >>= nAxisIndex); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0), nAxisIndex); + + // Third series + xSeries = getDataSeriesFromDoc(xChartDoc, 0, 2); + CPPUNIT_ASSERT(xSeries.is()); + + xPropSet.set(xSeries, uno::UNO_QUERY_THROW); + aAny = xPropSet->getPropertyValue("AttachedAxisIndex"); + CPPUNIT_ASSERT(aAny >>= nAxisIndex); + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), nAxisIndex); +} + void Chart2ImportTest::testInternalDataProvider() { uno::Reference< chart2::XChartDocument > xChartDoc(getChartDocFromImpress("/chart2/qa/extras/data/odp/", "chart.odp"), uno::UNO_QUERY_THROW); const uno::Reference< chart2::data::XDataProvider >& rxDataProvider = xChartDoc->getDataProvider(); Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/chart2/qa/extras/data/xlsx/tdf140489.xlsx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/chart2/qa/extras/data/xlsx/tdf140489.xlsx differ diff -Nru libreoffice-7.1.2~rc2/chart2/source/model/main/ChartModel_Persistence.cxx libreoffice-7.1.3~rc2/chart2/source/model/main/ChartModel_Persistence.cxx --- libreoffice-7.1.2~rc2/chart2/source/model/main/ChartModel_Persistence.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/chart2/source/model/main/ChartModel_Persistence.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -669,11 +669,15 @@ void SAL_CALL ChartModel::setModified( sal_Bool bModified ) { - // tdf#77007: honor parent's IsEnableSetModified - // Check it before LifeTimeGuard, to avoid deadlocking solar mutex and this guard - if (auto pParentShell = SfxObjectShell::GetShellFromComponent(getParent()); - pParentShell && !pParentShell->IsEnableSetModified()) - return; + // tdf#141914: allow to set *unmodified* when parent does not allow to set modified + if (bModified) + { + // tdf#77007: honor parent's IsEnableSetModified + // Check it before LifeTimeGuard, to avoid deadlocking solar mutex and this guard + if (auto pParentShell = SfxObjectShell::GetShellFromComponent(getParent()); + pParentShell && !pParentShell->IsEnableSetModified()) + return; + } apphelper::LifeTimeGuard aGuard(m_aLifeTimeManager); if(!aGuard.startApiCall())//@todo ? is this a long lasting call?? diff -Nru libreoffice-7.1.2~rc2/configure.ac libreoffice-7.1.3~rc2/configure.ac --- libreoffice-7.1.2~rc2/configure.ac 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/configure.ac 2021-04-28 16:17:45.000000000 +0000 @@ -9,7 +9,7 @@ # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[7.1.2.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[7.1.3.2],[],[],[http://documentfoundation.org/]) dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just fine if it is installed dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails hard @@ -10598,11 +10598,11 @@ neon) AC_MSG_RESULT([neon]) # Check for system neon - libo_CHECK_SYSTEM_MODULE([neon],[NEON],[neon >= 0.31.1]) + libo_CHECK_SYSTEM_MODULE([neon],[NEON],[neon >= 0.31.2]) if test "$with_system_neon" = "yes"; then NEON_VERSION="`$PKG_CONFIG --modversion neon | $SED 's/\.//g'`" else - NEON_VERSION=0311 + NEON_VERSION=0312 fi AC_SUBST(NEON_VERSION) ;; diff -Nru libreoffice-7.1.2~rc2/connectivity/source/drivers/file/FStatement.cxx libreoffice-7.1.3~rc2/connectivity/source/drivers/file/FStatement.cxx --- libreoffice-7.1.2~rc2/connectivity/source/drivers/file/FStatement.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/connectivity/source/drivers/file/FStatement.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -394,6 +394,13 @@ case OSQLStatementType::Unknown: m_pConnection->throwGenericSQLException(STR_QUERY_TOO_COMPLEX,*this); break; + case OSQLStatementType::Select: + if(SQL_ISRULE(m_aSQLIterator.getParseTree(), union_statement)) + { + m_pConnection->throwGenericSQLException(STR_QUERY_TOO_COMPLEX, *this); + } + assert(SQL_ISRULE(m_aSQLIterator.getParseTree(), select_statement)); + break; default: break; } diff -Nru libreoffice-7.1.2~rc2/connectivity/source/parse/sqliterator.cxx libreoffice-7.1.3~rc2/connectivity/source/parse/sqliterator.cxx --- libreoffice-7.1.2~rc2/connectivity/source/parse/sqliterator.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/connectivity/source/parse/sqliterator.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1831,12 +1831,29 @@ // Analyse parse tree (depending on statement type) // and set pointer to ORDER clause: + + assert(SQL_ISRULE(m_pParseTree, select_statement) || SQL_ISRULE(m_pParseTree, union_statement)); + + auto pParseTree = m_pParseTree; + if(SQL_ISRULE(m_pParseTree, union_statement)) + { + assert(m_pParseTree->count() == 4); + pParseTree = pParseTree->getChild(3); + // since UNION is left-associative (at least in our grammar), + // possibly the left-hand (m_pParseTree->getChild(0)) is a union_statement, + // but the right hand cannot. + assert(SQL_ISRULE(pParseTree, select_statement)); + } + OSQLParseNode * pOrderClause = nullptr; - OSL_ENSURE(m_pParseTree->count() >= 4,"ParseTreeIterator: error in parse tree!"); - OSQLParseNode * pTableExp = m_pParseTree->getChild(3); - OSL_ENSURE(pTableExp != nullptr,"OSQLParseTreeIterator: error in parse tree!"); - OSL_ENSURE(SQL_ISRULE(pTableExp,table_exp),"OSQLParseTreeIterator: error in parse tree!"); - OSL_ENSURE(pTableExp->count() == TABLE_EXPRESSION_CHILD_COUNT,"OSQLParseTreeIterator: error in parse tree!"); + OSL_ENSURE(pParseTree->count() == 4, "OSQLParseTreeIterator::getOrderTree: expected a SELECT, and a SELECT must have exactly four children"); + OSQLParseNode * pTableExp = pParseTree->getChild(3); + OSL_ENSURE(pTableExp != nullptr, "OSQLParseTreeIterator::getOrderTree: got NULL table_exp"); + OSL_ENSURE(SQL_ISRULE(pTableExp, table_exp), "OSQLParseTreeIterator::getOrderTree: expected table_exp but got something else"); + OSL_ENSURE(pTableExp->count() == TABLE_EXPRESSION_CHILD_COUNT,"OSQLParseTreeIterator::getOrderTree: table_exp doesn't have the expected number of children"); + // tdf#141115 upgrade the above to an assert; + // this cannot go well if there are too few children + assert(pTableExp->count() == TABLE_EXPRESSION_CHILD_COUNT); pOrderClause = pTableExp->getChild(ORDER_BY_CHILD_POS); // If it is an order_by, it must not be empty diff -Nru libreoffice-7.1.2~rc2/cui/inc/tipoftheday.hrc libreoffice-7.1.3~rc2/cui/inc/tipoftheday.hrc --- libreoffice-7.1.2~rc2/cui/inc/tipoftheday.hrc 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/cui/inc/tipoftheday.hrc 2021-04-28 16:17:45.000000000 +0000 @@ -104,7 +104,6 @@ { NC_("RID_CUI_TIPOFTHEDAY", "To enable macro recording, check Tools ▸ Options ▸ %PRODUCTNAME ▸ Advanced ▸ Enable macro recording."), "", ""}, { NC_("RID_CUI_TIPOFTHEDAY", "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."), "", "tipoftheday_w.png"}, { NC_("RID_CUI_TIPOFTHEDAY", "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources."), "cui/ui/optsecuritypage/OptSecurityPage", ""}, // https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html - { NC_("RID_CUI_TIPOFTHEDAY", "%PRODUCTNAME intends to apply as an organization for Google Summer of Code (GSoC) see:"), "https://wiki.documentfoundation.org/Development/GSoC", ""}, { NC_("RID_CUI_TIPOFTHEDAY", "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C."), "", ""}, { NC_("RID_CUI_TIPOFTHEDAY", "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)"), "", "tipoftheday_w.png"}, { NC_("RID_CUI_TIPOFTHEDAY", "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts."), "modules/swriter/ui/optfonttabpage/OptFontTabPage", "tipoftheday_w.png"}, //https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html diff -Nru libreoffice-7.1.2~rc2/cui/source/dialogs/AdditionsDialog.cxx libreoffice-7.1.3~rc2/cui/source/dialogs/AdditionsDialog.cxx --- libreoffice-7.1.2~rc2/cui/source/dialogs/AdditionsDialog.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/cui/source/dialogs/AdditionsDialog.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -462,8 +462,8 @@ this->set_title(titlePrefix); m_sTag = "allextensions"; // Means empty parameter } - //FIXME: Temporary URL - OUString rURL = "https://yusufketen.com/api/" + m_sTag + ".json"; + //FIXME: Temporary URL - v0 is not using actual api + OUString rURL = "https://extensions.libreoffice.org/api/v0/" + m_sTag + ".json"; m_sURL = rURL; m_xExtensionManager diff -Nru libreoffice-7.1.2~rc2/cui/uiconfig/ui/additionsfragment.ui libreoffice-7.1.3~rc2/cui/uiconfig/ui/additionsfragment.ui --- libreoffice-7.1.2~rc2/cui/uiconfig/ui/additionsfragment.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/cui/uiconfig/ui/additionsfragment.ui 2021-04-28 16:17:45.000000000 +0000 @@ -136,7 +136,7 @@ - True + False False start Downloads: @@ -154,7 +154,7 @@ - True + False False start label diff -Nru libreoffice-7.1.2~rc2/cui/uiconfig/ui/spellingdialog.ui libreoffice-7.1.3~rc2/cui/uiconfig/ui/spellingdialog.ui --- libreoffice-7.1.2~rc2/cui/uiconfig/ui/spellingdialog.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/cui/uiconfig/ui/spellingdialog.ui 2021-04-28 16:17:45.000000000 +0000 @@ -651,4 +651,16 @@ + + + + + + + + + + + + diff -Nru libreoffice-7.1.2~rc2/dbaccess/uiconfig/ui/tablelistbox.ui libreoffice-7.1.3~rc2/dbaccess/uiconfig/ui/tablelistbox.ui --- libreoffice-7.1.2~rc2/dbaccess/uiconfig/ui/tablelistbox.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/dbaccess/uiconfig/ui/tablelistbox.ui 2021-04-28 16:17:45.000000000 +0000 @@ -37,7 +37,7 @@ False True 1 - True + False diff -Nru libreoffice-7.1.2~rc2/debian/changelog libreoffice-7.1.3~rc2/debian/changelog --- libreoffice-7.1.2~rc2/debian/changelog 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/changelog 2021-04-29 06:01:36.000000000 +0000 @@ -1,22 +1,52 @@ -libreoffice (1:7.1.2~rc2-0ubuntu0.18.04.1~lo1) bionic; urgency=medium +libreoffice (1:7.1.3~rc2-0ubuntu0.18.04.1~lo1) bionic; urgency=medium - * Backport from groovy + * Backport from hirsute - Use internal libraries as needed - apparmor 2.13 is not available - -- Rico Tzschichholz Thu, 25 Mar 2021 07:52:27 +0100 + -- Rico Tzschichholz Thu, 29 Apr 2021 08:01:36 +0200 -libreoffice (1:7.1.2~rc2-0ubuntu1) UNRELEASED; urgency=medium +libreoffice (1:7.1.3~rc2-0ubuntu1) impish; urgency=medium + + * New upstream release candidate + + -- Rico Tzschichholz Thu, 29 Apr 2021 08:01:36 +0200 + +libreoffice (1:7.1.2~rc2-0ubuntu2) hirsute; urgency=medium + + [ Heather Ellsworth ] + * Re-enable startcenter and math application icons. (LP: #1696250) + + -- Rico Tzschichholz Fri, 09 Apr 2021 16:05:03 +0200 + +libreoffice (1:7.1.2~rc2-1) experimental; urgency=medium + + * New upstream release candidate + + * debian/patches/filter-out-lto-flags.diff: as name says, filter out LTO + flags for clang-built skia, thanks Matthias Klose + * debian/rules, debian/clang-wrapper: add clang wrapper for above, thanks + Matthias Klose + (closes: #985867) + + * debian/control.ure.in: + - stop recommending liblibreoffice-java and a JDK in ure; ure-java + is supposed to do it does it already + + -- Rene Engelhard Thu, 25 Mar 2021 20:56:22 +0100 + +libreoffice (1:7.1.2~rc2-0ubuntu1) hirsute; urgency=medium [ Rico Tzschichholz ] * New upstream release candidate * Bump yaru source to "2021-03-14" and add yaru-mate styles * Fix signing documents with enforced apparmor (LP: #1886092) + * Disable lto due to insufficient disc space on amd64 builder [ Matthias Klose ] * Fix lto build, avoiding to pass lto flags to the skia build. - -- Rico Tzschichholz Thu, 25 Mar 2021 07:52:27 +0100 + -- Rico Tzschichholz Sat, 27 Mar 2021 16:01:35 +0100 libreoffice (1:7.1.2~rc1-0ubuntu1) hirsute; urgency=medium diff -Nru libreoffice-7.1.2~rc2/debian/control libreoffice-7.1.3~rc2/debian/control --- libreoffice-7.1.2~rc2/debian/control 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/control 2021-04-29 06:01:36.000000000 +0000 @@ -389,9 +389,16 @@ libreoffice-writer (<< ${binary:Version}) Suggests: ${gstreamer-plugins-suggests} Conflicts: libreoffice-avmedia-backend-vlc, + libreoffice-base (<< 1:7.0.0~alpha~), + libreoffice-calc (<< 1:7.0.0~alpha~), libreoffice-core-nogui, + libreoffice-draw (<< 1:7.0.0~alpha~), libreoffice-filter-binfilter, - libreoffice-mysql-connector (<< 1:6.2.0~) + libreoffice-impress (<< 1:7.0.0~alpha~), + libreoffice-math (<< 1:7.0.0~alpha~), + libreoffice-mysql-connector (<< 1:6.2.0~), + libreoffice-report-builder (<< 1:7.0.0~alpha~), + libreoffice-writer (<< 1:7.0.0~alpha~) Replaces: libreoffice-avmedia-backend-gstreamer, libreoffice-common (<< 1:6.3.0~rc1~), libreoffice-core-nogui, @@ -4639,7 +4646,6 @@ Depends: uno-libs-private (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} -Suggests: liblibreoffice-java, ${java-runtime-depends} Replaces: libjuh-java (<< 1:6.4.0~rc1-6), libjurt-java (<< 1:6.4.0~rc1-6), libreoffice-common (<< 1:4.5.0), diff -Nru libreoffice-7.1.2~rc2/debian/control.in libreoffice-7.1.3~rc2/debian/control.in --- libreoffice-7.1.2~rc2/debian/control.in 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/control.in 2021-04-29 06:01:36.000000000 +0000 @@ -238,6 +238,15 @@ libreoffice-avmedia-backend-gstreamer (<< ${binary:Version}) Suggests: ${gstreamer-plugins-suggests} Conflicts: libreoffice-filter-binfilter, libreoffice-avmedia-backend-vlc, libreoffice-mysql-connector (<< 1:6.2.0~), libreoffice-core-nogui + , + libreoffice-mysql-connector (<< 1:6.2.0~), + libreoffice-base (<< 1:7.0.0~alpha~), + libreoffice-calc (<< 1:7.0.0~alpha~), + libreoffice-draw (<< 1:7.0.0~alpha~), + libreoffice-impress (<< 1:7.0.0~alpha~), + libreoffice-math (<< 1:7.0.0~alpha~), + libreoffice-report-builder (<< 1:7.0.0~alpha~), + libreoffice-writer (<< 1:7.0.0~alpha~) Replaces: libreoffice-pdfimport (<< 1:5.4~), libreoffice-common (<< 1:6.3.0~rc1~), libreoffice-avmedia-backend-gstreamer, libreoffice-core-nogui Description: office productivity suite -- arch-dependent files LibreOffice is a full-featured office productivity suite that provides diff -Nru libreoffice-7.1.2~rc2/debian/control.ure.in libreoffice-7.1.3~rc2/debian/control.ure.in --- libreoffice-7.1.2~rc2/debian/control.ure.in 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/control.ure.in 2021-04-29 06:01:36.000000000 +0000 @@ -114,7 +114,6 @@ Section: libs Architecture: %OOO_ARCHS% Depends: ${misc:Depends}, ${shlibs:Depends}, uno-libs-private (= ${binary:Version}) -Suggests: liblibreoffice-java, ${java-runtime-depends} Replaces: libreoffice-common (<< 1:4.5.0), libreoffice-core (<< 1:5.3.0~beta1~), libjuh-java (<< 1:6.4.0~rc1-6), libridl-java (<< 1:6.4.0~rc1-6), libunoloader-java (<< 1:6.4.0~rc1-6), libjurt-java (<< 1:6.4.0~rc1-6), ure-java (<< 1:7.1.1~rc2-1) Breaks: libreoffice-core (<< 1:5.3.0~beta1~), libreoffice-common (<< 1:4.5.0), libjuh-java (<< 1:6.4.0~rc1-6), libridl-java (<< 1:6.4.0~rc1-6), libunoloader-java (<< 1:6.4.0~rc1-6), libjurt-java (<< 1:6.4.0~rc1-6), ure-java (<< 1:7.1.1~rc2-1) Description: LibreOffice UNO runtime environment diff -Nru libreoffice-7.1.2~rc2/debian/libreoffice-common.maintscript libreoffice-7.1.3~rc2/debian/libreoffice-common.maintscript --- libreoffice-7.1.2~rc2/debian/libreoffice-common.maintscript 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/libreoffice-common.maintscript 2021-04-29 06:01:36.000000000 +0000 @@ -2,4 +2,9 @@ mv_conffile /etc/apparmor.d/usr.lib.libreofficeprogram.senddoc /etc/apparmor.d/usr.lib.libreoffice.program.senddoc 1:5.4.4-0ubuntu1 mv_conffile /etc/apparmor.d/usr.lib.libreofficeprogram.soffice.bin /etc/apparmor.d/usr.lib.libreoffice.program.soffice.bin 1:5.4.4-0ubuntu1 mv_conffile /etc/apparmor.d/usr.lib.libreofficeprogram.xpdfimport /etc/apparmor.d/usr.lib.libreoffice.program.xpdfimport 1:5.4.4-0ubuntu1 -dir_to_symlink /usr/lib/libreoffice/share/registry /etc/libreoffice/registry 1:7.0.2-0ubuntu1 +# do this manually since dpkg-maintscript-helper dir_to_symlink +# does not work reliably in this case because we cannot ensure that all +# conflicting packages previously shipping files in +# /usr/lib/libreoffice/share/registry are either upgraded or removed +# but not just deconfigured, see #985297 +#dir_to_symlink /usr/lib/libreoffice/share/registry /etc/libreoffice/registry 1:7.0.2-0ubuntu1 diff -Nru libreoffice-7.1.2~rc2/debian/libreoffice-common.postinst.in libreoffice-7.1.3~rc2/debian/libreoffice-common.postinst.in --- libreoffice-7.1.2~rc2/debian/libreoffice-common.postinst.in 2021-02-25 08:51:17.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/libreoffice-common.postinst.in 2021-04-29 06:01:36.000000000 +0000 @@ -27,3 +27,17 @@ #DEBHELPER# +# do this manually since dpkg-maintscript-helper dir_to_symlink +# does not work reliably in this case because we cannot ensure that all +# conflicting packages previously shipping files in +# /usr/lib/libreoffice/share/registry are either upgraded or removed +# but not just deconfigured, see #985297 +if [ "$1" = "configure" ] && dpkg --compare-versions "$2" lt-nl "1:7.0.4-4~" ; then + if [ ! -L /usr/lib/libreoffice/share/registry ]; then + if [ -d /usr/lib/libreoffice/share/registry ]; then + # this will fail if the directory is not yet empty + rmdir -v /usr/lib/libreoffice/share/registry + fi + ln -sfvT /etc/libreoffice/registry /usr/lib/libreoffice/share/registry + fi +fi diff -Nru libreoffice-7.1.2~rc2/debian/patches/hide-math-desktop-file.patch libreoffice-7.1.3~rc2/debian/patches/hide-math-desktop-file.patch --- libreoffice-7.1.2~rc2/debian/patches/hide-math-desktop-file.patch 2021-02-25 08:51:17.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/patches/hide-math-desktop-file.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -Description: Hide startcenter and math from the shell -Author: Olivier Tilloy -Bug-Ubuntu: https://launchpad.net/bugs/1696250 -Forwarded: not-needed - ---- a/sysui/desktop/menus/math.desktop -+++ b/sysui/desktop/menus/math.desktop -@@ -33,6 +33,7 @@ Keywords=Equation;OpenDocument Formula;F - InitialPreference=5 - StartupWMClass=libreoffice-math - X-KDE-Protocols=file,http,ftp,webdav,webdavs -+NotShowIn=GNOME; - - Actions=NewDocument; - [Desktop Action NewDocument] diff -Nru libreoffice-7.1.2~rc2/debian/patches/hide-startcenter-desktop-file.patch libreoffice-7.1.3~rc2/debian/patches/hide-startcenter-desktop-file.patch --- libreoffice-7.1.2~rc2/debian/patches/hide-startcenter-desktop-file.patch 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/patches/hide-startcenter-desktop-file.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -Description: Hide startcenter and math from the shell -Author: Olivier Tilloy -Bug-Ubuntu: https://launchpad.net/bugs/1696250 -Forwarded: not-needed - ---- a/sysui/desktop/menus/startcenter.desktop -+++ b/sysui/desktop/menus/startcenter.desktop -@@ -31,6 +31,7 @@ StartupNotify=true - StartupWMClass=libreoffice-startcenter - X-KDE-Protocols=file,http,ftp,webdav,webdavs - X-AppStream-Ignore=True -+NotShowIn=GNOME; - - ##Define Actions - Actions=Writer;Calc;Impress;Draw;Base;Math; diff -Nru libreoffice-7.1.2~rc2/debian/patches/series libreoffice-7.1.3~rc2/debian/patches/series --- libreoffice-7.1.2~rc2/debian/patches/series 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/patches/series 2021-04-29 06:01:36.000000000 +0000 @@ -26,7 +26,6 @@ cppunit-optional.diff #disable-unused-test-programs.diff apparmor-complain.diff -hide-math-desktop-file.patch appstream-ignore-startcenter.diff disable-java-in-odk-build-examples-on-zero-vm.diff do-not-hide-test-output.diff @@ -47,7 +46,6 @@ apparmor-updates.diff apparmor-gnupg.diff fix-internal-neon-build.diff -hide-startcenter-desktop-file.patch disable-failing-arm64-tests.diff disable-flaky-arm-tests.diff fix-noto-sans-in-templates.diff diff -Nru libreoffice-7.1.2~rc2/debian/rules libreoffice-7.1.3~rc2/debian/rules --- libreoffice-7.1.2~rc2/debian/rules 2021-03-25 06:52:27.000000000 +0000 +++ libreoffice-7.1.3~rc2/debian/rules 2021-04-29 06:01:36.000000000 +0000 @@ -72,11 +72,11 @@ GIT_BASEURL:=git://anongit.freedesktop.org/libreoffice # bootstraping this from the source tree is breaking get-orig-source #lo_sources_ver=$(shell grep AC_INIT $(SOURCE_TREE)/configure.ac | grep documentfoundation | cut -d, -f2 | sed -e 's,\[,,' -e 's,\],,') -lo_sources_ver=7.1.2.2 +lo_sources_ver=7.1.3.2 # NOT in proper libreoffice-3-6 branch # use ./g checkout -b tag-libreoffice-3.6.2.1 libreoffice-3.6.2.1 GIT_TAG=libreoffice-$(lo_sources_ver) -GIT_BRANCH=libreoffice-7-1-2 +GIT_BRANCH=libreoffice-7-1-3 endif ifeq "$(USE_SOURCE_TARBALLS)" "y" lo_sources_ver=$(shell cat $(CURDIR)/sources.ver | cut -d= -f2) @@ -628,6 +628,10 @@ buildd_discspace_hack:=find workdir/ -type f -name '*.o' -exec mv {} {}_org \; -exec touch -r {}_org {} \; -exec rm {}_org \; endif + # disable lto for now + # lto-wrapper: fatal error: write: No space left on device + export DEB_BUILD_MAINT_OPTIONS = optimize=-lto + ifeq "$(DEB_DISTRIBUTION)" "bionic" SYSTEM_STUFF := $(filter-out cppunit xmlsec, $(SYSTEM_STUFF)) diff -Nru libreoffice-7.1.2~rc2/download.lst libreoffice-7.1.3~rc2/download.lst --- libreoffice-7.1.2~rc2/download.lst 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/download.lst 2021-04-28 16:17:45.000000000 +0000 @@ -191,8 +191,8 @@ export MWAW_TARBALL := libmwaw-0.3.$(MWAW_VERSION_MICRO).tar.xz export MYTHES_SHA256SUM := 1e81f395d8c851c3e4e75b568e20fa2fa549354e75ab397f9de4b0e0790a305f export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz -export NEON_SHA256SUM := c9dfcee723050df37ce18ba449d7707b78e7ab8230f3a4c59d9112e17dc2718d -export NEON_TARBALL := neon-0.31.1.tar.gz +export NEON_SHA256SUM := cf1ee3ac27a215814a9c80803fcee4f0ede8466ebead40267a9bd115e16a8678 +export NEON_TARBALL := neon-0.31.2.tar.gz export NSS_SHA256SUM := ec6032d78663c6ef90b4b83eb552dedf721d2bce208cec3bf527b8f637db7e45 export NSS_TARBALL := nss-3.55-with-nspr-4.27.tar.gz export ODFGEN_SHA256SUM := 2c7b21892f84a4c67546f84611eccdad6259875c971e98ddb027da66ea0ac9c2 diff -Nru libreoffice-7.1.2~rc2/drawinglayer/source/tools/primitive2dxmldump.cxx libreoffice-7.1.3~rc2/drawinglayer/source/tools/primitive2dxmldump.cxx --- libreoffice-7.1.2~rc2/drawinglayer/source/tools/primitive2dxmldump.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/drawinglayer/source/tools/primitive2dxmldump.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -311,6 +311,15 @@ } break; + case PRIMITIVE2D_ID_GROUPPRIMITIVE2D: + { + const GroupPrimitive2D& rGroupPrimitive2D = dynamic_cast(*pBasePrimitive); + rWriter.startElement("group"); + decomposeAndWrite(rGroupPrimitive2D.getChildren(), rWriter); + rWriter.endElement(); + } + break; + case PRIMITIVE2D_ID_MASKPRIMITIVE2D: { const MaskPrimitive2D& rMaskPrimitive2D = dynamic_cast(*pBasePrimitive); diff -Nru libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/embedobj.cxx libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/embedobj.cxx --- libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/embedobj.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/embedobj.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -100,6 +100,12 @@ { try { xClientSite->saveObject(); + + // tdf#141529 take note that an eventually used linked file + // got changed/saved/written and that we need to copy it back if the + // hosting file/document gets saved + if(m_aLinkTempFile.is()) + m_bLinkTempFileChanged = true; } catch( const embed::ObjectSaveVetoException& ) { @@ -168,7 +174,7 @@ // after the object reaches the running state the cloned size is not necessary any more m_bHasClonedSize = false; - if ( m_bIsLink ) + if ( m_bIsLinkURL ) { m_xDocHolder->SetComponent( LoadLink_Impl(), m_bReadOnly ); } diff -Nru libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/miscobj.cxx libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/miscobj.cxx --- libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/miscobj.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/miscobj.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -27,6 +27,10 @@ #include #include +#include +#include +#include + #include #include #include @@ -52,8 +56,10 @@ , m_bEmbeddedScriptSupport( true ) , m_bDocumentRecoverySupport( true ) , m_bWaitSaveCompleted( false ) -, m_bIsLink( false ) +, m_bIsLinkURL( false ) +, m_bLinkTempFileChanged( false ) , m_bLinkHasPassword( false ) +, m_aLinkTempFile( ) , m_bHasClonedSize( false ) , m_nClonedMapUnit( 0 ) { @@ -78,8 +84,10 @@ , m_bEmbeddedScriptSupport( true ) , m_bDocumentRecoverySupport( true ) , m_bWaitSaveCompleted( false ) -, m_bIsLink( true ) +, m_bIsLinkURL( true ) +, m_bLinkTempFileChanged( false ) , m_bLinkHasPassword( false ) +, m_aLinkTempFile( ) , m_bHasClonedSize( false ) , m_nClonedMapUnit( 0 ) { @@ -214,7 +222,61 @@ m_bReadOnly = aExportFilterName != m_aLinkFilterName; } - m_aDocMediaDescriptor = GetValuableArgs_Impl( aMediaDescr, false ); + if(m_bIsLinkURL && !m_bReadOnly) + { + // tdf#141529 we have a linked OLE object. To prevent the original OLE + // data to be changed each time the OLE gets changed (at deactivate), copy it to + // a temporary file. That file will be changed on activated OLE changes then. + // The moment the original gets changed itself will now be associated with the + // file/document embedding the OLE being changed (see other additions to the + // task-ID above) + // + // open OLE original data as read input file + uno::Reference< ucb::XSimpleFileAccess3 > xTempAccess( ucb::SimpleFileAccess::create( m_xContext ) ); + uno::Reference< io::XInputStream > xInStream( xTempAccess->openFileRead( m_aLinkURL ) ); + + if(xInStream.is()) + { + // create temporary file + m_aLinkTempFile = io::TempFile::create(m_xContext); + + if(m_aLinkTempFile.is()) + { + // completely copy content of original OLE data + uno::Reference < io::XOutputStream > xTempOut = m_aLinkTempFile->getOutputStream(); + ::comphelper::OStorageHelper::CopyInputToOutput( xInStream, xTempOut ); + xTempOut->flush(); + xTempOut->closeOutput(); + + // reset flag m_bLinkTempFileChanged, so it will also work for multiple + // save op's of the containing file/document + m_bLinkTempFileChanged = false; + } + } + } + + if(m_aLinkTempFile.is()) + { + uno::Sequence< beans::PropertyValue > aAlternativeMediaDescr(aMediaDescr.getLength()); + + for ( sal_Int32 a(0); a < aMediaDescr.getLength(); a++ ) + { + const beans::PropertyValue& rSource(aMediaDescr[a]); + beans::PropertyValue& rDestination(aAlternativeMediaDescr[a]); + + rDestination.Name = rSource.Name; + if(rSource.Name == "URL") + rDestination.Value <<= m_aLinkTempFile->getUri(); + else + rDestination.Value = rSource.Value; + } + + m_aDocMediaDescriptor = GetValuableArgs_Impl( aAlternativeMediaDescr, false ); + } + else + { + m_aDocMediaDescriptor = GetValuableArgs_Impl( aMediaDescr, false ); + } uno::Reference< frame::XDispatchProviderInterceptor > xDispatchInterceptor; for ( beans::PropertyValue const & prop : aObjectDescr ) diff -Nru libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/persistence.cxx libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/persistence.cxx --- libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/persistence.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/persistence.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -47,6 +47,9 @@ #include #include +#include +#include + #include #include #include @@ -254,7 +257,7 @@ m_aEntryName = aNewName; // the linked document should not be switched - if ( !m_bIsLink ) + if ( !m_bIsLinkURL ) { uno::Reference< document::XStorageBasedDocument > xDoc( m_xDocHolder->GetComponent(), uno::UNO_QUERY ); if ( xDoc.is() ) @@ -369,10 +372,16 @@ sal_Int32 nLen = 2; uno::Sequence< beans::PropertyValue > aArgs( nLen ); + aArgs[0].Name = "URL"; - aArgs[0].Value <<= m_aLinkURL; + if(m_aLinkTempFile.is()) + aArgs[0].Value <<= m_aLinkTempFile->getUri(); + else + aArgs[0].Value <<= m_aLinkURL; + aArgs[1].Name = "FilterName"; aArgs[1].Value <<= m_aLinkFilterName; + if ( m_bLinkHasPassword ) { aArgs.realloc( ++nLen ); @@ -843,7 +852,7 @@ { uno::Reference< util::XCloseable > xResult; - SAL_WARN_IF( !m_bIsLink, "embeddedobj.common", "The object is not a linked one!" ); + SAL_WARN_IF( !m_bIsLinkURL, "embeddedobj.common", "The object is not a linked one!" ); uno::Sequence< beans::PropertyValue > aTempMediaDescr; @@ -895,7 +904,12 @@ { aTempMediaDescr.realloc( 2 ); aTempMediaDescr[0].Name = "URL"; - aTempMediaDescr[0].Value <<= m_aLinkURL; + + // tdf#141529 use URL of the linked TempFile if it exists + aTempMediaDescr[0].Value <<= m_aLinkTempFile.is() + ? m_aLinkTempFile->getUri() + : m_aLinkURL; + aTempMediaDescr[1].Name = "FilterName"; aTempMediaDescr[1].Value <<= m_aLinkFilterName; } @@ -968,8 +982,8 @@ // for now support of this interface is required to allow breaking of links and converting them to normal embedded // objects, so the persist name must be handled correctly ( althowgh no real persist entry is used ) - // OSL_ENSURE( !m_bIsLink, "This method implementation must not be used for links!" ); - if ( m_bIsLink ) + // OSL_ENSURE( !m_bIsLinkURL, "This method implementation must not be used for links!" ); + if ( m_bIsLinkURL ) { m_aEntryName = sEntName; return; @@ -1147,8 +1161,8 @@ // for now support of this interface is required to allow breaking of links and converting them to normal embedded // objects, so the persist name must be handled correctly ( althowgh no real persist entry is used ) - // OSL_ENSURE( !m_bIsLink, "This method implementation must not be used for links!" ); - if ( m_bIsLink ) + // OSL_ENSURE( !m_bIsLinkURL, "This method implementation must not be used for links!" ); + if ( m_bIsLinkURL ) return; OSL_ENSURE( m_xParentStorage.is() && m_xObjectStorage.is(), "The object has no valid persistence!" ); @@ -1275,10 +1289,33 @@ // for now support of this interface is required to allow breaking of links and converting them to normal embedded // objects, so the persist name must be handled correctly ( althowgh no real persist entry is used ) - // OSL_ENSURE( !m_bIsLink, "This method implementation must not be used for links!" ); - if ( m_bIsLink ) + // OSL_ENSURE( !m_bIsLinkURL, "This method implementation must not be used for links!" ); + if ( m_bIsLinkURL ) { m_aNewEntryName = sEntName; + + if(m_aLinkTempFile.is() && m_bLinkTempFileChanged) + { + // tdf#141529 if we have a changed copy of the original OLE data we now + // need to write it back 'over' the original OLE data + uno::Reference < ucb::XSimpleFileAccess2 > xFileAccess(ucb::SimpleFileAccess::create( m_xContext )); + uno::Reference < io::XInputStream > xTempIn = m_aLinkTempFile->getInputStream(); + + // This is *needed* since OTempFileService calls OTempFileService::readBytes which + // ensures the SvStream mpStream gets/is opened, *but* also sets the mnCachedPos from + // OTempFileService which still points to the end-of-file (from write-cc'ing). + uno::Reference < io::XSeekable > xSeek( xTempIn, uno::UNO_QUERY_THROW ); + xSeek->seek(0); + + xFileAccess->writeFile(m_aLinkURL, xTempIn); + + // Do *not* close input, that would remove the temporary file too early + // xTempIn->closeInput(); + + // reset flag m_bLinkTempFileChanged + m_bLinkTempFileChanged = false; + } + return; } @@ -1407,8 +1444,8 @@ // for now support of this interface is required to allow breaking of links and converting them to normal embedded // objects, so the persist name must be handled correctly ( althowgh no real persist entry is used ) - // OSL_ENSURE( !m_bIsLink, "This method implementation must not be used for links!" ); - if ( m_bIsLink ) + // OSL_ENSURE( !m_bIsLinkURL, "This method implementation must not be used for links!" ); + if ( m_bIsLinkURL ) { if ( bUseNew ) m_aEntryName = m_aNewEntryName; @@ -1542,7 +1579,7 @@ if ( !m_xDocHolder->GetComponent().is() ) throw uno::RuntimeException(); - if ( m_bIsLink ) + if ( m_bIsLinkURL ) { // TODO: just store the document to its location uno::Reference< frame::XStorable > xStorable( m_xDocHolder->GetComponent(), uno::UNO_QUERY_THROW ); @@ -1650,7 +1687,7 @@ "The object waits for saveCompleted() call!", static_cast< ::cppu::OWeakObject* >(this) ); - if ( m_bIsLink ) + if ( m_bIsLinkURL ) { // reload of the link OUString aOldLinkFilter = m_aLinkFilterName; @@ -1719,7 +1756,7 @@ if ( prop.Name == "ReadOnly" ) prop.Value >>= m_bReadOnly; - if ( bOldReadOnlyValue == m_bReadOnly || m_bIsLink ) + if ( bOldReadOnlyValue == m_bReadOnly || m_bIsLinkURL ) return; // close own storage @@ -1751,7 +1788,7 @@ if ( m_bDisposed ) throw lang::DisposedException(); // TODO - if (!m_bIsLink || m_nObjectState == -1) + if (!m_bIsLinkURL || m_nObjectState == -1) { // it must be a linked initialized object throw embed::WrongStateException( @@ -1789,10 +1826,21 @@ // TODO/LATER: handle the case when temp doc can not be created // the document is a new embedded object so it must be marked as modified uno::Reference< util::XCloseable > xDocument = CreateTempDocFromLink_Impl(); - uno::Reference< util::XModifiable > xModif( m_xDocHolder->GetComponent(), uno::UNO_QUERY_THROW ); try { - xModif->setModified( true ); + if(m_xDocHolder.is() && m_xDocHolder->GetComponent().is()) + { + // tdf#141528 m_xDocHolder->GetComponent() may be not set, so add it + // to the try path to not get thrown out of the local context to the next + // highter try...catch on the stack. To make breakLink work it is + // *necessary* to execute the code below that resets the linked state, + // esp. the *.clear stuff and resetting m_bIsLink. + uno::Reference< util::XModifiable > xModif( m_xDocHolder->GetComponent(), uno::UNO_QUERY_THROW ); + + // all other locations in this file check for xModif.is(), so do it here, too + if ( xModif.is() ) + xModif->setModified( true ); + } } catch( const uno::Exception& ) {} @@ -1809,7 +1857,10 @@ else if ( m_nObjectState == embed::EmbedStates::ACTIVE ) m_xDocHolder->Show(); - m_bIsLink = false; + // tdf#141529 reset all stuff involved in linked state, including + // the OLE content copied to the temp file + m_bIsLinkURL = false; + m_aLinkTempFile.clear(); m_aLinkFilterName.clear(); m_aLinkURL.clear(); } @@ -1821,7 +1872,7 @@ if ( m_bDisposed ) throw lang::DisposedException(); // TODO - return m_bIsLink; + return m_bIsLinkURL; } @@ -1831,7 +1882,7 @@ if ( m_bDisposed ) throw lang::DisposedException(); // TODO - if ( !m_bIsLink ) + if ( !m_bIsLinkURL ) throw embed::WrongStateException( "The object is not a link object!", static_cast< ::cppu::OWeakObject* >(this) ); diff -Nru libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/visobj.cxx libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/visobj.cxx --- libreoffice-7.1.2~rc2/embeddedobj/source/commonembedding/visobj.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/embeddedobj/source/commonembedding/visobj.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -55,7 +55,7 @@ changeState( embed::EmbedStates::RUNNING ); // the links should be switched back to loaded state for now to avoid locking problems - bBackToLoaded = m_bIsLink; + bBackToLoaded = m_bIsLinkURL; } bool bSuccess = m_xDocHolder->SetExtent( nAspect, aSize ); @@ -88,7 +88,7 @@ changeState( embed::EmbedStates::RUNNING ); // the links should be switched back to loaded state for now to avoid locking problems - bBackToLoaded = m_bIsLink; + bBackToLoaded = m_bIsLinkURL; } awt::Size aResult; @@ -128,7 +128,7 @@ changeState( embed::EmbedStates::RUNNING ); // the links should be switched back to loaded state for now to avoid locking problems - bBackToLoaded = m_bIsLink; + bBackToLoaded = m_bIsLinkURL; } sal_Int32 nResult = m_xDocHolder->GetMapUnit( nAspect ); @@ -172,7 +172,7 @@ setVisualAreaSize(nAspect, aOrigSize); // the links should be switched back to loaded state for now to avoid locking problems - bBackToLoaded = m_bIsLink; + bBackToLoaded = m_bIsLinkURL; } SAL_WARN_IF( !m_xDocHolder->GetComponent().is(), "embeddedobj.common", "Running or Active object has no component!" ); diff -Nru libreoffice-7.1.2~rc2/embeddedobj/source/inc/commonembobj.hxx libreoffice-7.1.3~rc2/embeddedobj/source/inc/commonembobj.hxx --- libreoffice-7.1.2~rc2/embeddedobj/source/inc/commonembobj.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/embeddedobj/source/inc/commonembobj.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include @@ -132,7 +133,8 @@ css::awt::Rectangle m_aOwnRectangle; css::awt::Rectangle m_aClipRectangle; - bool m_bIsLink; + bool m_bIsLinkURL; + bool m_bLinkTempFileChanged; // embedded object related stuff OUString m_aEntryName; @@ -146,6 +148,9 @@ bool m_bLinkHasPassword; OUString m_aLinkPassword; + // tdf#141529 hold a cc of a linked OLE + css::uno::Reference < css::io::XTempFile > m_aLinkTempFile; + css::uno::Reference< css::uno::XInterface > m_xParent; bool m_bHasClonedSize; // the object has cached size diff -Nru libreoffice-7.1.2~rc2/emfio/inc/mtftools.hxx libreoffice-7.1.3~rc2/emfio/inc/mtftools.hxx --- libreoffice-7.1.2~rc2/emfio/inc/mtftools.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/emfio/inc/mtftools.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -27,6 +27,7 @@ #include #include #include +#include #include "emfiodllapi.h" @@ -259,6 +260,8 @@ #define HUNDREDTH_MILLIMETERS_PER_MILLIINCH 2.54 #define MILLIINCH_PER_TWIPS 1.44 +class MetaFontAction; + //============================ WmfReader ================================== namespace emfio @@ -458,6 +461,24 @@ {} }; + // tdf#127471 implement detection and correction of wrongly scaled + // fonts in own-written, old (before this fix) EMF/WMF files + class ScaledFontDetectCorrectHelper + { + private: + rtl::Reference maCurrentMetaFontAction; + std::vector maAlternativeFontScales; + std::vector, double>> maPositiveIdentifiedCases; + std::vector, double>> maNegativeIdentifiedCases; + + public: + ScaledFontDetectCorrectHelper(); + void endCurrentMetaFontAction(); + void newCurrentMetaFontAction(rtl::Reference& rNewMetaFontAction); + void evaluateAlternativeFontScale(OUString const & rText, tools::Long nImportedTextLength); + void applyAlternativeFontScale(); + }; + class MtfTools { MtfTools(MtfTools const &) = delete; @@ -521,6 +542,9 @@ sal_uInt32 mnEndPos; std::vector> maBmpSaveList; + // tdf#127471 always try to detect - only used with ScaledText + ScaledFontDetectCorrectHelper maScaledFontHelper; + bool mbNopMode : 1; bool mbFillStyleSelected : 1; bool mbClipNeedsUpdate : 1; Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/emfio/qa/cppunit/emf/data/TestDrawPolyLine16WithClip.emf and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/emfio/qa/cppunit/emf/data/TestDrawPolyLine16WithClip.emf differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/emfio/qa/cppunit/emf/data/TestFillRegion.emf and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/emfio/qa/cppunit/emf/data/TestFillRegion.emf differ diff -Nru libreoffice-7.1.2~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx libreoffice-7.1.3~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx --- libreoffice-7.1.2~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/emfio/qa/cppunit/emf/EmfImportTest.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -50,6 +50,8 @@ void TestLinearGradient(); void TestTextMapMode(); void TestEnglishMapMode(); + void TestDrawPolyLine16WithClip(); + void TestFillRegion(); void TestCreatePen(); void TestPdfInEmf(); @@ -68,6 +70,8 @@ CPPUNIT_TEST(TestLinearGradient); CPPUNIT_TEST(TestTextMapMode); CPPUNIT_TEST(TestEnglishMapMode); + CPPUNIT_TEST(TestDrawPolyLine16WithClip); + CPPUNIT_TEST(TestFillRegion); CPPUNIT_TEST(TestCreatePen); CPPUNIT_TEST(TestPdfInEmf); CPPUNIT_TEST_SUITE_END(); @@ -308,10 +312,60 @@ } +void Test::TestDrawPolyLine16WithClip() +{ + // Check import of EMF image with records: + // CREATEBRUSHINDIRECT, FILLRGN, BEGINPATH, POLYGON16, SELECTCLIPPATH, MODIFYWORLDTRANSFORM, SELECTOBJECT + Primitive2DSequence aSequence = parseEmf(u"/emfio/qa/cppunit/emf/data/TestDrawPolyLine16WithClip.emf"); + CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength())); + drawinglayer::Primitive2dXmlDump dumper; + xmlDocUniquePtr pDocument = dumper.dumpAndParse(comphelper::sequenceToContainer(aSequence)); + CPPUNIT_ASSERT (pDocument); + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygon", "path", "m0 0h3943v3939h-3943z"); + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygoncolor", 1); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygoncolor[1]/polypolygon", + "path", "m1323 0h1323v1322h1323v1322h-1323v1322h-1323v-1322h-1323v-1322h1323z"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygoncolor[1]", "color", "#b4ffff"); + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline", 1); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[1]/polygon", + "1323,0 2646,0 2646,1322 3969,1322 3969,2644 2646,2644 2646,3966 1323,3966 1323,2644 0,2644 0,1322 1323,1322"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[1]", "color", "#000000"); + + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/group[1]/mask/polypolygon", "path", "m2646 0v1322h1323v1322h-1323v1322h-1323v-1322h-1323v-1322h1323v-1322"); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/group[1]/mask/polygonstroke/polygon", "0,793 3969,4230"); + +} + +void Test::TestFillRegion() +{ + // Check import of EMF image with records: CREATEBRUSHINDIRECT, FILLRGN. The SETICMMODE is also used. + Primitive2DSequence aSequence = parseEmf(u"/emfio/qa/cppunit/emf/data/TestFillRegion.emf"); + CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength())); + drawinglayer::Primitive2dXmlDump dumper; + xmlDocUniquePtr pDocument = dumper.dumpAndParse(comphelper::sequenceToContainer(aSequence)); + CPPUNIT_ASSERT (pDocument); + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygon", "path", "m0 0h3943v3939h-3943z"); + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygoncolor", 1); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygoncolor[1]/polypolygon", + "path", "m1323 0h1323v1322h1323v1322h-1323v1322h-1323v-1322h-1323v-1322h1323z"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygoncolor[1]", "color", "#ff0000"); + + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline", 1); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[1]/polygon", + "1323,0 2646,0 2646,1322 3969,1322 3969,2644 2646,2644 2646,3966 1323,3966 1323,2644 0,2644 0,1322 1323,1322"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[1]", "color", "#000000"); +} + void Test::TestCreatePen() { // Check import of EMF image with records: RESTOREDC, SAVEDC, MOVETOEX, LINETO, POLYLINE16, EXTTEXTOUTW with DxBuffer - // The CREATEPEN record is used with PS_COSMETIC line style, which will be displayed as solid hairline + // The CREATEPEN record is used with PS_COSMETIC line style, which sometimes will be displayed as solid hairline Primitive2DSequence aSequence = parseEmf("/emfio/qa/cppunit/emf/data/TestCreatePen.emf"); CPPUNIT_ASSERT_EQUAL(1, static_cast(aSequence.getLength())); drawinglayer::Primitive2dXmlDump dumper; @@ -320,24 +374,24 @@ assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polypolygon", "path", "m0 0h31250v18192h-31250z"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke", 3); - assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[1]/polygon", "17898,5693 20172,5693"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[1]/line", "color", "#008000"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[1]/line", "width", "3"); - - assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[2]/polygon", "17898,6959 20172,6959"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[2]/line", "color", "#000080"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[2]/line", "width", "3"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke", 748); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[1]/polygon", "27875,16523 27875,1453"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[1]/line", "color", "#ff0000"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[1]/line", "width", "6"); + + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[2]/polygon", "27975,16453 27875,16453"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[2]/line", "color", "#ff0000"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[2]/line", "width", "6"); - assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[3]/polygon", "17898,7381 20172,7381"); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[3]/polygon", "27925,16078 27875,16078"); assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[3]/line", "color", "#ff0000"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[3]/line", "width", "3"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonstroke[3]/line", "width", "6"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline", 755); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[10]", "color", "#ff0000"); - assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[10]/polygon", "27925,14180 27875,14180"); - assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[100]", "color", "#008000"); - assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[100]/polygon", "26100,14414 26050,14414"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline", 10); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[5]", "color", "#008000"); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[5]/polygon", "25850,2179 25844,1958"); + assertXPath(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[10]", "color", "#000080"); + assertXPathContent(pDocument, "/primitive2D/metafile/transform/mask/polygonhairline[10]/polygon", "2025,1642 2025,1501"); assertXPath(pDocument, "/primitive2D/metafile/transform/mask/textsimpleportion", 69); assertXPath(pDocument, "/primitive2D/metafile/transform/mask/textsimpleportion[1]", "width", "374"); diff -Nru libreoffice-7.1.2~rc2/emfio/qa/cppunit/wmf/wmfimporttest.cxx libreoffice-7.1.3~rc2/emfio/qa/cppunit/wmf/wmfimporttest.cxx --- libreoffice-7.1.2~rc2/emfio/qa/cppunit/wmf/wmfimporttest.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/emfio/qa/cppunit/wmf/wmfimporttest.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -122,10 +122,11 @@ CPPUNIT_ASSERT(pDoc); - assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "top", "427"); - assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "left", "740"); - assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "bottom", "2823"); - assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "right", "1876"); + assertXPath(pDoc, "/metafile/sectrectclipregion", 2); + assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "top", "2125"); + assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "left", "1084"); + assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "bottom", "2927"); + assertXPath(pDoc, "/metafile/sectrectclipregion[1]", "right", "2376"); } void WmfTest::testEmfLineStyles() diff -Nru libreoffice-7.1.2~rc2/emfio/source/reader/emfreader.cxx libreoffice-7.1.3~rc2/emfio/source/reader/emfreader.cxx --- libreoffice-7.1.2~rc2/emfio/source/reader/emfreader.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/emfio/source/reader/emfreader.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -329,41 +329,45 @@ bool ImplReadRegion( tools::PolyPolygon& rPolyPoly, SvStream& rStream, sal_uInt32 nLen ) { - if (nLen == 0) + if (nLen < 32) // 32 bytes - Size of RegionDataHeader return false; - sal_uInt32 nHdSize, nType, nCount, nRgnSize, i; + sal_uInt32 nHdSize, nType, nCountRects, nRgnSize; rStream.ReadUInt32(nHdSize); rStream.ReadUInt32(nType); - rStream.ReadUInt32(nCount); + rStream.ReadUInt32(nCountRects); rStream.ReadUInt32(nRgnSize); - if (!rStream.good() || nCount == 0 || nType != RDH_RECTANGLES) + //bounds of the region + sal_Int32 nLeft, nTop, nRight, nBottom; + rStream.ReadInt32(nLeft); + rStream.ReadInt32(nTop); + rStream.ReadInt32(nRight); + rStream.ReadInt32(nBottom); + + if (!rStream.good() || nCountRects == 0 || nType != RDH_RECTANGLES) return false; + SAL_INFO("emfio", "\t\tLeft: " << nLeft << ", top: " << nTop << ", right: " << nRight << ", bottom: " << nBottom); + + nLen -= 32; + sal_uInt32 nSize; - if (o3tl::checked_multiply(nCount, 16, nSize)) - return false; - if (o3tl::checked_add(nSize, nHdSize - 16, nSize)) + if (o3tl::checked_multiply(nCountRects, 16, nSize)) return false; if (nLen < nSize) return false; - sal_Int32 nx1, ny1, nx2, ny2; - for (i = 0; i < nCount; i++) + for (sal_uInt32 i = 0; i < nCountRects; ++i) { - rStream.ReadInt32(nx1); - rStream.ReadInt32(ny1); - rStream.ReadInt32(nx2); - rStream.ReadInt32(ny2); - - tools::Rectangle aRectangle(Point(nx1, ny1), Point(nx2, ny2)); - - tools::Polygon aPolygon(aRectangle); - tools::PolyPolygon aPolyPolyOr1(aPolygon); - tools::PolyPolygon aPolyPolyOr2(rPolyPoly); - rPolyPoly.GetUnion(aPolyPolyOr1, aPolyPolyOr2); - rPolyPoly = aPolyPolyOr2; + rStream.ReadInt32(nLeft); + rStream.ReadInt32(nTop); + rStream.ReadInt32(nRight); + rStream.ReadInt32(nBottom); + + SAL_INFO("emfio", "\t\tLeft: " << nLeft << ", top: " << nTop << ", right: " << nRight << ", bottom: " << nBottom); + tools::PolyPolygon aPolyPolyOr1(tools::Polygon(tools::Rectangle(nLeft, nTop, nRight, nBottom))); + rPolyPoly.GetUnion(aPolyPolyOr1, rPolyPoly); } return true; } @@ -1122,17 +1126,12 @@ mpInputStream->ReadUInt32( nStyle ).ReadInt32( nPenWidth ).ReadInt32( nIgnored ); - SAL_INFO("emfio", "\t\tIndex: " << nIndex << " nStyle: 0x" << std::hex << nStyle << std::dec << " nPenWidth: " << nPenWidth); - // nStyle = PS_COSMETIC = 0x0 - line with a width of one logical unit and a style that is a solid color - if ( !nStyle ) - { - // Width 0 means default width for LineInfo (HairLine) with 1 pixel wide - aLineInfo.SetWidth( 0 ); - } - else - { - aLineInfo.SetWidth( nPenWidth ); - } + SAL_INFO("emfio", "\t\tIndex: " << nIndex << " Style: 0x" << std::hex << nStyle << std::dec << " PenWidth: " << nPenWidth); + // According to documentation: nStyle = PS_COSMETIC = 0x0 - line with a width of one logical unit and a style that is a solid color + // tdf#140271 Based on observed behaviour the line width is not constant with PS_COSMETIC + + // Width 0 means default width for LineInfo (HairLine) with 1 pixel wide + aLineInfo.SetWidth( nPenWidth ); bool bTransparent = false; switch( nStyle & PS_STYLE_MASK ) @@ -1424,24 +1423,30 @@ case EMR_EXTSELECTCLIPRGN : { - sal_Int32 nClippingMode(0), cbRgnData(0); - mpInputStream->ReadInt32(cbRgnData); - mpInputStream->ReadInt32(nClippingMode); - - // This record's region data should be ignored if mode - // is RGN_COPY - see EMF spec section 2.3.2.2 - if (nClippingMode == RGN_COPY) - { - SetDefaultClipPath(); - } + sal_uInt32 nRemainingRecSize = nRecSize - 8; + if (nRemainingRecSize < 8) + bStatus = false; else { - tools::PolyPolygon aPolyPoly; - if (cbRgnData) - ImplReadRegion(aPolyPoly, *mpInputStream, nRecSize); - SetClipPath(aPolyPoly, nClippingMode, false); + sal_Int32 nClippingMode(0), cbRgnData(0); + mpInputStream->ReadInt32(cbRgnData); + mpInputStream->ReadInt32(nClippingMode); + nRemainingRecSize -= 8; + + // This record's region data should be ignored if mode + // is RGN_COPY - see EMF spec section 2.3.2.2 + if (nClippingMode == RGN_COPY) + { + SetDefaultClipPath(); + } + else + { + tools::PolyPolygon aPolyPoly; + if (cbRgnData) + ImplReadRegion(aPolyPoly, *mpInputStream, nRemainingRecSize); + SetClipPath(aPolyPoly, nClippingMode, false); + } } - } break; @@ -1911,17 +1916,43 @@ case EMR_FILLRGN : { - sal_uInt32 nLen; - tools::PolyPolygon aPolyPoly; - mpInputStream->SeekRel( 0x10 ); - mpInputStream->ReadUInt32( nLen ).ReadUInt32( nIndex ); + sal_uInt32 nRemainingRecSize = nRecSize - 8; + if (nRemainingRecSize < 24) + bStatus = false; + else + { + sal_uInt32 nRgnDataSize; + tools::PolyPolygon aPolyPoly; + mpInputStream->SeekRel(16); // RectL bounds + mpInputStream->ReadUInt32( nRgnDataSize ).ReadUInt32( nIndex ); + nRemainingRecSize -= 24; + + if (ImplReadRegion(aPolyPoly, *mpInputStream, nRemainingRecSize)) + { + Push(); + SelectObject( nIndex ); + DrawPolyPolygon( aPolyPoly ); + Pop(); + } + } + } + break; - if ( ImplReadRegion( aPolyPoly, *mpInputStream, nRecSize ) ) + case EMR_PAINTRGN : + { + sal_uInt32 nRemainingRecSize = nRecSize - 8; + if (nRemainingRecSize < 20) + bStatus = false; + else { - Push(); - SelectObject( nIndex ); - DrawPolyPolygon( aPolyPoly ); - Pop(); + sal_uInt32 nRgnDataSize; + tools::PolyPolygon aPolyPoly; + mpInputStream->SeekRel(16); // Skipping RectL bounds + mpInputStream->ReadUInt32( nRgnDataSize ); + nRemainingRecSize -= 20; + + if (ImplReadRegion(aPolyPoly, *mpInputStream, nRemainingRecSize)) + DrawPolyPolygon( aPolyPoly ); } } break; @@ -1979,7 +2010,6 @@ case EMR_SETDIBITSTODEVICE : SAL_WARN("emfio", "not implemented 'SetDIBitsToDevice'"); break; case EMR_FRAMERGN : SAL_WARN("emfio", "not implemented 'FrameRgn'"); break; case EMR_INVERTRGN : SAL_WARN("emfio", "not implemented 'InvertRgn'"); break; - case EMR_PAINTRGN : SAL_WARN("emfio", "not implemented 'PaintRgn'"); break; case EMR_FLATTENPATH : SAL_WARN("emfio", "not implemented 'FlattenPath'"); break; case EMR_WIDENPATH : SAL_WARN("emfio", "not implemented 'WidenPath'"); break; case EMR_POLYDRAW : SAL_WARN("emfio", "not implemented 'Polydraw'"); break; @@ -2034,6 +2064,10 @@ } mpInputStream->Seek( nNextPos ); } + + // tdf#127471 + maScaledFontHelper.applyAlternativeFontScale(); + if( !maBmpSaveList.empty() ) ResolveBitmapActions( maBmpSaveList ); diff -Nru libreoffice-7.1.2~rc2/emfio/source/reader/mtftools.cxx libreoffice-7.1.3~rc2/emfio/source/reader/mtftools.cxx --- libreoffice-7.1.2~rc2/emfio/source/reader/mtftools.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/emfio/source/reader/mtftools.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -299,6 +299,184 @@ #endif }; + // tdf#127471 + ScaledFontDetectCorrectHelper::ScaledFontDetectCorrectHelper() + : maCurrentMetaFontAction(), + maAlternativeFontScales(), + maPositiveIdentifiedCases(), + maNegativeIdentifiedCases() + { + } + + void ScaledFontDetectCorrectHelper::endCurrentMetaFontAction() + { + if(maCurrentMetaFontAction.is() && !maAlternativeFontScales.empty()) + { + // create average corrected FontScale value and count + // positive/negative hits + sal_uInt32 nPositive(0); + sal_uInt32 nNegative(0); + double fAverage(0.0); + + for(double fPart : maAlternativeFontScales) + { + if(fPart < 0.0) + { + nNegative++; + fAverage += -fPart; + } + else + { + nPositive++; + fAverage += fPart; + } + } + + fAverage /= static_cast(maAlternativeFontScales.size()); + + if(nPositive >= nNegative) + { + // correction intended, it is probably an old imported file + maPositiveIdentifiedCases.push_back(std::pair, double>(maCurrentMetaFontAction, fAverage)); + } + else + { + // correction not favorable in the majority of cases for this Font, still + // remember to have a weight in the last decision for correction + maNegativeIdentifiedCases.push_back(std::pair, double>(maCurrentMetaFontAction, fAverage)); + } + } + + maCurrentMetaFontAction.clear(); + maAlternativeFontScales.clear(); + } + + void ScaledFontDetectCorrectHelper::newCurrentMetaFontAction(rtl::Reference& rNewMetaFontAction) + { + maCurrentMetaFontAction.clear(); + maAlternativeFontScales.clear(); + + if(rNewMetaFontAction.is()) + { + // check 1st criteria for FontScale active. We usually write this, + // so this will already sort out most situations + const vcl::Font& rCandidate(rNewMetaFontAction->GetFont()); + + if(0 != rCandidate.GetAverageFontWidth()) + { + const tools::Long nUnscaledAverageFontWidth(rCandidate.GetOrCalculateAverageFontWidth()); + + // check 2nd (system-dependent) criteria for FontScale + if(nUnscaledAverageFontWidth != rCandidate.GetFontHeight()) + { + // FontScale is active, remrmber and use as current + maCurrentMetaFontAction = rNewMetaFontAction; + } + } + } + } + + void ScaledFontDetectCorrectHelper::evaluateAlternativeFontScale(OUString const & rText, tools::Long nImportedTextLength) + { + if(maCurrentMetaFontAction.is()) + { + SolarMutexGuard aGuard; // VirtualDevice is not thread-safe + ScopedVclPtrInstance< VirtualDevice > pTempVirtualDevice; + + // calculate measured TextLength + const vcl::Font& rFontCandidate(maCurrentMetaFontAction->GetFont()); + pTempVirtualDevice->SetFont(rFontCandidate); + const tools::Long nMeasuredTextLength(pTempVirtualDevice->GetTextWidth(rText)); + + // compare expected and imported TextLengths + if(nImportedTextLength != nMeasuredTextLength) + { + const double fFactorText(static_cast(nImportedTextLength) / static_cast(nMeasuredTextLength)); + const double fFactorTextPercent(fabs(1.0 - fFactorText) * 100.0); + + // if we assume that loaded file was written on old linux, we have to + // back-convert the scale value depending on which system we run +#ifdef _WIN32 + // When running on Windows the value was not adapted at font import (see WinMtfFontStyle + // constructor), so it is still NormedFontScaling and we need to convert to Windows-style + // scaling +#else + // When running on unx (non-Windows) the value was already adapted at font import (see WinMtfFontStyle + // constructor). It was wrongly assumed to be Windows-style FontScaling, so we need to revert that + // to get back to the needed unx-style FontScale +#endif + // Interestingly this leads to the *same* correction, so no need to make this + // system-dependent (!) + const tools::Long nUnscaledAverageFontWidth(rFontCandidate.GetOrCalculateAverageFontWidth()); + const tools::Long nScaledAverageFontWidth(rFontCandidate.GetAverageFontWidth()); + const double fScaleFactor(static_cast(nUnscaledAverageFontWidth) / static_cast(rFontCandidate.GetFontHeight())); + const double fCorrectedAverageFontWidth(static_cast(nScaledAverageFontWidth) * fScaleFactor); + tools::Long nCorrectedTextLength(0); + + { // do in own scope, only need nUnscaledAverageFontWidth + vcl::Font rFontCandidate2(rFontCandidate); + rFontCandidate2.SetAverageFontWidth(static_cast(fCorrectedAverageFontWidth)); + pTempVirtualDevice->SetFont(rFontCandidate2); + nCorrectedTextLength = pTempVirtualDevice->GetTextWidth(rText); + } + + const double fFactorCorrectedText(static_cast(nImportedTextLength) / static_cast(nCorrectedTextLength)); + const double fFactorCorrectedTextPercent(fabs(1.0 - fFactorCorrectedText) * 100.0); + + // If FactorCorrectedText fits better than FactorText this is probably + // an import of an old EMF/WMF written by LibreOffice on a non-Windows (unx) system + // and should be corrected. + // Usually in tested cases this lies inside 5% of range, so detecting this just using + // fFactorTextPercent indside 5% -> no old file + // fFactorCorrectedTextPercent indside 5% -> is old file + // works not too bad, but there are some strange not so often used fonts where that + // values do deviate, so better just compare if old corrected would fit better than + // the uncorrected case, that is usually safe. + if(fFactorCorrectedTextPercent < fFactorTextPercent) + { + maAlternativeFontScales.push_back(fCorrectedAverageFontWidth); + } + else + { + // also push, but negative to remember non-fitting case + maAlternativeFontScales.push_back(-fCorrectedAverageFontWidth); + } + } + } + } + + void ScaledFontDetectCorrectHelper::applyAlternativeFontScale() + { + // make sure last evtl. detected current FontAction gets added to identified cases + endCurrentMetaFontAction(); + + // Take final decision to correct FontScaling for this imported Metafile or not. + // It is possible to weight positive against negative cases, so to only finally + // correct when more positive cases were detected. + // But that would be inconsequent and wrong. *If* the detected case is an old import + // the whole file was written with wrong FontScale values and all Font actions + // need to be corrected. Thus, for now, correct all when there are/is positive + // cases detected. + // On the other hand it *may* be that for some strange fonts there is a false-positive + // in the positive cases, so at least insist on positive cases being more than negative. + // Still, do then correct *all* cases. + if(!maPositiveIdentifiedCases.empty() + && maPositiveIdentifiedCases.size() >= maNegativeIdentifiedCases.size()) + { + for(std::pair, double>& rCandidate : maPositiveIdentifiedCases) + { + rCandidate.first->correctFontScale(static_cast(rCandidate.second)); + } + for(std::pair, double>& rCandidate : maNegativeIdentifiedCases) + { + rCandidate.first->correctFontScale(static_cast(rCandidate.second)); + } + } + + maPositiveIdentifiedCases.clear(); + maNegativeIdentifiedCases.clear(); + } + Color MtfTools::ReadColor() { sal_uInt32 nColor; @@ -927,6 +1105,7 @@ mnStartPos(0), mnEndPos(0), maBmpSaveList(), + maScaledFontHelper(), mbNopMode(false), mbFillStyleSelected(false), mbClipNeedsUpdate(true), @@ -991,31 +1170,16 @@ mbComplexClip = rClipPoly.count() > 1 || !basegfx::utils::isRectangle(rClipPoly); - static bool bEnableComplexClipViaRegion = getenv("SAL_WMF_COMPLEXCLIP_VIA_REGION") != nullptr; - - if (bEnableComplexClipViaRegion) + // This makes cases like tdf#45820 work in reasonable time. + if (mbComplexClip) { - //this makes cases like tdf#45820 work in reasonable time, and I feel in theory should - //be just fine. In practice I see the output is different so needs work before its the - //default, but for file fuzzing it should be good enough - if (mbComplexClip) - { - mpGDIMetaFile->AddAction( - new MetaISectRegionClipRegionAction( - vcl::Region(rClipPoly))); - mbComplexClip = false; - } - else - { - mpGDIMetaFile->AddAction( - new MetaISectRectClipRegionAction( - vcl::unotools::rectangleFromB2DRectangle( - rClipPoly.getB2DRange()))); - } + mpGDIMetaFile->AddAction( + new MetaISectRegionClipRegionAction( + vcl::Region(rClipPoly))); + mbComplexClip = false; } else { - //normal case mpGDIMetaFile->AddAction( new MetaISectRectClipRegionAction( vcl::unotools::rectangleFromB2DRectangle( @@ -1617,14 +1781,29 @@ maActPos = rPosition + aActPosDelta; } } - if ( bChangeFont || ( maLatestFont != aTmp ) ) + + if(bChangeFont || (maLatestFont != aTmp)) { maLatestFont = aTmp; - mpGDIMetaFile->AddAction( new MetaFontAction( aTmp ) ); + rtl::Reference aNewMetaFontAction(new MetaFontAction(aTmp)); + + // tdf#127471 end evtl active MetaFontAction scale corrector detector/collector + maScaledFontHelper.endCurrentMetaFontAction(); + + // !bRecordPath: else no MetaTextArrayAction will be created + // nullptr != pDXArry: detection only possible when text size is given + // rText.getLength(): no useful check without text + if(!bRecordPath && nullptr != pDXArry && 0 != rText.getLength()) + { + maScaledFontHelper.newCurrentMetaFontAction(aNewMetaFontAction); + } + + mpGDIMetaFile->AddAction( aNewMetaFontAction ); mpGDIMetaFile->AddAction( new MetaTextAlignAction( aTmp.GetAlignment() ) ); mpGDIMetaFile->AddAction( new MetaTextColorAction( aTmp.GetColor() ) ); mpGDIMetaFile->AddAction( new MetaTextFillColorAction( aTmp.GetFillColor(), !aTmp.IsTransparent() ) ); } + if ( bRecordPath ) { // TODO @@ -1645,7 +1824,18 @@ /* because text without dx array is badly scaled, we will create such an array if necessary */ tools::Long* pDX = pDXArry; - if (!pDXArry) + if (pDXArry) + { + // only useful when we have an imported DXArray + if(!rText.isEmpty()) + { + maScaledFontHelper.evaluateAlternativeFontScale( + rText, + pDXArry[rText.getLength() - 1] // extract imported TextLength + ); + } + } + else { // #i117968# VirtualDevice is not thread safe, but filter is used in multithreading SolarMutexGuard aGuard; diff -Nru libreoffice-7.1.2~rc2/emfio/source/reader/wmfreader.cxx libreoffice-7.1.3~rc2/emfio/source/reader/wmfreader.cxx --- libreoffice-7.1.2~rc2/emfio/source/reader/wmfreader.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/emfio/source/reader/wmfreader.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1233,6 +1233,9 @@ case W_META_ENDDOC: break; } + + // tdf#127471 + maScaledFontHelper.applyAlternativeFontScale(); } const tools::Long aMaxWidth = 1024; diff -Nru libreoffice-7.1.2~rc2/extensions/source/propctrlr/usercontrol.cxx libreoffice-7.1.3~rc2/extensions/source/propctrlr/usercontrol.cxx --- libreoffice-7.1.2~rc2/extensions/source/propctrlr/usercontrol.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/extensions/source/propctrlr/usercontrol.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -248,9 +248,7 @@ bool bSuccess = rValue >>= sURL; if (bSuccess && GraphicObject::isGraphicObjectUniqueIdURL(sURL)) sURL = pControlWindow->GetPlaceHolder(); - // tdf#140239 leave current cursor valid if the contents won't change - if (sURL != pControlWindow->GetURL()) - pControlWindow->set_entry_text(sURL); + pControlWindow->set_entry_text(sURL); } Any SAL_CALL OFileUrlControl::getValue() @@ -266,6 +264,11 @@ return ::cppu::UnoType::get(); } + IMPL_LINK_NOARG(OFileUrlControl, URLModifiedHdl, weld::ComboBox&, void) + { + editChanged(); + } + } // namespace pcr diff -Nru libreoffice-7.1.2~rc2/extensions/source/propctrlr/usercontrol.hxx libreoffice-7.1.3~rc2/extensions/source/propctrlr/usercontrol.hxx --- libreoffice-7.1.2~rc2/extensions/source/propctrlr/usercontrol.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/extensions/source/propctrlr/usercontrol.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -119,6 +119,8 @@ typedef CommonBehaviourControl OFileUrlControl_Base; class OFileUrlControl : public OFileUrlControl_Base { + private: + DECL_LINK(URLModifiedHdl, weld::ComboBox&, void); public: OFileUrlControl(std::unique_ptr xWidget, std::unique_ptr xBuilder, bool bReadOnly); @@ -130,7 +132,10 @@ virtual void SetModifyHandler() override { OFileUrlControl_Base::SetModifyHandler(); - getTypedControlWindow()->connect_changed(LINK(this, CommonBehaviourControlHelper, ModifiedHdl)); + SvtURLBox* pControlWindow = getTypedControlWindow(); + // tdf#140239 and tdf#141084 don't notify that the control has changed content until focus-out + pControlWindow->connect_focus_out(LINK(this, CommonBehaviourControlHelper, LoseFocusHdl)); + pControlWindow->connect_changed(LINK(this, OFileUrlControl, URLModifiedHdl)); } virtual weld::Widget* getWidget() override { return getTypedControlWindow()->getWidget(); } diff -Nru libreoffice-7.1.2~rc2/external/neon/configs/config.h libreoffice-7.1.3~rc2/external/neon/configs/config.h --- libreoffice-7.1.2~rc2/external/neon/configs/config.h 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/external/neon/configs/config.h 2021-04-28 16:17:45.000000000 +0000 @@ -1,4 +1,4 @@ -/* Contents kept in sync with config.h.in from neon 0.31.1 */ +/* Contents kept in sync with config.h.in from neon 0.31.2 */ /* Define if building universal (internal helper macro) */ /* #undef AC_APPLE_UNIVERSAL_BUILD */ @@ -370,7 +370,7 @@ #define NEON_IS_LIBRARY 1 /* Define to be the neon version string */ -#define NEON_VERSION "0.31.1" +#define NEON_VERSION "0.31.2" /* Define to enable debugging */ /* #undef NE_DEBUGGING */ @@ -435,7 +435,7 @@ #define NE_VERSION_MINOR (31) /* Define to be neon library patch version */ -#define NE_VERSION_PATCH (1) +#define NE_VERSION_PATCH (2) /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "neon@webdav.org" @@ -444,13 +444,13 @@ #define PACKAGE_NAME "neon" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "neon 0.31.1" +#define PACKAGE_STRING "neon 0.31.2" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "neon" /* Define to the version of this package. */ -#define PACKAGE_VERSION "0.31.1" +#define PACKAGE_VERSION "0.31.2" /* The size of `int', as computed by sizeof. */ #define SIZEOF_INT 4 diff -Nru libreoffice-7.1.2~rc2/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1 libreoffice-7.1.3~rc2/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1 --- libreoffice-7.1.2~rc2/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/external/xmlsec/0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1,68 @@ +From a39b110cb2c25680259a38b2f397b350151bc6e7 Mon Sep 17 00:00:00 2001 +From: Michael Stahl +Date: Wed, 7 Apr 2021 16:43:48 +0200 +Subject: [PATCH] xmlSecX509DataGetNodeContent(): don't return 0 for non-empty + elements + +LibreOffice wants to write the content of KeyInfo itself and thus writes +X509Certificate element with content. + +But then xmlSecMSCngKeyDataX509XmlWrite() writes a duplicate +X509Certificate element, which then makes a new additional consistency +check in LO unhappy. + +The duplicate is written because xmlSecX509DataGetNodeContent() returns +0 because it only checks for empty nodes; if there are only non-empty +nodes a fallback to XMLSEC_X509DATA_DEFAULT occurs in all backends. + +Change the return value to be non-0 without changing the signature of +the function, as it is apparently public. + +This doesn't happen in LO in the NSS backend due to another accident, +where the private key flag isn't set when the X509Certificate is read, +but otherwise the code is the same. +--- + src/x509.c | 11 +++++++++++ + 1 file changed, 11 insertions(+) + +diff --git a/src/x509.c b/src/x509.c +index ed8788ae..dac8bd2b 100644 +--- a/src/x509.c ++++ b/src/x509.c +@@ -60,22 +60,33 @@ xmlSecX509DataGetNodeContent (xmlNodePtr node, xmlSecKeyInfoCtxPtr keyInfoCtx) { + if(xmlSecCheckNodeName(cur, xmlSecNodeX509Certificate, xmlSecDSigNs)) { + if(xmlSecIsEmptyNode(cur) == 1) { + content |= XMLSEC_X509DATA_CERTIFICATE_NODE; ++ } else { ++ /* ensure return value isn't 0 if there are non-empty elements */ ++ content |= (XMLSEC_X509DATA_CERTIFICATE_NODE << 16); + } + } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SubjectName, xmlSecDSigNs)) { + if(xmlSecIsEmptyNode(cur) == 1) { + content |= XMLSEC_X509DATA_SUBJECTNAME_NODE; ++ } else { ++ content |= (XMLSEC_X509DATA_SUBJECTNAME_NODE << 16); + } + } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509IssuerSerial, xmlSecDSigNs)) { + if(xmlSecIsEmptyNode(cur) == 1) { + content |= XMLSEC_X509DATA_ISSUERSERIAL_NODE; ++ } else { ++ content |= (XMLSEC_X509DATA_ISSUERSERIAL_NODE << 16); + } + } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509SKI, xmlSecDSigNs)) { + if(xmlSecIsEmptyNode(cur) == 1) { + content |= XMLSEC_X509DATA_SKI_NODE; ++ } else { ++ content |= (XMLSEC_X509DATA_SKI_NODE << 16); + } + } else if(xmlSecCheckNodeName(cur, xmlSecNodeX509CRL, xmlSecDSigNs)) { + if(xmlSecIsEmptyNode(cur) == 1) { + content |= XMLSEC_X509DATA_CRL_NODE; ++ } else { ++ content |= (XMLSEC_X509DATA_CRL_NODE << 16); + } + } else { + /* todo: fail on unknown child node? */ +-- +2.30.2 + diff -Nru libreoffice-7.1.2~rc2/external/xmlsec/UnpackedTarball_xmlsec.mk libreoffice-7.1.3~rc2/external/xmlsec/UnpackedTarball_xmlsec.mk --- libreoffice-7.1.2~rc2/external/xmlsec/UnpackedTarball_xmlsec.mk 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/external/xmlsec/UnpackedTarball_xmlsec.mk 2021-04-28 16:17:45.000000000 +0000 @@ -8,6 +8,7 @@ # xmlsec_patches := +xmlsec_patches += 0001-xmlSecX509DataGetNodeContent-don-t-return-0-for-non-.patch.1 $(eval $(call gb_UnpackedTarball_UnpackedTarball,xmlsec)) diff -Nru libreoffice-7.1.2~rc2/filter/source/msfilter/eschesdo.cxx libreoffice-7.1.3~rc2/filter/source/msfilter/eschesdo.cxx --- libreoffice-7.1.2~rc2/filter/source/msfilter/eschesdo.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/filter/source/msfilter/eschesdo.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -421,8 +421,8 @@ { const Reference< XPropertySet > xPropSet = rObj.mXPropSet; const Reference xPropInfo = xPropSet.is() ? xPropSet->getPropertySetInfo() : Reference(); - // This code is expected to be called only for DOCX format. - if (xPropInfo.is()) + // This code is expected to be called only for DOCX/XLSX formats. + if (xPropInfo.is() && bOOxmlExport) { bool bInline = false; if (xPropInfo->hasPropertyByName("AnchorType")) @@ -834,7 +834,7 @@ } void ImplEESdrWriter::ImplWritePage( - EscherSolverContainer& rSolverContainer ) + EscherSolverContainer& rSolverContainer, bool ooxmlExport ) { ImplInitPageValues(); @@ -845,7 +845,7 @@ mXShapes->getByIndex( n )) ); if( aObj.IsValid() ) { - ImplWriteShape( aObj, rSolverContainer, true ); + ImplWriteShape( aObj, rSolverContainer, ooxmlExport ); } } } @@ -924,10 +924,10 @@ } } -void ImplEESdrWriter::ImplWriteCurrentPage() +void ImplEESdrWriter::ImplWriteCurrentPage(bool ooxmlExport) { assert(mpSolverContainer && "ImplEESdrWriter::ImplWriteCurrentPage: no SolverContainer"); - ImplWritePage( *mpSolverContainer ); + ImplWritePage( *mpSolverContainer, ooxmlExport ); ImplExitPage(); } @@ -937,16 +937,16 @@ return ImplWriteShape( rObj, *mpSolverContainer, ooxmlExport ); } -void EscherEx::AddSdrPage( const SdrPage& rPage ) +void EscherEx::AddSdrPage( const SdrPage& rPage, bool ooxmlExport ) { if ( mpImplEESdrWriter->ImplInitPage( rPage ) ) - mpImplEESdrWriter->ImplWriteCurrentPage(); + mpImplEESdrWriter->ImplWriteCurrentPage(ooxmlExport); } -void EscherEx::AddUnoShapes( const Reference< XShapes >& rxShapes ) +void EscherEx::AddUnoShapes( const Reference< XShapes >& rxShapes, bool ooxmlExport ) { if ( mpImplEESdrWriter->ImplInitUnoShapes( rxShapes ) ) - mpImplEESdrWriter->ImplWriteCurrentPage(); + mpImplEESdrWriter->ImplWriteCurrentPage(ooxmlExport); } sal_uInt32 EscherEx::AddSdrObject( const SdrObject& rObj, bool ooxmlExport ) diff -Nru libreoffice-7.1.2~rc2/filter/source/msfilter/eschesdo.hxx libreoffice-7.1.3~rc2/filter/source/msfilter/eschesdo.hxx --- libreoffice-7.1.2~rc2/filter/source/msfilter/eschesdo.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/filter/source/msfilter/eschesdo.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -113,7 +113,7 @@ std::unique_ptr mpSolverContainer; void ImplInitPageValues(); - void ImplWritePage( EscherSolverContainer& rSolver ); + void ImplWritePage( EscherSolverContainer& rSolver, bool ooxmlExport ); sal_uInt32 ImplWriteShape( ImplEESdrObject& rObj, EscherSolverContainer& rSolver, const bool bOOxmlExport = false ); // returns ShapeID @@ -133,7 +133,7 @@ EscherExHostAppData* ImplGetHostData() { return mpHostAppData; } bool ImplInitPage( const SdrPage& rPage ); bool ImplInitUnoShapes( const css::uno::Reference< css::drawing::XShapes >& rxShapes ); - void ImplWriteCurrentPage(); + void ImplWriteCurrentPage( bool ooxmlExport ); sal_uInt32 ImplWriteTheShape( ImplEESdrObject& rObj, bool ooxmlExport ); void ImplExitPage(); }; diff -Nru libreoffice-7.1.2~rc2/filter/source/msfilter/svdfppt.cxx libreoffice-7.1.3~rc2/filter/source/msfilter/svdfppt.cxx --- libreoffice-7.1.2~rc2/filter/source/msfilter/svdfppt.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/filter/source/msfilter/svdfppt.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1509,12 +1509,21 @@ DffRecordHeader* pSlideListWithTextHd = aDocRecManager.GetRecordHeader( PPT_PST_SlideListWithText ); PptSlidePersistEntry* pPreviousPersist = nullptr; + DffRecordHeader* pSlideListHd = aDocRecManager.GetRecordHeader(PPT_PST_List); + sal_uLong nPSTList = 0; + if (pSlideListHd) nPSTList = pSlideListHd->GetRecBegFilePos(); + sal_uInt16 nRealPageNum = 0; + // Normal PPT document has order of Master slides - Presentation slides - Note slides + // for document with the order of Master slides - Note slides - Presentation slides + // we need to swap the later two sections + bool notePresentationSwap = false; for (sal_uInt16 nPageListNum = 0; pSlideListWithTextHd && nPageListNum < 3; ++nPageListNum) { pSlideListWithTextHd->SeekToContent( rStCtrl ); - PptSlidePersistList* pPageList = GetPageList( PptPageKind( nPageListNum ) ); + PptSlidePersistList* pPageList = nullptr; sal_uInt32 nSlideListWithTextHdEndOffset = pSlideListWithTextHd->GetRecEndFilePos(); + nRealPageNum = nPageListNum; while ( SeekToRec( rStCtrl, PPT_PST_SlidePersistAtom, nSlideListWithTextHdEndOffset ) ) { if ( pPreviousPersist ) @@ -1522,8 +1531,23 @@ std::unique_ptr pE2(new PptSlidePersistEntry); ReadPptSlidePersistAtom( rStCtrl, pE2->aPersistAtom ); pE2->nSlidePersistStartOffset = rStCtrl.Tell(); - pE2->ePageKind = PptPageKind( nPageListNum ); + // Note/Presentation section swap + if (nPageListNum == 1 && pE2->nSlidePersistStartOffset < nPSTList) + { + notePresentationSwap = true; + } + if (notePresentationSwap) + { + if (nPageListNum == 1) nRealPageNum = 2; + else if (nPageListNum == 2) nRealPageNum = 1; + } + + pE2->ePageKind = PptPageKind(nRealPageNum); pPreviousPersist = pE2.get(); + if (!pPageList) + { + pPageList = GetPageList(PptPageKind(nRealPageNum)); + } pPageList->push_back(std::move(pE2)); } if ( pPreviousPersist ) diff -Nru libreoffice-7.1.2~rc2/.gitreview libreoffice-7.1.3~rc2/.gitreview --- libreoffice-7.1.2~rc2/.gitreview 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/.gitreview 2021-04-28 16:17:45.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-7-1-2 +defaultbranch=libreoffice-7-1-3 diff -Nru libreoffice-7.1.2~rc2/helpcontent2/help3xsl/default.css libreoffice-7.1.3~rc2/helpcontent2/help3xsl/default.css --- libreoffice-7.1.2~rc2/helpcontent2/help3xsl/default.css 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/helpcontent2/help3xsl/default.css 2021-04-28 16:17:44.000000000 +0000 @@ -155,21 +155,21 @@ .warning { display:flex; align-items: center; - border-radius: 0 4px 4px 0; - box-shadow: 0 2px 2px -2px rgba(0,0,0,0.2); + border-radius: 2px; + box-shadow: 0 2px 5px -3px rgb(0 0 0 / 10%); padding: 0.2em; margin-top: 15px; } .note { - border-left: 3px solid #309048; + border-left: 2px solid #309048; background-color: #d9f1dd; } .tip { - border-left: 3px solid #0063b1; + border-left: 2px solid #0063b1; background-color: #cde5f7; } .warning { - border-left: 3px solid #ed8733; + border-left: 2px solid #ed8733; background-color: #f6f1d2; } .noteicon, .notetext { @@ -228,7 +228,7 @@ p, ol, td { - font-size: 1.17rem; + font-size: 1.15rem; margin: 2px 0 2px 0; } h1 { @@ -256,10 +256,10 @@ } .howtoget { background: #EBE7E9; - border-left: 3px solid #4E4B55; - border-radius: 0 4px 4px 0; - box-shadow: 0 2px 2px -2px rgba(0,0,0,0.2); - padding: 0.3em; + border-left: 2px solid #4E4B55; + border-radius: 2px; + box-shadow: 0 2px 5px -3px rgb(0 0 0 / 10%); + padding: 0.2em; display: flex; flex-direction: column; } @@ -450,7 +450,7 @@ padding-left: 15px; } .index a { - font-size: 16px; + font-size: 15px; display: block; } .index .hidden { @@ -578,7 +578,7 @@ top: 0px; } .donation{ - background: linear-gradient(90deg, #4275b2 0%, #4eaa88 100%); + border: 1px solid #f1c62a; border-radius: 2px; padding: 5px 10px; margin: auto; @@ -593,7 +593,7 @@ text-decoration: none; } .donation p { - font-size:1.2rem; + font-size:1rem; text-align: center; } #SearchFrame { @@ -671,7 +671,7 @@ padding: 0; margin: 0; list-style: none; - font-size: 16px; + font-size: 15px; } .contents-treeview { -moz-user-select: none; diff -Nru libreoffice-7.1.2~rc2/helpcontent2/source/text/shared/01/05020200.xhp libreoffice-7.1.3~rc2/helpcontent2/source/text/shared/01/05020200.xhp --- libreoffice-7.1.2~rc2/helpcontent2/source/text/shared/01/05020200.xhp 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/helpcontent2/source/text/shared/01/05020200.xhp 2021-04-28 16:17:44.000000000 +0000 @@ -145,13 +145,6 @@ - Draw and Impress do not have the Blinking and Hidden controls - blinking fonts - flashing fonts - - -

Blinking

- Makes the selected characters blink. You cannot change the blink frequency.

Hidden

Hides the selected characters. To display the hidden text, ensure that Formatting Marks is selected in the View menu. You can also choose %PRODUCTNAME - Preferences diff -Nru libreoffice-7.1.2~rc2/hwpfilter/source/hiodev.cxx libreoffice-7.1.3~rc2/hwpfilter/source/hiodev.cxx --- libreoffice-7.1.2~rc2/hwpfilter/source/hiodev.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/hwpfilter/source/hiodev.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -337,7 +337,7 @@ { if (state()) return 0; - if (length < pos + size) + if (size > length - pos) size = length - pos; memcpy(p, ptr + pos, size); pos += size; @@ -346,7 +346,7 @@ size_t HMemIODev::skipBlock(size_t size) { - if (state() || length < pos + size) + if (state() || size > length - pos) return 0; pos += size; return size; Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze/cmd/32/saveacopy.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze/cmd/32/saveacopy.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze/cmd/32/saveall.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze/cmd/32/saveall.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze/cmd/lc_saveacopy.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze/cmd/lc_saveacopy.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze/cmd/lc_saveall.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze/cmd/lc_saveall.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze/cmd/sc_saveacopy.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze/cmd/sc_saveacopy.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze/cmd/sc_saveall.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze/cmd/sc_saveall.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze_dark/cmd/32/saveacopy.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze_dark/cmd/32/saveacopy.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze_dark/cmd/32/saveall.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze_dark/cmd/32/saveall.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze_dark/cmd/lc_saveacopy.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze_dark/cmd/lc_saveacopy.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze_dark/cmd/lc_saveall.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze_dark/cmd/lc_saveall.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze_dark/cmd/sc_saveacopy.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze_dark/cmd/sc_saveacopy.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/breeze_dark/cmd/sc_saveall.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/breeze_dark/cmd/sc_saveall.png differ diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/32/saveacopy.svg libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/32/saveacopy.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/32/saveacopy.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/32/saveall.svg libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/32/saveall.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/32/saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/32/saveall.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveacopy.svg libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveacopy.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveacopy.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveall.svg libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveall.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/lc_saveall.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveacopy.svg libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveacopy.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveacopy.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveall.svg libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveall.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_dark_svg/cmd/sc_saveall.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/32/saveacopy.svg libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/32/saveacopy.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/32/saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/32/saveacopy.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/32/saveall.svg libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/32/saveall.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/32/saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/32/saveall.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/lc_saveacopy.svg libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/lc_saveacopy.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/lc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/lc_saveacopy.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/lc_saveall.svg libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/lc_saveall.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/lc_saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/lc_saveall.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/sc_saveacopy.svg libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/sc_saveacopy.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/sc_saveacopy.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/sc_saveacopy.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/sc_saveall.svg libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/sc_saveall.svg --- libreoffice-7.1.2~rc2/icon-themes/breeze_svg/cmd/sc_saveall.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/breeze_svg/cmd/sc_saveall.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/ar/defaultbullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/ar/defaultbullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/ar/outlinebullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/ar/outlinebullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/ar/removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/ar/removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/ar/setoutline.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/ar/setoutline.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/defaultbullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/defaultbullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/nexttrackedchange.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/nexttrackedchange.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/outlinebullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/outlinebullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/previoustrackedchange.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/previoustrackedchange.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/setoutline.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/setoutline.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/32/showtrackedchanges.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/32/showtrackedchanges.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/lc_removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/lc_removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/sc_bulletsandnumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/sc_chapternumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/sc_chapternumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/sc_defaultnumbering.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/sc_defaultnumbering.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/sc_linenumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/sc_linenumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/sc_removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/sc_removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/ar/sc_setoutline.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/ar/sc_setoutline.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/lc_nexttrackedchange.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/lc_nexttrackedchange.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/lc_previoustrackedchange.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/lc_previoustrackedchange.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/lc_removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/lc_removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/lc_trackchanges.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/lc_trackchanges.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_bulletsandnumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_chapternumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_chapternumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_defaultnumbering.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_defaultnumbering.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_linenumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_linenumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_nexttrackedchange.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_nexttrackedchange.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_previoustrackedchange.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_previoustrackedchange.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/cmd/sc_setoutline.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/cmd/sc_setoutline.png differ diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre/links.txt libreoffice-7.1.3~rc2/icon-themes/colibre/links.txt --- libreoffice-7.1.2~rc2/icon-themes/colibre/links.txt 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre/links.txt 2021-04-28 16:17:45.000000000 +0000 @@ -1176,35 +1176,30 @@ cmd/32/navigateback.png cmd/32/prevrecord.png cmd/32/pageup.png cmd/32/prevrecord.png cmd/32/previouspage.png cmd/32/prevrecord.png -cmd/32/previoustrackedchange.png cmd/32/prevrecord.png cmd/lc_browsebackward.png cmd/lc_prevrecord.png cmd/lc_navigateback.png cmd/lc_prevrecord.png cmd/lc_pageup.png cmd/lc_prevrecord.png cmd/lc_previouspage.png cmd/lc_prevrecord.png -cmd/lc_previoustrackedchange.png cmd/lc_prevrecord.png cmd/sc_browsebackward.png cmd/sc_prevrecord.png cmd/sc_navigateback.png cmd/sc_prevrecord.png cmd/sc_pageup.png cmd/sc_prevrecord.png cmd/sc_previouspage.png cmd/sc_prevrecord.png -cmd/sc_previoustrackedchange.png cmd/sc_prevrecord.png # > cmd/32/navigateforward.png cmd/32/nextrecord.png cmd/32/nextpage.png cmd/32/nextrecord.png -cmd/32/nexttrackedchange.png cmd/32/nextrecord.png cmd/32/pagedown.png cmd/32/nextrecord.png cmd/lc_navigateforward.png cmd/lc_nextrecord.png cmd/lc_nextpage.png cmd/lc_nextrecord.png -cmd/lc_nexttrackedchange.png cmd/lc_nextrecord.png cmd/lc_pagedown.png cmd/lc_nextrecord.png cmd/sc_navigateforward.png cmd/sc_nextrecord.png cmd/sc_nextpage.png cmd/sc_nextrecord.png -cmd/sc_nexttrackedchange.png cmd/sc_nextrecord.png cmd/sc_pagedown.png cmd/sc_nextrecord.png + # >| cmd/32/gotoendofdoc.png cmd/32/lastrecord.png cmd/32/lastpage.png cmd/32/lastrecord.png Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/svx/res/marker-anchor.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/svx/res/marker-anchor.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/colibre/svx/res/markers.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/colibre/svx/res/markers.png differ diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/defaultbullet.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/defaultbullet.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/defaultbullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/defaultbullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/outlinebullet.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/outlinebullet.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/outlinebullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/outlinebullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/removebullets.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/setoutline.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/setoutline.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/ar/setoutline.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/ar/setoutline.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/defaultbullet.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/defaultbullet.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/defaultbullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/defaultbullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/nexttrackedchange.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/nexttrackedchange.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/nexttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/nexttrackedchange.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/outlinebullet.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/outlinebullet.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/outlinebullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/outlinebullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/previoustrackedchange.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/previoustrackedchange.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/previoustrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/previoustrackedchange.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/removebullets.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/setoutline.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/setoutline.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/setoutline.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/setoutline.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/showtrackedchanges.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/showtrackedchanges.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/32/showtrackedchanges.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/32/showtrackedchanges.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/lc_removebullets.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/lc_removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/lc_removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/lc_removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_bulletsandnumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_bulletsandnumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_chapternumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_chapternumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_chapternumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_chapternumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_defaultnumbering.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_defaultnumbering.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_defaultnumbering.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_defaultnumbering.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_linenumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_linenumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_linenumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_linenumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_removebullets.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_setoutline.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_setoutline.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/ar/sc_setoutline.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/ar/sc_setoutline.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_nexttrackedchange.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_nexttrackedchange.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_nexttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_nexttrackedchange.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_previoustrackedchange.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_previoustrackedchange.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_previoustrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_previoustrackedchange.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_removebullets.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_trackchanges.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_trackchanges.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/lc_trackchanges.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/lc_trackchanges.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_bulletsandnumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_bulletsandnumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_bulletsandnumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_bulletsandnumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_chapternumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_chapternumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_chapternumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_chapternumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_defaultnumbering.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_defaultnumbering.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_defaultnumbering.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_defaultnumbering.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_linenumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_linenumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_linenumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_linenumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_nexttrackedchange.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_nexttrackedchange.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_nexttrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_nexttrackedchange.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_previoustrackedchange.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_previoustrackedchange.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_previoustrackedchange.svg 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_previoustrackedchange.svg 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1 @@ + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_removebullets.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_setoutline.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_setoutline.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/cmd/sc_setoutline.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/cmd/sc_setoutline.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/svx/res/marker-anchor.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/svx/res/marker-anchor.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/svx/res/marker-anchor.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/svx/res/marker-anchor.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/colibre_svg/svx/res/markers.svg libreoffice-7.1.3~rc2/icon-themes/colibre_svg/svx/res/markers.svg --- libreoffice-7.1.2~rc2/icon-themes/colibre_svg/svx/res/markers.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/colibre_svg/svx/res/markers.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_alphaliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_alphaliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_alphalowliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_alphalowliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_bulletsandnumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_chapternumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_chapternumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_defaultbullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_defaultbullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_defaultnumbering.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_defaultnumbering.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_insertneutralparagraph.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_insertneutralparagraph.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_linenumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_linenumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_numberingstart.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_numberingstart.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_outlinebullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_outlinebullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_romanliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_romanliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_romanlowliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_romanlowliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/ar/sc_setoutline.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/ar/sc_setoutline.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_alphaliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_alphaliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_alphalowliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_alphalowliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_bulletsandnumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_bulletsandnumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_chapternumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_chapternumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_defaultbullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_defaultbullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_defaultnumbering.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_defaultnumbering.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_insertneutralparagraph.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_insertneutralparagraph.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_linenumberingdialog.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_linenumberingdialog.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_numberingstart.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_numberingstart.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_outlinebullet.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_outlinebullet.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_removebullets.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_removebullets.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_romanliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_romanliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_romanlowliststyle.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_romanlowliststyle.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/karasa_jaga/cmd/sc_setoutline.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/karasa_jaga/cmd/sc_setoutline.png differ diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphaliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphaliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphaliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphaliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphalowliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphalowliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphalowliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_alphalowliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_bulletsandnumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_bulletsandnumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_bulletsandnumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_chapternumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_chapternumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_chapternumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_chapternumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultbullet.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultbullet.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultbullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultbullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultnumbering.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultnumbering.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultnumbering.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_defaultnumbering.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_insertneutralparagraph.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_insertneutralparagraph.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_insertneutralparagraph.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_insertneutralparagraph.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_linenumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_linenumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_linenumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_linenumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_numberingstart.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_numberingstart.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_numberingstart.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_numberingstart.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_outlinebullet.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_outlinebullet.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_outlinebullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_outlinebullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_removebullets.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanlowliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanlowliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanlowliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_romanlowliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_setoutline.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_setoutline.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_setoutline.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/ar/sc_setoutline.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphaliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphaliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphaliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphaliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphalowliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphalowliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphalowliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_alphalowliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_bulletsandnumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_bulletsandnumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_bulletsandnumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_bulletsandnumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_chapternumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_chapternumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_chapternumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_chapternumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultbullet.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultbullet.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultbullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultbullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultnumbering.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultnumbering.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultnumbering.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_defaultnumbering.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_insertneutralparagraph.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_insertneutralparagraph.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_insertneutralparagraph.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_insertneutralparagraph.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_linenumberingdialog.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_linenumberingdialog.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_linenumberingdialog.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_linenumberingdialog.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_numberingstart.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_numberingstart.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_numberingstart.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_numberingstart.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_outlinebullet.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_outlinebullet.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_outlinebullet.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_outlinebullet.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_removebullets.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_removebullets.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_removebullets.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_removebullets.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanlowliststyle.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanlowliststyle.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanlowliststyle.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_romanlowliststyle.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_setoutline.svg libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_setoutline.svg --- libreoffice-7.1.2~rc2/icon-themes/karasa_jaga_svg/cmd/sc_setoutline.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/karasa_jaga_svg/cmd/sc_setoutline.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/sukapura/cmd/32/decrementsublevels.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/sukapura/cmd/32/decrementsublevels.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/sukapura/cmd/lc_decrementsublevels.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/sukapura/cmd/lc_decrementsublevels.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/sukapura/cmd/sc_decrementsublevels.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/sukapura/cmd/sc_decrementsublevels.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/sukapura/cmd/sc_paralefttoright.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/sukapura/cmd/sc_paralefttoright.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/sukapura/cmd/sc_pararighttoleft.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/sukapura/cmd/sc_pararighttoleft.png differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/icon-themes/sukapura/svx/res/markers.png and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/icon-themes/sukapura/svx/res/markers.png differ diff -Nru libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg --- libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/32/decrementsublevels.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg --- libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/lc_decrementsublevels.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg --- libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/sc_decrementsublevels.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg --- libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/sc_paralefttoright.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1,4 +1,6 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg --- libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/cmd/sc_pararighttoleft.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1,4 +1,6 @@ - + -/&amp;amp;amp;gt; \ No newline at end of file + + +/&amp;amp;amp;amp;amp;gt; \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/svx/res/markers.svg libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/svx/res/markers.svg --- libreoffice-7.1.2~rc2/icon-themes/sukapura_svg/svx/res/markers.svg 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/icon-themes/sukapura_svg/svx/res/markers.svg 2021-04-28 16:17:45.000000000 +0000 @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff -Nru libreoffice-7.1.2~rc2/include/filter/msfilter/escherex.hxx libreoffice-7.1.3~rc2/include/filter/msfilter/escherex.hxx --- libreoffice-7.1.2~rc2/include/filter/msfilter/escherex.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/filter/msfilter/escherex.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -1158,8 +1158,8 @@ // ...Sdr... implemented in eschesdo.cxx - void AddSdrPage( const SdrPage& rPage ); - void AddUnoShapes( const css::uno::Reference< css::drawing::XShapes >& rxShapes ); + void AddSdrPage( const SdrPage& rPage, bool ooxmlExport = false ); + void AddUnoShapes( const css::uno::Reference< css::drawing::XShapes >& rxShapes, bool ooxmlExport = false ); /// returns the ShapeID sal_uInt32 AddSdrObject( const SdrObject& rObj, bool ooxmlExport = false ); diff -Nru libreoffice-7.1.2~rc2/include/sfx2/tabdlg.hxx libreoffice-7.1.3~rc2/include/sfx2/tabdlg.hxx --- libreoffice-7.1.2~rc2/include/sfx2/tabdlg.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/sfx2/tabdlg.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -208,6 +208,8 @@ virtual bool FillItemSet( SfxItemSet* ); virtual void Reset( const SfxItemSet* ); + // Allows to postpone some initialization to the first activation + virtual bool DeferResetToFirstActivation(); bool HasExchangeSupport() const { return bHasExchangeSupport; } diff -Nru libreoffice-7.1.2~rc2/include/test/bootstrapfixture.hxx libreoffice-7.1.3~rc2/include/test/bootstrapfixture.hxx --- libreoffice-7.1.2~rc2/include/test/bootstrapfixture.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/test/bootstrapfixture.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -57,6 +57,9 @@ virtual void setUp() override; void validate(const OUString& rURL, ValidationFormat) const; + + // Allows to exclude tests dependent on color depth of the default virtual device + static sal_uInt16 getDefaultDeviceBitCount(); }; } diff -Nru libreoffice-7.1.2~rc2/include/tools/date.hxx libreoffice-7.1.3~rc2/include/tools/date.hxx --- libreoffice-7.1.2~rc2/include/tools/date.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/tools/date.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -188,6 +188,9 @@ depending on month/year) */ bool IsValidDate() const; + // Returns true, if the date is the end of the month, false otherwise. + bool IsEndOfMonth() const; + /** Normalize date, invalid day or month values are adapted such that they carry over to the next month or/and year, for example 1999-02-32 becomes 1999-03-04, 1999-13-01 becomes 2000-01-01, 1999-13-42 becomes @@ -239,6 +242,8 @@ static sal_Int32 DateToDays( sal_uInt16 nDay, sal_uInt16 nMonth, sal_Int16 nYear ); /// Semantically identical to IsValidDate() member method. static bool IsValidDate( sal_uInt16 nDay, sal_uInt16 nMonth, sal_Int16 nYear ); + /// Semantically identical to IsEndOfMonth() member method. + static bool IsEndOfMonth(sal_uInt16 nDay, sal_uInt16 nMonth, sal_Int16 nYear); /// Semantically identical to Normalize() member method. static bool Normalize( sal_uInt16 & rDay, sal_uInt16 & rMonth, sal_Int16 & rYear ); diff -Nru libreoffice-7.1.2~rc2/include/unotest/bootstrapfixturebase.hxx libreoffice-7.1.3~rc2/include/unotest/bootstrapfixturebase.hxx --- libreoffice-7.1.2~rc2/include/unotest/bootstrapfixturebase.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/unotest/bootstrapfixturebase.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -65,7 +65,6 @@ virtual void setUp() override; virtual void tearDown() override; - }; } diff -Nru libreoffice-7.1.2~rc2/include/vcl/metaact.hxx libreoffice-7.1.3~rc2/include/vcl/metaact.hxx --- libreoffice-7.1.2~rc2/include/vcl/metaact.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/vcl/metaact.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -1407,12 +1407,20 @@ const MapMode& GetMapMode() const { return maMapMode; } }; +// tdf#127471 decl for friend below +namespace emfio { class ScaledFontDetectCorrectHelper; } + class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaFontAction final : public MetaAction { private: vcl::Font maFont; + // tdf#127471 for import correction of own wrong written EMF/WMF files allow correction + // of FontScale after import. Only from there, so use a friend here and keep the method private + friend class emfio::ScaledFontDetectCorrectHelper; + void correctFontScale(tools::Long nNewFontScale) { maFont.SetAverageFontWidth(nNewFontScale); } + public: MetaFontAction(); MetaFontAction(MetaFontAction const &) = default; diff -Nru libreoffice-7.1.2~rc2/include/vcl/toolkit/unowrap.hxx libreoffice-7.1.3~rc2/include/vcl/toolkit/unowrap.hxx --- libreoffice-7.1.2~rc2/include/vcl/toolkit/unowrap.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/vcl/toolkit/unowrap.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -42,7 +42,7 @@ class XAccessible; } -class UNLESS_MERGELIBS(VCL_DLLPUBLIC) UnoWrapperBase +class VCL_DLLPUBLIC UnoWrapperBase { public: virtual void Destroy() = 0; diff -Nru libreoffice-7.1.2~rc2/include/xmloff/xmlnamespace.hxx libreoffice-7.1.3~rc2/include/xmloff/xmlnamespace.hxx --- libreoffice-7.1.2~rc2/include/xmloff/xmlnamespace.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/include/xmloff/xmlnamespace.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -76,6 +76,9 @@ constexpr sal_uInt16 XML_NAMESPACE_DS = 40; constexpr sal_uInt16 XML_NAMESPACE_XADES132 = 41; constexpr sal_uInt16 XML_NAMESPACE_XADES141 = 42; +// OOXML digital signature extension namespaces, also based on xmldsig-core +constexpr sal_uInt16 XML_NAMESPACE_MDSSI = 43; +constexpr sal_uInt16 XML_NAMESPACE_MSODIGSIG = 44; // namespaces for ODF extended formats constexpr sal_uInt16 XML_NAMESPACE_EXT_BASE = 50; diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/chart/plotareaconverter.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/chart/plotareaconverter.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/chart/plotareaconverter.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/chart/plotareaconverter.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -420,9 +420,13 @@ // varying point colors only for single series in single chart type bool bSupportsVaryColorsByPoint = mrModel.maTypeGroups.size() == 1; + bool bIsCombinedChart = mrModel.maTypeGroups.size() == 2 && + mrModel.maTypeGroups[0]->mnTypeId != mrModel.maTypeGroups[1]->mnTypeId; + // convert all axes sets, and check which axis is attached to the first maTypeGroups - sal_Int32 nStartAxesSetIdx = (rValAxisIds.size() > 1 && aAxesSets.size() > 0 && aAxesSets[0]->maAxes.count( API_Y_AXIS ) - && aAxesSets[0]->maAxes[ API_Y_AXIS ]->mnAxisId != rValAxisIds[0] ) ? 1 : 0; + sal_Int32 nStartAxesSetIdx = bIsCombinedChart ? ((rValAxisIds.size() > 1 && aAxesSets.size() > 0 && aAxesSets[0]->maAxes.count( API_Y_AXIS ) + && aAxesSets[0]->maAxes[ API_Y_AXIS ]->mnAxisId != rValAxisIds[0] ) ? 1 : 0) + : 0; sal_Int32 nAxesSetIdx = nStartAxesSetIdx; bool bUseFixedInnerSize = false; diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/hyperlinkcontext.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/hyperlinkcontext.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/hyperlinkcontext.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/hyperlinkcontext.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -150,7 +150,8 @@ switch( aElement ) { case A_TOKEN( extLst ): - return nullptr; + maProperties.setProperty(PROP_CharColor, XML_fillcolor); + break; case A_TOKEN( snd ): // TODO use getEmbeddedWAVAudioFile() here break; diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/scene3dcontext.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/scene3dcontext.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/scene3dcontext.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/scene3dcontext.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -92,6 +92,30 @@ case A_TOKEN( backdrop ): case A_TOKEN( extLst ): return nullptr; // TODO: later (backdrop is not supported by core anyway) + + case A_TOKEN( bevelT ): + case A_TOKEN( bevelB ): + { + BevelProperties aProps; + if( rAttribs.hasAttribute( XML_w ) ) + aProps.mnWidth = rAttribs.getInteger( XML_w, 0 ); + if( rAttribs.hasAttribute( XML_h ) ) + aProps.mnHeight = rAttribs.getInteger( XML_h, 0 ); + if( rAttribs.hasAttribute( XML_prst ) ) + aProps.mnPreset = rAttribs.getToken( XML_prst, XML_none ); + + if( aElementToken == A_TOKEN( bevelT ) ) + mr3DProperties.maTopBevelProperties.set( aProps ); + else + mr3DProperties.maBottomBevelProperties.set( aProps ); + break; + } + + case A_TOKEN( extrusionClr ): + return new ColorContext( *this, mr3DProperties.maExtrusionColor ); + + case A_TOKEN( contourClr ): + return new ColorContext( *this, mr3DProperties.maContourColor ); } return nullptr; } diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/shape.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/shape.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/shape.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/shape.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -722,8 +722,10 @@ } // Use custom shape instead of GraphicObjectShape if the image is cropped to // shape. Except rectangle, which does not require further cropping - bool bIsCroppedGraphic = (aServiceName == "com.sun.star.drawing.GraphicObjectShape" && mpCustomShapePropertiesPtr->getShapePresetType() >= 0 - && mpCustomShapePropertiesPtr->getShapePresetType() != XML_Rect && mpCustomShapePropertiesPtr->getShapePresetType() != XML_rect); + bool bIsCroppedGraphic = (aServiceName == "com.sun.star.drawing.GraphicObjectShape" && + (mpCustomShapePropertiesPtr->getShapePresetType() >= 0 || mpCustomShapePropertiesPtr->getPath2DList().size() > 0) && + mpCustomShapePropertiesPtr->getShapePresetType() != XML_Rect && + mpCustomShapePropertiesPtr->getShapePresetType() != XML_rect); bool bIsCustomShape = ( aServiceName == "com.sun.star.drawing.CustomShape" || aServiceName == "com.sun.star.drawing.ConnectorShape" || bIsCroppedGraphic); @@ -846,10 +848,17 @@ uno::Reference xModelInfo(rFilterBase.getModel(), uno::UNO_QUERY); for( i = 0; i < nNumPoints; ++i ) { - const basegfx::B2DPoint aPoint( aPoly.getB2DPoint( i ) ); + basegfx::B2DPoint aPoint( aPoly.getB2DPoint( i ) ); - // tdf#106792 Not needed anymore due to the change in SdrPathObj::NbcResize: - // tdf#96674: Guard against zero width or height. + // Guard against zero width or height. + if (i) + { + const basegfx::B2DPoint& rPreviousPoint = aPoly.getB2DPoint(i - 1); + if (aPoint.getX() - rPreviousPoint.getX() == 0) + aPoint.setX(aPoint.getX() + 1); + if (aPoint.getY() - rPreviousPoint.getY() == 0) + aPoint.setY(aPoint.getY() + 1); + } pPoints[i] = awt::Point(static_cast(aPoint.getX()), static_cast(aPoint.getY())); } diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/table/predefined-table-styles.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/table/predefined-table-styles.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/table/predefined-table-styles.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/table/predefined-table-styles.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -516,11 +516,11 @@ } else if (style_name == "Themed-Style-2") { - wholeTblTextColor.setSchemeClr(XML_lt1); - firstRowTextColor.setSchemeClr(XML_lt1); - if (!accent_name.isEmpty()) { + wholeTblTextColor.setSchemeClr(XML_lt1); + firstRowTextColor.setSchemeClr(XML_lt1); + accent_val = tokens[mStyleIdMap[styleId].second]; pTblBgFillProperties->maFillColor.setSchemeClr(accent_val); diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/textbodypropertiescontext.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/textbodypropertiescontext.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/textbodypropertiescontext.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/textbodypropertiescontext.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -177,6 +177,22 @@ // EG_Text3D case A_TOKEN( sp3d ): // CT_Shape3D + { + if (mpShapePtr && mpShapePtr->getServiceName() == "com.sun.star.drawing.CustomShape") + { + if (rAttribs.hasAttribute(XML_extrusionH)) + mpShapePtr->getTextBody()->get3DProperties().mnExtrusionH = rAttribs.getInteger(XML_extrusionH, 0); + if (rAttribs.hasAttribute(XML_contourW)) + mpShapePtr->getTextBody()->get3DProperties().mnContourW = rAttribs.getInteger(XML_contourW, 0); + if (rAttribs.hasAttribute(XML_z)) + mpShapePtr->getTextBody()->get3DProperties().mnShapeZ = rAttribs.getInteger(XML_z, 0); + if (rAttribs.hasAttribute(XML_prstMaterial)) + mpShapePtr->getTextBody()->get3DProperties().mnMaterial = rAttribs.getToken(XML_prstMaterial, XML_none); + return new SceneText3DPropertiesContext(*this, mpShapePtr->getTextBody()->get3DProperties()); + } + break; + } + case A_TOKEN( flatTx ): // CT_FlatText break; diff -Nru libreoffice-7.1.2~rc2/oox/source/drawingml/textrun.cxx libreoffice-7.1.3~rc2/oox/source/drawingml/textrun.cxx --- libreoffice-7.1.2~rc2/oox/source/drawingml/textrun.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/oox/source/drawingml/textrun.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -148,7 +148,9 @@ xTextFieldCursor->gotoEnd( true ); - aTextCharacterProps.maFillProperties.maFillColor.setSchemeClr( XML_hlink ); + if (!maTextCharacterProperties.maHyperlinkPropertyMap.hasProperty(PROP_CharColor)) + aTextCharacterProps.maFillProperties.maFillColor.setSchemeClr(XML_hlink); + aTextCharacterProps.maFillProperties.moFillType.set(XML_solidFill); if ( !maTextCharacterProperties.moUnderline.has() ) aTextCharacterProps.moUnderline.set( XML_sng ); diff -Nru libreoffice-7.1.2~rc2/readlicense_oo/license/CREDITS.fodt libreoffice-7.1.3~rc2/readlicense_oo/license/CREDITS.fodt --- libreoffice-7.1.2~rc2/readlicense_oo/license/CREDITS.fodt 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/readlicense_oo/license/CREDITS.fodt 2021-04-28 16:17:45.000000000 +0000 @@ -1,24 +1,24 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.1.1.2$Linux_X86_64 LibreOffice_project/fe0b08f4af1bacafe4c7ecc87ce55bb4261646762012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.1.2.2$Linux_X86_64 LibreOffice_project/8a45595d069ef5570103caea1b71cc9d82b2aae42012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 3288 + 1214 501 - 16221 - 22139 + 48588 + 28268 true true view2 - 8192 - 6320 + 3577 + 3434 501 - 3288 - 16720 - 25425 + 1214 + 49087 + 29480 0 0 false @@ -95,7 +95,7 @@ true - 10056069 + 10061684 true false @@ -162,7 +162,7 @@ - + @@ -340,58 +340,58 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -400,19 +400,19 @@ - + - + - + - + - + @@ -421,24 +421,24 @@ - + - + - + - + - + - + @@ -1077,7 +1077,7 @@ Credits - 1655 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2021-03-23 11:11:49. + 1668 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2021-04-28 17:20:52. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 @@ -1085,7 +1085,7 @@ - + Ruediger TimmCommits: 82464Joined: 2000-10-10 @@ -1096,10 +1096,10 @@ Oliver BolteCommits: 31008Joined: 2000-09-19 - Caolán McNamaraCommits: 30245Joined: 2000-10-10 + Caolán McNamaraCommits: 30446Joined: 2000-10-10 - + Jens-Heiner Rechtien [hr]Commits: 28805Joined: 2000-09-18 @@ -1107,27 +1107,27 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Stephan BergmannCommits: 18960Joined: 2000-10-04 + Stephan BergmannCommits: 19000Joined: 2000-10-04 - *Noel GrandinCommits: 13875Joined: 2011-12-12 + *Noel GrandinCommits: 13968Joined: 2011-12-12 - + Ivo HinkelmannCommits: 9480Joined: 2002-09-09 - Tor LillqvistCommits: 8946Joined: 2010-03-23 + Tor LillqvistCommits: 8971Joined: 2010-03-23 - Miklos VajnaCommits: 8371Joined: 2010-07-29 + Miklos VajnaCommits: 8428Joined: 2010-07-29 - Michael StahlCommits: 7660Joined: 2008-06-16 + Michael StahlCommits: 7681Joined: 2008-06-16 - + Kohei YoshidaCommits: 5571Joined: 2009-06-19 @@ -1138,15 +1138,15 @@ Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 - Eike RathkeCommits: 4865Joined: 2000-10-11 + Eike RathkeCommits: 4879Joined: 2000-10-11 - + - David TardonCommits: 3642Joined: 2009-11-12 + David TardonCommits: 3644Joined: 2009-11-12 - *Julien NabetCommits: 3050Joined: 2010-11-04 + *Julien NabetCommits: 3060Joined: 2010-11-04 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1155,12 +1155,12 @@ Ocke Janssen [oj]Commits: 2850Joined: 2000-09-20 - + - *Andrea GelminiCommits: 2772Joined: 2014-10-30 + *Andrea GelminiCommits: 2799Joined: 2014-10-30 - *Tomaž VajngerlCommits: 2763Joined: 2012-06-02 + *Tomaž VajngerlCommits: 2784Joined: 2012-06-02 Jan HolesovskyCommits: 2664Joined: 2009-06-23 @@ -1169,21 +1169,21 @@ Mathias BauerCommits: 2580Joined: 2000-09-20 - + Oliver SpechtCommits: 2549Joined: 2000-09-21 - Michael MeeksCommits: 2455Joined: 2004-08-05 + Luboš LuňákCommits: 2468Joined: 2010-09-21 - Bjoern MichaelsenCommits: 2441Joined: 2009-10-14 + Michael MeeksCommits: 2457Joined: 2004-08-05 - Luboš LuňákCommits: 2430Joined: 2010-09-21 + Bjoern MichaelsenCommits: 2441Joined: 2009-10-14 - + *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 @@ -1194,10 +1194,10 @@ Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Andras TimarCommits: 1946Joined: 2010-10-02 + *Andras TimarCommits: 1950Joined: 2010-10-02 - + Christian LippkaCommits: 1805Joined: 2000-09-25 @@ -1205,15 +1205,15 @@ *Matúš KukanCommits: 1712Joined: 2011-04-06 - *Mike KaganskiCommits: 1578Joined: 2015-04-26 + *Mike KaganskiCommits: 1638Joined: 2015-04-26 - *Takeshi AbeCommits: 1486Joined: 2010-11-08 + Armin Le Grand (Allotropia)Commits: 1487Joined: 2000-09-25 - + - Armin Le Grand (Allotropia)Commits: 1483Joined: 2000-09-25 + *Takeshi AbeCommits: 1486Joined: 2010-11-08 *Matteo CasalinCommits: 1476Joined: 2011-11-13 @@ -1222,29 +1222,29 @@ Thorsten BehrensCommits: 1440Joined: 2001-04-25 - Fridrich ŠtrbaCommits: 1338Joined: 2007-02-22 + *Xisco FauliCommits: 1348Joined: 2011-02-06 - + - Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 + Fridrich ŠtrbaCommits: 1338Joined: 2007-02-22 - *Xisco FauliCommits: 1300Joined: 2011-02-06 + Thomas Lange [tl]Commits: 1310Joined: 2000-09-22 - Niklas NebelCommits: 1296Joined: 2000-09-19 + *Olivier HallotCommits: 1305Joined: 2010-10-25 - *Chris SherlockCommits: 1294Joined: 2013-02-25 + Niklas NebelCommits: 1296Joined: 2000-09-19 - + - *Olivier HallotCommits: 1285Joined: 2010-10-25 + *Chris SherlockCommits: 1294Joined: 2013-02-25 - *andreas kainzCommits: 1216Joined: 2015-03-18 + *andreas kainzCommits: 1224Joined: 2015-03-18 *Tamás ZolnaiCommits: 1208Joined: 2012-08-06 @@ -1253,26 +1253,26 @@ Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 - + - *Lionel Elie MamaneCommits: 1049Joined: 2011-01-15 + *Lionel Elie MamaneCommits: 1051Joined: 2011-01-15 - *Gabor KelemenCommits: 1004Joined: 2013-06-18 + *Gabor KelemenCommits: 1012Joined: 2013-06-18 - *Samuel MehrbrodtCommits: 983Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 984Joined: 2011-06-08 Petr MladekCommits: 958Joined: 2006-10-03 - + Noel PowerCommits: 950Joined: 2002-09-24 - *Jan-Marek GlogowskiCommits: 918Joined: 2013-11-14 + *Jan-Marek GlogowskiCommits: 934Joined: 2013-11-14 Kai AhrensCommits: 909Joined: 2000-09-21 @@ -1281,21 +1281,21 @@ Henning BrinkmannCommits: 899Joined: 2002-08-14 - + - Christian LohmaierCommits: 890Joined: 2008-06-01 + Christian LohmaierCommits: 897Joined: 2008-06-01 - Cédric BosdonnatCommits: 882Joined: 2009-11-16 + *Szymon KłosCommits: 888Joined: 2014-03-22 - Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 + Cédric BosdonnatCommits: 882Joined: 2009-11-16 - *Szymon KłosCommits: 859Joined: 2014-03-22 + Malte Timmermann [mt]Commits: 864Joined: 2000-10-10 - + Sven JacobiCommits: 850Joined: 2000-09-21 @@ -1309,7 +1309,7 @@ Mikhail VoytenkoCommits: 793Joined: 2001-01-16 - + *Maxim MonastirskyCommits: 778Joined: 2013-10-27 @@ -1320,10 +1320,10 @@ Joachim LingnerCommits: 745Joined: 2000-10-05 - *Katarina BehrensCommits: 734Joined: 2010-10-13 + *Katarina BehrensCommits: 738Joined: 2010-10-13 - + *Andrzej HuntCommits: 734Joined: 2012-03-27 @@ -1337,7 +1337,7 @@ *Zdeněk CrhonekCommits: 714Joined: 2016-05-19 - + Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 @@ -1351,12 +1351,12 @@ Kai SommerfeldCommits: 651Joined: 2000-10-10 - + Ingrid HalamaCommits: 639Joined: 2001-01-19 - *László NémethCommits: 616Joined: 2010-09-29 + *László NémethCommits: 627Joined: 2010-09-29 *Rafael DominguezCommits: 606Joined: 2011-02-13 @@ -1365,21 +1365,21 @@ *Jochen NitschkeCommits: 586Joined: 2016-02-02 - + - *Yousuf PhilipsCommits: 569Joined: 2014-09-21 + *Johnny_MCommits: 582Joined: 2016-05-12 - Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 + *Yousuf PhilipsCommits: 569Joined: 2014-09-21 - *Johnny_MCommits: 551Joined: 2016-05-12 + Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 Rene EngelhardCommits: 542Joined: 2005-03-14 - + *Khaled HosnyCommits: 542Joined: 2011-01-28 @@ -1390,10 +1390,10 @@ *Peter FoleyCommits: 489Joined: 2011-09-04 - *Adolfo Jayme BarrientosCommits: 476Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 478Joined: 2013-06-21 - + *jan IversenCommits: 474Joined: 2015-11-03 @@ -1401,27 +1401,30 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Justin LuthCommits: 445Joined: 2014-09-30 + *Justin LuthCommits: 457Joined: 2014-09-30 - *Rizal MuttaqinCommits: 395Joined: 2018-05-21 + *Rizal MuttaqinCommits: 429Joined: 2018-05-21 - + Dirk VoelzkeCommits: 392Joined: 2000-11-27 - *Ashod NakashianCommits: 386Joined: 2015-01-07 + *Ashod NakashianCommits: 388Joined: 2015-01-07 *Ivan TimofeevCommits: 380Joined: 2011-09-16 - Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 + *Seth ChaiklinCommits: 375Joined: 2019-11-13 - + + + Oliver-Rainer WittmannCommits: 372Joined: 2002-08-09 + Martin HollmichelCommits: 371Joined: 2000-09-19 @@ -1431,67 +1434,64 @@ *Laurent BPCommits: 362Joined: 2011-08-31 + + *Muhammet KaraCommits: 361Joined: 2016-03-20 - - Matthias Huetsch [mhu]Commits: 360Joined: 2000-09-28 - *Seth ChaiklinCommits: 352Joined: 2019-11-13 + *Michael WeghornCommits: 359Joined: 2014-09-10 Patrick LubyCommits: 335Joined: 2000-09-21 + + *David OstrovskyCommits: 334Joined: 2012-04-01 - - - *Michael WeghornCommits: 317Joined: 2014-09-10 + *Marco CecchettiCommits: 316Joined: 2011-04-14 - *Marco CecchettiCommits: 312Joined: 2011-04-14 + *Heiko TietzeCommits: 306Joined: 2016-10-06 Radek DoulikCommits: 305Joined: 2010-05-03 - - *Heiko TietzeCommits: 302Joined: 2016-10-06 - - + *Chr. RossmanithCommits: 300Joined: 2011-01-03 - *August SodoraCommits: 285Joined: 2011-10-18 + *Jim RaykowskiCommits: 294Joined: 2017-04-16 - *Jim RaykowskiCommits: 283Joined: 2017-04-16 + *August SodoraCommits: 285Joined: 2011-10-18 - *Mark HungCommits: 279Joined: 2014-11-04 + *Justin LuthCommits: 281Joined: 2018-04-21 - + - *Siqi LiuCommits: 277Joined: 2013-04-13 + *Mark HungCommits: 280Joined: 2014-11-04 - *Pierre-André JacquodCommits: 276Joined: 2010-11-13 + *Siqi LiuCommits: 277Joined: 2013-04-13 - *Justin LuthCommits: 270Joined: 2018-04-21 + *Pierre-André JacquodCommits: 276Joined: 2010-11-13 - *Arnaud VersiniCommits: 268Joined: 2010-10-05 + *Arnaud VersiniCommits: 270Joined: 2010-10-05 - + Lars LanghansCommits: 260Joined: 2000-09-22 @@ -1499,18 +1499,18 @@ Muthu SubramanianCommits: 250Joined: 2010-08-25 - *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 + *Henry CastroCommits: 249Joined: 2015-01-09 - *Stanislav HoracekCommits: 240Joined: 2012-12-09 + *Robert Antoni Buj GelonchCommits: 247Joined: 2014-06-11 - + - *Henry CastroCommits: 232Joined: 2015-01-09 + *Stanislav HoracekCommits: 244Joined: 2012-12-09 - *Jean-Pierre LedureCommits: 212Joined: 2013-10-12 + *Jean-Pierre LedureCommits: 226Joined: 2013-10-12 *Winfried DonkersCommits: 209Joined: 2011-11-11 @@ -1519,7 +1519,7 @@ *Tamas BunthCommits: 203Joined: 2016-03-08 - + Ingo SchmidtCommits: 202Joined: 2004-02-05 @@ -1527,13 +1527,13 @@ *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 - Bartosz KosiorekCommits: 195Joined: 2010-09-17 + Bartosz KosiorekCommits: 199Joined: 2010-09-17 *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 - + *Robert NagyCommits: 191Joined: 2010-11-04 @@ -1541,13 +1541,13 @@ *Marcos Paulo de SouzaCommits: 191Joined: 2012-09-26 - *Vasily MelenchukCommits: 177Joined: 2015-01-27 + *Vasily MelenchukCommits: 178Joined: 2015-01-27 *François TigeotCommits: 176Joined: 2011-01-31 - + *Philipp RiemerCommits: 171Joined: 2012-05-25 @@ -1561,26 +1561,26 @@ *Artur DordaCommits: 151Joined: 2012-04-15 - + *Alexander WilmsCommits: 151Joined: 2012-05-26 - *Regina HenschelCommits: 144Joined: 2010-11-04 + *Regina HenschelCommits: 146Joined: 2010-11-04 - Gregor HartmannCommits: 141Joined: 2000-10-12 + *Balazs VargaCommits: 143Joined: 2018-07-05 - *Matthias FreundCommits: 141Joined: 2013-02-08 + Gregor HartmannCommits: 141Joined: 2000-10-12 - + - *Tomáš ChvátalCommits: 140Joined: 2011-07-27 + *Matthias FreundCommits: 141Joined: 2013-02-08 - *Balazs VargaCommits: 140Joined: 2018-07-05 + *Tomáš ChvátalCommits: 140Joined: 2011-07-27 Giuseppe CastagnoCommits: 138Joined: 2007-12-09 @@ -1589,7 +1589,10 @@ *Artur DryomovCommits: 137Joined: 2013-03-14 - + + + *Gülşah KöseCommits: 132Joined: 2015-03-14 + *Serge KrotCommits: 132Joined: 2015-10-25 @@ -1599,11 +1602,8 @@ *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 - - *Gülşah KöseCommits: 129Joined: 2015-03-14 - - + Helge Delfs [hde]Commits: 126Joined: 2009-07-28 @@ -1617,9 +1617,9 @@ Takashi OnoCommits: 122Joined: 2009-12-10 - + - *Dennis FrancisCommits: 120Joined: 2018-11-15 + *Dennis FrancisCommits: 122Joined: 2018-11-15 *Sebastian SpaethCommits: 119Joined: 2010-09-28 @@ -1631,7 +1631,7 @@ *Alain RomedenneCommits: 117Joined: 2019-02-25 - + Kalman Szalai - KAMICommits: 116Joined: 2010-09-14 @@ -1645,7 +1645,7 @@ *Akshay DeepCommits: 110Joined: 2016-01-23 - + *Sophia SchröderCommits: 110Joined: 2018-04-07 @@ -1659,21 +1659,24 @@ *Rishabh KumarCommits: 100Joined: 2015-02-13 - + *Thomas KlausnerCommits: 99Joined: 2010-10-01 - *Ilmari LauhakangasCommits: 97Joined: 2017-04-15 + *Tünde TóthCommits: 99Joined: 2019-03-14 - *Tünde TóthCommits: 96Joined: 2019-03-14 + *Ilmari LauhakangasCommits: 98Joined: 2017-04-15 *Laurent GodardCommits: 93Joined: 2011-05-06 - + + + *Mert TumerCommits: 93Joined: 2016-04-30 + *Stefan KnorrCommits: 91Joined: 2011-07-04 @@ -1683,11 +1686,11 @@ *Krisztian PinterCommits: 90Joined: 2013-02-18 + + *Philipp HoferCommits: 90Joined: 2020-11-06 - - *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 @@ -1697,11 +1700,11 @@ *Daniel BankstonCommits: 88Joined: 2012-04-03 + + *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 - - *Adam CoCommits: 86Joined: 2013-04-28 @@ -1711,11 +1714,11 @@ *Javier FernandezCommits: 84Joined: 2013-03-06 + + - *Mert TumerCommits: 84Joined: 2016-04-30 + *Dante DMCommits: 84Joined: 2020-06-22 - - Tobias KrauseCommits: 83Joined: 2007-10-02 @@ -1725,16 +1728,13 @@ *Juergen FunkCommits: 83Joined: 2014-09-17 - - *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - - + - *Aron BudeaCommits: 82Joined: 2014-12-22 + *Aron BudeaCommits: 83Joined: 2014-12-22 - *Dante DMCommits: 79Joined: 2020-06-22 + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 *Tobias MadlCommits: 74Joined: 2014-09-15 @@ -1743,7 +1743,7 @@ *Gergo MocsiCommits: 72Joined: 2013-02-14 - + *weigaoCommits: 72Joined: 2014-05-07 @@ -1757,7 +1757,7 @@ *Riccardo MagliocchettiCommits: 68Joined: 2012-01-25 - + *Antonio FernandezCommits: 68Joined: 2012-07-18 @@ -1771,12 +1771,12 @@ *Rohan KumarCommits: 65Joined: 2016-02-23 - + - *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 + *Roman KuznetsovCommits: 64Joined: 2018-10-23 - *Roman KuznetsovCommits: 63Joined: 2018-10-23 + *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 *Rosemary SebastianCommits: 62Joined: 2015-06-23 @@ -1785,7 +1785,7 @@ Wolfram Garten [wg]Commits: 61Joined: 2009-10-23 - + *Martin HoskenCommits: 61Joined: 2011-02-25 @@ -1799,7 +1799,10 @@ *Jaskaran SinghCommits: 60Joined: 2016-02-18 - + + + *Steve FanningCommits: 60Joined: 2020-04-20 + Marc Neumann [msc]Commits: 59Joined: 2008-06-20 @@ -1809,39 +1812,39 @@ *Simon SteinbeissCommits: 59Joined: 2015-06-01 + + + + *Andreas HeinischCommits: 59Joined: 2019-05-13 + *Ahmed ElShreifCommits: 59Joined: 2019-06-10 - - *tageziCommits: 58Joined: 2015-09-16 - *yiming juCommits: 57Joined: 2013-11-01 + *Tomoyuki KubotaCommits: 58Joined: 2018-03-11 + + - *Steve FanningCommits: 57Joined: 2020-04-20 + *yiming juCommits: 57Joined: 2013-11-01 *matteocamCommits: 56Joined: 2014-02-25 - - *Niklas JohanssonCommits: 55Joined: 2011-11-07 *Matthew J. FrancisCommits: 55Joined: 2014-08-25 - - *Tomoyuki KubotaCommits: 55Joined: 2018-03-11 - + + Nikolai PretzellCommits: 54Joined: 2001-03-09 - - *Mihály PalenikCommits: 54Joined: 2013-07-11 @@ -1851,40 +1854,40 @@ *Jim RaykowskiCommits: 54Joined: 2019-05-11 + + + + *Attila Bakos (NISZ)Commits: 54Joined: 2019-10-28 + *Rob SneldersCommits: 53Joined: 2011-02-08 - - *Martin KepplingerCommits: 53Joined: 2011-02-18 *Lior KaplanCommits: 52Joined: 2010-10-05 + + *Efe Gürkan YALAMANCommits: 52Joined: 2012-08-01 *Will ThompsonCommits: 51Joined: 2012-03-21 - - *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 *Cao Cuong NgoCommits: 51Joined: 2013-03-04 + + *Rachit GuptaCommits: 51Joined: 2014-01-18 - *Attila Bakos (NISZ)Commits: 51Joined: 2019-10-28 - - - - *Ptyl DragonCommits: 50Joined: 2013-05-09 @@ -1893,11 +1896,11 @@ *Marcel MetzCommits: 48Joined: 2011-12-05 + + *Urs FässlerCommits: 48Joined: 2013-02-14 - - *mingli juCommits: 48Joined: 2013-11-05 @@ -1907,39 +1910,39 @@ *J. Graeme LingardCommits: 47Joined: 2010-09-29 + + + + *Luke DellerCommits: 46Joined: 2012-11-26 + *hongyu zhongCommits: 46Joined: 2013-11-04 - - *Alexandre VicenziCommits: 46Joined: 2014-01-15 *Mihai VargaCommits: 46Joined: 2014-02-27 - - *Andreas HeinischCommits: 46Joined: 2019-05-13 - + + mb93783Commits: 45Joined: 2009-07-15 - - *Eilidh McAdamCommits: 45Joined: 2011-03-10 - *Luke DellerCommits: 45Joined: 2012-11-26 + *Susobhan GhoshCommits: 45Joined: 2016-01-03 - *Susobhan GhoshCommits: 45Joined: 2016-01-03 + *Pranam LashkariCommits: 45Joined: 2020-04-03 + + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 - - *Christophe JAILLETCommits: 44Joined: 2012-06-14 @@ -1947,13 +1950,10 @@ *Daniel RobertsonCommits: 44Joined: 2015-06-27 - *Pranam LashkariCommits: 44Joined: 2020-04-03 - - *Luc CastermansCommits: 43Joined: 2011-11-13 - + *Philippe JungCommits: 43Joined: 2015-05-01 @@ -1967,7 +1967,7 @@ *Szabolcs TothCommits: 42Joined: 2019-08-07 - + *Sébastien Le RayCommits: 41Joined: 2011-02-10 @@ -1981,7 +1981,7 @@ *AdityaCommits: 41Joined: 2019-01-04 - + *Francisco SaitoCommits: 40Joined: 2011-03-21 @@ -1995,7 +1995,7 @@ *Marc-André LaverdièreCommits: 39Joined: 2011-06-21 - + *minwangCommits: 39Joined: 2013-11-04 @@ -2009,7 +2009,10 @@ *Shivam Kumar SinghCommits: 38Joined: 2020-01-15 - + + + *Tibor NagyCommits: 38Joined: 2020-04-01 + *Attila SzűcsCommits: 38Joined: 2020-06-29 @@ -2019,11 +2022,11 @@ *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 + + *Jennifer LiebelCommits: 37Joined: 2014-08-29 - - *Guillaume PousselCommits: 36Joined: 2010-12-22 @@ -2033,25 +2036,22 @@ *Vinaya MandkeCommits: 36Joined: 2013-02-08 + + *Csikós TamásCommits: 36Joined: 2013-07-01 - - *Priyanka GaikwadCommits: 36Joined: 2013-11-12 - *Tibor NagyCommits: 36Joined: 2020-04-01 - - *Laurent CharrièreCommits: 35Joined: 2010-10-14 *Santiago MartinezCommits: 35Joined: 2012-01-20 - + *xukai liuCommits: 35Joined: 2013-11-01 @@ -2065,7 +2065,7 @@ *Łukasz HryniukCommits: 35Joined: 2015-01-02 - + *Mark PageCommits: 35Joined: 2016-04-29 @@ -2079,7 +2079,7 @@ *Ayhan YalçınsoyCommits: 35Joined: 2019-12-20 - + *Laurent AlonsoCommits: 34Joined: 2011-10-23 @@ -2093,7 +2093,7 @@ *Andreas MantkeCommits: 33Joined: 2010-09-29 - + *Cor NouwsCommits: 33Joined: 2011-11-19 @@ -2104,10 +2104,13 @@ *Dennis RoczekCommits: 33Joined: 2015-06-09 - *Aurimas FišerasCommits: 32Joined: 2010-10-11 + *Rafael LimaCommits: 33Joined: 2020-11-13 - + + + *Aurimas FišerasCommits: 32Joined: 2010-10-11 + *GokulCommits: 32Joined: 2012-07-10 @@ -2117,11 +2120,11 @@ *Arnold DumasCommits: 32Joined: 2016-02-14 + + *Aleksei NikiforovCommits: 32Joined: 2018-10-31 - - *Dmitriy ShilinCommits: 32Joined: 2018-11-30 @@ -2131,235 +2134,235 @@ *Sarper AkdemirCommits: 32Joined: 2020-01-26 + + + + *Daniel Arato (NISZ)Commits: 32Joined: 2020-08-24 + *Sushil ShindeCommits: 31Joined: 2013-10-21 - - *fengzengCommits: 31Joined: 2013-11-04 *Gautam PrajapatiCommits: 31Joined: 2017-02-06 + + *Patrick JaapCommits: 31Joined: 2017-08-01 - *Daniel Arato (NISZ)Commits: 31Joined: 2020-08-24 + *Samuel MehrbrodtCommits: 31Joined: 2021-01-12 - - *Kenneth VenkenCommits: 30Joined: 2010-10-15 *Wols ListsCommits: 30Joined: 2010-11-07 + + *Christoph HerzogCommits: 30Joined: 2011-01-07 *Manal AlhassounCommits: 30Joined: 2012-09-10 - - *Bryan QuigleyCommits: 30Joined: 2012-12-12 *Isamu MogiCommits: 30Joined: 2013-04-27 + + *muleiCommits: 30Joined: 2013-11-01 *keremCommits: 30Joined: 2015-10-12 - - *Jakub TrzebiatowskiCommits: 30Joined: 2016-03-07 *Daniel SilvaCommits: 30Joined: 2017-09-24 + + + + *Ilhan YesilCommits: 30Joined: 2018-04-11 + *Harri PitkänenCommits: 29Joined: 2010-10-04 *Elton ChungCommits: 29Joined: 2012-01-31 - - *xinjiangCommits: 29Joined: 2013-11-04 + + *Matthias SeidelCommits: 29Joined: 2017-02-18 - *Ilhan YesilCommits: 29Joined: 2018-04-11 - - *Regényi BalázsCommits: 29Joined: 2020-04-02 - - Andre Fischer<andre.f.fischerCommits: 28Joined: 2010-07-21 *Szabolcs DezsiCommits: 28Joined: 2012-02-16 + + *Jack LeighCommits: 28Joined: 2012-10-03 *Pallavi JadhavCommits: 28Joined: 2013-02-08 - - *Yeliz TaneroğluCommits: 28Joined: 2015-10-03 *Paul TrojahnCommits: 28Joined: 2017-05-27 + + *Gökçen EraslanCommits: 27Joined: 2012-04-15 *Joel MaderoCommits: 27Joined: 2012-06-15 - - *José Guilherme VanzCommits: 27Joined: 2012-09-26 *Andres GomezCommits: 27Joined: 2013-04-09 + + *Jorenz ParagasCommits: 27Joined: 2015-06-23 *Dipangar NiranjarCommits: 27Joined: 2016-01-03 - - *Ximeng ZuCommits: 27Joined: 2017-03-17 *Grzegorz AraminowiczCommits: 27Joined: 2017-04-01 + + *Adrien OllierCommits: 27Joined: 2019-04-24 *Nicolas ChristenerCommits: 26Joined: 2011-03-10 - - *Josh HeidenreichCommits: 26Joined: 2011-07-20 *Maxime de RoucyCommits: 26Joined: 2012-03-08 + + *Daniel SikelerCommits: 26Joined: 2014-08-28 *Akash JainCommits: 26Joined: 2016-03-25 - - *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 *Tomofumi YagiCommits: 25Joined: 2011-10-20 + + *Prashant PandeyCommits: 25Joined: 2013-02-20 *VortCommits: 25Joined: 2014-01-21 - - *aleksandar-stefanovicCommits: 25Joined: 2016-12-29 *George BatemanCommits: 25Joined: 2020-08-04 + + *Baptiste DaroussinCommits: 24Joined: 2011-01-31 *Pedro GiffuniCommits: 24Joined: 2011-10-28 - - *Uray M. JánosCommits: 24Joined: 2012-07-17 *Sumit ChauhanCommits: 24Joined: 2018-12-04 + + *Robert RothCommits: 23Joined: 2010-10-31 *Sören MöllerCommits: 23Joined: 2011-01-03 - - *Lucas BaudinCommits: 23Joined: 2011-01-25 *Julien ChaffraixCommits: 23Joined: 2011-04-12 + + *Christian DywanCommits: 23Joined: 2011-04-14 *Felix ZhangCommits: 23Joined: 2011-10-19 - - *Thorsten WagnerCommits: 23Joined: 2015-04-24 *Mario J. RugieroCommits: 23Joined: 2015-10-11 + + *Marco A.G.PintoCommits: 23Joined: 2016-02-02 *ekuiitrCommits: 23Joined: 2017-10-13 - - - - *Samuel MehrbrodtCommits: 23Joined: 2021-01-12 - *Jacek WolszczakCommits: 22Joined: 2010-10-07 *Júlio HoffimannCommits: 22Joined: 2010-10-18 + + *Ruslan KabatsayevCommits: 22Joined: 2012-05-11 - - *Jian Fang ZhangCommits: 22Joined: 2012-06-18 @@ -2369,25 +2372,22 @@ *zhenyu yuanCommits: 22Joined: 2013-11-06 + + *Saurav ChiraniaCommits: 22Joined: 2018-01-14 - - *DaeHyun SungCommits: 22Joined: 2018-05-19 - *Rafael LimaCommits: 22Joined: 2020-11-13 - - *Rohit DeshmukhCommits: 21Joined: 2013-09-30 *Vitaliy AndersonCommits: 21Joined: 2016-12-09 - + *Bernhard WidlCommits: 21Joined: 2017-03-27 @@ -2401,7 +2401,7 @@ *Brad SowdenCommits: 20Joined: 2011-12-27 - + *Petr VorelCommits: 20Joined: 2012-02-17 @@ -2415,7 +2415,7 @@ Xiaofei ZhangCommits: 19Joined: 2010-06-28 - + *Lennard WasserthalCommits: 19Joined: 2012-08-11 @@ -2429,7 +2429,7 @@ *Ravindra VidhateCommits: 19Joined: 2014-01-30 - + *Aleksas PantechovskisCommits: 19Joined: 2016-03-03 @@ -2443,7 +2443,7 @@ *Onur YilmazCommits: 19Joined: 2019-12-18 - + *Svante SchubertCommits: 19Joined: 2020-07-08 @@ -2457,7 +2457,7 @@ *Abdulelah AlarifiCommits: 18Joined: 2012-12-12 - + *Boris DušekCommits: 18Joined: 2013-07-21 @@ -2471,7 +2471,7 @@ *Mert TümerCommits: 18Joined: 2018-01-08 - + *Zdibák ZoltánCommits: 18Joined: 2018-10-13 @@ -2485,7 +2485,7 @@ *Jian Hong ChengCommits: 17Joined: 2012-06-26 - + *navin patidarCommits: 17Joined: 2013-01-06 @@ -2499,7 +2499,7 @@ *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 - + *Thomas BeckCommits: 17Joined: 2017-03-27 @@ -2513,7 +2513,7 @@ *Martin van ZijlCommits: 17Joined: 2018-02-26 - + *Alain RomedenneCommits: 17Joined: 2018-12-19 @@ -2527,7 +2527,7 @@ Florian ReuterCommits: 16Joined: 2010-09-14 - + *Luke DixonCommits: 16Joined: 2010-10-26 @@ -2541,7 +2541,7 @@ *Anders JonssonCommits: 16Joined: 2010-12-11 - + *Maciej RumianowskiCommits: 16Joined: 2011-07-19 @@ -2555,7 +2555,7 @@ *Jean-Noël RouvignacCommits: 16Joined: 2013-01-09 - + *tsahi glikCommits: 16Joined: 2013-06-04 @@ -2569,7 +2569,7 @@ *nd101Commits: 16Joined: 2019-07-03 - + Octavio AlvarezCommits: 15Joined: 2010-09-13 @@ -2583,7 +2583,7 @@ *Joachim TremourouxCommits: 15Joined: 2010-11-19 - + *Yifan JCommits: 15Joined: 2010-12-16 @@ -2597,7 +2597,7 @@ *Catalin IacobCommits: 15Joined: 2012-02-10 - + *Nikhil WalvekarCommits: 15Joined: 2013-11-01 @@ -2611,7 +2611,7 @@ *Armin Le GrandCommits: 15Joined: 2018-02-15 - + *Samuel ThibaultCommits: 15Joined: 2018-09-05 @@ -2625,7 +2625,7 @@ *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 - + *Zhe WangCommits: 14Joined: 2012-06-20 @@ -2639,7 +2639,7 @@ *Juan PiccaCommits: 14Joined: 2014-07-23 - + *Zsolt BölönyCommits: 14Joined: 2015-01-10 @@ -2650,10 +2650,13 @@ *Nickson ThandaCommits: 14Joined: 2018-03-25 - *Prashant ShahCommits: 13Joined: 2010-10-10 + *Alain RomedenneCommits: 14Joined: 2021-02-17 - + + + *Prashant ShahCommits: 13Joined: 2010-10-10 + *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 @@ -2663,11 +2666,11 @@ *gerhard oettlCommits: 13Joined: 2012-08-27 + + *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 - - *Mathias HasselmannCommits: 13Joined: 2013-01-14 @@ -2677,11 +2680,11 @@ *sabri unalCommits: 13Joined: 2018-11-20 + + *Steve FanningCommits: 13Joined: 2019-11-30 - - *Jani MonosesCommits: 12Joined: 2010-10-30 @@ -2691,11 +2694,11 @@ *Tomas HlavatyCommits: 12Joined: 2011-12-06 + + *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 @@ -2705,11 +2708,11 @@ *Mirek MazelCommits: 12Joined: 2012-06-05 + + *Wei WeiCommits: 12Joined: 2013-11-16 - - *kadertarlanCommits: 12Joined: 2015-12-14 @@ -2719,11 +2722,11 @@ *Abhilash SinghCommits: 12Joined: 2016-07-22 + + *Kacper KasperCommits: 12Joined: 2018-02-18 - - *Pelin KuranCommits: 12Joined: 2020-01-25 @@ -2733,11 +2736,11 @@ Mox SoiniCommits: 11Joined: 2008-04-04 + + Frank PetersCommits: 11Joined: 2010-05-20 - - *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 @@ -2747,11 +2750,11 @@ *Peter RabiCommits: 11Joined: 2011-07-14 + + *David BolenCommits: 11Joined: 2012-03-07 - - *Jung-uk KimCommits: 11Joined: 2012-08-13 @@ -2761,11 +2764,11 @@ *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 + + *Sean YoungCommits: 11Joined: 2013-05-16 - - *Krunoslav ŠebetićCommits: 11Joined: 2013-07-18 @@ -2775,11 +2778,11 @@ *Michael JaumannCommits: 11Joined: 2014-09-02 + + *Phillip SzCommits: 11Joined: 2015-03-16 - - *nadithCommits: 11Joined: 2016-07-14 @@ -2789,11 +2792,11 @@ *Fakabbir AminCommits: 11Joined: 2017-01-29 + + *jmzambonCommits: 11Joined: 2017-05-19 - - *Manuj VashistCommits: 11Joined: 2017-12-10 @@ -2803,70 +2806,78 @@ *Abhyudaya SharmaCommits: 11Joined: 2018-03-19 + + *Srijan BhatiaCommits: 11Joined: 2020-05-30 - - + + *Ming HuaCommits: 11Joined: 2020-11-02 + *Timo HeinoCommits: 10Joined: 2010-11-22 *Luke PetrolekasCommits: 10Joined: 2011-02-12 + + *Theo van KlaverenCommits: 10Joined: 2011-03-10 *Troy RolloCommits: 10Joined: 2011-07-11 - - *Kristian RietveldCommits: 10Joined: 2011-10-15 *David VogtCommits: 10Joined: 2012-02-05 + + *Jianyuan LiCommits: 10Joined: 2012-08-16 *Stefan WeibergCommits: 10Joined: 2014-08-28 - - *Benjamin NiCommits: 10Joined: 2015-04-02 *Arul MichaelCommits: 10Joined: 2016-01-05 + + *Chirag ManwaniCommits: 10Joined: 2016-02-16 *Dilek UzulmezCommits: 10Joined: 2016-10-15 - - *Rahul GurungCommits: 10Joined: 2018-08-26 *Mark RobbinsonCommits: 10Joined: 2019-01-02 + + *Heiko TietzeCommits: 10Joined: 2019-09-08 *A_GANCommits: 10Joined: 2020-01-25 - - + + *Bayram ÇiçekCommits: 10Joined: 2020-11-23 + *homeboy445Commits: 10Joined: 2020-12-09 + + *Vincent LE GARRECCommits: 10Joined: 2021-02-21 @@ -2876,11 +2887,11 @@ *Surendran MahendranCommits: 9Joined: 2010-11-05 - - *Martin SrebotnjakCommits: 9Joined: 2010-12-19 + + *Steven ButlerCommits: 9Joined: 2011-01-07 @@ -2890,11 +2901,11 @@ *Mihkel TõnnovCommits: 9Joined: 2012-07-02 - - *Michael DunphyCommits: 9Joined: 2013-04-18 + + *Dinesh PatilCommits: 9Joined: 2014-03-12 @@ -2904,11 +2915,11 @@ *Deena FrancisCommits: 9Joined: 2014-07-29 - - *Ryan McCoskrieCommits: 9Joined: 2014-09-14 + + *Aybuke OzdemirCommits: 9Joined: 2015-10-07 @@ -2918,11 +2929,11 @@ *pv2kCommits: 9Joined: 2016-11-28 - - *Kiyotaka NishiboriCommits: 9Joined: 2017-08-27 + + *Adam KovacsCommits: 9Joined: 2018-08-16 @@ -2932,23 +2943,15 @@ *Scott ClarkeCommits: 9Joined: 2019-06-07 - - *Canberk TURANCommits: 9Joined: 2020-01-25 + + *Jussi PakkanenCommits: 9Joined: 2020-02-22 - *Ming HuaCommits: 9Joined: 2020-11-02 - - - *Bayram ÇiçekCommits: 9Joined: 2020-11-23 - - - - Fong LinCommits: 8Joined: 2010-09-14 @@ -2957,11 +2960,11 @@ *Michael CallahanCommits: 8Joined: 2010-12-06 + + *Robert DargaudCommits: 8Joined: 2011-04-12 - - *Jenei GáborCommits: 8Joined: 2011-07-29 @@ -2971,11 +2974,11 @@ *Daisuke NishinoCommits: 8Joined: 2011-11-06 + + *Tomcsik BenceCommits: 8Joined: 2012-01-14 - - *Jonathan AdamsCommits: 8Joined: 2012-03-16 @@ -2985,11 +2988,11 @@ *Jean-Tiare Le BigotCommits: 8Joined: 2012-08-08 + + *Timothy PearsonCommits: 8Joined: 2012-08-18 - - *Ahmad H. Al HarthiCommits: 8Joined: 2012-12-31 @@ -2999,11 +3002,11 @@ *Ádám Csaba KirályCommits: 8Joined: 2013-02-28 + + *Brian FraserCommits: 8Joined: 2013-09-03 - - *RajashriCommits: 8Joined: 2013-12-06 @@ -3013,11 +3016,11 @@ *SouravCommits: 8Joined: 2014-03-15 + + *Thomas ViehmannCommits: 8Joined: 2014-08-15 - - *Nathan YeeCommits: 8Joined: 2015-01-01 @@ -3027,11 +3030,11 @@ *Sean DavisCommits: 8Joined: 2015-06-01 + + *HeiherCommits: 8Joined: 2015-07-07 - - *IanCommits: 8Joined: 2015-08-06 @@ -3041,11 +3044,11 @@ *Christian BarthCommits: 8Joined: 2017-06-25 + + *ShinnokCommits: 8Joined: 2017-09-06 - - *Alain RomedenneCommits: 8Joined: 2018-11-29 @@ -3055,11 +3058,11 @@ *Artur NeumannCommits: 8Joined: 2019-06-11 + + *Kevin SuoCommits: 8Joined: 2020-10-10 - - *diwanshu885Commits: 8Joined: 2020-10-30 @@ -3067,279 +3070,279 @@ *shubham656Commits: 8Joined: 2020-11-07 + *AnshuCommits: 8Joined: 2020-11-09 + + + + *Gökhan ÖzeloğluCommits: 8Joined: 2020-11-21 *Balaharipreetha MuthuCommits: 8Joined: 2020-12-04 - - *Thies PierdolaCommits: 7Joined: 2011-01-28 *Sergey DavidoffCommits: 7Joined: 2011-04-11 + + *Samuel CantrellCommits: 7Joined: 2011-06-11 *Alex McMurchy1917Commits: 7Joined: 2011-08-14 - - *Christoph LutzCommits: 7Joined: 2011-09-06 *Keith McRaeCommits: 7Joined: 2012-01-18 + + *Gert van ValkenhoefCommits: 7Joined: 2012-02-14 *Brennan VincentCommits: 7Joined: 2012-04-02 - - *Wang LeiCommits: 7Joined: 2012-06-14 *Issa AlkurtassCommits: 7Joined: 2012-09-04 + + *Christopher CopitsCommits: 7Joined: 2012-09-19 *Mathias MichelCommits: 7Joined: 2012-11-19 - - *Eric SeynaeveCommits: 7Joined: 2013-02-04 *SJacobiCommits: 7Joined: 2013-03-05 + + *Roi IllouzCommits: 7Joined: 2013-10-20 *Stefan RingCommits: 7Joined: 2014-01-09 - - *Trent MacAlpineCommits: 7Joined: 2014-03-06 *David DelmaCommits: 7Joined: 2014-05-13 + + *Giuseppe BilottaCommits: 7Joined: 2014-09-09 *V Stuart FooteCommits: 7Joined: 2014-12-04 - - *RaalCommits: 7Joined: 2014-12-31 *brinzingCommits: 7Joined: 2015-08-22 + + *Feyza YavuzCommits: 7Joined: 2015-10-04 *iremCommits: 7Joined: 2015-10-11 - - *apurvapriyadarshiCommits: 7Joined: 2016-05-27 *slackaCommits: 7Joined: 2016-07-30 + + *Asela DasanayakaCommits: 7Joined: 2016-07-30 *Tiago SantosCommits: 7Joined: 2016-08-12 - - *HieronymousCommits: 7Joined: 2016-10-13 *Ulrich GemkowCommits: 7Joined: 2016-10-27 + + *Marina LatiniCommits: 7Joined: 2016-11-10 *Furkan Ahmet KaraCommits: 7Joined: 2017-10-21 - - *Vincas DargisCommits: 7Joined: 2018-01-21 *Guilhem MoulinCommits: 7Joined: 2018-02-05 + + *Hamish McIntyre-BhattyCommits: 7Joined: 2018-10-10 *BugraCommits: 7Joined: 2020-01-30 - - *Chris MayoCommits: 7Joined: 2020-05-08 *Ouyang LeyanCommits: 7Joined: 2020-09-06 + + - *AnshuCommits: 7Joined: 2020-11-09 + *Vert DCommits: 7Joined: 2020-09-26 *Phil BordelonCommits: 6Joined: 2010-09-30 - - *Ricardo MorenoCommits: 6Joined: 2010-11-03 *Alexander O. AnisimovCommits: 6Joined: 2010-11-06 + + *Daniel Di MarcoCommits: 6Joined: 2010-11-15 *shiraharaCommits: 6Joined: 2011-01-28 - - *Xavier ALTCommits: 6Joined: 2011-03-06 *Anurag JainCommits: 6Joined: 2011-04-05 + + *Thomas CollertonCommits: 6Joined: 2011-11-18 *David VerrierCommits: 6Joined: 2013-02-26 - - *Anurag KanungoCommits: 6Joined: 2013-04-19 *tianyaoCommits: 6Joined: 2013-11-09 + + *Jeroen NijhofCommits: 6Joined: 2014-05-01 *Kay SchenkCommits: 6Joined: 2014-09-19 - - *Michel RenonCommits: 6Joined: 2015-05-19 *Fabio BusoCommits: 6Joined: 2015-11-01 + + *Sedat AkCommits: 6Joined: 2015-11-08 *Guillaume SmahaCommits: 6Joined: 2015-11-25 - - *Ricardo PalomaresCommits: 6Joined: 2016-01-16 *Steven GuoCommits: 6Joined: 2016-03-02 + + *ChamalCommits: 6Joined: 2016-08-01 *RosenCommits: 6Joined: 2016-08-04 - - *giaccoCommits: 6Joined: 2016-10-11 *abdulwdCommits: 6Joined: 2016-12-22 + + *Gian Domenico CeccariniCommits: 6Joined: 2017-01-13 *Jean-Sebastien BevilacquaCommits: 6Joined: 2017-02-09 - - *udareechkCommits: 6Joined: 2017-09-20 *Kemal AyhanCommits: 6Joined: 2019-12-18 + + *Batuhan TaskayaCommits: 6Joined: 2020-01-25 *Mehmet Emin BaşoğluCommits: 6Joined: 2020-01-25 - - *iakarsuCommits: 6Joined: 2020-01-25 *Ivan StefanenkoCommits: 6Joined: 2020-08-26 + + *ViKrAm-BaisCommits: 6Joined: 2021-01-07 *msrijita18Commits: 6Joined: 2021-01-26 - - - - *Alain RomedenneCommits: 6Joined: 2021-02-17 - *Gil ForcadaCommits: 5Joined: 2010-09-28 *David HobleyCommits: 5Joined: 2010-10-04 + + *Bernhard RosenkraenzerCommits: 5Joined: 2010-11-01 - - *Antoine ProulxCommits: 5Joined: 2011-01-30 @@ -3349,11 +3352,11 @@ *Jeffrey ChangCommits: 5Joined: 2011-06-01 + + *ericb2Commits: 5Joined: 2011-10-30 - - *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 @@ -3363,11 +3366,11 @@ *Wei Ming KhooCommits: 5Joined: 2012-02-17 + + *Lionel DricotCommits: 5Joined: 2012-06-04 - - *Pavel KysilkaCommits: 5Joined: 2012-06-25 @@ -3377,11 +3380,11 @@ *Pavel JaníkCommits: 5Joined: 2012-11-29 + + *Werner KoernerCommits: 5Joined: 2012-12-11 - - *Matthias HofmannCommits: 5Joined: 2013-03-08 @@ -3391,11 +3394,11 @@ *pje335_NLCommits: 5Joined: 2013-05-10 + + *Ciorba EdmondCommits: 5Joined: 2013-06-11 - - *Pader RezsoCommits: 5Joined: 2013-07-01 @@ -3405,70 +3408,78 @@ *Timothy MarkleCommits: 5Joined: 2014-01-31 + + *Jan KantertCommits: 5Joined: 2014-06-12 - - + + *scitoCommits: 5Joined: 2015-04-13 + *Pasi LallinahoCommits: 5Joined: 2015-06-02 *Berk GurekenCommits: 5Joined: 2015-10-01 + + *Rico TzschichholzCommits: 5Joined: 2016-02-09 *Yossi ZahnCommits: 5Joined: 2016-11-25 - - *Edmund WongCommits: 5Joined: 2016-12-08 *Huzaifa IftikharCommits: 5Joined: 2016-12-19 + + *tamsil1amani3Commits: 5Joined: 2016-12-22 *Lukas RöllinCommits: 5Joined: 2017-02-06 - - *Corentin NoëlCommits: 5Joined: 2019-09-20 *Tolunay DündarCommits: 5Joined: 2019-12-18 + + *Eda Nur VarCommits: 5Joined: 2020-01-25 *Yukio SiraichiCommits: 5Joined: 2020-03-09 - - *gokaysatirCommits: 5Joined: 2020-08-08 *Tomofumi YagiCommits: 5Joined: 2020-09-12 + + *Umut Emre BayramogluCommits: 5Joined: 2020-11-21 *Suhaas JoshiCommits: 5Joined: 2021-01-04 - - + + *Ahmet Hakan ÇelikCommits: 5Joined: 2021-03-07 + *Florian BircherCommits: 4Joined: 2010-10-16 + + *Andrew C. E. DentCommits: 4Joined: 2010-10-24 @@ -3478,11 +3489,11 @@ *Maja DjordjevicCommits: 4Joined: 2011-01-06 - - *An LeendersCommits: 4Joined: 2011-01-25 + + *Alexander ThurgoodCommits: 4Joined: 2011-01-26 @@ -3492,11 +3503,11 @@ *Michael MuenchCommits: 4Joined: 2011-02-13 - - *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 + + *Samphan RaruenromCommits: 4Joined: 2011-03-24 @@ -3506,11 +3517,11 @@ *Roland BaudinCommits: 4Joined: 2011-05-16 - - *André SchnabelCommits: 4Joined: 2011-05-31 + + *Tom TromeyCommits: 4Joined: 2011-08-11 @@ -3520,11 +3531,11 @@ *Cheng-Chia TsengCommits: 4Joined: 2012-01-16 - - *Kate GossCommits: 4Joined: 2012-02-11 + + *Mariana MarasoiuCommits: 4Joined: 2012-03-14 @@ -3534,11 +3545,11 @@ *Raimundo MouraCommits: 4Joined: 2012-06-16 - - *Florian ReisingerCommits: 4Joined: 2012-06-22 + + *Nicholas ShanksCommits: 4Joined: 2012-09-04 @@ -3548,11 +3559,11 @@ *Joan MontanéCommits: 4Joined: 2013-02-22 - - *XiaoliCommits: 4Joined: 2013-03-23 + + *Sameer DeshmukhCommits: 4Joined: 2013-04-20 @@ -3562,11 +3573,11 @@ *Elie RouxCommits: 4Joined: 2013-05-29 - - *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 + + *Honza HavlíčekCommits: 4Joined: 2013-07-27 @@ -3576,11 +3587,11 @@ *Ulrich KitzingerCommits: 4Joined: 2013-11-30 - - *Ken BiondiCommits: 4Joined: 2014-03-05 + + *Jeffrey StedfastCommits: 4Joined: 2014-07-26 @@ -3590,11 +3601,11 @@ *Kevin SuoCommits: 4Joined: 2014-11-06 - - *Jun NOGATACommits: 4Joined: 2015-01-07 + + *Aleksandr AndreevCommits: 4Joined: 2015-04-20 @@ -3604,11 +3615,11 @@ *Sahasranaman M SCommits: 4Joined: 2015-10-04 - - *ccshellerCommits: 4Joined: 2015-10-08 + + *pasqual milvaquesCommits: 4Joined: 2015-12-02 @@ -3618,11 +3629,11 @@ *Burcin AkalinCommits: 4Joined: 2015-12-18 - - *Kumar ThangavelCommits: 4Joined: 2016-01-04 + + *erdemdemirkapiCommits: 4Joined: 2016-01-30 @@ -3632,11 +3643,11 @@ *Tim EvesCommits: 4Joined: 2016-02-23 - - *GurkaranCommits: 4Joined: 2016-03-17 + + *Fabio BiocchettiCommits: 4Joined: 2016-10-21 @@ -3646,11 +3657,11 @@ *Patrick JaapCommits: 4Joined: 2017-01-30 - - *Piotr DrągCommits: 4Joined: 2017-03-05 + + *Paul MenzelCommits: 4Joined: 2017-05-17 @@ -3660,11 +3671,11 @@ *Olivier TilloyCommits: 4Joined: 2018-01-08 - - *Jon NermutCommits: 4Joined: 2018-01-20 + + *Jozsef SzakacsCommits: 4Joined: 2018-11-07 @@ -3674,11 +3685,11 @@ *Aleyna DoğrucanCommits: 4Joined: 2019-12-28 - - *Efdal İncesuCommits: 4Joined: 2020-01-25 + + *Faruk DemirbaşCommits: 4Joined: 2020-01-25 @@ -3688,22 +3699,25 @@ *Burak BalaCommits: 4Joined: 2020-01-26 - - *Mohamed SamehCommits: 4Joined: 2020-02-11 + + - *Vert DCommits: 4Joined: 2020-09-26 + *VishwasCommits: 4Joined: 2020-12-31 - *VishwasCommits: 4Joined: 2020-12-31 + *Aditya Pratap SinghCommits: 4Joined: 2021-02-01 *dipanshu124Commits: 4Joined: 2021-02-12 + + *HosseinCommits: 4Joined: 2021-03-23 + - + Keith StribleyCommits: 3Joined: 2010-06-29 @@ -3717,7 +3731,7 @@ *Gioele BarabucciCommits: 3Joined: 2010-11-18 - + *Xuacu SaturioCommits: 3Joined: 2010-12-19 @@ -3731,7 +3745,7 @@ *Michael KochCommits: 3Joined: 2011-01-21 - + *Jan DarmochwalCommits: 3Joined: 2011-01-27 @@ -3745,7 +3759,7 @@ *David NalleyCommits: 3Joined: 2011-03-03 - + *Guto MaiaCommits: 3Joined: 2011-03-18 @@ -3759,7 +3773,7 @@ *Mike EberdtCommits: 3Joined: 2011-07-12 - + *Florian Allmann-RahnCommits: 3Joined: 2011-08-22 @@ -3773,7 +3787,7 @@ *Sérgio MarquesCommits: 3Joined: 2011-11-25 - + *Stefan HeinemannCommits: 3Joined: 2012-02-16 @@ -3787,7 +3801,7 @@ *Stephan van den AkkerCommits: 3Joined: 2012-06-07 - + *Benjamin DrungCommits: 3Joined: 2012-06-08 @@ -3801,7 +3815,7 @@ *Oliver GüntherCommits: 3Joined: 2012-08-09 - + *Istvan TuriCommits: 3Joined: 2012-08-16 @@ -3815,7 +3829,7 @@ *Markus MaierCommits: 3Joined: 2012-11-25 - + *Marina PlakalovicCommits: 3Joined: 2012-12-14 @@ -3829,7 +3843,7 @@ *Petr KrausCommits: 3Joined: 2013-03-26 - + *Golnaz IrannejadCommits: 3Joined: 2013-04-02 @@ -3843,7 +3857,7 @@ *Nagy AkosCommits: 3Joined: 2013-06-27 - + *Gabriele BulfonCommits: 3Joined: 2013-07-05 @@ -3857,7 +3871,7 @@ *Tobias MuellerCommits: 3Joined: 2014-02-10 - + *Peter Senna TschudinCommits: 3Joined: 2014-05-26 @@ -3871,7 +3885,7 @@ *Popa Adrian MariusCommits: 3Joined: 2015-03-23 - + *Matthew NichollsCommits: 3Joined: 2015-04-01 @@ -3885,7 +3899,7 @@ *Simon LongCommits: 3Joined: 2015-07-08 - + *Lucas SatabinCommits: 3Joined: 2015-08-25 @@ -3899,7 +3913,7 @@ *Giovanni CaligarisCommits: 3Joined: 2015-11-30 - + *baltasarqCommits: 3Joined: 2016-02-24 @@ -3913,7 +3927,7 @@ *drazilCommits: 3Joined: 2016-08-27 - + *Jacek FraczekCommits: 3Joined: 2016-10-05 @@ -3927,7 +3941,7 @@ *bansan85Commits: 3Joined: 2016-12-21 - + *Dimitri BouronCommits: 3Joined: 2016-12-22 @@ -3941,7 +3955,7 @@ *Bán RóbertCommits: 3Joined: 2017-10-25 - + *Mark VecsernyesCommits: 3Joined: 2017-11-15 @@ -3955,7 +3969,7 @@ *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 - + *TelestoCommits: 3Joined: 2018-01-22 @@ -3969,7 +3983,7 @@ *Laurent GodardCommits: 3Joined: 2018-04-24 - + *Ulkem KasapogluCommits: 3Joined: 2018-07-04 @@ -3983,7 +3997,7 @@ *Meryem EzberCommits: 3Joined: 2019-02-10 - + *Andrés MaldonadoCommits: 3Joined: 2019-02-21 @@ -3997,7 +4011,7 @@ *Gökay ŞATIRCommits: 3Joined: 2019-12-24 - + *Michel ThomasCommits: 3Joined: 2020-02-01 @@ -4011,7 +4025,7 @@ *Julian KalinowskiCommits: 3Joined: 2020-03-31 - + *Ian Barkley-YeungCommits: 3Joined: 2020-04-06 @@ -4022,10 +4036,13 @@ *Michael WarnerCommits: 3Joined: 2020-05-24 - *yakovruCommits: 3Joined: 2020-06-17 + *Pedro Pinto SilvaCommits: 3Joined: 2020-06-16 - + + + *yakovruCommits: 3Joined: 2020-06-17 + *Deb Barkley-YeungCommits: 3Joined: 2020-08-19 @@ -4035,375 +4052,375 @@ *Leo WangCommits: 3Joined: 2020-10-18 + + *Gokce KulerCommits: 3Joined: 2020-10-20 - - + + *Thorsten BehrensCommits: 3Joined: 2021-03-04 + Loiseleur MichelCommits: 2Joined: 2010-09-14 *Justin MalcolmCommits: 2Joined: 2010-09-29 + + *Seo SanghyeonCommits: 2Joined: 2010-09-29 *Sean McNamaraCommits: 2Joined: 2010-09-29 - - *Robert SedakCommits: 2Joined: 2010-10-05 *Sean McMurrayCommits: 2Joined: 2010-10-20 + + *Nadav VinikCommits: 2Joined: 2010-10-21 *Marcin eXine MCommits: 2Joined: 2010-11-02 - - *Dwayne BaileyCommits: 2Joined: 2010-11-03 *Christoph NoackCommits: 2Joined: 2010-12-13 + + *Sophie GautierCommits: 2Joined: 2010-12-19 *Ed DeanCommits: 2Joined: 2011-01-14 - - *Jonathan CallenCommits: 2Joined: 2011-01-29 *Karsten GerloffCommits: 2Joined: 2011-02-06 + + *Jean Charles PapinCommits: 2Joined: 2011-02-11 *Tobias KranzCommits: 2Joined: 2011-02-17 - - *Matthias KloseCommits: 2Joined: 2011-03-01 *Michael NattererCommits: 2Joined: 2011-04-08 + + *Cyril RoelandtCommits: 2Joined: 2011-04-26 *Kelly AndersonCommits: 2Joined: 2011-05-31 - - *Michal SvecCommits: 2Joined: 2011-07-12 *Mohammad ElahiCommits: 2Joined: 2011-08-27 + + *Takashi NakamotoCommits: 2Joined: 2011-08-28 *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 - - *Jan HubickaCommits: 2Joined: 2011-09-12 *Arno TeigsethCommits: 2Joined: 2011-09-14 + + *Maxim IorshCommits: 2Joined: 2011-10-05 *Emanuele FiaCommits: 2Joined: 2011-11-02 - - *Yury TarasievichCommits: 2Joined: 2011-11-23 *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 + + *Milos SramekCommits: 2Joined: 2012-01-20 *Andreas SchierlCommits: 2Joined: 2012-01-30 - - *PKEuSCommits: 2Joined: 2012-02-05 *UrmasCommits: 2Joined: 2012-02-13 + + *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 *Greggory HernandezCommits: 2Joined: 2012-02-22 - - *William GathoyeCommits: 2Joined: 2012-02-28 *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 + + *Mark WolfCommits: 2Joined: 2012-04-04 *Andrew HigginsonCommits: 2Joined: 2012-04-10 - - *Abeer SethiCommits: 2Joined: 2012-04-12 *Ferran VidalCommits: 2Joined: 2012-04-21 + + *Vicente VendrellCommits: 2Joined: 2012-04-23 *David SteeleCommits: 2Joined: 2012-04-24 - - *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 *Marc GarciaCommits: 2Joined: 2012-05-04 + + *Martyn RussellCommits: 2Joined: 2012-06-07 *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 - - *Ward van WanrooijCommits: 2Joined: 2012-06-25 *Yuri DarioCommits: 2Joined: 2012-07-18 + + *Horacio FernandesCommits: 2Joined: 2012-07-20 *Andras BartekCommits: 2Joined: 2012-08-06 - - *Daniel HerdeCommits: 2Joined: 2012-08-09 *Johann MessnerCommits: 2Joined: 2012-08-28 + + *Flex LiuCommits: 2Joined: 2012-09-04 *Sergey FarbotkaCommits: 2Joined: 2012-09-21 - - *Christos StrubulisCommits: 2Joined: 2012-12-09 *Arne de BruijnCommits: 2Joined: 2012-12-11 + + *Milan CrhaCommits: 2Joined: 2013-02-07 *Adam MrózCommits: 2Joined: 2013-02-24 - - *Gregg KingCommits: 2Joined: 2013-02-26 *Benedikt MorbachCommits: 2Joined: 2013-03-10 + + *Moritz KuettCommits: 2Joined: 2013-03-23 *Akash ShetyeCommits: 2Joined: 2013-03-23 - - *Janit AnjariaCommits: 2Joined: 2013-04-19 *mmeof2Commits: 2Joined: 2013-05-03 + + *Donizete WaterkemperCommits: 2Joined: 2013-05-23 *Rolf HemmerlingCommits: 2Joined: 2013-06-15 - - *Jing XianCommits: 2Joined: 2013-06-26 *Chris HoppeCommits: 2Joined: 2013-06-27 + + *Ri GangHuCommits: 2Joined: 2013-07-28 *Neil MooreCommits: 2Joined: 2013-08-09 - - *Viktor VargaCommits: 2Joined: 2013-08-28 *Janos FaragoCommits: 2Joined: 2013-09-03 + + *Richard HughesCommits: 2Joined: 2013-10-01 *Mathieu ParentCommits: 2Joined: 2013-10-14 - - *Jagan LokanathaCommits: 2Joined: 2013-11-19 *Anderson RobertoCommits: 2Joined: 2014-01-15 + + *Martin LiškaCommits: 2Joined: 2014-03-26 *Bisal NayalCommits: 2Joined: 2014-05-07 - - *Hussian AlamriCommits: 2Joined: 2014-05-14 *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 + + *Clarence GuoCommits: 2Joined: 2014-05-26 *Hideki IkedaCommits: 2Joined: 2014-06-25 - - *Boris EgorovCommits: 2Joined: 2014-09-08 *YiiChang YenCommits: 2Joined: 2014-10-16 + + *Vinicius VendraminiCommits: 2Joined: 2014-10-22 *Naruhiko OgasawaraCommits: 2Joined: 2014-10-25 - - *Daniel StoneCommits: 2Joined: 2014-10-29 *Supreme AryalCommits: 2Joined: 2014-12-04 + + *Gary HoustonCommits: 2Joined: 2014-12-15 *Mark WilliamsCommits: 2Joined: 2014-12-17 - - *Clément LassieurCommits: 2Joined: 2014-12-21 *Rimas KudelisCommits: 2Joined: 2015-01-06 + + *dbeurleCommits: 2Joined: 2015-01-12 *Kishor BhatCommits: 2Joined: 2015-01-28 - - *gamebusterzCommits: 2Joined: 2015-02-19 *Piet van OostrumCommits: 2Joined: 2015-03-12 + + *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 *Markus WernigCommits: 2Joined: 2015-03-18 - - *Jingtao YanCommits: 2Joined: 2015-03-23 *Austin ChenCommits: 2Joined: 2015-03-25 - - *scitoCommits: 2Joined: 2015-04-13 - + + *Valter MuraCommits: 2Joined: 2015-06-07 - - *Carlos LuqueCommits: 2Joined: 2015-07-16 @@ -4413,11 +4430,11 @@ *alexey.chemichevCommits: 2Joined: 2015-11-18 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 - - *Yogesh DesaiCommits: 2Joined: 2016-01-05 @@ -4427,11 +4444,11 @@ *Kenneth KoskiCommits: 2Joined: 2016-02-20 + + *ackepenekCommits: 2Joined: 2016-02-21 - - *Martin NathansenCommits: 2Joined: 2016-04-18 @@ -4441,11 +4458,11 @@ *Akash DeshpandeCommits: 2Joined: 2016-08-13 + + *Sophie SuCommits: 2Joined: 2016-08-27 - - *sllCommits: 2Joined: 2016-09-06 @@ -4455,11 +4472,11 @@ *Tibor MógerCommits: 2Joined: 2016-12-06 + + *G_ZoltanCommits: 2Joined: 2016-12-27 - - *George KorepanovCommits: 2Joined: 2017-01-06 @@ -4469,11 +4486,11 @@ *JeevanCommits: 2Joined: 2017-03-04 + + *Colomban WendlingCommits: 2Joined: 2017-03-15 - - *blendergeekCommits: 2Joined: 2017-04-08 @@ -4483,11 +4500,11 @@ *fxwanCommits: 2Joined: 2017-05-15 + + *Yash SrivastavCommits: 2Joined: 2017-06-20 - - *Sabin FrandesCommits: 2Joined: 2017-09-15 @@ -4497,11 +4514,11 @@ *G??bor KoruhelyCommits: 2Joined: 2017-10-25 + + *Furkan TokacCommits: 2Joined: 2017-10-25 - - *Timotej LazarCommits: 2Joined: 2017-11-22 @@ -4511,11 +4528,11 @@ *Jon NermutCommits: 2Joined: 2018-01-13 + + *Denis ArnaudCommits: 2Joined: 2018-01-16 - - *brian houston morrowCommits: 2Joined: 2018-01-24 @@ -4525,11 +4542,11 @@ *Andika TriwidadaCommits: 2Joined: 2018-02-15 + + *Franklin WengCommits: 2Joined: 2018-02-28 - - *Victor MireyevCommits: 2Joined: 2018-05-04 @@ -4539,11 +4556,11 @@ *George WoodCommits: 2Joined: 2018-07-25 + + *Réka CsékeiCommits: 2Joined: 2018-10-09 - - *Simon QuigleyCommits: 2Joined: 2018-10-11 @@ -4553,11 +4570,11 @@ *Izabela BakollariCommits: 2Joined: 2018-10-27 + + *Alyssa RossCommits: 2Joined: 2018-11-18 - - *Tóth AttilaCommits: 2Joined: 2018-12-30 @@ -4567,11 +4584,11 @@ *Dawid GanCommits: 2Joined: 2019-01-09 + + *Sass DávidCommits: 2Joined: 2019-01-09 - - *kaishu-sahuCommits: 2Joined: 2019-01-27 @@ -4581,11 +4598,11 @@ *Muzaffer Kadir YILMAZCommits: 2Joined: 2019-02-10 + + *Alexander FarrowCommits: 2Joined: 2019-03-19 - - *Jaromir WysogladCommits: 2Joined: 2019-03-27 @@ -4595,11 +4612,11 @@ *DarkByt31Commits: 2Joined: 2019-04-22 + + *wishawaCommits: 2Joined: 2019-04-29 - - *DaeHyun SungCommits: 2Joined: 2019-06-01 @@ -4609,11 +4626,11 @@ *Mayank SumanCommits: 2Joined: 2019-10-03 + + *shameempkCommits: 2Joined: 2019-10-09 - - *Mattia RizzoloCommits: 2Joined: 2019-10-23 @@ -4623,11 +4640,11 @@ *Desmin AlpaslanCommits: 2Joined: 2019-12-18 + + *Luca CarlonCommits: 2Joined: 2020-01-11 - - *Bjoern KirchhoffCommits: 2Joined: 2020-01-15 @@ -4637,11 +4654,11 @@ *Marina LatiniCommits: 2Joined: 2020-02-11 + + *AlanTangCommits: 2Joined: 2020-02-25 - - *jamesCommits: 2Joined: 2020-02-28 @@ -4651,11 +4668,11 @@ *Jean-Louis FuchsCommits: 2Joined: 2020-03-10 + + *shivammoreCommits: 2Joined: 2020-03-18 - - *Oleg SchelykalnovCommits: 2Joined: 2020-03-28 @@ -4665,95 +4682,106 @@ *FatihCommits: 2Joined: 2020-04-23 + + *Ilkyu JuCommits: 2Joined: 2020-08-08 - - *Luke DixonCommits: 2Joined: 2020-08-30 + *Gabriel MaseiCommits: 2Joined: 2020-09-02 + + *Sven LüppkenCommits: 2Joined: 2020-10-30 + + *Zeynep İnkayaCommits: 2Joined: 2020-11-21 *Gül ToksözCommits: 2Joined: 2020-11-21 - - *Bartu BayazıtCommits: 2Joined: 2020-11-21 *Mücahid AydinCommits: 2Joined: 2020-11-21 + + *ShyamPraveenSinghCommits: 2Joined: 2020-11-24 *DuP-491Commits: 2Joined: 2020-12-13 - - *Georgy LitvinovCommits: 2Joined: 2020-12-16 *siddheshpatil777Commits: 2Joined: 2020-12-19 + + *halfhiddencodeCommits: 2Joined: 2020-12-26 *princesinghtomarCommits: 2Joined: 2020-12-28 - - *AlchemistCommits: 2Joined: 2020-12-31 *tusharCommits: 2Joined: 2021-01-10 + + *Tarun SharmaCommits: 2Joined: 2021-01-14 *Stéphane GuillouCommits: 2Joined: 2021-01-22 - - *ShobhitCommits: 2Joined: 2021-01-30 - *Aditya Pratap SinghCommits: 2Joined: 2021-02-01 - - *Quan NguyenCommits: 2Joined: 2021-02-09 + + *Buse OrakCommits: 2Joined: 2021-02-13 - - *MoazCommits: 2Joined: 2021-02-21 - *Thorsten BehrensCommits: 2Joined: 2021-03-04 + *Winston Min TjongCommits: 2Joined: 2021-03-02 + + + *Gökay ŞatırCommits: 2Joined: 2021-03-14 + + + + + *PanosCommits: 2Joined: 2021-03-23 + + + *Matt KCommits: 2Joined: 2021-03-25 - *Ahmet Hakan ÇelikCommits: 2Joined: 2021-03-07 + *rounakCommits: 2Joined: 2021-03-31 *NeilBrownCommits: 1Joined: 2010-09-28 - + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 @@ -4767,7 +4795,7 @@ *Evertjan GarretsenCommits: 1Joined: 2010-10-04 - + *Denis LackovicCommits: 1Joined: 2010-10-05 @@ -4781,7 +4809,7 @@ *Trevor MurphyCommits: 1Joined: 2010-10-20 - + *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 @@ -4795,7 +4823,7 @@ *Alexandre FournierCommits: 1Joined: 2010-11-06 - + *Christopher BackhouseCommits: 1Joined: 2010-12-06 @@ -4809,7 +4837,7 @@ *Freek de KruijfCommits: 1Joined: 2010-12-19 - + *Paolo PozzanCommits: 1Joined: 2010-12-19 @@ -4823,7 +4851,7 @@ *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 - + *Andy HearnCommits: 1Joined: 2011-01-09 @@ -4837,7 +4865,7 @@ *pgajdosCommits: 1Joined: 2011-01-31 - + *Andreas SliwkaCommits: 1Joined: 2011-02-06 @@ -4851,7 +4879,7 @@ *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 - + *Rafael CabralCommits: 1Joined: 2011-03-31 @@ -4865,7 +4893,7 @@ *Dona HertelCommits: 1Joined: 2011-04-14 - + *Maxime CôtéCommits: 1Joined: 2011-04-19 @@ -4879,7 +4907,7 @@ *Cassio NeriCommits: 1Joined: 2011-05-01 - + *Marcel HBCommits: 1Joined: 2011-05-03 @@ -4893,7 +4921,7 @@ *David PenzesCommits: 1Joined: 2011-06-14 - + *Dolives BenoitCommits: 1Joined: 2011-07-04 @@ -4907,7 +4935,7 @@ *Andor ErtseyCommits: 1Joined: 2011-09-04 - + *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 @@ -4921,7 +4949,7 @@ *Pádraig BradyCommits: 1Joined: 2011-10-21 - + *Andrew WestCommits: 1Joined: 2011-10-21 @@ -4935,7 +4963,7 @@ *Modestas RimkusCommits: 1Joined: 2011-11-21 - + *Roman EiseleCommits: 1Joined: 2011-11-23 @@ -4949,7 +4977,7 @@ *JesseCommits: 1Joined: 2011-12-14 - + *Vincent PovirkCommits: 1Joined: 2011-12-19 @@ -4963,7 +4991,7 @@ *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 - + *Victor LeeCommits: 1Joined: 2011-12-24 @@ -4977,7 +5005,7 @@ *Rich WarehamCommits: 1Joined: 2012-01-12 - + *Da'angh KhagarothCommits: 1Joined: 2012-01-16 @@ -4991,7 +5019,7 @@ *dbarisakkurtCommits: 1Joined: 2012-02-02 - + *Daniel MihalyiCommits: 1Joined: 2012-02-06 @@ -5005,7 +5033,7 @@ *Fernando GovernatoreCommits: 1Joined: 2012-02-25 - + *Juergen SteinhilberCommits: 1Joined: 2012-03-05 @@ -5019,7 +5047,7 @@ *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 - + *Aldo Román NureñaCommits: 1Joined: 2012-04-09 @@ -5033,7 +5061,7 @@ *Ross BurtonCommits: 1Joined: 2012-04-18 - + *Jaime NavarroCommits: 1Joined: 2012-04-20 @@ -5047,7 +5075,7 @@ *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 - + *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 @@ -5061,7 +5089,7 @@ *Miguel FernándezCommits: 1Joined: 2012-04-26 - + *Javier CatalaCommits: 1Joined: 2012-04-26 @@ -5075,7 +5103,7 @@ *Daniel NaberCommits: 1Joined: 2012-05-09 - + *Ionut BiruCommits: 1Joined: 2012-05-14 @@ -5089,7 +5117,7 @@ *Peter TillemansCommits: 1Joined: 2012-06-26 - + *Phil HartCommits: 1Joined: 2012-06-29 @@ -5103,7 +5131,7 @@ *Tim JanikCommits: 1Joined: 2012-08-10 - + *Joseph BrownCommits: 1Joined: 2012-08-14 @@ -5117,7 +5145,7 @@ *DaveCommits: 1Joined: 2012-08-23 - + *Marco BiscaroCommits: 1Joined: 2012-08-27 @@ -5131,7 +5159,7 @@ *sagarCommits: 1Joined: 2012-09-15 - + *Andrew RistCommits: 1Joined: 2012-10-05 @@ -5145,7 +5173,7 @@ *Philipp KaluzaCommits: 1Joined: 2012-10-21 - + *LesterCommits: 1Joined: 2012-10-23 @@ -5159,7 +5187,7 @@ *Naser SharifiCommits: 1Joined: 2012-11-26 - + *Paula MannesCommits: 1Joined: 2012-11-30 @@ -5173,7 +5201,7 @@ *Quentin PradetCommits: 1Joined: 2012-12-21 - + *Tadele AssefaCommits: 1Joined: 2013-01-15 @@ -5187,7 +5215,7 @@ *Mark WrightCommits: 1Joined: 2013-02-09 - + *Christopher HotchkissCommits: 1Joined: 2013-02-15 @@ -5201,7 +5229,7 @@ *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 - + *Valek FilippovCommits: 1Joined: 2013-02-23 @@ -5215,7 +5243,7 @@ *Gábor NyersCommits: 1Joined: 2013-03-02 - + *Vojta KoukalCommits: 1Joined: 2013-03-03 @@ -5229,7 +5257,7 @@ *vincentCommits: 1Joined: 2013-03-22 - + *Johannes WidmerCommits: 1Joined: 2013-03-23 @@ -5243,7 +5271,7 @@ *Tomas TurekCommits: 1Joined: 2013-03-24 - + *Goran RakicCommits: 1Joined: 2013-03-30 @@ -5257,7 +5285,7 @@ *Ashish BanerjeeCommits: 1Joined: 2013-04-04 - + *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 @@ -5271,7 +5299,7 @@ *tinderboxCommits: 1Joined: 2013-04-11 - + *Alex IvanCommits: 1Joined: 2013-04-15 @@ -5285,7 +5313,7 @@ *Yohei YukawaCommits: 1Joined: 2013-05-06 - + *ricardobottoCommits: 1Joined: 2013-05-18 @@ -5299,7 +5327,7 @@ *Tim RichardsonCommits: 1Joined: 2013-06-04 - + *Eric S. RaymondCommits: 1Joined: 2013-06-07 @@ -5313,7 +5341,7 @@ *Peng GaoCommits: 1Joined: 2013-06-16 - + *sonakshi nathaniCommits: 1Joined: 2013-06-26 @@ -5327,7 +5355,7 @@ *Reem.ALotaibiCommits: 1Joined: 2013-07-25 - + *Michael DuelliCommits: 1Joined: 2013-08-01 @@ -5341,7 +5369,7 @@ *Stefano FacchiniCommits: 1Joined: 2013-08-22 - + *James Michael DuPontCommits: 1Joined: 2013-08-30 @@ -5355,7 +5383,7 @@ *Henning DiedlerCommits: 1Joined: 2013-11-02 - + *matt_51Commits: 1Joined: 2013-11-05 @@ -5369,7 +5397,7 @@ *Ayantha RandikaCommits: 1Joined: 2014-01-23 - + *Michal SiedlaczekCommits: 1Joined: 2014-01-25 @@ -5383,7 +5411,7 @@ *Mathias SuppCommits: 1Joined: 2014-02-25 - + *Tarun KumarCommits: 1Joined: 2014-03-07 @@ -5397,7 +5425,7 @@ *Manas JoshiCommits: 1Joined: 2014-03-17 - + *gdm.manmeetCommits: 1Joined: 2014-03-18 @@ -5411,7 +5439,7 @@ *Aditya KaleCommits: 1Joined: 2014-04-01 - + *Ryo ONODERACommits: 1Joined: 2014-04-07 @@ -5425,7 +5453,7 @@ *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 - + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 @@ -5439,7 +5467,7 @@ *Robin KumarCommits: 1Joined: 2014-06-17 - + *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 @@ -5453,7 +5481,7 @@ *Heiko ScheidtCommits: 1Joined: 2014-08-03 - + *xjclCommits: 1Joined: 2014-08-04 @@ -5467,7 +5495,7 @@ *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 - + *PhyzerCommits: 1Joined: 2014-09-13 @@ -5481,7 +5509,7 @@ *Lennart PoetteringCommits: 1Joined: 2014-10-09 - + *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 @@ -5495,7 +5523,7 @@ *Jonathan RiddellCommits: 1Joined: 2014-11-22 - + *Foo Lai ChooCommits: 1Joined: 2014-11-26 @@ -5509,7 +5537,7 @@ *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 - + *Maarten HoesCommits: 1Joined: 2014-12-20 @@ -5523,7 +5551,7 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 - + *Edmund LaugassonCommits: 1Joined: 2015-01-07 @@ -5537,7 +5565,7 @@ *Simon WilperCommits: 1Joined: 2015-01-24 - + *Swachhand LokhandeCommits: 1Joined: 2015-03-07 @@ -5551,7 +5579,7 @@ *robert BabiakCommits: 1Joined: 2015-03-25 - + *Dobra GaborCommits: 1Joined: 2015-04-02 @@ -5565,7 +5593,7 @@ *Petr GajdosCommits: 1Joined: 2015-04-07 - + *ritztroCommits: 1Joined: 2015-04-11 @@ -5579,7 +5607,7 @@ *Sam TukeCommits: 1Joined: 2015-05-21 - + *umairshahidCommits: 1Joined: 2015-05-29 @@ -5593,7 +5621,7 @@ *Raj NatarajanCommits: 1Joined: 2015-07-23 - + *Florian EffenbergerCommits: 1Joined: 2015-08-04 @@ -5607,7 +5635,7 @@ *Sergey FukanchikCommits: 1Joined: 2015-09-17 - + *Joan ParaisoCommits: 1Joined: 2015-09-25 @@ -5621,7 +5649,7 @@ *marstayCommits: 1Joined: 2015-10-18 - + *GhasanCommits: 1Joined: 2015-11-09 @@ -5635,7 +5663,7 @@ *Steve HartCommits: 1Joined: 2015-11-17 - + *Reto SchneiderCommits: 1Joined: 2015-11-20 @@ -5649,7 +5677,7 @@ *Paolo BernardiCommits: 1Joined: 2015-11-30 - + *Pierre SauterCommits: 1Joined: 2015-12-01 @@ -5663,7 +5691,7 @@ *Debarshi RayCommits: 1Joined: 2016-01-08 - + *shubhamtibraCommits: 1Joined: 2016-01-16 @@ -5677,7 +5705,7 @@ *Marc BessièresCommits: 1Joined: 2016-01-29 - + *Christoph BrillCommits: 1Joined: 2016-02-09 @@ -5691,7 +5719,7 @@ *HaidongWuCommits: 1Joined: 2016-03-09 - + *Mohamed ThabetCommits: 1Joined: 2016-03-13 @@ -5705,7 +5733,7 @@ *Gleb MishchenkoCommits: 1Joined: 2016-03-22 - + *JBurantCommits: 1Joined: 2016-04-05 @@ -5719,7 +5747,7 @@ *Nurhak ALTINCommits: 1Joined: 2016-05-01 - + *PeterCommits: 1Joined: 2016-05-03 @@ -5733,7 +5761,7 @@ *Helena SvobodovaCommits: 1Joined: 2016-05-25 - + *Zhengqiang WangCommits: 1Joined: 2016-06-02 @@ -5747,7 +5775,7 @@ *Mike SaundersCommits: 1Joined: 2016-06-20 - + *Otto KekäläinenCommits: 1Joined: 2016-07-03 @@ -5761,7 +5789,7 @@ *Yan PashkovskyCommits: 1Joined: 2016-08-12 - + *rpmbuildCommits: 1Joined: 2016-08-15 @@ -5775,7 +5803,7 @@ *Ilya PonamarevCommits: 1Joined: 2016-10-05 - + *JookiaCommits: 1Joined: 2016-10-08 @@ -5789,7 +5817,7 @@ *Шиповський РоманCommits: 1Joined: 2016-10-28 - + *Tamás GulácsiCommits: 1Joined: 2016-11-11 @@ -5803,7 +5831,7 @@ *n5xgdhCommits: 1Joined: 2016-12-04 - + *Justn LavoieCommits: 1Joined: 2016-12-30 @@ -5817,7 +5845,7 @@ *Aleix PolCommits: 1Joined: 2017-01-19 - + *yellowflash104Commits: 1Joined: 2017-02-12 @@ -5831,7 +5859,7 @@ *ComputingDwarfCommits: 1Joined: 2017-03-12 - + *Umang JainCommits: 1Joined: 2017-03-13 @@ -5845,7 +5873,7 @@ *Andreas SägerCommits: 1Joined: 2017-03-26 - + *Gabriel HerreraCommits: 1Joined: 2017-04-05 @@ -5859,7 +5887,7 @@ *Catherine VanceCommits: 1Joined: 2017-04-17 - + *Naeil ZOUEIDICommits: 1Joined: 2017-04-26 @@ -5873,7 +5901,7 @@ *Arianna MascioliniCommits: 1Joined: 2017-05-29 - + *Francesco GradiCommits: 1Joined: 2017-05-29 @@ -5887,7 +5915,7 @@ *Luke DellerCommits: 1Joined: 2017-07-12 - + *Aditya DewanCommits: 1Joined: 2017-07-15 @@ -5901,7 +5929,7 @@ *Dinh LeCommits: 1Joined: 2017-09-05 - + *66kesara99Commits: 1Joined: 2017-09-23 @@ -5915,7 +5943,7 @@ *Matti LehtonenCommits: 1Joined: 2017-10-07 - + *Tjipke van der HeideCommits: 1Joined: 2017-10-12 @@ -5929,7 +5957,7 @@ *Suhail AlkowaileetCommits: 1Joined: 2017-12-25 - + *Dominique LeuenbergerCommits: 1Joined: 2018-01-05 @@ -5943,7 +5971,7 @@ *ReshmaCommits: 1Joined: 2018-03-09 - + *HrishabhCommits: 1Joined: 2018-03-10 @@ -5957,7 +5985,7 @@ *Nithin Kumar PadavuCommits: 1Joined: 2018-04-07 - + *Kevin Brubeck UnhammerCommits: 1Joined: 2018-04-14 @@ -5971,7 +5999,7 @@ *Fred KruseCommits: 1Joined: 2018-05-28 - + *orbeaCommits: 1Joined: 2018-06-01 @@ -5985,7 +6013,7 @@ *SalimHabchiCommits: 1Joined: 2018-07-11 - + *Caio B. SilvaCommits: 1Joined: 2018-07-23 @@ -5999,7 +6027,7 @@ *Bijan TabatabaiCommits: 1Joined: 2018-08-26 - + *Leo MoonsCommits: 1Joined: 2018-08-26 @@ -6013,7 +6041,7 @@ *Howard JohnsonCommits: 1Joined: 2018-11-25 - + *Rizal MuttaqinCommits: 1Joined: 2018-12-18 @@ -6027,7 +6055,7 @@ *Andreas SturmlechnerCommits: 1Joined: 2019-01-08 - + *KomalCommits: 1Joined: 2019-01-12 @@ -6041,7 +6069,7 @@ *Yusuf SonmezCommits: 1Joined: 2019-02-10 - + *Michael SchroederCommits: 1Joined: 2019-02-25 @@ -6055,7 +6083,7 @@ *VaibhavCommits: 1Joined: 2019-03-17 - + *kushagrakasliwal1Commits: 1Joined: 2019-03-18 @@ -6069,7 +6097,7 @@ *Jason BurnsCommits: 1Joined: 2019-04-08 - + *RegisCommits: 1Joined: 2019-04-09 @@ -6083,7 +6111,7 @@ *Cor NouwsCommits: 1Joined: 2019-05-23 - + *Jens CarlCommits: 1Joined: 2019-05-27 @@ -6097,7 +6125,7 @@ *Jim MacArthurCommits: 1Joined: 2019-07-07 - + *Kovács László ZoltánCommits: 1Joined: 2019-08-07 @@ -6111,7 +6139,7 @@ *AWASHIRO IkuyaCommits: 1Joined: 2019-08-17 - + *Tim BartlettCommits: 1Joined: 2019-08-19 @@ -6125,7 +6153,7 @@ *Peter LevineCommits: 1Joined: 2019-10-18 - + *Rasmus ThomsenCommits: 1Joined: 2019-10-26 @@ -6139,7 +6167,7 @@ *dldldCommits: 1Joined: 2019-12-18 - + *Selim ŞekerCommits: 1Joined: 2019-12-18 @@ -6153,7 +6181,7 @@ *Andrés MaldonadoCommits: 1Joined: 2019-12-26 - + *cagatayCommits: 1Joined: 2019-12-28 @@ -6167,7 +6195,7 @@ *Cumali ToprakCommits: 1Joined: 2020-01-27 - + *Serkan ÖzkayaCommits: 1Joined: 2020-01-28 @@ -6181,7 +6209,7 @@ *Kris van der MerweCommits: 1Joined: 2020-02-16 - + *Adam MajerCommits: 1Joined: 2020-02-19 @@ -6195,7 +6223,7 @@ *TJ HoltCommits: 1Joined: 2020-03-12 - + *So YanaiharaCommits: 1Joined: 2020-03-21 @@ -6209,7 +6237,7 @@ *mikiCommits: 1Joined: 2020-04-09 - + *Alexander VolkovCommits: 1Joined: 2020-04-09 @@ -6223,21 +6251,21 @@ *Markus KellerCommits: 1Joined: 2020-05-01 - + - *Martin WhitakerCommits: 1Joined: 2020-05-08 + *Martin WhitakerCommits: 1Joined: 2020-05-08 - *vgeofCommits: 1Joined: 2020-05-09 + *vgeofCommits: 1Joined: 2020-05-09 - *Yunusemre ŞentürkCommits: 1Joined: 2020-05-14 + *Yunusemre ŞentürkCommits: 1Joined: 2020-05-14 - *Igor PoboikoCommits: 1Joined: 2020-05-22 + *Igor PoboikoCommits: 1Joined: 2020-05-22 - + *Muhammet KaraCommits: 1Joined: 2020-05-24 @@ -6251,10 +6279,7 @@ *Yakov ReztsovCommits: 1Joined: 2020-06-15 - - - *Pedro Pinto SilvaCommits: 1Joined: 2020-06-16 - + *Pranam LashkariCommits: 1Joined: 2020-06-20 @@ -6264,11 +6289,11 @@ *Baurzhan MuftakhidinovCommits: 1Joined: 2020-07-12 - - *Octavio AlvarezCommits: 1Joined: 2020-07-16 + + *tgds03Commits: 1Joined: 2020-08-16 @@ -6278,134 +6303,123 @@ *OctopusETCommits: 1Joined: 2020-08-17 - - *Ezinne NnamaniCommits: 1Joined: 2020-08-22 - - *Gabriel MaseiCommits: 1Joined: 2020-09-02 - + + *Felix WiegandCommits: 1Joined: 2020-09-25 *Travis StewartCommits: 1Joined: 2020-10-01 - - *Bryan GazaliCommits: 1Joined: 2020-10-03 *NikhilCommits: 1Joined: 2020-10-04 + + *DanielCommits: 1Joined: 2020-10-10 *Platon PronkoCommits: 1Joined: 2020-10-19 - - *gerritCommits: 1Joined: 2020-10-19 *Betül İnceCommits: 1Joined: 2020-10-22 + + *gizemozgunCommits: 1Joined: 2020-10-23 *Ismael OleaCommits: 1Joined: 2020-10-28 - - *Jeff LawCommits: 1Joined: 2020-11-03 *TRaXInCommits: 1Joined: 2020-11-10 + + *ArdaCommits: 1Joined: 2020-11-21 *lastirembenderCommits: 1Joined: 2020-11-21 - - *Henrik KarlssonCommits: 1Joined: 2020-11-26 *ganeshdevareCommits: 1Joined: 2020-11-29 + + *cu-16bcs1798Commits: 1Joined: 2020-12-02 *gar SoulCommits: 1Joined: 2020-12-08 - - *cseguraCommits: 1Joined: 2021-01-03 *Quentin PAGÈSCommits: 1Joined: 2021-01-06 + + *Isah BllacaCommits: 1Joined: 2021-01-08 *anirudhSCommits: 1Joined: 2021-01-10 - - *Antje KazimiersCommits: 1Joined: 2021-01-30 *Eyal RozenbergCommits: 1Joined: 2021-02-13 + + *vipbuoyCommits: 1Joined: 2021-02-14 *Quentin DELAGECommits: 1Joined: 2021-02-18 - - *Victor KukshievCommits: 1Joined: 2021-02-18 *Balazs SanthaCommits: 1Joined: 2021-02-26 + + *heet-2312Commits: 1Joined: 2021-03-01 - *Winston Min TjongCommits: 1Joined: 2021-03-02 - - - - *JohnCommits: 1Joined: 2021-03-04 *ViswaasLPCommits: 1Joined: 2021-03-12 - *Gökay ŞatırCommits: 1Joined: 2021-03-14 - - *Mani KumarCommits: 1Joined: 2021-03-17 - + *arpit1912Commits: 1Joined: 2021-03-19 @@ -6416,18 +6430,48 @@ *Mehmet Sait GülmezCommits: 1Joined: 2021-03-22 - *PanosCommits: 1Joined: 2021-03-23 + *bykiviCommits: 1Joined: 2021-03-23 + + + + + *anirudh4583Commits: 1Joined: 2021-03-26 + + + *David BlatterCommits: 1Joined: 2021-03-31 + + + *Oleksii MakhotinCommits: 1Joined: 2021-04-06 + + + *Vatsal32Commits: 1Joined: 2021-04-07 + + + + + *Carmen Bianca BakkerCommits: 1Joined: 2021-04-11 + + + *Steve FanningCommits: 1Joined: 2021-04-11 + + + *Jeff HuangCommits: 1Joined: 2021-04-12 + + + *sarynasserCommits: 1Joined: 2021-04-13 - + + + *haru-02Commits: 1Joined: 2021-04-21 + - *HosseinCommits: 1Joined: 2021-03-23 + *Batmunkh DorjgotovCommits: 1Joined: 2021-04-27 - + - Contributors to bundled templates @@ -6436,7 +6480,7 @@ - + *Laurent BPCommits: 41Joined: 2015-11-19 @@ -6450,7 +6494,7 @@ *Heiko TietzeCommits: 10Joined: 2017-08-04 - + *Samuel MehrbrodtCommits: 7Joined: 2013-01-16 @@ -6464,7 +6508,7 @@ *Alexander WilmsCommits: 4Joined: 2012-05-26 - + *Matthias SeidelCommits: 4Joined: 2018-11-08 @@ -6478,7 +6522,7 @@ *Michael MeeksCommits: 2Joined: 2010-12-08 - + *Istvan TuriCommits: 2Joined: 2012-08-16 @@ -6492,7 +6536,7 @@ *Francisco SaitoCommits: 1Joined: 2011-03-29 - + *Michael MuenchCommits: 1Joined: 2011-06-09 @@ -6506,7 +6550,7 @@ *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 - + *Péter SzathmáryCommits: 1Joined: 2015-01-07 @@ -6520,7 +6564,7 @@ *Jun NOGATACommits: 1Joined: 2015-01-07 - + *ZirkCommits: 1Joined: 2015-01-07 @@ -6541,7 +6585,7 @@ - + Sascha BallachCommits: 1223Joined: 2000-09-22 @@ -6555,7 +6599,7 @@ Peter BurowCommits: 729Joined: 2000-09-20 - + Sander VesikCommits: 695Joined: 2000-10-11 @@ -6569,7 +6613,7 @@ Daniel BoelzleCommits: 578Joined: 2000-09-21 - + Andreas SchlünsCommits: 542Joined: 2000-09-26 @@ -6583,7 +6627,7 @@ Jörg BarfurthCommits: 474Joined: 2000-11-07 - + Nils FuhrmannCommits: 473Joined: 2000-09-25 @@ -6597,7 +6641,7 @@ Jörg BudischewskiCommits: 407Joined: 2000-09-28 - + Tino RachuiCommits: 364Joined: 2000-09-25 @@ -6611,7 +6655,7 @@ Oliver BraunCommits: 271Joined: 2000-09-22 - + thCommits: 270Joined: 2000-10-27 @@ -6625,7 +6669,7 @@ Kay RammeCommits: 230Joined: 2000-09-27 - + Andreas BilleCommits: 228Joined: 2000-10-09 @@ -6639,7 +6683,7 @@ Stephan WunderlichCommits: 179Joined: 2002-02-26 - + Dirk GroblerCommits: 147Joined: 2000-09-20 @@ -6653,7 +6697,7 @@ Tomas O'ConnorCommits: 135Joined: 2002-03-04 - + Duncan FosterCommits: 125Joined: 2002-09-19 @@ -6667,7 +6711,7 @@ arellanoCommits: 87Joined: 2001-02-12 - + Bustamam HarunCommits: 74Joined: 2000-11-19 @@ -6681,7 +6725,7 @@ mfeCommits: 68Joined: 2000-10-13 - + Gene AnayaCommits: 66Joined: 2000-10-09 @@ -6695,7 +6739,7 @@ Bertram NolteCommits: 46Joined: 2001-08-16 - + Steffen GrundCommits: 45Joined: 2003-02-04 @@ -6709,7 +6753,7 @@ Armin TheissenCommits: 44Joined: 2000-09-22 - + Cyrille MoureauxCommits: 42Joined: 2002-05-17 @@ -6723,7 +6767,7 @@ oisinCommits: 38Joined: 2000-10-03 - + fredrikhCommits: 34Joined: 2008-06-17 @@ -6737,7 +6781,7 @@ tpfCommits: 32Joined: 2000-11-20 - + skottiCommits: 30Joined: 2009-10-20 @@ -6751,7 +6795,7 @@ wg111939Commits: 26Joined: 2010-03-17 - + szCommits: 25Joined: 2001-04-11 @@ -6765,7 +6809,7 @@ Ken FoskeyCommits: 22Joined: 2002-10-01 - + tb121644Commits: 22Joined: 2009-09-08 @@ -6779,7 +6823,7 @@ ghigginsCommits: 18Joined: 2002-05-19 - + Sarah SmithCommits: 18Joined: 2002-10-21 @@ -6793,7 +6837,7 @@ Csaba BorbolaCommits: 16Joined: 2000-09-22 - + dkennyCommits: 16Joined: 2001-04-17 @@ -6807,7 +6851,7 @@ okCommits: 13Joined: 2000-11-16 - + Mindy LiuCommits: 13Joined: 2003-03-03 @@ -6821,7 +6865,7 @@ Bernd EilersCommits: 11Joined: 2001-06-03 - + Laszlo KovacsCommits: 11Joined: 2002-09-23 @@ -6835,7 +6879,7 @@ John RiceCommits: 9Joined: 2002-09-27 - + maCommits: 8Joined: 2001-03-21 @@ -6849,7 +6893,7 @@ niddCommits: 7Joined: 2001-12-25 - + mwuCommits: 7Joined: 2002-07-04 @@ -6863,7 +6907,7 @@ Jonathan PryorCommits: 7Joined: 2010-09-15 - + Ilko HöppingCommits: 6Joined: 2001-05-04 @@ -6877,7 +6921,7 @@ lucturCommits: 5Joined: 2003-11-05 - + mathiasCommits: 5Joined: 2009-09-23 @@ -6891,7 +6935,7 @@ ms93807Commits: 4Joined: 2010-01-08 - + tlxCommits: 3Joined: 2000-12-07 @@ -6905,7 +6949,7 @@ tl93732Commits: 3Joined: 2009-10-20 - + Jiao JianhuaCommits: 3Joined: 2010-09-13 @@ -6919,7 +6963,7 @@ Louis Suárez-PottsCommits: 2Joined: 2001-08-17 - + Michael RauchCommits: 2Joined: 2002-03-19 @@ -6933,7 +6977,7 @@ Chris HallsCommits: 2Joined: 2002-10-04 - + jmengCommits: 2Joined: 2003-12-04 @@ -6947,7 +6991,7 @@ shaneCommits: 1Joined: 2000-10-02 - + vsCommits: 1Joined: 2001-01-30 @@ -6961,7 +7005,7 @@ asaundersCommits: 1Joined: 2003-07-07 - + Dan WilliamsCommits: 1Joined: 2004-03-08 @@ -6975,7 +7019,7 @@ Nakata MahoCommits: 1Joined: 2006-07-08 - + Artem KhvatCommits: 1Joined: 2007-12-14 @@ -6989,7 +7033,7 @@ oc93805Commits: 1Joined: 2009-11-30 - + sg128468Commits: 1Joined: 2010-01-20 @@ -7008,7 +7052,7 @@ - + Oliver BolteCommits: 418Joined: 2004-09-08 @@ -7022,7 +7066,7 @@ Kurt ZenkerCommits: 146Joined: 2004-05-19 - + Vladimir GlazounovCommits: 89Joined: 2004-12-23 @@ -7036,7 +7080,7 @@ Tom VerbeekCommits: 4Joined: 2001-01-26 - + Volker Ahrendt [va]Commits: 2Joined: 2002-05-29 @@ -7048,7 +7092,7 @@ We do not distinguish between commits that were imported from the OOo code base and those who went directly into the LibreOffice code base as: - + a) it is technically not possible to distinguish between commits that go directly into the LibreOffice code base and commits that were merged in from the OpenOffice.org code base, and @@ -7058,85 +7102,85 @@ Do note that LibreOffice used to be divided into 20 git repositories. Pushing a change into all repositories will be counted as 20 commits as there is no way to distinguish this from 20 separate commits. Total contributions to the TDF Wiki - 2653 individuals contributed: + 2659 individuals contributed: - + - Hrbrgr (26581) + Hrbrgr (26598) - Raal (16911) + Raal (17342) - SteenRønnow (15795) + SteenRønnow (16649) K-j (9376) - + - Beluga (9029) + Beluga (9263) - Akurery (8777) + Pierre-yves samyn (9097) - Pierre-yves samyn (8769) + Akurery (8986) - Roczek, Dennis (8264) + Roczek, Dennis (8266) - + Goncharuk, Lera (5435) - Jayme Barrientos, Adolfo (5044) + Filmsi (5165) - Filmsi (4967) + Jayme Barrientos, Adolfo (5049) (4614) - + Uroveits (4521) - Manuelf (4128) + Manuelf (4169) - Tagezibot (3924) + Stevefanning (4167) - Stevefanning (3723) + Tagezibot (3924) - + - Tryon, Robinson (3712) + Nogata Jun (3918) - Nogata Jun (3685) + Tryon, Robinson (3712) - Gautier, Sophie (3666) + Gautier, Sophie (3671) - Kompilainenn (3534) + Kompilainenn (3624) - + - Balland-Poirier, Laurent (3502) + Balland-Poirier, Laurent (3507) Hibagonsan (3073) @@ -7145,26 +7189,29 @@ Prcek (2821) - Jeanweber (2607) + Jeanweber (2656) - + - LibreOfficiant (2476) + LibreOfficiant (2481) - Ronnie rg8888 (2352) + Rizmut (2362) - Rizmut (2337) + Ronnie rg8888 (2352) Bielefeld, Rainer (2077) - + + + PlateauWolf (2044) + - Hallot, Olivier (1975) + Hallot, Olivier (1996) Kevin, Suo (锁琨珑) (1951) @@ -7172,13 +7219,10 @@ Effenberger, Florian (1746) - - PlateauWolf (1710) - - + - X1sc0 (1577) + X1sc0 (1586) Michaelsen, Björn (1554) @@ -7190,26 +7234,26 @@ Kolarkater (1418) - + Marcpare (1400) - Blue.painting (1386) + Blue.painting (1387) - LobaLuna (1337) + Lyzbet (1364) - GerryT (1293) + LobaLuna (1346) - + - Lyzbet (1245) + GerryT (1296) - Enoki (1234) + Enoki (1237) Naruoga (1231) @@ -7218,7 +7262,7 @@ Adailton (1203) - + Buzzatti Pacheco, Gustavo (1189) @@ -7232,12 +7276,12 @@ So (1111) - + Haas, Uwe (1095) - Clement21.philippe (1059) + Clement21.philippe (1074) E.le-gall (1027) @@ -7246,12 +7290,12 @@ Ostrovsky, David (1011) - + Novak, Nino (976) - Meeks, Michael (946) + Meeks, Michael (947) Tom (926) @@ -7260,7 +7304,7 @@ LLAP016 (875) - + H-k (804) @@ -7271,10 +7315,10 @@ Teo91 (733) - Jmpierre (725) + Jmpierre (727) - + Yaron (720) @@ -7288,23 +7332,26 @@ Henschel, Regina (660) - + - Tietze, Heiko (646) + Tietze, Heiko (652) Hazel (639) - Mike.saunders (631) + Mike.saunders (637) - RobertG (602) + Vajna, Miklos (607) - + + + RobertG (602) + - Rathke, Eike (596) + Rathke, Eike (598) Jmadero (596) @@ -7312,13 +7359,13 @@ Raulpacheco (596) + + - Vajna, Miklos (596) + Jucasaca (593) - - - Jlv (576) + Jlv (580) Lohmaier, Christian (552) @@ -7326,11 +7373,8 @@ ChristophNoack (549) - - Jucasaca (547) - - + Paulo (546) @@ -7344,35 +7388,35 @@ Davidnelson (517) - + Elianedomingos (508) - Sam m (498) + Sam m (501) - Foote, V Stuart (495) + Foote, V Stuart (499) Reisinger, Florian (491) - + Elcico (482) - Jana.urbanova (478) + Horáček, Stanislav (479) - Sefran (466) + Jana.urbanova (478) - Horáček, Stanislav (466) + Sefran (466) - + Philips, Yousuf (462) @@ -7380,15 +7424,15 @@ Veracape (460) - Mladek, Petr (450) + Stahl, Michael (454) - Holešovský, Jan (448) + Mladek, Petr (450) - + - Stahl, Michael (448) + Holešovský, Jan (448) Eskroni (437) @@ -7400,7 +7444,7 @@ Riyadh (428) - + Chris69 (419) @@ -7414,7 +7458,7 @@ Sebul (408) - + Yoshida, Kohei (407) @@ -7425,24 +7469,27 @@ Mohrhard, Markus (397) - Alexander Wilms (392) + Junmeguro (396) - + + + Alexander Wilms (392) + AndrasTimar (392) - Tardon, David (388) + Hossein, Noorikhah (391) - Junmeguro (386) + Tardon, David (388) + + Foral (384) - - StefanW (379) @@ -7452,11 +7499,11 @@ Schiavinatto (368) + + Thackert (359) - - Kara, Muhammet (347) @@ -7466,13 +7513,10 @@ Thiebaud, Norbert (341) - - Hossein, Noorikhah (337) - - + - Kaganski, Mike (336) + Kaganski, Mike (340) Vpanter (333) @@ -7484,7 +7528,10 @@ Volkerme (329) - + + + Petr-valach (326) + Wget (323) @@ -7492,13 +7539,13 @@ Arranna (322) - Khanson679 (305) + Felipeviggiano (322) + + - Petr-valach (297) + Khanson679 (305) - - Tseng, Cheng-Chia (294) @@ -7508,13 +7555,13 @@ Librelegal (292) + + - Emanuel A. Marcatinco B. (290) + Lillqvist, Tor (292) - - - Lillqvist, Tor (289) + Emanuel A. Marcatinco B. (290) Epix (268) @@ -7522,11 +7569,11 @@ Helen russian (268) + + Kaplan, Lior (267) - - Lodahl (264) @@ -7536,14 +7583,22 @@ Remarques (252) + + + + Kosiorek, Bartosz (251) + + + Floris v (250) + Kitaygrad (250) - - Deemonizer (248) + + Adrianoafonso (246) @@ -7553,50 +7608,42 @@ Loic (240) - - - Kosiorek, Bartosz (239) + Drodriguez (239) + + EricBright (238) - Drodriguez (237) - - Steve (237) - - Bosdonnat, Cédric (231) Vignoli, Italo (229) + + Mesho (229) Bedipp (226) - - Kerwyn (221) Almusaireae (219) - - Floris v (218) - + + Kkwet38 (218) - - Gilvanvilarim (217) @@ -7604,44 +7651,52 @@ Jbfaure (216) + Jeanmi2403 (216) + + + + Khirano (215) ZuzuN (208) - - Andreschnabel (207) XsLiDian (203) + + Steinzeit (200) Wheatbix (198) - - Latini, Marina (197) Kees538 (197) + + Erhardt (193) Schulz, Charles-H. (191) - - + + Lachend (191) + DmitryBowie (188) + + Franklin (188) @@ -7651,11 +7706,11 @@ Mazerunner (185) - - - Daveb (179) + Daveb (184) + + Méixome, Antón (179) @@ -7665,11 +7720,11 @@ Dhsung (175) - - Raw text (175) + + Madl, Tobias (175) @@ -7677,52 +7732,44 @@ Fridrich (172) - Jeanmi2403 (172) - - - - Luizheli (172) Furusho (170) + + Pitkänen, Harri (169) Jiang, Yifan (168) - - Matuaki (163) Óvári (162) + + See (160) Snelders, Rob (159) - - - - Lachend (159) - Ponzo, Gabriele (157) Xystina (154) + + Nemeth (151) - - Pietro (150) @@ -7730,30 +7777,38 @@ Herzog, Christoph (149) + Hagar Delest (148) + + + + + Chris-hoh (147) + + + Slacka (147) + + Back69 (146) Det (145) - + Mipmap (144) - Slacka (142) - - Mamane, Lionel Elie (141) Michelr (141) - - Lorenzo (140) + + Zolnai, Tamás (139) @@ -7763,138 +7818,138 @@ Weissenbacher, Philipp (138) - - Abe, Takeshi (138) - - Chris-hoh (137) - + + Heliojsf (137) P.guimberteau (137) - - Norah (135) Shunesburg69 (135) + + Filhocf (132) Richteruwe (131) - - Michel, Mathias (129) Ikuya (127) + + Ki Drupadi (127) Nik (127) - - - Baffclan (124) + Baffclan (125) RGB.ES (124) + + Guilhem (123) JARF (123) - - Krackedpress (123) Psluk (123) + + Trapezus (122) JohnSmith (120) - - Liebel, Jennifer (119) Phorious (118) + + Lqju96 (117) + Nabet, Julien (116) + + Spaeth, Sebastian (115) - - Ysabeau (115) + + Markers (114) - Nabet, Julien (114) - - Teseu (114) - - Massimo.zaffaina (113) PulkitKrishna00 (113) + + Vohe (113) Marcus Gama (112) - - Dougvigliazzi (111) Medieval (111) + + Bachka (110) Monthoflibreoffice bot (110) - - Mantke, Andreas (109) + Llunak (108) + + + + Nyucel (108) @@ -7903,11 +7958,11 @@ YALÇINSOY, Ayhan (106) - - Bitsfritz (104) + + Klaibson (104) @@ -7915,83 +7970,83 @@ MDDN (104) - Llunak (103) - - - - Pechlaner, Wolfgang (102) Gurbetoğlu, Gökhan (101) + + JZA (101) WillZ (100) - - Android272 (99) JeHa (99) + + AlanC (98) Dan (95) - - Barbora (93) MagicFab (93) + + Andreasg (92) Atalanttore (90) - - Frombenny (90) Richv2 (90) + + - Valtermura (89) + Valtermura (90) Zeki (89) - - Catalin Festila (88) Hertel, Jesper (88) + + + + Köse, Gülşah (87) + Hellotheworld (87) Milos (87) - - Paulojose (87) + + Fišeras, Aurimas (86) @@ -8001,11 +8056,11 @@ Steve- - (86) - - Eddy (85) + + Evy (84) @@ -8015,8 +8070,11 @@ KorrawitBot (84) + + Jstnlth (82) + - + Enio.gemmo (81) @@ -8027,24 +8085,24 @@ Ogervasi (80) - 80686 (79) + Stephan.ficht (80) - + - KeithCu (79) + 80686 (79) - Kjh000121 (79) + KeithCu (79) - Stephan.ficht (79) + Kjh000121 (79) Timur LOL (79) - + Xosé (79) @@ -8055,13 +8113,10 @@ Marcio Oliveira (78) - Jstnlth (77) - - - - Socetk (77) + + Tommy.WU (77) @@ -8071,81 +8126,81 @@ K.K.Ashisuto (75) - - Emoreno (74) + + Lbalbalba (74) - Köse, Gülşah (73) - - Namikawamisaki (73) - - Rachel618 (73) Castermans, Luc (72) + + Aury88 (71) RalfHB (71) - - Sawakaze (71) Al-Harthi, Ahmad Hussein (70) + + Jo7ueb (70) Uwealtmann (70) - - Donaldo (69) Malhassoun (69) + + Freetank (68) Fábio Farias (68) - - Gghh (68) SoNick RND (68) + + Ptux (67) + Tjhietala (67) + + Naniud (66) - - Karbasion, Bersam (65) + + Bmcs (65) @@ -8155,11 +8210,11 @@ StanG (65) - - Oipila (64) + + Ptrsk (64) @@ -8169,53 +8224,54 @@ Hanapospisilova (63) - - Kudelis, Rimas (63) + + + Sikeler (63) - Tjhietala (63) - - Popa, Adrian Marius (62) - - Thibault, Samuel (62) Denco (61) + + Frieder (61) Arnaudlecam (60) - - Jlgrenar (60) Montané, Joan (60) + + OctopusET (60) Piotrekr1 (60) - - + + Glogowski, Jan-Marek (59) + Libo02 (59) + + Camillem (58) @@ -8225,11 +8281,11 @@ Loflex (58) - - Kukan, Matúš (58) + + Jihui choi (57) @@ -8239,53 +8295,53 @@ Davefilms (56) - - Glen.reesor (56) - - Glogowski, Jan-Marek (56) - + + Ramones (56) Ramtk6726 (56) - - Hunt, Andrzej (55) Fifh (55) + + Jrahemipour (55) Cornell, Clayton (54) - - Fanthomas (54) Mahfiaz (54) + + + + Quikee (54) + Heben2 (53) Marric (53) - - Sunny2038 (53) + + Petrizzo (52) @@ -8295,109 +8351,109 @@ Helmar (51) - - Jaani (51) + + Lendo (51) - Quikee (51) - - Agd (50) - - Halparker (50) Paz (50) + + Ronaldo (50) Mbalabanov (49) - - Mpescador (49) Magliocchetti, Riccardo (49) + + Vardomescro (49) Afaccioli74 (48) - - Lviktoria (48) Dagobert 78 (47) + + Quest-88 (47) Buj Gelonch, Robert Antoni (47) - - Amtliz (46) FloF (46) + + Sk94 (46) Sveinki (46) - - Bfo (45) Grandin, Noel (45) + + Hosny, Khaled (45) Lua (45) - - Jung, Philippe (45) Robwestein (45) + + Bhorst (44) Ikh1 (44) - - + + Kelemeng (44) + Aaronxu (43) + + Cottage14 (43) @@ -8407,8 +8463,11 @@ GerhardW (43) + + Tomoyuki, Kubota (43) + - + Wilper, Simon (43) @@ -8422,63 +8481,52 @@ Bluedwarf (42) - + Fkara (42) - Tomoyuki, Kubota (42) - - KAMI (42) - Kelemeng (42) - - - - AnXh3L0 (41) Another sam (41) + + Arjunaraoc (41) Joey (41) - - Pedlino (41) Fábio Coelho (40) + + Hogue (40) Jwtiyar (40) - - Kraucer (40) - Felipeviggiano (39) - - Marklh9 (39) + + Valdirbarbosa (39) - - Enervation (38) @@ -8488,11 +8536,11 @@ Alex Thurgood (37) + + Cjenkins (37) - - Eliskavotipkova (37) @@ -8502,11 +8550,11 @@ Aragunde Pérez, Jacobo (37) + + Kano (37) - - Kinshuksunil (37) @@ -8514,114 +8562,122 @@ Castle, John LeMoyne (37) + Mars (37) + + + + RaducuG (37) Caco13 (36) - - Danishka (36) Patheticcockroach (36) + + Sci citation (36) Yan Pashkovsky (36) - - Andreas ka (35) Jingtao, Yan (35) + + Liongold (35) Nora (35) - - Pingping111 (35) Stalker08 (35) + + Subramanian, Muthu (35) - Mars (34) + Budea, Áron (34) - - Skagh1750 (34) Bormant (33) + + Davidlamhauge (33) Corrius, Jesús (33) - - Lmartinezh (33) Marrod (33) + + Mateus.m.luna (33) Pereriksson (33) - - Rafi (33) Shirahara (33) + + Sherlock, Chris (33) Alexanderwerner (32) - - Arnaud versini (32) Clio (32) + + Daud (32) + Kłos, Szymon (32) + + Lenochod (32) - - Dryomov, Artur (32) + + Monocat (32) @@ -8631,36 +8687,39 @@ Vulcain (32) - - Xuacu (32) - - Budea, Áron (31) - + + H (31) IvanM (31) - - Kant, Pranav (31) Usayan (31) + + Am97 (30) + JO3EMC (30) + + Njsg (30) + + Partick.auclair (30) + - + Speck (30) @@ -8674,7 +8733,7 @@ Acbaird (29) - + Cida.Coltro (29) @@ -8688,10 +8747,7 @@ Haaninjo (29) - - - Partick.auclair (29) - + RodolfoRG (29) @@ -8701,11 +8757,11 @@ Ace-dent (28) - - - Kłos, Szymon (28) + Alg (28) + + Riemer, Philipp (28) @@ -8715,11 +8771,11 @@ PaoloPelloni (28) - - المسيكين (28) + + Marcofilippozzi (27) @@ -8729,11 +8785,11 @@ Micm (27) - - PeppinoLib (27) + + Sarojdhakal (27) @@ -8743,431 +8799,431 @@ Alayaran (26) - - - - Alg (26) - Eresus (26) + + Ezeperez26 (26) Fanch (26) - - Librek (26) Libreofficer (26) + + Linuxman (26) Lutch (26) - - Myunghoonju (26) Hawkins, Nigel (26) + + Pirat Michi (26) Vaslav (26) - - Aidsoid (25) Ailion (25) + + Roßmanith, Christina (25) Freddyrh (25) - - Sullivan, Gatlin (25) Lboccia (25) + + Linux 9x (25) Manuel De Franceschi (25) - - Noelson (25) Onur.bingo (25) + + Freund, Matthias (25) Schröder, Sophia (25) - - Winniemiel05 (25) Magee, Timothy (24) + + Elpapki (24) Gaianer (24) - - Gérard24 (24) Ksoviero (24) + + Nik vr (24) Olivier (24) - - Hamurcu (23) Olorin (23) + + Skip-on (23) TaeWong (23) - - Team One (23) Thumperward (23) + + Tommy27 (23) Toxitom (23) - - Webmink (23) Youngman, Anthony W. (23) + + Aphaia (22) Bellerophon (22) - - Bjoern (22) HenryGR (22) + + JChimene (22) Weghorn, Michael (22) - - Roman (22) Elsass68490 (21) + + Jeppebundsgaard (21) Johannes (21) - - Keymap19 (21) Liusiqi43 (21) + + Logisch dede (21) Necdetyucel (21) - - Puster (21) Shiko (21) + + WalterPape (21) Wayra (21) - - Bugmenot (20) Grasip (20) + + Grzesiek a (20) HeinF (20) - - Icobgr (20) LLyaudet (20) + + Mattsturgeon (20) PRosmaninho (20) - - Vdragon (20) Vmalep (20) + + XMatence (20) Yorick (20) - - Zapata (20) Chernik (19) + + Clarice Vigliazzi (19) Guateconexion (19) - - Houbsi (19) Ledure, Jean-Pierre (19) + + JaronBaron (19) Jem (19) - - Funk, Juergen (19) Juergenfenn (19) + + Kentarch (19) Lothar.becker (19) - - PeeWee (19) RegisPerdreau (19) + + Ionita, Teodor-Mircea (19) Dennisfrancis (18) - - Foolfitz (18) Hidayet (18) + + Jstaerk (18) Monastirsky, Maxim (18) - - Narayan (18) Nestifea61 (18) + + Power, Noel (18) Richard (18) - - Serge Krot (18) Sooth (18) + + UriHerrera (18) Vuhung (18) - - Yusufketen (18) 林漢昌 (18) + + Akerbeltz (17) Chd (17) - - Craigo (17) Dlmoretz (17) + + Ertsey, Andor (17) Guilherme.vanz (17) - - Gulmorais (17) Tõnnov, Mihkel (17) + + Rubembarreto (17) Sohyun99 (17) - - Taken (17) Zu, Ximeng (17) + + Yumakino (17) Беломир (17) - - Airon90 (16) Alexpikptz (16) + + Dhersh (16) HanV (16) - - + + Kingu (16) + Pinto, Marco A.G. (16) + + MoIshihara (16) @@ -9177,11 +9233,11 @@ P.Guimberteau (16) - - PauGNU (16) + + Ristoi (16) @@ -9191,11 +9247,11 @@ Smrabelo (16) - - TPJ (16) + + APerson (15) @@ -9205,176 +9261,168 @@ Andy98 (15) - - Bertob (15) + + Irmhild (15) - JO3EMC (15) - - Khlood Elsayed (15) - - Lefevre00 (15) Luctur (15) + + Miko (15) Naudy (15) - - Dominguez, Rafael (15) Patriciasc (15) + + Rafaelff (15) Raul.malea (15) - - Royerjy (15) Thorogood, Tom (15) + + Ulf hamburg (15) 暗影遺言 (15) - - AliIsingor (14) Darkcircle (14) + + Elrath (14) Fina (14) - - Francis59 (14) Guuml (14) + + Halencarjunior (14) Lfernandocarvalho (14) - - Librosaurus (14) Dixon, Luke (14) + + Mderoucy (14) Rania (14) - - Raniaamina (14) Reinsle (14) + + RiderExMachina (14) Susobhang70 (14) - - Svante (14) Tamiliam (14) + + Testnoda (14) Thangamani-arun (14) - - Yoshi (14) Akoscomp (13) + + Alrt84 (13) Alyssonware (13) - - Beuss (13) Cedric31 (13) + + Crolidge (13) Gallaecio (13) - - Jobo (13) Kadekilo (13) - - Kingu (13) - + + Leomota (13) - - Ljelly (13) @@ -9384,11 +9432,11 @@ Mabbb (13) + + Mikeyy (13) - - Mortense (13) @@ -9398,11 +9446,11 @@ Pete Boyd (13) + + S.Gecko (13) - - Samtuke (13) @@ -9412,168 +9460,176 @@ Simplicity Instinct (13) + + ThierryM (13) - - Tnishiki (13) + Tusharrai2017 (13) + + Vivaelcelta (13) + + Vkkodali (13) A8 (12) - - Alfabech (12) And471 (12) + + AustinW (12) Bhaskar (12) - - Cepiloth (12) Cralin (12) + + Debring (12) Al-Otaibi, Faisal M. (12) - - Halan (12) Immanuelg (12) + + Kikopb (12) Krabina (12) - - Šebetić, Krunoslav (12) Godard, Laurent (12) + + Rimkus, Modestas (12) Pcapeluto (12) - - Gupta, Rachit (12) Raruenrom, Samphan (12) + + Möller, Sören — spelled Soeren Moeller in some patches (12) Staticsafe (12) - - Syntaxerrormmm (12) Veerh01 (12) + + 翼之靈歌 (12) AndikaTriwidada (11) - - Bryanquigley (11) Cdan (11) + + ChristopheS (11) Dajare (11) - - Ebraminio (11) Eduaraujo (11) + + Gokul, S (11) Janus (11) - - Johnny M (11) Kallecarl (11) + + Kolbjoern (11) Luiz Henrique Natalino (11) - - MNeto (11) Pearson, Timothy (11) + + + + Marco c (11) + Marcuskgosi (11) NON (11) - - Johansson, Niklas (11) + + Nuernbergerj (11) @@ -9583,11 +9639,11 @@ Salmaan (11) - - Sunk8 (11) + + Gomez, Andres (11) @@ -9597,11 +9653,11 @@ Zero0w (11) - - Aeusebio (10) + + Algotruneman (10) @@ -9611,11 +9667,11 @@ Blargh (10) - - Diginin (10) + + Eagles051387 (10) @@ -9625,11 +9681,11 @@ Eficheux (10) - - El7r (10) + + J.baer (10) @@ -9639,11 +9695,11 @@ Kadertarlan (10) - - Kirill NN (10) + + Linuxuser330250 (10) @@ -9651,111 +9707,111 @@ Lionlinux (10) - Marco c (10) - - - - Mesutcfc (10) Chung, Elton (10) + + Mikalai (10) Morvan (10) - - Mpumrlova (10) Nateyee (10) + + Olea (10) Otto (10) - - Revol (10) Ronja (10) + + Tatat (10) Tomg (10) - - Ttocsmij (10) Twstdude0to1 (10) + + User8192 (10) Wlenon (10) - - Al-Abdulrazzaq, Abdulmajeed (9) Agger (9) + + Aicra (9) Brandner, Andreas (9) - - AtkinsSJ (9) Camargo (9) + + Cnuss (9) Crazyskeggy (9) - - Dupreyb (9) Fatdf (9) + + Gibi (9) + Gilward Kukel (9) + + GisbertFriege (9) - - Goranrakic (9) + + Herissongrognon (9) @@ -9765,11 +9821,11 @@ Jonatoni (9) - - Jopsen (9) + + Jowyta (9) @@ -9779,11 +9835,11 @@ Lapetec (9) - - Lexeii (9) + + Mapper (9) @@ -9793,11 +9849,11 @@ Meo (9) - - Msaffron (9) + + Ohnemax (9) @@ -9807,11 +9863,11 @@ Oprea.luci (9) - - Milvaques, Pasqual (9) + + Foley, Peter (9) @@ -9821,11 +9877,11 @@ Dricot, Lionel (9) - - Rantaro (9) + + Rogawa (9) @@ -9835,11 +9891,11 @@ Rptr (9) - - Spacebat (9) + + Therabi (9) @@ -9849,11 +9905,11 @@ Tamás, Bunth (9) - - Zhangxiaofei (9) + + ميدو (9) @@ -9863,11 +9919,11 @@ Andrea Gelmini (8) - - AndreasL (8) + + Ausserirdischegesund (8) @@ -9877,11 +9933,11 @@ Cusiri (8) - - Dashohoxha (8) + + DrDub (8) @@ -9891,11 +9947,11 @@ Elacheche (8) - - Horst (8) + + Israel Chaves (8) @@ -9905,11 +9961,11 @@ Jiero (8) - - Jrsiqueira (8) + + Jslozier (8) @@ -9919,11 +9975,11 @@ Dywan, Christian (8) - - Kednar (8) + + Rietveld, Kristian (8) @@ -9933,11 +9989,11 @@ Leigh, Jack (8) - - Leo.h.hildebrandt (8) + + Manj k (8) @@ -9947,11 +10003,11 @@ NightMonkey (8) - - NirajanPant (8) + + Osnola (8) @@ -9961,11 +10017,11 @@ Paulo.tavares (8) - - Peterpall (8) + + Ricardolau (8) @@ -9975,11 +10031,11 @@ Tibbylickle (8) - - Troumad (8) + + Melenchuk, Vasily (8) @@ -9989,11 +10045,11 @@ VlhOwn (8) - - Yakusha (8) + + Yostane (8) @@ -10003,11 +10059,11 @@ Ahiijny (7) - - Andrea.soragna (7) + + Bastik (7) @@ -10017,11 +10073,11 @@ Berrykevin (7) - - Bjherbison (7) + + Bookman900 (7) @@ -10031,11 +10087,11 @@ Capiscuas (7) - - Chin Zee Yuen (7) + + Ciaran (7) @@ -10045,11 +10101,11 @@ Drose (7) - - Esbardu (7) + + Bateman, George (7) @@ -10059,11 +10115,11 @@ Hunter, Kevin (7) - - Ingotian (7) + + Levith (7) @@ -10073,11 +10129,11 @@ M1cky (7) - - Mariosv (7) + + Mbayer (7) @@ -10087,11 +10143,11 @@ Francis, Matthew (7) - - Nathanjh13 (7) + + Ndduong (7) @@ -10101,11 +10157,11 @@ Christener, Nicolas (7) - - Olivier DDB (7) + + Opensas (7) @@ -10115,11 +10171,11 @@ RMCampos (7) - - Raykowj (7) + + Rodo (7) @@ -10129,11 +10185,11 @@ Shady (7) - - Simosx (7) + + Tonnysmile (7) @@ -10143,11 +10199,11 @@ Wabuo (7) - - Webfork (7) + + Woordje (7) @@ -10157,11 +10213,11 @@ Alexandrorodrigez (6) - - Alpha (6) + + Armin Dänzer (6) @@ -10171,11 +10227,11 @@ Higginson, Andrew (6) - - Barend (6) + + Bobe (6) @@ -10185,11 +10241,11 @@ Cagatayyigit (6) - - Cccfr (6) + + ClausKofoed (6) @@ -10199,11 +10255,11 @@ Dag (6) - - BEN MANSOUR, Mohamed-Ali (6) + + Ddxavier (6) @@ -10213,11 +10269,11 @@ DotnetCarpenter (6) - - Mencken, Douglas (6) + + Dr.Faust (6) @@ -10227,11 +10283,11 @@ Edmond ciorba (6) - - Edmund.laugasson (6) + + Equis (6) @@ -10241,11 +10297,11 @@ Fdekruijf (6) - - Gallaire, Florent (6) + + Fisiu (6) @@ -10255,11 +10311,11 @@ Gerritg (6) - - Ghune (6) + + Googly Googly (6) @@ -10269,11 +10325,11 @@ Hmoi (6) - - Hramrach (6) + + Infoprof (6) @@ -10283,11 +10339,11 @@ Timofeev, Ivan (6) - - James 00cat (6) + + Jeffersonx (6) @@ -10297,11 +10353,11 @@ Levlazinskiy (6) - - Link Mauve (6) + + MaggieT (6) @@ -10311,11 +10367,11 @@ Manop (6) - - Mas (6) + + Mgommel (6) @@ -10325,11 +10381,11 @@ Mmetz (6) - - Ndlsas (6) + + Öttl, Gerhard (6) @@ -10339,11 +10395,11 @@ Os cib (6) - - PLNET (6) + + Paour (6) @@ -10353,11 +10409,11 @@ Peter Chastain (6) - - Peterhuang1kimo (6) + + Puggan (6) @@ -10367,11 +10423,11 @@ Goyal, Shubham (6) - - Sn!py (6) + + Sukit (6) @@ -10381,11 +10437,11 @@ Telesto (6) - - Heidenreich, Josh (6) + + Thorwil (6) @@ -10395,11 +10451,11 @@ Tyree (6) - - VACHER (6) + + Vgezer (6) @@ -10409,11 +10465,11 @@ Wagner Augusto Silva Rodrigo (6) - - Wasserthal (6) + + Wigglejimmy (6) @@ -10423,11 +10479,11 @@ Xhi2018 (6) - - Xiaoyu2006 (6) + + 3blz (5) @@ -10437,11 +10493,11 @@ Albucasis (5) - - AleXanDeR G (5) + + Alfalb (5) @@ -10451,11 +10507,11 @@ Anousak (5) - - Liwen, Fan (5) + + Art.Gilvanov (5) @@ -10465,11 +10521,11 @@ AustinSaintAubin (5) - - Baumgarp (5) + + BillRVA (5) @@ -10479,11 +10535,11 @@ BloodIce (5) - - Cray85 (5) + + Dejourdain (5) @@ -10493,11 +10549,11 @@ Dmtrs32 (5) - - DoFoWerner (5) + + Faiq Aminuddin (5) @@ -10507,11 +10563,11 @@ Florian.haftmann (5) - - Francewhoa (5) + + GaboXandre (5) @@ -10521,11 +10577,11 @@ Gpoussel (5) - - H.Sparks (5) + + Habib (5) @@ -10535,11 +10591,11 @@ HubPfalz (5) - - Hummer5354 (5) + + HwangTW (5) @@ -10549,11 +10605,11 @@ Jaysponsored (5) - - JoeP (5) + + John.pratt (5) @@ -10563,11 +10619,11 @@ Kamataki (5) - - Klausmach (5) + + Koji Annoura (5) @@ -10577,11 +10633,11 @@ Mak (5) - - Mgaster (5) + + Midimarcus (5) @@ -10591,11 +10647,11 @@ Mtg (5) - - Mtnyildrm (5) + + Namikawa (5) @@ -10605,11 +10661,11 @@ Orcmid (5) - - Pepe (5) + + Piotr285 (5) @@ -10619,11 +10675,11 @@ Poeml (5) - - Radish (5) + + Rajesh (5) @@ -10633,11 +10689,11 @@ Raulpaes (5) - - Rautamiekka (5) + + ReneEngelhard (5) @@ -10647,11 +10703,11 @@ Rogerio DA (5) - - Rsolipa (5) + + SabinGC (5) @@ -10661,11 +10717,11 @@ Samson (5) - - Chvátal, Tomáš (5) + + Sergej (5) @@ -10675,11 +10731,11 @@ Shivam (5) - - Silva.arapi (5) + + So solid moo (5) @@ -10689,11 +10745,11 @@ Starseeker (5) - - Taylorh140 (5) + + Terentev.mn (5) @@ -10703,11 +10759,11 @@ Tranzistors (5) - - Wasdin (5) + + Wt (5) @@ -10717,11 +10773,11 @@ AHi (4) - - Aaronkyle (4) + + Aas (4) @@ -10731,11 +10787,11 @@ Adrien.Ollier (4) - - Agron (4) + + Albertoeda (4) @@ -10745,11 +10801,11 @@ Alex1 (4) - - Alexstrand7 (4) + + AliKhP (4) @@ -10759,11 +10815,11 @@ Alzoo (4) - - Amire80 (4) + + Andréb (4) @@ -10773,11 +10829,11 @@ Arhitectul (4) - - Axel (4) + + Azorpid (4) @@ -10787,11 +10843,11 @@ BathuAlike (4) - - Widl, Bernhard (4) + + Bigbek (4) @@ -10801,11 +10857,11 @@ Bntser (4) - - Brett (4) + + Cam AW (4) @@ -10813,10 +10869,13 @@ Clairedwood (4) + Compressor nickel (4) + + ConquerorsHaki (4) - + Crankybot (4) @@ -10830,7 +10889,7 @@ Dmerker (4) - + DmitryRamones (4) @@ -10844,7 +10903,7 @@ Robertson, Daniel (4) - + Eisaks (4) @@ -10858,7 +10917,7 @@ Ftigeot (4) - + Garrowolf (4) @@ -10872,7 +10931,7 @@ GwenaelQ (4) - + Hdu (4) @@ -10886,7 +10945,7 @@ Jamesleader (4) - + Jessefrgsmith (4) @@ -10900,7 +10959,7 @@ Jjpalacios (4) - + JnRouvignac (4) @@ -10914,7 +10973,7 @@ Jooste (4) - + Joriki (4) @@ -10928,7 +10987,7 @@ Lethargilistic (4) - + Loren.rogers (4) @@ -10942,7 +11001,7 @@ Rumianowski, Maciej (4) - + Marinela (4) @@ -10956,7 +11015,7 @@ Mortgage01 (4) - + NGHLibreOffice (4) @@ -10970,7 +11029,7 @@ Orson69 (4) - + Oscar90210 (4) @@ -10984,7 +11043,7 @@ PatrickJ (4) - + Pegasus (4) @@ -10998,7 +11057,7 @@ Phillip.davis (4) - + van Oostrum, Pieter (4) @@ -11012,7 +11071,7 @@ Psao (4) - + Qubit-test (4) @@ -11026,7 +11085,7 @@ Rebahozkoc (4) - + Reyn100 (4) @@ -11040,7 +11099,7 @@ Rodhos (4) - + Sasha (4) @@ -11054,7 +11113,7 @@ Spyros (4) - + Sswales (4) @@ -11068,7 +11127,7 @@ Tct (4) - + Thetic (4) @@ -11082,7 +11141,7 @@ Txwikinger (4) - + Ufas (4) @@ -11096,7 +11155,7 @@ Uzadmin (4) - + V., Artem (4) @@ -11110,7 +11169,7 @@ Williamjmorenor (4) - + Wpeixoto (4) @@ -11124,7 +11183,7 @@ AbhilashSingh (3) - + Adept (3) @@ -11138,7 +11197,7 @@ Jain, Atishay (3) - + Alex.simoes (3) @@ -11152,7 +11211,7 @@ Andrey Usov (3) - + Antanasb (3) @@ -11166,7 +11225,7 @@ Armin (3) - + Armin W. (3) @@ -11180,7 +11239,7 @@ Baena (3) - + Bellerophon2 (3) @@ -11194,7 +11253,7 @@ Bindassanant (3) - + Bodhi-Baum (3) @@ -11208,7 +11267,7 @@ Prajapati, Gautam (3) - + Brub (3) @@ -11222,7 +11281,7 @@ Canberkturan (3) - + Castro (3) @@ -11236,7 +11295,7 @@ Cmorgan (3) - + Colokalle (3) @@ -11250,7 +11309,7 @@ DaSch (3) - + DanShearer (3) @@ -11264,7 +11323,7 @@ Dilip (3) - + Donbrookman (3) @@ -11278,7 +11337,7 @@ EdgeE (3) - + Eeha0120 (3) @@ -11292,7 +11351,7 @@ ErSey (3) - + Eric.ficheux (3) @@ -11306,7 +11365,7 @@ Farukuzun (3) - + Ferlodev (3) @@ -11320,7 +11379,7 @@ Frob tea (3) - + Fulldecent (3) @@ -11328,16 +11387,13 @@ FunkyPenguin (3) - Gilward Kukel (3) - - Gokcen (3) - - Gouchi (3) + + Smaha, Guillaume (3) @@ -11347,11 +11403,11 @@ Herrmarder (3) - - Hwpplayer1 (3) + + IanL (3) @@ -11361,11 +11417,11 @@ Imcon (3) - - It-christian (3) + + IvanMM (3) @@ -11375,11 +11431,11 @@ JDM (3) - - Jammon (3) + + Jennifer.park (3) @@ -11389,11 +11445,11 @@ Murugan, Jesso Clarence (3) - - Jhbn (3) + + Jo Cab (3) @@ -11403,11 +11459,11 @@ Johannes Rohr (3) - - Joseroberto (3) + + Juanpabl (3) @@ -11417,11 +11473,11 @@ K Karthikeyan (3) - - Katasisc (3) + + Kbiondi (3) @@ -11431,11 +11487,11 @@ Kfogel (3) - - Khunshan (3) + + Kkrothapalli (3) @@ -11445,11 +11501,11 @@ Lennoazevedo (3) - - LewisCowles (3) + + Libcub (3) @@ -11459,11 +11515,11 @@ Hryniuk, Łukasz (3) - - Luuk (3) + + Machey (3) @@ -11473,11 +11529,11 @@ Margott (3) - - Marializ (3) + + Matteocam (3) @@ -11487,11 +11543,11 @@ Maxwell (3) - - Measure for Measure (3) + + Melike (3) @@ -11501,11 +11557,11 @@ Meryemezber (3) - - Mhoes (3) + + Mhsmsantos (3) @@ -11515,11 +11571,11 @@ Mike98 (3) - - Neookano (3) + + NicksonT (3) @@ -11529,11 +11585,11 @@ Niconil (3) - - Ragnarsson, Björgvin (3) + + Nloira (3) @@ -11543,11 +11599,11 @@ OOarthurOo (3) - - Steinbeiß, Simon (3) + + Ojeremyj (3) @@ -11557,11 +11613,11 @@ Oprea luci (3) - - Penalvch (3) + + Pr410 (3) @@ -11571,11 +11627,11 @@ Rajatvijay (3) - - Rapha.ksf (3) + + Rauloliverpaes (3) @@ -11585,11 +11641,11 @@ RebeccaHodgson (3) - - Rick (3) + + Robert.E.A.Harvey (3) @@ -11599,11 +11655,11 @@ SEVEN (3) - - Sander Klootwijk (3) + + Sangeeta (3) @@ -11613,22 +11669,25 @@ Satabin (3) - - Sayt (3) + + Schroed(ing)er (3) + Kurmann, Roland (3) + + Sebby (3) Sergey Aka (3) - + Shelandy (3) @@ -11642,7 +11701,7 @@ Soliac (3) - + Songchuan (3) @@ -11656,7 +11715,7 @@ StefanRing (3) - + SteveKelem (3) @@ -11670,7 +11729,7 @@ Sushils (3) - + Taylor46 (3) @@ -11684,7 +11743,7 @@ Timsamoff (3) - + Tititou36 (3) @@ -11698,7 +11757,7 @@ Tomi Toivio (3) - + ToniB (3) @@ -11712,7 +11771,7 @@ Tushantin (3) - + Ubap (3) @@ -11726,7 +11785,7 @@ Vinctor (3) - + Vljubovic (3) @@ -11740,7 +11799,7 @@ WesPeacock (3) - + Xaker1 (3) @@ -11754,7 +11813,7 @@ Kolesnykov, Yurii (3) - + Yvon Henel (3) @@ -11768,7 +11827,7 @@ ترجمان05 (3) - + さかみのかさね (3) @@ -11782,7 +11841,7 @@ AdrianValdez4 (2) - + Adsha (2) @@ -11796,7 +11855,7 @@ Alan (2) - + Ale2017 (2) @@ -11810,7 +11869,7 @@ Alisha (2) - + AlmedaFrancis (2) @@ -11824,7 +11883,7 @@ AmyCarney5 (2) - + Anasiic (2) @@ -11838,7 +11897,7 @@ AndrewKuhn7 (2) - + AndrewUlrich (2) @@ -11852,7 +11911,7 @@ Anjar (2) - + Ankit (2) @@ -11866,7 +11925,7 @@ Anonimus (2) - + AntoniaMead8 (2) @@ -11880,7 +11939,7 @@ ApostlesSheldon (2) - + Arachan (2) @@ -11894,7 +11953,7 @@ Nakashian, Ashod (2) - + AvaGreer1 (2) @@ -11908,7 +11967,7 @@ Le Garrec, Vincent (2) - + BernardMeza9 (2) @@ -11922,7 +11981,7 @@ BlessedOrozco (2) - + Blume (2) @@ -11936,7 +11995,7 @@ Bogcahi (2) - + Boivie (2) @@ -11950,7 +12009,7 @@ Bram (2) - + BrandiToomer (2) @@ -11964,7 +12023,7 @@ BryantMclean6 (2) - + ButlerBarron6 (2) @@ -11978,7 +12037,7 @@ CallieMvzap (2) - + CallieSalgado (2) @@ -11992,7 +12051,7 @@ CapistranOleary (2) - + Capri99 (2) @@ -12006,7 +12065,7 @@ CarolinaCalling (2) - + CarrieDaniels (2) @@ -12020,7 +12079,7 @@ CavesGill8 (2) - + Celsovsm (2) @@ -12034,7 +12093,7 @@ ChanieSnow2 (2) - + Cheche (2) @@ -12048,7 +12107,7 @@ ChrzcicielCampbell (2) - + Cjbackhouse (2) @@ -12062,7 +12121,7 @@ ClaudiaCramer (2) - + Clemen Beek (2) @@ -12076,7 +12135,7 @@ Colabo (2) - + Conrado (2) @@ -12090,7 +12149,7 @@ Crxssi (2) - + CupertinoDarnell (2) @@ -12104,7 +12163,7 @@ Cœur, Antoine (2) - + DaCaPo (2) @@ -12118,7 +12177,7 @@ Damascene (2) - + DanForrest2 (2) @@ -12132,7 +12191,7 @@ Danthedev (2) - + Darkixion (2) @@ -12146,7 +12205,7 @@ De-jourdain (2) - + Debugercz (2) @@ -12160,7 +12219,7 @@ DenisArnaud (2) - + Dennis' Spam test account (2) @@ -12174,7 +12233,7 @@ Diazbastian (2) - + Retout, Tim (2) @@ -12188,7 +12247,7 @@ Domasj (2) - + Domsau2 (2) @@ -12202,7 +12261,7 @@ DrDrack (2) - + Röllin, Lukas (2) @@ -12216,7 +12275,7 @@ EarleSiegel7 (2) - + Ed (2) @@ -12230,7 +12289,7 @@ Edwardcottreau (2) - + Efdali (2) @@ -12244,7 +12303,7 @@ Sánchez, Bartolomé (2) - + Eldan (2) @@ -12258,7 +12317,7 @@ EllieBowers3 (2) - + ElmaGray6 (2) @@ -12272,7 +12331,7 @@ Emily (2) - + EmperorErnst5 (2) @@ -12286,7 +12345,7 @@ Erdalronahi (2) - + Eren (2) @@ -12300,7 +12359,7 @@ Ersteinmal (2) - + ErwinHammond3 (2) @@ -12314,7 +12373,7 @@ EsterEngland7 (2) - + EthylCardenas (2) @@ -12328,7 +12387,7 @@ Fbartels (2) - + Fcelik (2) @@ -12342,7 +12401,7 @@ Ffinlo (2) - + FlaviaPratt8 (2) @@ -12356,7 +12415,7 @@ FordRhodes5 (2) - + FranciscoByrne (2) @@ -12370,7 +12429,7 @@ Fyodor, Yemelyanenko (2) - + Garcia.marc (2) @@ -12384,7 +12443,7 @@ GeoDowning4 (2) - + GeoffLawrence (2) @@ -12398,7 +12457,7 @@ Gerpunzel (2) - + GertieEllington (2) @@ -12412,7 +12471,7 @@ GiuseppOQH (2) - + Glanbeav (2) @@ -12426,7 +12485,7 @@ Gmealer (2) - + Gmolleda (2) @@ -12440,7 +12499,7 @@ Grim (2) - + Gualtiero (2) @@ -12454,7 +12513,7 @@ HannaEspinoza (2) - + HardyBurris1 (2) @@ -12468,7 +12527,7 @@ Hector (2) - + Hedaja (2) @@ -12482,7 +12541,7 @@ Hemmerling (2) - + Jensen, Henrik (2) @@ -12496,7 +12555,7 @@ Herronrobertson (2) - + HershelPeterson (2) @@ -12510,7 +12569,7 @@ IkeVasquez9 (2) - + IlaRoberts4 (2) @@ -12524,7 +12583,7 @@ IraLane4 (2) - + IrinaMccormack (2) @@ -12538,7 +12597,7 @@ IsaiahBuck5 (2) - + IsiahLackey2 (2) @@ -12552,7 +12611,7 @@ JOIMER REYES (2) - + JacintaGibson (2) @@ -12566,7 +12625,7 @@ JanuariusStringer (2) - + Jasmins (2) @@ -12580,7 +12639,7 @@ JayStafford3 (2) - + Jcarl (2) @@ -12594,7 +12653,7 @@ Jeraldinesewell (2) - + JesseBHXEmrh (2) @@ -12608,7 +12667,7 @@ Lingard, J. Graeme (2) - + Jnicolas (2) @@ -12622,7 +12681,7 @@ JonesRichter8 (2) - + Jowenshaw (2) @@ -12636,7 +12695,7 @@ Jstaniek (2) - + JudasPeoples9 (2) @@ -12650,7 +12709,7 @@ Jumoun (2) - + JustinaEldridge (2) @@ -12664,7 +12723,7 @@ Kamran Mackey (2) - + Karakartala (2) @@ -12678,7 +12737,7 @@ Kasos (2) - + Kay D (2) @@ -12692,7 +12751,7 @@ KeithC (2) - + Khokkanen (2) @@ -12706,7 +12765,7 @@ Kmr (2) - + KolbeKline1 (2) @@ -12720,7 +12779,7 @@ keshav, krishna (2) - + KrisvdMewe (2) @@ -12734,7 +12793,7 @@ KrystalMinchin (2) - + KsaweryDempsey (2) @@ -12748,7 +12807,7 @@ LariaJohn3 (2) - + LeanaParks2 (2) @@ -12762,7 +12821,7 @@ LeoNeo (2) - + Lhcezar (2) @@ -12776,7 +12835,7 @@ Liotier (2) - + Lliehu (2) @@ -12790,7 +12849,7 @@ Petrolekas, Luke (2) - + LubomyrWalden (2) @@ -12804,7 +12863,7 @@ LynnForbes3 (2) - + Casalin, Matteo (2) @@ -12818,7 +12877,7 @@ MZNBelendndq (2) - + Ma83mit (2) @@ -12832,7 +12891,7 @@ MagdaleneOneal (2) - + MaggieGray2 (2) @@ -12846,7 +12905,7 @@ Manu.unni (2) - + MarMai (2) @@ -12860,7 +12919,7 @@ Marco74 (2) - + MargeretRiley (2) @@ -12874,7 +12933,7 @@ MartaRollins2 (2) - + MarthaBright4 (2) @@ -12888,7 +12947,7 @@ Matt 51 (2) - + Mazuritz (2) @@ -12902,7 +12961,7 @@ Merchantbusiness (2) - + Kepplinger, Martin (2) @@ -12916,7 +12975,7 @@ Mgiri (2) - + Michaelx (2) @@ -12930,7 +12989,7 @@ MikeyZ (2) - + MinaHuggins7 (2) @@ -12944,7 +13003,7 @@ Mitcoes (2) - + Mjkopp (2) @@ -12958,7 +13017,7 @@ Mloiseleur (2) - + Mnalima (2) @@ -12972,7 +13031,7 @@ MorganJohnstone (2) - + Rugiero, Mario (2) @@ -12986,7 +13045,7 @@ Musicstave (2) - + Mustafa22 (2) @@ -13000,7 +13059,7 @@ Nacerix (2) - + Narcisgarcia (2) @@ -13014,7 +13073,7 @@ NettaHurd9 (2) - + NettieParra1 (2) @@ -13028,7 +13087,7 @@ NicholasLanier (2) - + Nickk (2) @@ -13042,7 +13101,7 @@ Noirin (2) - + NoricumArthur (2) @@ -13056,7 +13115,7 @@ Nsharifi (2) - + Nuclearbob (2) @@ -13070,7 +13129,7 @@ Oashnic (2) - + Odalcet (2) @@ -13084,7 +13143,7 @@ OlieBooth3 (2) - + OlivierC (2) @@ -13098,7 +13157,7 @@ OscarMeredith (2) - + Paolettopn (2) @@ -13112,7 +13171,7 @@ Paultrojahn (2) - + Penguin42 (2) @@ -13126,7 +13185,7 @@ Senna Tschudin, Peter (2) - + Pgraber (2) @@ -13140,7 +13199,7 @@ Pierre (2) - + Piotrdrag (2) @@ -13154,7 +13213,7 @@ PolishHungarianSharp (2) - + Posterboy (2) @@ -13168,7 +13227,7 @@ R.Yu. (2) - + Rahul050 (2) @@ -13182,7 +13241,7 @@ ReginaldMcgraw (2) - + RenniePrescott (2) @@ -13196,7 +13255,7 @@ RiceBurger3 (2) - + Ritlay (2) @@ -13210,7 +13269,7 @@ RollandHannah (2) - + RosaliaFair4 (2) @@ -13224,7 +13283,7 @@ RoyFokker (2) - + RoyShelton7 (2) @@ -13238,7 +13297,7 @@ Sagar.libo (2) - + Sahasranaman M S (2) @@ -13252,7 +13311,7 @@ Sankarshan (2) - + SavinaShaffer (2) @@ -13260,16 +13319,13 @@ Bosio, Santiago (2) - Scito (2) - - Seanyoung (2) - - SebastianNorth (2) + + Sebutler (2) @@ -13279,11 +13335,11 @@ Sfeuser (2) - - Sgrotz (2) + + Shaforostoff (2) @@ -13293,11 +13349,11 @@ Shaun.schutte (2) - - Shitamo (2) + + SidneyArredondo (2) @@ -13307,11 +13363,11 @@ Silwol (2) - - Simplecontrast (2) + + SlavicNapier8 (2) @@ -13321,11 +13377,11 @@ Soothsilver (2) - - Spledger (2) + + Sshelagh (2) @@ -13335,11 +13391,11 @@ StaciBorthwick (2) - - Stappers (2) + + Weiberg, Stefan (2) @@ -13349,11 +13405,11 @@ StillSven (2) - - Stuarta0 (2) + + Sturm (2) @@ -13363,11 +13419,11 @@ Superurbi (2) - - SusanSwain3 (2) + + Sven.fischer.de (2) @@ -13377,11 +13433,11 @@ Sydbarrett74 (2) - - Synanceia (Pierre) (2) + + Tauon (2) @@ -13391,11 +13447,11 @@ Teelittle (2) - - TeresaMacias3 (2) + + Teresavillegas1 (2) @@ -13405,11 +13461,11 @@ TheodoseyPeralta (2) - - TheophilusHess (2) + + Thomase (2) @@ -13419,11 +13475,11 @@ Thorongil (2) - - Tim1075 (2) + + Timeshifter (2) @@ -13433,11 +13489,11 @@ TimothyChilds (2) - - TomaMora8 (2) + + Tomkeb (2) @@ -13447,11 +13503,11 @@ TressieCulver (2) - - Tsimonq2 (2) + + TuMadre (2) @@ -13461,11 +13517,11 @@ Tux40000 (2) - - Unhammer (2) + + Unknown 32 (2) @@ -13475,11 +13531,11 @@ ValessioBrito (2) - - VanHogan7 (2) + + Dhall, Varun (2) @@ -13489,11 +13545,11 @@ VerneDodd5 (2) - - VeronaXiong3 (2) + + VeronicaGrimes (2) @@ -13503,11 +13559,11 @@ VirginArredondo (2) - - VladimirBassett (2) + + VladimirPrince (2) @@ -13517,11 +13573,11 @@ Volker (2) - - VolodymyraGagnon (2) + + Vossman (2) @@ -13531,11 +13587,11 @@ WalentynaPatrick (2) - - WallaceSolano (2) + + WarrenChristian (2) @@ -13545,11 +13601,11 @@ Watermelons (2) - - WeronikaKeene (2) + + WikiImporter (2) @@ -13559,11 +13615,11 @@ WincentyMorrison (2) - - Wirelessben (2) + + Wkn (2) @@ -13573,11 +13629,11 @@ Xoristzatziki (2) - - Yaw (2) + + ZiriaKo (2) @@ -13587,11 +13643,11 @@ 流星依旧 (2) - - 29jm (1) + + A H (1) @@ -13601,11 +13657,11 @@ AaronPeterson (1) - - Abdulaziz A Alayed (1) + + Absolute Garcinia (1) @@ -13615,11 +13671,11 @@ Kepenek, Ahmet Can (1) - - AdalberDesailll (1) + + Adlard.matthew (1) @@ -13629,11 +13685,11 @@ Agradecido (1) - - Ainurshakirov (1) + + Ajaxfiore (1) @@ -13643,11 +13699,11 @@ Alavec (1) - - Albrechtloh (1) + + Aleks (1) @@ -13657,11 +13713,11 @@ Henrie, Alex (1) - - Alex-16 (1) + + Alex38-68 (1) @@ -13671,11 +13727,11 @@ AlexF (1) - - AlexP111223 (1) + + AlexPS (1) @@ -13685,11 +13741,11 @@ Alexandri (1) - - Chemichev, Alexey (1) + + Alexis 0071 (1) @@ -13699,11 +13755,11 @@ Alexnivan (1) - - Alexsandro Matias (1) + + Aleyna.sare (1) @@ -13713,11 +13769,11 @@ AlphonsDen (1) - - Alvaropg (1) + + Alverne (1) @@ -13727,11 +13783,11 @@ Andarilhobotto (1) - - Anderius (1) + + AndreasEk (1) @@ -13741,11 +13797,11 @@ AndreasNeudecker (1) - - Andrey.turkin (1) + + Andriazdk2177 (1) @@ -13755,11 +13811,11 @@ Anjilajoli (1) - - AntoineVe (1) + + Antonello Lobianco (1) @@ -13769,11 +13825,11 @@ Anurag kanungo (1) - - Apfelsaft (1) + + Priyadarshi, Apurva (1) @@ -13783,11 +13839,11 @@ Ari (1) - - ArielleWx (1) + + Arkonide (1) @@ -13797,11 +13853,11 @@ Arnaudc (1) - - Arnoldu (1) + + Teigseth, Arno (1) @@ -13811,11 +13867,11 @@ ArturNeumann (1) - - Arulm (1) + + Asiersar (1) @@ -13825,11 +13881,11 @@ Astalaseven (1) - - Atpnguyen (1) + + Tang, Audrey (1) @@ -13839,11 +13895,11 @@ Averell7 (1) - - Ayoooub (1) + + B3t (1) @@ -13853,11 +13909,11 @@ Bailly02 (1) - - Bami (1) + + Bandera (1) @@ -13867,11 +13923,11 @@ Vincent, Babu (1) - - Bburak (1) + + Bckurera (1) @@ -13881,11 +13937,11 @@ Bestdating (1) - - Beyoken (1) + + Beznogov (1) @@ -13895,11 +13951,11 @@ Bgloberman (1) - - Bgranados (1) + + BillyBurke (1) @@ -13909,11 +13965,11 @@ Bjossir (1) - - Bkg2018 (1) + + BlakeGartrell (1) @@ -13923,11 +13979,11 @@ BlancheClopton (1) - - Blandyna (1) + + Boboo (1) @@ -13937,11 +13993,11 @@ Borowcm (1) - - Bortis (1) + + Sowden, Brad (1) @@ -13951,11 +14007,11 @@ BridgettC (1) - - Brinzing, Oliver (1) + + BroderiHolyman (1) @@ -13965,11 +14021,11 @@ BryceMoorhouse (1) - - Budo (1) + + Burcin (1) @@ -13979,11 +14035,11 @@ Burger.ga (1) - - Bwi (1) + + Bzsolt (1) @@ -13993,11 +14049,11 @@ CalebSommer (1) - - CalebWgypcu (1) + + Paul, Cameron (1) @@ -14007,11 +14063,11 @@ CarloASilva (1) - - Carlos (1) + + Carlos.gilaranz (1) @@ -14021,11 +14077,11 @@ Cathy (1) - - CedricQ73ktehvp (1) + + Cesera (1) @@ -14035,11 +14091,11 @@ CharlesJenkins (1) - - Chatjoe (1) + + Chmilblick (1) @@ -14049,11 +14105,11 @@ ChrPr (1) - - Chrism (1) + + Christoph.herzog (1) @@ -14063,11 +14119,11 @@ Ciampix (1) - - CiaraLockie (1) + + Ciriaco (1) @@ -14077,11 +14133,11 @@ Claudio Pannacci (1) - - Cleitongalvao (1) + + Clem (1) @@ -14091,11 +14147,11 @@ Cnzhx (1) - - Company (1) + + Cora17 (1) @@ -14105,11 +14161,11 @@ Cosmopolitan (1) - - Cpatrick08 (1) + + Cpinedar (1) @@ -14119,11 +14175,11 @@ Craigsbookclub (1) - - Csanyipal (1) + + Csongorhalmai (1) @@ -14133,11 +14189,11 @@ Ctfranz (1) - - Cwendling (1) + + Cycpe950609 (1) @@ -14147,11 +14203,11 @@ Danichocolate (1) - - Danielt998 (1) + + Dar18proore (1) @@ -14161,11 +14217,11 @@ DarylBoot (1) - - Dave (1) + + DavidDyck (1) @@ -14175,11 +14231,11 @@ DawnOgles (1) - - Dbojan (1) + + Di Marco, Daniel (1) @@ -14189,11 +14245,11 @@ DeannaQuaife (1) - - Ray, Debarshi (1) + + DeborahW18 (1) @@ -14203,11 +14259,11 @@ Dennisroczek's Test Account (1) - - Deragon (1) + + Dezsiszabi (1) @@ -14217,11 +14273,11 @@ Herde, Daniel (1) - - Dhiren (1) + + Dianasedlak (1) @@ -14231,11 +14287,11 @@ Kettner, Valentin (1) - - Diver (1) + + Do Nhu Vy (1) @@ -14245,11 +14301,11 @@ Dominiko (1) - - Dominuk (1) + + Donadel (1) @@ -14259,11 +14315,11 @@ Douglasm (1) - - Drizamanuber (1) + + Drlandi (1) @@ -14273,11 +14329,11 @@ Dusek (1) - - Dxider (1) + + Eardeleanu (1) @@ -14287,11 +14343,11 @@ Echada (1) - - EdgardoRios (1) + + Edsonlead (1) @@ -14301,11 +14357,11 @@ Efcis (1) - - Efegurkan (1) + + Brill, Christoph (1) @@ -14315,11 +14371,11 @@ Ekuiitr (1) - - ElahiMohammad (1) + + Elliot1415 (1) @@ -14329,11 +14385,11 @@ Elshize (1) - - Emad (1) + + Emyr (1) @@ -14343,11 +14399,11 @@ Ennael (1) - - Erasmo (1) + + Erdemdemirkapi (1) @@ -14357,11 +14413,11 @@ ErickRijoJr (1) - - Ernsttremel (1) + + Roux, Elie (1) @@ -14371,11 +14427,11 @@ Esben aaberg (1) - - EstelaAWTxiu (1) + + Etinos (1) @@ -14385,11 +14441,11 @@ Eulerian (1) - - Evfool (1) + + EyalRozenberg (1) @@ -14399,11 +14455,11 @@ Factooor (1) - - Falatooni (1) + + Falcao (1) @@ -14413,11 +14469,11 @@ Farhank (1) - - Farlfr (1) + + FarzanehSarafraz (1) @@ -14427,11 +14483,11 @@ Fdem (1) - - Fenchi (1) + + FerminAndrade (1) @@ -14441,11 +14497,11 @@ Fgland (1) - - Flaviodegodoi (1) + + Flirtwomens (1) @@ -14455,11 +14511,11 @@ Foobar (1) - - Fourdollars (1) + + Francesco (1) @@ -14469,11 +14525,11 @@ Funnym0nk3y (1) - - Manas Joshi (1) + + Gabix (1) @@ -14483,11 +14539,11 @@ Gabrielcossette (1) - - Gabrielezorzi (1) + + Gbilotta (1) @@ -14497,11 +14553,11 @@ GeeZ (1) - - Gekacheka (1) + + Geoff newson (1) @@ -14511,11 +14567,11 @@ van Valkenhoef, Gert (1) - - Houston, Gary (1) + + Giancav (1) @@ -14525,11 +14581,11 @@ Gmeijssen (1) - - Goldensgui (1) + + Gpmanrpi (1) @@ -14539,11 +14595,11 @@ GrantCelley (1) - - Grass-tree (1) + + Hernandez, Gregg (1) @@ -14553,11 +14609,11 @@ Gstein (1) - - Guhde (1) + + Guillaume (1) @@ -14567,11 +14623,11 @@ Gxyd (1) - - H Wettlaufer (1) + + HFujimaki (1) @@ -14581,11 +14637,11 @@ HLGZorawdi (1) - - Haggai (1) + + Hagos (1) @@ -14595,11 +14651,11 @@ Hamkins (1) - - Hapeck (1) + + Hasinasi (1) @@ -14609,11 +14665,11 @@ Rui Wang (1) - - Hermeli2856 (1) + + HessnovTHR44 (1) @@ -14623,11 +14679,11 @@ Heyheyitshay (1) - - Hfischer (1) + + Hillrich (1) @@ -14637,11 +14693,11 @@ Hitomi t (1) - - Hkdocholid (1) + + Hlavaty, Tomas (1) @@ -14651,11 +14707,11 @@ K, Akshit (1) - - Honza.havlicek (1) + + Hopman (1) @@ -14665,11 +14721,11 @@ Hornmichaels (1) - - Hosiryuhosi (1) + + Hriostat (1) @@ -14679,11 +14735,11 @@ Hwoehrle (1) - - Ialbors (1) + + Ian (1) @@ -14693,11 +14749,11 @@ Ianjo (1) - - Iantheprogrammer (1) + + IbraM (1) @@ -14707,11 +14763,11 @@ Ida (1) - - Gilham, Ian (1) + + Igorizyumin (1) @@ -14721,11 +14777,11 @@ Iosonja (1) - - Şendur, İrem (1) + + Irene (1) @@ -14735,11 +14791,11 @@ IrvinFunkw (1) - - IvanP (1) + + JDługosz (1) @@ -14749,11 +14805,11 @@ JK2308 (1) - - Jab (1) + + Jailletc36 (1) @@ -14763,11 +14819,11 @@ Jamil (1) - - JanEnEm (1) + + Janani (1) @@ -14777,11 +14833,11 @@ Janvlug (1) - - Jayppc (1) + + Jazzon (1) @@ -14791,11 +14847,11 @@ Chaffraix, Julien (1) - - Jcrben (1) + + Jean.fr (1) @@ -14805,11 +14861,11 @@ JeanMcPhillamy (1) - - JefferyMackenna (1) + + Jentron256 (1) @@ -14819,11 +14875,11 @@ Bicha, Jeremy (1) - - JerryShi (1) + + JessicaParker (1) @@ -14833,11 +14889,11 @@ JestineNww (1) - - Lazar, Timotej (1) + + Jflory7 (1) @@ -14847,11 +14903,11 @@ Jinocvla (1) - - JiroMatsuzawa (1) + + Jj151515 (1) @@ -14861,11 +14917,11 @@ Joachim (1) - - Joanluc (1) + + Joaofernando (1) @@ -14875,11 +14931,11 @@ JohnTheHuman (1) - - Johnplay2 (1) + + JomarSilva (1) @@ -14889,11 +14945,11 @@ JonelleFritz (1) - - Wu, Haidong (1) + + JordanS (1) @@ -14903,11 +14959,11 @@ Jorgemendes (1) - - JoseGatica (1) + + Joselaurian (1) @@ -14917,11 +14973,11 @@ José Eduardo (1) - - Jp.santi (1) + + Jpl (1) @@ -14931,11 +14987,11 @@ Jsbueno (1) - - JudeMcCafferty (1) + + Juergen (1) @@ -14945,11 +15001,11 @@ Picca, Juan (1) - - Jwcampbell (1) + + Dubrulle, Kevin (1) @@ -14959,11 +15015,11 @@ Kapoorsahab (1) - - KatjaG (1) + + Bhat, Kishor (1) @@ -14973,11 +15029,11 @@ Kenneth.venken (1) - - Kenton3255 (1) + + Kiyotaka Nishibori (1) @@ -14987,11 +15043,11 @@ Kkremitzki (1) - - Knobo (1) + + Koeleman (1) @@ -15001,11 +15057,11 @@ Kosmous (1) - - KourtneNester (1) + + Kr1shna (1) @@ -15015,11 +15071,11 @@ Kumar, Thangavel (1) - - Kying (1) + + LKPSharylptwsdo (1) @@ -15029,11 +15085,11 @@ LOFF (1) - - LaPingvino (1) + + Laskov (1) @@ -15043,11 +15099,11 @@ LaverneNavarret (1) - - LavinaVandermar (1) + + Learner (1) @@ -15057,11 +15113,11 @@ Likoski (1) - - LillieNlowccx (1) + + Lineinthesand (1) @@ -15071,11 +15127,11 @@ Litishia (1) - - Liturgist (1) + + Lj LO (1) @@ -15085,11 +15141,11 @@ Lnjuanj (1) - - Lobillo (1) + + Lonaowna (1) @@ -15099,11 +15155,11 @@ Lorne (1) - - Lplatypus (1) + + Luca (1) @@ -15113,11 +15169,11 @@ LudieNutter (1) - - Luiz Cláudio (1) + + Luiz Rezende (1) @@ -15127,11 +15183,11 @@ M.sacharewicz (1) - - M1ndfr3ak (1) + + ME-ON1 (1) @@ -15141,11 +15197,11 @@ Maahicool (1) - - Mabel7997eelu (1) + + Maemst (1) @@ -15155,11 +15211,11 @@ Magmag (1) - - Mahdiekrani (1) + + Mahmudul (1) @@ -15169,11 +15225,11 @@ Manveru1986 (1) - - Rizzolo, Mattia (1) + + MarcK (1) @@ -15183,11 +15239,11 @@ MarcoZ (1) - - Biscaro, Marco (1) + + Marcosalex (1) @@ -15197,11 +15253,11 @@ MargoBergman (1) - - MarianaConnell (1) + + Mariano Gaudix (1) @@ -15211,11 +15267,11 @@ Markcoomes (1) - - Markzog21 (1) + + MarthaWaterman (1) @@ -15225,11 +15281,11 @@ Marwan (1) - - Maryanndefo91 (1) + + Masaki tamakoshi (1) @@ -15239,11 +15295,11 @@ Mastizada (1) - - Matsuura (1) + + MattTheGeek (1) @@ -15253,11 +15309,11 @@ Matěj (1) - - Mau (1) + + MavropaliasG (1) @@ -15267,11 +15323,11 @@ Mazinho (1) - - Bechler, Moritz (1) + + Mblume3 (1) @@ -15281,11 +15337,11 @@ Megan44Dgxg (1) - - Melikeyurtoglu (1) + + Menturi (1) @@ -15295,11 +15351,11 @@ Mete0r (1) - - Mhaehnel (1) + + Mhcrnl (1) @@ -15309,11 +15365,11 @@ Mibm123 (1) - - Michaelwood (1) + + Michka B (1) @@ -15323,11 +15379,11 @@ MiguelKastner (1) - - Miguelteixeira (1) + + Miguelverdu (1) @@ -15337,11 +15393,11 @@ Mikolg (1) - - MilagroWilkerso (1) + + Milanbv (1) @@ -15351,11 +15407,11 @@ Minarja4 (1) - - Mirsad (1) + + Miurahr (1) @@ -15365,22 +15421,25 @@ Mixstah (1) - - Mlager (1) + + Mmeof (1) + Moaz eldfrawy (1) + + Moberg (1) Mohammedzalta (1) - + Momo50 (1) @@ -15394,7 +15453,7 @@ Mrund (1) - + Muhammadsufyanzainalabidin (1) @@ -15408,7 +15467,7 @@ MyraBlacklow (1) - + N3rd4i (1) @@ -15422,7 +15481,7 @@ Nanotron (1) - + Nattu (1) @@ -15436,7 +15495,7 @@ NellieSMWX (1) - + Neteler (1) @@ -15450,7 +15509,7 @@ Nickko (1) - + Nilss (1) @@ -15464,7 +15523,7 @@ Nnino2 (1) - + Norty (1) @@ -15478,7 +15537,7 @@ Nouiurm (1) - + Norbert X (1) @@ -15492,7 +15551,7 @@ Oig (1) - + Oiouitt (1) @@ -15506,7 +15565,7 @@ Omerta (1) - + Onurkucuk67 (1) @@ -15520,7 +15579,7 @@ Sezen, Hunter (1) - + Orrd (1) @@ -15528,13 +15587,16 @@ Osoitz (1) + Otrembad (1) + + Oui (1) + + Ouyang.leyan (1) - - Anderson, Owen (1) @@ -15544,11 +15606,11 @@ Ozpoz (1) + + Öztürk, Emre (1) - - PBsoft (1) @@ -15558,11 +15620,11 @@ Padenton (1) + + Paintdog (1) - - PamalaDorsch (1) @@ -15572,11 +15634,11 @@ Papesky (1) + + Passerpunt (1) - - Pastim (1) @@ -15586,11 +15648,11 @@ Paulolima (1) + + Pelambrera (1) - - PelinKuran (1) @@ -15600,11 +15662,11 @@ Nowee, Peter (1) + + Vorel, Petr (1) - - Pharmankur (1) @@ -15614,11 +15676,11 @@ Pherjung (1) + + PhilDur (1) - - Philhart (1) @@ -15628,11 +15690,11 @@ Philipp.weissenbacher (1) + + Philippe43 (1) - - Krylov, Phil (1) @@ -15642,11 +15704,11 @@ Paraiso, Joan (1) + + Pi (1) - - Piero (1) @@ -15656,11 +15718,11 @@ Pietro.caballeri (1) + + Pilavi (1) - - Piratu (1) @@ -15670,11 +15732,11 @@ Pjotr (1) + + Pkavinda (1) - - Plastique (1) @@ -15684,11 +15746,11 @@ Moscu, Alexandru (1) + + PopularOutcast (1) - - Por (1) @@ -15698,11 +15760,11 @@ Prosper (1) + + Psauthor (1) - - Psmits (1) @@ -15712,11 +15774,11 @@ Vidhey Pv (1) + + Pwz266266 (1) - - Illarionov, Arkadiy (1) @@ -15726,11 +15788,11 @@ Qtwallaert (1) + + Quick8130 (1) - - Quickbooktech (1) @@ -15740,11 +15802,11 @@ Rahuldeshmukh101 (1) + + Rainy (1) - - Ramonturner (1) @@ -15754,11 +15816,11 @@ Rcampbelllaos (1) + + RebeccaToscano (1) - - Rettichschnidi (1) @@ -15768,11 +15830,11 @@ Rholler (1) + + Rich (1) - - Richardprins (1) @@ -15782,11 +15844,11 @@ Riessmi (1) + + Rif (1) - - Rifkiaz (1) @@ -15796,11 +15858,11 @@ Rion (1) + + Ritzema, Brent (1) - - Rizobix (1) @@ -15810,11 +15872,11 @@ Robert Wetzlmayr (1) + + Robineh (1) - - Robustchao (1) @@ -15824,11 +15886,11 @@ Rodney78 (1) + + Rogach (1) - - Deshmukh, Rohit (1) @@ -15838,11 +15900,11 @@ Ron1 (1) + + Ronny (1) - - Roscoe5731 (1) @@ -15852,11 +15914,11 @@ Rpott (1) + + Rsedak (1) - - RuleAndLine (1) @@ -15866,11 +15928,11 @@ Ryho (1) + + ONODERA, Ryo (1) - - SallyMorales (1) @@ -15880,11 +15942,11 @@ Sambhav2612 (1) + + Tygier, Sam (1) - - Sandeeps (1) @@ -15894,11 +15956,11 @@ Saracans (1) + + Sariyar (1) - - Sbar1 (1) @@ -15908,11 +15970,11 @@ Schrillesbunteshamburg (1) + + Scno (1) - - Sctenebro (1) @@ -15922,11 +15984,11 @@ Ak, Sedat (1) + + Senopen (1) - - Serdarot5 (1) @@ -15936,11 +15998,11 @@ ShaynaMan (1) + + SherylMillingto (1) - - Shore, Shimon (1) @@ -15950,11 +16012,11 @@ Chaurasia, Shobhit (1) + + Shortblack (1) - - ShyamPraveenSingh (1) @@ -15964,11 +16026,11 @@ Silvestr (1) + + Silvia (1) - - Simonbr (1) @@ -15978,11 +16040,11 @@ Smalalur (1) + + Socialmitchell (1) - - Son Sonson (1) @@ -15992,11 +16054,11 @@ Sovichet (1) + + SpeedyGonsales (1) - - Sphericalhorse (1) @@ -16006,11 +16068,11 @@ Srijanani (1) + + StefanU (1) - - Stewart75H (1) @@ -16020,11 +16082,11 @@ StuartHalliday (1) + + Subhash (1) - - Supportex (1) @@ -16034,11 +16096,11 @@ Svalo (1) + + SvenHornung (1) - - Svend-ev (1) @@ -16048,11 +16110,11 @@ Svtlichnijj (1) + + Sébastien C. (1) - - TAQSamueld (1) @@ -16062,11 +16124,11 @@ Tanguy k (1) + + Thanakanok, Tantai (1) - - TaylorSlemp (1) @@ -16076,11 +16138,11 @@ TeganCreswick (1) + + Tegas (1) - - Terber (1) @@ -16090,11 +16152,11 @@ The Magpie (1) + + ThePokehach (1) - - Thephilosoft (1) @@ -16104,11 +16166,11 @@ Thor574 (1) + + ThudDriver (1) - - Tifroumi (1) @@ -16118,11 +16180,11 @@ Tilt (1) + + Tmongkol (1) - - Tomasdd (1) @@ -16132,11 +16194,11 @@ Viehmann, Thomas (1) + + Tpokorra (1) - - Transcend (1) @@ -16146,11 +16208,11 @@ TrevorPfe (1) + + Trondtr (1) - - Ttv20 (1) @@ -16160,11 +16222,11 @@ Tuping (1) + + Thibault, Vallois (1) - - Jain, Umang (1) @@ -16174,11 +16236,11 @@ Shahid, Umair (1) + + Vincent, Brennan (1) - - Unho (1) @@ -16188,11 +16250,11 @@ UrsulaHorrell (1) + + Ushabtay (1) - - VIPSylar (1) @@ -16202,11 +16264,11 @@ Vandenoever (1) + + Veeven (1) - - Vera Cavalcante (1) @@ -16216,11 +16278,11 @@ Vincentvikram (1) + + Vinkas (1) - - Virus009 (1) @@ -16230,11 +16292,11 @@ Wadrian (1) + + WandaSingletary (1) - - Wastl (1) @@ -16244,11 +16306,11 @@ Webistrator (1) + + Wedeluxe (1) - - Wes (1) @@ -16258,11 +16320,11 @@ Wezchlebaty (1) + + Wilhelm (1) - - William Avery (1) @@ -16272,89 +16334,90 @@ Klausner, Thomas (1) + + Woulouf (1) - - + + Tjong, Winston Min (1) + XSXKristin (1) Baudin, Lucas (1) + + XeroxMe (1) Xsdcfghjk (1) - - Suhail Alkowaileet (1) XtinaS (1) + + Xtrusia (1) Yangyiji (1) - - YaroslavRutledge (1) Yazu (1) + + Yeliztaneroglu (1) Desai, Yogesh (1) - - Yoshiharu Kawai (1) Yowbooks (1) + + YvanM (1) Yy y ja jp (1) - - Bölöny, Zsolt (1) ZBMCallumbwire (1) + + Zangune (1) Zizzle (1) - - 鄒延 (1) - + - - If you want to replace your Wiki user name with your full name, go to this wiki page and add yourself to the name mapping list. diff -Nru libreoffice-7.1.2~rc2/sal/osl/w32/file.cxx libreoffice-7.1.3~rc2/sal/osl/w32/file.cxx --- libreoffice-7.1.2~rc2/sal/osl/w32/file.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sal/osl/w32/file.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -657,15 +657,15 @@ if (result != osl_File_E_None) return result; - DWORD dwAccess = GENERIC_READ, dwShare = FILE_SHARE_READ, dwCreation = 0; + // tdf126742 use FILE_SHARE_WRITE to get closer to non-Windows plattform behavoiur, + // for details and discussion see task please + DWORD dwAccess = GENERIC_READ, dwShare = FILE_SHARE_READ | FILE_SHARE_WRITE, dwCreation = 0; if (uFlags & osl_File_OpenFlag_Write) dwAccess |= GENERIC_WRITE; - else - dwShare |= FILE_SHARE_WRITE; if (uFlags & osl_File_OpenFlag_NoLock) - dwShare |= FILE_SHARE_WRITE | FILE_SHARE_DELETE; + dwShare |= FILE_SHARE_DELETE; if (uFlags & osl_File_OpenFlag_Create) dwCreation |= CREATE_NEW; diff -Nru libreoffice-7.1.2~rc2/sc/inc/document.hxx libreoffice-7.1.3~rc2/sc/inc/document.hxx --- libreoffice-7.1.2~rc2/sc/inc/document.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/inc/document.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -1947,7 +1947,7 @@ SC_DLLPUBLIC SCROW LastVisibleRow(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const; SCROW CountVisibleRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const; - bool RowFiltered(SCROW nRow, SCTAB nTab, SCROW* pFirstRow = nullptr, SCROW* pLastRow = nullptr) const; + SC_DLLPUBLIC bool RowFiltered(SCROW nRow, SCTAB nTab, SCROW* pFirstRow = nullptr, SCROW* pLastRow = nullptr) const; bool HasFilteredRows(SCROW nStartRow, SCROW nEndRow, SCTAB nTab) const; bool ColFiltered(SCCOL nCol, SCTAB nTab) const; SC_DLLPUBLIC void SetRowFiltered(SCROW nStartRow, SCROW nEndRow, SCTAB nTab, bool bFiltered); diff -Nru libreoffice-7.1.2~rc2/sc/inc/formulacell.hxx libreoffice-7.1.3~rc2/sc/inc/formulacell.hxx --- libreoffice-7.1.2~rc2/sc/inc/formulacell.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/inc/formulacell.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -23,11 +23,13 @@ #include #include +#include #include #include "types.hxx" #include "interpretercontext.hxx" #include "document.hxx" +#include "docoptio.hxx" #include "formulalogger.hxx" #include "formularesult.hxx" @@ -437,15 +439,25 @@ return (rDocument.GetAutoCalc() || (cMatrixFlag != ScMatrixMode::NONE)); } - bool MaybeInterpret() + void MaybeInterpret() { if (NeedsInterpret()) { - assert(!rDocument.IsThreadedGroupCalcInProgress()); - Interpret(); - return true; + if (bRunning && !rDocument.GetDocOptions().IsIter() && rDocument.IsThreadedGroupCalcInProgress()) + { + // This is actually copied from Interpret()'s if(bRunning) + // block that once caught this circular reference but now is + // prepended with various threaded group calc things which the + // assert() below is supposed to fail on when entering again. + // Nevertheless, we need some state here the caller can obtain. + aResult.SetResultError( FormulaError::CircularReference ); + } + else + { + assert(!rDocument.IsThreadedGroupCalcInProgress()); + Interpret(); + } } - return false; } /** diff -Nru libreoffice-7.1.2~rc2/sc/inc/global.hxx libreoffice-7.1.3~rc2/sc/inc/global.hxx --- libreoffice-7.1.2~rc2/sc/inc/global.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/inc/global.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -346,6 +346,7 @@ FILL_DAY, FILL_WEEKDAY, FILL_MONTH, + FILL_END_OF_MONTH, FILL_YEAR }; diff -Nru libreoffice-7.1.2~rc2/sc/inc/queryentry.hxx libreoffice-7.1.3~rc2/sc/inc/queryentry.hxx --- libreoffice-7.1.2~rc2/sc/inc/queryentry.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/inc/queryentry.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -68,13 +68,15 @@ bool IsQueryByEmpty() const; void SetQueryByNonEmpty(); bool IsQueryByNonEmpty() const; - const Item& GetQueryItem() const; - Item& GetQueryItem(); + const Item& GetQueryItem() const { return GetQueryItemImpl(); } + Item& GetQueryItem() { return GetQueryItemImpl(); } void Clear(); ScQueryEntry& operator=( const ScQueryEntry& r ); bool operator==( const ScQueryEntry& r ) const; private: + Item& GetQueryItemImpl() const; + /** * Stores all query items. It must contain at least one item at all times * (for single equality match queries or comparative queries). It may diff -Nru libreoffice-7.1.2~rc2/sc/qa/extras/macros-test.cxx libreoffice-7.1.3~rc2/sc/qa/extras/macros-test.cxx --- libreoffice-7.1.2~rc2/sc/qa/extras/macros-test.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/qa/extras/macros-test.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -52,6 +52,7 @@ void testTdf128218(); void testTdf71271(); void testTdf43003(); + void testTdf138646(); CPPUNIT_TEST_SUITE(ScMacrosTest); CPPUNIT_TEST(testStarBasic); @@ -70,6 +71,7 @@ CPPUNIT_TEST(testTdf128218); CPPUNIT_TEST(testTdf71271); CPPUNIT_TEST(testTdf43003); + CPPUNIT_TEST(testTdf138646); CPPUNIT_TEST_SUITE_END(); }; @@ -864,6 +866,52 @@ xCloseable->close(true); } +void ScMacrosTest::testTdf138646() +{ + OUString aFileName; + createFileURL(u"tdf138646.ods", aFileName); + auto xComponent = loadFromDesktop(aFileName, "com.sun.star.sheet.SpreadsheetDocument"); + CPPUNIT_ASSERT_MESSAGE("Failed to load the doc", xComponent.is()); + + SfxObjectShell* pFoundShell = SfxObjectShell::GetShellFromComponent(xComponent); + CPPUNIT_ASSERT_MESSAGE("Failed to access document shell", pFoundShell); + + ScDocShell* pDocSh = dynamic_cast(pFoundShell); + CPPUNIT_ASSERT(pDocSh); + + // Without the fix in place, changing the grammar from GRAM_NATIVE to either GRAM_NATIVE_XL_A1 + // or GRAM_NATIVE_XL_R1C1 would cause a Basic exception/error in the following script. + pDocSh->GetDocument().SetGrammar(formula::FormulaGrammar::Grammar::GRAM_NATIVE_XL_R1C1); + + const std::vector> aTests({ + { "GlobalNamedCell", "GlobalNamedCell" }, + { "GlobalNamedCellSheet", "GlobalNamedCell" }, + { "LocalNamedCell", "LocalNamedCell" }, + { "LocalNamedCellAccessError", "Exception" } + }); + + { + Any aRet; + Sequence aOutParamIndex; + Sequence aOutParam; + Sequence aParams; + + for (auto& [sTestName, sExpected] : aTests) + { + SfxObjectShell::CallXScript(xComponent, + "vnd.sun.Star.script:Standard.Module1." + sTestName + + "?language=Basic&location=document", + aParams, aRet, aOutParamIndex, aOutParam); + + OUString aReturnValue; + aRet >>= aReturnValue; + CPPUNIT_ASSERT_EQUAL_MESSAGE(sTestName.toUtf8().getStr(), sExpected, aReturnValue); + } + } + + pDocSh->DoClose(); +} + ScMacrosTest::ScMacrosTest() : UnoApiTest("/sc/qa/extras/testdocuments") { Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sc/qa/extras/testdocuments/tdf138646.ods and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sc/qa/extras/testdocuments/tdf138646.ods differ diff -Nru libreoffice-7.1.2~rc2/sc/qa/unit/ucalc.cxx libreoffice-7.1.3~rc2/sc/qa/unit/ucalc.cxx --- libreoffice-7.1.2~rc2/sc/qa/unit/ucalc.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/qa/unit/ucalc.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -4831,6 +4831,22 @@ CPPUNIT_ASSERT_EQUAL(aExpected, aFormula); } + // Clear column A for a new test. + clearRange(m_pDoc, ScRange(0, 0, 0, 0, MAXROW, 0)); + m_pDoc->SetRowHidden(0, MAXROW, 0, false); // Show all rows. + + m_pDoc->SetString(0, 100, 0, "2019-10-31"); + m_pDoc->SetString(0, 101, 0, "2019-11-30"); + m_pDoc->SetString(0, 102, 0, "2019-12-31"); + m_pDoc->Fill(0, 100, 0, 102, nullptr, aMarkData, 3, FILL_TO_BOTTOM, FILL_AUTO); + + // tdf#58745, Without the fix in place, this test would have failed with + // - Expected: 2020-01-31 + // - Actual : 2019-01-11 + CPPUNIT_ASSERT_EQUAL(OUString("2020-01-31"), m_pDoc->GetString(0, 103, 0)); + CPPUNIT_ASSERT_EQUAL(OUString("2020-02-29"), m_pDoc->GetString(0, 104, 0)); + CPPUNIT_ASSERT_EQUAL(OUString("2020-03-31"), m_pDoc->GetString(0, 105, 0)); + m_pDoc->DeleteTab(0); } Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sc/qa/unit/uicalc/data/tdf99913.xlsx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sc/qa/unit/uicalc/data/tdf99913.xlsx differ diff -Nru libreoffice-7.1.2~rc2/sc/qa/unit/uicalc/uicalc.cxx libreoffice-7.1.3~rc2/sc/qa/unit/uicalc/uicalc.cxx --- libreoffice-7.1.2~rc2/sc/qa/unit/uicalc/uicalc.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/qa/unit/uicalc/uicalc.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -364,6 +364,15 @@ CPPUNIT_ASSERT(pDoc->RowHidden(2, 0)); } +CPPUNIT_TEST_FIXTURE(ScUiCalcTest, testTdf99913) +{ + ScModelObj* pModelObj = createDoc("tdf99913.xlsx"); + ScDocument* pDoc = pModelObj->GetDocument(); + CPPUNIT_ASSERT(pDoc); + + CPPUNIT_ASSERT(pDoc->RowFiltered(2, 0)); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.1.2~rc2/sc/source/core/data/table4.cxx libreoffice-7.1.3~rc2/sc/source/core/data/table4.cxx --- libreoffice-7.1.2~rc2/sc/source/core/data/table4.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/core/data/table4.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -534,7 +534,12 @@ tools::Long nDDiff = aDate2.GetDay() - static_cast(aDate1.GetDay()); tools::Long nMDiff = aDate2.GetMonth() - static_cast(aDate1.GetMonth()); tools::Long nYDiff = aDate2.GetYear() - static_cast(aDate1.GetYear()); - if ( nDDiff ) + if (nMDiff && aDate1.IsEndOfMonth() && aDate2.IsEndOfMonth()) + { + eType = FILL_END_OF_MONTH; + nCmpInc = nMDiff + 12 * nYDiff; + } + else if (nDDiff) { eType = FILL_DAY; nCmpInc = aDate2 - aDate1; @@ -565,7 +570,8 @@ nDDiff = aDate2.GetDay() - static_cast(aDate1.GetDay()); nMDiff = aDate2.GetMonth() - static_cast(aDate1.GetMonth()); nYDiff = aDate2.GetYear() - static_cast(aDate1.GetYear()); - if (nDDiff || ( nMDiff + 12 * nYDiff != nCmpInc )) + if ((nDDiff && !aDate1.IsEndOfMonth() && !aDate2.IsEndOfMonth()) + || (nMDiff + 12 * nYDiff != nCmpInc)) bVal = false; } aDate1 = aDate2; @@ -577,7 +583,8 @@ } if (bVal) { - if ( eType == FILL_MONTH && ( nCmpInc % 12 == 0 ) ) + if ((eType == FILL_MONTH || eType == FILL_END_OF_MONTH) + && (nCmpInc % 12 == 0)) { eType = FILL_YEAR; nCmpInc /= 12; @@ -587,6 +594,13 @@ rInc = nCmpInc; } } + else + { + // tdf#89754 - don't increment non different consecutive date cells + rCmd = FILL_DATE; + rDateCmd = FILL_DAY; + rInc = 0.0; + } } else // single date -> increment by days { @@ -1506,6 +1520,7 @@ } break; case FILL_MONTH: + case FILL_END_OF_MONTH: { if ( nDayOfMonth == 0 ) nDayOfMonth = aDate.GetDay(); // init @@ -1541,7 +1556,14 @@ { aDate.SetMonth(static_cast(nMonth)); aDate.SetYear(static_cast(nYear)); - aDate.SetDay( std::min( Date::GetDaysInMonth( nMonth, nYear), nDayOfMonth ) ); + if (eCmd == FILL_END_OF_MONTH) + { + aDate.SetDay(Date::GetDaysInMonth(nMonth, nYear)); + } + else + { + aDate.SetDay(std::min(Date::GetDaysInMonth(nMonth, nYear), nDayOfMonth)); + } } } break; diff -Nru libreoffice-7.1.2~rc2/sc/source/core/tool/compiler.cxx libreoffice-7.1.3~rc2/sc/source/core/tool/compiler.cxx --- libreoffice-7.1.2~rc2/sc/source/core/tool/compiler.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/core/tool/compiler.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -2643,7 +2643,14 @@ if (eState != ssSkipReference) { *pSym++ = c; - *pSym++ = *pSrc++; + + if( pSym == &cSymbol[ MAXSTRLEN ] ) + { + SetError( FormulaError::StringOverflow); + eState = ssStop; + } + else + *pSym++ = *pSrc++; } bAddToSymbol = false; } @@ -3326,6 +3333,12 @@ bool ScCompiler::IsReference( const OUString& rName, const OUString* pErrRef ) { // Has to be called before IsValue + + // A later IsNamedRange() relies on these, being set in IsSingleReference() + // if so, reset in all cases. + mnCurrentSheetEndPos = 0; + mnCurrentSheetTab = -1; + sal_Unicode ch1 = rName[0]; sal_Unicode cDecSep = ( mxSymbols->isEnglish() ? '.' : ScGlobal::getLocaleDataPtr()->getNumDecimalSep()[0] ); if ( ch1 == cDecSep ) diff -Nru libreoffice-7.1.2~rc2/sc/source/core/tool/interpr1.cxx libreoffice-7.1.3~rc2/sc/source/core/tool/interpr1.cxx --- libreoffice-7.1.2~rc2/sc/source/core/tool/interpr1.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/core/tool/interpr1.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -6583,10 +6583,9 @@ SCSIZE nLenMajor = 0; // length of major direction bool bVertical = true; // whether to lookup vertically or horizontally - // The third parameter, result array, for double, string and single reference. + // The third parameter, result array, double, string and reference. double fResVal = 0.0; svl::SharedString aResStr; - ScAddress aResAdr; StackVar eResArrayType = svUnknown; if (nParamCount == 3) @@ -6608,6 +6607,11 @@ } } break; + case svSingleRef: + PopSingleRef( nResCol1, nResRow1, nResTab); + nResCol2 = nResCol1; + nResRow2 = nResRow1; + break; case svMatrix: case svExternalSingleRef: case svExternalDoubleRef: @@ -6634,9 +6638,6 @@ case svString: aResStr = GetString(); break; - case svSingleRef: - PopSingleRef( aResAdr ); - break; default: PushIllegalParameter(); return; @@ -6782,13 +6783,12 @@ PushString( aResStr ); break; case svDoubleRef: - aResAdr.Set( nResCol1, nResRow1, nResTab); - [[fallthrough]]; case svSingleRef: - PushCellResultToken( true, aResAdr, nullptr, nullptr); + PushCellResultToken( true, ScAddress( nResCol1, nResRow1, nResTab), nullptr, nullptr); break; default: - OSL_FAIL( "ScInterpreter::ScLookup: unhandled eResArrayType, single value data"); + assert(!"ScInterpreter::ScLookup: unhandled eResArrayType, single value data"); + PushIllegalParameter(); } } else @@ -6805,7 +6805,8 @@ PushCellResultToken( true, aDataAdr, nullptr, nullptr); break; default: - OSL_FAIL( "ScInterpreter::ScLookup: unhandled eDataArrayType, single value data"); + assert(!"ScInterpreter::ScLookup: unhandled eDataArrayType, single value data"); + PushIllegalParameter(); } } return; @@ -6996,33 +6997,69 @@ } else if (nParamCount == 3) { - // result array is cell range. - ScAddress aAdr; - aAdr.SetTab(nResTab); - bool bResVertical = (nResRow2 - nResRow1) > 0; - if (bResVertical) + /* TODO: the entire switch is a copy of the cell range search + * result, factor out. */ + switch (eResArrayType) { - SCROW nTempRow = static_cast(nResRow1 + nDelta); - if (nTempRow > mrDoc.MaxRow()) + case svDoubleRef: + case svSingleRef: { - PushDouble(0); - return; + // Use the result array vector. Note that the result array is assumed + // to be a vector (i.e. 1-dimensional array). + + ScAddress aAdr; + aAdr.SetTab(nResTab); + bool bResVertical = (nResRow2 - nResRow1) > 0; + if (bResVertical) + { + SCROW nTempRow = static_cast(nResRow1 + nDelta); + if (nTempRow > mrDoc.MaxRow()) + { + PushDouble(0); + return; + } + aAdr.SetCol(nResCol1); + aAdr.SetRow(nTempRow); + } + else + { + SCCOL nTempCol = static_cast(nResCol1 + nDelta); + if (nTempCol > mrDoc.MaxCol()) + { + PushDouble(0); + return; + } + aAdr.SetCol(nTempCol); + aAdr.SetRow(nResRow1); + } + PushCellResultToken( true, aAdr, nullptr, nullptr); } - aAdr.SetCol(nResCol1); - aAdr.SetRow(nTempRow); - } - else - { - SCCOL nTempCol = static_cast(nResCol1 + nDelta); - if (nTempCol > mrDoc.MaxCol()) + break; + case svDouble: + case svString: { - PushDouble(0); - return; + if (nDelta != 0) + PushNA(); + else + { + switch (eResArrayType) + { + case svDouble: + PushDouble( fResVal ); + break; + case svString: + PushString( aResStr ); + break; + default: + ; // nothing + } + } } - aAdr.SetCol(nTempCol); - aAdr.SetRow(nResRow1); + break; + default: + assert(!"ScInterpreter::ScLookup: unhandled eResArrayType, array search"); + PushIllegalParameter(); } - PushCellResultToken(true, aAdr, nullptr, nullptr); } else { @@ -7088,9 +7125,12 @@ } else if (nParamCount == 3) { + /* TODO: the entire switch is a copy of the array search result, factor + * out. */ switch (eResArrayType) { case svDoubleRef: + case svSingleRef: { // Use the result array vector. Note that the result array is assumed // to be a vector (i.e. 1-dimensional array). @@ -7125,7 +7165,6 @@ break; case svDouble: case svString: - case svSingleRef: { if (nDelta != 0) PushNA(); @@ -7139,9 +7178,6 @@ case svString: PushString( aResStr ); break; - case svSingleRef: - PushCellResultToken( true, aResAdr, nullptr, nullptr); - break; default: ; // nothing } @@ -7149,7 +7185,8 @@ } break; default: - OSL_FAIL( "ScInterpreter::ScLookup: unhandled eResArrayType, range search"); + assert(!"ScInterpreter::ScLookup: unhandled eResArrayType, range search"); + PushIllegalParameter(); } } else diff -Nru libreoffice-7.1.2~rc2/sc/source/core/tool/queryentry.cxx libreoffice-7.1.3~rc2/sc/source/core/tool/queryentry.cxx --- libreoffice-7.1.2~rc2/sc/source/core/tool/queryentry.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/core/tool/queryentry.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -115,17 +115,9 @@ rItem.mfVal == SC_NONEMPTYFIELDS; } -const ScQueryEntry::Item& ScQueryEntry::GetQueryItem() const +ScQueryEntry::Item& ScQueryEntry::GetQueryItemImpl() const { - if (maQueryItems.size() > 1) - // Reset to a single query mode. - maQueryItems.resize(1); - return maQueryItems[0]; -} - -ScQueryEntry::Item& ScQueryEntry::GetQueryItem() -{ - if (maQueryItems.size() > 1) + if (maQueryItems.size() != 1) // Reset to a single query mode. maQueryItems.resize(1); return maQueryItems[0]; diff -Nru libreoffice-7.1.2~rc2/sc/source/core/tool/rangeutl.cxx libreoffice-7.1.3~rc2/sc/source/core/tool/rangeutl.cxx --- libreoffice-7.1.2~rc2/sc/source/core/tool/rangeutl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/core/tool/rangeutl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -276,7 +276,9 @@ ScRefAddress aStartPos; ScRefAddress aEndPos; - pData->GetSymbol( aStrArea ); + // tdf#138646 - consider the current grammar and address convention of the document + pData->GetSymbol(aStrArea, + FormulaGrammar::mergeToGrammar(rDoc.GetGrammar(), rDetails.eConv)); if ( IsAbsArea( aStrArea, rDoc, nTable, nullptr, &aStartPos, &aEndPos, rDetails ) ) diff -Nru libreoffice-7.1.2~rc2/sc/source/filter/excel/xeescher.cxx libreoffice-7.1.3~rc2/sc/source/filter/excel/xeescher.cxx --- libreoffice-7.1.2~rc2/sc/source/filter/excel/xeescher.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/filter/excel/xeescher.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1804,7 +1804,7 @@ rtl::Reference< XclExpRecordBase > XclExpObjectManager::ProcessDrawing( const SdrPage* pSdrPage ) { if( pSdrPage ) - mxEscherEx->AddSdrPage( *pSdrPage ); + mxEscherEx->AddSdrPage( *pSdrPage, GetOutput() != EXC_OUTPUT_BINARY ); // the first dummy object may still be open OSL_ENSURE( mxEscherEx->GetGroupLevel() <= 1, "XclExpObjectManager::ProcessDrawing - still groups open?" ); while( mxEscherEx->GetGroupLevel() ) @@ -1816,7 +1816,7 @@ rtl::Reference< XclExpRecordBase > XclExpObjectManager::ProcessDrawing( const Reference< XShapes >& rxShapes ) { if( rxShapes.is() ) - mxEscherEx->AddUnoShapes( rxShapes ); + mxEscherEx->AddUnoShapes( rxShapes, GetOutput() != EXC_OUTPUT_BINARY ); // the first dummy object may still be open OSL_ENSURE( mxEscherEx->GetGroupLevel() <= 1, "XclExpObjectManager::ProcessDrawing - still groups open?" ); while( mxEscherEx->GetGroupLevel() ) diff -Nru libreoffice-7.1.2~rc2/sc/source/filter/oox/workbookfragment.cxx libreoffice-7.1.3~rc2/sc/source/filter/oox/workbookfragment.cxx --- libreoffice-7.1.2~rc2/sc/source/filter/oox/workbookfragment.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/filter/oox/workbookfragment.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -481,13 +481,10 @@ // final conversions, e.g. calculation settings and view settings finalizeWorkbookImport(); - // + //stop preventing establishment of listeners as is done in //ScDocShell::AfterXMLLoading() for ods getScDocument().SetInsertingFromOtherDoc(false); - getDocImport().finalize(); - - recalcFormulaCells(); for( WorksheetHelper* pHelper : aHelpers ) { @@ -501,6 +498,10 @@ rxSheetGlob.reset(); } + getDocImport().finalize(); + + recalcFormulaCells(); + OUString aRevHeadersPath = getFragmentPathFromFirstType(CREATE_OFFICEDOC_RELATION_TYPE("revisionHeaders")); if (!aRevHeadersPath.isEmpty()) { diff -Nru libreoffice-7.1.2~rc2/sc/source/filter/oox/worksheethelper.cxx libreoffice-7.1.3~rc2/sc/source/filter/oox/worksheethelper.cxx --- libreoffice-7.1.2~rc2/sc/source/filter/oox/worksheethelper.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/filter/oox/worksheethelper.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -68,6 +68,8 @@ #include #include #include +#include +#include #include #include @@ -340,9 +342,12 @@ void convertColumns( OutlineLevelVec& orColLevels, const ValueRange& rColRange, const ColumnModel& rModel ); /** Converts row properties for all rows in the sheet. */ - void convertRows(); + void convertRows(const std::vector& rSpans); /** Converts row properties. */ - void convertRows( OutlineLevelVec& orRowLevels, const ValueRange& rRowRange, const RowModel& rModel, double fDefHeight = -1.0 ); + void convertRows(OutlineLevelVec& orRowLevels, const ValueRange& rRowRange, + const RowModel& rModel, + const std::vector& rSpans, + double fDefHeight = -1.0); /** Converts outline grouping for the passed column or row. */ void convertOutlines( OutlineLevelVec& orLevels, sal_Int32 nColRow, sal_Int32 nLevel, bool bCollapsed, bool bRows ); @@ -946,7 +951,37 @@ lclUpdateProgressBar( mxFinalProgress, 0.5 ); convertColumns(); - convertRows(); + + // tdf#99913 rows hidden by filter need extra flag + ScDocument& rDoc = getScDocument(); + std::vector aSpans; + SCTAB nTab = getSheetIndex(); + ScDBData* pDBData = rDoc.GetAnonymousDBData(nTab); + if (pDBData && pDBData->HasAutoFilter()) + { + ScRange aRange; + pDBData->GetArea(aRange); + SCCOLROW nStartRow = static_cast(aRange.aStart.Row()); + SCCOLROW nEndRow = static_cast(aRange.aEnd.Row()); + aSpans.push_back(sc::ColRowSpan(nStartRow, nEndRow)); + } + ScDBCollection* pDocColl = rDoc.GetDBCollection(); + if (!pDocColl->empty()) + { + ScDBCollection::NamedDBs& rDBs = pDocColl->getNamedDBs(); + for (const auto& rxDB : rDBs) + { + if (rxDB->GetTab() == nTab && rxDB->HasAutoFilter()) + { + ScRange aRange; + rxDB->GetArea(aRange); + SCCOLROW nStartRow = static_cast(aRange.aStart.Row()); + SCCOLROW nEndRow = static_cast(aRange.aEnd.Row()); + aSpans.push_back(sc::ColRowSpan(nStartRow, nEndRow)); + } + } + } + convertRows(aSpans); lclUpdateProgressBar( mxFinalProgress, 1.0 ); } @@ -1200,7 +1235,7 @@ convertOutlines( orColLevels, rColRange.mnFirst, rModel.mnLevel, rModel.mbCollapsed, false ); } -void WorksheetGlobals::convertRows() +void WorksheetGlobals::convertRows(const std::vector& rSpans) { sal_Int32 nNextRow = 0; sal_Int32 nMaxRow = mrMaxApiPos.Row(); @@ -1213,21 +1248,23 @@ ValueRange aRowRange( ::std::max( rowModel.first, nNextRow ), ::std::min( rowModel.second.second, nMaxRow ) ); // process gap between two row models, use default row model if( nNextRow < aRowRange.mnFirst ) - convertRows( aRowLevels, ValueRange( nNextRow, aRowRange.mnFirst - 1 ), maDefRowModel ); + convertRows(aRowLevels, ValueRange(nNextRow, aRowRange.mnFirst - 1), maDefRowModel, + rSpans); // process the row model - convertRows( aRowLevels, aRowRange, rowModel.second.first, maDefRowModel.mfHeight ); + convertRows(aRowLevels, aRowRange, rowModel.second.first, rSpans, maDefRowModel.mfHeight); // cache next row to be processed nNextRow = aRowRange.mnLast + 1; } // remaining default rows to end of sheet - convertRows( aRowLevels, ValueRange( nNextRow, nMaxRow ), maDefRowModel ); + convertRows(aRowLevels, ValueRange(nNextRow, nMaxRow), maDefRowModel, rSpans); // close remaining row outlines spanning to end of sheet convertOutlines( aRowLevels, nMaxRow + 1, 0, false, true ); } -void WorksheetGlobals::convertRows( OutlineLevelVec& orRowLevels, - const ValueRange& rRowRange, const RowModel& rModel, double fDefHeight ) +void WorksheetGlobals::convertRows(OutlineLevelVec& orRowLevels, const ValueRange& rRowRange, + const RowModel& rModel, + const std::vector& rSpans, double fDefHeight) { // row height: convert points to row height in 1/100 mm double fHeight = (rModel.mfHeight >= 0.0) ? rModel.mfHeight : fDefHeight; @@ -1249,6 +1286,16 @@ { ScDocument& rDoc = getScDocument(); rDoc.SetRowHidden( nStartRow, nEndRow, nTab, true ); + for (const auto& rSpan : rSpans) + { + // tdf#99913 rows hidden by filter need extra flag + if (rSpan.mnStart <= nStartRow && nStartRow <= rSpan.mnEnd) + { + SCROW nLast = ::std::min(nEndRow, rSpan.mnEnd); + rDoc.SetRowFiltered(nStartRow, nLast, nTab, true); + break; + } + } } // outline settings for this row range diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/condformat/condformatdlg.cxx libreoffice-7.1.3~rc2/sc/source/ui/condformat/condformatdlg.cxx --- libreoffice-7.1.2~rc2/sc/source/ui/condformat/condformatdlg.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/condformat/condformatdlg.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -177,6 +177,8 @@ if (mbFrozen) return; + int nWheelScroll = SAL_MAX_INT32; + sal_Int32 nIndex = 1; for (const auto& item : maEntries) { @@ -184,8 +186,15 @@ continue; item->SetIndex(nIndex); item->set_grid_top_attach(nIndex - 1); + nWheelScroll = std::min(nWheelScroll, item->get_preferred_height()); ++nIndex; } + + if (nWheelScroll != SAL_MAX_INT32) + { + // tdf#118482 set a scroll step of the height of a collapsed entry + mxScrollWindow->vadjustment_set_step_increment(nWheelScroll); + } } IMPL_LINK(ScCondFormatList, ColFormatTypeHdl, weld::ComboBox&, rBox, void) diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/dbgui/filtdlg.cxx libreoffice-7.1.3~rc2/sc/source/ui/dbgui/filtdlg.cxx --- libreoffice-7.1.2~rc2/sc/source/ui/dbgui/filtdlg.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/dbgui/filtdlg.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -221,7 +221,6 @@ ScQueryEntry& rEntry = theQueryData.GetEntry(i); if ( rEntry.bDoQuery ) { - const ScQueryEntry::Item& rItem = rEntry.GetQueryItem(); nCondPos = static_cast(rEntry.eOp); nFieldSelPos = GetFieldSelPos( static_cast(rEntry.nField) ); if (rEntry.IsQueryByEmpty()) @@ -236,6 +235,7 @@ } else { + const ScQueryEntry::Item& rItem = rEntry.GetQueryItem(); OUString aQueryStr = rItem.maString.getString(); SetValString(aQueryStr, rItem, aValStr); } diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/inc/condformatdlgentry.hxx libreoffice-7.1.3~rc2/sc/source/ui/inc/condformatdlgentry.hxx --- libreoffice-7.1.2~rc2/sc/source/ui/inc/condformatdlgentry.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/inc/condformatdlgentry.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -77,6 +77,7 @@ void Show() { mxGrid->show(); } void set_grid_top_attach(int nAttach) { mxBorder->set_grid_top_attach(nAttach); } + int get_preferred_height() const { return mxBorder->get_preferred_size().Height(); } void SetPos(const ScAddress& rPos) { maPos = rPos; }; bool IsSelected() const { return mbActive;} diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/inc/content.hxx libreoffice-7.1.3~rc2/sc/source/ui/inc/content.hxx --- libreoffice-7.1.2~rc2/sc/source/ui/inc/content.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/inc/content.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -165,7 +165,7 @@ /** Applies the navigator settings to the listbox. */ void ApplyNavigatorSettings(bool bRestoreScrollPos = false, int nScrollPos = 0); /** Stores the current listbox state in the navigator settings. */ - void StoreNavigatorSettings() const; + void StoreNavigatorSettings(); }; #endif // INCLUDED_SC_SOURCE_UI_INC_CONTENT_HXX diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/inc/gridwin.hxx libreoffice-7.1.3~rc2/sc/source/ui/inc/gridwin.hxx --- libreoffice-7.1.2~rc2/sc/source/ui/inc/gridwin.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/inc/gridwin.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -263,7 +263,7 @@ bool DrawMouseButtonDown(const MouseEvent& rMEvt); bool DrawMouseButtonUp(const MouseEvent& rMEvt); bool DrawMouseMove(const MouseEvent& rMEvt); - bool DrawKeyInput(const KeyEvent& rKEvt); + bool DrawKeyInput(const KeyEvent& rKEvt, vcl::Window* pWin); bool DrawCommand(const CommandEvent& rCEvt); bool DrawHasMarkedObj(); void DrawEndAction(); diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/navipi/content.cxx libreoffice-7.1.3~rc2/sc/source/ui/navipi/content.cxx --- libreoffice-7.1.2~rc2/sc/source/ui/navipi/content.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/navipi/content.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -333,7 +333,13 @@ switch( nType ) { case ScContentId::TABLE: + { + // tdf#133159 store current config before changing sheet + // plausible that this should be done for all cases, but this + // is the known case that needs it + StoreNavigatorSettings(); pParentWindow->SetCurrentTableStr( aText ); + } break; case ScContentId::RANGENAME: @@ -1628,8 +1634,14 @@ } } -void ScContentTree::StoreNavigatorSettings() const +void ScContentTree::StoreNavigatorSettings() { + if (m_nAsyncMouseReleaseId) + { + Application::RemoveUserEvent(m_nAsyncMouseReleaseId); + m_nAsyncMouseReleaseId = nullptr; + } + ScNavigatorSettings* pSettings = ScNavigatorDlg::GetNavigatorSettings(); if( !pSettings ) return; diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/view/gridwin3.cxx libreoffice-7.1.3~rc2/sc/source/ui/view/gridwin3.cxx --- libreoffice-7.1.2~rc2/sc/source/ui/view/gridwin3.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/view/gridwin3.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -167,10 +167,15 @@ return false; } -bool ScGridWindow::DrawKeyInput(const KeyEvent& rKEvt) +bool ScGridWindow::DrawKeyInput(const KeyEvent& rKEvt, vcl::Window* pWin) { ScDrawView* pDrView = mrViewData.GetScDrawView(); FuPoor* pDraw = mrViewData.GetView()->GetDrawFuncPtr(); + + + if (pDrView && pDrView->KeyInput(rKEvt, pWin)) + return true; + if (pDrView && pDraw && !mrViewData.IsRefMode()) { pDraw->SetWindow( this ); diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/view/gridwin.cxx libreoffice-7.1.3~rc2/sc/source/ui/view/gridwin.cxx --- libreoffice-7.1.2~rc2/sc/source/ui/view/gridwin.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/view/gridwin.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -3289,7 +3289,7 @@ if (mrViewData.GetDocShell()->GetProgress()) return; - if (DrawKeyInput(rKEvt)) + if (DrawKeyInput(rKEvt, this)) { const vcl::KeyCode& rLclKeyCode = rKEvt.GetKeyCode(); if (rLclKeyCode.GetCode() == KEY_DOWN diff -Nru libreoffice-7.1.2~rc2/sc/source/ui/view/hintwin.cxx libreoffice-7.1.3~rc2/sc/source/ui/view/hintwin.cxx --- libreoffice-7.1.2~rc2/sc/source/ui/view/hintwin.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sc/source/ui/view/hintwin.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -31,6 +31,7 @@ #include #include #include +#include #define HINT_LINESPACE 2 #define HINT_INDENT 3 @@ -104,9 +105,16 @@ sal_Int32 nIndex = 0; Point aLineStart = aTextStart; + sal_Int32 nLineCount = 0; while (nIndex != -1) { OUString aLine = m_aMessage.getToken( 0, '\r', nIndex ); + if (aLine.getLength() > 255) + { + // prevent silliness higher up from hanging up the program + SAL_WARN("sc", "ridiculously long line, truncating, len=" << aLine.getLength()); + aLine = aLine.copy(0,255); + } aTextMatrix = basegfx::utils::createScaleTranslateB2DHomMatrix( aFontSize.getX(), aFontSize.getY(), @@ -125,6 +133,13 @@ aSeq.push_back(aMessage); aLineStart.AdjustY(nLineHeight ); + nLineCount++; + if (nLineCount > 50) + { + // prevent silliness higher up from hanging up the program + SAL_WARN("sc", "ridiculously long message, bailing out"); + break; + } } rRange.expand(basegfx::B2DTuple(rRange.getMaxX() + aHintMargin.Width(), Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sd/qa/unit/data/pptx/tdf132472.pptx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sd/qa/unit/data/pptx/tdf132472.pptx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sd/qa/unit/data/pptx/tdf137367.pptx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sd/qa/unit/data/pptx/tdf137367.pptx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sd/qa/unit/data/pptx/tdf140714.pptx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sd/qa/unit/data/pptx/tdf140714.pptx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sd/qa/unit/data/pptx/tdf140865Wordart3D.pptx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sd/qa/unit/data/pptx/tdf140865Wordart3D.pptx differ diff -Nru libreoffice-7.1.2~rc2/sd/qa/unit/export-tests.cxx libreoffice-7.1.3~rc2/sd/qa/unit/export-tests.cxx --- libreoffice-7.1.2~rc2/sd/qa/unit/export-tests.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/qa/unit/export-tests.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -79,6 +79,7 @@ void testShadowBlur(); void testRhbz1870501(); void testTdf128550(); + void testTdf140714(); CPPUNIT_TEST_SUITE(SdExportTest); @@ -118,6 +119,7 @@ CPPUNIT_TEST(testShadowBlur); CPPUNIT_TEST(testRhbz1870501); CPPUNIT_TEST(testTdf128550); + CPPUNIT_TEST(testTdf140714); CPPUNIT_TEST_SUITE_END(); @@ -1355,6 +1357,20 @@ } +void SdExportTest::testTdf140714() +{ + //Without the fix in place, shape will be imported as GraphicObjectShape instead of CustomShape. + + auto xDocShRef = loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/pptx/tdf140714.pptx"), PPTX); + utl::TempFile tempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &tempFile); + + uno::Reference xShape(getShapeFromPage(0, 0, xDocShRef), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(OUString{"com.sun.star.drawing.CustomShape"}, xShape->getShapeType()); + + xDocShRef->DoClose(); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdExportTest); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-7.1.2~rc2/sd/qa/unit/export-tests-ooxml1.cxx libreoffice-7.1.3~rc2/sd/qa/unit/export-tests-ooxml1.cxx --- libreoffice-7.1.2~rc2/sd/qa/unit/export-tests-ooxml1.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/qa/unit/export-tests-ooxml1.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -102,6 +102,7 @@ void testTdf136911(); void testArcTo(); void testNarrationMimeType(); + void testTdf140865Wordart3D(); CPPUNIT_TEST_SUITE(SdOOXMLExportTest1); @@ -153,6 +154,7 @@ CPPUNIT_TEST(testTdf136911); CPPUNIT_TEST(testArcTo); CPPUNIT_TEST(testNarrationMimeType); + CPPUNIT_TEST(testTdf140865Wordart3D); CPPUNIT_TEST_SUITE_END(); @@ -1325,6 +1327,28 @@ xDocShRef->DoClose(); } +void SdOOXMLExportTest1::testTdf140865Wordart3D() +{ + sd::DrawDocShellRef xDocShRef + = loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/pptx/tdf140865Wordart3D.pptx"), PPTX); + utl::TempFile aTempFile; + xDocShRef = saveAndReload(xDocShRef.get(), PPTX, &aTempFile); + xmlDocUniquePtr pXmlDoc = parseExport(aTempFile, "ppt/slides/slide1.xml"); + + // without the fix in place a:sp3d was lost on round trip, and so extrusion was lost. + constexpr OStringLiteral sPathStart("//p:sld/p:cSld/p:spTree/p:sp/p:txBody/a:bodyPr"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d", "extrusionH", "342900"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d", "contourW", "12700"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d/a:bevelT", "w", "114300"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d/a:bevelT", "h", "38100"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d/a:bevelT", "prst", "softRound"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d/a:bevelB", "h", "152400"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d/a:extrusionClr/a:srgbClr", "val", "990000"); + assertXPath(pXmlDoc, sPathStart + "/a:sp3d/a:contourClr/a:srgbClr", "val", "009876"); + + xDocShRef->DoClose(); +} + CPPUNIT_TEST_SUITE_REGISTRATION(SdOOXMLExportTest1); CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-7.1.2~rc2/sd/qa/unit/export-tests-ooxml2.cxx libreoffice-7.1.3~rc2/sd/qa/unit/export-tests-ooxml2.cxx --- libreoffice-7.1.2~rc2/sd/qa/unit/export-tests-ooxml2.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/qa/unit/export-tests-ooxml2.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -95,6 +95,7 @@ void testTdf123090(); void testTdf126324(); void testTdf119187(); + void testTdf132472(); void testTdf80224(); void testExportTransitionsPPTX(); void testPresetShapesExport(); @@ -217,6 +218,7 @@ CPPUNIT_TEST(testTdf123090); CPPUNIT_TEST(testTdf126324); CPPUNIT_TEST(testTdf119187); + CPPUNIT_TEST(testTdf132472); CPPUNIT_TEST(testTdf80224); CPPUNIT_TEST(testExportTransitionsPPTX); CPPUNIT_TEST(testPresetShapesExport); @@ -608,6 +610,35 @@ } } +void SdOOXMLExportTest2::testTdf132472() +{ + sd::DrawDocShellRef xDocShRef = loadURL( m_directories.getURLFromSrc(u"/sd/qa/unit/data/pptx/tdf132472.pptx"), PPTX ); + const SdrPage *pPage = GetPage( 1, xDocShRef ); + + sdr::table::SdrTableObj *pTableObj = dynamic_cast(pPage->GetObj(0)); + CPPUNIT_ASSERT( pTableObj ); + + uno::Reference< table::XCellRange > xTable(pTableObj->getTable(), uno::UNO_QUERY_THROW); + uno::Reference< beans::XPropertySet > xCell; + Color nColor; + + xCell.set(xTable->getCellByPosition(0, 0), uno::UNO_QUERY_THROW); + xCell->getPropertyValue("FillColor") >>= nColor; + CPPUNIT_ASSERT_EQUAL(Color(0x729fcf), nColor); + + uno::Reference xParagraph(getParagraphFromShape(0, xCell)); + uno::Reference xRun(getRunFromParagraph(0, xParagraph)); + uno::Reference xPropSet(xRun, uno::UNO_QUERY); + xPropSet->getPropertyValue("CharColor") >>= nColor; + + // Without the fix in place, this test would have failed with + // - Expected: Color: R:0 G:0 B:0 A:0 + // - Actual : Color: R:255 G:255 B:255 A:0 + CPPUNIT_ASSERT_EQUAL(COL_BLACK, nColor); + + xDocShRef->DoClose(); +} + void SdOOXMLExportTest2::testTdf80224() { ::sd::DrawDocShellRef xDocShRef = loadURL( m_directories.getURLFromSrc("/sd/qa/unit/data/odp/tdf80224.odp"), ODP); diff -Nru libreoffice-7.1.2~rc2/sd/qa/unit/import-tests.cxx libreoffice-7.1.3~rc2/sd/qa/unit/import-tests.cxx --- libreoffice-7.1.2~rc2/sd/qa/unit/import-tests.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/qa/unit/import-tests.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -122,6 +122,7 @@ virtual void setUp() override; void testDocumentLayout(); + void testHyperlinkColor(); void testSmoketest(); void testN759180(); void testN778859(); @@ -239,6 +240,7 @@ CPPUNIT_TEST_SUITE(SdImportTest); CPPUNIT_TEST(testDocumentLayout); + CPPUNIT_TEST(testHyperlinkColor); CPPUNIT_TEST(testSmoketest); CPPUNIT_TEST(testN759180); CPPUNIT_TEST(testN778859); @@ -432,6 +434,45 @@ } } +void SdImportTest::testHyperlinkColor() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc(u"/sd/qa/unit/data/pptx/tdf137367.pptx"), PPTX); + + uno::Reference< beans::XPropertySet > xShape( getShapeFromPage( 0, 0, xDocShRef ) ); + + // Get first paragraph of the text + uno::Reference const xParagraph1( getParagraphFromShape( 0, xShape ) ); + // Get second paragraph of the text + uno::Reference const xParagraph2( getParagraphFromShape( 1, xShape ) ); + // Get third paragraph of the text + uno::Reference const xParagraph3( getParagraphFromShape( 2, xShape ) ); + + // Get run of the first paragraph + uno::Reference xRun1( getRunFromParagraph (0, xParagraph1 ) ); + uno::Reference< beans::XPropertySet > xPropSet1( xRun1, uno::UNO_QUERY_THROW ); + sal_Int32 nCharColorBlue; + xPropSet1->getPropertyValue( "CharColor" ) >>= nCharColorBlue; + + // Get run of the second paragraph + uno::Reference xRun2( getRunFromParagraph (1, xParagraph2 ) ); + uno::Reference< beans::XPropertySet > xPropSet2( xRun2, uno::UNO_QUERY_THROW ); + sal_Int32 nCharColorRed; + xPropSet2->getPropertyValue( "CharColor" ) >>= nCharColorRed; + + // Get run of the third paragraph + uno::Reference xRun3( getRunFromParagraph (2, xParagraph3 ) ); + uno::Reference< beans::XPropertySet > xPropSet3( xRun3, uno::UNO_QUERY_THROW ); + sal_Int32 nCharColorGreen; + xPropSet3->getPropertyValue( "CharColor" ) >>= nCharColorGreen; + + // Hyperlink colors should be blue, red, green. + CPPUNIT_ASSERT_EQUAL( sal_Int32(4485828), nCharColorBlue ); + CPPUNIT_ASSERT_EQUAL( sal_Int32(16711680), nCharColorRed ); + CPPUNIT_ASSERT_EQUAL( sal_Int32(5538357), nCharColorGreen ); + + xDocShRef->DoClose(); +} + void SdImportTest::testSmoketest() { sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/smoketest.pptx"), PPTX); diff -Nru libreoffice-7.1.2~rc2/sd/qa/unit/misc-tests.cxx libreoffice-7.1.3~rc2/sd/qa/unit/misc-tests.cxx --- libreoffice-7.1.2~rc2/sd/qa/unit/misc-tests.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/qa/unit/misc-tests.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -27,6 +27,8 @@ #include #include #include +#include +#include #include #include @@ -83,6 +85,7 @@ void testTdf130988(); void testTdf131033(); void testTdf129898LayerDrawnInSlideshow(); + void testTdf136956(); CPPUNIT_TEST_SUITE(SdMiscTest); CPPUNIT_TEST(testTdf96206); @@ -104,6 +107,7 @@ CPPUNIT_TEST(testTdf130988); CPPUNIT_TEST(testTdf131033); CPPUNIT_TEST(testTdf129898LayerDrawnInSlideshow); + CPPUNIT_TEST(testTdf136956); CPPUNIT_TEST_SUITE_END(); virtual void registerNamespaces(xmlXPathContextPtr& pXmlXPathCtx) override @@ -874,6 +878,37 @@ xDocShRef->DoClose(); } + +void SdMiscTest::testTdf136956() +{ + ::sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc(u"sd/qa/unit/data/odp/cellspan.odp"), ODP); + + const SdrPage *pPage = GetPage( 1, xDocShRef ); + sdr::table::SdrTableObj *pTableObj = dynamic_cast(pPage->GetObj(0)); + CPPUNIT_ASSERT( pTableObj ); + uno::Reference< table::XTable > xTable(pTableObj->getTable(), uno::UNO_SET_THROW); + + uno::Reference< css::table::XMergeableCellRange > xRange( + xTable->createCursorByRange( xTable->getCellRangeByPosition( 0, 0, 3, 2 ) ), uno::UNO_QUERY_THROW ); + + // 4x3 Table before merge. + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), xTable->getColumnCount()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), xTable->getRowCount()); + + xRange->merge(); + + // 1x1 Table after merge. + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getColumnCount()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xTable->getRowCount()); + + xDocShRef->GetUndoManager()->Undo(); + + // 4x3 Table after undo. Undo crashed before. + CPPUNIT_ASSERT_EQUAL(sal_Int32(4), xTable->getColumnCount()); + CPPUNIT_ASSERT_EQUAL(sal_Int32(3), xTable->getRowCount()); + + xDocShRef->DoClose(); +} CPPUNIT_TEST_SUITE_REGISTRATION(SdMiscTest); diff -Nru libreoffice-7.1.2~rc2/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx libreoffice-7.1.3~rc2/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx --- libreoffice-7.1.2~rc2/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/source/ui/accessibility/AccessibleDocumentViewBase.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -88,13 +88,17 @@ mpViewShell = pViewShell; } +void AccessibleDocumentViewBase::ReleaseWindow() +{ + SolarMutexGuard g; + mpWindow.reset(); +} + AccessibleDocumentViewBase::~AccessibleDocumentViewBase() { // At this place we should be disposed. You may want to add a // corresponding assertion into the destructor of a derived class. - - SolarMutexGuard g; - mpWindow.reset(); + ReleaseWindow(); // this should already be done by impl_dispose } void AccessibleDocumentViewBase::Init() @@ -484,6 +488,8 @@ mxController = nullptr; maShapeTreeInfo.SetDocumentWindow (nullptr); + + ReleaseWindow(); // tdf#135363 - ensure the window is released by dispose } //===== XEventListener ====================================================== diff -Nru libreoffice-7.1.2~rc2/sd/source/ui/app/sdxfer.cxx libreoffice-7.1.3~rc2/sd/source/ui/app/sdxfer.cxx --- libreoffice-7.1.2~rc2/sd/source/ui/app/sdxfer.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/source/ui/app/sdxfer.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -648,14 +648,18 @@ void SdTransferable::ObjectReleased() { - if( this == SD_MOD()->pTransferClip ) - SD_MOD()->pTransferClip = nullptr; + SdModule *pModule = SD_MOD(); + if (!pModule) + return; - if( this == SD_MOD()->pTransferDrag ) - SD_MOD()->pTransferDrag = nullptr; + if( this == pModule->pTransferClip ) + pModule->pTransferClip = nullptr; - if( this == SD_MOD()->pTransferSelection ) - SD_MOD()->pTransferSelection = nullptr; + if( this == pModule->pTransferDrag ) + pModule->pTransferDrag = nullptr; + + if( this == pModule->pTransferSelection ) + pModule->pTransferSelection = nullptr; } void SdTransferable::SetObjectDescriptor( std::unique_ptr pObjDesc ) diff -Nru libreoffice-7.1.2~rc2/sd/source/ui/inc/AccessibleDocumentViewBase.hxx libreoffice-7.1.3~rc2/sd/source/ui/inc/AccessibleDocumentViewBase.hxx --- libreoffice-7.1.2~rc2/sd/source/ui/inc/AccessibleDocumentViewBase.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/source/ui/inc/AccessibleDocumentViewBase.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -238,6 +238,8 @@ virtual void implSelect( sal_Int32 nAccessibleChildIndex, bool bSelect ) override; + void ReleaseWindow(); + protected: /// The core window that is made accessible. VclPtr< ::sd::Window> mpWindow; diff -Nru libreoffice-7.1.2~rc2/sd/source/ui/view/drviews4.cxx libreoffice-7.1.3~rc2/sd/source/ui/view/drviews4.cxx --- libreoffice-7.1.2~rc2/sd/source/ui/view/drviews4.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/source/ui/view/drviews4.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -149,7 +149,7 @@ { bool bRet = false; - if ( !IsInputLocked() || ( rKEvt.GetKeyCode().GetCode() == KEY_ESCAPE ) ) + if (!IsInputLocked() || (rKEvt.GetKeyCode().GetCode() == KEY_ESCAPE)) { if(KEY_RETURN == rKEvt.GetKeyCode().GetCode() && rKEvt.GetKeyCode().IsMod1() @@ -226,6 +226,9 @@ } } + if (!bRet) + bRet = GetView()->KeyInput(rKEvt, pWin); + return bRet; } diff -Nru libreoffice-7.1.2~rc2/sd/xml/effects.xml libreoffice-7.1.3~rc2/sd/xml/effects.xml --- libreoffice-7.1.2~rc2/sd/xml/effects.xml 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sd/xml/effects.xml 2021-04-28 16:17:45.000000000 +0000 @@ -349,7 +349,7 @@ - + @@ -357,7 +357,7 @@ - + @@ -365,7 +365,7 @@ - + @@ -373,7 +373,7 @@ - + @@ -1655,7 +1655,7 @@ - + @@ -1663,7 +1663,7 @@ - + @@ -1671,7 +1671,7 @@ - + @@ -1679,7 +1679,7 @@ - + diff -Nru libreoffice-7.1.2~rc2/sfx2/source/dialog/tabdlg.cxx libreoffice-7.1.3~rc2/sfx2/source/dialog/tabdlg.cxx --- libreoffice-7.1.2~rc2/sfx2/source/dialog/tabdlg.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sfx2/source/dialog/tabdlg.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -168,6 +168,8 @@ { } +bool SfxTabPage::DeferResetToFirstActivation() { return false; } + void SfxTabPage::ActivatePage( const SfxItemSet& ) /* [Description] @@ -919,7 +921,10 @@ pDataObject->xTabPage->SetUserData(sUserData); PageCreated(pDataObject->sId, *pDataObject->xTabPage); - pDataObject->xTabPage->Reset(m_pSet.get()); + if (pDataObject->xTabPage->DeferResetToFirstActivation()) + pDataObject->bRefresh = true; // Reset will be called in ActivatePageHdl + else + pDataObject->xTabPage->Reset(m_pSet.get()); } } diff -Nru libreoffice-7.1.2~rc2/sfx2/source/sidebar/DeckLayouter.cxx libreoffice-7.1.3~rc2/sfx2/source/sidebar/DeckLayouter.cxx --- libreoffice-7.1.2~rc2/sfx2/source/sidebar/DeckLayouter.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sfx2/source/sidebar/DeckLayouter.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -433,7 +433,16 @@ << " Maximum: " << rItem.maLayoutSize.Maximum); } - sal_Int32 nWidth = xPanel->getMinimalWidth(); + sal_Int32 nWidth = rMinimalWidth; + try + { + // The demo sidebar extension "Analog Clock" fails with + // java.lang.AbstractMethodError here + nWidth = xPanel->getMinimalWidth(); + } + catch (...) + { + } uno::Reference xDesktop = frame::Desktop::create(comphelper::getProcessComponentContext()); diff -Nru libreoffice-7.1.2~rc2/sfx2/uiconfig/ui/extrabutton.ui libreoffice-7.1.3~rc2/sfx2/uiconfig/ui/extrabutton.ui --- libreoffice-7.1.2~rc2/sfx2/uiconfig/ui/extrabutton.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sfx2/uiconfig/ui/extrabutton.ui 2021-04-28 16:17:45.000000000 +0000 @@ -1,6 +1,6 @@ - + True diff -Nru libreoffice-7.1.2~rc2/sfx2/uiconfig/ui/infobar.ui libreoffice-7.1.3~rc2/sfx2/uiconfig/ui/infobar.ui --- libreoffice-7.1.2~rc2/sfx2/uiconfig/ui/infobar.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sfx2/uiconfig/ui/infobar.ui 2021-04-28 16:17:45.000000000 +0000 @@ -1,6 +1,6 @@ - + True diff -Nru libreoffice-7.1.2~rc2/sfx2/uiconfig/ui/linkeditdialog.ui libreoffice-7.1.3~rc2/sfx2/uiconfig/ui/linkeditdialog.ui --- libreoffice-7.1.2~rc2/sfx2/uiconfig/ui/linkeditdialog.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sfx2/uiconfig/ui/linkeditdialog.ui 2021-04-28 16:17:45.000000000 +0000 @@ -3,11 +3,6 @@ - - - - - False 6 Modify DDE Link @@ -149,16 +144,16 @@ - - - Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice. - - True True True True True + + + Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice. + + 1 @@ -167,16 +162,16 @@ - - - Path to the source file. Relative paths must be expressed by full URI, for example, with file://. - - True True True True True + + + Path to the source file. Relative paths must be expressed by full URI, for example, with file://. + + 1 @@ -185,16 +180,16 @@ - - - Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here. - - True True True True True + + + Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here. + + 1 diff -Nru libreoffice-7.1.2~rc2/shell/source/unix/exec/shellexec.cxx libreoffice-7.1.3~rc2/shell/source/unix/exec/shellexec.cxx --- libreoffice-7.1.2~rc2/shell/source/unix/exec/shellexec.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/shell/source/unix/exec/shellexec.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -137,6 +137,7 @@ throw css::lang::IllegalArgumentException( "XSystemShellExecute.execute, cannot process <" + aCommand + ">", {}, 0); } else if (pathname.endsWithIgnoreAsciiCase(".class") + || pathname.endsWithIgnoreAsciiCase(".fileloc") || pathname.endsWithIgnoreAsciiCase(".jar")) { dir = true; diff -Nru libreoffice-7.1.2~rc2/solenv/bin/hrcex libreoffice-7.1.3~rc2/solenv/bin/hrcex --- libreoffice-7.1.2~rc2/solenv/bin/hrcex 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/solenv/bin/hrcex 2021-04-28 16:17:45.000000000 +0000 @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import polib import binascii @@ -22,17 +22,18 @@ ofile = a with open(ofile, "a") as output: - xgettext = Popen(["xgettext", "-C", "--add-comments", "--keyword=NC_:1c,2", "--keyword=NNC_:1c,2,3", "--from-code=UTF-8", "--no-wrap", ifile, "-o", "-"], stdout=PIPE) + xgettext = Popen(["xgettext", "-C", "--add-comments", "--keyword=NC_:1c,2", "--keyword=NNC_:1c,2,3", "--from-code=UTF-8", "--no-wrap", ifile, "-o", "-"], stdout=PIPE, encoding="UTF-8") # while overall format is c++, all of the strings use custom placeholders and don't follow c-format # esp. plain percent sign never is escaped explicitly - input = check_output(['sed', '-e', '/^#, c-format$/d'], stdin=xgettext.stdout) + input = check_output(['sed', '-e', '/^#, c-format$/d'], stdin=xgettext.stdout, encoding="UTF-8") xgettext.wait() + xgettext.stdout.close() po = polib.pofile(input) if len(po) != 0: - print >> output, "" + print("", file=output) for entry in po: keyid = entry.msgctxt + '|' + entry.msgid - print >> output, '#. ' + polib.genKeyId(keyid) + print('#. ' + polib.genKeyId(keyid), file=output) for i, occurrence in enumerate(entry.occurrences): entry.occurrences[i] = os.path.relpath(occurrence[0], os.environ['SRCDIR']), occurrence[1] - print >> output, entry + print(entry, file=output) diff -Nru libreoffice-7.1.2~rc2/solenv/bin/polib.py libreoffice-7.1.3~rc2/solenv/bin/polib.py --- libreoffice-7.1.2~rc2/solenv/bin/polib.py 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/solenv/bin/polib.py 2021-04-28 16:17:45.000000000 +0000 @@ -1858,7 +1858,7 @@ # }}} def genKeyId(inkey): - crc = binascii.crc32(bytes(inkey)) & 0xffffffff + crc = binascii.crc32(bytes(inkey, encoding="UTF-8")) & 0xffffffff # Use simple ASCII characters, exclude I, l, 1 and O, 0 to avoid confusing IDs symbols = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz23456789"; outkey = "" diff -Nru libreoffice-7.1.2~rc2/solenv/bin/uiex libreoffice-7.1.3~rc2/solenv/bin/uiex --- libreoffice-7.1.2~rc2/solenv/bin/uiex 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/solenv/bin/uiex 2021-04-28 16:17:45.000000000 +0000 @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 import polib import binascii @@ -22,13 +22,13 @@ ofile = a with open(ofile, "a") as output: - input = check_output(["xgettext", "--add-comments", "--no-wrap", ifile, "-o", "-"]) + input = check_output(["xgettext", "--add-comments", "--no-wrap", ifile, "-o", "-"], encoding="UTF-8") po = polib.pofile(input) if len(po) != 0: - print >> output, "" + print("", file=output) for entry in po: keyid = entry.msgctxt + '|' + entry.msgid - print >> output, '#. ' + polib.genKeyId(keyid) + print('#. ' + polib.genKeyId(keyid), file=output) for i, occurrence in enumerate(entry.occurrences): entry.occurrences[i] = os.path.relpath(occurrence[0], os.environ['SRCDIR']), occurrence[1] - print >> output, entry + print(entry, file=output) diff -Nru libreoffice-7.1.2~rc2/solenv/flatpak-manifest.in libreoffice-7.1.3~rc2/solenv/flatpak-manifest.in --- libreoffice-7.1.2~rc2/solenv/flatpak-manifest.in 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/solenv/flatpak-manifest.in 2021-04-28 16:17:45.000000000 +0000 @@ -357,10 +357,10 @@ "dest-filename": "external/tarballs/mdds-1.7.0.tar.bz2" }, { - "url": "https://dev-www.libreoffice.org/src/neon-0.31.1.tar.gz", - "sha256": "c9dfcee723050df37ce18ba449d7707b78e7ab8230f3a4c59d9112e17dc2718d", + "url": "https://dev-www.libreoffice.org/src/neon-0.31.2.tar.gz", + "sha256": "cf1ee3ac27a215814a9c80803fcee4f0ede8466ebead40267a9bd115e16a8678", "type": "file", - "dest-filename": "external/tarballs/neon-0.31.1.tar.gz" + "dest-filename": "external/tarballs/neon-0.31.2.tar.gz" }, { "url": "https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz", diff -Nru libreoffice-7.1.2~rc2/solenv/gbuild/extensions/pre_MergedLibsList.mk libreoffice-7.1.3~rc2/solenv/gbuild/extensions/pre_MergedLibsList.mk --- libreoffice-7.1.2~rc2/solenv/gbuild/extensions/pre_MergedLibsList.mk 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/solenv/gbuild/extensions/pre_MergedLibsList.mk 2021-04-28 16:17:45.000000000 +0000 @@ -92,10 +92,6 @@ ucptdoc1 \ unordf \ unoxml \ - $(if $(ENABLE_ONLINE_UPDATE), \ - updatecheckui \ - updchk \ - ) \ updatefeed \ utl \ uui \ diff -Nru libreoffice-7.1.2~rc2/solenv/README libreoffice-7.1.3~rc2/solenv/README --- libreoffice-7.1.2~rc2/solenv/README 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/solenv/README 2021-04-28 16:17:45.000000000 +0000 @@ -32,3 +32,10 @@ useful standard / re-usable component map files for components which shouldn't export anything more than a few registration symbols. + +flatpak-manifest.in + This file is used by flatpak/build.sh from the LO dev-tools + repository to generate the flatpak package. download.lst is + a Makefile snippet, so there seems to be no easy way to use + download.lst for the manifest generation (build.sh uses sed), + and its information must be kept in sync manually. diff -Nru libreoffice-7.1.2~rc2/svl/source/numbers/zformat.cxx libreoffice-7.1.3~rc2/svl/source/numbers/zformat.cxx --- libreoffice-7.1.2~rc2/svl/source/numbers/zformat.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svl/source/numbers/zformat.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -5309,6 +5309,8 @@ } break; case NF_SYMBOLTYPE_CALDEL : + if (j + 1 >= nCnt) + break; if ( rStrArray[j+1] == "gengou" ) { nCalendarID = 0x0030000; @@ -5325,9 +5327,10 @@ { nCalendarID = 0x0080000; } - // other calendars (see tdf#36038) not corresponding between LibO and XL - if ( nCalendarID > 0 ) - j = j+2; + // Other calendars (see tdf#36038) not corresponding between LibO and XL. + // However, skip any calendar modifier and don't write + // as format code (if not as literal string). + j += 2; break; case NF_SYMBOLTYPE_CURREXT : nPosHaveLCID = aStr.getLength(); diff -Nru libreoffice-7.1.2~rc2/svx/CppunitTest_svx_unit.mk libreoffice-7.1.3~rc2/svx/CppunitTest_svx_unit.mk --- libreoffice-7.1.2~rc2/svx/CppunitTest_svx_unit.mk 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/CppunitTest_svx_unit.mk 2021-04-28 16:17:45.000000000 +0000 @@ -39,6 +39,7 @@ editeng \ sal \ sfx \ + svl \ svxcore \ svx \ tl \ diff -Nru libreoffice-7.1.2~rc2/svx/inc/sdr/contact/viewcontactofsdrole2obj.hxx libreoffice-7.1.3~rc2/svx/inc/sdr/contact/viewcontactofsdrole2obj.hxx --- libreoffice-7.1.2~rc2/svx/inc/sdr/contact/viewcontactofsdrole2obj.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/inc/sdr/contact/viewcontactofsdrole2obj.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -31,9 +31,6 @@ class ViewContactOfSdrOle2Obj final : public ViewContactOfSdrRectObj { private: - // #i123539# allow local buffering of chart data (if chart) - drawinglayer::primitive2d::Primitive2DReference mxChartContent; - // Create an Object-Specific ViewObjectContact, set ViewContact and // ObjectContact. Always needs to return something. virtual ViewObjectContact& @@ -56,9 +53,6 @@ // from the VOC which knows that drawinglayer::primitive2d::Primitive2DContainer createPrimitive2DSequenceWithParameters() const; - // #i123539# get rid of buffered chart content (if there) on change - virtual void ActionChanged() override; - virtual basegfx::B2DRange getRange(const drawinglayer::geometry::ViewInformation2D& rViewInfo2D) const override; diff -Nru libreoffice-7.1.2~rc2/svx/qa/unit/customshapes.cxx libreoffice-7.1.3~rc2/svx/qa/unit/customshapes.cxx --- libreoffice-7.1.2~rc2/svx/qa/unit/customshapes.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/qa/unit/customshapes.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -18,9 +18,16 @@ #include #include #include +#include +#include +#include +#include #include +#include #include #include +#include +#include #include #include #include @@ -117,6 +124,36 @@ std::abs(rExpected.GetHeight() - rActual.GetHeight()) <= nTolerance); } +CPPUNIT_TEST_FIXTURE(CustomshapesTest, testTdf141021ExtrusionNorth) +{ + // tdf#141021 Setting extrusion direction in projection method 'perspective' to + // 'Extrusion North' had used a wrong origin for the ViewPoint and thus the + // side faces were wrong calculated. + + // Load document and get shape. It is a custom shape in 3D mode. + OUString aURL = m_directories.getURLFromSrc(sDataDirectory) + "tdf141021_ExtrusionNorth.odp"; + mxComponent = loadFromDesktop(aURL, "com.sun.star.comp.presentation.PresentationDocument"); + CPPUNIT_ASSERT_MESSAGE("Could not load document", mxComponent.is()); + uno::Reference xShape(getShape(0)); + SdrObjCustomShape& rSdrCustomShape( + static_cast(*GetSdrObjectFromXShape(xShape))); + + // Mark Object + SfxViewShell* pViewShell = SfxViewShell::Current(); + SdrView* pSdrView = pViewShell->GetDrawView(); + pSdrView->MarkObj(&rSdrCustomShape, pSdrView->GetSdrPageView()); + + // Set direction + SfxRequest aReq(pViewShell->GetViewFrame(), SID_EXTRUSION_DIRECTION); + SfxInt32Item aItem(SID_EXTRUSION_DIRECTION, 90); + aReq.AppendItem(aItem); + svx::ExtrusionBar::execute(pSdrView, aReq, SfxViewFrame::Current()->GetBindings()); + + // Verify height. Without the fix in place the height would 4001. + tools::Rectangle aBoundRect(rSdrCustomShape.GetCurrentBoundRect()); + CPPUNIT_ASSERT_EQUAL(tools::Long(5895), aBoundRect.GetHeight()); +} + CPPUNIT_TEST_FIXTURE(CustomshapesTest, testResizeRotatedShape) { // tdf#138945 Setting width or height for a rotated or sheared shape in the Position&Size dialog Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/svx/qa/unit/data/tdf141021_ExtrusionNorth.odp and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/svx/qa/unit/data/tdf141021_ExtrusionNorth.odp differ diff -Nru libreoffice-7.1.2~rc2/svx/source/dialog/fntctrl.cxx libreoffice-7.1.3~rc2/svx/source/dialog/fntctrl.cxx --- libreoffice-7.1.2~rc2/svx/source/dialog/fntctrl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/dialog/fntctrl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1008,6 +1008,16 @@ rCJKFont.SetTransparent( bTransparent ); rCTLFont.SetTransparent( bTransparent ); + if( !bPreviewBackgroundToCharacter ) + { + if( GetWhich( rSet, SID_ATTR_BRUSH, nWhich ) ) + { + const SvxBrushItem& rBrush = static_cast( rSet.Get( nWhich ) ); + if( GPOS_NONE == rBrush.GetGraphicPos() ) + pImpl->mxBackColor = rBrush.GetColor(); + } + } + // Font SetPrevFont( rSet, SID_ATTR_CHAR_FONT, rFont ); SetPrevFont( rSet, SID_ATTR_CHAR_CJK_FONT, rCJKFont ); diff -Nru libreoffice-7.1.2~rc2/svx/source/dialog/frmsel.cxx libreoffice-7.1.3~rc2/svx/source/dialog/frmsel.cxx --- libreoffice-7.1.2~rc2/svx/source/dialog/frmsel.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/dialog/frmsel.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -413,6 +413,9 @@ maHor.AddFocusPolygon( tools::Rectangle( mnLine1 - mnFocusOffs, mnLine2 - mnFocusOffs, mnLine3 + mnFocusOffs, mnLine2 + mnFocusOffs ) ); maBottom.AddFocusPolygon( tools::Rectangle( mnLine1 - mnFocusOffs, mnLine3 - mnFocusOffs, mnLine3 + mnFocusOffs, mnLine3 + mnFocusOffs ) ); + maTLBR.ClearFocusArea(); + maBLTR.ClearFocusArea(); + for( nCol = 0, nCols = maArray.GetColCount(); nCol < nCols; ++nCol ) { for( nRow = 0, nRows = maArray.GetRowCount(); nRow < nRows; ++nRow ) diff -Nru libreoffice-7.1.2~rc2/svx/source/form/fmview.cxx libreoffice-7.1.3~rc2/svx/source/form/fmview.cxx --- libreoffice-7.1.2~rc2/svx/source/form/fmview.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/form/fmview.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -41,11 +41,14 @@ #include #include #include +#include #include +#include #include #include #include #include +#include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -493,6 +496,31 @@ } + // tdf#139804 Allow selecting form controls with Alt- + if (rKeyCode.IsMod2() && rKeyCode.GetCode()) + { + FmFormPage* pCurPage = GetCurPage(); + for (size_t a = 0; a < pCurPage->GetObjCount(); ++a) + { + SdrObject* pObj = pCurPage->GetObj(a); + FmFormObj* pFormObject = FmFormObj::GetFormObject(pObj); + if (!pFormObject) + continue; + + Reference xControl = pFormObject->GetUnoControl(*this, *pWin); + if (!xControl.is()) + continue; + const vcl::I18nHelper& rI18nHelper = Application::GetSettings().GetUILocaleI18nHelper(); + VclPtr pWindow = VCLUnoHelper::GetWindow(xControl->getPeer()); + if (rI18nHelper.MatchMnemonic(pWindow->GetText(), rKEvt.GetCharCode())) + { + pWindow->GrabFocus(); + bDone = true; + break; + } + } + } + if ( !bDone ) bDone = E3dView::KeyInput(rKEvt,pWin); return bDone; diff -Nru libreoffice-7.1.2~rc2/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx libreoffice-7.1.3~rc2/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx --- libreoffice-7.1.2~rc2/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/sdr/contact/viewcontactofsdrole2obj.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -45,8 +45,7 @@ } ViewContactOfSdrOle2Obj::ViewContactOfSdrOle2Obj(SdrOle2Obj& rOle2Obj) -: ViewContactOfSdrRectObj(rOle2Obj), - mxChartContent() +: ViewContactOfSdrRectObj(rOle2Obj) { } @@ -90,45 +89,30 @@ if(GetOle2Obj().IsChart()) { - // #i123539# allow buffering and reuse of local chart data to not need to rebuild it - // on every ViewObjectContact::getPrimitive2DSequence call. TTTT: Not needed for - // aw080, there this mechanism already works differently - if(mxChartContent.is()) + // try to get chart primitives and chart range directly from xChartModel + basegfx::B2DRange aChartContentRange; + const drawinglayer::primitive2d::Primitive2DContainer aChartSequence( + ChartHelper::tryToGetChartContentAsPrimitive2DSequence( + GetOle2Obj().getXModel(), + aChartContentRange)); + const double fWidth(aChartContentRange.getWidth()); + const double fHeight(aChartContentRange.getHeight()); + + if(!aChartSequence.empty() + && basegfx::fTools::more(fWidth, 0.0) + && basegfx::fTools::more(fHeight, 0.0)) { - xContent = mxChartContent; - } - else - { - // try to get chart primitives and chart range directly from xChartModel - basegfx::B2DRange aChartContentRange; - const drawinglayer::primitive2d::Primitive2DContainer aChartSequence( - ChartHelper::tryToGetChartContentAsPrimitive2DSequence( - GetOle2Obj().getXModel(), - aChartContentRange)); - const double fWidth(aChartContentRange.getWidth()); - const double fHeight(aChartContentRange.getHeight()); - - if(!aChartSequence.empty() - && basegfx::fTools::more(fWidth, 0.0) - && basegfx::fTools::more(fHeight, 0.0)) - { - // create embedding transformation - basegfx::B2DHomMatrix aEmbed( - basegfx::utils::createTranslateB2DHomMatrix( - -aChartContentRange.getMinX(), - -aChartContentRange.getMinY())); - - aEmbed.scale(1.0 / fWidth, 1.0 / fHeight); - aEmbed = aObjectMatrix * aEmbed; - xContent = new drawinglayer::primitive2d::TransformPrimitive2D( - aEmbed, - aChartSequence); - } - - if(xContent.is()) - { - const_cast< ViewContactOfSdrOle2Obj* >(this)->mxChartContent = xContent; - } + // create embedding transformation + basegfx::B2DHomMatrix aEmbed( + basegfx::utils::createTranslateB2DHomMatrix( + -aChartContentRange.getMinX(), + -aChartContentRange.getMinY())); + + aEmbed.scale(1.0 / fWidth, 1.0 / fHeight); + aEmbed = aObjectMatrix * aEmbed; + xContent = new drawinglayer::primitive2d::TransformPrimitive2D( + aEmbed, + aChartSequence); } } @@ -185,18 +169,6 @@ return drawinglayer::primitive2d::getB2DRangeFromPrimitive2DReference(xReference, rViewInfo2D); } -void ViewContactOfSdrOle2Obj::ActionChanged() -{ - // call parent - ViewContactOfSdrRectObj::ActionChanged(); - - // #i123539# if we have buffered chart data, reset it - if(mxChartContent.is()) - { - mxChartContent.clear(); - } -} - drawinglayer::primitive2d::Primitive2DContainer ViewContactOfSdrOle2Obj::createViewIndependentPrimitive2DSequence() const { return createPrimitive2DSequenceWithParameters(); diff -Nru libreoffice-7.1.2~rc2/svx/source/svdraw/svdograf.cxx libreoffice-7.1.3~rc2/svx/source/svdraw/svdograf.cxx --- libreoffice-7.1.2~rc2/svx/source/svdraw/svdograf.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/svdraw/svdograf.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -498,6 +498,10 @@ ImpDeregisterLink(); aFileName.clear(); aFilterName.clear(); + + auto aGraphic = mpGraphicObject->GetGraphic(); + aGraphic.setOriginURL(""); + SetGraphic(aGraphic); } bool SdrGrafObj::IsLinkedGraphic() const diff -Nru libreoffice-7.1.2~rc2/svx/source/table/tablemodel.cxx libreoffice-7.1.3~rc2/svx/source/table/tablemodel.cxx --- libreoffice-7.1.2~rc2/svx/source/table/tablemodel.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/table/tablemodel.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -694,24 +694,6 @@ { rModel.BegUndo( SvxResId(STR_UNDO_COL_DELETE) ); rModel.AddUndo( rModel.GetSdrUndoFactory().CreateUndoGeoObject(*mpTableObj) ); - - TableModelRef xThis( this ); - ColumnVector aRemovedCols( nCount ); - sal_Int32 nOffset; - for( nOffset = 0; nOffset < nCount; ++nOffset ) - { - aRemovedCols[nOffset] = maColumns[nIndex+nOffset]; - } - - CellVector aRemovedCells( nCount * nRows ); - CellVector::iterator aCellIter( aRemovedCells.begin() ); - for( sal_Int32 nRow = 0; nRow < nRows; ++nRow ) - { - for( nOffset = 0; nOffset < nCount; ++nOffset ) - (*aCellIter++) = getCell( nIndex + nOffset, nRow ); - } - - rModel.AddUndo( std::make_unique( xThis, nIndex, aRemovedCols, aRemovedCells ) ); } // only rows before and inside the removed rows are considered @@ -758,6 +740,29 @@ } } + // We must not add RemoveColUndo before we make cell spans correct, otherwise we + // get invalid cell span after undo. + if( bUndo ) + { + TableModelRef xThis( this ); + ColumnVector aRemovedCols( nCount ); + sal_Int32 nOffset; + for( nOffset = 0; nOffset < nCount; ++nOffset ) + { + aRemovedCols[nOffset] = maColumns[nIndex+nOffset]; + } + + CellVector aRemovedCells( nCount * nRows ); + CellVector::iterator aCellIter( aRemovedCells.begin() ); + for( sal_Int32 nRow = 0; nRow < nRows; ++nRow ) + { + for( nOffset = 0; nOffset < nCount; ++nOffset ) + (*aCellIter++) = getCell( nIndex + nOffset, nRow ); + } + + rModel.AddUndo( std::make_unique( xThis, nIndex, aRemovedCols, aRemovedCells ) ); + } + // now remove the columns remove_range( maColumns, nIndex, nCount ); while( nRows-- ) @@ -862,14 +867,6 @@ { rModel.BegUndo( SvxResId(STR_UNDO_ROW_DELETE) ); rModel.AddUndo( rModel.GetSdrUndoFactory().CreateUndoGeoObject(*mpTableObj) ); - - TableModelRef xThis( this ); - - RowVector aRemovedRows( nCount ); - for( sal_Int32 nOffset = 0; nOffset < nCount; ++nOffset ) - aRemovedRows[nOffset] = maRows[nIndex+nOffset]; - - rModel.AddUndo( std::make_unique( xThis, nIndex, aRemovedRows ) ); } // only rows before and inside the removed rows are considered @@ -916,6 +913,18 @@ } } + if( bUndo ) + { + TableModelRef xThis( this ); + + RowVector aRemovedRows( nCount ); + for( sal_Int32 nOffset = 0; nOffset < nCount; ++nOffset ) + aRemovedRows[nOffset] = maRows[nIndex+nOffset]; + + // We must not RemoveRowUndo before we make cell spans correct, otherwise we + // get invalid cell span after undo. + rModel.AddUndo( std::make_unique( xThis, nIndex, aRemovedRows ) ); + } // now remove the rows remove_range( maRows, nIndex, nCount ); diff -Nru libreoffice-7.1.2~rc2/svx/source/toolbars/extrusionbar.cxx libreoffice-7.1.3~rc2/svx/source/toolbars/extrusionbar.cxx --- libreoffice-7.1.2~rc2/svx/source/toolbars/extrusionbar.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/toolbars/extrusionbar.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -197,7 +197,7 @@ aViewPoint.PositionX = 0; aViewPoint.PositionY = 3472; fOriginX = 0; - fOriginY = -0.50; + fOriginY = 0.50; break; case 45: aViewPoint.PositionX = -3472; diff -Nru libreoffice-7.1.2~rc2/svx/source/unodraw/unoshape.cxx libreoffice-7.1.3~rc2/svx/source/unodraw/unoshape.cxx --- libreoffice-7.1.2~rc2/svx/source/unodraw/unoshape.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/source/unodraw/unoshape.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1229,15 +1229,7 @@ if(HasSdrObject()) { - // #i123539# optimization for 3D chart object generation: do not use UNO - // API commands to get the range, this is too expensive since for 3D - // scenes it may recalculate the whole scene since in AOO this depends - // on the contained geometry (layouted to show all content) - const bool b3DConstruction(dynamic_cast< E3dObject* >(GetSdrObject()) && GetSdrObject()->getSdrModelFromSdrObject().isLocked()); - tools::Rectangle aRect( - b3DConstruction ? - tools::Rectangle(maPosition.X, maPosition.Y, maSize.Width, maSize.Height) : - svx_getLogicRectHack(GetSdrObject()) ); + tools::Rectangle aRect( svx_getLogicRectHack(GetSdrObject()) ); Size aLocalSize( rSize.Width, rSize.Height ); ForceMetricToItemPoolMetric(aLocalSize); diff -Nru libreoffice-7.1.2~rc2/svx/uiconfig/ui/navigationbar.ui libreoffice-7.1.3~rc2/svx/uiconfig/ui/navigationbar.ui --- libreoffice-7.1.2~rc2/svx/uiconfig/ui/navigationbar.ui 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/svx/uiconfig/ui/navigationbar.ui 2021-04-28 16:17:45.000000000 +0000 @@ -1,6 +1,6 @@ - + True diff -Nru libreoffice-7.1.2~rc2/sw/inc/crsrsh.hxx libreoffice-7.1.3~rc2/sw/inc/crsrsh.hxx --- libreoffice-7.1.2~rc2/sw/inc/crsrsh.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/inc/crsrsh.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -341,7 +341,7 @@ // start parenthesing, hide SV-Cursor and selected areas void StartAction(); // end parenthesing, show SV-Cursor and selected areas - void EndAction( const bool bIdleEnd = false, const bool DoSetPosX = false ); + void EndAction( const bool bIdleEnd = false ); // basic cursor travelling tools::Long GetUpDownX() const { return m_nUpDownX; } diff -Nru libreoffice-7.1.2~rc2/sw/inc/dcontact.hxx libreoffice-7.1.3~rc2/sw/inc/dcontact.hxx --- libreoffice-7.1.2~rc2/sw/inc/dcontact.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/inc/dcontact.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -179,13 +179,13 @@ SwFlyDrawObjPtr mpMasterObj; void SwClientNotify(const SwModify&, const SfxHint& rHint) override; - sal_uInt32 GetOrdNumForNewRef(const SwFlyFrame* pFly); + sal_uInt32 GetOrdNumForNewRef(const SwFlyFrame* pFly, SwFrame const& rAnchorFrame); public: /// Creates DrawObject and registers it with the Model. SwFlyDrawContact(SwFlyFrameFormat* pToRegisterIn, SdrModel& rTargetModel); - static SwVirtFlyDrawObj* CreateNewRef(SwFlyFrame* pFly, SwFlyFrameFormat* pFormat); + static SwVirtFlyDrawObj* CreateNewRef(SwFlyFrame* pFly, SwFlyFrameFormat* pFormat, SwFrame const& rAnchorFrame); virtual ~SwFlyDrawContact() override; virtual const SwAnchoredObject* GetAnchoredObj( const SdrObject* _pSdrObj ) const override; @@ -248,7 +248,7 @@ void RemoveFromWriterLayout(); /// connection to drawing layer - void AddToDrawingPage(); + void AddToDrawingPage(SwFrame const& rAnchorFrame); void RemoveFromDrawingPage(); /** is 'virtual' drawing object connected to writer layout and @@ -398,7 +398,7 @@ /// Moves all SW-connections to new Master) void ChangeMasterObject( SdrObject *pNewMaster ); - SwDrawVirtObj* AddVirtObj(); + SwDrawVirtObj* AddVirtObj(SwFrame const& rAnchorFrame); void NotifyBackgrdOfAllVirtObjs( const tools::Rectangle* pOldBoundRect ); Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/core/draw/data/textbox-undo-ordnum.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/core/draw/data/textbox-undo-ordnum.docx differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/core/draw/draw.cxx libreoffice-7.1.3~rc2/sw/qa/core/draw/draw.cxx --- libreoffice-7.1.2~rc2/sw/qa/core/draw/draw.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/core/draw/draw.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -10,11 +10,14 @@ #include #include +#include #include #include #include #include +#include +#include char const DATA_DIRECTORY[] = "/sw/qa/core/draw/data/"; @@ -46,6 +49,56 @@ CPPUNIT_ASSERT_EQUAL(static_cast(0), nActual); } +CPPUNIT_TEST_FIXTURE(SwCoreDrawTest, testTextboxUndoOrdNum) +{ + // Given a document with 5 frame formats: + // - picture + // - draw format + fly format and a picture in it + // - picture + SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "textbox-undo-ordnum.docx"); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + const SwFrameFormats& rFormats = *pDoc->GetSpzFrameFormats(); + // Test the state before del + undo. + for (const auto& pFormat : rFormats) + { + const SwFrameFormat* pFlyFormat + = SwTextBoxHelper::getOtherTextBoxFormat(pFormat, RES_DRAWFRMFMT); + if (!pFlyFormat) + { + continue; + } + + sal_Int32 nDrawOrdNum = pFormat->FindRealSdrObject()->GetOrdNum(); + sal_Int32 nFlyOrdNum = pFlyFormat->FindRealSdrObject()->GetOrdNum(); + CPPUNIT_ASSERT_EQUAL(nDrawOrdNum + 1, nFlyOrdNum); + } + + // When selecting the first page, deleting the selection and undoing: + pWrtShell->Down(true, 3); + pWrtShell->DelLeft(); + pWrtShell->Undo(); + + // Then the z-order of the fly format should be still the z-order of the draw format + 1, when + // the fly and draw formats form a textbox pair. + for (const auto& pFormat : rFormats) + { + const SwFrameFormat* pFlyFormat + = SwTextBoxHelper::getOtherTextBoxFormat(pFormat, RES_DRAWFRMFMT); + if (!pFlyFormat) + { + continue; + } + + sal_Int32 nDrawOrdNum = pFormat->FindRealSdrObject()->GetOrdNum(); + sal_Int32 nFlyOrdNum = pFlyFormat->FindRealSdrObject()->GetOrdNum(); + // Without the accompanying fix in place, this test would have failed with: + // - Expected: 4 + // - Actual : 2 + // i.e. the fly format was behind the draw format, not visible. + CPPUNIT_ASSERT_EQUAL(nDrawOrdNum + 1, nFlyOrdNum); + } +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/core/layout/data/tdf122894-4.doc and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/core/layout/data/tdf122894-4.doc differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/core/layout/layout.cxx libreoffice-7.1.3~rc2/sw/qa/core/layout/layout.cxx --- libreoffice-7.1.2~rc2/sw/qa/core/layout/layout.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/core/layout/layout.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -260,6 +260,11 @@ assertXPath(pXmlDoc, "//page[2]/body/txt/anchored/fly", 1); } +CPPUNIT_TEST_FIXTURE(SwCoreLayoutTest, testCrashRemoveFromLayout) +{ + load(DATA_DIRECTORY, "tdf122894-4.doc"); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/core/objectpositioning/data/inside-outside-vert-align.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/core/objectpositioning/data/inside-outside-vert-align.docx differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/core/objectpositioning/objectpositioning.cxx libreoffice-7.1.3~rc2/sw/qa/core/objectpositioning/objectpositioning.cxx --- libreoffice-7.1.2~rc2/sw/qa/core/objectpositioning/objectpositioning.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/core/objectpositioning/objectpositioning.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -227,9 +227,9 @@ = getXPath(pXmlDoc, "//SwAnchoredDrawObject[2]/bounds", "top").toInt32(); //15694 // Verify that the distance between the bottom of page and bottom of first shape is around 0cm. (align=outside) - CPPUNIT_ASSERT_EQUAL(static_cast(23), nPageBottom - nFirstShapeOutside); + CPPUNIT_ASSERT_EQUAL(static_cast(3), nPageBottom - nFirstShapeOutside); // Verify that the distance between the bottom of body and top of second shape is around 0cm. (align=inside) - CPPUNIT_ASSERT_EQUAL(static_cast(10), nBodyBottom - nSecondShapeInside); + CPPUNIT_ASSERT_EQUAL(static_cast(0), nBodyBottom - nSecondShapeInside); } CPPUNIT_TEST_FIXTURE(SwCoreObjectpositioningTest, testVMLVertAlignBottomMargin) diff -Nru libreoffice-7.1.2~rc2/sw/qa/core/text/data/tabovermargin-section.fodt libreoffice-7.1.3~rc2/sw/qa/core/text/data/tabovermargin-section.fodt --- libreoffice-7.1.2~rc2/sw/qa/core/text/data/tabovermargin-section.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/core/text/data/tabovermargin-section.fodt 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1,50 @@ + + + + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + before + + hello1 + + after + + + diff -Nru libreoffice-7.1.2~rc2/sw/qa/core/text/text.cxx libreoffice-7.1.3~rc2/sw/qa/core/text/text.cxx --- libreoffice-7.1.2~rc2/sw/qa/core/text/text.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/core/text/text.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -69,6 +69,20 @@ assertXPath(pXmlDoc, "//floattransparent"); } +CPPUNIT_TEST_FIXTURE(SwCoreTextTest, testTabOverMarginSection) +{ + createSwDoc(DATA_DIRECTORY, "tabovermargin-section.fodt"); + xmlDocUniquePtr pXmlDoc = parseLayoutDump(); + sal_Int32 nWidth + = getXPath(pXmlDoc, "//Text[@nType='PortionType::TabRight']", "nWidth").toInt32(); + // Without the accompanying fix in place, this test would have failed with: + // - Expected less than: 5000 + // - Actual : 9372 + // i.e. the tab portion width was not the expected 4386, but much larger, so the number after + // the tab portion was not visible. + CPPUNIT_ASSERT_LESS(static_cast(5000), nWidth); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/core/undo/data/table-copy-redline.odt and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/core/undo/data/table-copy-redline.odt differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/core/undo/undo.cxx libreoffice-7.1.3~rc2/sw/qa/core/undo/undo.cxx --- libreoffice-7.1.2~rc2/sw/qa/core/undo/undo.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/core/undo/undo.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -84,6 +84,25 @@ CPPUNIT_ASSERT_EQUAL(pIndex1->GetIndex(), pIndex2->GetIndex()); } +CPPUNIT_TEST_FIXTURE(SwCoreUndoTest, testTableCopyRedline) +{ + // Given a document with two table cells and redlining enabled: + load(DATA_DIRECTORY, "table-copy-redline.odt"); + SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); + SwDocShell* pDocShell = pTextDoc->GetDocShell(); + SwWrtShell* pWrtShell = pDocShell->GetWrtShell(); + + // When doing select-all, copy, paste and undo: + pWrtShell->SelAll(); + rtl::Reference pTransfer = new SwTransferable(*pWrtShell); + pTransfer->Copy(); + TransferableDataHelper aHelper(pTransfer.get()); + SwTransferable::Paste(*pWrtShell, aHelper); + + // Without the accompanying fix in place, this test would have crashed. + pWrtShell->Undo(); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/layout/data/tdf116486.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/layout/data/tdf116486.docx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/layout/data/tdf141079.odt and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/layout/data/tdf141079.odt differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/layout/layout2.cxx libreoffice-7.1.3~rc2/sw/qa/extras/layout/layout2.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/layout/layout2.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/layout/layout2.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1956,6 +1956,39 @@ CPPUNIT_ASSERT_EQUAL(static_cast(5), aPosition.nContent.GetIndex()); } +CPPUNIT_TEST_FIXTURE(SwLayoutWriter2, testScriptField) +{ + // Test clicking script field inside table ( tdf#141079 ) + SwDoc* pDoc = createDoc("tdf141079.odt"); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + + // Look up layout position which is the first cell in the table + SwRootFrame* pRoot = pWrtShell->GetLayout(); + CPPUNIT_ASSERT(pRoot->GetLower()->IsPageFrame()); + SwPageFrame* pPage = static_cast(pRoot->GetLower()); + CPPUNIT_ASSERT(pPage->GetLower()->IsBodyFrame()); + SwBodyFrame* pBody = static_cast(pPage->GetLower()); + CPPUNIT_ASSERT(pBody->GetLower()->IsTextFrame()); + SwTextFrame* pTextFrame = static_cast(pBody->GetLower()); + CPPUNIT_ASSERT(pTextFrame->GetNext()->IsTabFrame()); + SwFrame* pTable = pTextFrame->GetNext(); + SwFrame* pRow1 = pTable->GetLower(); + CPPUNIT_ASSERT(pRow1->GetLower()->IsCellFrame()); + SwFrame* pCell1 = pRow1->GetLower(); + CPPUNIT_ASSERT(pCell1->GetLower()->IsTextFrame()); + SwTextFrame* pCellTextFrame = static_cast(pCell1->GetLower()); + const SwRect& rCellRect = pCell1->getFrameArea(); + Point aPoint = rCellRect.Center(); + aPoint.setX(aPoint.getX() - rCellRect.Width() / 2); + + // Ask for the doc model pos of this layout point. + SwPosition aPosition(*pCellTextFrame->GetTextNodeForFirstText()); + pCellTextFrame->GetModelPositionForViewPoint(&aPosition, aPoint); + + // Position was 1 without the fix from tdf#141079 + CPPUNIT_ASSERT_EQUAL(static_cast(0), aPosition.nContent.GetIndex()); +} + CPPUNIT_TEST_FIXTURE(SwLayoutWriter2, testCommentCursorPosition) { // Load a document that has "aaa" in it, followed by three comments. diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/mailmerge/mailmerge.cxx libreoffice-7.1.3~rc2/sw/qa/extras/mailmerge/mailmerge.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/mailmerge/mailmerge.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/mailmerge/mailmerge.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -397,7 +397,7 @@ executeMailMerge(); // The document was created by LO version which didn't write out the default value for line color // (see XMLGraphicsDefaultStyle::SetDefaults()). - uno::Reference xPropertySet(getShape(1), uno::UNO_QUERY); + uno::Reference xPropertySet(getShape(5), uno::UNO_QUERY); // Lines do not have a line color. CPPUNIT_ASSERT( !xPropertySet->getPropertySetInfo()->hasPropertyByName( "LineColor" )); SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/effect-extent-line-width.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/effect-extent-line-width.docx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/effectextent-margin.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/effectextent-margin.docx differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/fly_fieldmark.fodt libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/fly_fieldmark.fodt --- libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/fly_fieldmark.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/fly_fieldmark.fodt 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + foobar + + + Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/tdf125936_numberingSuperscript.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/tdf125936_numberingSuperscript.docx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/tdf133045_TestShapeAlignmentRelativeFromTopMargin.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/tdf133045_TestShapeAlignmentRelativeFromTopMargin.docx differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/data/textframe-gradient.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/data/textframe-gradient.docx differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport16.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -50,6 +50,12 @@ CPPUNIT_ASSERT_EQUAL(1, getPages()); } +DECLARE_OOXMLEXPORT_TEST(testTdf125936_numberingSuperscript, "tdf125936_numberingSuperscript.docx") +{ + // Without the fix, the first character run was superscripted. + CPPUNIT_ASSERT_EQUAL( sal_Int16(0), getProperty(getRun(getParagraph(1), 1, "A-570-108"), "CharEscapement") ); +} + DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf134619_numberingProps, "tdf134619_numberingProps.doc") { // Get the third paragraph's numbering style's 1st level's bullet size @@ -74,6 +80,27 @@ assertXPath(pXmlDoc, "/w:document/w:body/w:sectPr/w:pgMar", "footer", "709"); } +CPPUNIT_TEST_FIXTURE(Test, testEffectExtentLineWidth) +{ + auto verify = [this]() { + CPPUNIT_ASSERT_EQUAL(static_cast(508), + getProperty(getShape(1), "TopMargin")); + }; + + // Given a document with a shape that has a non-zero line width and effect extent: + // When loading the document: + load(mpTestDocumentPath, "effect-extent-line-width.docx"); + // Then make sure that the line width is not taken twice (once as part of the margin, and then + // also as the line width): + // Without the accompanying fix in place, this test would have failed with: + // - Expected: 508 + // - Actual : 561 + // i.e. the upper spacing was too large, the last line of the text moved below the shape. + verify(); + reload(mpFilter, "effect-extent-line-width.docx"); + verify(); +} + DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testTdf140572_docDefault_superscript, "tdf140572_docDefault_superscript.docx") { // A round-trip was crashing. diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport6.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1008,9 +1008,9 @@ return; xmlDocUniquePtr pXmlDoc = parseLayoutDump(); - assertXPath(pXmlDoc, "//SwAnchoredDrawObject[1]/bounds", "top", "1487"); // center - assertXPath(pXmlDoc, "//SwAnchoredDrawObject[2]/bounds", "top", "2668"); // bottom - assertXPath(pXmlDoc, "//SwAnchoredDrawObject[3]/bounds", "top", "298"); // top + assertXPath(pXmlDoc, "//SwAnchoredDrawObject[1]/bounds", "top", "1502"); // center + assertXPath(pXmlDoc, "//SwAnchoredDrawObject[2]/bounds", "top", "2683"); // bottom + assertXPath(pXmlDoc, "//SwAnchoredDrawObject[3]/bounds", "top", "313"); // top } CPPUNIT_PLUGIN_IMPLEMENT(); diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlexport.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -760,10 +760,10 @@ assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[2]/w:numFmt", "val", "decimal"); assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[3]/w:numFmt", "val", "decimal"); assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[4]/w:numFmt", "val", "decimal"); - assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[5]/w:numFmt", "val", "decimal"); - assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[6]/w:numFmt", "val", "decimal"); - assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[7]/w:numFmt", "val", "decimal"); - assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[8]/w:numFmt", "val", "decimal"); + assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[5]/w:numFmt", "val", "russianUpper"); + assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[6]/w:numFmt", "val", "russianLower"); + assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[7]/w:numFmt", "val", "russianUpper"); + assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[2]/w:lvl[8]/w:numFmt", "val", "russianLower"); assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[3]/w:lvl[1]/w:numFmt", "val", "decimal"); assertXPath(pXmlDoc, "/w:numbering/w:abstractNum[3]/w:lvl[2]/w:numFmt", "val", "decimal"); diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -484,6 +484,18 @@ assertXPath(pXmlDoc, "/w:document/w:body/w:p/w:r[5]/w:fldChar", "fldCharType", "end"); } +DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testFlyFieldmark, "fly_fieldmark.fodt") +{ + // the problem was that the flys were written after the field start + xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); + // run 1 contains 2 shapes, one was at-page, one was at-char + assertXPath(pXmlDoc, "/w:document/w:body/w:p[1]/w:r[1]/mc:AlternateContent", 2); + // run 2 contains the field start + assertXPath(pXmlDoc, "/w:document/w:body/w:p[1]/w:r[2]/w:fldChar", "fldCharType", "begin"); + // run 3 contains the field instruction text + assertXPathContent(pXmlDoc, "/w:document/w:body/w:p[1]/w:r[3]/w:instrText", " FORMTEXT "); +} + DECLARE_OOXMLEXPORT_EXPORTONLY_TEST(testFdo81945, "fdo81945.docx") { xmlDocUniquePtr pXmlDoc = parseExport("word/document.xml"); Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlimport/data/tdf122717.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlimport/data/tdf122717.docx differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ooxmlimport/ooxmlimport.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1413,6 +1413,19 @@ CPPUNIT_ASSERT(aActualSize.Height > 0); } +DECLARE_OOXMLIMPORT_TEST(testTdf122717, "tdf122717.docx") +{ + uno::Reference xShape = getShape(1); + CPPUNIT_ASSERT(xShape.is()); + awt::Size aActualSize(xShape->getSize()); + // Without the fix in place, this test would have failed with + // - Expected: 2 + // - Actual : 8160 + CPPUNIT_ASSERT_EQUAL(sal_Int32(2), aActualSize.Width); + CPPUNIT_ASSERT_EQUAL(sal_Int32(8160), aActualSize.Height); + +} + DECLARE_OOXMLIMPORT_TEST(testTdf98882, "tdf98882.docx") { sal_Int32 nFlyHeight = parseDump("//fly/infos/bounds", "height").toInt32(); Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/uiwriter/data3/tdf140828.docx and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/uiwriter/data3/tdf140828.docx differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx libreoffice-7.1.3~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/uiwriter/uiwriter3.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -854,6 +855,37 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(6), xTextTable->getColumns()->getCount()); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf140828) +{ + load(DATA_DIRECTORY, "tdf140828.docx"); + SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); + CPPUNIT_ASSERT(pTextDoc); + + CPPUNIT_ASSERT_EQUAL(1, getShapes()); + uno::Reference xShp = getShape(1); + CPPUNIT_ASSERT(xShp); + + uno::Reference ShpProps(xShp, uno::UNO_QUERY_THROW); + dispatchCommand(mxComponent, ".uno:JumpToNextFrame", {}); + Scheduler::ProcessEventsToIdle(); + + dispatchCommand(mxComponent, ".uno:SetAnchorAtChar", {}); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT(ShpProps->getPropertyValue("AnchorType").get() + != text::TextContentAnchorType::TextContentAnchorType_AS_CHARACTER); + + uno::Reference xTxBx(SwTextBoxHelper::getUnoTextFrame(xShp)); + CPPUNIT_ASSERT(xTxBx); + + uno::Reference TxBxProps(xTxBx, uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(OUString("top left image"), xTxBx->getText()->getString()); + + CPPUNIT_ASSERT_MESSAGE("Bad Relative Orientation and Position!", + TxBxProps->getPropertyValue("HoriOrientRelation").get() + != text::RelOrientation::CHAR); +} + CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf132725) { load(DATA_DIRECTORY, "tdf132725.odt"); @@ -2067,6 +2099,8 @@ CPPUNIT_TEST_FIXTURE(SwUiWriterTest3, testTdf133477) { + if (getDefaultDeviceBitCount() < 24) + return; load(DATA_DIRECTORY, "tdf133477.fodt"); SwXTextDocument* pTextDoc = dynamic_cast(mxComponent.get()); CPPUNIT_ASSERT(pTextDoc); diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/uiwriter/uiwriter.cxx libreoffice-7.1.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/uiwriter/uiwriter.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -213,6 +213,9 @@ void testCreatePortions(); void testBookmarkUndo(); void testFdo85876(); + void testCaretPositionMovingUp(); + void testTdf93441(); + void testTdf81226(); void testTdf79717(); void testTdf137532(); void testFdo87448(); @@ -445,6 +448,9 @@ CPPUNIT_TEST(testCreatePortions); CPPUNIT_TEST(testBookmarkUndo); CPPUNIT_TEST(testFdo85876); + CPPUNIT_TEST(testCaretPositionMovingUp); + CPPUNIT_TEST(testTdf93441); + CPPUNIT_TEST(testTdf81226); CPPUNIT_TEST(testTdf79717); CPPUNIT_TEST(testTdf137532); CPPUNIT_TEST(testFdo87448); @@ -2020,6 +2026,49 @@ } } +void SwUiWriterTest::testCaretPositionMovingUp() +{ + SwDoc* const pDoc = createDoc(); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + pWrtShell->Insert("after"); + pWrtShell->InsertLineBreak(); + pWrtShell->Up(false); + pWrtShell->Insert("before"); + + CPPUNIT_ASSERT_EQUAL(OUString(u"beforeAfter" + OUStringChar(CH_TXTATR_NEWLINE)), getParagraph(1)->getString()); +} + +void SwUiWriterTest::testTdf93441() +{ + SwDoc* const pDoc = createDoc(); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + pWrtShell->Insert("Hello"); + pWrtShell->InsertLineBreak(); + pWrtShell->Insert("Hello World"); + pWrtShell->Up(false); + pWrtShell->Insert(" World"); + + // Without the fix in place, this test would have failed with + // - Expected: Hello World\nHello World + // - Actual : WorldHello\nHello World + CPPUNIT_ASSERT_EQUAL(OUString(u"Hello World" + OUStringChar(CH_TXTATR_NEWLINE) + u"Hello World"), getParagraph(1)->getString()); +} + +void SwUiWriterTest::testTdf81226() +{ + SwDoc* const pDoc = createDoc(); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + pWrtShell->Insert("before"); + pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 4, /*bBasicCall=*/false); + pWrtShell->Down(false); + pWrtShell->Insert("after"); + + // Without the fix in place, this test would have failed with + // - Expected: beforeafter + // - Actual : beafterfore + CPPUNIT_ASSERT_EQUAL(OUString("beforeafter"), getParagraph(1)->getString()); +} + void SwUiWriterTest::testTdf79717() { SwDoc* const pDoc = createDoc(); Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/sw/qa/extras/ww8export/data/tdf139495_tinyHeader.doc and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/sw/qa/extras/ww8export/data/tdf139495_tinyHeader.doc differ diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ww8export/ww8export3.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ww8export/ww8export3.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ww8export/ww8export3.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ww8export/ww8export3.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -202,6 +202,12 @@ CPPUNIT_ASSERT(headerIsOn); } +DECLARE_WW8EXPORT_TEST(testTdf139495_tinyHeader, "tdf139495_tinyHeader.doc") +{ + // In Word 2003, this is one page, but definitely not six pages. + CPPUNIT_ASSERT(getPages() < 3); +} + DECLARE_WW8EXPORT_TEST(testFdo53985, "fdo53985.doc") { uno::Reference xTablesSupplier(mxComponent, uno::UNO_QUERY); diff -Nru libreoffice-7.1.2~rc2/sw/qa/extras/ww8import/ww8import.cxx libreoffice-7.1.3~rc2/sw/qa/extras/ww8import/ww8import.cxx --- libreoffice-7.1.2~rc2/sw/qa/extras/ww8import/ww8import.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/extras/ww8import/ww8import.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -246,6 +246,10 @@ CPPUNIT_ASSERT(!pBox->GetLine(eLine)); } } + + //tdf#139495: without the fix, a negative number was converted into a uInt16, overflowing to 115501 + auto nDist = getProperty(getStyles("PageStyles")->getByName("Standard"), "HeaderBodyDistance"); + CPPUNIT_ASSERT_EQUAL(sal_uInt32(0), nDist); } DECLARE_WW8IMPORT_TEST(testTdf110987, "tdf110987") diff -Nru libreoffice-7.1.2~rc2/sw/qa/uitest/writer_dialogs/openDialogs.py libreoffice-7.1.3~rc2/sw/qa/uitest/writer_dialogs/openDialogs.py --- libreoffice-7.1.2~rc2/sw/qa/uitest/writer_dialogs/openDialogs.py 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/uitest/writer_dialogs/openDialogs.py 2021-04-28 16:17:45.000000000 +0000 @@ -37,7 +37,8 @@ # {"command": ".uno:InsertBreak", "closeButton": "cancel"}, # tested in uitest/writer_tests/insertBreakDialog.py {"command": ".uno:InsertObject", "closeButton": "cancel"}, - {"command": ".uno:InsertSection", "closeButton": "cancel"}, + # {"command": ".uno:InsertSection", "closeButton": "cancel"}, + # tested in sw/qa/uitest/writer_tests7/tdf140863.py {"command": ".uno:InsertFrame", "closeButton": "cancel"}, {"command": ".uno:InsertObjectFloatingFrame", "closeButton": "cancel"}, {"command": ".uno:FontworkGalleryFloater", "closeButton": "cancel"}, diff -Nru libreoffice-7.1.2~rc2/sw/qa/uitest/writer_tests7/tdf140863.py libreoffice-7.1.3~rc2/sw/qa/uitest/writer_tests7/tdf140863.py --- libreoffice-7.1.2~rc2/sw/qa/uitest/writer_tests7/tdf140863.py 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/qa/uitest/writer_tests7/tdf140863.py 2021-04-28 16:17:45.000000000 +0000 @@ -0,0 +1,75 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# 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/. +# +from uitest.framework import UITestCase +from libreoffice.uno.propertyvalue import mkPropertyValues +from uitest.uihelper.common import get_state_as_dict + +class tdf140863(UITestCase): + + def test_tdf140863(self): + + self.ui_test.create_doc_in_start_center("writer") + + # Insert one section + self.ui_test.execute_dialog_through_command(".uno:InsertSection") + + xDialog = self.xUITest.getTopFocusWindow() + + xOkBtn = xDialog.getChild("ok") + self.ui_test.close_dialog_through_button(xOkBtn) + + xWriterDoc = self.xUITest.getTopFocusWindow() + xWriterEdit = xWriterDoc.getChild("writer_edit") + + # Insert a page break in the section + xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "UP"})) + self.xUITest.executeCommand(".uno:InsertPagebreak") + self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "2") + + document = self.ui_test.get_component() + self.assertEqual(1, len(document.TextSections)) + self.assertTrue(document.TextSections.Section1.IsVisible) + + + self.ui_test.execute_dialog_through_command(".uno:EditRegion") + + xDialog = self.xUITest.getTopFocusWindow() + + xHide = xDialog.getChild('hide') + self.assertEqual('false', get_state_as_dict(xHide)['Selected']) + + xHide.executeAction('CLICK', tuple()) + + xOkBtn = xDialog.getChild("ok") + self.ui_test.close_dialog_through_button(xOkBtn) + + self.assertEqual(1, len(document.TextSections)) + self.assertFalse(document.TextSections.Section1.IsVisible) + self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "1") + + self.ui_test.execute_dialog_through_command(".uno:EditRegion") + + xDialog = self.xUITest.getTopFocusWindow() + + xHide = xDialog.getChild('hide') + self.assertEqual('true', get_state_as_dict(xHide)['Selected']) + + xHide.executeAction('CLICK', tuple()) + + xOkBtn = xDialog.getChild("ok") + self.ui_test.close_dialog_through_button(xOkBtn) + + self.assertEqual(1, len(document.TextSections)) + self.assertTrue(document.TextSections.Section1.IsVisible) + + # Without the fix in place, this test would have failed with + # AssertionError: '1' != '2' + self.assertEqual(get_state_as_dict(xWriterEdit)["CurrentPage"], "2") + + self.ui_test.close_doc() + +# vim: set shiftwidth=4 softtabstop=4 expandtab: diff -Nru libreoffice-7.1.2~rc2/sw/source/core/crsr/crsrsh.cxx libreoffice-7.1.3~rc2/sw/source/core/crsr/crsrsh.cxx --- libreoffice-7.1.2~rc2/sw/source/core/crsr/crsrsh.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/crsr/crsrsh.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -236,16 +236,11 @@ SwViewShell::StartAction(); // to the SwViewShell } -void SwCursorShell::EndAction( const bool bIdleEnd, const bool DoSetPosX ) +void SwCursorShell::EndAction( const bool bIdleEnd ) { comphelper::FlagRestorationGuard g(mbSelectAll, StartsWithTable() && ExtendedSelectedAll()); bool bVis = m_bSVCursorVis; - sal_uInt16 eFlags = SwCursorShell::CHKRANGE; - if ( !DoSetPosX ) - eFlags |= SwCursorShell::UPDOWN; - - // Idle-formatting? if( bIdleEnd && Imp()->GetRegion() ) { @@ -273,6 +268,7 @@ return; } + sal_uInt16 eFlags = SwCursorShell::CHKRANGE; if ( !bIdleEnd ) eFlags |= SwCursorShell::SCROLLWIN; @@ -312,7 +308,7 @@ #ifdef DBG_UTIL OSL_ENSURE( m_nCursorMove, "EndCursorMove() without SttCursorMove()." ); #endif - EndAction( bIdleEnd, true ); + EndAction( bIdleEnd ); --m_nCursorMove; #ifdef DBG_UTIL if( !m_nCursorMove ) diff -Nru libreoffice-7.1.2~rc2/sw/source/core/doc/textboxhelper.cxx libreoffice-7.1.3~rc2/sw/source/core/doc/textboxhelper.cxx --- libreoffice-7.1.2~rc2/sw/source/core/doc/textboxhelper.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/doc/textboxhelper.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -165,8 +165,6 @@ if (xShapePropertySet->getPropertyValue(UNO_NAME_TEXT_WRITINGMODE) >>= eMode) syncProperty(pShape, RES_FRAMEDIR, 0, uno::makeAny(sal_Int16(eMode))); - // TODO: Text dialog attr setting to frame - const SwFormatAnchor& rAnch = pShape->GetAnchor(); if (!((rAnch.GetAnchorId() == RndStdIds::FLY_AT_PAGE && rAnch.GetPageNum() != 0) || ((rAnch.GetAnchorId() == RndStdIds::FLY_AT_PARA @@ -723,6 +721,9 @@ } else // Otherwise copy the anchor type of the shape { + // tdf#140828: Do not keep CHAR rel-orientation: + xPropertySet->setPropertyValue(UNO_NAME_HORI_ORIENT_RELATION, + uno::Any(text::RelOrientation::FRAME)); xPropertySet->setPropertyValue(UNO_NAME_ANCHOR_TYPE, aValue); } // After anchoring the position must be set as well: diff -Nru libreoffice-7.1.2~rc2/sw/source/core/docnode/section.cxx libreoffice-7.1.3~rc2/sw/source/core/docnode/section.cxx --- libreoffice-7.1.2~rc2/sw/source/core/docnode/section.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/docnode/section.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -66,13 +66,6 @@ using namespace ::com::sun::star; namespace { - - void lcl_SwClientNotify(sw::BroadcastingModify& rModify, const SfxPoolItem* pOldNew) - { - const sw::LegacyModifyHint aHint(pOldNew, pOldNew); - rModify.SwClientNotifyCall(rModify, aHint); - } - class SwIntrnlSectRefLink : public SwBaseLink { SwSectionFormat& m_rSectFormat; @@ -318,8 +311,8 @@ // This should be shown by the bHiddenFlag. // Tell all Children that they are hidden - SwMsgPoolItem aMsgItem( RES_SECTION_HIDDEN ); - lcl_SwClientNotify(*pFormat, &aMsgItem); + const SwMsgPoolItem aMsgItem( RES_SECTION_HIDDEN ); + pFormat->CallSwClientNotify(sw::LegacyModifyHint(&aMsgItem, &aMsgItem)); // Delete all Frames pFormat->DelFrames(); @@ -333,8 +326,8 @@ if( !pParentSect || !pParentSect->IsHiddenFlag() ) { // Tell all Children that the Parent is not hidden anymore - SwMsgPoolItem aMsgItem( RES_SECTION_NOT_HIDDEN ); - lcl_SwClientNotify(*pFormat, &aMsgItem); + const SwMsgPoolItem aMsgItem( RES_SECTION_NOT_HIDDEN ); + pFormat->CallSwClientNotify(sw::LegacyModifyHint(&aMsgItem, &aMsgItem)); pFormat->MakeFrames(); } @@ -719,8 +712,8 @@ SwContentNode* pCNd = GetDoc()->GetNodes().GoNextSection( &aNextNd, true, false ); if( pCNd ) { - const SfxPoolItem& rItem = pCNd->GetSwAttrSet().Get( RES_PAGEDESC ); - lcl_SwClientNotify(*pCNd, &rItem); + const SfxPoolItem& rItem = pCNd->GetSwAttrSet().Get(RES_PAGEDESC); + pCNd->CallSwClientNotify(sw::LegacyModifyHint(&rItem, &rItem)); } } @@ -945,22 +938,19 @@ bIsHidden = pPS->IsHiddenFlag(); } SwIterator aIter(*this); - for(SwSectionFormat* pLast = aIter.First(); pLast; pLast = aIter.Next()) - { - if(!pProtect->IsContentProtected() != !pSection->IsProtectFlag()) - lcl_SwClientNotify(*static_cast(pLast), static_cast(pProtect)); + if(!pProtect->IsContentProtected() != !pSection->IsProtectFlag()) + CallSwClientNotify(sw::LegacyModifyHint(pProtect, pProtect)); - // edit in readonly sections - if(!pEditInReadonly->GetValue() != !pSection->IsEditInReadonlyFlag()) - lcl_SwClientNotify(*static_cast(pLast), static_cast(pEditInReadonly)); + // edit in readonly sections + if(!pEditInReadonly->GetValue() != !pSection->IsEditInReadonlyFlag()) + CallSwClientNotify(sw::LegacyModifyHint(pEditInReadonly, pEditInReadonly)); - if(bIsHidden == pSection->IsHiddenFlag()) - { - SwMsgPoolItem aMsgItem( static_cast(bIsHidden - ? RES_SECTION_HIDDEN - : RES_SECTION_NOT_HIDDEN ) ); - lcl_SwClientNotify(*static_cast(pLast), &aMsgItem); - } + if(bIsHidden == pSection->IsHiddenFlag()) + { + SwMsgPoolItem aMsgItem(static_cast(bIsHidden + ? RES_SECTION_HIDDEN + : RES_SECTION_NOT_HIDDEN)); + CallSwClientNotify(sw::LegacyModifyHint(&aMsgItem, &aMsgItem)); } } diff -Nru libreoffice-7.1.2~rc2/sw/source/core/draw/dcontact.cxx libreoffice-7.1.3~rc2/sw/source/core/draw/dcontact.cxx --- libreoffice-7.1.2~rc2/sw/source/core/draw/dcontact.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/draw/dcontact.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -480,8 +480,28 @@ } } -sal_uInt32 SwFlyDrawContact::GetOrdNumForNewRef(const SwFlyFrame* pFly) +sal_uInt32 SwFlyDrawContact::GetOrdNumForNewRef(const SwFlyFrame* pFly, + SwFrame const& rAnchorFrame) { + // maintain invariant that a shape's textbox immediately follows the shape + // also for the multiple SdrVirtObj created for shapes in header/footer + if (SwFrameFormat const*const pDrawFormat = + SwTextBoxHelper::getOtherTextBoxFormat(GetFormat(), RES_FLYFRMFMT)) + { + // assume that the draw SdrVirtObj is always created before the flyframe one + if (SwSortedObjs const*const pObjs = rAnchorFrame.GetDrawObjs()) + { + for (SwAnchoredObject const*const pAnchoredObj : *pObjs) + { + if (&pAnchoredObj->GetFrameFormat() == pDrawFormat) + { + return pAnchoredObj->GetDrawObj()->GetOrdNum() + 1; + } + } + } + // if called from AppendObjs(), this is a problem; if called from lcl_SetFlyFrameAttr() it's not + SAL_INFO("sw", "GetOrdNumForNewRef: cannot find SdrObject for text box's shape"); + } // search for another Writer fly frame registered at same frame format SwIterator aIter(*GetFormat()); const SwFlyFrame* pFlyFrame(nullptr); @@ -503,7 +523,8 @@ return GetMaster()->GetOrdNumDirect(); } -SwVirtFlyDrawObj* SwFlyDrawContact::CreateNewRef(SwFlyFrame* pFly, SwFlyFrameFormat* pFormat) +SwVirtFlyDrawObj* SwFlyDrawContact::CreateNewRef(SwFlyFrame* pFly, + SwFlyFrameFormat* pFormat, SwFrame const& rAnchorFrame) { // Find ContactObject from the Format. If there's already one, we just // need to create a new Ref, else we create the Contact now. @@ -530,7 +551,7 @@ // #i27030# - insert new instance // into drawing page with correct order number else - rIDDMA.GetDrawModel()->GetPage(0)->InsertObject(pDrawObj, pContact->GetOrdNumForNewRef(pFly)); + rIDDMA.GetDrawModel()->GetPage(0)->InsertObject(pDrawObj, pContact->GetOrdNumForNewRef(pFly, rAnchorFrame)); // #i38889# - assure, that new instance // is in a visible layer. pContact->MoveObjToVisibleLayer(pDrawObj); @@ -808,7 +829,7 @@ /** add a 'virtual' drawing object to drawing page. */ -SwDrawVirtObj* SwDrawContact::AddVirtObj() +SwDrawVirtObj* SwDrawContact::AddVirtObj(SwFrame const& rAnchorFrame) { maDrawVirtObjs.push_back( SwDrawVirtObjPtr( @@ -816,7 +837,7 @@ GetMaster()->getSdrModelFromSdrObject(), *GetMaster(), *this))); - maDrawVirtObjs.back()->AddToDrawingPage(); + maDrawVirtObjs.back()->AddToDrawingPage(rAnchorFrame); return maDrawVirtObjs.back().get(); } @@ -1907,7 +1928,7 @@ else { // append 'virtual' drawing object - SwDrawVirtObj* pDrawVirtObj = AddVirtObj(); + SwDrawVirtObj* pDrawVirtObj = AddVirtObj(*pFrame); if ( pAnch->GetAnchorId() == RndStdIds::FLY_AS_CHAR ) { ClrContourCache( pDrawVirtObj ); @@ -2254,30 +2275,56 @@ } } -void SwDrawVirtObj::AddToDrawingPage() +void SwDrawVirtObj::AddToDrawingPage(SwFrame const& rAnchorFrame) { // determine 'master' SdrObject* pOrgMasterSdrObj = mrDrawContact.GetMaster(); // insert 'virtual' drawing object into page, set layer and user call. SdrPage* pDrawPg = pOrgMasterSdrObj->getSdrPageFromSdrObject(); + // default: insert before master object + auto NOTM_nOrdNum(GetReferencedObj().GetOrdNum()); + + // maintain invariant that a shape's textbox immediately follows the shape + // also for the multiple SdrDrawVirtObj created for shapes in header/footer + if (SwFrameFormat const*const pFlyFormat = + SwTextBoxHelper::getOtherTextBoxFormat(mrDrawContact.GetFormat(), RES_DRAWFRMFMT)) + { + // this is for the case when the flyframe SdrVirtObj is created before the draw one + if (SwSortedObjs const*const pObjs = rAnchorFrame.GetDrawObjs()) + { + for (SwAnchoredObject const*const pAnchoredObj : *pObjs) + { + if (&pAnchoredObj->GetFrameFormat() == pFlyFormat) + { + assert(dynamic_cast(pAnchoredObj)); + NOTM_nOrdNum = pAnchoredObj->GetDrawObj()->GetOrdNum(); + // the master SdrObj should have the highest index + assert(NOTM_nOrdNum < GetReferencedObj().GetOrdNum()); + break; + } + } + } + // this happens on initial insertion, the draw object is created first + SAL_INFO_IF(GetReferencedObj().GetOrdNum() == NOTM_nOrdNum, "sw", "AddToDrawingPage: cannot find SdrObject for text box's shape"); + } + // #i27030# - apply order number of referenced object if ( nullptr != pDrawPg ) { // #i27030# - apply order number of referenced object - pDrawPg->InsertObject( this, GetReferencedObj().GetOrdNum() ); + pDrawPg->InsertObject(this, NOTM_nOrdNum); } else { pDrawPg = getSdrPageFromSdrObject(); if ( pDrawPg ) { - pDrawPg->SetObjectOrdNum( GetOrdNumDirect(), - GetReferencedObj().GetOrdNum() ); + pDrawPg->SetObjectOrdNum(GetOrdNumDirect(), NOTM_nOrdNum); } else { - SetOrdNum( GetReferencedObj().GetOrdNum() ); + SetOrdNum(NOTM_nOrdNum); } } SetUserCall( &mrDrawContact ); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/edit/autofmt.cxx libreoffice-7.1.3~rc2/sw/source/core/edit/autofmt.cxx --- libreoffice-7.1.2~rc2/sw/source/core/edit/autofmt.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/edit/autofmt.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -2184,7 +2184,7 @@ continue; // do not check further } - if ( m_aFlags.bAddNonBrkSpace ) + if ( m_aFlags.bAddNonBrkSpace && nPos < TextFrameIndex(pText->getLength()) ) { SetRedlineText( STR_AUTOFMTREDL_NON_BREAK_SPACE ); pATst->FnAddNonBrkSpace(aACorrDoc, *pText, sal_Int32(nPos), eLang, bNbspRunNext); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/inc/flyfrm.hxx libreoffice-7.1.3~rc2/sw/source/core/inc/flyfrm.hxx --- libreoffice-7.1.2~rc2/sw/source/core/inc/flyfrm.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/inc/flyfrm.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -64,7 +64,7 @@ friend void Notify( SwFlyFrame *, SwPageFrame *pOld, const SwRect &rOld, const SwRect* pOldPrt ); - void InitDrawObj(); // these to methods are called in the + void InitDrawObj(SwFrame const&); // these to methods are called in the void FinitDrawObj(); // constructors void UpdateAttr_( const SfxPoolItem*, const SfxPoolItem*, sal_uInt8 &, diff -Nru libreoffice-7.1.2~rc2/sw/source/core/inc/flyfrms.hxx libreoffice-7.1.3~rc2/sw/source/core/inc/flyfrms.hxx --- libreoffice-7.1.2~rc2/sw/source/core/inc/flyfrms.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/inc/flyfrms.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -227,6 +227,7 @@ //see layact.cxx void AddRefOfst( tools::Long nOfst ) { m_aRef.AdjustY( nOfst ); } + void AddRefOfst(Point const& rOfst) { m_aRef += rOfst; } // #i26791# virtual void MakeObjPos() override; diff -Nru libreoffice-7.1.2~rc2/sw/source/core/inc/UndoTable.hxx libreoffice-7.1.3~rc2/sw/source/core/inc/UndoTable.hxx --- libreoffice-7.1.2~rc2/sw/source/core/inc/UndoTable.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/inc/UndoTable.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -273,7 +273,7 @@ //b6341295: When redlining is active, PrepareRedline has to create the //redlining attributes for the new and the old table cell content static std::unique_ptr PrepareRedline( SwDoc* pDoc, const SwTableBox& rBox, - const SwPosition& rPos, bool& rJoin, bool bRedo ); + SwPosition& rPos, bool& rJoin, bool bRedo ); public: SwUndoTableCpyTable(const SwDoc& rDoc); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/layout/fly.cxx libreoffice-7.1.3~rc2/sw/source/core/layout/fly.cxx --- libreoffice-7.1.2~rc2/sw/source/core/layout/fly.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/layout/fly.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -162,7 +162,7 @@ // First the Init, then the Content: // This is due to the fact that the Content may have Objects/Frames, // which are then registered - InitDrawObj(); + InitDrawObj(*pAnch); Chain( pAnch ); @@ -353,9 +353,9 @@ InvalidatePage(); } -void SwFlyFrame::InitDrawObj() +void SwFlyFrame::InitDrawObj(SwFrame const& rAnchorFrame) { - SetDrawObj(*SwFlyDrawContact::CreateNewRef(this, GetFormat())); + SetDrawObj(*SwFlyDrawContact::CreateNewRef(this, GetFormat(), rAnchorFrame)); // Set the right Layer IDocumentDrawModelAccess& rIDDMA = GetFormat()->getIDocumentDrawModelAccess(); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/layout/frmtool.cxx libreoffice-7.1.3~rc2/sw/source/core/layout/frmtool.cxx --- libreoffice-7.1.2~rc2/sw/source/core/layout/frmtool.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/layout/frmtool.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1025,7 +1025,7 @@ pNew->GetAnchorFrame() != pFrame && !pNew->GetDrawObjectByAnchorFrame( *pFrame ) ) { - SwDrawVirtObj* pDrawVirtObj = pNew->AddVirtObj(); + SwDrawVirtObj* pDrawVirtObj = pNew->AddVirtObj(*pFrame); pFrame->AppendDrawObj( *(pNew->GetAnchoredObj( pDrawVirtObj )) ); pDrawVirtObj->ActionChanged(); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/layout/objectformattertxtfrm.cxx libreoffice-7.1.3~rc2/sw/source/core/layout/objectformattertxtfrm.cxx --- libreoffice-7.1.2~rc2/sw/source/core/layout/objectformattertxtfrm.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/layout/objectformattertxtfrm.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -748,7 +748,8 @@ // format the content of the previous columns. // Note: It's a very simple format without formatting objects. SwFrame* pColFrameOfAnchor = _rAnchorTextFrame.FindColFrame(); - if ( pColFrameOfAnchor ) + SAL_WARN_IF(pColFrameOfAnchor && _rAnchorTextFrame.IsInFootnote(), "sw.layout", "tdf#122894 skipping anchor in column in footnote"); + if (pColFrameOfAnchor && !_rAnchorTextFrame.IsInFootnote()) { // #i44049# _rAnchorTextFrame.LockJoin(); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/layout/pagechg.cxx libreoffice-7.1.3~rc2/sw/source/core/layout/pagechg.cxx --- libreoffice-7.1.2~rc2/sw/source/core/layout/pagechg.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/layout/pagechg.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -2007,6 +2007,11 @@ if ( auto pFlyFrame = dynamic_cast( pAnchoredObj ) ) { lcl_MoveAllLowers( pFlyFrame, rOffset ); + // tdf#138785 update position specific to as-char flys + if (pFlyFrame->IsFlyInContentFrame()) + { + static_cast(pFlyFrame)->AddRefOfst(rOffset); + } pFlyFrame->NotifyDrawObj(); // --> let the active embedded object be moved SwFrame* pLower = pFlyFrame->Lower(); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/text/itrcrsr.cxx libreoffice-7.1.3~rc2/sw/source/core/text/itrcrsr.cxx --- libreoffice-7.1.2~rc2/sw/source/core/text/itrcrsr.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/text/itrcrsr.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1554,8 +1554,12 @@ { if (pPor->IsPostItsPortion()) { - // Offset would be nCurrStart + nLength below, do the same for post-it portions. - nCurrStart += pPor->GetLen(); + SwPostItsPortion* pPostItsPortion = dynamic_cast(pPor); + if (!pPostItsPortion->IsScript()) // tdf#141079 + { + // Offset would be nCurrStart + nLength below, do the same for post-it portions. + nCurrStart += pPor->GetLen(); + } } return nCurrStart; } diff -Nru libreoffice-7.1.2~rc2/sw/source/core/text/porfly.cxx libreoffice-7.1.3~rc2/sw/source/core/text/porfly.cxx --- libreoffice-7.1.2~rc2/sw/source/core/text/porfly.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/text/porfly.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -351,9 +351,11 @@ // Both rectangles are absolute, SwFormatHori/VertOrient's position // is relative to the print area of the anchor text frame. tools::Rectangle aTextRectangle = SwTextBoxHelper::getTextRectangle(pShape); + tools::Long nXoffs = SwTextBoxHelper::getTextRectangle(pShape, false).getX(); const auto aPos(pShape->GetAnchor().GetContentAnchor()); SwFormatVertOrient aVert(pTextBox->GetVertOrient()); + SwFormatHoriOrient aHori(pTextBox->GetHoriOrient()); // tdf#138598 Replace vertical alignment of As_char textboxes in footer // tdf#140158 Remove horizontal positioning of As_char textboxes, because @@ -373,10 +375,12 @@ SwFormatAnchor aNewTxBxAnchor(pTextBox->GetAnchor()); aNewTxBxAnchor.SetAnchor(aPos); + aHori.SetPos(nXoffs); pTextBox->LockModify(); pTextBox->SetFormatAttr(aNewTxBxAnchor); pTextBox->SetFormatAttr(aVert); + pTextBox->SetFormatAttr(aHori); pTextBox->UnlockModify(); } } diff -Nru libreoffice-7.1.2~rc2/sw/source/core/text/txttab.cxx libreoffice-7.1.3~rc2/sw/source/core/text/txttab.cxx --- libreoffice-7.1.2~rc2/sw/source/core/text/txttab.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/text/txttab.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -436,7 +436,12 @@ bool SwTabPortion::PostFormat( SwTextFormatInfo &rInf ) { - const bool bTabOverMargin = rInf.GetTextFrame()->GetDoc().getIDocumentSettingAccess().get(DocumentSettingId::TAB_OVER_MARGIN); + bool bTabOverMargin = rInf.GetTextFrame()->GetDoc().getIDocumentSettingAccess().get( + DocumentSettingId::TAB_OVER_MARGIN); + + if (rInf.GetTextFrame()->IsInSct()) + bTabOverMargin = false; + // If the tab position is larger than the right margin, it gets scaled down by default. // However, if compat mode enabled, we allow tabs to go over the margin: the rest of the paragraph is not broken into lines. const sal_uInt16 nRight = bTabOverMargin ? GetTabPos() : std::min(GetTabPos(), rInf.Width()); diff -Nru libreoffice-7.1.2~rc2/sw/source/core/undo/untbl.cxx libreoffice-7.1.3~rc2/sw/source/core/undo/untbl.cxx --- libreoffice-7.1.2~rc2/sw/source/core/undo/untbl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/undo/untbl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -2328,7 +2328,15 @@ if( !pTableNd ) pTableNd = pSNd->FindTableNode(); - SwTableBox& rBox = *pTableNd->GetTable().GetTableBox( nSttPos ); + SwTableBox* pBox = pTableNd->GetTable().GetTableBox( nSttPos ); + if (!pBox) + { + SAL_WARN("sw.core", + "SwUndoTableCpyTable::UndoImpl: invalid start node index for table box"); + continue; + } + + SwTableBox& rBox = *pBox; SwNodeIndex aInsIdx( *rBox.GetSttNd(), 1 ); rDoc.GetNodes().MakeTextNode( aInsIdx, rDoc.GetDfltTextFormatColl() ); @@ -2501,7 +2509,7 @@ // Otherwise aInsIdx has been moved during the Undo operation if( pEntry->bJoin ) { - SwPaM const& rLastPam = + SwPaM& rLastPam = rContext.GetCursorSupplier().GetCurrentShellCursor(); pUndo = PrepareRedline( &rDoc, rBox, *rLastPam.GetPoint(), pEntry->bJoin, true ); @@ -2616,7 +2624,7 @@ // rJoin is true if Redo() is calling and the content has already been merged std::unique_ptr SwUndoTableCpyTable::PrepareRedline( SwDoc* pDoc, const SwTableBox& rBox, - const SwPosition& rPos, bool& rJoin, bool bRedo ) + SwPosition& rPos, bool& rJoin, bool bRedo ) { std::unique_ptr pUndo; // b62341295: Redline for copying tables @@ -2640,6 +2648,10 @@ if( !bRedo && rPos.nNode.GetNode().GetTextNode() ) { // Try to merge, if not called by Redo() rJoin = true; + + // Park this somewhere else so nothing points to the to-be-deleted node. + rPos.nContent.Assign(pText, 0); + pText->JoinNext(); } } diff -Nru libreoffice-7.1.2~rc2/sw/source/core/unocore/unocrsrhelper.cxx libreoffice-7.1.3~rc2/sw/source/core/unocore/unocrsrhelper.cxx --- libreoffice-7.1.2~rc2/sw/source/core/unocore/unocrsrhelper.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/core/unocore/unocrsrhelper.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -312,17 +312,19 @@ { return uno::Any(); } - SfxItemSet const& rSet(*pFormat->GetStyleHandle()); + const auto pSet(pFormat->GetStyleHandle()); + if (!pSet) + return {}; SfxItemPropertySet const& rPropSet(*aSwMapProvider.GetPropertySet(PROPERTY_MAP_CHAR_AUTO_STYLE)); SfxItemPropertyMap const& rMap(rPropSet.getPropertyMap()); std::vector props; // have to iterate the map, not the item set? for (auto const& rEntry : rMap.getPropertyEntries()) { - if (rPropSet.getPropertyState(rEntry, rSet) == PropertyState_DIRECT_VALUE) + if (rPropSet.getPropertyState(rEntry, *pSet) == PropertyState_DIRECT_VALUE) { Any value; - rPropSet.getPropertyValue(rEntry, rSet, value); + rPropSet.getPropertyValue(rEntry, *pSet, value); props.emplace_back(rEntry.sName, value); } } diff -Nru libreoffice-7.1.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx libreoffice-7.1.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx --- libreoffice-7.1.2~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/filter/ww8/docxattributeoutput.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -6827,6 +6827,10 @@ case style::NumberingType::CHARS_ARABIC: aType="arabicAlpha"; break; case style::NumberingType::CHARS_THAI: aType="thaiLetters"; break; case style::NumberingType::CHARS_PERSIAN: aType="hindiVowels"; break; + case style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_RU: + case style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_N_RU: aType = "russianUpper"; break; + case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_RU: + case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_N_RU: aType = "russianLower"; break; case style::NumberingType::TEXT_NUMBER: aType="ordinal"; break; case style::NumberingType::TEXT_CARDINAL: aType="cardinalText"; break; case style::NumberingType::TEXT_ORDINAL: aType="ordinalText"; break; @@ -6861,10 +6865,6 @@ case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_BG: case style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_N_BG: case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_N_BG: - case style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_RU: - case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_RU: - case style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_N_RU: - case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_N_RU: case style::NumberingType::CHARS_MYANMAR: case style::NumberingType::CHARS_CYRILLIC_UPPER_LETTER_SR: case style::NumberingType::CHARS_CYRILLIC_LOWER_LETTER_SR: diff -Nru libreoffice-7.1.2~rc2/sw/source/filter/ww8/docxsdrexport.cxx libreoffice-7.1.3~rc2/sw/source/filter/ww8/docxsdrexport.cxx --- libreoffice-7.1.2~rc2/sw/source/filter/ww8/docxsdrexport.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/filter/ww8/docxsdrexport.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -35,6 +35,7 @@ #include #include #include +#include using namespace com::sun::star; using namespace oox; @@ -447,22 +448,32 @@ } } attrList->add(XML_behindDoc, bOpaque ? "0" : "1"); + sal_Int32 nLineWidth = 0; + if (const SdrObject* pObject = pFrameFormat->FindRealSdrObject()) + { + nLineWidth = pObject->GetMergedItem(XATTR_LINEWIDTH).GetValue(); + } + // Extend distance with the effect extent if the shape is not rotated, which is the opposite // of the mapping done at import time. // The type of dist* attributes is unsigned, so make sure no negative value is written. sal_Int64 nTopExtDist = nRotation ? 0 : nTopExt; + nTopExtDist -= TwipsToEMU(nLineWidth / 2); sal_Int64 nDistT = std::max(static_cast(0), TwipsToEMU(aULSpaceItem.GetUpper()) - nTopExtDist); attrList->add(XML_distT, OString::number(nDistT).getStr()); sal_Int64 nBottomExtDist = nRotation ? 0 : nBottomExt; + nBottomExtDist -= TwipsToEMU(nLineWidth / 2); sal_Int64 nDistB = std::max(static_cast(0), TwipsToEMU(aULSpaceItem.GetLower()) - nBottomExtDist); attrList->add(XML_distB, OString::number(nDistB).getStr()); sal_Int64 nLeftExtDist = nRotation ? 0 : nLeftExt; + nLeftExtDist -= TwipsToEMU(nLineWidth / 2); sal_Int64 nDistL = std::max(static_cast(0), TwipsToEMU(aLRSpaceItem.GetLeft()) - nLeftExtDist); attrList->add(XML_distL, OString::number(nDistL).getStr()); sal_Int64 nRightExtDist = nRotation ? 0 : nRightExt; + nRightExtDist -= TwipsToEMU(nLineWidth / 2); sal_Int64 nDistR = std::max(static_cast(0), TwipsToEMU(aLRSpaceItem.GetRight()) - nRightExtDist); attrList->add(XML_distR, OString::number(nDistR).getStr()); diff -Nru libreoffice-7.1.2~rc2/sw/source/filter/ww8/wrtw8nds.cxx libreoffice-7.1.3~rc2/sw/source/filter/ww8/wrtw8nds.cxx --- libreoffice-7.1.2~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/filter/ww8/wrtw8nds.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -710,6 +710,11 @@ ++linkedTextboxesIter; } + if (maFlyIter == maFlyFrames.end()) + { + return FLY_NONE; + } + /* #i2916# May have an anchored graphic to be placed, loop through sorted array @@ -2341,7 +2346,6 @@ do { const SwRedlineData* pRedlineData = aAttrIter.GetRunLevelRedline( nCurrentPos ); - FlyProcessingState nStateOfFlyFrame = FLY_PROCESSED; bool bPostponeWritingText = false ; OUString aSavedSnippet ; @@ -2387,7 +2391,7 @@ bPostponeWritingText = true ; } - nStateOfFlyFrame = aAttrIter.OutFlys( nCurrentPos ); + FlyProcessingState nStateOfFlyFrame = aAttrIter.OutFlys( nCurrentPos ); AttrOutput().SetStateOfFlyFrame( nStateOfFlyFrame ); AttrOutput().SetAnchorIsLinkedToNode( bPostponeWritingText && (FLY_POSTPONED != nStateOfFlyFrame) ); // Append bookmarks in this range after flys, exclusive of final @@ -2415,6 +2419,15 @@ || ch == CH_TXT_ATR_FIELDEND || ch == CH_TXT_ATR_FORMELEMENT) ? 1 : 0; + if (ofs == 1 + && GetExportFormat() == MSWordExportBase::ExportFormat::DOCX + // FLY_PROCESSED: there's at least 1 fly already written + && nStateOfFlyFrame == FLY_PROCESSED) + { + // write flys in a separate run before field character + AttrOutput().EndRun(&rNode, nCurrentPos, nNextAttr == nEnd); + AttrOutput().StartRun(pRedlineData, nCurrentPos, bSingleEmptyRun); + } IDocumentMarkAccess* const pMarkAccess = m_rDoc.getIDocumentMarkAccess(); if ( ch == CH_TXT_ATR_FIELDSTART ) @@ -2597,7 +2610,8 @@ AttrOutput().FormatDrop( rNode, aAttrIter.GetSwFormatDrop(), nStyle, pTextNodeInfo, pTextNodeInfoInner ); // Only output character attributes if this is not a postponed text run. - if (0 != nEnd && !(bPostponeWritingText && FLY_PROCESSED == nStateOfFlyFrame)) + if (0 != nEnd && !(bPostponeWritingText + && (FLY_PROCESSED == nStateOfFlyFrame || FLY_NONE == nStateOfFlyFrame))) { // Output the character attributes // #i51277# do this before writing flys at end of paragraph @@ -2704,7 +2718,8 @@ AttrOutput().WritePostitFieldReference(); - if( bPostponeWritingText && FLY_PROCESSED == nStateOfFlyFrame ) + if (bPostponeWritingText + && (FLY_PROCESSED == nStateOfFlyFrame || FLY_NONE == nStateOfFlyFrame)) { AttrOutput().EndRun(&rNode, nCurrentPos, nNextAttr == nEnd); //write the postponed text run diff -Nru libreoffice-7.1.2~rc2/sw/source/filter/ww8/wrtww8.hxx libreoffice-7.1.3~rc2/sw/source/filter/ww8/wrtww8.hxx --- libreoffice-7.1.2~rc2/sw/source/filter/ww8/wrtww8.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/filter/ww8/wrtww8.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -161,6 +161,7 @@ */ enum FlyProcessingState { + FLY_NONE, FLY_PROCESSED, FLY_POSTPONED, FLY_NOT_PROCESSED diff -Nru libreoffice-7.1.2~rc2/sw/source/filter/ww8/ww8par6.cxx libreoffice-7.1.3~rc2/sw/source/filter/ww8/ww8par6.cxx --- libreoffice-7.1.2~rc2/sw/source/filter/ww8/ww8par6.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/filter/ww8/ww8par6.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -661,8 +661,10 @@ } else { + // Hack alert: these calculations are based on + // #112727# import negative height headers/footers as floating frames inside fixed height headers/footer // #i48832# - set correct spacing between header and body. - const sal_Int32 nHdLowerSpace( std::abs(rSection.maSep.dyaTop) - rData.nSwUp - rData.nSwHLo ); + const sal_Int32 nHdLowerSpace(std::max(0, std::abs(rSection.maSep.dyaTop) - rData.nSwUp - rData.nSwHLo)); pHdFormat->SetFormatAttr(SwFormatFrameSize(SwFrameSize::Fixed, 0, rData.nSwHLo + nHdLowerSpace)); aHdUL.SetLower( static_cast< sal_uInt16 >(nHdLowerSpace) ); pHdFormat->SetFormatAttr(SwHeaderAndFooterEatSpacingItem( @@ -689,7 +691,7 @@ else { // #i48832# - set correct spacing between footer and body. - const SwTwips nFtUpperSpace( std::abs(rSection.maSep.dyaBottom) - rData.nSwLo - rData.nSwFUp ); + const sal_Int32 nFtUpperSpace(std::max(0, std::abs(rSection.maSep.dyaBottom) - rData.nSwLo - rData.nSwFUp)); pFtFormat->SetFormatAttr(SwFormatFrameSize(SwFrameSize::Fixed, 0, rData.nSwFUp + nFtUpperSpace)); aFtUL.SetUpper( static_cast< sal_uInt16 >(nFtUpperSpace) ); pFtFormat->SetFormatAttr(SwHeaderAndFooterEatSpacingItem( diff -Nru libreoffice-7.1.2~rc2/sw/source/ui/fldui/flddb.cxx libreoffice-7.1.3~rc2/sw/source/ui/fldui/flddb.cxx --- libreoffice-7.1.2~rc2/sw/source/ui/fldui/flddb.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/ui/fldui/flddb.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -178,6 +178,10 @@ } } +// SwFieldDBPage may ask for password to select current document's data source, +// so only do that when activating the page, not when dialog is creating all pages +bool SwFieldDBPage::DeferResetToFirstActivation() { return true; } + bool SwFieldDBPage::FillItemSet(SfxItemSet* ) { OUString sTableName; diff -Nru libreoffice-7.1.2~rc2/sw/source/ui/fldui/flddb.hxx libreoffice-7.1.3~rc2/sw/source/ui/fldui/flddb.hxx --- libreoffice-7.1.2~rc2/sw/source/ui/fldui/flddb.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/ui/fldui/flddb.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -70,6 +70,7 @@ virtual bool FillItemSet( SfxItemSet* rSet ) override; virtual void Reset( const SfxItemSet* rSet ) override; + virtual bool DeferResetToFirstActivation() override; virtual void FillUserData() override; void ActivateMailMergeAddress(); diff -Nru libreoffice-7.1.2~rc2/sw/source/ui/misc/outline.cxx libreoffice-7.1.3~rc2/sw/source/ui/misc/outline.cxx --- libreoffice-7.1.2~rc2/sw/source/ui/misc/outline.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/ui/misc/outline.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -92,7 +92,7 @@ nSelect++; } } - m_xFormBox->select(nSelect); + m_xFormBox->select(std::min(nSelect, static_cast(m_xFormBox->n_children() - 1))); SelectHdl(*m_xFormBox); } diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/config/StoredChapterNumbering.cxx libreoffice-7.1.3~rc2/sw/source/uibase/config/StoredChapterNumbering.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/config/StoredChapterNumbering.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/config/StoredChapterNumbering.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -320,7 +320,7 @@ virtual void SAL_CALL endFastElement(sal_Int32 /*Element*/) override { - assert(m_Contexts.size() < SwChapterNumRules::nMaxRules); + assert(m_Contexts.size() <= SwChapterNumRules::nMaxRules); for (auto iter = m_Contexts.begin(); iter != m_Contexts.end(); ++iter) { uno::Reference const xRule( diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/dbui/dbtree.cxx libreoffice-7.1.3~rc2/sw/source/uibase/dbui/dbtree.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/dbui/dbtree.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/dbui/dbtree.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -332,14 +332,25 @@ { if (rDBName == m_xTreeView->get_text(*xParent)) { + if (rTableName.isEmpty() && rColumnName.isEmpty()) + { + // Just select the database node, do not expand + m_xTreeView->scroll_to_row(*xParent); + m_xTreeView->select(*xParent); + return; + } if (!m_xTreeView->iter_has_child(*xParent)) { RequestingChildrenHdl(*xParent); - m_xTreeView->expand_row(*xParent); + // If successful, it will be expanded in a call to scroll_to_row for its children } std::unique_ptr xChild(m_xTreeView->make_iterator(xParent.get())); if (!m_xTreeView->iter_children(*xChild)) + { + m_xTreeView->scroll_to_row(*xParent); + m_xTreeView->select(*xParent); continue; + } do { if (rTableName == m_xTreeView->get_text(*xChild)) diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/docvw/edtwin.cxx libreoffice-7.1.3~rc2/sw/source/uibase/docvw/edtwin.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/docvw/edtwin.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/docvw/edtwin.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -5346,15 +5346,15 @@ void SwEditWin::Command( const CommandEvent& rCEvt ) { - SwWrtShell &rSh = m_rView.GetWrtShell(); - - if ( !m_rView.GetViewFrame() ) + if (!m_rView.GetViewFrame() || isDisposed()) { // If ViewFrame dies shortly, no popup anymore! Window::Command(rCEvt); return; } + SwWrtShell &rSh = m_rView.GetWrtShell(); + // The command event is send to the window after a possible context // menu from an inplace client has been closed. Now we have the chance // to deactivate the inplace client without any problem regarding parent diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/shells/tabsh.cxx libreoffice-7.1.3~rc2/sw/source/uibase/shells/tabsh.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/shells/tabsh.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/shells/tabsh.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -600,6 +600,9 @@ pDlg->StartExecuteAsync([pDlg, pRequest, pTableRep, &rBindings, &rSh, vCursors](sal_Int32 nResult){ if (RET_OK == nResult) { + if (rSh.IsTableMode()) // tdf#140977 drop possible table-cursor before setting the new one + rSh.TableCursorToCursor(); + rSh.SetSelection(*vCursors->front()); // tdf#135636 set the table selected at dialog launch as current selection const SfxItemSet* pOutSet = pDlg->GetOutputItemSet(); diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/uiview/view.cxx libreoffice-7.1.3~rc2/sw/source/uibase/uiview/view.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/uiview/view.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/uiview/view.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -439,7 +439,9 @@ } // Show Mail Merge toolbar initially for documents with Database fields - if (!m_bInitOnceCompleted && GetWrtShell().IsAnyDatabaseFieldInDoc()) + if (!m_bInitOnceCompleted + && (GetWrtShell().IsAnyDatabaseFieldInDoc() + || !GetWrtShell().GetDBData().sDataSource.isEmpty())) ShowUIElement("private:resource/toolbar/mailmerge"); // Activate the toolbar to the new selection which also was active last time. diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/utlui/content.cxx libreoffice-7.1.3~rc2/sw/source/uibase/utlui/content.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/utlui/content.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/utlui/content.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -262,6 +262,26 @@ return false; } + +// Gets "YPos" for SwRegionContent, i.e. a number used to sort sections in Navigator's list +tools::Long getYPosForSection(const SwNodeIndex& rNodeIndex) +{ + sal_uLong nIndex = rNodeIndex.GetIndex(); + if (rNodeIndex.GetNodes().GetEndOfExtras().GetIndex() >= nIndex) + { + // Not a node of BodyText + // Are we in a fly? + if (const auto pFlyFormat = rNodeIndex.GetNode().GetFlyFormat()) + { + // Get node index of anchor + if (auto pSwPosition = pFlyFormat->GetAnchor().GetContentAnchor()) + { + nIndex = getYPosForSection(pSwPosition->nNode); + } + } + } + return static_cast(nIndex); +} } // end of anonymous namespace SwContentType::SwContentType(SwWrtShell* pShell, ContentTypeId nType, sal_uInt8 nLevel) : @@ -354,18 +374,20 @@ pOldMember = std::move(m_pMember); m_pMember.reset( new SwContentArr ); } - const Point aNullPt; m_nMemberCount = m_pWrtShell->GetSectionFormatCount(); for(size_t i = 0; i < m_nMemberCount; ++i) { - const SwSectionFormat* pFormat; - SectionType eTmpType; - if( (pFormat = &m_pWrtShell->GetSectionFormat(i))->IsInNodesArr() && - (eTmpType = pFormat->GetSection()->GetType()) != SectionType::ToxContent - && SectionType::ToxHeader != eTmpType ) + const SwSectionFormat* pFormat = &m_pWrtShell->GetSectionFormat(i); + if (!pFormat->IsInNodesArr()) + continue; + const SwSection* pSection = pFormat->GetSection(); + if (SectionType eTmpType = pSection->GetType(); + eTmpType == SectionType::ToxContent || eTmpType == SectionType::ToxHeader) + continue; + const SwNodeIndex* pNodeIndex = pFormat->GetContent().GetContentIdx(); + if (pNodeIndex) { - const OUString& rSectionName = - pFormat->GetSection()->GetSectionName(); + const OUString& rSectionName = pSection->GetSectionName(); sal_uInt8 nLevel = 0; SwSectionFormat* pParentFormat = pFormat->GetParent(); while(pParentFormat) @@ -375,8 +397,7 @@ } std::unique_ptr pCnt(new SwRegionContent(this, rSectionName, - nLevel, - pFormat->FindLayoutRect( false, &aNullPt ).Top())); + nLevel, getYPosForSection(*pNodeIndex))); SwPtrMsgPoolItem aAskItem( RES_CONTENT_VISIBLE, nullptr ); if( !pFormat->GetInfo( aAskItem ) && @@ -676,17 +697,20 @@ break; case ContentTypeId::REGION : { - const Point aNullPt; m_nMemberCount = m_pWrtShell->GetSectionFormatCount(); for(size_t i = 0; i < m_nMemberCount; ++i) { - const SwSectionFormat* pFormat; - SectionType eTmpType; - if( (pFormat = &m_pWrtShell->GetSectionFormat(i))->IsInNodesArr() && - (eTmpType = pFormat->GetSection()->GetType()) != SectionType::ToxContent - && SectionType::ToxHeader != eTmpType ) + const SwSectionFormat* pFormat = &m_pWrtShell->GetSectionFormat(i); + if (!pFormat->IsInNodesArr()) + continue; + const SwSection* pSection = pFormat->GetSection(); + if (SectionType eTmpType = pSection->GetType(); + eTmpType == SectionType::ToxContent || eTmpType == SectionType::ToxHeader) + continue; + const SwNodeIndex* pNodeIndex = pFormat->GetContent().GetContentIdx(); + if (pNodeIndex) { - OUString sSectionName = pFormat->GetSection()->GetSectionName(); + const OUString& sSectionName = pSection->GetSectionName(); sal_uInt8 nLevel = 0; SwSectionFormat* pParentFormat = pFormat->GetParent(); @@ -697,8 +721,7 @@ } std::unique_ptr pCnt(new SwRegionContent(this, sSectionName, - nLevel, - pFormat->FindLayoutRect( false, &aNullPt ).Top())); + nLevel, getYPosForSection(*pNodeIndex))); if( !pFormat->GetInfo( aAskItem ) && !aAskItem.pObject ) // not visible pCnt->SetInvisible(); diff -Nru libreoffice-7.1.2~rc2/sw/source/uibase/utlui/glbltree.cxx libreoffice-7.1.3~rc2/sw/source/uibase/utlui/glbltree.cxx --- libreoffice-7.1.2~rc2/sw/source/uibase/utlui/glbltree.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/sw/source/uibase/utlui/glbltree.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -610,7 +610,7 @@ pCont = nullptr; bUpdateHard = true; } - else if (rSelectedPopupEntry == "edit") + else if (rSelectedPopupEntry == "editcontent") { OSL_ENSURE(pCont, "edit without entry ? " ); if (pCont) diff -Nru libreoffice-7.1.2~rc2/tarballs/fetch.log libreoffice-7.1.3~rc2/tarballs/fetch.log --- libreoffice-7.1.2~rc2/tarballs/fetch.log 2021-02-20 07:45:39.000000000 +0000 +++ libreoffice-7.1.3~rc2/tarballs/fetch.log 2021-04-21 20:10:16.000000000 +0000 @@ -1,49 +1,49 @@ -Sa 20. Feb 08:39:24 CET 2021 ---2021-02-20 08:39:24-- https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz +Mi 21. Apr 22:01:50 CEST 2021 +--2021-04-21 22:01:50-- https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 318808 (311K) [application/octet-stream] Wird in ‘./libabw-0.1.3.tar.xz’ gespeichert. - 0K .... 100% 2,04M=0,1s + 0K .... 100% 686K=0,5s -2021-02-20 08:39:25 (2,04 MB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] +2021-04-21 22:01:51 (686 KB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] ---2021-02-20 08:39:25-- https://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz +--2021-04-21 22:01:51-- https://dev-www.libreoffice.org/src/commons-logging-1.2-src.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 188536 (184K) [application/octet-stream] Wird in ‘./commons-logging-1.2-src.tar.gz’ gespeichert. - 0K .. 100% 1,69M=0,1s + 0K .. 100% 985K=0,2s -2021-02-20 08:39:25 (1,69 MB/s) - ‘./commons-logging-1.2-src.tar.gz’ gespeichert [188536/188536] +2021-04-21 22:01:52 (985 KB/s) - ‘./commons-logging-1.2-src.tar.gz’ gespeichert [188536/188536] ---2021-02-20 08:39:25-- https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz +--2021-04-21 22:01:52-- https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1031613 (1007K) [application/octet-stream] Wird in ‘./apr-1.5.2.tar.gz’ gespeichert. - 0K ........ ....... 100% 2,12M=0,5s + 0K ........ ....... 100% 2,15M=0,5s -2021-02-20 08:39:26 (2,12 MB/s) - ‘./apr-1.5.2.tar.gz’ gespeichert [1031613/1031613] +2021-04-21 22:01:52 (2,15 MB/s) - ‘./apr-1.5.2.tar.gz’ gespeichert [1031613/1031613] ---2021-02-20 08:39:26-- https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz +--2021-04-21 22:01:52-- https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 874044 (854K) [application/octet-stream] Wird in ‘./apr-util-1.5.4.tar.gz’ gespeichert. - 0K ........ ..... 100% 1,77M=0,5s + 0K ........ ..... 100% 1,97M=0,4s -2021-02-20 08:39:27 (1,77 MB/s) - ‘./apr-util-1.5.4.tar.gz’ gespeichert [874044/874044] +2021-04-21 22:01:53 (1,97 MB/s) - ‘./apr-util-1.5.4.tar.gz’ gespeichert [874044/874044] ---2021-02-20 08:39:27-- https://dev-www.libreoffice.org/src/boost_1_71_0.tar.xz +--2021-04-21 22:01:53-- https://dev-www.libreoffice.org/src/boost_1_71_0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -51,119 +51,119 @@ Wird in ‘./boost_1_71_0.tar.xz’ gespeichert. 0K ........ ........ ........ ........ ........ ........ 20% 1,17M 10s - 3072K ........ ........ ........ ........ ........ ........ 41% 678K 10s - 6144K ........ ........ ........ ........ ........ ........ 62% 1,28M 6s - 9216K ........ ........ ........ ........ ........ ........ 83% 1,72M 2s - 12288K ........ ........ ........ ........ ...... 100% 1,22M=13s + 3072K ........ ........ ........ ........ ........ ........ 41% 1,17M 7s + 6144K ........ ........ ........ ........ ........ ........ 62% 728K 6s + 9216K ........ ........ ........ ........ ........ ........ 83% 790K 3s + 12288K ........ ........ ........ ........ ...... 100% 949K=16s -2021-02-20 08:39:40 (1,10 MB/s) - ‘./boost_1_71_0.tar.xz’ gespeichert [15137604/15137604] +2021-04-21 22:02:09 (932 KB/s) - ‘./boost_1_71_0.tar.xz’ gespeichert [15137604/15137604] ---2021-02-20 08:39:41-- https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz +--2021-04-21 22:02:09-- https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1553252 (1,5M) [application/octet-stream] Wird in ‘./box2d-2.3.1.tar.gz’ gespeichert. - 0K ........ ........ ....... 100% 1,05M=1,4s + 0K ........ ........ ....... 100% 869K=1,7s -2021-02-20 08:39:42 (1,05 MB/s) - ‘./box2d-2.3.1.tar.gz’ gespeichert [1553252/1553252] +2021-04-21 22:02:11 (869 KB/s) - ‘./box2d-2.3.1.tar.gz’ gespeichert [1553252/1553252] ---2021-02-20 08:39:42-- https://dev-www.libreoffice.org/src/breakpad.zip +--2021-04-21 22:02:11-- https://dev-www.libreoffice.org/src/breakpad.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 14897049 (14M) [application/zip] Wird in ‘./breakpad.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 21% 1,12M 10s - 3072K ........ ........ ........ ........ ........ ........ 42% 1,03M 8s - 6144K ........ ........ ........ ........ ........ ........ 63% 1,44M 4s - 9216K ........ ........ ........ ........ ........ ........ 84% 1,33M 2s - 12288K ........ ........ ........ ........ ... 100% 1,55M=11s + 0K ........ ........ ........ ........ ........ ........ 21% 1,48M 8s + 3072K ........ ........ ........ ........ ........ ........ 42% 820K 8s + 6144K ........ ........ ........ ........ ........ ........ 63% 994K 5s + 9216K ........ ........ ........ ........ ........ ........ 84% 745K 2s + 12288K ........ ........ ........ ........ ... 100% 959K=15s -2021-02-20 08:39:54 (1,25 MB/s) - ‘./breakpad.zip’ gespeichert [14897049/14897049] +2021-04-21 22:02:27 (948 KB/s) - ‘./breakpad.zip’ gespeichert [14897049/14897049] ---2021-02-20 08:39:54-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +--2021-04-21 22:02:27-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1997625 (1,9M) [application/zip] Wird in ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert. - 0K ........ ........ ........ ...... 100% 1,25M=1,5s + 0K ........ ........ ........ ...... 100% 1,31M=1,5s -2021-02-20 08:39:56 (1,25 MB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] +2021-04-21 22:02:29 (1,31 MB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] ---2021-02-20 08:39:56-- https://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz +--2021-04-21 22:02:29-- https://dev-www.libreoffice.org/src/00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 782025 (764K) [application/octet-stream] Wird in ‘./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz’ gespeichert. - 0K ........ ... 100% 1,34M=0,6s + 0K ........ ... 100% 919K=0,8s -2021-02-20 08:39:57 (1,34 MB/s) - ‘./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz’ gespeichert [782025/782025] +2021-04-21 22:02:30 (919 KB/s) - ‘./00b516f4704d4a7cb50a1d97e6e8e15b-bzip2-1.0.6.tar.gz’ gespeichert [782025/782025] ---2021-02-20 08:39:57-- https://dev-www.libreoffice.org/src/cairo-1.16.0.tar.xz +--2021-04-21 22:02:30-- https://dev-www.libreoffice.org/src/cairo-1.16.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 41997432 (40M) [application/octet-stream] Wird in ‘./cairo-1.16.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 7% 1,04M 35s - 3072K ........ ........ ........ ........ ........ ........ 14% 1,60M 27s - 6144K ........ ........ ........ ........ ........ ........ 22% 1,78M 22s - 9216K ........ ........ ........ ........ ........ ........ 29% 1,20M 21s - 12288K ........ ........ ........ ........ ........ ........ 37% 1,33M 19s - 15360K ........ ........ ........ ........ ........ ........ 44% 1,14M 17s - 18432K ........ ........ ........ ........ ........ ........ 52% 823K 16s - 21504K ........ ........ ........ ........ ........ ........ 59% 911K 14s - 24576K ........ ........ ........ ........ ........ ........ 67% 1,24M 11s - 27648K ........ ........ ........ ........ ........ ........ 74% 2,10M 8s - 30720K ........ ........ ........ ........ ........ ........ 82% 2,69M 6s - 33792K ........ ........ ........ ........ ........ ........ 89% 2,46M 3s - 36864K ........ ........ ........ ........ ........ ........ 97% 2,58M 1s - 39936K ........ ........ 100% 2,27M=29s + 0K ........ ........ ........ ........ ........ ........ 7% 998K 38s + 3072K ........ ........ ........ ........ ........ ........ 14% 1,46M 29s + 6144K ........ ........ ........ ........ ........ ........ 22% 1,35M 25s + 9216K ........ ........ ........ ........ ........ ........ 29% 993K 24s + 12288K ........ ........ ........ ........ ........ ........ 37% 1,59M 21s + 15360K ........ ........ ........ ........ ........ ........ 44% 1,59M 17s + 18432K ........ ........ ........ ........ ........ ........ 52% 941K 16s + 21504K ........ ........ ........ ........ ........ ........ 59% 820K 14s + 24576K ........ ........ ........ ........ ........ ........ 67% 893K 12s + 27648K ........ ........ ........ ........ ........ ........ 74% 1,23M 9s + 30720K ........ ........ ........ ........ ........ ........ 82% 911K 7s + 33792K ........ ........ ........ ........ ........ ........ 89% 1,31M 4s + 36864K ........ ........ ........ ........ ........ ........ 97% 1,78M 1s + 39936K ........ ........ 100% 1,57M=35s -2021-02-20 08:40:26 (1,39 MB/s) - ‘./cairo-1.16.0.tar.xz’ gespeichert [41997432/41997432] +2021-04-21 22:03:05 (1,14 MB/s) - ‘./cairo-1.16.0.tar.xz’ gespeichert [41997432/41997432] ---2021-02-20 08:40:26-- https://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz +--2021-04-21 22:03:06-- https://dev-www.libreoffice.org/src/e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 878784 (858K) [application/octet-stream] Wird in ‘./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz’ gespeichert. - 0K ........ ..... 100% 440K=2,0s + 0K ........ ..... 100% 1,25M=0,7s -2021-02-20 08:40:28 (440 KB/s) - ‘./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz’ gespeichert [878784/878784] +2021-04-21 22:03:07 (1,25 MB/s) - ‘./e80ebae4da01e77f68744319f01d52a3-pixman-0.34.0.tar.gz’ gespeichert [878784/878784] ---2021-02-20 08:40:28-- https://dev-www.libreoffice.org/src/libcdr-0.1.6.tar.xz +--2021-04-21 22:03:07-- https://dev-www.libreoffice.org/src/libcdr-0.1.6.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 612068 (598K) [application/octet-stream] Wird in ‘./libcdr-0.1.6.tar.xz’ gespeichert. - 0K ........ . 100% 584K=1,0s + 0K ........ . 100% 826K=0,7s -2021-02-20 08:40:30 (584 KB/s) - ‘./libcdr-0.1.6.tar.xz’ gespeichert [612068/612068] +2021-04-21 22:03:08 (826 KB/s) - ‘./libcdr-0.1.6.tar.xz’ gespeichert [612068/612068] ---2021-02-20 08:40:30-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz +--2021-04-21 22:03:08-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2241498 (2,1M) [application/octet-stream] Wird in ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 1,46M=1,5s + 0K ........ ........ ........ ........ .. 100% 1,31M=1,6s -2021-02-20 08:40:31 (1,46 MB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] +2021-04-21 22:03:09 (1,31 MB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] ---2021-02-20 08:40:31-- https://dev-www.libreoffice.org/src/dtoa-20180411.tgz +--2021-04-21 22:03:09-- https://dev-www.libreoffice.org/src/dtoa-20180411.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -172,528 +172,528 @@ 0K 100% 1,20M=0,04s -2021-02-20 08:40:32 (1,20 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] +2021-04-21 22:03:10 (1,20 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] ---2021-02-20 08:40:32-- https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz +--2021-04-21 22:03:10-- https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 484404 (473K) [application/octet-stream] Wird in ‘./libcmis-0.5.2.tar.xz’ gespeichert. - 0K ....... 100% 2,04M=0,2s + 0K ....... 100% 1,40M=0,3s -2021-02-20 08:40:32 (2,04 MB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] +2021-04-21 22:03:10 (1,40 MB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] ---2021-02-20 08:40:32-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +--2021-04-21 22:03:10-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 10343849 (9,9M) [application/octet-stream] Wird in ‘./CoinMP-1.7.6.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 30% 2,36M 3s - 3072K ........ ........ ........ ........ ........ ........ 60% 2,46M 2s - 6144K ........ ........ ........ ........ ........ ........ 91% 1,84M 0s - 9216K ........ ..... 100% 1,84M=4,6s + 0K ........ ........ ........ ........ ........ ........ 30% 851K 8s + 3072K ........ ........ ........ ........ ........ ........ 60% 916K 4s + 6144K ........ ........ ........ ........ ........ ........ 91% 990K 1s + 9216K ........ ..... 100% 637K=11s -2021-02-20 08:40:37 (2,15 MB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] +2021-04-21 22:03:22 (882 KB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] ---2021-02-20 08:40:37-- https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz +--2021-04-21 22:03:22-- https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 814363 (795K) [application/octet-stream] Wird in ‘./cppunit-1.15.1.tar.gz’ gespeichert. - 0K ........ .... 100% 957K=0,8s + 0K ........ .... 100% 753K=1,1s -2021-02-20 08:40:38 (957 KB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] +2021-04-21 22:03:23 (753 KB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] ---2021-02-20 08:40:38-- https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt +--2021-04-21 22:03:24-- https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 49659 (48K) [application/octet-stream] Wird in ‘./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt’ gespeichert. - 0K 100% 1,18M=0,04s + 0K 100% 1,14M=0,04s -2021-02-20 08:40:38 (1,18 MB/s) - ‘./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt’ gespeichert [49659/49659] +2021-04-21 22:03:24 (1,14 MB/s) - ‘./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt’ gespeichert [49659/49659] ---2021-02-20 08:40:38-- https://dev-www.libreoffice.org/src/curl-7.71.0.tar.xz +--2021-04-21 22:03:24-- https://dev-www.libreoffice.org/src/curl-7.71.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2379056 (2,3M) [application/octet-stream] Wird in ‘./curl-7.71.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ .... 100% 1,77M=1,3s + 0K ........ ........ ........ ........ .... 100% 1,23M=1,8s -2021-02-20 08:40:40 (1,77 MB/s) - ‘./curl-7.71.0.tar.xz’ gespeichert [2379056/2379056] +2021-04-21 22:03:26 (1,23 MB/s) - ‘./curl-7.71.0.tar.xz’ gespeichert [2379056/2379056] ---2021-02-20 08:40:40-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz +--2021-04-21 22:03:26-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 416268 (407K) [application/octet-stream] Wird in ‘./libe-book-0.1.3.tar.xz’ gespeichert. - 0K ...... 100% 1008K=0,4s + 0K ...... 100% 442K=0,9s -2021-02-20 08:40:41 (1008 KB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] +2021-04-21 22:03:27 (442 KB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] ---2021-02-20 08:40:41-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +--2021-04-21 22:03:27-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 463264 (452K) [application/octet-stream] Wird in ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert. - 0K ....... 100% 1,18M=0,4s + 0K ....... 100% 593K=0,8s -2021-02-20 08:40:41 (1,18 MB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] +2021-04-21 22:03:28 (593 KB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] ---2021-02-20 08:40:41-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz +--2021-04-21 22:03:28-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 324380 (317K) [application/octet-stream] Wird in ‘./libepubgen-0.1.1.tar.xz’ gespeichert. - 0K .... 100% 1,10M=0,3s + 0K .... 100% 509K=0,6s -2021-02-20 08:40:42 (1,10 MB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] +2021-04-21 22:03:29 (509 KB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] ---2021-02-20 08:40:42-- https://dev-www.libreoffice.org/src/libetonyek-0.1.9.tar.xz +--2021-04-21 22:03:29-- https://dev-www.libreoffice.org/src/libetonyek-0.1.9.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1477064 (1,4M) [application/octet-stream] Wird in ‘./libetonyek-0.1.9.tar.xz’ gespeichert. - 0K ........ ........ ...... 100% 1,57M=0,9s + 0K ........ ........ ...... 100% 618K=2,3s -2021-02-20 08:40:43 (1,57 MB/s) - ‘./libetonyek-0.1.9.tar.xz’ gespeichert [1477064/1477064] +2021-04-21 22:03:32 (618 KB/s) - ‘./libetonyek-0.1.9.tar.xz’ gespeichert [1477064/1477064] ---2021-02-20 08:40:43-- https://dev-www.libreoffice.org/src/expat-2.2.8.tar.bz2 +--2021-04-21 22:03:32-- https://dev-www.libreoffice.org/src/expat-2.2.8.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 520377 (508K) [application/octet-stream] Wird in ‘./expat-2.2.8.tar.bz2’ gespeichert. - 0K ....... 100% 1,51M=0,3s + 0K ....... 100% 900K=0,6s -2021-02-20 08:40:44 (1,51 MB/s) - ‘./expat-2.2.8.tar.bz2’ gespeichert [520377/520377] +2021-04-21 22:03:32 (900 KB/s) - ‘./expat-2.2.8.tar.bz2’ gespeichert [520377/520377] ---2021-02-20 08:40:44-- https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 +--2021-04-21 22:03:32-- https://dev-www.libreoffice.org/src/Firebird-3.0.0.32483-0.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9552809 (9,1M) [application/octet-stream] Wird in ‘./Firebird-3.0.0.32483-0.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 32% 1,31M 5s - 3072K ........ ........ ........ ........ ........ ........ 65% 730K 3s - 6144K ........ ........ ........ ........ ........ ........ 98% 1,80M 0s - 9216K . 100% 2,10M=8,2s + 0K ........ ........ ........ ........ ........ ........ 32% 985K 6s + 3072K ........ ........ ........ ........ ........ ........ 65% 989K 3s + 6144K ........ ........ ........ ........ ........ ........ 98% 1,10M 0s + 9216K . 100% 1,41M=9,0s -2021-02-20 08:40:52 (1,11 MB/s) - ‘./Firebird-3.0.0.32483-0.tar.bz2’ gespeichert [9552809/9552809] +2021-04-21 22:03:42 (1,01 MB/s) - ‘./Firebird-3.0.0.32483-0.tar.bz2’ gespeichert [9552809/9552809] ---2021-02-20 08:40:52-- https://dev-www.libreoffice.org/src/fontconfig-2.13.91.tar.gz +--2021-04-21 22:03:42-- https://dev-www.libreoffice.org/src/fontconfig-2.13.91.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2125098 (2,0M) [application/octet-stream] Wird in ‘./fontconfig-2.13.91.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ 100% 2,31M=0,9s + 0K ........ ........ ........ ........ 100% 1,96M=1,0s -2021-02-20 08:40:53 (2,31 MB/s) - ‘./fontconfig-2.13.91.tar.gz’ gespeichert [2125098/2125098] +2021-04-21 22:03:43 (1,96 MB/s) - ‘./fontconfig-2.13.91.tar.gz’ gespeichert [2125098/2125098] ---2021-02-20 08:40:53-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz +--2021-04-21 22:03:43-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 516132 (504K) [application/octet-stream] Wird in ‘./libfreehand-0.1.2.tar.xz’ gespeichert. - 0K ....... 100% 1,92M=0,3s + 0K ....... 100% 1,77M=0,3s -2021-02-20 08:40:54 (1,92 MB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] +2021-04-21 22:03:44 (1,77 MB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] ---2021-02-20 08:40:54-- https://dev-www.libreoffice.org/src/freetype-2.9.1.tar.bz2 +--2021-04-21 22:03:44-- https://dev-www.libreoffice.org/src/freetype-2.9.1.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1926385 (1,8M) [application/octet-stream] Wird in ‘./freetype-2.9.1.tar.bz2’ gespeichert. - 0K ........ ........ ........ ..... 100% 2,53M=0,7s + 0K ........ ........ ........ ..... 100% 1,84M=1,0s -2021-02-20 08:40:55 (2,53 MB/s) - ‘./freetype-2.9.1.tar.bz2’ gespeichert [1926385/1926385] +2021-04-21 22:03:45 (1,84 MB/s) - ‘./freetype-2.9.1.tar.bz2’ gespeichert [1926385/1926385] ---2021-02-20 08:40:55-- https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz +--2021-04-21 22:03:45-- https://dev-www.libreoffice.org/src/libepoxy-1.5.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 220540 (215K) [application/octet-stream] Wird in ‘./libepoxy-1.5.3.tar.xz’ gespeichert. - 0K ... 100% 1,65M=0,1s + 0K ... 100% 1,52M=0,1s -2021-02-20 08:40:55 (1,65 MB/s) - ‘./libepoxy-1.5.3.tar.xz’ gespeichert [220540/220540] +2021-04-21 22:03:45 (1,52 MB/s) - ‘./libepoxy-1.5.3.tar.xz’ gespeichert [220540/220540] ---2021-02-20 08:40:55-- https://dev-www.libreoffice.org/src/glm-0.9.9.7.zip +--2021-04-21 22:03:45-- https://dev-www.libreoffice.org/src/glm-0.9.9.7.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5752625 (5,5M) [application/zip] Wird in ‘./glm-0.9.9.7.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 54% 2,68M 1s - 3072K ........ ........ ........ ........ ....... 100% 2,91M=2,0s + 0K ........ ........ ........ ........ ........ ........ 54% 1,10M 2s + 3072K ........ ........ ........ ........ ....... 100% 1,10M=5,0s -2021-02-20 08:40:57 (2,78 MB/s) - ‘./glm-0.9.9.7.zip’ gespeichert [5752625/5752625] +2021-04-21 22:03:51 (1,10 MB/s) - ‘./glm-0.9.9.7.zip’ gespeichert [5752625/5752625] ---2021-02-20 08:40:58-- https://dev-www.libreoffice.org/src/gpgme-1.13.1.tar.bz2 +--2021-04-21 22:03:51-- https://dev-www.libreoffice.org/src/gpgme-1.13.1.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1759616 (1,7M) [application/octet-stream] Wird in ‘./gpgme-1.13.1.tar.bz2’ gespeichert. - 0K ........ ........ ........ .. 100% 2,05M=0,8s + 0K ........ ........ ........ .. 100% 1012K=1,7s -2021-02-20 08:40:59 (2,05 MB/s) - ‘./gpgme-1.13.1.tar.bz2’ gespeichert [1759616/1759616] +2021-04-21 22:03:53 (1012 KB/s) - ‘./gpgme-1.13.1.tar.bz2’ gespeichert [1759616/1759616] ---2021-02-20 08:40:59-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz +--2021-04-21 22:03:53-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 149974 (146K) [application/octet-stream] Wird in ‘./graphite2-minimal-1.3.14.tgz’ gespeichert. - 0K .. 100% 1,53M=0,09s + 0K .. 100% 1,12M=0,1s -2021-02-20 08:40:59 (1,53 MB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] +2021-04-21 22:03:53 (1,12 MB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] ---2021-02-20 08:40:59-- https://dev-www.libreoffice.org/src/harfbuzz-2.6.0.tar.xz +--2021-04-21 22:03:53-- https://dev-www.libreoffice.org/src/harfbuzz-2.6.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5736808 (5,5M) [application/octet-stream] Wird in ‘./harfbuzz-2.6.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 54% 1,17M 2s - 3072K ........ ........ ........ ........ ....... 100% 896K=5,4s + 0K ........ ........ ........ ........ ........ ........ 54% 1,50M 2s + 3072K ........ ........ ........ ........ ....... 100% 1,55M=3,6s -2021-02-20 08:41:05 (1,01 MB/s) - ‘./harfbuzz-2.6.0.tar.xz’ gespeichert [5736808/5736808] +2021-04-21 22:03:57 (1,52 MB/s) - ‘./harfbuzz-2.6.0.tar.xz’ gespeichert [5736808/5736808] ---2021-02-20 08:41:05-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +--2021-04-21 22:03:57-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3519470 (3,4M) [application/zip] Wird in ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 89% 1,53M 0s - 3072K ..... 100% 1,31M=2,2s + 0K ........ ........ ........ ........ ........ ........ 89% 762K 0s + 3072K ..... 100% 933K=4,4s -2021-02-20 08:41:07 (1,50 MB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] +2021-04-21 22:04:02 (777 KB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] ---2021-02-20 08:41:07-- https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz +--2021-04-21 22:04:02-- https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 938142 (916K) [application/octet-stream] Wird in ‘./hunspell-1.7.0.tar.gz’ gespeichert. - 0K ........ ...... 100% 1,60M=0,6s + 0K ........ ...... 100% 998K=0,9s -2021-02-20 08:41:08 (1,60 MB/s) - ‘./hunspell-1.7.0.tar.gz’ gespeichert [938142/938142] +2021-04-21 22:04:03 (998 KB/s) - ‘./hunspell-1.7.0.tar.gz’ gespeichert [938142/938142] ---2021-02-20 08:41:08-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +--2021-04-21 22:04:03-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 638369 (623K) [application/octet-stream] Wird in ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert. - 0K ........ . 100% 1,49M=0,4s + 0K ........ . 100% 1,24M=0,5s -2021-02-20 08:41:09 (1,49 MB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] +2021-04-21 22:04:04 (1,24 MB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] ---2021-02-20 08:41:09-- https://dev-www.libreoffice.org/src/icu4c-68_1-src.tgz +--2021-04-21 22:04:04-- https://dev-www.libreoffice.org/src/icu4c-68_1-src.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 24722348 (24M) [application/octet-stream] Wird in ‘./icu4c-68_1-src.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 12% 1,47M 14s - 3072K ........ ........ ........ ........ ........ ........ 25% 1,79M 11s - 6144K ........ ........ ........ ........ ........ ........ 38% 1,39M 10s - 9216K ........ ........ ........ ........ ........ ........ 50% 994K 9s - 12288K ........ ........ ........ ........ ........ ........ 63% 1,63M 6s - 15360K ........ ........ ........ ........ ........ ........ 76% 2,14M 4s - 18432K ........ ........ ........ ........ ........ ........ 89% 1,32M 2s - 21504K ........ ........ ........ ........ ........ . 100% 1,28M=16s + 0K ........ ........ ........ ........ ........ ........ 12% 966K 22s + 3072K ........ ........ ........ ........ ........ ........ 25% 1,13M 17s + 6144K ........ ........ ........ ........ ........ ........ 38% 1,89M 12s + 9216K ........ ........ ........ ........ ........ ........ 50% 1,56M 9s + 12288K ........ ........ ........ ........ ........ ........ 63% 1,43M 7s + 15360K ........ ........ ........ ........ ........ ........ 76% 979K 5s + 18432K ........ ........ ........ ........ ........ ........ 89% 1,13M 2s + 21504K ........ ........ ........ ........ ........ . 100% 872K=20s -2021-02-20 08:41:25 (1,43 MB/s) - ‘./icu4c-68_1-src.tgz’ gespeichert [24722348/24722348] +2021-04-21 22:04:24 (1,16 MB/s) - ‘./icu4c-68_1-src.tgz’ gespeichert [24722348/24722348] ---2021-02-20 08:41:26-- https://dev-www.libreoffice.org/src/icu4c-68_1-data.zip +--2021-04-21 22:04:24-- https://dev-www.libreoffice.org/src/icu4c-68_1-data.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 16819610 (16M) [application/zip] Wird in ‘./icu4c-68_1-data.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 18% 1,23M 11s - 3072K ........ ........ ........ ........ ........ ........ 37% 1,41M 8s - 6144K ........ ........ ........ ........ ........ ........ 56% 1,64M 5s - 9216K ........ ........ ........ ........ ........ ........ 74% 1,76M 3s - 12288K ........ ........ ........ ........ ........ ........ 93% 2,11M 1s - 15360K ........ ........ 100% 2,57M=9,9s + 0K ........ ........ ........ ........ ........ ........ 18% 832K 16s + 3072K ........ ........ ........ ........ ........ ........ 37% 1017K 11s + 6144K ........ ........ ........ ........ ........ ........ 56% 742K 8s + 9216K ........ ........ ........ ........ ........ ........ 74% 1,04M 5s + 12288K ........ ........ ........ ........ ........ ........ 93% 1,22M 1s + 15360K ........ ........ 100% 1,11M=17s -2021-02-20 08:41:36 (1,62 MB/s) - ‘./icu4c-68_1-data.zip’ gespeichert [16819610/16819610] +2021-04-21 22:04:42 (958 KB/s) - ‘./icu4c-68_1-data.zip’ gespeichert [16819610/16819610] ---2021-02-20 08:41:36-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +--2021-04-21 22:04:42-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 743031 (726K) [application/zip] Wird in ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert. - 0K ........ ... 100% 1,74M=0,4s + 0K ........ ... 100% 1,27M=0,6s -2021-02-20 08:41:37 (1,74 MB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] +2021-04-21 22:04:43 (1,27 MB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] ---2021-02-20 08:41:37-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +--2021-04-21 22:04:43-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207563 (203K) [application/zip] Wird in ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert. - 0K ... 100% 1,37M=0,1s + 0K ... 100% 1,16M=0,2s -2021-02-20 08:41:37 (1,37 MB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] +2021-04-21 22:04:43 (1,16 MB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] ---2021-02-20 08:41:37-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +--2021-04-21 22:04:43-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 427800 (418K) [application/zip] Wird in ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert. - 0K ...... 100% 1,43M=0,3s + 0K ...... 100% 1,13M=0,4s -2021-02-20 08:41:38 (1,43 MB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] +2021-04-21 22:04:44 (1,13 MB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] ---2021-02-20 08:41:38-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +--2021-04-21 22:04:44-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5750610 (5,5M) [application/zip] Wird in ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 54% 2,34M 1s - 3072K ........ ........ ........ ........ ....... 100% 3,04M=2,1s + 0K ........ ........ ........ ........ ........ ........ 54% 1,33M 2s + 3072K ........ ........ ........ ........ ....... 100% 938K=5,0s -2021-02-20 08:41:40 (2,61 MB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] +2021-04-21 22:04:49 (1,10 MB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] ---2021-02-20 08:41:40-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +--2021-04-21 22:04:49-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1180582 (1,1M) [application/zip] Wird in ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert. - 0K ........ ........ .. 100% 1,85M=0,6s + 0K ........ ........ .. 100% 1,18M=1,0s -2021-02-20 08:41:41 (1,85 MB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] +2021-04-21 22:04:50 (1,18 MB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] ---2021-02-20 08:41:41-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +--2021-04-21 22:04:50-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1396007 (1,3M) [application/zip] Wird in ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert. - 0K ........ ........ ..... 100% 1,50M=0,9s + 0K ........ ........ ..... 100% 1,65M=0,8s -2021-02-20 08:41:42 (1,50 MB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] +2021-04-21 22:04:51 (1,65 MB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] ---2021-02-20 08:41:42-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +--2021-04-21 22:04:51-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2938721 (2,8M) [application/zip] Wird in ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 1,09M=2,6s + 0K ........ ........ ........ ........ ........ .... 100% 1,42M=2,0s -2021-02-20 08:41:45 (1,09 MB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] +2021-04-21 22:04:54 (1,42 MB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] ---2021-02-20 08:41:45-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +--2021-04-21 22:04:54-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 762419 (745K) [application/zip] Wird in ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert. - 0K ........ ... 100% 1,20M=0,6s + 0K ........ ... 100% 1,15M=0,6s -2021-02-20 08:41:46 (1,20 MB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] +2021-04-21 22:04:55 (1,15 MB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] ---2021-02-20 08:41:46-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +--2021-04-21 22:04:55-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 211919 (207K) [application/zip] Wird in ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert. - 0K ... 100% 1,00M=0,2s + 0K ... 100% 1,20M=0,2s -2021-02-20 08:41:46 (1,00 MB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] +2021-04-21 22:04:55 (1,20 MB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] ---2021-02-20 08:41:46-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +--2021-04-21 22:04:55-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2929311 (2,8M) [application/zip] Wird in ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 1,51M=1,9s + 0K ........ ........ ........ ........ ........ .... 100% 1,17M=2,4s -2021-02-20 08:41:48 (1,51 MB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] +2021-04-21 22:04:58 (1,17 MB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] ---2021-02-20 08:41:48-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +--2021-04-21 22:04:58-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 153157 (150K) [application/zip] Wird in ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert. - 0K .. 100% 1,26M=0,1s + 0K .. 100% 588K=0,3s -2021-02-20 08:41:49 (1,26 MB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] +2021-04-21 22:04:58 (588 KB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] ---2021-02-20 08:41:49-- https://dev-www.libreoffice.org/src/libjpeg-turbo-1.5.3.tar.gz +--2021-04-21 22:04:58-- https://dev-www.libreoffice.org/src/libjpeg-turbo-1.5.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1658672 (1,6M) [application/octet-stream] Wird in ‘./libjpeg-turbo-1.5.3.tar.gz’ gespeichert. - 0K ........ ........ ........ . 100% 2,01M=0,8s + 0K ........ ........ ........ . 100% 617K=2,6s -2021-02-20 08:41:50 (2,01 MB/s) - ‘./libjpeg-turbo-1.5.3.tar.gz’ gespeichert [1658672/1658672] +2021-04-21 22:05:01 (617 KB/s) - ‘./libjpeg-turbo-1.5.3.tar.gz’ gespeichert [1658672/1658672] ---2021-02-20 08:41:50-- https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 +--2021-04-21 22:05:01-- https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 37482428 (36M) [application/octet-stream] Wird in ‘./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 8% 2,18M 15s - 3072K ........ ........ ........ ........ ........ ........ 16% 1,59M 16s - 6144K ........ ........ ........ ........ ........ ........ 25% 1,73M 15s - 9216K ........ ........ ........ ........ ........ ........ 33% 1,68M 13s - 12288K ........ ........ ........ ........ ........ ........ 41% 746K 15s - 15360K ........ ........ ........ ........ ........ ........ 50% 1,46M 13s - 18432K ........ ........ ........ ........ ........ ........ 58% 2,25M 10s - 21504K ........ ........ ........ ........ ........ ........ 67% 1,91M 8s - 24576K ........ ........ ........ ........ ........ ........ 75% 1,63M 6s - 27648K ........ ........ ........ ........ ........ ........ 83% 1,70M 4s - 30720K ........ ........ ........ ........ ........ ........ 92% 996K 2s - 33792K ........ ........ ........ ........ ........ ... 100% 1,58M=24s + 0K ........ ........ ........ ........ ........ ........ 8% 1,09M 30s + 3072K ........ ........ ........ ........ ........ ........ 16% 1,75M 22s + 6144K ........ ........ ........ ........ ........ ........ 25% 1,67M 19s + 9216K ........ ........ ........ ........ ........ ........ 33% 1,07M 18s + 12288K ........ ........ ........ ........ ........ ........ 41% 1,06M 16s + 15360K ........ ........ ........ ........ ........ ........ 50% 845K 15s + 18432K ........ ........ ........ ........ ........ ........ 58% 788K 14s + 21504K ........ ........ ........ ........ ........ ........ 67% 1,04M 11s + 24576K ........ ........ ........ ........ ........ ........ 75% 805K 8s + 27648K ........ ........ ........ ........ ........ ........ 83% 729K 6s + 30720K ........ ........ ........ ........ ........ ........ 92% 1,31M 3s + 33792K ........ ........ ........ ........ ........ ... 100% 638K=37s -2021-02-20 08:42:14 (1,47 MB/s) - ‘./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2’ gespeichert [37482428/37482428] +2021-04-21 22:05:38 (989 KB/s) - ‘./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2’ gespeichert [37482428/37482428] ---2021-02-20 08:42:15-- https://dev-www.libreoffice.org/src/lcms2-2.11.tar.gz +--2021-04-21 22:05:39-- https://dev-www.libreoffice.org/src/lcms2-2.11.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6574121 (6,3M) [application/octet-stream] Wird in ‘./lcms2-2.11.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 2,13M 2s - 3072K ........ ........ ........ ........ ........ ........ 95% 2,21M 0s - 6144K .... 100% 2,13M=2,9s + 0K ........ ........ ........ ........ ........ ........ 47% 1,61M 2s + 3072K ........ ........ ........ ........ ........ ........ 95% 1,94M 0s + 6144K .... 100% 1,50M=3,6s -2021-02-20 08:42:18 (2,17 MB/s) - ‘./lcms2-2.11.tar.gz’ gespeichert [6574121/6574121] +2021-04-21 22:05:43 (1,75 MB/s) - ‘./lcms2-2.11.tar.gz’ gespeichert [6574121/6574121] ---2021-02-20 08:42:18-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz +--2021-04-21 22:05:43-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 503550 (492K) [application/octet-stream] Wird in ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert. - 0K ....... 100% 1,74M=0,3s + 0K ....... 100% 1,39M=0,3s -2021-02-20 08:42:18 (1,74 MB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] +2021-04-21 22:05:43 (1,39 MB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] ---2021-02-20 08:42:18-- https://dev-www.libreoffice.org/src/libassuan-2.5.3.tar.bz2 +--2021-04-21 22:05:43-- https://dev-www.libreoffice.org/src/libassuan-2.5.3.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 572348 (559K) [application/octet-stream] Wird in ‘./libassuan-2.5.3.tar.bz2’ gespeichert. - 0K ........ 100% 1,67M=0,3s + 0K ........ 100% 1,45M=0,4s -2021-02-20 08:42:19 (1,67 MB/s) - ‘./libassuan-2.5.3.tar.bz2’ gespeichert [572348/572348] +2021-04-21 22:05:44 (1,45 MB/s) - ‘./libassuan-2.5.3.tar.bz2’ gespeichert [572348/572348] ---2021-02-20 08:42:19-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +--2021-04-21 22:05:44-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 260288 (254K) [application/octet-stream] Wird in ‘./libeot-0.01.tar.bz2’ gespeichert. - 0K ... 100% 1,49M=0,2s + 0K ... 100% 1,28M=0,2s -2021-02-20 08:42:19 (1,49 MB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] +2021-04-21 22:05:44 (1,28 MB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] ---2021-02-20 08:42:19-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz +--2021-04-21 22:05:44-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.5.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1041268 (1017K) [application/octet-stream] Wird in ‘./libexttextcat-3.4.5.tar.xz’ gespeichert. - 0K ........ ....... 100% 1,89M=0,5s + 0K ........ ....... 100% 1,19M=0,8s -2021-02-20 08:42:20 (1,89 MB/s) - ‘./libexttextcat-3.4.5.tar.xz’ gespeichert [1041268/1041268] +2021-04-21 22:05:45 (1,19 MB/s) - ‘./libexttextcat-3.4.5.tar.xz’ gespeichert [1041268/1041268] ---2021-02-20 08:42:20-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz +--2021-04-21 22:05:46-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1305466 (1,2M) [application/octet-stream] Wird in ‘./libffi-3.3.tar.gz’ gespeichert. - 0K ........ ........ ... 100% 2,01M=0,6s + 0K ........ ........ ... 100% 1,18M=1,1s -2021-02-20 08:42:21 (2,01 MB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] +2021-04-21 22:05:47 (1,18 MB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] ---2021-02-20 08:42:21-- https://dev-www.libreoffice.org/src/libgpg-error-1.37.tar.bz2 +--2021-04-21 22:05:47-- https://dev-www.libreoffice.org/src/libgpg-error-1.37.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 937282 (915K) [application/octet-stream] Wird in ‘./libgpg-error-1.37.tar.bz2’ gespeichert. - 0K ........ ...... 100% 1,84M=0,5s + 0K ........ ...... 100% 1,40M=0,6s -2021-02-20 08:42:22 (1,84 MB/s) - ‘./libgpg-error-1.37.tar.bz2’ gespeichert [937282/937282] +2021-04-21 22:05:48 (1,40 MB/s) - ‘./libgpg-error-1.37.tar.bz2’ gespeichert [937282/937282] ---2021-02-20 08:42:22-- https://dev-www.libreoffice.org/src/language-subtag-registry-2020-12-18.tar.bz2 +--2021-04-21 22:05:48-- https://dev-www.libreoffice.org/src/language-subtag-registry-2020-12-18.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK @@ -702,826 +702,826 @@ 0K . 100% 1,50M=0,05s -2021-02-20 08:42:22 (1,50 MB/s) - ‘./language-subtag-registry-2020-12-18.tar.bz2’ gespeichert [76408/76408] +2021-04-21 22:05:48 (1,50 MB/s) - ‘./language-subtag-registry-2020-12-18.tar.bz2’ gespeichert [76408/76408] ---2021-02-20 08:42:22-- https://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 +--2021-04-21 22:05:48-- https://dev-www.libreoffice.org/src/liblangtag-0.6.2.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 766080 (748K) [application/octet-stream] Wird in ‘./liblangtag-0.6.2.tar.bz2’ gespeichert. - 0K ........ ... 100% 1,48M=0,5s + 0K ........ ... 100% 1,35M=0,5s -2021-02-20 08:42:23 (1,48 MB/s) - ‘./liblangtag-0.6.2.tar.bz2’ gespeichert [766080/766080] +2021-04-21 22:05:49 (1,35 MB/s) - ‘./liblangtag-0.6.2.tar.bz2’ gespeichert [766080/766080] ---2021-02-20 08:42:23-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.7.tar.xz +--2021-04-21 22:05:49-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 289764 (283K) [application/octet-stream] Wird in ‘./libnumbertext-1.0.7.tar.xz’ gespeichert. - 0K .... 100% 1,36M=0,2s + 0K .... 100% 334K=0,8s -2021-02-20 08:42:23 (1,36 MB/s) - ‘./libnumbertext-1.0.7.tar.xz’ gespeichert [289764/289764] +2021-04-21 22:05:50 (334 KB/s) - ‘./libnumbertext-1.0.7.tar.xz’ gespeichert [289764/289764] ---2021-02-20 08:42:23-- https://dev-www.libreoffice.org/src/libpng-1.6.37.tar.xz +--2021-04-21 22:05:50-- https://dev-www.libreoffice.org/src/libpng-1.6.37.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1012272 (989K) [application/octet-stream] Wird in ‘./libpng-1.6.37.tar.xz’ gespeichert. - 0K ........ ....... 100% 1,73M=0,6s + 0K ........ ....... 100% 802K=1,2s -2021-02-20 08:42:24 (1,73 MB/s) - ‘./libpng-1.6.37.tar.xz’ gespeichert [1012272/1012272] +2021-04-21 22:05:52 (802 KB/s) - ‘./libpng-1.6.37.tar.xz’ gespeichert [1012272/1012272] ---2021-02-20 08:42:24-- https://dev-www.libreoffice.org/src/ltm-1.0.zip +--2021-04-21 22:05:52-- https://dev-www.libreoffice.org/src/ltm-1.0.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2542693 (2,4M) [application/zip] Wird in ‘./ltm-1.0.zip’ gespeichert. - 0K ........ ........ ........ ........ ...... 100% 1,57M=1,5s + 0K ........ ........ ........ ........ ...... 100% 1,41M=1,7s -2021-02-20 08:42:26 (1,57 MB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] +2021-04-21 22:05:54 (1,41 MB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] ---2021-02-20 08:42:26-- https://dev-www.libreoffice.org/src/libxml2-2.9.10.tar.gz +--2021-04-21 22:05:54-- https://dev-www.libreoffice.org/src/libxml2-2.9.10.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5624761 (5,4M) [application/octet-stream] Wird in ‘./libxml2-2.9.10.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 55% 2,33M 1s - 3072K ........ ........ ........ ........ ..... 100% 3,04M=2,1s + 0K ........ ........ ........ ........ ........ ........ 55% 2,50M 1s + 3072K ........ ........ ........ ........ ..... 100% 3,01M=2,0s -2021-02-20 08:42:28 (2,60 MB/s) - ‘./libxml2-2.9.10.tar.gz’ gespeichert [5624761/5624761] +2021-04-21 22:05:56 (2,70 MB/s) - ‘./libxml2-2.9.10.tar.gz’ gespeichert [5624761/5624761] ---2021-02-20 08:42:28-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.30.tar.gz +--2021-04-21 22:05:56-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.30.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1989670 (1,9M) [application/octet-stream] Wird in ‘./xmlsec1-1.2.30.tar.gz’ gespeichert. - 0K ........ ........ ........ ...... 100% 2,18M=0,9s + 0K ........ ........ ........ ...... 100% 2,19M=0,9s -2021-02-20 08:42:30 (2,18 MB/s) - ‘./xmlsec1-1.2.30.tar.gz’ gespeichert [1989670/1989670] +2021-04-21 22:05:57 (2,19 MB/s) - ‘./xmlsec1-1.2.30.tar.gz’ gespeichert [1989670/1989670] ---2021-02-20 08:42:30-- https://dev-www.libreoffice.org/src/libxslt-1.1.34.tar.gz +--2021-04-21 22:05:57-- https://dev-www.libreoffice.org/src/libxslt-1.1.34.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3552258 (3,4M) [application/octet-stream] Wird in ‘./libxslt-1.1.34.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 88% 2,55M 0s - 3072K ...... 100% 2,36M=1,3s + 0K ........ ........ ........ ........ ........ ........ 88% 1,76M 0s + 3072K ...... 100% 1,01M=2,1s -2021-02-20 08:42:31 (2,52 MB/s) - ‘./libxslt-1.1.34.tar.gz’ gespeichert [3552258/3552258] +2021-04-21 22:05:59 (1,62 MB/s) - ‘./libxslt-1.1.34.tar.gz’ gespeichert [3552258/3552258] ---2021-02-20 08:42:31-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +--2021-04-21 22:05:59-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 769268 (751K) [application/octet-stream] Wird in ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert. - 0K ........ ... 100% 2,23M=0,3s + 0K ........ ... 100% 1,04M=0,7s -2021-02-20 08:42:32 (2,23 MB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] +2021-04-21 22:06:00 (1,04 MB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] ---2021-02-20 08:42:32-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz +--2021-04-21 22:06:00-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2380804 (2,3M) [application/octet-stream] Wird in ‘./lxml-4.1.1.tgz’ gespeichert. - 0K ........ ........ ........ ........ .... 100% 2,67M=0,8s + 0K ........ ........ ........ ........ .... 100% 1,69M=1,3s -2021-02-20 08:42:33 (2,67 MB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] +2021-04-21 22:06:02 (1,69 MB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] ---2021-02-20 08:42:33-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz +--2021-04-21 22:06:02-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 744745 (727K) [application/octet-stream] Wird in ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert. - 0K ........ ... 100% 1,95M=0,4s + 0K ........ ... 100% 1,93M=0,4s -2021-02-20 08:42:34 (1,95 MB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] +2021-04-21 22:06:03 (1,93 MB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] ---2021-02-20 08:42:34-- https://dev-www.libreoffice.org/src/mdds-1.7.0.tar.bz2 +--2021-04-21 22:06:03-- https://dev-www.libreoffice.org/src/mdds-1.7.0.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 363514 (355K) [application/octet-stream] Wird in ‘./mdds-1.7.0.tar.bz2’ gespeichert. - 0K ..... 100% 1,62M=0,2s + 0K ..... 100% 1,68M=0,2s -2021-02-20 08:42:34 (1,62 MB/s) - ‘./mdds-1.7.0.tar.bz2’ gespeichert [363514/363514] +2021-04-21 22:06:03 (1,68 MB/s) - ‘./mdds-1.7.0.tar.bz2’ gespeichert [363514/363514] ---2021-02-20 08:42:34-- https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz +--2021-04-21 22:06:03-- https://dev-www.libreoffice.org/src/QR-Code-generator-1.4.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 146339 (143K) [application/octet-stream] Wird in ‘./QR-Code-generator-1.4.0.tar.gz’ gespeichert. - 0K .. 100% 1,51M=0,09s + 0K .. 100% 1,48M=0,09s -2021-02-20 08:42:34 (1,51 MB/s) - ‘./QR-Code-generator-1.4.0.tar.gz’ gespeichert [146339/146339] +2021-04-21 22:06:03 (1,48 MB/s) - ‘./QR-Code-generator-1.4.0.tar.gz’ gespeichert [146339/146339] ---2021-02-20 08:42:34-- https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz +--2021-04-21 22:06:04-- https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2537410 (2,4M) [application/octet-stream] Wird in ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ...... 100% 1,89M=1,3s + 0K ........ ........ ........ ........ ...... 100% 1,61M=1,5s -2021-02-20 08:42:36 (1,89 MB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] +2021-04-21 22:06:05 (1,61 MB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] ---2021-02-20 08:42:36-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +--2021-04-21 22:06:05-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 112756 (110K) [application/octet-stream] Wird in ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert. - 0K . 100% 1,31M=0,08s + 0K . 100% 1,28M=0,08s -2021-02-20 08:42:36 (1,31 MB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] +2021-04-21 22:06:06 (1,28 MB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] ---2021-02-20 08:42:36-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +--2021-04-21 22:06:06-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1169488 (1,1M) [application/octet-stream] Wird in ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert. - 0K ........ ........ . 100% 1,80M=0,6s + 0K ........ ........ . 100% 1,69M=0,7s -2021-02-20 08:42:37 (1,80 MB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] +2021-04-21 22:06:07 (1,69 MB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] ---2021-02-20 08:42:37-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +--2021-04-21 22:06:07-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5522795 (5,3M) [application/zip] Wird in ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 56% 877K 3s - 3072K ........ ........ ........ ........ .... 100% 1,51M=5,0s + 0K ........ ........ ........ ........ ........ ........ 56% 1,66M 1s + 3072K ........ ........ ........ ........ .... 100% 1,37M=3,5s -2021-02-20 08:42:43 (1,05 MB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] +2021-04-21 22:06:10 (1,52 MB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] ---2021-02-20 08:42:43-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +--2021-04-21 22:06:10-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 811606 (793K) [application/zip] Wird in ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert. - 0K ........ .... 100% 1,30M=0,6s + 0K ........ .... 100% 1,12M=0,7s -2021-02-20 08:42:43 (1,30 MB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] +2021-04-21 22:06:11 (1,12 MB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] ---2021-02-20 08:42:44-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz +--2021-04-21 22:06:11-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 300832 (294K) [application/octet-stream] Wird in ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert. - 0K .... 100% 1,37M=0,2s + 0K .... 100% 1,00M=0,3s -2021-02-20 08:42:44 (1,37 MB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] +2021-04-21 22:06:12 (1,00 MB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] ---2021-02-20 08:42:44-- https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.00.4.tar.gz +--2021-04-21 22:06:12-- https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.00.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2355235 (2,2M) [application/octet-stream] Wird in ‘./liberation-fonts-ttf-2.00.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ... 100% 1,43M=1,6s + 0K ........ ........ ........ ........ ... 100% 1,77M=1,3s -2021-02-20 08:42:46 (1,43 MB/s) - ‘./liberation-fonts-ttf-2.00.4.tar.gz’ gespeichert [2355235/2355235] +2021-04-21 22:06:13 (1,77 MB/s) - ‘./liberation-fonts-ttf-2.00.4.tar.gz’ gespeichert [2355235/2355235] ---2021-02-20 08:42:46-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +--2021-04-21 22:06:13-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6651982 (6,3M) [application/zip] Wird in ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 1,02M 3s - 3072K ........ ........ ........ ........ ........ ........ 94% 1,67M 0s - 6144K ..... 100% 2,20M=4,9s + 0K ........ ........ ........ ........ ........ ........ 47% 1,36M 2s + 3072K ........ ........ ........ ........ ........ ........ 94% 923K 0s + 6144K ..... 100% 1,11M=5,8s -2021-02-20 08:42:51 (1,30 MB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] +2021-04-21 22:06:20 (1,08 MB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] ---2021-02-20 08:42:51-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz +--2021-04-21 22:06:20-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1338551 (1,3M) [application/octet-stream] Wird in ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert. - 0K ........ ........ .... 100% 1,49M=0,9s + 0K ........ ........ .... 100% 597K=2,2s -2021-02-20 08:42:52 (1,49 MB/s) - ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert [1338551/1338551] +2021-04-21 22:06:22 (597 KB/s) - ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert [1338551/1338551] ---2021-02-20 08:42:52-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz +--2021-04-21 22:06:22-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1098827 (1,0M) [application/octet-stream] Wird in ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert. - 0K ........ ........ 100% 1,62M=0,6s + 0K ........ ........ 100% 802K=1,3s -2021-02-20 08:42:53 (1,62 MB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] +2021-04-21 22:06:24 (802 KB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] ---2021-02-20 08:42:53-- https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz +--2021-04-21 22:06:24-- https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1135588 (1,1M) [application/octet-stream] Wird in ‘./source-serif-pro-3.000R.tar.gz’ gespeichert. - 0K ........ ........ . 100% 1,72M=0,6s + 0K ........ ........ . 100% 1,18M=0,9s -2021-02-20 08:42:54 (1,72 MB/s) - ‘./source-serif-pro-3.000R.tar.gz’ gespeichert [1135588/1135588] +2021-04-21 22:06:25 (1,18 MB/s) - ‘./source-serif-pro-3.000R.tar.gz’ gespeichert [1135588/1135588] ---2021-02-20 08:42:54-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz +--2021-04-21 22:06:25-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2961759 (2,8M) [application/octet-stream] Wird in ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ..... 100% 2,31M=1,2s + 0K ........ ........ ........ ........ ........ ..... 100% 1,56M=1,8s -2021-02-20 08:42:55 (2,31 MB/s) - ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert [2961759/2961759] +2021-04-21 22:06:27 (1,56 MB/s) - ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert [2961759/2961759] ---2021-02-20 08:42:55-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz +--2021-04-21 22:06:27-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6646182 (6,3M) [application/octet-stream] Wird in ‘./noto-fonts-20171024.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 1,22M 3s - 3072K ........ ........ ........ ........ ........ ........ 94% 1,12M 0s - 6144K ..... 100% 1,08M=5,4s + 0K ........ ........ ........ ........ ........ ........ 47% 1,71M 2s + 3072K ........ ........ ........ ........ ........ ........ 94% 743K 0s + 6144K ..... 100% 738K=6,4s -2021-02-20 08:43:01 (1,16 MB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] +2021-04-21 22:06:34 (1020 KB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] ---2021-02-20 08:43:01-- https://dev-www.libreoffice.org/src/culmus-0.131.tar.gz +--2021-04-21 22:06:34-- https://dev-www.libreoffice.org/src/culmus-0.131.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1076737 (1,0M) [application/octet-stream] Wird in ‘./culmus-0.131.tar.gz’ gespeichert. - 0K ........ ........ 100% 994K=1,1s + 0K ........ ........ 100% 713K=1,5s -2021-02-20 08:43:03 (994 KB/s) - ‘./culmus-0.131.tar.gz’ gespeichert [1076737/1076737] +2021-04-21 22:06:35 (713 KB/s) - ‘./culmus-0.131.tar.gz’ gespeichert [1076737/1076737] ---2021-02-20 08:43:03-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz +--2021-04-21 22:06:35-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 531276 (519K) [application/octet-stream] Wird in ‘./libre-hebrew-1.0.tar.gz’ gespeichert. - 0K ........ 100% 1,13M=0,4s + 0K ........ 100% 934K=0,6s -2021-02-20 08:43:03 (1,13 MB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] +2021-04-21 22:06:36 (934 KB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] ---2021-02-20 08:43:03-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz +--2021-04-21 22:06:36-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 93498 (91K) [application/octet-stream] Wird in ‘./alef-1.001.tar.gz’ gespeichert. - 0K . 100% 1,08M=0,08s + 0K . 100% 1,03M=0,09s -2021-02-20 08:43:04 (1,08 MB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] +2021-04-21 22:06:37 (1,03 MB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] ---2021-02-20 08:43:04-- https://dev-www.libreoffice.org/src/Amiri-0.111.zip +--2021-04-21 22:06:37-- https://dev-www.libreoffice.org/src/Amiri-0.111.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1423863 (1,4M) [application/zip] Wird in ‘./Amiri-0.111.zip’ gespeichert. - 0K ........ ........ ..... 100% 1,23M=1,1s + 0K ........ ........ ..... 100% 841K=1,7s -2021-02-20 08:43:05 (1,23 MB/s) - ‘./Amiri-0.111.zip’ gespeichert [1423863/1423863] +2021-04-21 22:06:39 (841 KB/s) - ‘./Amiri-0.111.zip’ gespeichert [1423863/1423863] ---2021-02-20 08:43:05-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz +--2021-04-21 22:06:39-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 407400 (398K) [application/octet-stream] Wird in ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert. - 0K ...... 100% 991K=0,4s + 0K ...... 100% 815K=0,5s -2021-02-20 08:43:06 (991 KB/s) - ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert [407400/407400] +2021-04-21 22:06:39 (815 KB/s) - ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert [407400/407400] ---2021-02-20 08:43:06-- https://dev-www.libreoffice.org/src/ReemKufi-0.7.zip +--2021-04-21 22:06:39-- https://dev-www.libreoffice.org/src/ReemKufi-0.7.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 153832 (150K) [application/zip] Wird in ‘./ReemKufi-0.7.zip’ gespeichert. - 0K .. 100% 937K=0,2s + 0K .. 100% 743K=0,2s -2021-02-20 08:43:06 (937 KB/s) - ‘./ReemKufi-0.7.zip’ gespeichert [153832/153832] +2021-04-21 22:06:40 (743 KB/s) - ‘./ReemKufi-0.7.zip’ gespeichert [153832/153832] ---2021-02-20 08:43:06-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip +--2021-04-21 22:06:40-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1114645 (1,1M) [application/zip] Wird in ‘./Scheherazade-2.100.zip’ gespeichert. - 0K ........ ........ . 100% 1,24M=0,9s + 0K ........ ........ . 100% 1,05M=1,0s -2021-02-20 08:43:07 (1,24 MB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] +2021-04-21 22:06:41 (1,05 MB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] ---2021-02-20 08:43:07-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz +--2021-04-21 22:06:41-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 377472 (369K) [application/octet-stream] Wird in ‘./libmspub-0.1.4.tar.xz’ gespeichert. - 0K ..... 100% 1,24M=0,3s + 0K ..... 100% 1,20M=0,3s -2021-02-20 08:43:08 (1,24 MB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] +2021-04-21 22:06:42 (1,20 MB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] ---2021-02-20 08:43:08-- https://dev-www.libreoffice.org/src/libmwaw-0.3.17.tar.xz +--2021-04-21 22:06:42-- https://dev-www.libreoffice.org/src/libmwaw-0.3.17.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1349700 (1,3M) [application/octet-stream] Wird in ‘./libmwaw-0.3.17.tar.xz’ gespeichert. - 0K ........ ........ .... 100% 1,62M=0,8s + 0K ........ ........ .... 100% 773K=1,7s -2021-02-20 08:43:09 (1,62 MB/s) - ‘./libmwaw-0.3.17.tar.xz’ gespeichert [1349700/1349700] +2021-04-21 22:06:44 (773 KB/s) - ‘./libmwaw-0.3.17.tar.xz’ gespeichert [1349700/1349700] ---2021-02-20 08:43:09-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz +--2021-04-21 22:06:44-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 4910303 (4,7M) [application/octet-stream] Wird in ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 64% 1022K 2s - 3072K ........ ........ ........ .. 100% 1,81M=3,9s + 0K ........ ........ ........ ........ ........ ........ 64% 922K 2s + 3072K ........ ........ ........ .. 100% 1,26M=4,7s -2021-02-20 08:43:13 (1,19 MB/s) - ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert [4910303/4910303] +2021-04-21 22:06:49 (1,00 MB/s) - ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert [4910303/4910303] ---2021-02-20 08:43:13-- https://dev-www.libreoffice.org/src/neon-0.31.1.tar.gz +--2021-04-21 22:06:49-- https://dev-www.libreoffice.org/src/neon-0.31.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 867810 (847K) [application/octet-stream] -Wird in ‘./neon-0.31.1.tar.gz’ gespeichert. +Länge: 867914 (848K) [application/octet-stream] +Wird in ‘./neon-0.31.2.tar.gz’ gespeichert. - 0K ........ ..... 100% 1,41M=0,6s + 0K ........ ..... 100% 1,43M=0,6s -2021-02-20 08:43:14 (1,41 MB/s) - ‘./neon-0.31.1.tar.gz’ gespeichert [867810/867810] +2021-04-21 22:06:49 (1,43 MB/s) - ‘./neon-0.31.2.tar.gz’ gespeichert [867914/867914] ---2021-02-20 08:43:14-- https://dev-www.libreoffice.org/src/nss-3.55-with-nspr-4.27.tar.gz +--2021-04-21 22:06:50-- https://dev-www.libreoffice.org/src/nss-3.55-with-nspr-4.27.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 83363019 (80M) [application/octet-stream] Wird in ‘./nss-3.55-with-nspr-4.27.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 3% 1,91M 40s - 3072K ........ ........ ........ ........ ........ ........ 7% 1,19M 50s - 6144K ........ ........ ........ ........ ........ ........ 11% 1,16M 52s - 9216K ........ ........ ........ ........ ........ ........ 15% 955K 56s - 12288K ........ ........ ........ ........ ........ ........ 18% 992K 56s - 15360K ........ ........ ........ ........ ........ ........ 22% 1013K 55s - 18432K ........ ........ ........ ........ ........ ........ 26% 1,83M 49s - 21504K ........ ........ ........ ........ ........ ........ 30% 2,06M 44s - 24576K ........ ........ ........ ........ ........ ........ 33% 2,40M 40s - 27648K ........ ........ ........ ........ ........ ........ 37% 2,85M 35s - 30720K ........ ........ ........ ........ ........ ........ 41% 1,50M 33s - 33792K ........ ........ ........ ........ ........ ........ 45% 1,31M 31s - 36864K ........ ........ ........ ........ ........ ........ 49% 1,56M 29s - 39936K ........ ........ ........ ........ ........ ........ 52% 1,32M 27s - 43008K ........ ........ ........ ........ ........ ........ 56% 1,37M 25s - 46080K ........ ........ ........ ........ ........ ........ 60% 1,24M 23s - 49152K ........ ........ ........ ........ ........ ........ 64% 1,01M 21s - 52224K ........ ........ ........ ........ ........ ........ 67% 1,14M 19s - 55296K ........ ........ ........ ........ ........ ........ 71% 1,02M 17s - 58368K ........ ........ ........ ........ ........ ........ 75% 1,06M 15s - 61440K ........ ........ ........ ........ ........ ........ 79% 1,59M 13s - 64512K ........ ........ ........ ........ ........ ........ 83% 1,69M 10s - 67584K ........ ........ ........ ........ ........ ........ 86% 1,67M 8s - 70656K ........ ........ ........ ........ ........ ........ 90% 2,37M 5s - 73728K ........ ........ ........ ........ ........ ........ 94% 1,62M 3s - 76800K ........ ........ ........ ........ ........ ........ 98% 1,59M 1s - 79872K ........ ........ ........ 100% 1,34M=57s + 0K ........ ........ ........ ........ ........ ........ 3% 888K 88s + 3072K ........ ........ ........ ........ ........ ........ 7% 1000K 80s + 6144K ........ ........ ........ ........ ........ ........ 11% 928K 77s + 9216K ........ ........ ........ ........ ........ ........ 15% 549K 87s + 12288K ........ ........ ........ ........ ........ ........ 18% 1,09M 78s + 15360K ........ ........ ........ ........ ........ ........ 22% 860K 74s + 18432K ........ ........ ........ ........ ........ ........ 26% 1,66M 66s + 21504K ........ ........ ........ ........ ........ ........ 30% 984K 62s + 24576K ........ ........ ........ ........ ........ ........ 33% 1,33M 56s + 27648K ........ ........ ........ ........ ........ ........ 37% 1,46M 51s + 30720K ........ ........ ........ ........ ........ ........ 41% 1,03M 48s + 33792K ........ ........ ........ ........ ........ ........ 45% 1,21M 44s + 36864K ........ ........ ........ ........ ........ ........ 49% 1,48M 40s + 39936K ........ ........ ........ ........ ........ ........ 52% 1021K 37s + 43008K ........ ........ ........ ........ ........ ........ 56% 1,76M 33s + 46080K ........ ........ ........ ........ ........ ........ 60% 999K 30s + 49152K ........ ........ ........ ........ ........ ........ 64% 1,22M 27s + 52224K ........ ........ ........ ........ ........ ........ 67% 1,12M 24s + 55296K ........ ........ ........ ........ ........ ........ 71% 911K 22s + 58368K ........ ........ ........ ........ ........ ........ 75% 984K 19s + 61440K ........ ........ ........ ........ ........ ........ 79% 823K 16s + 64512K ........ ........ ........ ........ ........ ........ 83% 1,27M 13s + 67584K ........ ........ ........ ........ ........ ........ 86% 1,52M 10s + 70656K ........ ........ ........ ........ ........ ........ 90% 662K 7s + 73728K ........ ........ ........ ........ ........ ........ 94% 1,41M 4s + 76800K ........ ........ ........ ........ ........ ........ 98% 2,22M 1s + 79872K ........ ........ ........ 100% 1,63M=75s -2021-02-20 08:44:12 (1,38 MB/s) - ‘./nss-3.55-with-nspr-4.27.tar.gz’ gespeichert [83363019/83363019] +2021-04-21 22:08:05 (1,06 MB/s) - ‘./nss-3.55-with-nspr-4.27.tar.gz’ gespeichert [83363019/83363019] ---2021-02-20 08:44:12-- https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 +--2021-04-21 22:08:05-- https://dev-www.libreoffice.org/src/libodfgen-0.1.6.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 446705 (436K) [application/octet-stream] Wird in ‘./libodfgen-0.1.6.tar.bz2’ gespeichert. - 0K ...... 100% 1,29M=0,3s + 0K ...... 100% 727K=0,6s -2021-02-20 08:44:13 (1,29 MB/s) - ‘./libodfgen-0.1.6.tar.bz2’ gespeichert [446705/446705] +2021-04-21 22:08:06 (727 KB/s) - ‘./libodfgen-0.1.6.tar.bz2’ gespeichert [446705/446705] ---2021-02-20 08:44:13-- https://dev-www.libreoffice.org/src/openldap-2.4.45.tgz +--2021-04-21 22:08:06-- https://dev-www.libreoffice.org/src/openldap-2.4.45.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5672845 (5,4M) [application/octet-stream] Wird in ‘./openldap-2.4.45.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 55% 1,94M 1s - 3072K ........ ........ ........ ........ ...... 100% 2,58M=2,5s + 0K ........ ........ ........ ........ ........ ........ 55% 898K 3s + 3072K ........ ........ ........ ........ ...... 100% 1017K=5,8s -2021-02-20 08:44:15 (2,18 MB/s) - ‘./openldap-2.4.45.tgz’ gespeichert [5672845/5672845] +2021-04-21 22:08:12 (947 KB/s) - ‘./openldap-2.4.45.tgz’ gespeichert [5672845/5672845] ---2021-02-20 08:44:16-- https://dev-www.libreoffice.org/src/openssl-1.1.1i.tar.gz +--2021-04-21 22:08:12-- https://dev-www.libreoffice.org/src/openssl-1.1.1i.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9808346 (9,4M) [application/octet-stream] Wird in ‘./openssl-1.1.1i.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 32% 1,29M 5s - 3072K ........ ........ ........ ........ ........ ........ 64% 1,42M 2s - 6144K ........ ........ ........ ........ ........ ........ 96% 1,19M 0s - 9216K ..... 100% 1,53M=7,2s + 0K ........ ........ ........ ........ ........ ........ 32% 766K 8s + 3072K ........ ........ ........ ........ ........ ........ 64% 1,70M 3s + 6144K ........ ........ ........ ........ ........ ........ 96% 1,66M 0s + 9216K ..... 100% 1,23M=7,9s -2021-02-20 08:44:23 (1,30 MB/s) - ‘./openssl-1.1.1i.tar.gz’ gespeichert [9808346/9808346] +2021-04-21 22:08:20 (1,19 MB/s) - ‘./openssl-1.1.1i.tar.gz’ gespeichert [9808346/9808346] ---2021-02-20 08:44:23-- https://dev-www.libreoffice.org/src/liborcus-0.16.1.tar.bz2 +--2021-04-21 22:08:20-- https://dev-www.libreoffice.org/src/liborcus-0.16.1.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2082014 (2,0M) [application/octet-stream] Wird in ‘./liborcus-0.16.1.tar.bz2’ gespeichert. - 0K ........ ........ ........ ....... 100% 1,31M=1,5s + 0K ........ ........ ........ ....... 100% 877K=2,3s -2021-02-20 08:44:25 (1,31 MB/s) - ‘./liborcus-0.16.1.tar.bz2’ gespeichert [2082014/2082014] +2021-04-21 22:08:23 (877 KB/s) - ‘./liborcus-0.16.1.tar.bz2’ gespeichert [2082014/2082014] ---2021-02-20 08:44:25-- https://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz +--2021-04-21 22:08:23-- https://dev-www.libreoffice.org/src/owncloud-android-library-0.9.4-no-binary-deps.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 760676 (743K) [application/octet-stream] Wird in ‘./owncloud-android-library-0.9.4-no-binary-deps.tar.gz’ gespeichert. - 0K ........ ... 100% 1,40M=0,5s + 0K ........ ... 100% 604K=1,2s -2021-02-20 08:44:26 (1,40 MB/s) - ‘./owncloud-android-library-0.9.4-no-binary-deps.tar.gz’ gespeichert [760676/760676] +2021-04-21 22:08:25 (604 KB/s) - ‘./owncloud-android-library-0.9.4-no-binary-deps.tar.gz’ gespeichert [760676/760676] ---2021-02-20 08:44:26-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz +--2021-04-21 22:08:25-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 306496 (299K) [application/octet-stream] Wird in ‘./libpagemaker-0.0.4.tar.xz’ gespeichert. - 0K .... 100% 1,04M=0,3s + 0K .... 100% 626K=0,5s -2021-02-20 08:44:26 (1,04 MB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] +2021-04-21 22:08:25 (626 KB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] ---2021-02-20 08:44:26-- https://dev-www.libreoffice.org/src/pdfium-4306.tar.bz2 +--2021-04-21 22:08:25-- https://dev-www.libreoffice.org/src/pdfium-4306.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 7220464 (6,9M) [application/octet-stream] Wird in ‘./pdfium-4306.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 43% 1,12M 3s - 3072K ........ ........ ........ ........ ........ ........ 87% 1022K 1s - 6144K ........ ...... 100% 999K=6,6s + 0K ........ ........ ........ ........ ........ ........ 43% 656K 6s + 3072K ........ ........ ........ ........ ........ ........ 87% 1,25M 1s + 6144K ........ ...... 100% 1,23M=7,8s -2021-02-20 08:44:33 (1,05 MB/s) - ‘./pdfium-4306.tar.bz2’ gespeichert [7220464/7220464] +2021-04-21 22:08:33 (903 KB/s) - ‘./pdfium-4306.tar.bz2’ gespeichert [7220464/7220464] ---2021-02-20 08:44:33-- https://dev-www.libreoffice.org/src/poppler-21.01.0.tar.xz +--2021-04-21 22:08:33-- https://dev-www.libreoffice.org/src/poppler-21.01.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1680536 (1,6M) [application/octet-stream] Wird in ‘./poppler-21.01.0.tar.xz’ gespeichert. - 0K ........ ........ ........ . 100% 898K=1,8s + 0K ........ ........ ........ . 100% 1,48M=1,1s -2021-02-20 08:44:35 (898 KB/s) - ‘./poppler-21.01.0.tar.xz’ gespeichert [1680536/1680536] +2021-04-21 22:08:35 (1,48 MB/s) - ‘./poppler-21.01.0.tar.xz’ gespeichert [1680536/1680536] ---2021-02-20 08:44:35-- https://dev-www.libreoffice.org/src/postgresql-13.1.tar.bz2 +--2021-04-21 22:08:35-- https://dev-www.libreoffice.org/src/postgresql-13.1.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 21034192 (20M) [application/octet-stream] Wird in ‘./postgresql-13.1.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 14% 1,09M 16s - 3072K ........ ........ ........ ........ ........ ........ 29% 1,80M 10s - 6144K ........ ........ ........ ........ ........ ........ 44% 1,34M 8s - 9216K ........ ........ ........ ........ ........ ........ 59% 1,73M 6s - 12288K ........ ........ ........ ........ ........ ........ 74% 2,00M 3s - 15360K ........ ........ ........ ........ ........ ........ 89% 2,16M 1s - 18432K ........ ........ ........ ........ 100% 2,55M=12s + 0K ........ ........ ........ ........ ........ ........ 14% 1,33M 13s + 3072K ........ ........ ........ ........ ........ ........ 29% 1,12M 12s + 6144K ........ ........ ........ ........ ........ ........ 44% 657K 12s + 9216K ........ ........ ........ ........ ........ ........ 59% 935K 9s + 12288K ........ ........ ........ ........ ........ ........ 74% 1,10M 5s + 15360K ........ ........ ........ ........ ........ ........ 89% 827K 2s + 18432K ........ ........ ........ ........ 100% 879K=22s -2021-02-20 08:44:48 (1,65 MB/s) - ‘./postgresql-13.1.tar.bz2’ gespeichert [21034192/21034192] +2021-04-21 22:08:57 (945 KB/s) - ‘./postgresql-13.1.tar.bz2’ gespeichert [21034192/21034192] ---2021-02-20 08:44:48-- https://dev-www.libreoffice.org/src/Python-3.8.4.tar.xz +--2021-04-21 22:08:57-- https://dev-www.libreoffice.org/src/Python-3.8.8rc1.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 18020412 (17M) [application/octet-stream] -Wird in ‘./Python-3.8.4.tar.xz’ gespeichert. +Länge: 18268528 (17M) [application/octet-stream] +Wird in ‘./Python-3.8.8rc1.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 2,42M 6s - 3072K ........ ........ ........ ........ ........ ........ 34% 1,56M 6s - 6144K ........ ........ ........ ........ ........ ........ 52% 2,16M 4s - 9216K ........ ........ ........ ........ ........ ........ 69% 2,62M 2s - 12288K ........ ........ ........ ........ ........ ........ 87% 1,64M 1s - 15360K ........ ........ ........ ........ .. 100% 1,80M=8,7s + 0K ........ ........ ........ ........ ........ ........ 17% 522K 28s + 3072K ........ ........ ........ ........ ........ ........ 34% 863K 18s + 6144K ........ ........ ........ ........ ........ ........ 51% 1,24M 11s + 9216K ........ ........ ........ ........ ........ ........ 68% 905K 7s + 12288K ........ ........ ........ ........ ........ ........ 86% 870K 3s + 15360K ........ ........ ........ ........ ...... 100% 1,16M=21s -2021-02-20 08:44:57 (1,97 MB/s) - ‘./Python-3.8.4.tar.xz’ gespeichert [18020412/18020412] +2021-04-21 22:09:18 (855 KB/s) - ‘./Python-3.8.8rc1.tar.xz’ gespeichert [18268528/18268528] ---2021-02-20 08:44:57-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz +--2021-04-21 22:09:18-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 341760 (334K) [application/octet-stream] Wird in ‘./libqxp-0.0.2.tar.xz’ gespeichert. - 0K ..... 100% 1,55M=0,2s + 0K ..... 100% 1,13M=0,3s -2021-02-20 08:44:57 (1,55 MB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] +2021-04-21 22:09:19 (1,13 MB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] ---2021-02-20 08:44:57-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +--2021-04-21 22:09:19-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1886657 (1,8M) [application/octet-stream] Wird in ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert. - 0K ........ ........ ........ .... 100% 2,24M=0,8s + 0K ........ ........ ........ .... 100% 1,27M=1,4s -2021-02-20 08:44:58 (2,24 MB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] +2021-04-21 22:09:20 (1,27 MB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] ---2021-02-20 08:44:58-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +--2021-04-21 22:09:21-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1595647 (1,5M) [application/octet-stream] Wird in ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert. - 0K ........ ........ ........ 100% 1,57M=1,0s + 0K ........ ........ ........ 100% 881K=1,8s -2021-02-20 08:45:00 (1,57 MB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] +2021-04-21 22:09:23 (881 KB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] ---2021-02-20 08:45:00-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +--2021-04-21 22:09:23-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1621566 (1,5M) [application/octet-stream] Wird in ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert. - 0K ........ ........ ........ 100% 934K=1,7s + 0K ........ ........ ........ 100% 1,30M=1,2s -2021-02-20 08:45:02 (934 KB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] +2021-04-21 22:09:24 (1,30 MB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] ---2021-02-20 08:45:02-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +--2021-04-21 22:09:24-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 529833 (517K) [application/octet-stream] Wird in ‘./librevenge-0.0.4.tar.bz2’ gespeichert. - 0K ........ 100% 869K=0,6s + 0K ........ 100% 1,50M=0,3s -2021-02-20 08:45:02 (869 KB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] +2021-04-21 22:09:25 (1,50 MB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] ---2021-02-20 08:45:02-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +--2021-04-21 22:09:25-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1521926 (1,5M) [application/zip] Wird in ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert. - 0K ........ ........ ....... 100% 1,39M=1,0s + 0K ........ ........ ....... 100% 1,25M=1,2s -2021-02-20 08:45:04 (1,39 MB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] +2021-04-21 22:09:26 (1,25 MB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] ---2021-02-20 08:45:04-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +--2021-04-21 22:09:26-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9796 (9,6K) [application/zip] Wird in ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert. - 0K 100% 427M=0s + 0K 100% 334M=0s -2021-02-20 08:45:04 (427 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] +2021-04-21 22:09:26 (334 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] ---2021-02-20 08:45:04-- https://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 +--2021-04-21 22:09:26-- https://dev-www.libreoffice.org/src/serf-1.2.1.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 190464 (186K) [application/octet-stream] Wird in ‘./serf-1.2.1.tar.bz2’ gespeichert. - 0K .. 100% 1,38M=0,1s + 0K .. 100% 1,11M=0,2s -2021-02-20 08:45:04 (1,38 MB/s) - ‘./serf-1.2.1.tar.bz2’ gespeichert [190464/190464] +2021-04-21 22:09:27 (1,11 MB/s) - ‘./serf-1.2.1.tar.bz2’ gespeichert [190464/190464] ---2021-02-20 08:45:04-- https://dev-www.libreoffice.org/src/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz +--2021-04-21 22:09:27-- https://dev-www.libreoffice.org/src/skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 10420480 (9,9M) [application/octet-stream] Wird in ‘./skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 30% 820K 9s - 3072K ........ ........ ........ ........ ........ ........ 60% 1,27M 4s - 6144K ........ ........ ........ ........ ........ ........ 90% 2,15M 1s - 9216K ........ ....... 100% 2,61M=7,9s + 0K ........ ........ ........ ........ ........ ........ 30% 1000K 7s + 3072K ........ ........ ........ ........ ........ ........ 60% 870K 4s + 6144K ........ ........ ........ ........ ........ ........ 90% 723K 1s + 9216K ........ ....... 100% 739K=12s -2021-02-20 08:45:13 (1,26 MB/s) - ‘./skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz’ gespeichert [10420480/10420480] +2021-04-21 22:09:39 (838 KB/s) - ‘./skia-m88-59bafeeaa7de9eb753e3778c414e01dcf013dcd8.tar.xz’ gespeichert [10420480/10420480] ---2021-02-20 08:45:13-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz +--2021-04-21 22:09:39-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 707920 (691K) [application/octet-stream] Wird in ‘./libstaroffice-0.0.7.tar.xz’ gespeichert. - 0K ........ .. 100% 1,64M=0,4s + 0K ........ .. 100% 862K=0,8s -2021-02-20 08:45:13 (1,64 MB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] +2021-04-21 22:09:40 (862 KB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] ---2021-02-20 08:45:13-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz +--2021-04-21 22:09:40-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 96939 (95K) [application/octet-stream] Wird in ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert. - 0K . 100% 1,67M=0,06s + 0K . 100% 819K=0,1s -2021-02-20 08:45:14 (1,67 MB/s) - ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert [96939/96939] +2021-04-21 22:09:41 (819 KB/s) - ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert [96939/96939] ---2021-02-20 08:45:14-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz +--2021-04-21 22:09:41-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 854296 (834K) [application/octet-stream] Wird in ‘./libvisio-0.1.7.tar.xz’ gespeichert. - 0K ........ ..... 100% 1,66M=0,5s + 0K ........ ..... 100% 908K=0,9s -2021-02-20 08:45:14 (1,66 MB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] +2021-04-21 22:09:42 (908 KB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] ---2021-02-20 08:45:14-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz +--2021-04-21 22:09:42-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 534712 (522K) [application/octet-stream] Wird in ‘./libwpd-0.10.3.tar.xz’ gespeichert. - 0K ........ 100% 1,71M=0,3s + 0K ........ 100% 1,06M=0,5s -2021-02-20 08:45:15 (1,71 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] +2021-04-21 22:09:43 (1,06 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] ---2021-02-20 08:45:15-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz +--2021-04-21 22:09:43-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 328664 (321K) [application/octet-stream] Wird in ‘./libwpg-0.3.3.tar.xz’ gespeichert. - 0K ..... 100% 1,55M=0,2s + 0K ..... 100% 995K=0,3s -2021-02-20 08:45:15 (1,55 MB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] +2021-04-21 22:09:43 (995 KB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] ---2021-02-20 08:45:16-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz +--2021-04-21 22:09:43-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 713008 (696K) [application/octet-stream] Wird in ‘./libwps-0.4.12.tar.xz’ gespeichert. - 0K ........ .. 100% 1,68M=0,4s + 0K ........ .. 100% 874K=0,8s -2021-02-20 08:45:16 (1,68 MB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] +2021-04-21 22:09:44 (874 KB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] ---2021-02-20 08:45:16-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +--2021-04-21 22:09:44-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 23150 (23K) [application/zip] Wird in ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert. - 0K 100% 16,3M=0,001s + 0K 100% 11,6M=0,002s -2021-02-20 08:45:16 (16,3 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] +2021-04-21 22:09:45 (11,6 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] ---2021-02-20 08:45:17-- https://dev-www.libreoffice.org/src/zlib-1.2.11.tar.xz +--2021-04-21 22:09:45-- https://dev-www.libreoffice.org/src/zlib-1.2.11.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 467960 (457K) [application/octet-stream] Wird in ‘./zlib-1.2.11.tar.xz’ gespeichert. - 0K ....... 100% 1,61M=0,3s + 0K ....... 100% 681K=0,7s -2021-02-20 08:45:17 (1,61 MB/s) - ‘./zlib-1.2.11.tar.xz’ gespeichert [467960/467960] +2021-04-21 22:09:46 (681 KB/s) - ‘./zlib-1.2.11.tar.xz’ gespeichert [467960/467960] ---2021-02-20 08:45:17-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz +--2021-04-21 22:09:46-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 320952 (313K) [application/octet-stream] Wird in ‘./libzmf-0.0.2.tar.xz’ gespeichert. - 0K .... 100% 1,53M=0,2s + 0K .... 100% 723K=0,4s -2021-02-20 08:45:17 (1,53 MB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] +2021-04-21 22:09:46 (723 KB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] ---2021-02-20 08:45:18-- https://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll +--2021-04-21 22:09:46-- https://dev-www.libreoffice.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 12288 (12K) [application/octet-stream] Wird in ‘./185d60944ea767075d27247c3162b3bc-unowinreg.dll’ gespeichert. - 0K 100% 359M=0s + 0K 100% 439M=0s -2021-02-20 08:45:18 (359 MB/s) - ‘./185d60944ea767075d27247c3162b3bc-unowinreg.dll’ gespeichert [12288/12288] +2021-04-21 22:09:46 (439 MB/s) - ‘./185d60944ea767075d27247c3162b3bc-unowinreg.dll’ gespeichert [12288/12288] ---2021-02-20 08:45:18-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf +--2021-04-21 22:09:47-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207992 (203K) [application/octet-stream] Wird in ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert. - 0K ... 100% 1,52M=0,1s + 0K ... 100% 705K=0,3s -2021-02-20 08:45:18 (1,52 MB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] +2021-04-21 22:09:47 (705 KB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] ---2021-02-20 08:45:18-- https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar +--2021-04-21 22:09:47-- https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 27397202 (26M) [application/java-archive] Wird in ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 11% 1006K 24s - 3072K ........ ........ ........ ........ ........ ........ 22% 1,09M 20s - 6144K ........ ........ ........ ........ ........ ........ 34% 1,51M 15s - 9216K ........ ........ ........ ........ ........ ........ 45% 1,41M 12s - 12288K ........ ........ ........ ........ ........ ........ 57% 1,22M 9s - 15360K ........ ........ ........ ........ ........ ........ 68% 1,66M 6s - 18432K ........ ........ ........ ........ ........ ........ 80% 1,72M 4s - 21504K ........ ........ ........ ........ ........ ........ 91% 1,86M 2s - 24576K ........ ........ ........ ........ .. 100% 1,76M=19s + 0K ........ ........ ........ ........ ........ ........ 11% 1,07M 22s + 3072K ........ ........ ........ ........ ........ ........ 22% 1,09M 19s + 6144K ........ ........ ........ ........ ........ ........ 34% 890K 17s + 9216K ........ ........ ........ ........ ........ ........ 45% 985K 14s + 12288K ........ ........ ........ ........ ........ ........ 57% 917K 11s + 15360K ........ ........ ........ ........ ........ ........ 68% 1,11M 8s + 18432K ........ ........ ........ ........ ........ ........ 80% 933K 5s + 21504K ........ ........ ........ ........ ........ ........ 91% 970K 2s + 24576K ........ ........ ........ ........ .. 100% 1,29M=26s -2021-02-20 08:45:37 (1,39 MB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] +2021-04-21 22:10:14 (1018 KB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] ---2021-02-20 08:45:37-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +--2021-04-21 22:10:14-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2448421 (2,3M) [application/java-archive] Wird in ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert. - 0K ........ ........ ........ ........ ..... 100% 1,65M=1,4s + 0K ........ ........ ........ ........ ..... 100% 1,18M=2,0s -2021-02-20 08:45:39 (1,65 MB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] +2021-04-21 22:10:16 (1,18 MB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/tarballs/neon-0.31.1.tar.gz and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/tarballs/neon-0.31.1.tar.gz differ Binary files /tmp/tmpstgo6noq/_iaPFUymGf/libreoffice-7.1.2~rc2/tarballs/neon-0.31.2.tar.gz and /tmp/tmpstgo6noq/FzwrbYbZ5z/libreoffice-7.1.3~rc2/tarballs/neon-0.31.2.tar.gz differ diff -Nru libreoffice-7.1.2~rc2/test/source/bootstrapfixture.cxx libreoffice-7.1.3~rc2/test/source/bootstrapfixture.cxx --- libreoffice-7.1.2~rc2/test/source/bootstrapfixture.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/test/source/bootstrapfixture.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -24,7 +24,9 @@ #include #include #include +#include #include +#include #include #include @@ -237,4 +239,11 @@ return GraphicFilter::GetGraphicFilter().GetFilterCallback().Call( rData ); } +sal_uInt16 test::BootstrapFixture::getDefaultDeviceBitCount() +{ + ScopedVclPtr device + = VclPtr::Create(DeviceFormat::DEFAULT); + return device->GetBitCount(); +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.1.2~rc2/tools/qa/cppunit/test_date.cxx libreoffice-7.1.3~rc2/tools/qa/cppunit/test_date.cxx --- libreoffice-7.1.2~rc2/tools/qa/cppunit/test_date.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/tools/qa/cppunit/test_date.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -26,6 +26,7 @@ void testGetDayOfWeek(); void testGetDaysInMonth(); void testIsBetween(); + void testIsEndOfMonth(); CPPUNIT_TEST_SUITE(DateTest); CPPUNIT_TEST(testDate); @@ -37,6 +38,7 @@ CPPUNIT_TEST(testGetDayOfWeek); CPPUNIT_TEST(testGetDaysInMonth); CPPUNIT_TEST(testIsBetween); + CPPUNIT_TEST(testIsEndOfMonth); CPPUNIT_TEST_SUITE_END(); }; @@ -533,6 +535,29 @@ CPPUNIT_ASSERT(aDate.IsBetween(Date(1, 1, 2018), Date(1, 12, 2018))); } +void DateTest::testIsEndOfMonth() +{ + { + Date aDate(31, 12, 2000); + CPPUNIT_ASSERT(aDate.IsEndOfMonth()); + } + + { + Date aDate(30, 12, 2000); + CPPUNIT_ASSERT(!aDate.IsEndOfMonth()); + } + + { + Date aDate(29, 2, 2000); + CPPUNIT_ASSERT(aDate.IsEndOfMonth()); + } + + { + Date aDate(28, 2, 2000); + CPPUNIT_ASSERT(!aDate.IsEndOfMonth()); + } +} + CPPUNIT_TEST_SUITE_REGISTRATION(DateTest); } diff -Nru libreoffice-7.1.2~rc2/tools/source/datetime/tdate.cxx libreoffice-7.1.3~rc2/tools/source/datetime/tdate.cxx --- libreoffice-7.1.2~rc2/tools/source/datetime/tdate.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/tools/source/datetime/tdate.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -452,6 +452,17 @@ return true; } +bool Date::IsEndOfMonth() const +{ + return IsEndOfMonth(GetDay(), GetMonth(), GetYear()); +} + +//static +bool Date::IsEndOfMonth(sal_uInt16 nDay, sal_uInt16 nMonth, sal_Int16 nYear) +{ + return IsValidDate(nDay, nMonth, nYear) && ImplDaysInMonth(nMonth, nYear) == nDay; +} + void Date::Normalize() { sal_uInt16 nDay = GetDay(); diff -Nru libreoffice-7.1.2~rc2/translations/source/ab/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ab/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ab/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ab/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-02-04 20:36+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" @@ -2444,1071 +2444,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ab/extras/source/autocorr/emoji.po libreoffice-7.1.3~rc2/translations/source/ab/extras/source/autocorr/emoji.po --- libreoffice-7.1.2~rc2/translations/source/ab/extras/source/autocorr/emoji.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ab/extras/source/autocorr/emoji.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-02-28 17:36+0000\n" +"PO-Revision-Date: 2021-04-01 17:37+0000\n" "Last-Translator: Андрей Абухба \n" "Language-Team: Abkhazian \n" "Language: ab\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1516028970.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -734,7 +734,7 @@ "PRIME\n" "LngText.text" msgid "prime" -msgstr "" +msgstr "азгәаҭа" #. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji #. qR3Eg @@ -1174,7 +1174,7 @@ "SMALL_CONTAINS_AS_MEMBER\n" "LngText.text" msgid "small ni" -msgstr "" +msgstr "имаҷу аҵанакуеит" #. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji #. xexAk diff -Nru libreoffice-7.1.2~rc2/translations/source/af/connectivity/registry/mork/org/openoffice/Office/DataAccess.po libreoffice-7.1.3~rc2/translations/source/af/connectivity/registry/mork/org/openoffice/Office/DataAccess.po --- libreoffice-7.1.2~rc2/translations/source/af/connectivity/registry/mork/org/openoffice/Office/DataAccess.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/af/connectivity/registry/mork/org/openoffice/Office/DataAccess.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2018-04-23 18:10+0200\n" -"PO-Revision-Date: 2019-01-18 11:31+0000\n" -"Last-Translator: F Wolff \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" +"Last-Translator: Paul Roos \n" +"Language-Team: Afrikaans \n" "Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547811069.000000\n" +#. ftPgS #: Drivers.xcu msgctxt "" "Drivers.xcu\n" @@ -23,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "Thunderbird Address Book" -msgstr "Thunderbird-adresboek" +msgstr "Thunderbird-Adresboek" diff -Nru libreoffice-7.1.2~rc2/translations/source/af/cui/messages.po libreoffice-7.1.3~rc2/translations/source/af/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/af/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/af/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-01-25 19:36+0000\n" "Last-Translator: Paul Roos \n" "Language-Team: Afrikaans \n" @@ -2458,1071 +2458,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME ondersteun vier vlakke van makro-beveiliging (van laag tot baie hoog) en betroubare bronne." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 is betrokke as 'n organisasie by \"Google Summer of Code(GSoC)\":" - -#. SNTbc -#: 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 "U kan ook teksgedeeltes en kommentare in \"Writer\" aanteken. Gebruik die sleutel-kombinasie »% MOD1 +% MOD2 + C«." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Om een of meer paragrawe in \"Writer\" sonder knip-en-plak te skuif, gebruik% MOD1 +% MOD2 + op / af-pyltjie." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Om die basiese lettertipe vir vooraf gedefinieerde sjablone of vir die huidige dokument in \"Writer\" te verander, kies »Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts« basiese lettertipes." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Om woorde met 'n lengte van meer as 10 karakters te vind, kies »Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options...« merk blokkie: »Regular expressions«." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Om 'n CSV-lêer as 'n nuwe blad in die huidige \"Calc\"-spreiblad dokument oop te maak, kies »Sheet ▸ Sheet insert from file...«." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "As u teks met vetdruk, kursief of onderstreep in \"Writer\" vir invoer het, kan u voortgaan met die standaard-attribute deur die sleutel-kombinasie [% MOD1 + Shift + X] te gebruik (verwyder direkte karakterformatering)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Om die inhoud van die knipbord as gewone teks in \"Writer\" te plak, gebruik %MOD1 +% MOD2 + Shift + V." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Om die formaat van die voetnota in \"Writer\" aan te pas, kies »Tools ▸ Footnotes and Endnotes…«." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Om skyfies in \"Impress\" te herrangskik of om skyfies te kies sodat die aanbieding aangepas is by die behoeftes van u gehoor, kies »Slide Show ▸ Custom Slide Show«." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Om die speltoets vir 'n gedeelte van die teks te verander, klik op \"Taal\" van die statusbalk of beter pas 'n toepaslike sjabloon toe." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "\"Writer\" kan 'n leë bladsy tussen twee opeenvolgende onewe (/ewe) bladsye invoeg. Om dit te doen, kies »File ▸Print... « in die druk-dialoog-oortjie merk: %PRODUCTNAME en dan aktiveer die merkblokkie \"Print automatically inserted blank pages\"«." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Versteek of groepeer die kolomme wat u nie nodig het om in \"Calc\" te druk nie." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Om 'n AutoSpeel-aanbieding te wysig, moet u dit oopmaak, dan met begin daarvan, regter-muisklik en kies \"Edit\" in die konteks-kieslys." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Vir objekte (vorms, beelde, formules) se presiese posisionering gebruik [% MOD2 + pyltjie sleutels] om dit pixel-gewys aan te skuif." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Indien geïnstalleer, druk [F1] om ingebedde hulp te open, anders is die aanlynhulp beskikbaar:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Regs muis-klik op die statusbalk in %PRODUCTNAME \"Calc\" en kies \"Selection count\" om die geselekteerde selle te vertoon." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Om twee of meer kolomme vir slegs 'n gedeelte van 'n bladsy in %PRODUCTNAME \"Writer\" te spesifiseer, kies »Insert ▸ Section...«. Kies Kolomme-oortjie en spesifiseer die aantal kolomme en plaas teks in hierdie gebied." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Kies »Data ▸ Statistics« om steekproewe, beskrywende statistiek, variansie analise, korrelasie en veel meer met %PRODUCTNAME \"Calc\" te gebruik." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "U kan van die een tafel na die ander in \"Calc\" kopieer sonder die knipbord. Kies die gebied wat gekopieër moet word, hou die [% MOD1] -toets ingedrukt en klik op die blad van die teiken tabel en kies »Sheet ▸ Fill Cells ▸ Fill Sheets...«." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Om die formaat van %PRODUCTNAME te verander, kies »Tools ▸ Options... ▸ View ▸ User Interface»." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Om 'n aanbieding uit 'n reeks beelde met behulp van die \"Fotoalbum\" -funksie te maak, kies »Insert ▸ Media ▸ Photo Album« in %PRODUCTNAME Impress." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Om formules in \"Calc\" in plaas van resultate te vertoon, kies »View View ▸ Show Formula« (of »Tools ▸ Options ... ▸%PRODUCTNAME Calc ▸ View ▸ Area: Display ▸ Checkbox: Formulas «)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME word ontwikkel deur 'n gemeenskap van vriende, bestaande uit honderde ontwikkelaars van regoor die wêreld. Sluit aan met u vaardighede bobehalwe kodering." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Sou u linkshandig wees, kies dan »Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian« en kies dan »Tools ▸ Options... ▸ %PRODUCTNAME \"Writer\" ▸ View ▸ Ruler ▸ Right-aligned«, waardeur die skuifbalk na die linkerkant gewys word." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Om die hoofstuk-opskrifte in \"Writer\", altyd met 'n nuwe bladsy te begin, muisklik regs op die »Edit Heading1 (paragraafstyl)« in die style en kies »Verander ... ▸Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before«." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Die datum / tydwaarde is bloot 'n aantal dae sedert die gespesifiseerde dag nul; die heelgetalgedeelte staan vir die datum en die breuk vir die tyd (verstreke deel van 'n dag), met 0,5 as die middaguur." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "»Shift +% MOD1 + Del« word in \"Writer\" van die wyser-posisie na die einde van die huidige sin verwyder." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Gebruik kolom- of ry -etikette in formules in \"Calc\". As u byvoorbeeld twee kolomme het met 'Tyd' en 'km', voer Tyd / km in om minute per kilometer te kry." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Om die \"opmarsende miere\" rondom selle in \"Calc\" te stop, druk die [Esc] -toets. Die gekopieerde inhoud bly beskikbaar vir plak." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "As u 'n ambassadeur vir %PRODUCTNAME wil word, is daar sertifiserings vir ontwikkelaars, administrateurs en opleiers." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "As u portret en landskap in \"Calc\"-sigblaaie wil meng, kan u verskillende bladsye op die individuele blaaie toepas." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klik vinnig op die spesiale karakter ikoon in die Standaard-balk om blits toegang tot voorkeur- of laaste spesiale -karakters te kry." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Kies \"Hiërargiese aansig\" in die \"Styles\"-sybalk om die verband tussen die style te sien." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "U kan profiele gebruik om die tabelle in u \"Writer\"-dokument konsekwent te laat lyk. Kies een van die vooraf gedefinieerde profiel [F11] of »Table ▸ AutoFormat...«." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Om die gebruik van die [% MOD1] -sleutel te konfigureer om hiperskakels te volg, kies \"Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options... ▸ Klik blokkie en hou in, op %MOD1 om hiperskakel te volg." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Om die berekening van individuele elemente van 'n\" Calc\"-formule te sien, kies die ooreenstemmende elemente en druk [F9]." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Om die selle in \"Calc\" te beskerm, kies » Format ▸ Cells ▸ Protection«. Om te voorkom dat tabelle ingevoeg, geskrap, hernoem, geskuif of gekopieër word, kies »Tools ▸ Protect Sheet...«." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Om langs 'n kromme te skryf? Trek die kromme, dubbelklik daarop, voer die teks in en kies »Format ▸ Text Box« en »Shape ▸ Fontwork ...«." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Om slegs die grootste waardes in 'n Calc-tabel te vertoon, kies \"Data ▸ Auto filter\", kliek dan af-pyl, en kies \"Top 10\" in die lys." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Om die bladsynommer van u inhoudsopgawe in \"Writer\" te verwyder, gebruik »Invoeg ▸ Inhoudsopgawe en Indeks ▸ Inhoudsopgawe ...« (of klik met die regtermuisknop en wysig die voorheen ingevoegde indeks). Op die blad \"Inskrywings\", verwyder die bladsynommer (#) van die struktuurreël." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "In die Navigator van die Writer-dokument kan u kies 'n opskrif en sy onderstaande teks en dit op/af skuif." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Om vinnig 'n formule-objek in Writer te skep, tik die formule-teks in, selekteer dit en kies \"Insert ▸ Object ▸ Formula ...\" om die teks te omvorm." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "% PRODUCTNAME maak dit maklik om 'n nuwe woordeboek te installeer: dit word gelewer as 'n uitbreiding." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME is ook beskikbaar as 'n draagbare weergawe vir u volle mobiliteit. Selfs sonder administrasieregte vir u rekenaar, kan u % PRODUCTNAME-Portable op u hardeskyf installeer." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Met Writer kan u voetnote per bladsy, hoofstuk of dokument nommer: Kies »Ekstras ▸ Voetnote / Eindnotas ... ▸ Blad: Voetnote ▸ Rol-af lys: kies Counting«." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Om u Writer-dokument oop te maak met die tekswyser op dieselfde verwerkingsposisie as waar u dit gestoor het, kies \"Tools ▸ Options ... ▸%PRODUCTNAME ▸ Gebruikergegewens\" en sorg dat een van voor- / agter-benaming nie leeg is nie." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Vir Citation-bestuur gebruik 'n derdeparty-uitbreiding." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Om 'n waarde op dieselfde plek in verskillende Calc-tabelle in te voeg, kies die tabelle deur die %MOD1-sleutel in te hou en op die ooreenstemmende tabel-tabs te klik voordat u die inskrywing doen." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Om teks in 'n dokument te verberg, selekteer die teks, kies »Invoeg ▸ Area ...« en aktiveer die \"Verberg\"-merkerveld." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "U kan die middelste muisknoppie verstel onder »Ektras ▸ Opsies ... ▸% PRODUKTNAME ▸ Bekyk ▸ Af-kieslys: Middel-muisknop«." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Om twee bladsye in portretformaat op een bladsy in landskapformaat te druk (verklein van A4 na A5), kies \"File ▸ Print ▸ Page Layout tab▸Layout\" en dan in die keuselys \"Pages per sheet\" kies dan \"2\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Om vinnig toegang tot u boekmerke in Writer te kry, regter-muisklik op die bladsynommer in die statusbalk (links onder in die venster)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Om 'n voorwerp op die agtergrond van die dokument te kies, op die Teken-werkbalk gebruik die Seleksie-instrument om die voorwerp af te baken." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Stel tekste wat gereeld in Writer gebruik word as AutoText. Plaas dit dan in elke Writer-dokument met die naam, kortpad of nutsprogram balk." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "As u musiektydens die hele aanbieding wil speel, ken die klank toe aan die eerste skyfie oorgang sonder om die \"Herhaal tot volgende klank\" -kiesblokkie te aktiveer." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 bereken nie van links na regs nie, maar neem wiskundige volgorde in ag: hakies> eksponente> vermenigvuldiging> deling> optelling> aftrekking." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Toegang tot die %PRODUCTNAME-dokumentasie en ook gratis handleidings is via:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Om alle <> gelyktydig te verwyder en die teks daarin te hou, kies »Redigeer ▸ Soek en vervang ... ▸ Soek: \" [<>] \"▸ Vervang: (maak leeg)« en aktiveer die merkblokkie in die »Ander opsies« -gebied \"Gereelde uitdrukkings\"." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Om 'n verslag wat in Writer geskep is, aan te bied, kies: »File: ▸ Submit ▸ Outline to Presentation«, om outomaties 'n skyfievertoning vanaf die verslag te genereer." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Om die vertoning van hiperskakels in Calc te skep, voeg dit met »Insert ▸ Hyperlink ...« in." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Om te verseker dat elke tabel in Calc sy eie zoom-faktor het, onder »Ektras ▸ Opsies ... ▸ %PRODUCTNAME Calc ▸ View ▸ Scale« deaktiveer dan die \"Sinkroniseer tabelle\" -merkblok." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Vir elke oortjie in Calc, kan u 'n kleur instel: met regtermuis-kliek op die oortjie, of kies »Tabel ▸ Kleur van die Tabel…«." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Spoor die selle in Calc wat deur 'n formule in gebruik op: die roete na voorganger selle[Shift + F9] of die roete na afhanklike selle [Shift + F5] (of kies »Ekstras ▸ Detective«). Met elke uitvoering gaan jy 'n stap verder volg in die ketting." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Om formules in Writer te nommer, tik \"fn\" en druk dan op F3. 'n Outoteks word ingevoeg met die formule en nommer ge-omlyn in 'n tabel." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "In Writer kan ook 'n gids met afbeeldings van objekname in plek van kortbekrywings geskep word." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Gebruik u Android of iPhone as 'n afstandbeheer vir u Impress-aanbieding." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Om die aantal dae in die huidige maand in Calc te vind,gebruik: \"=DAYSINMONTH(TODAY())\" funksie." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "As u nommers in u Calc-sigblad verskyn as ###, is die kolom te smal om al die syfers te kan toon." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Vir massa parallelle berekeninge van formule-selle in Calc, aktiveer die merkblokkie onder »Ektras ▸ Opsies ... ▸ LibreOffice ▸ OpenCL«." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Om vloeidiagramme in Draw / Impress te skep, gebruik die verbindings op die Toolbar en kopieë en plak die voltooide data-objek na Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "U donasies ondersteun ons wêreldwye gemeenskap." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Om in Calc, x maande tot 'n datum by te tel, voer in \"= EDATE(datum; maande)\"." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Om 'n aaneenlopende reeks selle te selekteer wat data bevat en afgebaken is deur leë rye en kolomme, gebruik Calc %MOD1 + asterisk (*) (op die syfer-sleutelbord)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Om die datum aanvaardingspatroon in Calc aan te pas by u voorkeure, kies »Ekstras ▸ Opsies ... ▸ Taalinstellings ▸ Taal ▸ Datum aanvaardingspatroon« en werk by die gewenste patroon." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Om formules van Calc uit te voer in CSV formaat, kies »Lêer ▸ Stoor as ... ▸ Tik dan in die volgende dialoog: Teks CSV«, aktiveer 'Bewerk filterinstellings' en aktiveer 'Stoor formules in plaas van berekende waardes' ." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Probeer die Presenter Console, wat 'n uitstekende funksie is as u met %PRODUCTNAME Impress werk." #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Om verskeie opmerkings in Calc uit te vee, merk die selle met opmerkings en kies »Wysig ▸ Opmerkings ▸ Verwyder ...«." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Omskep u dokumente in PDF's deur op die PDF-ikoon in die werkbalk te klik." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Om 'n groot verskeidenheid selle in Calc te kies sonder om te blaai, tik die reikwydteverwysing (byvoorbeeld, A1: A1000) in die naamveld en druk Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Om die geldige opdragreëlparameters te leer ken, moet u office begin met --help, -h of -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Om u tabel of u drukareas aan te pas by die bladsy in Calc, kies »Formaat ▸ Pagina ... ▸ Register: Tabel ▸ Afdeling: Skaal«." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Om 'n ongenommerde inskrywing in 'n lys in Writer in te voeg, gebruik die opsie \"Insert Entry Without Number\" op die paragraaf-kolle en numering-werkbalk." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Om die rigting van 'n \"Writer\"-tafel selle te draai, kies »Tabel ▸ Eienskappe ... ▸ Teksvloei ▸ Afloop keuselys: Teksoriëntasie«." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Om in %PRODUCTNAME \"Draw\" die 0/0-punt van die liniale te verander, trek die kruising van die twee liniale na die hoek links bo, in die werkarea." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Om 'n kolom in \"Calc\" tussen twee ander in een stap te skuif, muis-klik en hou die %MOD2-sleutel ingedruk terwyl u op 'n sel in die kolom klik en dit na die bestemming trek." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Gebruik 'n konkordansielêer om al die gidsinskrywings outomaties alfabeties in \"Writer\" te merk." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Om \"Draw/Impress\"-objekte akkuraat te posisioneer, kies »Format ▸ Align« of die konteks-kieslys: Dit is gesentreer op die bladsy wanneer 'n voorwerp, of op die groep gekies word respektiewelik." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Moet nie tabs gebruik om in \"Writer\", elemente te spasieër nie. Afhangende van wat u beoog, is 'n beter gebruik 'n tabel sonder 'n raam." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "U hoef nie deur die lys onder »Ekstras ▸ Pas aan ... ▸ Tab: Toetsbord« te blaai, om 'n sleutelkombinasie te vind. Tik dit net in." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Om %PRODUCTNAME outomaties 'n genommerde etiket by te voeg by die invoeg van data-objekte in \"Writer\", kies »Tools' ▸ Options ... ▸ %PRODUCTNAME Writer ▸ AutoCaption«." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "U kan met %PRODUCTNAME u Gmail-rekening gebruik om serie e-posse te stuur. Voer in u toegangsdata onder die keuse-item »Ekstras ▸ Opsies ... ▸ %PRODUCTNAME Writer ▸ Seriële e-pos«." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Om die kolomopskrifte van 'n \"Calc\"-tabel sigbaar te hou wanneer u deur rye afwaarts blaai, kies »Bekyk ▸ Bevries selle ▸ Bevries eerste ry«." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Kyk na die voorbeelde onder »Tools ▸ Macros ros Edit Macros ...« om met %PRODUCTNAME-makro's te begin werk." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Pas die paragraafstyle in \"Writer\" toe op opskrifte deur %MOD1 + 1 vir Opskrif 1, %MOD2 + 2 vir Opskrif 2, ensovoorts te druk." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Gebruik die \"Navigator\" (F5) om die inhoud van groot dokumente te vind." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Om spesiale karakters direk in die dialoogvenster onder »Redigeer ▸ Vind en vervang ...« in te voeg, klik met die regter-muisknop in die invoerveld of druk [Shift + %MOD1 + S]." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "As u gepaste inhoud vir metadata-eienskappe in \"Writer\" benodig, kies dan »File ▸ Properties ... ▸ Tab: Custom Properties« en skep wat u daar wil hê." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "As u 'n skets in 'Draw' net wil sien, kies 'n laag waarin die 'Printable'-vlaggie nie gestel is nie (klik met die regtermuisknoppie op 'n Laag-oortjie en kies »Wysig laag ...«, en kies opsie »2«)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Om die huidige datum in u dokument in te voeg, kies »Invoeg ▸ Veld ▸ Datum«." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Om die vertoon van u \"Writer\"-dokument vir baie beelde te bespoedig, deaktiveer »View ▸ Beelde en diagramme«." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Om 'n ewekansige reeks in \"Calc\" te maak gebaseer op verskeie verdelings, kies »Tabel ▸ Vul selle ▸ Ewekansige getalle...«." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "U kan skyfies hernoem in \"Impress\" om makliker handelinge te definieer soos \"Gaan na bladsy\" en om 'n meer informatiewe opsomming te hê as skyfie 1, skyfie 2 ensovoorts." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Om teks in te stel wat voor die hoofstuknummer in \"Writer\" verskyn, kies \"Ekstras ▸ Hoofstuknommering ... ▸ Tab: Nommering« en voeg in byvoorbeeld 'Hoofstuk', in die 'Voor'-veld in om as 'Hoofstuk 1' te vertoon." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Om 'n \"Writer\"-tabel te transponeer, kopieer en dan plak dit in \"Calc\". Transponeer deur 'kopieer/plak spesiaal'. Kies »Edit ▸ Paste ▸ Paste Special ... ▸ (Knoppie): Transpose«. Laastens kopieer en plak terug as geformateerd in 'n \"Writer\"-tabel." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Om in \"Writer\" die knoppie \"Vertikale teks\" op die tekenbalk te aktiveer, kies »Ekstras ▸ Opsies ... ▸ Taalinstellings ▸ Tale ▸ Verstek tale« en aktiveer die merkerveld 'Asiaties' (indien nodig, aktiveer die simbool deur met die rechtermuisknop op die werkbalk en \"Maak knoppies sigbaar\" te klik)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Om vinnig op 'n geselekteerde gebied in te zoom, met die regter-muisknop klik op die gebied Skaal in die statusbalk en kies Optimaal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Bestaande PDF-lêers kan onderteken word en hul handtekeninge nagegaan word." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "As u dikwels 'n dokument van 'n ander een maak om die formatering te hergebruik, moet u dit oorweeg om 'n sjabloon-dokument te gebruik." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Om uit te vind vir watter selle voorwaardelike formatering in \"Calc\" gedefinieër is, kies »Formaat ▸ Voorwaardelike formatering ▸ Hersien ... «." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Om in \"Calc\" alle selle in 'n tabel met waardes buite die geldigheidsreëls uit te wys, kies »Ekstras ▸ Detective ▸Omsirkel ongeldige data«." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Gebruik font-inbedding vir beter interwerking met ander Office-toepassings, kies »File ▸ Eienskappe... ▸ Font«." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "U hoef nie 'n formule te kopieer en te plak om dit na statiese waardes te omskep nie; kies »Data ▸ Bereken ▸ Formule na Waarde«." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "In \"Writer\" kan u alle opmerkings in 'n dokument tegelyk herformateer deur op die afwaartse pyltjie in 'n opmerking te klik en kies \"Formateer alle opmerkings\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Om in \"Calc\" dieselfde uitleg te gebruik vir die skermvertoning en drukwerk kies »Ekstras ▸ Opsies ... ▸ %PRODUKTNAME Bereken ▸ Algemeen ▸ Merkblokkie: 'gebruik drukkerdimensies vir teksformatering'«." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Om 'n rugsteun te maak, kies »File ▸ Save a copy ...« en skep u 'n nuwe dokument. Werk dan voort met die oorspronklike." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "As u 'n sjabloon in \"Writer\" gebasseer op 'n ander een skep, kan u 'n persentasie- of puntwaarde invoer (byvoorbeeld 110% of -2 pt of + 5 pk)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Om slegs 'n opmerking in \"Calc\" te kopieer en om die inhoud van die teiken te behou, gebruik die \"Paste Special\"-opdrag, ontmerk alles in die dialoogvenster behalwe \"Comments\" en gebruik die \"Add\" -bewerking." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Om u MS Office-dokumente in OpenDocument-formaat te omskep met behulp van die dokumentomskakelaar, kies »File ▸ Slimmerd ▸ Dokument Omskakelaar...«." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Wanneer u 'n sel in \"Calc\" verander, kan u met regter-muisklik en dan kies van 'veld invoeg' opdragte soos datum, tabelnaam, dokumenttitel ens." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Om die bladsynommer van u inhoudsopgawe in \"Writer\" te verwyder, kies »Invoeg ▸ Gids ▸ Gids ...« (of regter muisklik en wysig die voorheen ingevoegde gids). Op die blad \"Inskrywings\", verwyder die bladsynommer (#) van die struktuurreël." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Kies »Ekstras ▸ Autotext... ▸ (knoppie): Outotext ▸ Import ...« om outotext-inskrywings vanaf 'n Word-dokument of sjabloon in te voer." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "In plaas daarvan om leë reëls in\"Writer\" in te voeg om twee paragrawe te skei, is dit beter om »Formaat ▸ Paragraaf... ▸ Register: Inkeping en spasies ▸ Oppervlakte: Spasiëring ▸ Eienskappe: Onder Paragraaf en Style« en die waarde daar te verander of die posisie self aan te pas by Paragraaf formateer." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Om die voorafgaande nulle in \"Calc\" te kry, gebruik die voorstaande nulformaat opsie of formuleer die sel vooraf as teks formaat." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Om terug te keer na die verstek-instellings in \"Writer\" nadat u enige lys-jabloon toegepas het, klik op Kolparagrawe / Genommerde lys Aan/Af op die formateer-balk." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Om alle drukareas in \"Calc\" in een stap uit te vee, kies al die tabelle en kies dan »Formateer ▸ Drukareas ▸ Verwyder«." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Om 'n agtergrondprent aan 'n \"Calc\"-tabel toe te voeg, kies »Insert ▸ Image...« of trek dit oor uit die Gallery in die tabel, en kies dan »Formaat ▸ Layout ▸ Op Agtergrond«." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "As u probleme ondervind om teks vanaf PDF-lêers of webblaaie in dokumente in te voeg, probeer om dit as gewone teks in te plaas ([%MOD1 + %MOD2 + Shift + V])." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "In \"Calc\" gebruik die funksie = GETRIMD.GEM() om die gemiddelde van 'n datastel te bepaal sonder die hoogste en laagste waardes." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Die 4e opsionele parameters van die funksie VLOOKUP van \"Calc\", dui aan dat die eerste kolom met data is vooraf gesorteer. Sou dit nie die geval wees nie, gee ONWAAR of nul, aan." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Nutsbalke is konteks sensitief, hull open volgens die konteks. As u dit nie wil hê nie, deaktiveer dit onder »View ▸ Toolbars«." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Om 'n meester -dokument vanuit die huidige \"Writer\"-dokument te skep, kies »File ▸ Send ▸ Generate Master Document« (sub-dokumente word geskep afhangende van die skema)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Om selle op 'n gedrukte bladsy in \"Calc\" te sentreer, kies »Format ▸ Page..., ▸ Tab:Page ▸ Gebied: Uitleginstellings ▸ Merkers: Tabelbelyning «." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Rame kan op so 'n manier gekoppel word dat die teks van een na die ander kan vloei, soos by bladpublisering(DTP)." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Om 'n diagram te skep gebaseer op 'n \"Writer\"-tabel, klik in die tabel en kies »Insert ▸ Diagram ...«." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Om te bepaal watter karakters nie in die \"Writer\" vertoon moet word nie, merk slegs die gewenste merkblokkies onder »Ekstras ▸ Opsies... ▸ %PRODUKTNAME-Writer ▸ Formateringshulpmiddels ▸ Area: Toon formatering«." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Om na 'n spesifieke bladsy in \"Writer\" volgens sy nommer te spring, klik op die inskrywing links van die statusbalk, kies »Wysig ▸ Gaan na bladsy ...« of druk op [%MOD1 + G]." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME ondersteun meer as 150 tale." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "As u 'n ander program nodig het waarvan die venster voorop u aanbieding vertoon word, deaktiveer »Skyfievertoning ▸ Aanbiedingsinstellings ... ▸ Merkblokkie: Skyfievertoning altyd bo-aan«." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Om woorde met vetdruk in 'n \"Writer\"-dokument te vind, kies »Redigeer ▸ Vind en Vervang... ▸ Mer Opsies ... ▸ Attribuut... Font dikte«." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Met »Ekstras ▸ Sorteer ...« kan paragrawe of tabelrye in Writer alfabeties of numeries gesorteer word." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Om 'n paragraaf voor (na) 'n afdeling in te voeg, druk [%MOD2 + Enter] aan die begin (einde) van die afdeling." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME het 'n sjabloonbestuurder om estetiese dokumente te skep - probeer dit." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Bereken leningsterugbetalings in \"Calc\", byvoorbeeld = RMZ (2% / 12; 36; 2500) vir 'n rentekoers per periode van 2% / 12, 36 periodes en 'n leningsbedrag van 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "As u nie met VLOOKUP wat u wil in \"Calc\" vind nie, het u INDEX en COMPARE onbeperkte moontlikhede." #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Om verborge kolom A in \"Calc\" te wys, klik in kolom B, hou die linkermuisknop ingedruk, skuif die muis na links na die ry nommer en laat die muisknoppie los. Kies dan »Formateer ▸ Kolomme ▸ Vertoon«." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Om die bladsy nommer in \"Writer\" te verander, klik op die eerste paragraaf van die bladsy en kies »Formateer ▸ Paragraaf ... ▸ Tab: teksvloei ▸ Afdeling: breke ▸ Merkveld: Voeg-in« en voer die nommer in." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Begin %PRODUCTNAME as rollApp in enige webblaaier." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "As u 'n vreemde foutkode in \"Calc\" sien, Fout: gevolg deur 'n nommer, gee die volgende bladsy die verklaring:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Om 'n paragraaf sonder titel in die inhoudsopgawe in \"Writer\" in te sluit, kies »Formaat ▸ Paragraaf ... ▸ Tab: Omlyn en numering«, en kies die vlak van die inskrywing wat u wil hê." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Benewens die inhoudsopgawe, kan % PRODUCTNAME \"Writer\" ook gebruik word om sleutelwoorde, figure, tabelle, voorwerpe, literatuur en gebruikersgedefinieerde kaarte te skep." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "As u nie 'n gepasmaakte selstyl in \"Calc\" kan uitvee nie, kontroleer al die blaaie dat geeneen beskerm is nie." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Nodig om 'n reeks te voltooi? Kies die selreeks en klik op \"Blad→Vul selle→Vul reeks\" en kies uit: Lineêr, Groei, Datum en Outovul." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Om uit te vind of 'n sel in \"Calc\" 'n verwysing het in die formules van ander selle, kies »Ekstras ▸ Opspoorder ▸ Spoor na Afhanklike« [Shift + F5]." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "U kan die plekhouer .* gebruik, in die vervang-veld as 'n opsie vir outokorreksie." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Om die bostaande lyn in \"Calc\" te verdubbel, druk [%MOD1 + D] of kies »Tabel ▸ Vul selle ▸ Afwaarts«." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Om oor veelvuldige sprei-blaaie te soek, selekteer hulle voordat u met die soektog begin." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "'n Tabel word geskep deur selle van \"Calc\" in die normale veld van 'n skyfie in te trek en te laat val; in die oorsig, skep elke sel 'n reël in die skyfie." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME help u om twee of meer opeenvolgende spasies in \"Writer\" te skep. Kies »Ekstras ▸ AutoKorreksie ▸ AutoKorrek Opsies... ▸ Tab: Opsies ▸ Merk blokkie: Negeer dubbele spasies«." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Gebruik die Tab-sleutel in plaas van die \"Enter\"-sleutel om na die regterkant na die sel te spring na die invoer van 'n waarde in \"Calc\"." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Om die skuifbalk na links te vertoon in Writer, kies »Tools ▸ Options ... ▸ Taal Instellings ▸ Tale ▸ Merkboks: Kompleks Teks Uitleg« en kies dan »Table ▸ Right-to-Left«." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "As u 'n geformatteerde data-objek in die Styles-venster intrek, word 'n dialoogvenster oopgemaak waarin u die naam vir 'n nuwe sjabloon kan invoer." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nuwe %PRODUCTNAME-weergawes bevat nuwe funksies, foutoplossings en sekuriteitsregstellings. Hou u sagteware op datum!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "U kan nuwe XSLT- en XML-filters ontwikkel." #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Druk + om enige beskikbare aanvullende wenke in dialoogblokkies te sien, mits \"Aanvullende wenke\" nie geaktiveer is in \"Hulpprogram→Opsies→%PRODUCTNAME→Algemeen\"." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Hulp" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Verdere Informasie" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Aktiveer die aksie nou..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Wenk van die Dag: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Bevel" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opsie" diff -Nru libreoffice-7.1.2~rc2/translations/source/am/cui/messages.po libreoffice-7.1.3~rc2/translations/source/am/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/am/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/am/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-15 09:37+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563646037.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "ራሱ በራሱ ምልክት ማድረጊያ በ ፊደል ቅደም ተከተል ማስገቢያ ፋይል በ መጠቀም:" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "እርስዎ የ ነበረ ፒዲኤፍ ፋይሎች መፈረም እና እነዚህን ፊርማዎች ማረጋገጥ ይችላሉ:" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/am/filter/messages.po libreoffice-7.1.3~rc2/translations/source/am/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/am/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/am/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-03 14:36+0000\n" +"PO-Revision-Date: 2021-03-28 22:37+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562267499.000000\n" #. 5AQgJ @@ -477,7 +477,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:473 msgctxt "pdfgeneralpage|label3" msgid "Watermark" -msgstr "የውሀ ምልክት" +msgstr "የ ውሀ ምልክት" #. 2hSjJ #: filter/uiconfig/ui/pdfgeneralpage.ui:518 diff -Nru libreoffice-7.1.2~rc2/translations/source/am/formula/messages.po libreoffice-7.1.3~rc2/translations/source/am/formula/messages.po --- libreoffice-7.1.2~rc2/translations/source/am/formula/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/am/formula/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-30 17:55+0100\n" +"PO-Revision-Date: 2021-04-15 17:59+0200\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -2606,7 +2606,7 @@ #: formula/uiconfig/ui/functionpage.ui:142 msgctxt "functionpage|extended_tip|function" msgid "Displays the functions found under the selected category. Double-click to select a function." -msgstr "በ ተመረጠው ምድብ ውስጥ ያለውን ተግባሮች ማሳያ: ሁለት ጊዜ-ይጫኑ ተግባር ለ መምረጥ " +msgstr "በ ተመረጠው ምድብ ውስጥ ያለውን ተግባሮች ማሳያ: ሁለት ጊዜ-ይጫኑ ተግባር ለ መምረጥ:" #. jY887 #: formula/uiconfig/ui/functionpage.ui:156 @@ -2624,7 +2624,7 @@ #: formula/uiconfig/ui/parameter.ui:226 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 "እርስዎን የሚያስችለው ዝቅተኛ ደረጃ ጋር መድረስ ነው የ ተግባር አዋቂ ሌላ ተግባር ለማቀፍ በ ተግባር ውስጥ: ከ ዋጋ ወይንም ማመሳከሪያ ይልቅ " +msgstr "እርስዎን የሚያስችለው ዝቅተኛ ደረጃ ጋር መድረስ ነው የ ተግባር አዋቂ ሌላ ተግባር ለማቀፍ በ ተግባር ውስጥ: ከ ዋጋ ወይንም ማመሳከሪያ ይልቅ:" #. u3Zoo #: formula/uiconfig/ui/parameter.ui:242 diff -Nru libreoffice-7.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/am/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/am/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-03-18 16:16+0000\n" "Last-Translator: serval2412 \n" "Language-Team: Amharic \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "ብልጭ ድርግም የሚሉ ፊደሎች የሚያንጸባርቁ ፊደሎች" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "ብልጭ ድርግም ባይ" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "የተመረጡትን ባህሪዎች ብልጭ ድርግም ማድረጊያ: ብልጭ ድርግም ማድረጊያውን ድግግሞሽ መቀየር አይቻልም " - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/am/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-01-31 16:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1558716055.000000\n" #. HhMVS @@ -2724,7 +2724,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "አገር ወይም ክፍለ ሀገር" +msgstr "አገር ወይንም ክፍለ ሀገር" #. L2kTq #: TableWizard.xcu @@ -2734,7 +2734,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "አገር ወይም ክፍለ ሀገር" +msgstr "አገር ወይንም ክፍለ ሀገር" #. 7vbwU #: TableWizard.xcu @@ -2744,7 +2744,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "አገር ወይም አካባቢ" +msgstr "አገር ወይንም አካባቢ" #. DD6BN #: TableWizard.xcu @@ -2754,7 +2754,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "አገር ወይም አካባቢ" +msgstr "አገር ወይንም አካባቢ" #. S54BS #: TableWizard.xcu @@ -2784,7 +2784,7 @@ "Name\n" "value.text" msgid "FaxNumber" -msgstr "የፋክስ ቁጥር" +msgstr "የ ፋክስ ቁጥር" #. E3GV3 #: TableWizard.xcu @@ -2794,7 +2794,7 @@ "ShortName\n" "value.text" msgid "FaxNo" -msgstr "የፋክስ ቁጥር" +msgstr "የ ፋክስ ቁጥር" #. CTw9G #: TableWizard.xcu @@ -2804,7 +2804,7 @@ "Name\n" "value.text" msgid "PaymentTerms" -msgstr "የክፍያ ውሎች" +msgstr "የ ክፍያ ውሎች" #. 6o6vG #: TableWizard.xcu @@ -2814,7 +2814,7 @@ "ShortName\n" "value.text" msgid "PaymntTerm" -msgstr "የክፍያ ውሎች" +msgstr "የ ክፍያ ውሎች" #. JyCyG #: TableWizard.xcu @@ -2864,7 +2864,7 @@ "Name\n" "value.text" msgid "MailingList" -msgstr "የደብዳቤ ዝርዝር" +msgstr "የ ደብዳቤ ዝርዝር" #. jky3u #: TableWizard.xcu @@ -3014,7 +3014,7 @@ "Name\n" "value.text" msgid "OrganizationName" -msgstr "የድርጅቱ ስም" +msgstr "የ ድርጅቱ ስም" #. wpaAa #: TableWizard.xcu @@ -3024,7 +3024,7 @@ "ShortName\n" "value.text" msgid "OrgName" -msgstr "የድርጅቱ ስም" +msgstr "የ ድርጅቱ ስም" #. 6QYSH #: TableWizard.xcu @@ -3094,7 +3094,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "አገር ወይም ክፍለ ሀገር" +msgstr "አገር ወይንም ክፍለ ሀገር" #. bCtze #: TableWizard.xcu @@ -3104,7 +3104,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "አገር ወይም ክፍለ ሀገር" +msgstr "አገር ወይንም ክፍለ ሀገር" #. opTNs #: TableWizard.xcu @@ -3114,7 +3114,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "አገር ወይም አካባቢ" +msgstr "አገር ወይንም አካባቢ" #. yKEd8 #: TableWizard.xcu @@ -3124,7 +3124,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "አገር ወይም አካባቢ" +msgstr "አገር ወይንም አካባቢ" #. PRTbv #: TableWizard.xcu @@ -3154,7 +3154,7 @@ "Name\n" "value.text" msgid "FaxNumber" -msgstr "የፋክስ ቁጥር" +msgstr "የ ፋክስ ቁጥር" #. NTzW3 #: TableWizard.xcu @@ -3164,7 +3164,7 @@ "ShortName\n" "value.text" msgid "FaxNo" -msgstr "የፋክስ ቁጥር" +msgstr "የ ፋክስ ቁጥር" #. 8eqkq #: TableWizard.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/am/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/am/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/am/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/am/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-03 19:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559687799.000000\n" #. bHbFE @@ -928,7 +928,7 @@ #: include/sfx2/strings.hrc:168 msgctxt "RID_SVXSTR_TXTFILTER_FILTERERROR" msgid "This is not a text document" -msgstr "" +msgstr "ይህ የ ጽሁፍ ሰነድ አይደለም" #. ejBgZ #: include/sfx2/strings.hrc:169 @@ -1014,44 +1014,44 @@ #: include/sfx2/strings.hrc:185 msgctxt "STR_REDACTION_TARGET_TYPE_TEXT" msgid "Text" -msgstr "" +msgstr "ጽሁፍ" #. eG5qc #: include/sfx2/strings.hrc:186 msgctxt "STR_REDACTION_TARGET_TYPE_REGEX" msgid "Regular expression" -msgstr "" +msgstr "መደበኛ አገላለጽ" #. TaDCG #: include/sfx2/strings.hrc:187 msgctxt "STR_REDACTION_TARGET_TYPE_PREDEF" msgid "Predefined" -msgstr "" +msgstr "በቅድሚያ የ ተገለጸ" #. bDjwW #: include/sfx2/strings.hrc:188 msgctxt "STR_REDACTION_TARGET_TYPE_UNKNOWN" msgid "Unknown" -msgstr "" +msgstr "ያልታወቀ" #. Ao6kC #. Translators: Column headers in Auto-redaction dialog's targets list #: include/sfx2/strings.hrc:191 msgctxt "STR_REDACTION_TARGET_NAME" msgid "Target Name" -msgstr "" +msgstr "የ ኢላማው ስም" #. mGjsx #: include/sfx2/strings.hrc:192 msgctxt "STR_REDACTION_TYPE" msgid "Type" -msgstr "" +msgstr "አይነት" #. gFKC4 #: include/sfx2/strings.hrc:193 msgctxt "STR_REDACTION_CONTENT" msgid "Content" -msgstr "" +msgstr "ይዞታው" #. oSNPd #: include/sfx2/strings.hrc:194 @@ -1063,39 +1063,39 @@ #: include/sfx2/strings.hrc:195 msgctxt "STR_REDACTION_WHOLE_WORDS" msgid "Whole Words" -msgstr "" +msgstr "ጠቅላላ ቃል" #. YgzCk #. Translators: Values for the Case Sensitive and the Whole Words columns in Auto-redaction dialog #: include/sfx2/strings.hrc:198 msgctxt "STR_REDACTION_YES" msgid "Yes" -msgstr "" +msgstr "አዎ" #. oZNaM #: include/sfx2/strings.hrc:199 msgctxt "STR_REDACTION_NO" msgid "No" -msgstr "" +msgstr "አይ" #. FM3Gf #. Translators: Misc strings of the Auto Redaction dialog #: include/sfx2/strings.hrc:202 msgctxt "STR_REDACTION_TARGET" msgid "Target" -msgstr "" +msgstr "ኢላማው" #. m2i7V #: include/sfx2/strings.hrc:203 msgctxt "STR_REDACTION_LOAD_TARGETS" msgid "Load Targets" -msgstr "" +msgstr "ኢላማዎች መጫኛ" #. HgrwX #: include/sfx2/strings.hrc:204 msgctxt "STR_REDACTION_SAVE_TARGETS" msgid "Save Targets" -msgstr "" +msgstr "ኢላማዎች ማስቀመጫ" #. MYMTF #: include/sfx2/strings.hrc:205 diff -Nru libreoffice-7.1.2~rc2/translations/source/an/cui/messages.po libreoffice-7.1.3~rc2/translations/source/an/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/an/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/an/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-08-31 13:02+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" @@ -2445,1071 +2445,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/connectivity/messages.po libreoffice-7.1.3~rc2/translations/source/ar/connectivity/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/connectivity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/connectivity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-03-10 13:36+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-03-30 14:36+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -82,7 +82,7 @@ #: connectivity/inc/strings.hrc:37 msgctxt "STR_NO_CONNECTION_GIVEN" msgid "No connection to the database exists." -msgstr "" +msgstr "لا يوجد اتصال بقاعدة البيانات." #. 5BYEX #: connectivity/inc/strings.hrc:38 @@ -336,7 +336,7 @@ #: connectivity/inc/strings.hrc:80 msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME" msgid "The index could not be created. The file '$filename$' is used by another index." -msgstr "" +msgstr "تعذّر إنشاء الفهرس. الملف '$filename$' مستخدَم من فهرس آخر." #. GcK7B #: connectivity/inc/strings.hrc:81 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ar/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563567066.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "هل كنت تعلم أنك تستطيع إرفاق تعليقات على أجزاء من النص؟ ما عليك إلا استخدام الإختصار %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "مزيد من المعلومات" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "شغّل هذا الإجراء الآن..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "تلميحة اليوم: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" @@ -17407,7 +17401,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:410 msgctxt "paraindentspacing|liststoreLB_LINEDIST" msgid "Leading" -msgstr "المسافة بين السطور" +msgstr "فوْصلَة" #. 9fdqy #: cui/uiconfig/ui/paraindentspacing.ui:423 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/editeng/messages.po libreoffice-7.1.3~rc2/translations/source/ar/editeng/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/editeng/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/editeng/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -45,7 +45,7 @@ #: editeng/inc/strings.hrc:21 msgctxt "RID_SVXITEMS_HORJUST_BLOCK" msgid "Justify horizontally" -msgstr "" +msgstr "وسّط أفقيا" #. DVmUh #: editeng/inc/strings.hrc:22 @@ -82,20 +82,20 @@ #: editeng/inc/strings.hrc:32 msgctxt "RID_SVXITEMS_HORJUST_BLOCK" msgid "Justify vertically" -msgstr "" +msgstr "وسّط رأسيا" #. WQZvF #. enum SvxCellJustifyMethod ---------------------------------------------------- #: editeng/inc/strings.hrc:38 msgctxt "RID_SVXITEMS_JUSTMETHOD_AUTO" msgid "Automatic Justify" -msgstr "" +msgstr "توسيط تلقائي" #. o9aJe #: editeng/inc/strings.hrc:39 msgctxt "RID_SVXITEMS_JUSTMETHOD_DISTRIBUTE" msgid "Distributed Justify" -msgstr "" +msgstr "توسيط موزَّع" #. 2Lzx7 #: editeng/uiconfig/ui/spellmenu.ui:12 @@ -1169,49 +1169,49 @@ #: include/editeng/editrids.hrc:218 msgctxt "RID_SVXITEMS_LINESPACING_SINGLE" msgid "Single" -msgstr "" +msgstr "مفرد" #. 8xELr #: include/editeng/editrids.hrc:219 msgctxt "RID_SVXITEMS_LINESPACING_115" msgid "1.15 Lines" -msgstr "" +msgstr "1.15 سطر" #. BE4uB #: include/editeng/editrids.hrc:220 msgctxt "RID_SVXITEMS_LINESPACING_15" msgid "1.5 Lines" -msgstr "" +msgstr "1.5 سطر" #. uECD7 #: include/editeng/editrids.hrc:221 msgctxt "RID_SVXITEMS_LINESPACING_DOUBLE" msgid "Double" -msgstr "" +msgstr "مزدوج" #. rpjTU #: include/editeng/editrids.hrc:222 msgctxt "RID_SVXITEMS_LINESPACING_PROPORTIONAL" msgid "Proportional" -msgstr "" +msgstr "متناسب" #. BAMDF #: include/editeng/editrids.hrc:223 msgctxt "RID_SVXITEMS_LINESPACING_MIN" msgid "At least" -msgstr "" +msgstr "على الأقل" #. sG5JS #: include/editeng/editrids.hrc:224 msgctxt "RID_SVXITEMS_LINESPACING_LEADING" msgid "Leading" -msgstr "" +msgstr "فوْصلَة" #. Y4oRf #: include/editeng/editrids.hrc:225 msgctxt "RID_SVXITEMS_LINESPACING_FIXED" msgid "Fixed" -msgstr "" +msgstr "ثابت" #. Z6CiF #. To translators: %1 == will be replaced by the number of lines @@ -1489,13 +1489,13 @@ #: include/editeng/editrids.hrc:273 msgctxt "RID_SVXITEMS_FRMDIR_ENVIRONMENT" msgid "Use superordinate object text direction setting" -msgstr "استخدام إعداد اتجاه نص الكائن الأفضل" +msgstr "استخدم إعداد اتجاه نص الكائن الرئيسي" #. waJEN #: include/editeng/editrids.hrc:274 msgctxt "RID_SVXITEMS_FRMDIR_VERT_BOT_LEFT" msgid "Text direction left-to-right (vertical from bottom)" -msgstr "" +msgstr "اتجاه النص يسار-الى-يمين (رأسي من الأسفل)" #. Z9dAu #: include/editeng/editrids.hrc:275 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/ar/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -452,7 +452,7 @@ #: extensions/inc/stringarrays.hrc:150 msgctxt "RID_RSC_ENUM_SELECTION_TYPE" msgid "Range" -msgstr "مدى" +msgstr "المجال" #. 8dCg5 #: extensions/inc/stringarrays.hrc:155 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/filter/source/config/fragments/filters.po libreoffice-7.1.3~rc2/translations/source/ar/filter/source/config/fragments/filters.po --- libreoffice-7.1.2~rc2/translations/source/ar/filter/source/config/fragments/filters.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/filter/source/config/fragments/filters.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-04-27 15:54+0200\n" -"PO-Revision-Date: 2021-01-28 16:36+0000\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1530484897.000000\n" #. FR4Ff @@ -44,7 +44,7 @@ "UIName\n" "value.text" msgid "Apple Keynote" -msgstr "" +msgstr "آبل كِينوت" #. 5bCwT #: AppleNumbers.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ar/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ar/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-03-08 23:36+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542196252.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-11 06:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -584,7 +584,7 @@ "Label\n" "value.text" msgid "Freeze First Column" -msgstr "" +msgstr "جمّد العمود الأول" #. WDbnU #: CalcCommands.xcu @@ -594,7 +594,7 @@ "Label\n" "value.text" msgid "Freeze First Row" -msgstr "" +msgstr "جمّد الصف الأول" #. Qz2C5 #: CalcCommands.xcu @@ -1324,7 +1324,7 @@ "Label\n" "value.text" msgid "Conditional Formatting..." -msgstr "" +msgstr "تنسيق شرطي..." #. YFKd7 #: CalcCommands.xcu @@ -2344,7 +2344,7 @@ "Label\n" "value.text" msgid "R~efresh Range" -msgstr "ت~حديث النطاق" +msgstr "ت~حديث المجال" #. DQNFa #: CalcCommands.xcu @@ -3334,7 +3334,7 @@ "Label\n" "value.text" msgid "~Define Range..." -msgstr "" +msgstr "~عرّف المجال..." #. hQQPE #: CalcCommands.xcu @@ -3344,7 +3344,7 @@ "Label\n" "value.text" msgid "Select ~Range..." -msgstr "" +msgstr "ح~دد المجال..." #. LGT6z #: CalcCommands.xcu @@ -3354,7 +3354,7 @@ "Label\n" "value.text" msgid "Strea~ms..." -msgstr "التدف~قات..." +msgstr "الدف~قات..." #. jHBWd #: CalcCommands.xcu @@ -3364,7 +3364,7 @@ "Label\n" "value.text" msgid "Resume streaming" -msgstr "متابعة التدفّق" +msgstr "متابعة الدفق" #. aC3B9 #: CalcCommands.xcu @@ -3374,7 +3374,7 @@ "Label\n" "value.text" msgid "Stop streaming" -msgstr "إيقاف التدفّق" +msgstr "إيقاف الدفق" #. BcMEb #: CalcCommands.xcu @@ -3544,7 +3544,7 @@ "Label\n" "value.text" msgid "Rename Sheet" -msgstr "غيّر اسم الورقة" +msgstr "أعد تسمية الورقة" #. XX6G4 #: CalcCommands.xcu @@ -18257,7 +18257,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "ابحث عن نص منسّق" +msgstr "نص بحث العَرض المنسّق" #. hoECC #: GenericCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/sc/messages.po libreoffice-7.1.3~rc2/translations/source/ar/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-19 17:36+0000\n" +"PO-Revision-Date: 2021-04-11 06:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -1355,7 +1355,7 @@ #: sc/inc/globstr.hrc:253 msgctxt "STR_AREA" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. FQACy #: sc/inc/globstr.hrc:254 @@ -1643,7 +1643,7 @@ #: sc/inc/globstr.hrc:299 msgctxt "STR_UNDO_RENAME_TAB" msgid "Rename Sheet" -msgstr "غيّر اسم الورقة" +msgstr "أعد تسمية الورقة" #. 8soVt #: sc/inc/globstr.hrc:300 @@ -3402,7 +3402,7 @@ #: sc/inc/scerrors.hrc:79 msgctxt "RID_ERRHDLSC" msgid "The data could not be loaded completely because the maximum number of columns per sheet was exceeded." -msgstr "" +msgstr "تعذّر تحميل البيانات كاملةًبسبب تجاوز العدد الأقصى من الأعمدة للورقة." #. GcFDP #: sc/inc/scerrors.hrc:81 @@ -3417,7 +3417,7 @@ #: sc/inc/scerrors.hrc:83 msgctxt "RID_ERRHDLSC" msgid "The data could not be loaded completely because the maximum number of characters per cell was exceeded." -msgstr "" +msgstr "تعذّر تحميل البيانات كاملةًبسبب تجاوز العدد الأقصى من المحارف للخلية." #. He2Ho #: sc/inc/scerrors.hrc:85 @@ -3487,10 +3487,9 @@ #. h2693 #: sc/inc/scerrors.hrc:105 -#, fuzzy msgctxt "RID_ERRHDLSC" msgid "Not all attributes could be read." -msgstr "لا يمكن قراءة كل الخواص." +msgstr "ليس كل الصفات أمكن قرائتها." #. tCBGH #: sc/inc/scfuncs.hrc:37 @@ -4086,10 +4085,9 @@ #. ZUUYG #: sc/inc/scfuncs.hrc:210 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Date 1" -msgstr "تاريخ " +msgstr "تاريخ 1" #. isAbX #: sc/inc/scfuncs.hrc:211 @@ -4099,10 +4097,9 @@ #. wWHWp #: sc/inc/scfuncs.hrc:212 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Date 2" -msgstr "تاريخ " +msgstr "تاريخ 2" #. 9DEEN #: sc/inc/scfuncs.hrc:213 @@ -4492,10 +4489,9 @@ #. bGFGP #: sc/inc/scfuncs.hrc:346 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE" msgid "Date 2" -msgstr "تاريخ " +msgstr "تاريخ 2" #. u2ebL #: sc/inc/scfuncs.hrc:347 @@ -4505,10 +4501,9 @@ #. mAuEW #: sc/inc/scfuncs.hrc:348 -#, fuzzy msgctxt "SC_OPCODE_GET_DIFF_DATE" msgid "Date 1" -msgstr "تاريخ " +msgstr "تاريخ 1" #. hPAVA #: sc/inc/scfuncs.hrc:349 @@ -5717,10 +5712,9 @@ #. cGmzv #: sc/inc/scfuncs.hrc:657 -#, fuzzy msgctxt "SC_OPCODE_NPV" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. HKDEV #: sc/inc/scfuncs.hrc:658 @@ -6218,10 +6212,9 @@ #. Dyn4C #: sc/inc/scfuncs.hrc:844 -#, fuzzy msgctxt "SC_OPCODE_CURRENT" msgid "Calculates the current value of the formula at the present location." -msgstr "حساب القيمة الحالية للصيغة في الموضع الحالي. " +msgstr "يحسب القيمة الحالية للصيغة في الموضع الحالي." #. yQMAM #: sc/inc/scfuncs.hrc:850 @@ -6474,13 +6467,13 @@ #: sc/inc/scfuncs.hrc:945 msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. p3U4L #: sc/inc/scfuncs.hrc:946 msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS" msgid "The range in which empty cells are to be counted." -msgstr "النطاق الذي ستعد الخلايا الفارغة من خلاله." +msgstr "المجال الذي ستحسَب الخلايا الفارغة فيه." #. NRYYy #: sc/inc/scfuncs.hrc:952 @@ -6556,7 +6549,7 @@ #: sc/inc/scfuncs.hrc:983 msgctxt "SC_OPCODE_SUM_IF" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. je6F2 #: sc/inc/scfuncs.hrc:984 @@ -6600,7 +6593,7 @@ #: sc/inc/scfuncs.hrc:995 msgctxt "SC_OPCODE_AVERAGE_IF" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. i6C6r #: sc/inc/scfuncs.hrc:996 @@ -6655,10 +6648,9 @@ #. wcHBn #: sc/inc/scfuncs.hrc:1008 -#, fuzzy msgctxt "SC_OPCODE_SUM_IFS" msgid "Range " -msgstr "النطاق" +msgstr "المجال " #. 9qDvh #: sc/inc/scfuncs.hrc:1009 @@ -6700,10 +6692,9 @@ #. a99iD #: sc/inc/scfuncs.hrc:1020 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_IFS" msgid "Range " -msgstr "النطاق" +msgstr "المجال " #. wvbDq #: sc/inc/scfuncs.hrc:1021 @@ -6732,10 +6723,9 @@ #. BDv5j #: sc/inc/scfuncs.hrc:1030 -#, fuzzy msgctxt "SC_OPCODE_COUNT_IFS" msgid "Range " -msgstr "النطاق" +msgstr "المجال " #. 8GRAv #: sc/inc/scfuncs.hrc:1031 @@ -6766,14 +6756,13 @@ #: sc/inc/scfuncs.hrc:1040 msgctxt "SC_OPCODE_COUNT_IF" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. KXd5A #: sc/inc/scfuncs.hrc:1041 -#, fuzzy msgctxt "SC_OPCODE_COUNT_IF" msgid "The range of cells to be evaluated by the criteria given." -msgstr "النطاق المراد تطبيق المعايير عليه." +msgstr "مجال الخلايا المراد تقييمه بالمعايير المعطاة." #. pGUfg #: sc/inc/scfuncs.hrc:1042 @@ -6857,10 +6846,9 @@ #. xQEvM #: sc/inc/scfuncs.hrc:1080 -#, fuzzy msgctxt "SC_OPCODE_COMBIN" msgid "Number 1" -msgstr "الرقم " +msgstr "الرقم 1" #. ACGaC #: sc/inc/scfuncs.hrc:1081 @@ -6870,10 +6858,9 @@ #. WJTxU #: sc/inc/scfuncs.hrc:1082 -#, fuzzy msgctxt "SC_OPCODE_COMBIN" msgid "Number 2" -msgstr "الرقم " +msgstr "الرقم 2" #. JKD75 #: sc/inc/scfuncs.hrc:1083 @@ -6889,10 +6876,9 @@ #. YEVJh #: sc/inc/scfuncs.hrc:1090 -#, fuzzy msgctxt "SC_OPCODE_COMBIN_A" msgid "Number 1" -msgstr "الرقم " +msgstr "الرقم 1" #. smqPP #: sc/inc/scfuncs.hrc:1091 @@ -6902,10 +6888,9 @@ #. vCGLG #: sc/inc/scfuncs.hrc:1092 -#, fuzzy msgctxt "SC_OPCODE_COMBIN_A" msgid "Number 2" -msgstr "الرقم " +msgstr "الرقم 2" #. F9A6f #: sc/inc/scfuncs.hrc:1093 @@ -7213,10 +7198,9 @@ #. dYtW9 #: sc/inc/scfuncs.hrc:1228 -#, fuzzy msgctxt "SC_OPCODE_ARC_TAN_2" msgid "Number X" -msgstr "الرقم " +msgstr "الرقم س" #. WsSq4 #: sc/inc/scfuncs.hrc:1229 @@ -7227,10 +7211,9 @@ #. PWbXR #: sc/inc/scfuncs.hrc:1230 -#, fuzzy msgctxt "SC_OPCODE_ARC_TAN_2" msgid "Number Y" -msgstr "الرقم " +msgstr "الرقم ص" #. TRECx #: sc/inc/scfuncs.hrc:1231 @@ -7519,13 +7502,13 @@ #: sc/inc/scfuncs.hrc:1348 msgctxt "SC_OPCODE_SUB_TOTAL" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. QkjWV #: sc/inc/scfuncs.hrc:1349 msgctxt "SC_OPCODE_SUB_TOTAL" msgid "The cells of the range which are to be taken into account." -msgstr "خلايا النطاق التي ستؤخذ في الحسبان." +msgstr "خلايا المجال التي ستؤخذ في الحسبان." #. us3F9 #: sc/inc/scfuncs.hrc:1355 @@ -8148,10 +8131,9 @@ #. FhD6y #: sc/inc/scfuncs.hrc:1556 -#, fuzzy msgctxt "SC_OPCODE_MAT_MULT" msgid "Array 1" -msgstr "مصفوفة " +msgstr "مصفوفة 1" #. FdTzG #: sc/inc/scfuncs.hrc:1557 @@ -8161,10 +8143,9 @@ #. Ebs87 #: sc/inc/scfuncs.hrc:1558 -#, fuzzy msgctxt "SC_OPCODE_MAT_MULT" msgid "Array 2" -msgstr "مصفوفة " +msgstr "مصفوفة 2" #. 3xEDC #: sc/inc/scfuncs.hrc:1559 @@ -8253,10 +8234,9 @@ #. AUFNs #: sc/inc/scfuncs.hrc:1598 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Array X" -msgstr "مصفوفة " +msgstr "مصفوفة س" #. 9vSGo #: sc/inc/scfuncs.hrc:1599 @@ -8266,10 +8246,9 @@ #. YSPPg #: sc/inc/scfuncs.hrc:1600 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2MY2" msgid "Array Y" -msgstr "مصفوفة " +msgstr "مصفوفة ص" #. 9T4Rr #: sc/inc/scfuncs.hrc:1601 @@ -8285,10 +8264,9 @@ #. FrwhU #: sc/inc/scfuncs.hrc:1608 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Array X" -msgstr "مصفوفة " +msgstr "مصفوفة س" #. H8mTf #: sc/inc/scfuncs.hrc:1609 @@ -8298,10 +8276,9 @@ #. Vtggo #: sc/inc/scfuncs.hrc:1610 -#, fuzzy msgctxt "SC_OPCODE_SUM_X2DY2" msgid "Array Y" -msgstr "مصفوفة " +msgstr "مصفوفة ص" #. reqfP #: sc/inc/scfuncs.hrc:1611 @@ -8317,10 +8294,9 @@ #. ZMxo6 #: sc/inc/scfuncs.hrc:1618 -#, fuzzy msgctxt "SC_OPCODE_SUM_XMY2" msgid "Array X" -msgstr "مصفوفة " +msgstr "مصفوفة س" #. 53FNi #: sc/inc/scfuncs.hrc:1619 @@ -8330,10 +8306,9 @@ #. BKfnC #: sc/inc/scfuncs.hrc:1620 -#, fuzzy msgctxt "SC_OPCODE_SUM_XMY2" msgid "Array Y" -msgstr "مصفوفة " +msgstr "مصفوفة ص" #. 2mWCE #: sc/inc/scfuncs.hrc:1621 @@ -8611,10 +8586,9 @@ #. iDFDE #: sc/inc/scfuncs.hrc:1694 -#, fuzzy msgctxt "SC_OPCODE_COUNT" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. 54dLB #: sc/inc/scfuncs.hrc:1695 @@ -8630,10 +8604,9 @@ #. iqtKK #: sc/inc/scfuncs.hrc:1702 -#, fuzzy msgctxt "SC_OPCODE_COUNT_2" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. sDGzy #: sc/inc/scfuncs.hrc:1703 @@ -8667,10 +8640,9 @@ #. 6ZyXF #: sc/inc/scfuncs.hrc:1718 -#, fuzzy msgctxt "SC_OPCODE_MAX_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. 5XaxK #: sc/inc/scfuncs.hrc:1719 @@ -8704,10 +8676,9 @@ #. hWgKX #: sc/inc/scfuncs.hrc:1734 -#, fuzzy msgctxt "SC_OPCODE_MIN_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. vUbLY #: sc/inc/scfuncs.hrc:1735 @@ -8761,10 +8732,9 @@ #. Q4kGy #: sc/inc/scfuncs.hrc:1758 -#, fuzzy msgctxt "SC_OPCODE_VAR_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. QDDDd #: sc/inc/scfuncs.hrc:1759 @@ -8817,10 +8787,9 @@ #. eRVBj #: sc/inc/scfuncs.hrc:1782 -#, fuzzy msgctxt "SC_OPCODE_VAR_P_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. yZFuZ #: sc/inc/scfuncs.hrc:1783 @@ -8874,10 +8843,9 @@ #. Smbhk #: sc/inc/scfuncs.hrc:1806 -#, fuzzy msgctxt "SC_OPCODE_ST_DEV_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. pXYdc #: sc/inc/scfuncs.hrc:1807 @@ -8935,7 +8903,7 @@ #, fuzzy msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. GGkKW #: sc/inc/scfuncs.hrc:1831 @@ -8971,10 +8939,9 @@ #. eCCGY #: sc/inc/scfuncs.hrc:1846 -#, fuzzy msgctxt "SC_OPCODE_AVERAGE_A" msgid "Value " -msgstr "القيمة" +msgstr "القيمة " #. NxVLD #: sc/inc/scfuncs.hrc:1847 @@ -12820,10 +12787,9 @@ #. EeFFo #: sc/inc/scfuncs.hrc:2985 -#, fuzzy msgctxt "SC_OPCODE_F_TEST" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. YfKrA #: sc/inc/scfuncs.hrc:2986 @@ -12833,10 +12799,9 @@ #. HcSHD #: sc/inc/scfuncs.hrc:2987 -#, fuzzy msgctxt "SC_OPCODE_F_TEST" msgid "Data 2" -msgstr "تاريخ " +msgstr "بيانات 2" #. DdRTF #: sc/inc/scfuncs.hrc:2988 @@ -12852,10 +12817,9 @@ #. K37cV #: sc/inc/scfuncs.hrc:2995 -#, fuzzy msgctxt "SC_OPCODE_F_TEST_MS" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. tEFdd #: sc/inc/scfuncs.hrc:2996 @@ -12940,10 +12904,9 @@ #. 5fHC3 #: sc/inc/scfuncs.hrc:3019 -#, fuzzy msgctxt "SC_OPCODE_T_TEST_MS" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. F5qSy #: sc/inc/scfuncs.hrc:3020 @@ -13124,10 +13087,9 @@ #. ZhepS #: sc/inc/scfuncs.hrc:3073 -#, fuzzy msgctxt "SC_OPCODE_PEARSON" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. RAEvh #: sc/inc/scfuncs.hrc:3074 @@ -13156,10 +13118,9 @@ #. ojEas #: sc/inc/scfuncs.hrc:3083 -#, fuzzy msgctxt "SC_OPCODE_CORREL" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. 7VtBm #: sc/inc/scfuncs.hrc:3084 @@ -13189,10 +13150,9 @@ #. MBP4T #: sc/inc/scfuncs.hrc:3093 -#, fuzzy msgctxt "SC_OPCODE_COVAR" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. skBUc #: sc/inc/scfuncs.hrc:3094 @@ -13222,10 +13182,9 @@ #. GRFHF #: sc/inc/scfuncs.hrc:3103 -#, fuzzy msgctxt "SC_OPCODE_COVARIANCE_P" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. AQzmF #: sc/inc/scfuncs.hrc:3104 @@ -13255,10 +13214,9 @@ #. eSQnz #: sc/inc/scfuncs.hrc:3113 -#, fuzzy msgctxt "SC_OPCODE_COVARIANCE_S" msgid "Data 1" -msgstr "تاريخ " +msgstr "بيانات 1" #. VZuaM #: sc/inc/scfuncs.hrc:3114 @@ -14290,19 +14248,19 @@ #: sc/inc/scfuncs.hrc:3389 msgctxt "SC_OPCODE_INDEX" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. U4YBB #: sc/inc/scfuncs.hrc:3390 msgctxt "SC_OPCODE_INDEX" msgid "The index of the subrange if referring to a multiple range." -msgstr "فهرس انطاق الجزئي إذا كان يشير إلى نطاق متعدد." +msgstr "فهرس المجال الفرعي إن كانت الإشارة إلى مجال متعدد." #. AAABU #: sc/inc/scfuncs.hrc:3396 msgctxt "SC_OPCODE_INDIRECT" msgid "Returns the contents of a cell that is referenced in text form." -msgstr "إرجاع محتويات خلية محددة كمرجع على هيئة نص." +msgstr "يُرجِع محتويات خلية محددة كمرجع على هيئة نص." #. ng7BT #: sc/inc/scfuncs.hrc:3397 @@ -16927,7 +16885,7 @@ #: sc/inc/strings.hrc:46 msgctxt "SCSTR_RENAMETAB" msgid "Rename Sheet" -msgstr "غيّر اسم الورقة" +msgstr "أعد تسمية الورقة" #. EEcgV #: sc/inc/strings.hrc:47 @@ -18040,21 +17998,19 @@ #: sc/inc/strings.hrc:242 msgctxt "STRID_CALC_RANGE" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. LHk8p #: sc/inc/strings.hrc:243 -#, fuzzy msgctxt "STRID_CALC_MIN" msgid "Minimum" -msgstr "الحد الأدنى" +msgstr "الأدنى" #. LtMJs #: sc/inc/strings.hrc:244 -#, fuzzy msgctxt "STRID_CALC_MAX" msgid "Maximum" -msgstr "الحد الأقصى" +msgstr "الأقصى" #. Q5r5c #: sc/inc/strings.hrc:245 @@ -19517,19 +19473,19 @@ #: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11 msgctxt "checkwarningdialog|CheckWarningDialog" msgid "You are pasting data into cells that already contain data." -msgstr "" +msgstr "أنت تلصق بيانات في خلايا تحتوي بيانات مسبقًا." #. CKjJw #: sc/uiconfig/scalc/ui/checkwarningdialog.ui:12 msgctxt "checkwarningdialog|CheckWarningDialog" msgid "Do you really want to overwrite the existing data?" -msgstr "" +msgstr "هل تريد بالفعل الكتابة على البيانات الموجودة؟" #. thPSB #: sc/uiconfig/scalc/ui/checkwarningdialog.ui:76 msgctxt "checkwarningdialog|ask" msgid "Warn me about this in the future." -msgstr "" +msgstr "حذّرني عن هذا مستقبلا." #. SE9uJ #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:8 @@ -19667,13 +19623,13 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:133 msgctxt "condformatmanager|STR_HEADER_RANGE" msgid "Range" -msgstr "" +msgstr "المجال" #. Gipiw #: sc/uiconfig/scalc/ui/condformatmanager.ui:146 msgctxt "condformatmanager|STR_HEADER_FIRST_CONDITION" msgid "First Condition" -msgstr "" +msgstr "الشرط الأول" #. Cshpe #: sc/uiconfig/scalc/ui/condformatmanager.ui:157 @@ -21815,28 +21771,27 @@ #. nHoB2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:18 -#, fuzzy msgctxt "definedatabaserangedialog|DefineDatabaseRangeDialog" msgid "Define Database Range" -msgstr "تحديد نطاق قاعدة البيانات" +msgstr "عرّف مجال قاعدة البيانات" #. CyzxS #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:44 msgctxt "definedatabaserangedialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "يحفظ كل التغييرات ويغلق الحواري." #. djkZd #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:63 msgctxt "definedatabaserangedialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "يغلق الحواري ويستبعد كل التغييرات." #. RMghE #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:176 msgctxt "definedatabaserangedialog|extended_tip|entry" msgid "Enter a name for the database range that you want to define, or select an existing name from the list." -msgstr "" +msgstr "أدخِل اسمًا لمجال قاعدة البيانات الذي تريد تعريفه، أو حدد اسمًا موجودا من اللائحة." #. 4FqWF #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:193 @@ -21860,13 +21815,13 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:269 msgctxt "definedatabaserangedialog|Range" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. CPDFA #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:297 msgctxt "definedatabaserangedialog|extended_tip|add" msgid "Adds the selected cell range to the database range list, or modifies an existing database range." -msgstr "" +msgstr "يضيف مجال الخلايا المحدد الى لائحة مجال قاعدة البيانات، أو يعدّل مجال قاعدة بيانات موجود." #. N8Lui #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:309 @@ -21891,7 +21846,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:377 msgctxt "definedatabaserangedialog|extended_tip|ContainsColumnLabels" msgid "Selected cell ranges contains labels." -msgstr "" +msgstr "مجالات الخلايا المحددة تحتوي لصائق." #. QBs5X #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:389 @@ -24491,7 +24446,7 @@ #: sc/uiconfig/scalc/ui/movecopysheet.ui:16 msgctxt "movecopysheet|MoveCopySheetDialog" msgid "Move/Copy Sheet" -msgstr "" +msgstr "انقل/انسخ الورقة" #. iJZov #: sc/uiconfig/scalc/ui/movecopysheet.ui:99 @@ -24519,10 +24474,9 @@ #. ENjjq #: sc/uiconfig/scalc/ui/movecopysheet.ui:195 -#, fuzzy msgctxt "movecopysheet|toDocumentLabel" msgid "To _document" -msgstr "إلى المستند" +msgstr "إلى ال_مستند" #. jfC53 #: sc/uiconfig/scalc/ui/movecopysheet.ui:212 @@ -24838,7 +24792,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:398 msgctxt "namerangesdialog|label1" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. aDbLN #: sc/uiconfig/scalc/ui/namerangesdialog.ui:423 @@ -32323,7 +32277,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:104 msgctxt "extended_tip|value" msgid "Mark the Value highlighting box to show the cell contents in different colors, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted." -msgstr "" +msgstr "أشّر مربع تمييز القيمة لإظهار محتويات الخلايا بألوان مختلفة، استنادا إلى النوع. تُنسَّق خلايا النص بالأسود والصيغ بالأخضر وخلايا الأرقام بالأزرق وتظهر الخلايا المحمية بخلفية رمادية فاتحة بغضّ النظر عن تنسيق عَرضها." #. ah84V #: sc/uiconfig/scalc/ui/tpviewpage.ui:115 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/sd/messages.po libreoffice-7.1.3~rc2/translations/source/ar/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -8173,7 +8173,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:250 msgctxt "presentationdialog|label1" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. tmJvs #: sd/uiconfig/simpress/ui/presentationdialog.ui:298 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/ar/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -3123,9 +3123,10 @@ #. 8gPai #: sfx2/uiconfig/ui/linefragment.ui:149 +#, fuzzy msgctxt "linefragment|SFX_ST_EDIT" msgid "..." -msgstr "" +msgstr "..." #. x4Fjd #: sfx2/uiconfig/ui/linefragment.ui:185 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/svx/messages.po libreoffice-7.1.3~rc2/translations/source/ar/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-19 17:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -9855,7 +9855,7 @@ #: include/svx/strings.hrc:1742 msgctxt "RID_SVXSTR_FRAMEDIR_SUPER" msgid "Use superordinate object settings" -msgstr "" +msgstr "استخدم إعدادات الكائن الرئيسي" #. G2Jyh #. page direction @@ -15909,10 +15909,9 @@ #. ELeAs #: svx/uiconfig/ui/extrustiondepthdialog.ui:13 -#, fuzzy msgctxt "extrustiondepthdialog|ExtrustionDepthDialog" msgid "Extrusion Depth" -msgstr "نتوء غربي" +msgstr "عمق النتوء" #. b6kQz #: svx/uiconfig/ui/extrustiondepthdialog.ui:121 @@ -15962,7 +15961,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:8 msgctxt "findreplacedialog-mobile|FindReplaceDialog" msgid "Find & Replace" -msgstr "" +msgstr "جد واستبدل" #. eByBj #: svx/uiconfig/ui/findreplacedialog-mobile.ui:142 @@ -18119,7 +18118,7 @@ #: svx/uiconfig/ui/paralinespacingcontrol.ui:132 msgctxt "paralinespacingcontrol|line_dist" msgid "Leading" -msgstr "المسافة بين السطور" +msgstr "فوْصلَة" #. ZJ2BW #: svx/uiconfig/ui/paralinespacingcontrol.ui:133 @@ -18501,10 +18500,9 @@ #. mGrjp #: svx/uiconfig/ui/redlinefilterpage.ui:222 -#, fuzzy msgctxt "redlinefilterpage|rangeedit-atkobject" msgid "Range" -msgstr "النطاق" +msgstr "المجال" #. B4t2S #: svx/uiconfig/ui/redlinefilterpage.ui:223 diff -Nru libreoffice-7.1.2~rc2/translations/source/ar/sw/messages.po libreoffice-7.1.3~rc2/translations/source/ar/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/ar/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ar/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-19 17:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Riyadh Talal \n" "Language-Team: Arabic \n" "Language: ar\n" @@ -15616,7 +15616,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:475 msgctxt "frmaddpage|extended_tip|textflow" msgid "Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select Use superordinate object settings from the list." -msgstr "" +msgstr "يحدد اتجاه انسياب النص المفضّل في الإطار. لتستخدم إعدادات انسياب النص المبدئي للصفحة، حدد استخدام إعدادات الكائن الرئيسي من اللائحة." #. ph8JN #: sw/uiconfig/swriter/ui/frmaddpage.ui:488 @@ -27037,7 +27037,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:358 msgctxt "tabletextflowpage|liststore1" msgid "Use superordinate object settings" -msgstr "استخدم إعدادات كائن الاحداثيات الرئيسية" +msgstr "استخدم إعدادات الكائن الرئيسي" #. FJnts #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:362 diff -Nru libreoffice-7.1.2~rc2/translations/source/as/cui/messages.po libreoffice-7.1.3~rc2/translations/source/as/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/as/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/as/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2469,1071 +2469,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ast/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ast/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-22 17:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542195213.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "¿Quies desarrollar peñeres XSLT y XML nueves?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/sdraw/guide.po libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/sdraw/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/sdraw/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-22 13:00+0100\n" -"PO-Revision-Date: 2020-09-17 17:44+0000\n" -"Last-Translator: sophie \n" -"Language-Team: Asturian \n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1523977270.000000\n" #. cZbDh @@ -833,7 +833,7 @@ "tit\n" "help.text" msgid "Drawing Sectors and Segments" -msgstr "Dibuxar sectores y segmentos" +msgstr "Dibuxar seutores y segmentos" #. CEEGe #: draw_sector.xhp @@ -851,7 +851,7 @@ "hd_id3146974\n" "help.text" msgid "Drawing Sectors and Segments" -msgstr "Dibuxar Sectores y Segmentos" +msgstr "Dibuxar seutores y segmentos" #. Zq2MQ #: draw_sector.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-02-28 21:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1542196269.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/shared/autopi.po libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/shared/autopi.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/shared/autopi.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: autopi\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-27 12:31+0100\n" -"PO-Revision-Date: 2020-11-06 12:35+0000\n" +"PO-Revision-Date: 2021-03-26 10:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Poedit-SourceCharset: utf-8\n" "X-POOTLE-MTIME: 1524568663.000000\n" @@ -7494,7 +7494,7 @@ "tit\n" "help.text" msgid "Address Data Source" -msgstr "Orixe de datos de direiciones" +msgstr "Orixe de datos de señes" #. yj6UG #: 01170000.xhp @@ -7503,7 +7503,7 @@ "hd_id3147285\n" "help.text" msgid "Address Data Source" -msgstr "Fonte de datos de la llibreta de direiciones" +msgstr "Orixe de datos de señes" #. BEBQU #: 01170000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-10-22 11:35+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1542028604.000000\n" #. XAt2Y @@ -455,7 +455,7 @@ "par_id3147814\n" "help.text" msgid "Press Enter again to finish the list." -msgstr "Calque Intro de nuevu pa terminar la llista." +msgstr "Calca Intro de nueves pa terminar la llista." #. UkjkK #: auto_numbering.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-23 11:54+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -9759,7 +9759,7 @@ "Label\n" "value.text" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. P6aAw #: DrawImpressCommands.xcu @@ -16517,7 +16517,7 @@ "Label\n" "value.text" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. GrfLj #: GenericCommands.xcu @@ -16527,7 +16527,7 @@ "Label\n" "value.text" msgid "Rectangle, Rounded" -msgstr "Rectángulu, redondeáu" +msgstr "Reutángulu, redondiáu" #. 7EYYb #: GenericCommands.xcu @@ -19044,7 +19044,7 @@ "Label\n" "value.text" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. FYm6x #: GenericCommands.xcu @@ -19054,7 +19054,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Rectangle" -msgstr "" +msgstr "Inxertar un reutángulu" #. GXMVT #: GenericCommands.xcu @@ -19064,7 +19064,7 @@ "Label\n" "value.text" msgid "Rectangle" -msgstr "" +msgstr "Reutángulu" #. 7hxFJ #: GenericCommands.xcu @@ -36624,7 +36624,7 @@ "UIName\n" "value.text" msgid "Track Changes" -msgstr "" +msgstr "Siguimientu de cambeos" #. BQHZF #: WriterGlobalWindowState.xcu @@ -38121,7 +38121,7 @@ "UIName\n" "value.text" msgid "Track Changes" -msgstr "" +msgstr "Siguimientu de cambeos" #. VzFYU #: WriterWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/sc/messages.po libreoffice-7.1.3~rc2/translations/source/ast/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/ast/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-05 15:36+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1542022495.000000\n" #. kBovX @@ -2444,7 +2444,7 @@ #: sc/inc/globstr.hrc:423 msgctxt "STR_SHAPE_RECTANGLE" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. 9jDFZ #: sc/inc/globstr.hrc:424 @@ -26377,7 +26377,7 @@ #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:78 msgctxt "numbertransformationentry|square" msgid "Square" -msgstr "" +msgstr "Cuadráu" #. GJFaH #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:79 diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/ast/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/ast/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-22 17:37+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1556,7 +1556,7 @@ #: include/sfx2/strings.hrc:282 msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY" msgid "National Security:" -msgstr "Seguridá nacional:" +msgstr "Seguranza nacional:" #. ZBXbG #: include/sfx2/strings.hrc:283 @@ -1691,7 +1691,7 @@ #: include/sfx2/strings.hrc:308 msgctxt "STR_TEMPLATE_NAME7" msgid "DNA" -msgstr "" +msgstr "ADN" #. XBrCi #: include/sfx2/strings.hrc:309 @@ -1757,7 +1757,7 @@ #: include/sfx2/strings.hrc:319 msgctxt "STR_TEMPLATE_NAME18" msgid "Piano" -msgstr "" +msgstr "Pianu" #. mrbiq #: include/sfx2/strings.hrc:320 @@ -1812,7 +1812,7 @@ #: include/sfx2/strings.hrc:329 msgctxt "STR_TEMPLATE_NAME27" msgid "Modern" -msgstr "" +msgstr "Moderna" #. CVJEC #: include/sfx2/strings.hrc:330 diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/svx/messages.po libreoffice-7.1.3~rc2/translations/source/ast/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/ast/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-22 17:36+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -86,13 +86,13 @@ #: include/svx/strings.hrc:36 msgctxt "STR_ObjNameSingulRECT" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. TDTj8 #: include/svx/strings.hrc:37 msgctxt "STR_ObjNamePluralRECT" msgid "Rectangles" -msgstr "Rectángulos" +msgstr "Reutángulos" #. fnV49 #: include/svx/strings.hrc:38 @@ -16854,7 +16854,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:233 msgctxt "floatingcontour|TBI_RECT" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. XF9CF #: svx/uiconfig/ui/floatingcontour.ui:237 @@ -17509,7 +17509,7 @@ #: svx/uiconfig/ui/imapdialog.ui:229 msgctxt "imapdialog|TBI_RECT" msgid "Rectangle" -msgstr "Rectángulu" +msgstr "Reutángulu" #. EYDzs #: svx/uiconfig/ui/imapdialog.ui:233 diff -Nru libreoffice-7.1.2~rc2/translations/source/ast/sw/messages.po libreoffice-7.1.3~rc2/translations/source/ast/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/ast/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ast/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-23 11:54+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -5872,10 +5872,9 @@ #. xvSRm #: sw/inc/strings.hrc:657 -#, fuzzy msgctxt "STR_HYPERLINK" msgid "Insert as Hyperlink" -msgstr "Inxertar hiperenllaz" +msgstr "Inxertar como hiperenllaz" #. sdfGe #: sw/inc/strings.hrc:658 @@ -5911,17 +5910,15 @@ #. 3VWjq #: sw/inc/strings.hrc:663 -#, fuzzy msgctxt "STR_ACTIVE" msgid "active" msgstr "activa" #. YjPvg #: sw/inc/strings.hrc:664 -#, fuzzy msgctxt "STR_INACTIVE" msgid "inactive" -msgstr "inactivu" +msgstr "inactiva" #. tBPKU #: sw/inc/strings.hrc:665 diff -Nru libreoffice-7.1.2~rc2/translations/source/az/cui/messages.po libreoffice-7.1.3~rc2/translations/source/az/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/az/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/az/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2442,1071 +2442,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/be/cui/messages.po libreoffice-7.1.3~rc2/translations/source/be/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/be/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/be/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:33+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/cui/messages.po libreoffice-7.1.3~rc2/translations/source/bg/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/bg/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-10 07:36+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME поддържа четири нива на безопасност на макросите (от ниско до много високо) и надеждни източници." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 възнамерява да кандидатства като организация за Google Summer of Code (GSoC), вижте:" - -#. SNTbc -#: 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 "Знаете ли, че можете да прикрепвате коментари към откъси от текст? Просто използвайте комбинацията %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Искате да преместите един или няколко абзаца? Няма нужда от копиране и поставяне: използвайте клавишната комбинация %MOD1+%MOD2+стрелка (нагоре/надолу)." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Можете да смените основните шрифтове за предварително дефинирания шаблон или текущия документ с „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Основни шрифтове“." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Искате да намерите думи с повече от 10 знака? „Редактиране ▸ Търсене и замяна ▸ Търсене“ ▸ [а-я]{10,} ▸ „Други настройки“ ▸ отметнете „Регулярни изрази“." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "За да отворите CSV файл като нов лист в текущата електронна таблица, използвайте „Лист ▸ Лист от файл“." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Когато въвеждате получер, курсивен или подчертан текст в Writer, можете да продължите с подразбираните атрибути, като натиснете %MOD1+Shift+X (премахване на преките знакови формати)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "За да поставите съдържанието на клипборда като неформатиран текст, използвайте %MOD1+%MOD2+Shift+V." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Можете да персонализирате външния вид на бележките под линия с „Инструменти ▸ Бележки под линия/в края…“." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "Искате да промените правописната проверка за част от текста? Щракнете върху зоната за език в лентата на състоянието или – още по-добре – приложете съответен стил." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer може да вмъква празна страница между две последователни нечетни (четни) страници. Отметнете „Отпечатване на автоматичните празни страници“ в раздела „Writer“ на диалога за печат." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Искате да позиционирате прецизно? %MOD2+клавишите със стрелки местят обектите (фигури, изображения, формули) с по един пиксел." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Ако сте инсталирали вградената помощ, тя е достъпна с натискане на F1. Иначе вижте онлайн на адрес:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Щракнете с десния бутон в лентата на състоянието в %PRODUCTNAME Calc и изберете „Брой избрани клетки“, за да видите броя на избраните клетки." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Искате само част от страницата в %PRODUCTNAME Writer да е с две колони? „Вмъкване ▸ Раздел“, задайте необходимото в секцията „Колони“ и въведете текст в раздела." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Използвайте „Данни ▸ Статистика“ в %PRODUCTNAME Calc за извадки, дескриптивна статистика, дисперсионен анализ, корелация и т.н." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Можете да копирате от един лист към друг без клипборда. Изберете областта източник, щракнете с %MOD1 върху етикета на листа местоназначение и използвайте „Лист ▸ Запълване на клетки ▸ Запълване на листове“." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Можете да променяте облика на %PRODUCTNAME с „Инструменти ▸ Настройки ▸ Изглед ▸ Потребителски интерфейс“." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "С командата „Вмъкване ▸ Мултимедия ▸ Фотоалбум“ в %PRODUCTNAME Impress можете да създадете прожекция от поредица изображения." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "За да виждате самите формули вместо резултатите им, изберете „Изглед ▸ Показване на формула“ (или „Инструменти ▸ Настройки ▸ %PRODUCTNAME Calc ▸ Изглед ▸ Визуализиране ▸ Формули“)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME се разработва от дружелюбна общност, съставена от стотици сътрудници по целия свят. Присъединете се към нея със своите умения – не само програмиране." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Левичар ли сте? Разрешете „Инструменти ▸ Настройки ▸ Езикови настройки ▸ Езици ▸ Азиатски“ и отметнете полето „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Изглед ▸ Скала ▸ Дясно подравняване“, за да преместите лентата за превъртане отляво." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Искате заглавията на главите винаги да са на нова страница? Редактирайте абзацния стил „Заглавие 1“ ▸ „Изливане на текста ▸ Знаци за прекъсване“ и отметнете „Вмъкване ▸ Страница ▸ Преди“." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Стойностите за дата/час представляват просто брой дни от избран нулев ден; цялата част на числото представя датата, а дробната част – часа (изминалата част от деня), като 0,5 означава пладне." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del изтрива от курсора до края на текущото изречение." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "Ако бягащият пунктир около клетки в Calc ви дразни, натиснете Escape, за да го изключите; копираното съдържание остава налице за поставяне." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Искате ли да станете посланик на %PRODUCTNAME? Предлагаме сертифициране за разработчици, администратори и преподаватели." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Можете да смесвате портретна и пейзажна ориентация в електронна таблица на Calc, като прилагате върху листовете различни стилове за страници." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Изберете „Йерархичен изглед“ в страничната лента „Стилове и формати“, за да видите отношенията между стиловете." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Можете да постигнете съгласуван облик на таблиците в документа, като използвате стилове. Изберете някой от готовите с командата „Стилове“ (F11) или „Таблица ▸ Автоформат“." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Искате хипервръзките да се отварят само с натиснат клавиш %MOD1? „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Сигурност ▸ Настройки ▸ Проследяване на хипервръзки с %MOD1+щракване“." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Ако искате да проследите изчисляването на отделни елементи от формула, изберете съответните елементи и натиснете F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Искате да пишете по протежението на крива? Нарисувайте линията, щракнете двукратно върху нея, въведете текста и изберете „Форматиране ▸ Текстово поле и фигура ▸ Обект Fontwork“." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Искате да виждате само най-високите стойности в електронна таблица? Изберете „Данни ▸ Автофилтър“, щракнете върху стрелката надолу и изберете „Първи 10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "За да да създадете бързо обект на Math в Writer, въведете формулата, маркирайте я и използвайте „Вмъкване ▸ Обект ▸ Формула“, за да преобразувате текста." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "В %PRODUCTNAME е много лесно да инсталирате нов речник: речниците се предлагат като разширения." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME има преносима версия, която ви осигурява мобилност. Дори без администраторски права за компютъра можете да инсталирате %PRODUCTNAME Portable на твърдия диск." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer позволява отделна номерация на бележките под линия във всяка страница, глава или документ: „Инструменти ▸ Бележки под линия/в края ▸ Броене“." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Документът на Writer не се е отворил с курсора върху последната редактирана позиция? Въведете собствено или фамилно име в „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Данни за потребител ▸ Име/фамилия“." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Искате да организирате цитати? Използвайте разширение." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Искате да вмъкнете стойност на едно и също място в няколко листа? Преди въвеждането изберете листовете, като задържите клавиша %MOD1 и щракнете върху етикетите им." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Можете да персонализирате средния бутон на мишката с „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Изглед ▸ Среден бутон на мишката“." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Искате да отпечатате две страници в ориентация „портрет“ върху една в „пейзаж“ (като ги смалите от A4 на A5)? Изберете „Файл ▸ Печат“ и задайте 2 за „Страници на лист“." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Задайте текстовете, които използвате често, като автотекстове. Впоследствие ще можете да ги вмъквате по име, с клавишна комбинация или бутон от лентата с инструменти в произволен документ на Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 не изчислява от ляво надясно, а спазва реда скоби – степенуване – умножение – деление – събиране – изваждане." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Документация за %PRODUCTNAME и безплатни книги с ръководства за потребители можете да намерите на адрес:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Трябва ви презентация за отчет, написан с Writer? „Файл ▸ Изпращане ▸ План към презентация“ автоматично създава прожекция от плана." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Искате да управлявате представянето на хипервръзки в електронна таблица? Вмъквайте ги с функцията HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Изчистете отметката от „Инструменти ▸ Настройки ▸ %PRODUCTNAME Calc ▸ Изглед ▸ Увеличение ▸ Синхронизиране на листите“, ако искате всеки лист в Calc да има отделен коефициент на увеличение." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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 "Можете да проследявате клетките, използвани в дадена формула (Shift+F9), както и зависещите от нея (Shift+F5) (също с командата „Инструменти ▸ Детектив“). С всяко натискане преминавате към следващата стъпка по веригата." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "За да вмъкнете и номерирате формула в една стъпка, въведете fn, последвано от F3. Ще се вмъкне автотекст с формула и номер, подравнени в таблица." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Можете да управлявате дистанционно презентацията си в Impres чрез телефон с Android или iPhone." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Искате да знаете колко дни има в текущия месец? Използвайте функцията DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Числата в електронната ви таблица се виждат като ###? Колоната е твърде тясна, за да се покажат всички цифри." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "С командата „Инструменти ▸ Настройки ▸ OpenCL“ можете да разрешите масивно паралелно изчисляване на клетките с формули." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "С инструмента за свързващи линии от лентата „Рисунка“ в Draw/Impress можете да чертаете прегледни блоксхеми и по желание да копирате и поставяте резултата в Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Даренията ви подкрепят нашата общност по целия свят." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Искате да прибавите x месеца към дата? Използвайте =EDATE(дата;месеци)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "За да изберете непрекъснат диапазон от клетки с данни, ограден от празен ред и колона, натиснете %MOD1+* (от цифровия блок)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Искате да експортирате формули към CSV? „Файл ▸ Записване като ▸ Тип“: „Текст с разделители (CSV)“, отметнете „Настройки на филтъра“ и в следващия диалог отметнете „Записване формули вместо изчислени стойности в клетките“." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Конзолата за водещия е много полезна възможност при работа с %PRODUCTNAME Impress. Изпробвали ли сте я?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "За да преобразувате документ към PDF, просто щракнете върху иконата PDF в лентата с инструменти." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Искате да изберете голям диапазон от клетки, без да превъртате през него? Въведете обръщение към диапазона (напр. A1:A1000) в полето за име и натиснете Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Искате ли да знаете кои са валидните параметри на командния ред? Стартирайте soffice с аргумент --help, -h или -?." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Можете да въртите ориентацията на клетките в таблица с „Таблица ▸ Свойства… ▸ Изливане на текст ▸ Ориентация на текста“." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "В %PRODUCTNAME Draw, за да смените точката 0/0 на скалите, плъзнете пресечната точка на двете скали в горния ляв ъгъл на работната площ." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Как да преместите колона в Calc между две други в една стъпка? Щракнете върху заглавието, после върху клетка в колоната, задръжте бутона на мишката и преместете до целта с натиснат %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Елементите на азбучния указател могат да се маркират автоматично с помощта на файл за съгласуване." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "За прецизно позициониране на обекти в Draw/Impress използвайте командата „Форматиране ▸ Подравняване“ (или контекстното меню): тя центрира спрямо страницата, ако е избран един обект, или съответно работи върху цялата група." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Не намествайте елементи в Writer чрез знаци за табулация. В зависимост от целта ви, таблицата без кантове може да е по-добър избор." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME може автоматично да добавя номериран надпис, когато вмъкнете обект. Вижте „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Автонадпис“." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "С %PRODUCTNAME можете да използвате акаунта си в Google Mail, за да разпратите циркулярно писмо. Попълнете „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Циркулярни писма по е-поща“." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "Искате да започнете да работите с макроси на Basic? Вижте примерите в „Инструменти ▸ Макроси ▸ Редактиране на макроси“." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Можете да прилагате заглавни стилове на абзаци в Writer с клавишни комбинации: %MOD1+1 прилага „Заглавие 1“, %MOD1+2 – „Заглавие 2“ и т.н." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Не се губете в големи документи. Използвайте навигатора (F5), за да се ориентирате в съдържанието им." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "„Редактиране ▸ Търсене и замяна“ ви позволява да вмъквате специални знаци директно: щракнете с десния бутон в някое входно поле или натиснете Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "Искате да виждате обект в Draw, но не и да го отпечатвате? Нарисувайте го на слой, за който настройката „Печата се“ е изключена (щракнете с десния бутон върху етикета на слоя, изберете „Промяна на слой“)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "За да вмъкнете текущата дата в документа, използвайте „Вмъкване ▸ Поле ▸ Дата“." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Твърде много изображения в документ на Writer? Ускорете визуализацията му, като изключите „Изглед ▸ Изображения и диаграми“." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "Преименувайте кадрите в Impress, за да задавате по-лесно команди „Преминаване към страница“ и да получите по-информативно резюме от „Кадър1, Кадър2,…“." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Диалогът за номериране на глави позволява добавяне на текст преди номера. Например, въведете „Глава “, за да се изпише „Глава 1“." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Искате да транспонирате таблица в Writer? Копирайте я и я поставете в Calc, транспонирайте я с „Копиране“/„Специално поставяне“, после я прехвърлете обратно в Writer с „Копиране“/„Специално поставяне ▸ Форматиран текст“." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Можете да подписвате съществуващи PDF файлове и да проверявате вече нанесени подписи." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Често създавате нов документ от съществуващ? Обмислете използването на шаблон." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "С командата „Форматиране ▸ Условно форматиране ▸ Управление“ в Calc можете да откриете за кои клетки е зададено условно форматиране." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "Искате еднакво оформление на екрана и при печатане? Отметнете „Инструменти ▸ Настройки ▸ %PRODUCTNAME Calc ▸ Общи ▸ Форматиране на текста чрез метриките на принтера“." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer ви помага да създавате резервни копия: с „Файл ▸ Записване на копие“ създавате нов документ и продължавате да работите върху оригинала." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Когато сте създали стил, базиран върху друг стил, можете да въведете стойност в проценти или в пунктове (например 110%, −2пкт или +5пкт)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "За пакетно конвертиране на документи от Microsoft Office във формат OpenDocument използвайте помощника „Преобразуване на документи“ – „Файл ▸ Помощници ▸ Преобразуване на документи“." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Трябва да местите таблица в Writer? „Таблица ▸ Избиране ▸ Таблица“, после „Вмъкване ▸ Рамка ▸ Рамка“ и местете таблицата, където желаете." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "С „Инструменти ▸ Автотекст ▸ Автотекст ▸ Импортиране“ можете да изберете документ или шаблон на Word, съдържащ записите за автотекст, които искате да импортирате." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "Имате проблеми с поставянето на текст от PDF файлове или уебстраници в документи? Опитайте да поставяте като неформатиран текст (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "В Calc можете да използвате TRIMMEAN(), за да пресметнете средната стойност на съвкупност от данни, изключвайки най-високите и най-ниските стойности." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Четвъртият незадължителен параметър на функцията VLOOKUP в Calc указва дали първата колона на данните е сортирана. Ако не е, въведете FALSE или нула." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "Как да създадете главен документ от текущия документ на Writer? „Файл ▸ Изпращане ▸ Създаване на главен документ“ (ще бъдат създадени поддокументи в зависимост от плана)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Искате да центрирате клетки върху отпечатаната страница в Calc? „Форматиране ▸ Страница“, „Страница ▸ Настройки за оформление ▸ Подравняване на таблица“." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "За да създадете диаграма, базирана на таблица в Writer, щракнете върху таблицата и изберете „Вмъкване ▸ Диаграма“." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Задайте съответни настройки в „Инструменти ▸ Настройки ▸ %PRODUCTNAME Writer ▸ Помощ при форматиране ▸ Визуализиране“, за да укажете кои непечатаеми знаци да се показват." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Искате да преминете към страница с определен номер? Щракнете върху най-левия елемент в лентата на състоянието, използвайте „Редактиране ▸ Преминаване към страница…“ или натиснете %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME поддържа над 150 езика." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "Искате да намерите получерните думи в документ на Writer? Редактиране ▸ Търсене и замяна ▸ Други настройки ▸ Атрибути ▸ Тегло на шрифт." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "С командата „Инструменти ▸ Сортиране“ можете да сортирате абзаци или таблични редове в азбучен ред или като числа." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "За да вмъкнете абзац преди (след) раздел, натиснете %MOD2+Enter в началото (края) на раздела." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME предлага център с шаблони за подобряване външния вид на документите – разгледайте го." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "С Calc можете да изчислявате вноски по заем, например PMT(2%/12;36;2500) за месечна лихва 2%/12, 36 месеца и размер на заема 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Не можете да намерите желаните данни в Calc с функцията VLOOKUP? Ще успеете с INDEX и MATCH!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Искате да покажете скритата колона A? Щракнете върху клетка в колоната B, натиснете левия бутон на мишката, преместете мишката наляво и го отпуснете. После включете колоната с „Форматиране ▸ Колони ▸ Показване“." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "За да промените номера на страница в Writer, отворете свойствата на първия абзац, в раздела „Изливане на текста“ отметнете „Знаци за прекъсване ▸ Вмъкване“ и въведете номера." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Можете да работите с %PRODUCTNAME през всеки браузър чрез rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Непознат код за грешка в Calc – Err:, последвано от число? Обяснението е на тази страница:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Освен съдържания, %PRODUCTNAME може да създава азбучни указатели и индекси на илюстрациите, таблиците, обектите и библиографските позовавания, както и потребителски индекси." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Не можете да промените или изтриете стил на клетка по избор? Проверете всички листове – сред тях не трябва да има защитени." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Искате да знаете дали някоя клетка се използва във формулите на други клетки? „Инструменти ▸ Детектив ▸ Зависими клетки“ (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Искате да повторите горния ред? Натиснете %MOD1+D или използвайте „Лист ▸ Запълване на клетки ▸ Запълване надолу“." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "За да търсите в няколко листа, изберете ги, преди да започнете търсенето." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Плъзгането и пускането на клетки от Calc в нормалния изглед на кадър създава таблица, а в плана – по един ред за всяка клетка." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME ви помага да не въвеждате два или повече поредни интервала в Writer. Отметнете „Инструменти ▸ Настройки на автокорекция ▸ Настройки ▸ Игнориране на поредните интервали“." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Искате курсорът да преминава в клетката отдясно след въвеждане на стойност в Calc? Използвайте клавиша Tab вместо Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Новите версии на %PRODUCTNAME предлагат нова функционалност, корекции на дефекти и подобрения в сигурността. Използвайте актуална версия!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Разработвате нови XSLT и XML филтри?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Натиснете Shift+F1, за да видите разширените подсказки в диалоговите прозорци, когато „Разширени подсказки“ е изключено в „Инструменти ▸ Настройки ▸ %PRODUCTNAME ▸ Общи“." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Помощ за %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Още информация" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Изпълняване на действието сега..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Съвет на деня: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-12-13 23:36+0000\n" +"PO-Revision-Date: 2021-04-15 05:09+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562357378.000000\n" #. yzYVt @@ -14540,7 +14540,7 @@ "par_id3154685\n" "help.text" msgid "String: A string that contains a date in ISO format." -msgstr "Низ: Низ, съдържащ дата във формата на ISO." +msgstr "String: низ, съдържащ дата във формата на ISO." #. P8XYk #: 03030108.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2020-11-21 15:36+0000\n" +"PO-Revision-Date: 2021-04-20 19:37+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562357170.000000\n" @@ -717,7 +717,7 @@ "hd_id3154729\n" "help.text" msgid "Text attributes" -msgstr "Свойства на текста" +msgstr "Атрибути на текста" #. rjUzy #: 02120100.xhp @@ -726,7 +726,7 @@ "par_id3150717\n" "help.text" msgid "Opens a dialog to assign formats to new or selected text. The Text Attributes dialog contains the tab pages Font, Font Effects and Font Position." -msgstr "Отваря диалогов прозорец за задаване на формат на нов или избран текст. Диалоговият прозорец Свойства на текста съдържа разделите Шрифт, Ефекти за шрифт и Позиция на шрифт." +msgstr "Отваря диалогов прозорец за задаване на формат на нов или избран текст. Диалоговият прозорец Атрибути на текста съдържа разделите Шрифт, Ефекти за шрифт и Позиция на шрифт." #. 5DMJG #: 02120100.xhp @@ -744,7 +744,7 @@ "par_id3155336\n" "help.text" msgid "Text Attributes" -msgstr "Свойства на текста" +msgstr "Атрибути на текста" #. r4APU #: 02120100.xhp @@ -897,7 +897,7 @@ "hd_id3149050\n" "help.text" msgid "Date" -msgstr "Дати" +msgstr "Дата" #. ZmqTc #: 02120100.xhp @@ -924,7 +924,7 @@ "par_id3150540\n" "help.text" msgid "Date" -msgstr "Дати" +msgstr "Дата" #. MR48x #: 02120100.xhp @@ -933,7 +933,7 @@ "hd_id3147610\n" "help.text" msgid "Time" -msgstr "Време" +msgstr "Час" #. CtUbF #: 02120100.xhp @@ -960,7 +960,7 @@ "par_id3157904\n" "help.text" msgid "Time" -msgstr "Време" +msgstr "Час" #. nsv3w #: 02140000.xhp @@ -52674,7 +52674,7 @@ "par_id3149377\n" "help.text" msgid "Date" -msgstr "Дати" +msgstr "Дата" #. KEYyq #: 12120100.xhp @@ -52692,7 +52692,7 @@ "par_id3146969\n" "help.text" msgid "Time" -msgstr "Време" +msgstr "Час" #. wiBwp #: 12120100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/sdraw/guide.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/sdraw/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/sdraw/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-22 13:00+0100\n" -"PO-Revision-Date: 2020-01-24 14:48+0000\n" +"PO-Revision-Date: 2021-04-20 19:37+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547852731.000000\n" #. cZbDh @@ -2993,7 +2993,7 @@ "par_idN1093C\n" "help.text" msgid "Using Paste special, you can choose the text format to be pasted. Depending on formats, you can copy different text attributes." -msgstr "При Специално поставяне можете да изберете формата на текста, който ще бъде поставен. В зависимост от избрания формат можете да копирате различни свойства на текста." +msgstr "При Специално поставяне можете да изберете формата на текста, който ще бъде поставен. В зависимост от избрания формат можете да копирате различни атрибути на текста." #. CwhNW #: text_enter.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-12 23:36+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562503995.000000\n" @@ -15380,33 +15380,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Малки главни буквипревръща избраните малки букви в главни и ги смалява." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "мигащи знацизнаци;мигащи" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Мигане" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Кара избраните знаци да мигат. Не можете да променяте честотата на мигане." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-13 07:27+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -1382,7 +1382,7 @@ "par_id3149264\n" "help.text" msgid "You can copy a table by dragging and dropping the table onto the table area of a database file window. The Copy table dialog appears." -msgstr "Можете да копирате таблица като я плъзнете и пуснете в областта с таблиците в прозорец на база от данни. Ще се появи диалоговият прозорец Копиране на таблица." +msgstr "Можете да копирате таблица, като я плъзнете и пуснете в областта с таблиците в прозорец на база от данни. Ще се появи диалоговият прозорец Копиране на таблица." #. ciK5F #: 05030100.xhp @@ -1427,7 +1427,7 @@ "par_id3150178\n" "help.text" msgid "Creates a 1:1 copy of the database table. The table definition and the complete data are copied. The table definition includes the table structure and format from different data fields, including special field properties. The field contents supply the data." -msgstr "Създава идентично копие на таблицата в базата от данни. Копират се дефиницията на таблицата и целите данни. Дефиницията на таблицата включва структурата й и форматите на полетата с данни, включително специалните им свойства. Данните се взимат от съдържанието на полетата." +msgstr "Създава идентично копие на таблицата в базата от данни. Копират се дефиницията на таблицата и всички данни. Дефиницията на таблицата включва структурата ѝ и форматите на полетата с данни, включително специалните им свойства. Данните се вземат от съдържанието на полетата." #. hezaD #: 05030100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-01-19 18:20+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Mihail Balabanov \n" "Language-Team: Bulgarian \n" "Language: bg\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562356897.000000\n" @@ -9834,7 +9834,7 @@ "par_id3153105\n" "help.text" msgid "To insert a complete record, select the corresponding header and drag it into the document. When you release the mouse button, the Insert database columns dialog appears, in which you can decide whether to use all database fields, and whether to copy the data into the document as text, a table or fields. All currently selected records will be inserted." -msgstr "За да вмъкнете цял запис, изберете съответното заглавие и го плъзнете в документа. Когато отпуснете бутона на мишката, ще се появи диалоговия прозорец Вмъкване на колони от БД, в който можете да изберете дали да използвате всички полета от базата и дали да копирате данните в документа като текст, таблица или полета. Ще бъдат вмъкнати всички избрани в момента записи." +msgstr "За да вмъкнете цял запис, изберете съответното заглавие и го плъзнете в документа. Когато отпуснете бутона на мишката, ще се появи диалоговият прозорец Вмъкване на колони от БД, в който можете да изберете дали да използвате всички полета от базата и дали да копирате данните в документа като текст, таблица или полета. Ще бъдат вмъкнати всички избрани в момента записи." #. FfBFe #: dragdrop_beamer.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/bg/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-12-13 23:36+0000\n" +"PO-Revision-Date: 2021-04-20 19:37+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564897611.000000\n" #. XAt2Y @@ -16952,7 +16952,7 @@ "par_id3155178\n" "help.text" msgid "Choose Format - Object - Text Attributes, and then click the Text Animation tab." -msgstr "Изберете Форматиране - Обект - Свойства на текста и отворете раздела Анимиран текст." +msgstr "Изберете Форматиране - Обект - Атрибути на текста и отворете раздела Анимиран текст." #. aLGNX #: text_animation.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/bg/sc/messages.po libreoffice-7.1.3~rc2/translations/source/bg/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/bg/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bg/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-12-14 08:58+0000\n" +"PO-Revision-Date: 2021-04-20 05:37+0000\n" "Last-Translator: Mihail Balabanov \n" -"Language-Team: Bulgarian \n" +"Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562424086.000000\n" #. kBovX @@ -1123,7 +1123,7 @@ #: sc/inc/globstr.hrc:206 msgctxt "STR_TEXTATTRS" msgid "Text Attributes" -msgstr "Свойства на текста" +msgstr "Атрибути на текста" #. CD5iM #: sc/inc/globstr.hrc:207 @@ -23226,7 +23226,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:318 msgctxt "headerfootercontent|buttonBTN_TEXT|tooltip_text" msgid "Text Attributes" -msgstr "Свойства на текста" +msgstr "Атрибути на текста" #. VHkhc #: sc/uiconfig/scalc/ui/headerfootercontent.ui:322 diff -Nru libreoffice-7.1.2~rc2/translations/source/bn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/bn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Bengali \n" @@ -2483,1071 +2483,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/bn/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/bn/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 11:51+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/cui/messages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-16 06:42+0000\n" "Last-Translator: parnas \n" "Language-Team: LANGUAGE \n" @@ -2459,1071 +2459,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/be_BY.po libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/be_BY.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/be_BY.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/be_BY.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-22 17:23+0200\n" -"PO-Revision-Date: 2013-05-23 22:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369348431.000000\n" #. JAotG @@ -23,4 +23,4 @@ "dispname\n" "description.text" msgid "Belarusian spelling dictionary and hyphenation" -msgstr "" +msgstr "বেলারুশীয় শব্দকোষ, বানান ও হায়ফেন্যাশন" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/en/dialog/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-01-12 13:17+0100\n" -"PO-Revision-Date: 2013-05-23 22:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369348432.000000\n" +#. Bshz7 #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -25,6 +26,7 @@ msgid "Language Settings" msgstr "ভাষার সেটিং" +#. NTrTn #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -32,4 +34,4 @@ "Label\n" "value.text" msgid "English Sentence Checking" -msgstr "" +msgstr "ইংরাজি বাক্য পরীক্ষা" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/hu_HU/dialog/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-01-12 13:17+0100\n" -"PO-Revision-Date: 2013-05-23 22:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369348434.000000\n" +#. Bshz7 #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -25,6 +26,7 @@ msgid "Language Settings" msgstr "ভাষার সেটিং" +#. yKR8S #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -32,4 +34,4 @@ "Label\n" "value.text" msgid "Hungarian Sentence Checking" -msgstr "" +msgstr "হাঙ্গেরীয় বাক্য পরীক্ষা" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-01-12 13:17+0100\n" -"PO-Revision-Date: 2014-10-21 06:06+0000\n" -"Last-Translator: Saibal Ray \n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1413871595.000000\n" +#. Bshz7 #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -25,6 +26,7 @@ msgid "Language Settings" msgstr "ভাষার সেটিং" +#. BnABt #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -32,4 +34,4 @@ "Label\n" "value.text" msgid "Grammar Checking (Portuguese)" -msgstr "" +msgstr "ব্যাকরণ পরীক্ষা (পর্তুগিজ)" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog.po libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/pt_BR/dialog.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-01-12 13:17+0100\n" -"PO-Revision-Date: 2014-10-21 06:06+0000\n" -"Last-Translator: Saibal Ray \n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1413871580.000000\n" +#. Bshz7 #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -25,6 +26,7 @@ msgid "Language Settings" msgstr "ভাষার সেটিং" +#. BnABt #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -32,4 +34,4 @@ "Label\n" "value.text" msgid "Grammar Checking (Portuguese)" -msgstr "" +msgstr "ব্যাকরণ পরীক্ষা (পর্তুগিজ)" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/dictionaries/ru_RU/dialog/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-01-12 13:17+0100\n" -"PO-Revision-Date: 2013-05-23 22:33+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369348438.000000\n" +#. Bshz7 #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -25,6 +26,7 @@ msgid "Language Settings" msgstr "ভাষার সেটিং" +#. EENVY #: OptionsDialog.xcu msgctxt "" "OptionsDialog.xcu\n" @@ -32,4 +34,4 @@ "Label\n" "value.text" msgid "Grammar Checking (Russian)" -msgstr "" +msgstr "ব্যাকরণ পরীক্ষা (রুশ)" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/extras/source/gallery/share.po libreoffice-7.1.3~rc2/translations/source/bn-IN/extras/source/gallery/share.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/extras/source/gallery/share.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/extras/source/gallery/share.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-22 17:23+0200\n" -"PO-Revision-Date: 2018-02-27 14:28+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1519741694.000000\n" #. oG3Mq @@ -32,7 +32,7 @@ "backgrounds\n" "LngText.text" msgid "Backgrounds" -msgstr "" +msgstr "পশ্চাৎপট" #. kuNKS #: gallery_names.ulf @@ -41,7 +41,7 @@ "bpmn\n" "LngText.text" msgid "BPMN" -msgstr "" +msgstr "বিপিএমএন" #. arWXh #: gallery_names.ulf @@ -59,7 +59,7 @@ "flowchart\n" "LngText.text" msgid "Flow chart" -msgstr "" +msgstr "প্রবাহ চার্ট" #. YSm8F #: gallery_names.ulf @@ -68,7 +68,7 @@ "icons\n" "LngText.text" msgid "Icons" -msgstr "" +msgstr "আইকন" #. PCCbZ #: gallery_names.ulf @@ -77,7 +77,7 @@ "network\n" "LngText.text" msgid "Network" -msgstr "" +msgstr "নেটওয়ার্ক" #. YAZe6 #: gallery_names.ulf @@ -86,7 +86,7 @@ "shapes\n" "LngText.text" msgid "Shapes" -msgstr "" +msgstr "আকৃতি" #. FVHrw #: gallery_names.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/filter/source/config/fragments/types.po libreoffice-7.1.3~rc2/translations/source/bn-IN/filter/source/config/fragments/types.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/filter/source/config/fragments/types.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/filter/source/config/fragments/types.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-06-03 17:45+0200\n" -"PO-Revision-Date: 2018-06-04 13:59+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: Bengali (India) \n" -"Language: bn_IN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1528120782.000000\n" +#. VQegi #: MS_Excel_2007_Binary.xcu msgctxt "" "MS_Excel_2007_Binary.xcu\n" @@ -25,6 +26,7 @@ msgid "Microsoft Excel 2007 Binary" msgstr "মাইক্রোসফট এক্সেল ২০০৭ বাইনারি" +#. ZSPrG #: MS_Excel_2007_VBA_XML.xcu msgctxt "" "MS_Excel_2007_VBA_XML.xcu\n" @@ -34,6 +36,7 @@ msgid "Microsoft Excel 2007–365 VBA XML" msgstr "" +#. wZRKn #: MS_Excel_2007_XML.xcu msgctxt "" "MS_Excel_2007_XML.xcu\n" @@ -43,6 +46,7 @@ msgid "Excel 2007–365" msgstr "" +#. gE2YN #: MS_Excel_2007_XML_Template.xcu msgctxt "" "MS_Excel_2007_XML_Template.xcu\n" @@ -52,6 +56,7 @@ msgid "Excel 2007–365 Template" msgstr "" +#. GGcpF #: MS_PowerPoint_2007_XML.xcu msgctxt "" "MS_PowerPoint_2007_XML.xcu\n" @@ -61,6 +66,7 @@ msgid "PowerPoint 2007–365" msgstr "" +#. RvEK3 #: MS_PowerPoint_2007_XML_AutoPlay.xcu msgctxt "" "MS_PowerPoint_2007_XML_AutoPlay.xcu\n" @@ -70,6 +76,7 @@ msgid "PowerPoint 2007–365" msgstr "" +#. 6sRkN #: MS_PowerPoint_2007_XML_Template.xcu msgctxt "" "MS_PowerPoint_2007_XML_Template.xcu\n" @@ -79,6 +86,7 @@ msgid "PowerPoint 2007–365 Template" msgstr "" +#. fALRm #: MS_PowerPoint_2007_XML_VBA.xcu msgctxt "" "MS_PowerPoint_2007_XML_VBA.xcu\n" @@ -88,6 +96,7 @@ msgid "PowerPoint 2007–365 VBA" msgstr "" +#. DPhAF #: StarBase.xcu msgctxt "" "StarBase.xcu\n" @@ -97,6 +106,7 @@ msgid "OpenDocument Database" msgstr "ওপেন-ডকুমেন্ট ডাটাবেস" +#. VGEpj #: StarBaseReport.xcu msgctxt "" "StarBaseReport.xcu\n" @@ -106,6 +116,7 @@ msgid "OpenDocument Database Report" msgstr "OpenDocument ডেটাবেস রিপোর্ট" +#. 5CtAj #: StarBaseReportChart.xcu msgctxt "" "StarBaseReportChart.xcu\n" @@ -115,6 +126,7 @@ msgid "StarOffice XML (Base) Report Chart 9" msgstr "StarOffice XML (বেস) রিপোর্ট তালিকা 9" +#. GQTGB #: calc8.xcu msgctxt "" "calc8.xcu\n" @@ -124,6 +136,7 @@ msgid "Calc 8" msgstr "ক্যালক ৮" +#. kY2wR #: calc8_template.xcu msgctxt "" "calc8_template.xcu\n" @@ -133,6 +146,7 @@ msgid "Calc 8 Template" msgstr "ক্যালক ৮ ফর্মা" +#. Qdzqf #: calc_ADO_rowset_XML.xcu msgctxt "" "calc_ADO_rowset_XML.xcu\n" @@ -142,6 +156,7 @@ msgid "ADO Rowset XML" msgstr "" +#. jreBU #: calc_Gnumeric.xcu msgctxt "" "calc_Gnumeric.xcu\n" @@ -151,6 +166,7 @@ msgid "Gnumeric Spreadsheet" msgstr "" +#. XrFYG #: calc_MS_Excel_2003_XML.xcu msgctxt "" "calc_MS_Excel_2003_XML.xcu\n" @@ -160,6 +176,7 @@ msgid "Microsoft Excel 2003 XML" msgstr "মাইক্রোসফট এক্সেল ২০০৩ XML" +#. NWzCZ #: calc_ODS_FlatXML.xcu msgctxt "" "calc_ODS_FlatXML.xcu\n" @@ -169,6 +186,7 @@ msgid "OpenDocument Spreadsheet (Flat XML)" msgstr "OpenDocument স্প্রেড-শিট (Flat XML)" +#. gfFPo #: calc_OOXML.xcu msgctxt "" "calc_OOXML.xcu\n" @@ -178,6 +196,7 @@ msgid "Office Open XML Spreadsheet" msgstr "Office Open XML স্প্রেডশীট" +#. NFqbD #: calc_OOXML_Template.xcu msgctxt "" "calc_OOXML_Template.xcu\n" @@ -187,6 +206,7 @@ msgid "Office Open XML Spreadsheet Template" msgstr "Office Open XML স্প্রেডশীট টেমপ্লেট" +#. UaPB5 #: chart8.xcu msgctxt "" "chart8.xcu\n" @@ -196,6 +216,7 @@ msgid "Chart 8" msgstr "চার্ট ৮" +#. zyojS #: draw8.xcu msgctxt "" "draw8.xcu\n" @@ -205,6 +226,7 @@ msgid "Draw 8" msgstr "ড্র ৮" +#. SCWxn #: draw8_template.xcu msgctxt "" "draw8_template.xcu\n" @@ -214,6 +236,7 @@ msgid "Draw 8 Template" msgstr "ড্র ৮ ফর্মা" +#. iEFWZ #: draw_ODG_FlatXML.xcu msgctxt "" "draw_ODG_FlatXML.xcu\n" @@ -223,6 +246,7 @@ msgid "OpenDocument Drawing (Flat XML)" msgstr "OpenDocument চিত্র (Flat XML)" +#. n9gGK #: impress8.xcu msgctxt "" "impress8.xcu\n" @@ -232,6 +256,7 @@ msgid "Impress 8" msgstr "ইমপ্রেস ৮" +#. BtFHe #: impress8_template.xcu msgctxt "" "impress8_template.xcu\n" @@ -241,6 +266,7 @@ msgid "Impress 8 Template" msgstr "ইম্প্রেস 8 ফর্মা" +#. KHRsJ #: impress_ODP_FlatXML.xcu msgctxt "" "impress_ODP_FlatXML.xcu\n" @@ -250,6 +276,7 @@ msgid "OpenDocument Presentation (Flat XML)" msgstr "OpenDocument উপস্থাপনা (Flat XML)" +#. 9rJi8 #: impress_OOXML_Presentation_AutoPlay.xcu msgctxt "" "impress_OOXML_Presentation_AutoPlay.xcu\n" @@ -259,6 +286,7 @@ msgid "Office Open XML Presentation AutoPlay" msgstr "Office Open XML উপস্থাপনা AutoPlay" +#. mwgxJ #: math8.xcu msgctxt "" "math8.xcu\n" @@ -268,6 +296,7 @@ msgid "Math 8" msgstr "ম্যাথ 8" +#. k5AvC #: writer8.xcu msgctxt "" "writer8.xcu\n" @@ -277,6 +306,7 @@ msgid "Writer 8" msgstr "রাইটার ৮" +#. 7GNGh #: writer8_template.xcu msgctxt "" "writer8_template.xcu\n" @@ -286,6 +316,7 @@ msgid "Writer 8 Template" msgstr "রাইটার ৮ ফর্মা" +#. G82oA #: writer_MS_Word_2003_XML.xcu msgctxt "" "writer_MS_Word_2003_XML.xcu\n" @@ -295,6 +326,7 @@ msgid "Word 2003 XML" msgstr "" +#. yxEiX #: writer_MS_Word_2007_XML.xcu msgctxt "" "writer_MS_Word_2007_XML.xcu\n" @@ -304,6 +336,7 @@ msgid "Word 2007–365" msgstr "" +#. cS5wC #: writer_MS_Word_2007_XML_Template.xcu msgctxt "" "writer_MS_Word_2007_XML_Template.xcu\n" @@ -313,6 +346,7 @@ msgid "Word 2007–365 Template" msgstr "" +#. hKL5A #: writer_MS_Word_2007_XML_VBA.xcu msgctxt "" "writer_MS_Word_2007_XML_VBA.xcu\n" @@ -322,6 +356,7 @@ msgid "Word 2007–365 VBA" msgstr "" +#. iuESB #: writer_ODT_FlatXML.xcu msgctxt "" "writer_ODT_FlatXML.xcu\n" @@ -329,8 +364,9 @@ "UIName\n" "value.text" msgid "OpenDocument Text (Flat XML)" -msgstr "OpenDocument Text (Flat XML)" +msgstr "ওপেনডকুমেন্ট পাঠ্য (ফ্লাট এক্সএমএল)" +#. 3CtB2 #: writerglobal8.xcu msgctxt "" "writerglobal8.xcu\n" @@ -340,6 +376,7 @@ msgid "Writer 8 Master Document" msgstr "রাইটার ৮ মাস্টার নথি" +#. dp7AA #: writerglobal8_template.xcu msgctxt "" "writerglobal8_template.xcu\n" @@ -349,6 +386,7 @@ msgid "Writer 8 Master Document Template" msgstr "Writer 8 মাস্টার ডকুমেন্ট টেমপ্লেট" +#. uFNm3 #: writerweb8_writer_template.xcu msgctxt "" "writerweb8_writer_template.xcu\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/fpicker/messages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/fpicker/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/fpicker/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/fpicker/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2018-11-11 07:36+0000\n" -"Last-Translator: biraj \n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1541921779.000000\n" #. SJGCw @@ -124,31 +124,31 @@ #: fpicker/uiconfig/ui/explorerfiledialog.ui:262 msgctxt "explorerfiledialog|places" msgid "Places" -msgstr "" +msgstr "স্থান" #. Upnsg #: fpicker/uiconfig/ui/explorerfiledialog.ui:364 msgctxt "explorerfiledialog|name" msgid "Name" -msgstr "" +msgstr "নাম" #. CGq9e #: fpicker/uiconfig/ui/explorerfiledialog.ui:384 msgctxt "explorerfiledialog|type" msgid "Type" -msgstr "" +msgstr "প্রকার" #. wDiXd #: fpicker/uiconfig/ui/explorerfiledialog.ui:398 msgctxt "explorerfiledialog|size" msgid "Size" -msgstr "" +msgstr "আকার" #. CDqza #: fpicker/uiconfig/ui/explorerfiledialog.ui:412 msgctxt "explorerfiledialog|date" msgid "Date modified" -msgstr "" +msgstr "পরিবর্তনের তারিখ" #. dWNqZ #: fpicker/uiconfig/ui/explorerfiledialog.ui:587 @@ -214,19 +214,19 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:61 msgctxt "remotefilesdialog|edit_service" msgid "_Add service" -msgstr "" +msgstr "সুবিধা যোগ করুন" #. kF4BR #: fpicker/uiconfig/ui/remotefilesdialog.ui:69 msgctxt "remotefilesdialog|edit_service" msgid "_Edit service" -msgstr "" +msgstr "সুবিধা পরিবর্তন" #. 8Xguy #: fpicker/uiconfig/ui/remotefilesdialog.ui:77 msgctxt "remotefilesdialog|delete_service" msgid "_Delete service" -msgstr "" +msgstr "সুবিধা অপসারণ" #. pVchs #: fpicker/uiconfig/ui/remotefilesdialog.ui:85 @@ -251,13 +251,13 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:214 msgctxt "remotefilesdialog|add_service_btn" msgid "_Manage services" -msgstr "" +msgstr "সুবিধা পরিচালন" #. Jnndg #: fpicker/uiconfig/ui/remotefilesdialog.ui:264 msgctxt "remotefilesdialog|list_view|tooltip_text" msgid "List view" -msgstr "" +msgstr "তালিকাভিত্তিক দর্শন" #. xxBtB #: fpicker/uiconfig/ui/remotefilesdialog.ui:279 @@ -276,19 +276,19 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:400 msgctxt "remotefilesdialog|name" msgid "Name" -msgstr "" +msgstr "নাম" #. qRHnF #: fpicker/uiconfig/ui/remotefilesdialog.ui:420 msgctxt "remotefilesdialog|size" msgid "Size" -msgstr "" +msgstr "আকার" #. qeF3r #: fpicker/uiconfig/ui/remotefilesdialog.ui:434 msgctxt "remotefilesdialog|date" msgid "Date modified" -msgstr "" +msgstr "পরিবর্তনের তারিখ" #. cGNWD #: fpicker/uiconfig/ui/remotefilesdialog.ui:508 @@ -298,10 +298,9 @@ #. rCVer #: fpicker/uiconfig/ui/remotefilesdialog.ui:522 -#, fuzzy msgctxt "remotefilesdialog|nameLabel" msgid "File name" -msgstr "ফাইলের নাম (_n):" +msgstr "নথির নাম" #. GUWMA #: include/fpicker/strings.hrc:14 @@ -320,7 +319,7 @@ #: include/fpicker/strings.hrc:17 msgctxt "STR_SVT_FILEPICKER_GPGENCRYPT" msgid "Encrypt with ~GPG key" -msgstr "" +msgstr "এনক্রিপ্ট করুন = জিপিজি কী" #. LWkae #: include/fpicker/strings.hrc:18 @@ -374,7 +373,7 @@ #: include/fpicker/strings.hrc:26 msgctxt "STR_SVT_FILEPICKER_IMAGE_ANCHOR" msgid "A~nchor:" -msgstr "" +msgstr "আংকর:" #. JvMvb #: include/fpicker/strings.hrc:27 @@ -419,13 +418,14 @@ "Are you sure you want to delete the service?\n" "\"$servicename$\"" msgstr "" +"আনি কি নিশিচত এই সুবিধা অপসারণ করতে চান?\n" +"\"$servicename$\"" #. KegFE #: include/fpicker/strings.hrc:33 -#, fuzzy msgctxt "STR_SVT_ROOTLABEL" msgid "Root" -msgstr "ফুট" +msgstr "মূল" #. sWRTd #: include/fpicker/strings.hrc:34 @@ -441,10 +441,9 @@ #. wJYsA #: include/fpicker/strings.hrc:36 -#, fuzzy msgctxt "STR_FILEDLG_TYPE" msgid "File ~type" -msgstr "ফাইলের ধরন: (~t)" +msgstr "নথির প্রকার" #. EEBg4 #: include/fpicker/strings.hrc:37 diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/helpcontent2/source/auxiliary.po libreoffice-7.1.3~rc2/translations/source/bn-IN/helpcontent2/source/auxiliary.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/helpcontent2/source/auxiliary.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/helpcontent2/source/auxiliary.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-05-19 12:41+0200\n" -"PO-Revision-Date: 2020-02-21 08:15+0000\n" -"Last-Translator: Anshuman Das \n" -"Language-Team: Bengali (India) \n" +"PO-Revision-Date: 2021-04-22 12:37+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" "Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1532004366.000000\n" #. fEEXD @@ -32,7 +32,7 @@ "0701\n" "node.text" msgid "%PRODUCTNAME BASIC" -msgstr "" +msgstr "%PRODUCTNAME বেসিক" #. Ua99d #: sbasic.tree @@ -41,7 +41,7 @@ "070101\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "" +msgstr "সাধারণ তথ্য এবং ব্যবহার্য ইন্টারফেসের ব্যবহার" #. ooCCn #: sbasic.tree @@ -176,7 +176,7 @@ "0804\n" "node.text" msgid "Loading, Saving, Importing, Exporting and Redacting" -msgstr "" +msgstr "লোড, সেভ,ইম্পোর্ট, এক্সপোর্ট এবং সম্পাদনা" #. yRwiN #: scalc.tree @@ -221,7 +221,7 @@ "0809\n" "node.text" msgid "Pivot Table" -msgstr "" +msgstr "পিভট টেবিল" #. ZBuq9 #: scalc.tree @@ -230,7 +230,7 @@ "08091\n" "node.text" msgid "Pivot Chart" -msgstr "" +msgstr "পিভট চার্ট" #. RowUw #: scalc.tree @@ -248,7 +248,7 @@ "08101\n" "node.text" msgid "Subtotals" -msgstr "" +msgstr "উপ-মোট" #. CzARM #: scalc.tree @@ -257,7 +257,7 @@ "0811\n" "node.text" msgid "References" -msgstr "" +msgstr "সম্পর্কিত" #. ELC6F #: scalc.tree @@ -266,7 +266,7 @@ "0812\n" "node.text" msgid "Viewing, Selecting, Copying" -msgstr "" +msgstr "দর্শন, চয়ন, অনুলিপি" #. VFHig #: scalc.tree @@ -275,7 +275,7 @@ "0813\n" "node.text" msgid "Formulas and Calculations" -msgstr "" +msgstr "সূত্র এবং গণনা" #. bCMSS #: scalc.tree @@ -302,7 +302,7 @@ "05\n" "help_section.text" msgid "Charts and Diagrams" -msgstr "" +msgstr "বর্ণনাচিত্র এবং রেখাচিত্র" #. gu6pZ #: schart.tree @@ -311,7 +311,7 @@ "0501\n" "node.text" msgid "General Information" -msgstr "" +msgstr "সাধারণ তথ্য" #. Q5EUA #: sdatabase.tree @@ -320,7 +320,7 @@ "09\n" "help_section.text" msgid "Database Functionality (Base)" -msgstr "" +msgstr "ডাটাবেস কার্য্যকারিতা (বেস)" #. tLWiE #: sdatabase.tree @@ -329,7 +329,7 @@ "0901\n" "node.text" msgid "General Information" -msgstr "" +msgstr "সাধারণ তথ্য" #. xU49Q #: sdraw.tree @@ -338,7 +338,7 @@ "11\n" "help_section.text" msgid "Drawings (Draw)" -msgstr "" +msgstr "চিত্রাঙ্কন (ড্র)" #. UcMAA #: sdraw.tree @@ -347,7 +347,7 @@ "1101\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "" +msgstr "সাধারণ তথ্য এবং ব্যবহার্য ইন্টারফেসের ব্যবহার" #. ZDeBD #: sdraw.tree diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 11:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/instsetoo_native/inc_openoffice/windows/msi_languages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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" -"PO-Revision-Date: 2018-11-13 06:24+0000\n" -"Last-Translator: joydeep \n" -"Language-Team: Bengali (India) \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1542090266.000000\n" #. tBfTE @@ -671,7 +671,7 @@ "OOO_ACTIONTEXT_73\n" "LngText.text" msgid "Removing files from previous installation" -msgstr "" +msgstr "আগের ইনস্টলেশন (প্রতিস্থাপন) থেকে ফাইল সমূহ অপসারিত করা হচ্ছে" #. G7Cdp #: ActionTe.ulf @@ -1130,7 +1130,7 @@ "OOO_CONTROL_7\n" "LngText.text" msgid "{&DialogDefaultBold}Change Current Destination Folder" -msgstr "" +msgstr "বর্তমানে নির্দিষ্ট গন্তব্য ফোল্ডার পরিবর্তন" #. 6cCLG #: Control.ulf @@ -1206,13 +1206,12 @@ #. NdeD8 #: Control.ulf -#, fuzzy msgctxt "" "Control.ulf\n" "OOO_CONTROL_20\n" "LngText.text" msgid "Enter the network location or click Change to browse to a location. Click Install to create a server image of [ProductName] at the specified network location or click Cancel to exit the wizard." -msgstr "নেটওয়ার্ক অবস্থান ঢোকান অথবা একটি অবস্থানে ব্রাউজ করতে পরিবর্তন এ ক্লিক করুন। উল্লেখিত নেটওয়ার্ক অবস্থানে [ProductName] এর একটি সার্ভার চিত্র তৈরি করতে ইনস্টলেশন ক্লিক করুন অথবা উইজার্ড প্রস্থান করতে বাতিল এ ক্লিক করুন।" +msgstr "নেটওয়ার্কে অবস্থান দিন অথবা একটি অবস্থানে ব্রাউজ করতে পরিবর্তন এ ক্লিক করুন। উল্লেখিত নেটওয়ার্ক অবস্থানে [ProductName] এর একটি সার্ভার ইমেজ তৈরি করতে ইনস্টলেশন ক্লিক করুন অথবা উইজার্ড প্রস্থান করতে বাতিল এ ক্লিক করুন।" #. U7sr3 #: Control.ulf @@ -1275,7 +1274,7 @@ "OOO_CONTROL_27\n" "LngText.text" msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "[ProductName] এর প্রতিস্থাপন উইজার্ডে স্বাগত" #. 9Zq7E #: Control.ulf @@ -1338,7 +1337,7 @@ "OOO_CONTROL_36\n" "LngText.text" msgid "{\\DialogDefault}{80}" -msgstr "" +msgstr "{\\DialogDefault}{80}" #. acbEy #: Control.ulf @@ -1374,7 +1373,7 @@ "OOO_CONTROL_40\n" "LngText.text" msgid "{&DialogDefaultBold}User Information" -msgstr "" +msgstr "ব্যবহারকারীর বিবরণ" #. 3cLPR #: Control.ulf @@ -1464,7 +1463,7 @@ "OOO_CONTROL_54\n" "LngText.text" msgid "{&DialogDefaultBold}Custom Setup" -msgstr "" +msgstr "অনিয়মিত প্রতিস্থাপন" #. AnSJQ #: Control.ulf @@ -1545,7 +1544,7 @@ "OOO_CONTROL_65\n" "LngText.text" msgid "{&DialogDefaultBold}Custom Setup Tips" -msgstr "" +msgstr "অনিয়মিত প্রতিস্থাপন সংক্রান্ত ইঙ্গিত" #. 2sY6N #: Control.ulf @@ -1662,7 +1661,7 @@ "OOO_CONTROL_90\n" "LngText.text" msgid "{&DialogDefaultBold}Destination Folder" -msgstr "" +msgstr "গন্তব্য ফোল্ডার" #. RgRB4 #: Control.ulf @@ -1716,7 +1715,7 @@ "OOO_CONTROL_98\n" "LngText.text" msgid "{&DialogDefaultBold}Disk Space Requirements" -msgstr "" +msgstr "ডিস্কে খালি জায়গার প্রয়োজনীয়তা" #. ZairS #: Control.ulf @@ -1752,7 +1751,7 @@ "OOO_CONTROL_105\n" "LngText.text" msgid "{&DialogDefaultBold}Files in Use" -msgstr "" +msgstr "ব্যবহৃত ফাইল সমূহ" #. EjFBo #: Control.ulf @@ -1815,7 +1814,7 @@ "OOO_CONTROL_115\n" "LngText.text" msgid "{&DialogDefaultBold}Change Current Destination Folder" -msgstr "" +msgstr "বর্তমানে নির্দিষ্ট গন্তব্য ফোল্ডার পরিবর্তন করুন" #. vQeGg #: Control.ulf @@ -1878,7 +1877,7 @@ "OOO_CONTROL_124\n" "LngText.text" msgid "Build contributed in collaboration with the community by [Manufacturer]. For credits, see: https://www.documentfoundation.org" -msgstr "" +msgstr "[Manufacturer] এর দ্বারা সম্প্রদায়ের সহযোগিতায় নির্মিত, কৃতিত্বের জন্যে দেখুন: https://www.documentfoundation.org" #. tLGPm #: Control.ulf @@ -1896,7 +1895,7 @@ "OOO_CONTROL_126\n" "LngText.text" msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "[PrductName] প্রতিস্থাপন উইজার্ড এ স্বাগত" #. wJD2b #: Control.ulf @@ -1941,7 +1940,7 @@ "OOO_CONTROL_133\n" "LngText.text" msgid "{&DialogDefaultBold}License Agreement" -msgstr "" +msgstr "অনুমতিপত্র স্বীকৃতি" #. VmMs5 #: Control.ulf @@ -1986,7 +1985,7 @@ "OOO_CONTROL_140\n" "LngText.text" msgid "{&DialogDefaultBold}Program Maintenance" -msgstr "" +msgstr "প্রোগ্রাম রক্ষণাবেক্ষণ" #. w9y7B #: Control.ulf @@ -2058,7 +2057,7 @@ "OOO_CONTROL_149\n" "LngText.text" msgid "{&DialogDefaultBold}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "[ProductName] এর প্রতিস্থাপন উইজার্ড এ স্বাগত" #. A8B4y #: Control.ulf @@ -2094,7 +2093,7 @@ "OOO_CONTROL_155\n" "LngText.text" msgid "{&DialogDefaultBold}Out of Disk Space" -msgstr "" +msgstr "ডিস্কে যথেষ্ট খালি জায়গা নেই" #. 4BEms #: Control.ulf @@ -2148,7 +2147,7 @@ "OOO_CONTROL_161\n" "LngText.text" msgid "{&DialogHeading}Welcome to the Patch for [ProductName]" -msgstr "" +msgstr "[ProductName]এর সংস্কারে স্বাগত" #. wFLhj #: Control.ulf @@ -2211,7 +2210,7 @@ "OOO_CONTROL_170\n" "LngText.text" msgid "{&DialogDefaultBold}Ready to Modify the Program" -msgstr "" +msgstr "প্রোগ্রামে পরিবর্তন করতে প্রস্তুত" #. a9B5F #: Control.ulf @@ -2220,7 +2219,7 @@ "OOO_CONTROL_171\n" "LngText.text" msgid "{&DialogDefaultBold}Ready to Repair the Program" -msgstr "" +msgstr "প্রোগ্রামের সংশোধন করতে প্রস্তুত" #. 9e9VQ #: Control.ulf @@ -2229,7 +2228,7 @@ "OOO_CONTROL_172\n" "LngText.text" msgid "{&DialogDefaultBold}Ready to Install the Program" -msgstr "" +msgstr "প্রোগ্রাম প্রতিস্থাপন করতে প্রস্তুত" #. y8BGp #: Control.ulf @@ -2292,7 +2291,7 @@ "OOO_CONTROL_181\n" "LngText.text" msgid "{&DialogDefaultBold}Remove the Program" -msgstr "" +msgstr "প্রোগ্রাম অপসারণ করুন" #. x4Thh #: Control.ulf @@ -2373,7 +2372,7 @@ "OOO_CONTROL_190\n" "LngText.text" msgid "{&DialogHeading}Installation Wizard Completed" -msgstr "" +msgstr "প্রতিস্থাপন উইজার্ড-এর কাজ সম্পন্ন হয়েছে" #. 3yQtG #: Control.ulf @@ -2418,7 +2417,7 @@ "OOO_CONTROL_198\n" "LngText.text" msgid "{&DialogHeading}Installation Wizard Completed" -msgstr "" +msgstr "প্রতিস্থাপন উইজার্ড-এর কাজ সম্পন্ন হয়েছে" #. HXdXy #: Control.ulf @@ -2544,17 +2543,16 @@ "OOO_CONTROL_217\n" "LngText.text" msgid "{&DialogHeading}Welcome to the Installation Wizard for [ProductName]" -msgstr "" +msgstr "[ProductName] এর প্রতিস্থাপন উইজার্ডে স্বাগত" #. GYEbK #: Control.ulf -#, fuzzy msgctxt "" "Control.ulf\n" "OOO_CONTROL_218\n" "LngText.text" msgid "[ProductName] Setup is preparing the Installation Wizard which will guide you through the program setup process. Please wait." -msgstr "[ProductName] সেটআপ, একটি ইনস্টলেশন উইজার্ড শুরু করতে যাচ্ছে যেটি আপনাকে ইনস্টলেশন প্রক্রিয়ার প্রতি ধাপে নির্দেশনা দিবে। অনুগ্রহ করে অপেক্ষা করুন।" +msgstr "[ProductName] সেটআপ, একটি প্রতিস্থাপন উইজার্ড শুরু করতে যাচ্ছে যেটি আপনাকে প্রতিস্থাপন প্রক্রিয়ার প্রতি ধাপে নির্দেশনা দিবে। অনুগ্রহ করে অপেক্ষা করুন।" #. ryhy8 #: Control.ulf @@ -2626,7 +2624,7 @@ "OOO_CONTROL_226\n" "LngText.text" msgid "{&DialogHeading}Installation Wizard Completed" -msgstr "" +msgstr "প্রতিস্থাপন উইজার্ডের কাজ সম্পন্ন হয়েছে" #. fCUfv #: Control.ulf @@ -2707,7 +2705,7 @@ "OOO_CONTROL_238\n" "LngText.text" msgid "{&DialogDefaultBold}Installing [ProductName]" -msgstr "" +msgstr "{&DialogDefaultBold}প্রতিস্থাপিত হচ্ছে" #. hwEMZ #: Control.ulf @@ -2716,7 +2714,7 @@ "OOO_CONTROL_239\n" "LngText.text" msgid "{&DialogDefaultBold}Uninstalling [ProductName]" -msgstr "" +msgstr "{&DialogDefaultBold} [ProductName] অপসারিত হচ্ছে" #. XuEFu #: Control.ulf @@ -2806,7 +2804,7 @@ "OOO_CONTROL_250\n" "LngText.text" msgid "{&DialogHeading}Resuming the Installation Wizard for [ProductName]" -msgstr "" +msgstr "{&DialogHeading}[ProductName] এর প্রতিস্থাপন উইজার্ড পুনরায় শুরু করা হচ্ছে" #. ryZBv #: Control.ulf @@ -2842,7 +2840,7 @@ "OOO_CONTROL_256\n" "LngText.text" msgid "Choose which program features you want installed and where they will be installed. For example you can select user interface languages and spelling dictionaries." -msgstr "" +msgstr "প্রোগ্রাম এর কোন বৈশিষ্টগুলি প্রতিস্থাপন করা হবে তা নির্বাচন করুন। যেমন, আপনি ব্যবহারকারী ইন্টারফেস এর ভাষা এবং বানানের জন্য শব্দকোষ নির্বাচন করতে পারেন ।" #. jcXxh #: Control.ulf @@ -2869,7 +2867,7 @@ "OOO_CONTROL_259\n" "LngText.text" msgid "{&DialogDefaultBold}Setup Type" -msgstr "" +msgstr "প্রতিস্থাপনের প্রকৃতি" #. kv6GZ #: Control.ulf @@ -2977,7 +2975,7 @@ "OOO_CONTROL_278\n" "LngText.text" msgid "{&DialogDefaultBold}File Type" -msgstr "" +msgstr "{&DialogDefaultBold}ফাইলের শ্রেণীবিভাগ" #. gjEzM #: Control.ulf @@ -3026,13 +3024,12 @@ #. 5VLAA #: Control.ulf -#, fuzzy msgctxt "" "Control.ulf\n" "OOO_CONTROL_305\n" "LngText.text" msgid "To continue, click Next." -msgstr "এগিয়ে যেতে, ক্লিক করুন" +msgstr "এগিয়ে যেতে, এগোন-এ ক্লিক করুন" #. E5kBg #: Control.ulf @@ -3041,17 +3038,16 @@ "OOO_CONTROL_306\n" "LngText.text" msgid "To select a different version, click Change. Otherwise click Cancel to abort the Installation Wizard." -msgstr "" +msgstr "অন্য সংস্করণ বাছতে পরিবর্তন এ ক্লিক করুন, অন্যথায় প্রতিস্থাপন উইজার্ডটিকে বাতিল করতে বাতিল এ ক্লিক করুন" #. LFZCF #: Control.ulf -#, fuzzy msgctxt "" "Control.ulf\n" "OOO_CONTROL_307\n" "LngText.text" msgid "To select a different folder, click Change." -msgstr "একটি ভিন্ন ফোল্ডার নির্বাচন করতে, ক্লিক করুন " +msgstr "অন্য ফোল্ডার বাছতে পরিবর্তন-এ ক্লিক করুন" #. VganB #: Control.ulf @@ -3096,7 +3092,7 @@ "OOO_CONTROL_319\n" "LngText.text" msgid "Create a shortcut on desktop" -msgstr "" +msgstr "ডেস্কটপে শর্টকাট তৈরী করুন" #. cjkES #: Control.ulf @@ -3123,7 +3119,7 @@ "OOO_CONTROL_323\n" "LngText.text" msgid "The following applications are using files that need to be updated by this setup. You can let Installation Wizard close them and attempt to restart them, or reboot the system later to complete the setup." -msgstr "" +msgstr "নিম্নলিখিত এপ্লিকেশনগুলি এমন কিছু ফাইল ব্যবহার করছে যা এই সেটআপ প্রোগ্রাম কে উন্নীত করতে হবে। আপনি চাইলে প্রতিস্থাপন উইজার্ডকে এদের বন্ধ করে পুনরায় চালু করার অনুমতি দিতে পারেন অথবা কম্পিউটার পুনরায় চালু করে সেটআপ শেষ করতে পারেন।" #. qDAnG #: Control.ulf @@ -3132,7 +3128,7 @@ "OOO_CONTROL_324\n" "LngText.text" msgid "{&DialogDefaultBold}Files in Use" -msgstr "" +msgstr "ফাইল ব্যবহৃত হচ্ছে" #. giWW4 #: Control.ulf @@ -3159,7 +3155,7 @@ "OOO_CONTROL_327\n" "LngText.text" msgid "{&DialogDefaultBold}Attention!" -msgstr "" +msgstr "{&DialogDefaultBold}লক্ষ্য করুন" #. 5eE5R #: Control.ulf @@ -3168,7 +3164,7 @@ "OOO_CONTROL_328\n" "LngText.text" msgid "The [ProductName] Help must be installed in the same directory as the program." -msgstr "" +msgstr "[ProductName]প্রোগ্রাম এবং সহায়ক একই ডিরেক্টরিতে প্রতিস্থাপন করতে হবে" #. jeyr7 #: CustomAc.ulf @@ -4365,7 +4361,7 @@ "OOO_ERROR_131\n" "LngText.text" msgid "Installing a pre-requisite [2] failed. You might need to manually install it from Microsoft site to be able to run the product.[3]" -msgstr "" +msgstr "একটি পূর্বপ্রয়োজনীয়ের প্রতিস্থাপন হয়নি [২] । আপনি নিজে এটি মাইক্রোসফট এর সাইট থেকে প্রতিস্থাপন করে এই উৎপাদনটি ব্যবহার করতে পারবেন [৩]।" #. oeCq9 #: LaunchCo.ulf @@ -4383,7 +4379,7 @@ "OOO_LAUNCH_2\n" "LngText.text" msgid "[ProductName] cannot be installed on this Windows version. [WindowsMinVersionText] or newer is required." -msgstr "" +msgstr "[ProductName] টি উইন্ডোস এর এই সংস্করণে প্রতিস্থাপিত করা যাবেনা। [WindowsMinVersionText] বা এর থেকে নতুন সংস্করণ প্রয়োজন।" #. FDDBP #: LaunchCo.ulf @@ -4392,7 +4388,7 @@ "OOO_LAUNCH_3\n" "LngText.text" msgid "To install [ProductName] on Windows 8.1, at least April 2014 update rollup (MS KB 2919355) must be installed." -msgstr "" +msgstr "[ProductName] উইন্ডোস ৮.১ এ প্রতিস্থাপন করতে হলে ন্যূনতম এপ্রিল ২০১৪ এর উন্নীতিকরণ (MS KB 2919355) প্রতিস্থাপিত হতে হবে" #. 9rCtE #: Property.ulf @@ -4410,7 +4406,7 @@ "OOO_ARPHELPLINKTEMPLATE\n" "LngText.text" msgid "https://www.libreoffice.org/get-help" -msgstr "" +msgstr "https://www.libreoffice.org/get-help" #. bR9FC #: Property.ulf @@ -4527,7 +4523,7 @@ "OOO_RADIOBUTTON_1\n" "LngText.text" msgid "{&DialogDefaultBold}&Modify" -msgstr "" +msgstr "{&DialogDefaultBold}&পরিবর্তন" #. AGLAj #: RadioBut.ulf @@ -4536,7 +4532,7 @@ "OOO_RADIOBUTTON_2\n" "LngText.text" msgid "{&DialogDefaultBold}Re&pair" -msgstr "" +msgstr "{&DialogDefaultBold}মেরামত" #. wCZDY #: RadioBut.ulf @@ -4545,7 +4541,7 @@ "OOO_RADIOBUTTON_3\n" "LngText.text" msgid "{&DialogDefaultBold}&Remove" -msgstr "" +msgstr "{&DialogDefaultBold}অপসারণ" #. GGfjA #: RadioBut.ulf @@ -4554,7 +4550,7 @@ "OOO_RADIOBUTTON_4\n" "LngText.text" msgid "{&DialogDefaultBold}&Typical" -msgstr "" +msgstr "{&DialogDefaultBold}সাধারণ" #. e8DR4 #: RadioBut.ulf @@ -4563,7 +4559,7 @@ "OOO_RADIOBUTTON_5\n" "LngText.text" msgid "{&DialogDefaultBold}Cu&stom" -msgstr "" +msgstr "{&DialogDefaultBold}ঐচ্ছিক" #. WaaRd #: RadioBut.ulf @@ -4608,7 +4604,7 @@ "OOO_RADIOBUTTON_10\n" "LngText.text" msgid "&Close the applications and attempt to restart them." -msgstr "" +msgstr "এপ্লিকেশন গুলি বন্ধ করে পুনরায় চালু করার প্রয়াস করুন।" #. T4DzH #: RadioBut.ulf @@ -4617,7 +4613,7 @@ "OOO_RADIOBUTTON_11\n" "LngText.text" msgid "&Do not close applications. A reboot will be required to complete the setup." -msgstr "" +msgstr "এপ্লিকেশন বন্ধ করবেন না। প্রতিস্থাপন সম্পূর্ণ করতে হলে কম্পিউটারটি বন্ধকরে পুনরায় চালু করতে হবে।" #. 94ZFb #: UIText.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/oox/messages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/oox/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/oox/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/oox/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,23 +4,25 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-08-21 21:37+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" #. C5e9E #: oox/inc/strings.hrc:15 msgctxt "STR_DIAGRAM_TITLE" msgid "Chart Title" -msgstr "" +msgstr "চার্টের শিরোনাম" #. 3YeSC #: oox/inc/strings.hrc:16 msgctxt "STR_DIAGRAM_AXISTITLE" msgid "Axis Title" -msgstr "" +msgstr "অক্ষের শিরোনাম" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/scp2/source/winexplorerext.po libreoffice-7.1.3~rc2/translations/source/bn-IN/scp2/source/winexplorerext.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/scp2/source/winexplorerext.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/scp2/source/winexplorerext.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-08-21 21:37+0200\n" -"PO-Revision-Date: 2013-05-23 22:36+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369348619.000000\n" #. 9FHTe @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n" "LngText.text" msgid "Enables the Microsoft File Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and perform full-text search." -msgstr "" +msgstr "মাইক্রোসফট ফাইল এক্সপ্লোরার কে সক্ষম করে %PRODUCTNAME নথি, থাম্বনেইল বা সম্পূর্ণ পাঠ্য অনুসন্ধান দেখান" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/shell/messages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/shell/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/shell/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/shell/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,21 +3,25 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-05-22 13:27+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" +#. 9taro #: shell/inc/spsupp/spsuppStrings.hrc:15 msgctxt "RID_STR_SP_VIEW_OR_EDIT_TITLE" msgid "Open Document" -msgstr "" +msgstr "ডকুমেন্ট খুলুন" +#. MZs32 #: shell/inc/spsupp/spsuppStrings.hrc:16 msgctxt "RID_STR_SP_VIEW_OR_EDIT_MESSAGE" msgid "" @@ -27,18 +31,27 @@ "\n" "Do you want to open it to view or to edit?" msgstr "" +"আপনি খুলছেন \n" +"\n" +"%DOCNAME%\n" +"\n" +"\n" +"আপনি কি এটি দেখতে চান না পরিবর্তন করতে চান ?" +#. SA66v #: shell/inc/spsupp/spsuppStrings.hrc:17 msgctxt "RID_STR_SP_VIEW_OR_EDIT_VIEW" msgid "View" -msgstr "" +msgstr "দর্শন" +#. Cj6ae #: shell/inc/spsupp/spsuppStrings.hrc:18 msgctxt "RID_STR_SP_VIEW_OR_EDIT_EDIT" msgid "Edit" -msgstr "" +msgstr "পরিবর্তন" +#. eQnBP #: shell/inc/spsupp/spsuppStrings.hrc:19 msgctxt "RID_STR_SP_VIEW_OR_EDIT_CANCEL" msgid "Cancel" -msgstr "" +msgstr "বাতিল" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/svl/messages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/svl/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/svl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/svl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-02-17 12:22+0100\n" -"PO-Revision-Date: 2018-02-27 14:28+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1519741702.000000\n" #. PDMJD @@ -27,4 +27,4 @@ #: include/svl/svl.hrc:27 msgctxt "STR_FILECTRL_BUTTONTEXT" msgid "Browse..." -msgstr "" +msgstr "ব্রাউজ" diff -Nru libreoffice-7.1.2~rc2/translations/source/bn-IN/uui/messages.po libreoffice-7.1.3~rc2/translations/source/bn-IN/uui/messages.po --- libreoffice-7.1.2~rc2/translations/source/bn-IN/uui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bn-IN/uui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2018-03-28 15:37+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" -"Language: bn_IN\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Shaunak Basu \n" +"Language-Team: Bengali (India) \n" +"Language: bn-IN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1522251479.000000\n" #. DLY8p @@ -544,17 +544,15 @@ #. BVofP #: uui/inc/strings.hrc:27 -#, fuzzy msgctxt "STR_ENTER_SIMPLE_PASSWORD" msgid "Enter password: " -msgstr "পাসওয়ার্ড সন্নিবেশ করান" +msgstr "পাসওয়ার্ড প্রবেশ করান " #. UTuR2 #: uui/inc/strings.hrc:28 -#, fuzzy msgctxt "STR_CONFIRM_SIMPLE_PASSWORD" msgid "Confirm password: " -msgstr "পাসওয়ার্ড নিশ্চিতকরণ" +msgstr "পাসওয়ার্ড নিশ্চিতকরণ " #. wydLC #: uui/inc/strings.hrc:29 @@ -1104,10 +1102,9 @@ #. iX6rE #: uui/uiconfig/ui/sslwarndialog.ui:8 -#, fuzzy msgctxt "sslwarndialog|SSLWarnDialog" msgid "Security Warning: " -msgstr "নিরাপত্তা সতর্কবাণী" +msgstr "নিরাপত্তাজনিত সতর্কীকরণ: " #. e7vJt #: uui/uiconfig/ui/sslwarndialog.ui:25 diff -Nru libreoffice-7.1.2~rc2/translations/source/bo/cui/messages.po libreoffice-7.1.3~rc2/translations/source/bo/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/bo/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bo/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tibetan \n" @@ -2485,1071 +2485,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bo/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/bo/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/bo/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bo/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 11:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/br/cui/messages.po libreoffice-7.1.3~rc2/translations/source/br/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/br/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/br/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2461,1071 +2461,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/brx/cui/messages.po libreoffice-7.1.3~rc2/translations/source/brx/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/brx/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/brx/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2479,1071 +2479,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bs/cui/messages.po libreoffice-7.1.3~rc2/translations/source/bs/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/bs/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bs/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:34+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2470,1071 +2470,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/bs/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/bs/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/bs/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/bs/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 11:52+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Spajanje" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ca/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ca/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-10 07:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564129929.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME admet quatre nivells de seguretat de macro (de baix a molt alt) i de fonts de confiança." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 té la intenció de presentar una sol·licitud com a organització per a Google Summer of Code (GSoC) consulteu:" - -#. SNTbc -#: 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 "Sabíeu que podeu adjuntar comentaris a fragments de text? Utilitzeu la drecera %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Heu de moure un o més paràgrafs? No cal que retalleu i enganxeu: feu servir la drecera de teclat %MOD1+%MOD2+Fletxa (Amunt/Avall)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Canvieu les lletres tipogràfiques bàsiques de la plantilla predefinida o el document actual amb Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Lletres tipogràfiques bàsiques." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Voleu trobar paraules que tinguin més de 10 caràcters? Edita ▸ Cerca i reemplaça ▸ Cerca ▸ [a-z]{10,} ▸ Altres opcions ▸ marqueu Expressions regulars." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Obriu un fitxer CSV com a full nou al full de càlcul actual mitjançant Full ▸ Insereix full des del fitxer." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "En escriure en negreta, cursiva o subratlla al Writer, podeu seguir amb els atributs predeterminats simplement fent ús de la drecera %MOD1+Maj+X (elimina el format directe de caràcter)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Useu %MOD1+%MOD2+Maj+V per a enganxar el contingut del porta-retalls com a text sense format." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalitzeu l'aparença de les notes al peu en Eines ▸ Notes al peu i notes finals…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Amb «Presentació de diapositives» ▸ «Presentació de diapositives personalitzada», reordeneu i escolliu les diapositives per a crear una presentació ajustada a les necessitats dels vostres espectadors." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Voleu canviar la revisió ortogràfica d'una part del text? Feu clic a la zona d'idioma de la barra d'estat o, millor encara, feu servir un estil." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "El Writer pot inserir una pàgina en blanc entre dues pàgines senars (parelles) seguides. Marqueu «Imprimeix les pàgines en blanc que s'han inserit automàticament» en la pestanya %PRODUCTNAME Writer del diàleg d'impressió." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "No voleu imprimir totes les columnes? Amagueu o agrupeu les que no necessiteu." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Per a modificar una presentació de reproducció automàtica, obriu-la i, després que iniciï, feu-hi clic dret; seleccioneu Edita en el menú contextual." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Us cal una posició precisa? Feu servir %MOD2+fletxes de direcció per a moure un píxel els objectes (formes, imatges, fórmules)." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "L'ajuda incrustada és disponible pitjant F1, si l'heu instal·lat. Altrament, podeu consultar-la a:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Feu clic dret a la barra d'estat del %PRODUCTNAME Calc i seleccioneu «Recompte de la selecció» per a mostrar el nombre de cel·les seleccionades." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Voleu tenir dues o més columnes per a una part d'una pàgina del %PRODUCTNAME Writer? Insereix ▸ Secció, pestanya Columnes i col·loqueu el text en aquesta secció." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Utilitzeu Dades ▸ Mostratge, estadístiques descriptives, anàlisi de variància, correlació i molt més a %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Podeu copiar d'un full a un altre sense el porta-retalls. Seleccioneu l'àrea que voleu copiar, feu %MOD1+clic en la pestanya de destinació i useu Full ▸ Insereix cel·les ▸ Insereix fulls." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Podeu canviar l'aspecte del %PRODUCTNAME via Eines ▸ Opcions ▸ Visualitza ▸ Interfície d'usuari." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Al %PRODUCTNAME Impress, utilitzeu Insereix ▸ Multimèdia ▸ Àlbum de fotos per a crear una presentació de diapositives a partir d'una sèrie de fotos amb la funció «Àlbum de fotos»." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Podeu mostrar fórmules en comptes dels resultats amb Visualitza ▸ Mostra la fórmula (o Eines ▸ Opcions ▸ %PRODUCTNAME Calc ▸ Visualitza ▸ Mostra ▸ Fórmules)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "El %PRODUCTNAME és desenvolupat per una comunitat amigable, formada per centenars de col·laboradors de tot el món. Uniu-vos a nosaltres amb les vostres habilitats, més enllà de la programació." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Escriviu amb l'esquerra? Habiliteu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Asiàtic i marqueu Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Mostra ▸ Regla ▸ Alineada a la dreta, i la barra de desplaçament es mostrarà a l'esquerra." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Voleu que els títols dels capítols surtin sempre a dalt de la pàgina? Editeu Encapçalament1 (estil de paràgraf) ▸ Flux del text ▸ Salts i marqueu Insereix ▸ Pàgina ▸ Abans." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "El valor Data/hora és només un nombre de dies d'un dia zero escollit; al número, la part entera representa la data, i la part fraccional és l'hora (la part d'un dia transcorreguda), i el 0,5 representa el migdia." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Maj+%MOD1+Supr suprimeix des del cursor fins al final de la frase actual." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Utilitzeu les etiquetes de la columna o de la fila a les fórmules. Per exemple, si teniu dues columnes, «Temps» i «KM», utilitzeu =Temps/KM per a obtenir els minuts per quilòmetre." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Molest amb les «marxes de formigues» al volant de les cel·les del Calc? Premeu Esc per a aturar-les, el contingut romandrà disponible per a enganxar-lo." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Voleu ser un Ambaixador del %PRODUCTNAME? Hi ha certificacions per a desenvolupadors, administradors i formadors." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Barregeu orientacions horitzontals i verticals en un full de càlcul de Calc aplicant diferents estils de pàgina als fulls." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Feu clic a la icona de caràcter especial de la barra d'eines per a obtenir un accés ràpid als caràcters preferits i recents que vulgueu inserir." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Trieu «Jeràrquic» a la barra lateral d'Estils per a veure la relació entre els estils." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Podeu utilitzar els estils per tal que les taules del document siguin consistents. Trieu-ne un a predefinit per estils (F11) o mitjançant Taula ▸ Estils de formatació automàtica." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Voleu configurar l'ús de la tecla %MOD1 per a obrir els enllaços? Eines ▸ Opcions %PRODUCTNAME ▸ Seguretat ▸ Opcions ▸ «Requereix %MOD1+clic per a seguir els enllaços»." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Si voleu veure el càlcul dels elements individuals d'una fórmula, seleccioneu els elements respectius i premeu F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Podeu protegir les cel·les amb Format ▸ Cel·les ▸ Protecció de cel·les. Per a evitar inserir, suprimir, canviar el nom, moure/copiar fulls, utilitzeu Eines ▸ Protegeix el full." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Voleu escriure al llarg d'una corba? Dibuixeu la línia, feu-hi doble clic, escriviu el text i trieu Format ▸ Quadre de text i forma ▸ Fontwork" #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Voleu mostrar només els valors més alts en un full de càlcul? Seleccioneu el menú Dades ▸ Filtre automàtic, feu clic a la fletxa desplegable i trieu «10primers»." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Per a suprimir el número de pàgina de la taula de continguts, aneu a Insereix ▸ Taula de continguts (o feu clic amb el botó dret i editeu l'índex inserit anteriorment). A la pestanya Entrades suprimiu el número de pàgina (#) de la línia Estructura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Amb el Navigator podeu seleccionar i moure amunt/avall capçaleres i el text de sota la capçalera, tant al Navigator i com al document." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Per a obtenir ràpidament un objecte matemàtic a Writer, escriviu la fórmula, seleccioneu-la i utilitzeu Insereix ▸ Objecte ▸ Fórmula per a convertir el text." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Amb el %PRODUCTNAME és molt fàcil instal·lar un diccionari nou: es proporcionen com a extensions." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "El %PRODUCTNAME té una versió portàtil que us dona mobilitat. Fins i tot sense tenir drets d'administrador al vostre ordinador, podeu instal·lar el %PRODUCTNAME portàtil al disc dur igualment." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "El Writer us permet numerar les notes al peu per pàgina, capítol, document: Eines ▸ Notes al peu i al final ▸ pestanya Notes al peu ▸ Recompte." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "El document de Writer no es reobre amb el cursor de text en la mateixa posició on era quan el vau desar? Afegiu el nom o cognom a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Dades d'usuari ▸ Nom/Cognoms." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Gestió de citacions? Utilitzeu una extensió de tercers." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Voleu inserir un valor al mateix lloc en diversos fulls? Seleccioneu els fulls: manteniu premuda la tecla %MOD1 i feu clic a les pestanyes dels fulls abans d'entrar-hi." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Voleu amagar algun text d'un document? Seleccioneu el text. Insereix ▸ Secció, i seleccioneu «Amaga»." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Podeu personalitzar el botó central del ratolí amb Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Visualitza ▸ Botó central del ratolí." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Voleu imprimir dues pàgines en vertical en una pàgina en horitzontal (reducció d'A4 a A5)? Fitxer ▸ Imprimeix i seleccioneu 2 a «Pàgines per full»." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Per a accedir ràpidament als marcadors del vostre document, feu clic dret al número de pàgina a la barra d'estat (a la cantonada inferior esquerra de la finestra del document)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Seleccioneu un objecte en el fons del document amb l'eina Selecciona en la barra d'eines Dibuix." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definiu com a text automàtic els textos que useu amb freqüència. Els podreu inserir pel seu nom, drecera o barra d'eines en qualsevol document del Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Reproduïu música durant una presentació assignant el so a la primera transició de diapositives sense fer clic al botó «Aplicar a totes les diapositives»." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "El %PRODUCTNAME Calc no calcula d'esquerra a dreta però respecta l'ordre: parèntesis, exponents, multiplicacions, divisions, sumes i restes." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Obteniu la documentació del %PRODUCTNAME i guies d'ús gratuïtes a:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Voleu suprimir tots els <> a la vegada i mantenir el text interior? Edita ▸ Cerca i reemplaça: Cerca = [<>], Reemplaça = en blanc i marqueu «Expressions regulars» a Altres opcions." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Us cal presentar un informe escrit amb el Writer? Trieu Fitxer ▸ Envia ▸ Esquema a presentació; això crea una diapositiva a partir de l'esquema de forma automàtica." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Voleu gestionar la presentació dels enllaços en un full de càlcul? Inseriu-los amb la funció ENLLAÇ" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Desmarqueu Eines ▸ Opcions ▸ %PRODUCTNAME Calc ▸ Visualitza ▸ Escala: «Sincronitza fulls» perquè cada full del Calc tingui el seu propi factor d'escala." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Podeu definir un color per a cada pestanya: feu clic amb botó dret en la pestanya o Full ▸ Color de la pestanya del full." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Rastregeu de les cel·les usades en una fórmula, precedents (Maj+F9) o dependents (Maj+F5) (o useu Eines ▸ Detectiu. Amb cada pressió de tecla avanceu un pas en la cadena." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Inseriu i numereu les fórmules en un únic pas: premeu Fn i després F3. S'insereix un text automàtic amb una fórmula i un número alineats en una taula." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Podeu crear un índex d'il·lustracions a partir dels noms d'objectes, no només a partir de les llegendes." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Useu l'Android o l'iPhone per a controlar remotament la presentació Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Voleu saber quants dies té el mes actual? Useu la funció DIESENMES(AVUI())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Els dígits apareixen com a «###» al full de càlcul? La columna és massa estreta per als dígits." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Activeu càlculs paral·lels massius de cel·les de fórmula via Eines ▸ Opcions ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Useu l'eina del Connector des de la barra d'eines de dibuix en el Draw o l'Impress per a crear diagrames de flux agradables i, opcionalment, copiar i enganxar objectes en el Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Les vostres donacions ajuden a la nostra comunitat mundial." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Voleu afegir x mesos a una data? Useu =DATAE(data;mesos)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Per a seleccionar un interval de cel·les continu que continguin dades i delimitat per files i columnes buides useu %MOD1+* (en el teclat numèric)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "El patró de data no és adient? Useu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Patrons d'acceptació de dates per a ajustar el patró." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Voleu exportar fórmules a CSV? Fitxer ▸ Anomena i desa ▸ Tipus de fitxer:Text CSV" #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La consola de presentació és una gran eina per a treballar amb el %PRODUCTNAME Impress. Ja l'heu provada?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Per a suprimir diversos comentaris, seleccioneu les cel·les amb comentaris i utilitzeu Full ▸ Comentaris de cel·la ▸ Suprimeix el comentari." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Convertiu fàcilment els documents a PDF fent un sol clic a la icona del PDF de la barra d'eines." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Voleu seleccionar un interval de cel·les gran sense fer cap desplaçament? Escriviu la referència de l'interval (p. ex. A1:A1000) a la casella del nom i, a continuació, Retorn." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Voleu saber els paràmetres de línia d'ordres vàlids? Executeu soffice amb --help, -h o -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Ajusteu el full o els intervals d'impressió a una pàgina amb Format ▸ Pàgina ▸ Full ▸ Mode d'escala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Necessiteu un element sense numerar en una llista? Useu «Insereix una entrada no numerada» en la barra d'eines de pics i numeració." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Podeu girar l'orientació de la taula de cel·les amb Taula ▸ Propietats… ▸ Flux del text ▸ Orientació del text." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "En el %PRODUCTNAME Draw, per a canviar el punt 0/0 dels regles, arrossegueu la intersecció dels dos regles en la cantonada superior esquerra de l'espai de treball." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Voleu desplaçar una columna del Calc entremig d'unes altres dues columnes en un sol pas? Feu clic a la capçalera i a una cel·la de la columna, manteniu premut el botó del ratolí i desplaceu-la fins a l'objectiu amb la tecla %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Podeu marcar automàticament les entrades alfabètiques de l'índex fent servir un fitxer de concordança." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Useu Formatació ▸ Alinea (o el menú contextual) per a posicionar amb precissió els objectes en el Draw o Impress: centra la pàgina si un objecte, o grup d'objecte, està seleccionat." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "No feu servir tabuladors per a separar elements en un document del Writer. Segons el que vulgueu fer, una taula sense vores pot ser una opció més pràctica." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "No cal que us desplaceu per la llista a Eines ▸ Personalitza ▸ Teclat per a trobar una drecera: només cal que l'escriviu." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "El %PRODUCTNAME pot afegir automàticament una llegenda numerada si inseriu objectes. Vegeu Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Llegenda automàtica." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Amb el %PRODUCTNAME podeu usar el vostre compte de Google Mail per a fer combinació de correu. Empleneu Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Adreça electrònica per a la combinació de correu." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Manteniu les capçaleres de columnes d'un full visibles en desplaçar línies via Visualitza ▸ Congela les cel·les ▸ Congela la primera fila." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Voleu començar a treballar amb macros Basic? Feu una ullada als exemples de Eines ▸ Macros ▸ Edita les macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Apliqueu estils de paràgraf d'encapçalament al Writer amb les tecles de drecera: %MOD1+1 aplica Encapçalament 1, %MOD1+2 aplica Encapçalament 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "No us perdeu en documents grans. Feu servir el Navegador (F5) per a orientar-vos en el document." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Edita ▸ Cerca i reemplaça us permet inserir directament caràcters especials: feu clic dret en els camps d'entrada o premeu Maj+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Necessiteu continguts personalitzats per a les propietats de les metadades? La pestanya Fitxer ▸ Propietats ▸ Propietats personalitzades us permet crear el que voleu." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Voleu veure, però no imprimir, un objecte al Draw? Dibuixeu-lo en una capa que tingui l'opció «Imprimible» desactivada (feu clic dret en la pestanya i «Modifica la capa»)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Per a inserir la data actual en el document, useu Insereix ▸ Camp ▸ Data." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Teniu moltes imatges en el document Writer? Accelereu-ne la visualització desactivant Visualitza ▸ Imatges i diagrames." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Utilitzeu Full ▸ Emplena les cel·les ▸ Nombre aleatori per a generar una sèrie aleatòria basada en diverses distribucions." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Canvieu el nom de les diapositives a Impress per a definir millor les interaccions «Ves a la pàgina» i tenir un resum més explícit que Diapositiva1, Diapositiva2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "El diàleg de numeració de capítols us permet definir el text que s'ha de mostrar a davant del número del capítol. Per exemple, escriviu «Capítol» perquè es mostri «Capítol 1»" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Voleu transposar una taula de Writer? Copieu i enganxeu-la al Calc, transposeu-la amb el copia i enganxa especial i després copia i enganxa especial ▸ Text formatat en el Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Per a obtenir la barra d'eines «Text vertical» en la barra de dibuix, marqueu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Llengües predeterminades per als documents ▸ Asiàtic, i feu el botó visible fent-hi clic dret." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Per a fer zoom ràpidament en l'interval de selecció, feu clic dret en l'apartat Escala de la barra d'estat i trieu Òptima." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Podeu signar els fitxers PDF existents i també verificar-ne les signatures." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Sovint creeu documents a partir d'un altre? Considereu la possibilitat de fer servir una plantilla." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Useu Format ▸ Condicionada ▸ Gestiona en el Calc per a trobar quines cel·les tenen formatació condicionada." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Eines ▸ Detectiu ▸ Marca les dades no vàlides, marca totes les cel·les del full que contenen valors que no compleixen les regles de validació." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Utilitzeu la inserció de lletres tipogràfiques per a una major interoperabilitat amb altres paquets d'ofimàtica a Fitxer ▸ Propietats ▸ Lletra tipogràfica." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Per a convertir una fórmula en valors estàtics no cal copiar i enganxar; utilitzeu Dades ▸ Calcula ▸ Fórmula a valor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Podeu tornar a formatar tots els comentaris d'un document fent clic a la fletxa avall en un comentari i triant «Formata tots els comentaris»." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Voleu la mateixa disposició per a la pantalla i la impressió? Marqueu Eines ▸ Opcions ▸ %PRODUCTNAME Calc ▸ General ▸ Utilitza la mètrica de la impressora per a la formatació del text." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "El Writer us ajuda a fer còpies de seguretat: amb «Fitxer ▸ Desa una còpia» es crea un document nou i seguiu treballant en l'original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Si heu creat un estil basat en un altre estil, podeu introduir un valor en percentatge o valor diferencial (p. ex. 110 %, -2 pt o +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Per a copiar un comentari sense perdre el contingut de la cel·la objectiu hauríeu d'usar «Enganxament especial» i desmarqueu-ho tot excepte «Comentaris» en el diàleg. Utilitzeu les operacions «Afegeix» per a no substituir el contingut existent." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Convertiu de forma massiva els vostres documents del MS Office al format OpenDocument amb l'auxiliar de conversió de documents en el menú Fitxer ▸ Auxiliars ▸ Convertidor de documents." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "En editar una cel·la en la seva posició, podeu fer clic dret i inserir camps: data, noms del full, títol del document, etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Necessiteu moure una taula del Writer? «Taula ▸ Selecciona ▸ Taula» i «Insereix ▸ Marc ▸ Marc» i moveu-lo on vulgueu." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Amb Eines ▸ Text automàtic ▸ Text automàtic ▸ Importa podeu seleccionar un document o una plantilla del Word que contingui les entrades de Text automàtic que vulgueu importar." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "No inseriu salts de línia manuals per a separar dos paràgrafs. En comptes d'això, canvieu «Sagnats i espaiat ▸ Espaiat ▸ Sota el paràgraf» a les propietats de l'estil o paràgraf." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Conserveu els zeros abans d'un número usant l'opció de format de cel·la «zeros inicials» o formateu la cel·la com a text abans d'introduir-hi el número." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Voleu tornar a l'estil predeterminat després d'aplicar un estil de llista? Feu clic en el botó de llistes de pics o numeració de la barra d'eines de formatació." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Suprimiu totes les àrees d'impressió en un únic pas: seleccioneu tots els fulls, i després Format ▸ Àrees d'impressió ▸ Neteja." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Afegiu imatges de fons en els fulls de càlcul via «Insereix ▸ Imatge» o arrossegueu un fons a la galeria, després «Format ▸ Organitza ▸ Al fons»." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Teniu problemes enganxant text als documents des de fitxers PDF o pàgines web? Proveu d'enganxar com a text sense format (%MOD1+%MOD2+Maj+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "En el Calc, utilitzeu MITJTRUNC() per a obtenir la mitjana del conjunt de dades excloent-ne els valors més alt i més baix." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "El quart paràmetre opcional de la funció CONSULTAV del Calc indica si la primera columna de les dades és ordenada. Si no ho és, introduïu FALS o zero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Les barres d'eines són contextuals. S'obren depenent del context. Si no voleu això, desmarqueu-les en Visualitza ▸ Barres d'eines." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Voleu crear un document mestre a partir del document Writer actual? Fitxer ▸ Envia ▸ Crea un document mestre (els subdocuments es creen depenent de l'esquema)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Voleu centrar cel·les en una pàgina impresa del Calc? Format ▸ Pàgina, Pàgina, Pàgina ▸ Paràmetres de disposició ▸ Alineació de la taula." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Els marcs es poden vincular perquè el text flueixi d'un a l'altre com en els programes de maquetació." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Creeu un diagrama basat en una taula de Writer fent clic en la taula i triant Insereix ▸ Diagrama." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Seleccioneu opcions a «Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Ajudes a la formatació ▸ Visualització de» per a indicar quins caràcters no imprimibles voleu que es mostrin." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Voleu saltar a una pàgina particular pel seu número? Feu clic a l'entrada de més a l'esquerra de la barra d'estat, useu «Edita ▸ Ves a la pàgina...» o premeu %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "El %PRODUCTNAME admet més de 150 llengües." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Desmarqueu Presentació de diapositives ▸ Paràmetres ▸ Presentació sempre en primer pla si necessiteu que un altre programa mostri la seva finestra al davant de la presentació." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Voleu trobar les paraules en negreta d'un document de Writer? Edita ▸ Cerca i reemplaça ▸ Altres opcions ▸ Atributs ▸ Pes de la lletra." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Podeu ordenar paràgrafs o files de taula de forma alfabètica o numèrica Eines ▸ Ordena." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Per a inserir un paràgraf abans (després) d'una secció, premeu %MOD2+Retorn al començament (final) de la secció." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "El %PRODUCTNAME té un centre de plantilles per a crear documents amb bona presentació. Proveu-lo." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calculeu els pagaments de préstecs amb el Calc: p. ex. PMT(2%/12;36;2500) taxa d'interès per període de pagament 2%/12, 36 mesos, import del préstec 2500 unitats monetàries." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "No trobeu el què voleu amb la funció CONSULTAV del Calc? Amb CONSULTAV i COINCIDEIX ho podeu fer tot!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Voleu mostrar la columna oculta A? Feu clic en una cel·la de la columna B, premeu el botó esquerre del ratolí, moveu el ratolí a l'esquerra, deixeu anar el botó. Després, feu-la visible via Format ▸ Columnes ▸ Mostra." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Per a canviar el número d'una pàgina al Writer, aneu a les propietats del primer paràgraf i, en la pestanya «Flux de text» marqueu Salts ▸ Insereix i introduïu el número." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Executeu el %PRODUCTNAME en qualsevol navegador web mitjançant el rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Obteniu un error estrany en el Calc, Err: seguit d'un número? Aquesta pàgina us dona l'explicació:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Incloeu un paràgraf que no sigui un títol en la taula de continguts canviant Esquema i numeració en la configuració del paràgraf a un nivell d'esquema." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "A més a més de la taula de continguts, el %PRODUCTNAME pot crear índexs alfabètics, d'il·lustracions, de taules, d'objectes, bibliogràfics i definits per l'usuari." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "No podeu modificar o suprimir un estil de cel·la personalitzat? Comproveu tots els fulls, no n'hauria d'estar protegit cap." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Heu d'omplir una sèrie? Seleccioneu l’interval de cel·les i el full ▸ Cel·les d’emplenament ▸ Sèrie d’emplenament i trieu entre Lineal, Creixement, Data i emplenament automàtic." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Voleu saber si es fa referència a una cel·la en fórmules d'altres cel·les? Eines ▸ Detectiu ▸ Rastreja les dependències (Maj+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "En el camp de reemplaçament de les opcions de correcció automàtica podeu usar comodins .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Voleu duplicar la línia de dalt? Premeu %MOD1+D o utilitzeu Full ▸ Emplena les cel·les ▸ Avall." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Per a cercar en diversos fulls de càlcul, seleccioneu-los abans d'iniciar la cerca." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Arrossegar i deixar anar cel·les del Calc en una visualització normal d'una diapositiva crea una taula. En la visualització d'esquema crea una línia en l'esquema." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME us ajuda a no introduir dos o més espais al Writer. Seleccioneu Eines ▸ Correcció automàtica ▸ Opcions de correcció automàtica ▸ Opcions ▸ Ignora els espais dobles." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Voleu que el cursor vagi a la cel·la de la dreta després d'introduir un valor al Calc? Utilitzeu la tecla Tab en comptes de l'Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Per a mostrar la barra de desplaçament a l'esquerra, activeu «Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Text complex» i marqueu «Full ▸ De dreta a esquerra»" #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arrossegueu un objecte formatat a la finestra Estils i formatació. S'obre un diàleg; simplement introduïu el nom de l'estil nou." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Les noves versions del %PRODUCTNAME proporciona noves funcionalitats, correccions d'errors i pedaços de seguretat. Mantingueu el programari actualitzat!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Voleu desenvolupar filtres XSLT i XML nous?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Premeu Maj+F1 per a veure ampliat qualsevol suggeriment disponible als quadres de diàleg quan no està habilitat «Consells ampliats» a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ General." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Ajuda del %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Més informació" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Executa aquesta acció ara..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Suggeriment del dia: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Ord" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opc" @@ -6944,7 +6938,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1252 msgctxt "colorconfigwin|basiccomment" msgid "Comment" -msgstr "Comentaris" +msgstr "Comentari" #. 73qea #: cui/uiconfig/ui/colorconfigwin.ui:1282 @@ -7022,7 +7016,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1628 msgctxt "colorconfigwin|sqlcomment" msgid "Comment" -msgstr "Comentaris" +msgstr "Comentari" #. HshHE #: cui/uiconfig/ui/colorconfigwin.ui:1637 diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-22 18:37+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -113,7 +113,7 @@ "par_id1001593520257636\n" "help.text" msgid "ImportWizard and Tools Basic libraries" -msgstr "ImportaWizard i llibreries Basic Eines" +msgstr "Biblioteques BASIC ImportWizard i Tools" #. JbBaB #: lib_euro.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-02-18 20:36+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1552290669.000000\n" @@ -4890,7 +4890,7 @@ "par_id921600180238854\n" "help.text" msgid "'Modified' status was changed" -msgstr "L'estat \"Modificat\" ha canviat" +msgstr "L'estat «Modificat» ha canviat" #. vVXPg #: 01040000.xhp @@ -4980,7 +4980,7 @@ "par_id41600097737991\n" "help.text" msgid "Printing of form letters finished" -msgstr "S'ha acabat la impressió de lletres de formulari" +msgstr "Ha finalitzat la impressió de cartes model" #. Wp5ff #: 01040000.xhp @@ -4989,7 +4989,7 @@ "par_id451600097862282\n" "help.text" msgid "...after printing of form letters using File - Print or Tools - Mail Merge Wizard menus." -msgstr "després d'imprimir cartes de formulari amb els menús Fitxer - Imprimeix o Eines - Auxiliar de combinació de correu." +msgstr "…després d'imprimir cartes model amb els menús Fitxer ▸ Imprimeix o Eines ▸ Auxiliar de combinació de correu." #. RpMCy #: 01040000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-02-02 18:36+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1560441763.000000\n" @@ -3997,13 +3997,12 @@ #. KJjBy #: 04060000.xhp -#, fuzzy msgctxt "" "04060000.xhp\n" "par_id3145587\n" "help.text" msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using date entries, make sure you use the correct format. Click OK to insert the result into the spreadsheet." -msgstr "Quan feu doble clic en una funció el camp d'entrada de l'argument apareixerà al costat dret del diàleg. Per seleccionar una referència de cel·la feu clic directament a la cel·la o arrossegueu-la a través de l'interval requerit al full mentre manteniu premut el botó del ratolí. També podeu introduir valors numèrics i d'altres o referències directament als camps corresponents del diàleg. Quan utilitzeu entrades de data assegureu-vos d'utilitzar el format correcte. Feu clicD'acordper inserir el resultat al full de càlcul." +msgstr "Quan feu doble clic en una funció, el camp d'entrada d'arguments apareixerà al costat dret del diàleg. Per seleccionar com argument la referència a una cel·la, feu clic directament a la cel·la, o arrossegueu l'interval requerit mentre manteniu premut el botó del ratolí a través del full. També podeu introduir valors numèrics i altres valors o referències directament als camps corresponents del diàleg. Quan utilitzeu entrades data assegureu-vos d'utilitzar el format correcte. Feu clic a D'acord per inserir el resultat al full de càlcul." #. QwFQQ #: 04060000.xhp @@ -4016,13 +4015,12 @@ #. hPtat #: 04060000.xhp -#, fuzzy msgctxt "" "04060000.xhp\n" "par_id3155809\n" "help.text" msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding error code is displayed." -msgstr "Tan aviat introduïu arguments a la funció es calcula el resultat. Aquesta previsualització us informa si el càlcul es pot dur a terme amb els arguments donats. Si els arguments donen com a resultat un error es mostra el codi d'error ." +msgstr "Tan aviat introduïu arguments a la funció, es calcula el resultat. Aquesta previsualització us informa si el càlcul es pot dur a terme amb els arguments donats. Si com a resultat es produeix un error, es mostrarà el codi d'error." #. S2CCy #: 04060000.xhp @@ -4728,13 +4726,12 @@ #. GJ7fw #: 04060101.xhp -#, fuzzy msgctxt "" "04060101.xhp\n" "par_id3149453\n" "help.text" msgid "Database is the cell range defining the database. The first row of the range contains the field names, and following rows are records with corresponding field values." -msgstr "La base de dades és l'interval de cel·les que defineix la base de dades. La primera fila de l'interval conté els noms dels camps i les següents files són registres amb els valors de camp corresponents." +msgstr "La Base de dades és l'interval de cel·les que defineix la base de dades. La primera fila de l'interval conté els noms dels camps i, les següents files són registres amb els valors corresponents als camps." #. aZFWB #: 04060101.xhp @@ -4904,13 +4901,12 @@ #. ESpfH #: 04060101.xhp -#, fuzzy msgctxt "" "04060101.xhp\n" "par_id31587322048553\n" "help.text" msgid "If you choose to omit the DatabaseField argument, your formula should be of the form =DCOUNTA(Database; ; SearchCriteria)." -msgstr "Si trieu ometre l'argument CampDeBaseDeDades la vostra fórmula hauria de ser de la forma =DCOMPTAA(BaseDeDades; ; CriterisDeCerca)." +msgstr "Si trieu ometre l'argument CampBaseDeDades, la vostra fórmula hauria de tenir la forma =BDCOMPTAA(BaseDeDades; ; CriterisDeCerca)." #. xX6ve #: 04060101.xhp @@ -5580,13 +5576,12 @@ #. 4twnp #: 04060102.xhp -#, fuzzy msgctxt "" "04060102.xhp\n" "hd_id3154536\n" "help.text" msgid "Date & Time Functions" -msgstr "Funcions de data i hora " +msgstr "Funcions de data i hora" #. MJ2GD #: 04060102.xhp @@ -5843,13 +5838,12 @@ #. G5ero #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3147427\n" "help.text" msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])" -msgstr "AMORDEGRC(Cost; DataCompra; PrimerPeriod; ValorResidual; Període; Velocitat [; Base])" +msgstr "CDECRAMOR(Cost; DataCompra; PrimerPeriode; ValorResidual; Període; Tipus[; Base])" #. bA2pT #: 04060103.xhp @@ -5934,13 +5928,12 @@ #. 4PnLu #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3147363\n" "help.text" msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate [; Basis])" -msgstr "AMORLINC(Cost; DataCompra; PrimerPeriod; ValorResidual; Període; Velocitat [; Base])" +msgstr "CLINAMOR(Cost; DataCompra; PrimerPeriode; ValorResidual; Període; Tipus[; Base])" #. PsFjE #: 04060103.xhp @@ -6089,13 +6082,12 @@ #. Ne2tH #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id961591171682507\n" "help.text" msgid "We recommend that you always specify the value that you require for ACCRINT’s Par argument, rather than allowing Calc to apply an arbitrary default. This will make your formula easier to understand and easier to maintain." -msgstr "Recomanem que sempre especifiqueu el valor que necessiteu per a l'argument Par d'ACCRINT en lloc de permetre que el Calc apliqui un valor per defecte arbitrari. Això farà que la vostra fórmula sigui més fàcil d'entendre i de mantenir." +msgstr "Recomanem que sempre especifiqueu el valor que necessiteu per a l'argument Par d'INTCOMP en lloc de permetre que el Calc apliqui un valor per defecte arbitrari. Això farà que la vostra fórmula sigui més fàcil d'entendre i de mantenir." #. Vobjm #: 04060103.xhp @@ -6244,7 +6236,6 @@ #. D67BM #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3145362\n" @@ -6362,13 +6353,12 @@ #. 4cBxj #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3150395\n" "help.text" msgid "PV(Rate; NPer; Pmt [; FV [; Type]])" -msgstr "PV(Rate; NPer; Pmt [; FV [; Tipus]])" +msgstr "VA(Taxa; NPer; Pmt [; VF [; Tipus]])" #. JrCA6 #: 04060103.xhp @@ -7038,13 +7028,12 @@ #. nkAEs #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3149756\n" "help.text" msgid "DISC(Settlement; Maturity; Price; Redemption [; Basis])" -msgstr "DISC(Liquidació; Venciment; Preu; Redempció [; Base])" +msgstr "DESC(Liquidació; Venciment; Preu; Estalvi[; Base])" #. Uyj29 #: 04060103.xhp @@ -7102,17 +7091,15 @@ #. pLhCb #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "bm_id3154695\n" "help.text" msgid "DURATION function durations;fixed interest securities" -msgstr "funció DURADA DEL durades ;valors d'interès fixos" +msgstr "funció DURADA durades;valors de renda fixa" #. coRDF #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "hd_id3154695\n" @@ -7131,13 +7118,12 @@ #. voaL4 #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3153373\n" "help.text" msgid "DURATION(Settlement; Maturity; Coupon; Yield; Frequency [; Basis])" -msgstr "DURATION(Liquidació; Venciment; FreeBSD; Ield; Freqüència [; Base])" +msgstr "DURADA(Liquidació; Venciment; Cupó; Rendiment; Freqüència [; Base])" #. JeeVp #: 04060103.xhp @@ -7195,13 +7181,12 @@ #. ADc8t #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3154902\n" "help.text" msgid "=DURATION(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3) returns 4.2 years." -msgstr "GA =DURATION(\"2001-01-01\";\"2006-01-01\";008;009;2;3) retorna 4,2 anys." +msgstr "=DURADA(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3) retorna 4,2 anys." #. TjeEJ #: 04060103.xhp @@ -7215,13 +7200,12 @@ #. J9TTW #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "hd_id3159147\n" "help.text" msgid "EFFECT" -msgstr "EFECTE" +msgstr "EFECTIU" #. SPbLD #: 04060103.xhp @@ -7243,13 +7227,12 @@ #. DF6F8 #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3148805\n" "help.text" msgid "EFFECT(Nom; P)" -msgstr "(Nom; P)" +msgstr "EFECTIU (Nom; P)" #. CSHR5 #: 04060103.xhp @@ -7280,13 +7263,12 @@ #. VAYCE #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3150772\n" "help.text" msgid "=EFFECT(9.75%;4) = 10.11% The annual effective rate is therefore 10.11%." -msgstr "GA =EFFECT(975%;4) = 10,11% La taxa efectiva anual és per tant 10,11%." +msgstr "=EFECTIU (9.75%;4) = 10,11% Per tant, la taxa efectiva anual és del 10,11%." #. AW6uV #: 04060103.xhp @@ -7398,13 +7380,12 @@ #. veQBT #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3166452\n" "help.text" msgid "DDB(Cost; Salvage; Life; Period [; Factor])" -msgstr "DDB(Cost; Salvatge; Vida; Període [; Factor])" +msgstr "BDD(Cost; Rescat; Vida; Període [; Factor])" #. VKnDB #: 04060103.xhp @@ -7507,13 +7488,12 @@ #. ExEAy #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3153349\n" "help.text" msgid "DB(Cost; Salvage; Life; Period [; Month])" -msgstr "DB(Cost; Salvage; Vida; Període [; Mes])" +msgstr "BD(Cost; Rescat; Vida; Període [; Mes])" #. caSta #: 04060103.xhp @@ -7625,13 +7605,12 @@ #. MXALn #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id3155427\n" "help.text" msgid "IRR(Values [; Guess])" -msgstr "IRR(Valors [; Estimació])" +msgstr "TIR(Valors [; Estimació])" #. o9R77 #: 04060103.xhp @@ -7662,13 +7641,12 @@ #. vtGrD #: 04060103.xhp -#, fuzzy msgctxt "" "04060103.xhp\n" "par_id461513468030965\n" "help.text" msgid "Because of the iterative method used, it is possible for IRR to fail and return Error 523, with \"Error: Calculation does not converge\" in the status bar. In that case, try another value for Guess." -msgstr "A causa del mètode iteratiu utilitzat és possible que IRR falli i retorni l'error 523 amb «El càlcul de l'error no convergeix» a la barra d'estat. En aquest cas proveu un altre valor per a Endevina." +msgstr "A causa del mètode iteratiu utilitzat, és possible que el TIR falli i retorni Error 523 amb \"Error: El càlcul no convergeix\" a la barra d'estat. En aquest cas, proveu un altre valor per l'estimació." #. PxBBB #: 04060103.xhp @@ -8932,13 +8910,12 @@ #. hQbWy #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "par_id31537481\n" "help.text" msgid "IFNA(Value; Alternate_value)" -msgstr "IFNA(Valor; Valoralternatiu)" +msgstr "SI ND(Valor; Valoralternatiu)" #. 6oj7E #: 04060104.xhp @@ -9491,7 +9468,6 @@ #. Vwajg #: 04060104.xhp -#, fuzzy msgctxt "" "04060104.xhp\n" "par_id3147355\n" @@ -10023,13 +9999,12 @@ #. dGzEx #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3149312\n" "help.text" msgid "This category contains the Logical functions." -msgstr "GA Aquesta categoria conté les funcions Lògica." +msgstr "Aquesta categoria conté les funcions Lògiques." #. ADKTB #: 04060105.xhp @@ -10123,13 +10098,12 @@ #. 7ALjG #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3159123\n" "help.text" msgid "AND()" -msgstr "AND()" +msgstr "I()" #. 3exzA #: 04060105.xhp @@ -10377,13 +10351,12 @@ #. rpDNn #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3150468\n" "help.text" msgid "OR()" -msgstr "OR()" +msgstr "O()" #. oFKWj #: 04060105.xhp @@ -10522,13 +10495,12 @@ #. fpCVV #: 04060105.xhp -#, fuzzy msgctxt "" "04060105.xhp\n" "par_id3150469\n" "help.text" msgid "XOR()" -msgstr "XOR()" +msgstr "OEX()" #. qpsgo #: 04060105.xhp @@ -17032,13 +17004,12 @@ #. kCud6 #: 04060107.xhp -#, fuzzy msgctxt "" "04060107.xhp\n" "par_idN11B19\n" "help.text" msgid "At least one array must be part of the argument list. If only one array is given, all array elements are summed. If more than one array is given, they must all be the same size." -msgstr "Almenys una matriu ha de formar part de la llista d'arguments. Si només es dóna una matriu es sumen tots els elements de la matriu. Si es dóna més d'una matriu totes han de ser de la mateixa mida." +msgstr "Almenys una matriu ha de formar part de la llista d'arguments. Si només es dona una matriu se sumen tots els elements de la matriu. Si es dona més d'una matriu, totes han de ser de la mateixa mida." #. DgsMB #: 04060107.xhp @@ -17276,13 +17247,12 @@ #. f8Ftr #: 04060107.xhp -#, fuzzy msgctxt "" "04060107.xhp\n" "par_id3166122\n" "help.text" msgid "TREND(DataY [; DataX [; NewDataX [; LinearType]]])" -msgstr "TREND(DadesY [; DadesX [; DadesNadesX [; TipusLineal)" +msgstr "TENDENCIA(DadesY [; DadesX [; NovesDadesX [; TipusLineal]]])" #. qeK4r #: 04060107.xhp @@ -17358,13 +17328,12 @@ #. GMVAK #: 04060107.xhp -#, fuzzy msgctxt "" "04060107.xhp\n" "par_id3166377\n" "help.text" msgid "GROWTH(DataY [; [ DataX ] [; [ NewDataX ] [; FunctionType ] ] ])" -msgstr "CREIXEMENT(DadesY [; [DadesX ] [; [DadesDadesX ] [; [NouDadesX ] [; TipusDefunció ] ] ]))" +msgstr "CREIXEMENT(DadesY [; [DadesX ] [; [NovesDadesX ] [;; TipusDeFunció ] ] ]))" #. CA3qD #: 04060107.xhp @@ -17630,13 +17599,12 @@ #. TgFFT #: 04060109.xhp -#, fuzzy msgctxt "" "04060109.xhp\n" "par_id3154707\n" "help.text" msgid "ADDRESS(Row; Column [; Abs [; A1 [; \"Sheet\"]]])" -msgstr "ADREÇA(Tau; Columna [; Abs [; A1 [; \"Full\")" +msgstr "ADREÇA(Fila; Columna [; Abs [; A1 [; \"Full\"]]])" #. FyoLc #: 04060109.xhp @@ -18076,13 +18044,12 @@ #. T659Y #: 04060109.xhp -#, fuzzy msgctxt "" "04060109.xhp\n" "par_id3149007\n" "help.text" msgid "INDEX(Reference [; Row [; Column [; Range]]])" -msgstr "INDEX(Referència [; Fila [; Columna [; Interval)" +msgstr "INDEX(Referència [; Fila [; Columna [; Interval]]])" #. Btvgz #: 04060109.xhp @@ -18212,7 +18179,6 @@ #. hDCWQ #: 04060109.xhp -#, fuzzy msgctxt "" "04060109.xhp\n" "par_id3149824\n" @@ -18294,7 +18260,6 @@ #. poCRX #: 04060109.xhp -#, fuzzy msgctxt "" "04060109.xhp\n" "par_id3149447\n" @@ -61660,13 +61625,12 @@ #. kbyFK #: func_networkdays.intl.xhp -#, fuzzy msgctxt "" "func_networkdays.intl.xhp\n" "tit\n" "help.text" msgid "NETWORKDAYS.INTL" -msgstr "NETWORKDAYS.INTL" +msgstr "DIESFEINERSNETS.INTL" #. H92rh #: func_networkdays.intl.xhp @@ -66381,13 +66345,12 @@ #. qKt78 #: solver_options_algo.xhp -#, fuzzy msgctxt "" "solver_options_algo.xhp\n" "par_id360320091039424\n" "help.text" msgid "During crossover, the scaling factor decides about the “speed” of movement." -msgstr "Durant l'encreuament el factor d'escalat decideix sobre la “velocitat” del moviment." +msgstr "Durant el creuament, el factor d'escalat decideix la «velocitat» del moviment." #. HPPHg #: solver_options_algo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/scalc.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/scalc.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/scalc.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-28 12:36+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1551190044.000000\n" @@ -780,7 +780,7 @@ "hd_id3153160\n" "help.text" msgid "Font Color" -msgstr "Color del tipus de lletra" +msgstr "Color de la lletra" #. Skg7A #: main0202.xhp @@ -1086,7 +1086,7 @@ "hd_id3148575\n" "help.text" msgid "Font Color" -msgstr "Color del tipus de lletra" +msgstr "Color de la lletra" #. ZZMCx #: main0205.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-03-10 15:32+0000\n" -"Last-Translator: sophie \n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -6968,7 +6968,7 @@ "par_idN11173\n" "help.text" msgid "Choose File - Properties - General tab, press Digital Signatures button, then click Sign Document button." -msgstr "Trieu Fitxer ▸ Propietats ▸ pestanya General premeu el botó Signatures digitals i feu clic al botó de signar el document." +msgstr "Trieu Fitxer ▸ Propietats ▸ pestanya General premeu el botó Signatures digitals i feu clic al botó de signar el document." #. EpJQ7 #: 00000401.xhp @@ -7330,7 +7330,7 @@ "par_id3155869\n" "help.text" msgid "Choose File - Exit %PRODUCTNAME." -msgstr "Trieu Fitxer - Surt de %PRODUCTNAME ." +msgstr "Trieu Fitxer ▸ Surt del %PRODUCTNAME." #. DjhX3 #: 00000401.xhp @@ -8277,7 +8277,7 @@ "par_id3146957\n" "help.text" msgid "Choose Tools - Gallery or click the Gallery icon on the Standard bar -
New Theme button - Files tab.
" -msgstr " Trieu Eines ▸ Galeria o feu clic a la icona Galeria a la barra Estàndard - botó
Tema nou - Fitxers pestanya." +msgstr " Trieu Eines ▸ Galeria o feu clic a la icona Galeria a la barra Estàndard - botó
Tema nou - Fitxers pestanya.
" #. ZDwHg #: 00000406.xhp @@ -9228,7 +9228,7 @@ "par_id3152494\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Sort Lists." -msgstr "Obre un document de full de càlcul trieu %PRODUCTNAME - Preferències Eines - Opcions - %PRODUCTNAME Calc - Ordena les llistes." +msgstr "Obre un document de full de càlcul trieu %PRODUCTNAME - Preferències Eines - Opcions - %PRODUCTNAME Calc - Ordena les llistes." #. CV4hm #: 00000406.xhp @@ -9264,7 +9264,7 @@ "par_id3154903\n" "help.text" msgid "Open a spreadsheet document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Changes." -msgstr "Obre un document de full de càlcul trieu %PRODUCTNAME - Preferències Eines - Opcions - %PRODUCTNAME Calc - Canvis " +msgstr "Obre un document de full de càlcul trieu %PRODUCTNAME - Preferències Eines - Opcions - %PRODUCTNAME Calc - Canvis " #. dYa3d #: 00000406.xhp @@ -9336,7 +9336,7 @@ "par_id3145613\n" "help.text" msgid "Open a Math document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Math - Settings." -msgstr "Obre un document Math trieu %PRODUCTNAME - Preferències Eines - Opcions - %PRODUCTNAME Math - Arranjament " +msgstr "Obre un document Math trieu %PRODUCTNAME - Preferències Eines - Opcions - %PRODUCTNAME Math - Arranjament " #. JfMtL #: 00000406.xhp @@ -12514,7 +12514,7 @@ "par_id3151293\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Line - Line Styles tab." -msgstr "Trieu Format Text Box i Shape Objecte Línia Estils de línia XYGN pestanya" +msgstr "Trieu Format Text Box i Shape Objecte Línia Estils de línia XYGN pestanya" #. PgQAh #: 00040502.xhp @@ -13014,7 +13014,7 @@ "par_id3152810\n" "help.text" msgid "Choose Format - Text Box and Shape - Text Attributes Object - TextObject and ShapeText - Text tab." -msgstr "Tria Format Text Box i Shape ▸ Atributs de text Objecte Text Objecte i ShapeText- pestanya" +msgstr "Tria Format Text Box i Shape ▸ Atributs de text Objecte Text Objecte i ShapeText- pestanya" #. oZMeq #: 00040502.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,9 +3,9 @@ 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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-10 16:12+0000\n" -"Last-Translator: sophie \n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ "par_id3149182\n" "help.text" msgid "Creates a new $[officename] document. Click the arrow to select the document type." -msgstr "Crea un document nou del $[officename]. Feu clic a la fletxa per seleccionar el tipus de document." +msgstr "Crea un document nou del $[officename]. Feu clic a la fletxa per a seleccionar el tipus de document." #. 6k8EG #: 01010000.xhp @@ -8217,7 +8217,7 @@ "par_id801559576780692\n" "help.text" msgid "To record the matched sub string inside the parentheses as a reference for later use in the Find box using the \"\\n\" construct or in the Replace box using the \"$n\" construct. The reference to the first match is represented by \"\\1\" in the Find box and by \"$1\" in the Replace box. The reference to the second matched sub string by \"\\2\" and \"$2\" respectively, and so on." -msgstr "Per enregistrar la subcadena coincident dins dels parèntesis com a referència per a ús posterior en el quadre Cercautilitzant la construcció «\\n» o en el quadre «$n». La referència a la primera coincidència es representa per «\\1» en el quadre Cerca i per «$1» en el quadre Reemplaça. La referència a la segona subcadena coincident per «\\2» i «$2» respectivament i així successivament." +msgstr "Per enregistrar la subcadena coincident dins dels parèntesis com a referència per a ús posterior en el quadre Cerca utilitzant la construcció «\\n» o en el quadre «$n». La referència a la primera coincidència es representa per «\\1» en el quadre Cerca i per «$1» en el quadre Reemplaça . La referència a la segona subcadena coincident per «\\2» i «$2» respectivament i així successivament." #. ekwoG #: 02100001.xhp @@ -15687,33 +15687,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "GA Majúscules petites - canvia els caràcters en minúscula seleccionats a caràcters en majúscules i després redueix la seva mida." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "tipus de lletra amb parpelleigtipus de lletra amb flaix" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Parpelleig" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Fa que els caràcters seleccionats parpellegin. No podeu canviar la freqüència del parpelleig." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/05.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/05.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1554,7 +1554,7 @@ "par_id871534889171418\n" "help.text" msgid "Use the Back and Forward buttons of the browser to navigate between pages. In most browsers, a long click on the Back button displays a dropdown list of previously visited pages and a long click on the Forward button display a list of visited pages after the current one." -msgstr "Utilitzeu els botons Enrere i Endavant del navegador per a navegar entre pàgines. En la majoria dels navegadors un clic llarg sobre el botó Enrere mostra una llista desplegable de pàgines visitades anteriorment i un clic llarg sobre el botó Endavant mostra una llista de pàgines visitades després de l'actual." +msgstr "Utilitzeu els botons Enrere i Endavant del navegador per a navegar entre les pàgines. A la majoria dels navegadors, un clic prolongat sobre el botó Enrere mostra una llista desplegable de pàgines visitades anteriorment i un clic prolongat sobre el botó Endavant mostra una llista de pàgines visitades després de l'actual." #. X4Vow #: new_help.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-02-25 18:36+0000\n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1560151444.000000\n" @@ -3064,7 +3064,7 @@ "tit\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. EGT4M #: 01010700.xhp @@ -3334,7 +3334,7 @@ "par_id3145750\n" "help.text" msgid "Applies the selected font replacement." -msgstr "Aplica el tipus de lletra de reemplaçament seleccionat." +msgstr "Aplica la lletra tipogràfica de reemplaçament seleccionada." #. HDuHF #: 01010700.xhp @@ -3370,7 +3370,7 @@ "par_id3148576\n" "help.text" msgid "Deletes the selected font replacement." -msgstr "Suprimeix el tipus de lletra de reemplaçament seleccionat." +msgstr "Suprimeix la lletra tipogràfica de reemplaçament seleccionada." #. QN5Ap #: 01010700.xhp @@ -3415,7 +3415,7 @@ "hd_id3153838\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. gmLAB #: 01010700.xhp @@ -3932,7 +3932,7 @@ "hd_id310720161619163588\n" "help.text" msgid "Font Lists" -msgstr "Llistes de tipus de lletra" +msgstr "Llistes de lletres tipogràfiques" #. cC64w #: 01010800.xhp @@ -5670,7 +5670,7 @@ "par_id3147304\n" "help.text" msgid "Specifies the settings for the basic Asian fonts if Asian language support has been activated under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Especifica els paràmetres per als tipus de lletra bàsics asiàtics si s'ha activat la compatibilitat amb llengües asiàtiques a %PRODUCTNAME - PreferènciesEines - Opcions - Configuració de la llengua - Llengües." +msgstr "Especifica els paràmetres per a les lletres tipogràfiques bàsiques asiàtiques si s'ha activat la compatibilitat amb les llengües asiàtiques a %PRODUCTNAME ▸ PreferènciesEines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües." #. QqGZX #: 01040000.xhp @@ -5679,7 +5679,7 @@ "hd_id3149294\n" "help.text" msgid "Basic Fonts (CTL)" -msgstr "Tipus de lletra bàsics (CTL)" +msgstr "Lletres tipogràfiques bàsiques (CTL)" #. RSYFa #: 01040000.xhp @@ -6165,7 +6165,7 @@ "par_id3159149\n" "help.text" msgid "Specifies the font to be used for headings." -msgstr "Permet especificar el tipus de lletra que s'ha d'utilitzar per als encapçalaments." +msgstr "Permet especificar la lletra tipogràfica que s'ha d'utilitzar per als encapçalaments." #. yXAjG #: 01040300.xhp @@ -6210,7 +6210,7 @@ "par_id3150010\n" "help.text" msgid "Specifies the font used for the captions of images and tables." -msgstr "Permet especificar el tipus de lletra utilitzat per a les lleguendes de les imatges i les taules." +msgstr "Permet especificar la lletra tipogràfica utilitzada per a les llegendes de les imatges i les taules." #. VCMPs #: 01040300.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/simpress.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/simpress.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/simpress.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/simpress.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-17 13:37+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1557994503.000000\n" @@ -627,7 +627,7 @@ "hd_id3151391\n" "help.text" msgid "Font Color" -msgstr "Color del tipus de lletra" +msgstr "Color de la lletra" #. DJqGs #: main0203.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-17 13:36+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1550235258.000000\n" @@ -12141,7 +12141,7 @@ "tit\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. UCsvD #: 05010000.xhp @@ -12159,7 +12159,7 @@ "hd_id3156261\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. vAQoJ #: 05010000.xhp @@ -12177,7 +12177,7 @@ "hd_id3154639\n" "help.text" msgid "Formula Fonts" -msgstr "Tipus de lletra de les fórmules" +msgstr "Lletres tipogràfiques de les fórmules" #. nYEUW #: 05010000.xhp @@ -12402,7 +12402,7 @@ "tit\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. 69eAL #: 05010100.xhp @@ -12411,7 +12411,7 @@ "hd_id3153188\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. UqMP9 #: 05010100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/smath.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/smath.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/smath.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/smath.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:43+0100\n" -"PO-Revision-Date: 2020-12-10 16:36+0000\n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Catalan \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1542887607.000000\n" @@ -222,7 +222,7 @@ "hd_id3156385\n" "help.text" msgid "Fonts" -msgstr "Tipus de lletra" +msgstr "Lletres tipogràfiques" #. ijKA9 #: main0105.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-02-24 12:50+0000\n" -"Last-Translator: sophie \n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1564507881.000000\n" @@ -10729,7 +10729,7 @@ "hd_id3146880\n" "help.text" msgid "To Specify the Starting Line Number" -msgstr "Per especificar el número de línia inicial" +msgstr "Per a especificar el número de línia inicial" #. 2DP2S #: numbering_lines.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/ca/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-02-18 20:36+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1557994516.000000\n" @@ -2152,7 +2152,7 @@ "hd_id3149593\n" "help.text" msgid "Font Color" -msgstr "Color del tipus de lletra" +msgstr "Color de la lletra" #. 9sJ5w #: main0202.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-10 07:36+0000\n" -"Last-Translator: Adolfo Jayme Barrientos \n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" +"Last-Translator: Joan Montané \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -37696,7 +37696,7 @@ "UIName\n" "value.text" msgid "Logo" -msgstr "Logotip" +msgstr "Logo" #. 6D7D3 #: WriterWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/svx/messages.po libreoffice-7.1.3~rc2/translations/source/ca/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/ca/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-22 17:36+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -18466,7 +18466,7 @@ #: svx/uiconfig/ui/redlineviewpage.ui:225 msgctxt "redlineviewpage|comment" msgid "Comment" -msgstr "Comentaris" +msgstr "Comentari" #. nUz2M #: svx/uiconfig/ui/redlineviewpage.ui:144 diff -Nru libreoffice-7.1.2~rc2/translations/source/ca/sw/messages.po libreoffice-7.1.3~rc2/translations/source/ca/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/ca/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-14 14:36+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562916102.000000\n" #. v3oJv @@ -4244,7 +4244,7 @@ #: sw/inc/strings.hrc:387 msgctxt "STR_CONTENT_TYPE_SINGLE_POSTIT" msgid "Comment" -msgstr "Comentaris" +msgstr "Comentari" #. W3sED #: sw/inc/strings.hrc:388 @@ -5840,19 +5840,19 @@ #: sw/inc/strings.hrc:662 msgctxt "STR_HIDDEN" msgid "hidden" -msgstr "ocult" +msgstr "amagada" #. 3VWjq #: sw/inc/strings.hrc:663 msgctxt "STR_ACTIVE" msgid "active" -msgstr "actiu" +msgstr "activa" #. YjPvg #: sw/inc/strings.hrc:664 msgctxt "STR_INACTIVE" msgid "inactive" -msgstr "inactiu" +msgstr "inactiva" #. tBPKU #: sw/inc/strings.hrc:665 @@ -9716,7 +9716,7 @@ #: sw/inc/utlui.hrc:42 sw/inc/utlui.hrc:44 msgctxt "RID_SHELLRES_AUTOFMTSTRS" msgid "Set \"Text body indent\" Style" -msgstr "Estableix l'estil «Sagnat del cos de text»" +msgstr "Defineix l'estil «Sagnat del cos de text»" #. UUEwQ #: sw/inc/utlui.hrc:43 diff -Nru libreoffice-7.1.2~rc2/translations/source/ca-valencia/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ca-valencia/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ca-valencia/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca-valencia/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Catalan \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME admet quatre nivells de seguretat de macro (de baix a molt alt) i de fonts de confiança." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 té la intenció de presentar una sol·licitud com a organització per a Google Summer of Code (GSoC) consulteu:" - -#. SNTbc -#: 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 "Sabíeu que podeu adjuntar comentaris a fragments de text? Utilitzeu la drecera %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Heu de moure un o més paràgrafs? No cal que retalleu i enganxeu: feu servir la drecera de teclat %MOD1+%MOD2+Fletxa (Amunt/Avall)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Canvieu els tipus de lletra bàsics de la plantilla predefinida o el document actual amb Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Tipus de lletra bàsics." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Voleu trobar paraules que tinguen més de 10 caràcters? Edita ▸ Cerca i reemplaça ▸ Cerca ▸ [a-z]{10,} ▸ Altres opcions ▸ marqueu Expressions regulars." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Obriu un fitxer CSV com a full nou al full de càlcul actual mitjançant Full ▸ Insereix full des del fitxer." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "En escriure en negreta, cursiva o subratlla al Writer, podeu seguir amb els atributs predeterminats simplement fent ús de la drecera %MOD1+Maj+X (elimina el format directe de caràcter)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Useu %MOD1+%MOD2+Maj+V per a enganxar el contingut del porta-retalls com a text sense format." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalitzeu l'aparença de les notes al peu en Eines ▸ Notes al peu i notes finals…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Amb «Presentació de diapositives» ▸ «Presentació de diapositives personalitzada», reordeneu i escolliu les diapositives per a crear una presentació ajustada a les necessitats dels vostres espectadors." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Voleu canviar la revisió ortogràfica d'una part del text? Feu clic a la zona d'idioma de la barra d'estat o, millor encara, feu servir un estil." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "El Writer pot inserir una pàgina en blanc entre dues pàgines senars (parelles) seguides. Marqueu «Imprimeix les pàgines en blanc que s'han inserit automàticament» en la pestanya %PRODUCTNAME Writer del diàleg d'impressió." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "No voleu imprimir totes les columnes? Amagueu o agrupeu les que no necessiteu." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Per a modificar una presentació de reproducció automàtica, obriu-la i, després que inicie, feu-hi clic dret; seleccioneu Edita en el menú contextual." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Vos cal una posició precisa? Feu servir %MOD2+fletxes de direcció per a moure un píxel els objectes (formes, imatges, fórmules)." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "L'ajuda incrustada és disponible pitjant F1, si l'heu instal·lat. Altrament, podeu consultar-la a:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Feu clic dret a la barra d'estat del %PRODUCTNAME Calc i seleccioneu «Recompte de la selecció» per a mostrar el nombre de cel·les seleccionades." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Voleu tindre dues o més columnes per a una part d'una pàgina del %PRODUCTNAME Writer? Insereix ▸ Secció, pestanya Columnes i col·loqueu el text en aquesta secció." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Utilitzeu Dades ▸ Mostratge, estadístiques descriptives, anàlisi de variància, correlació i molt més a %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Podeu copiar d'un full a un altre sense el porta-retalls. Seleccioneu l'àrea que voleu copiar, feu %MOD1+clic en la pestanya de destinació i useu Full ▸ Insereix cel·les ▸ Insereix fulls." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Podeu canviar l'aspecte del %PRODUCTNAME via Eines ▸ Opcions ▸ Visualitza ▸ Interfície d'usuari." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Al %PRODUCTNAME Impress, utilitzeu Insereix ▸ Multimèdia ▸ Àlbum de fotos per a crear una presentació de diapositives a partir d'una sèrie de fotos amb la funció «Àlbum de fotos»." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Podeu mostrar fórmules en comptes dels resultats amb Visualitza ▸ Mostra la fórmula (o Eines ▸ Opcions ▸ %PRODUCTNAME Calc ▸ Visualitza ▸ Mostra ▸ Fórmules)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "El %PRODUCTNAME és desenvolupat per una comunitat amigable, formada per centenars de col·laboradors de tot el món. Uniu-vos a nosaltres amb les vostres habilitats, més enllà de la programació." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Escriviu amb l'esquerra? Habiliteu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Asiàtic i marqueu Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Mostra ▸ Regla ▸ Alineada a la dreta, i la barra de desplaçament es mostrarà a l'esquerra." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Voleu que els títols dels capítols isquen sempre a dalt de la pàgina? Editeu Encapçalament1 (estil de paràgraf) ▸ Flux del text ▸ Salts i marqueu Insereix ▸ Pàgina ▸ Abans." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "El valor Data/hora és només un nombre de dies d'un dia zero escollit; al número, la part entera representa la data, i la part fraccional és l'hora (la part d'un dia transcorreguda), i el 0,5 representa el migdia." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Maj+%MOD1+Supr suprimeix des del cursor fins al final de la frase actual." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Utilitzeu les etiquetes de la columna o de la fila a les fórmules. Per exemple, si teniu dues columnes, «Temps» i «KM», utilitzeu =Temps/KM per a obtindre els minuts per quilòmetre." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Molest amb les «marxes de formigues» al volant de les cel·les del Calc? Premeu Esc per a aturar-les, el contingut romandrà disponible per a enganxar-lo." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Voleu ser un Ambaixador del %PRODUCTNAME? Hi ha certificacions per a desenvolupadors, administradors i formadors." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Barregeu orientacions horitzontals i verticals en un full de càlcul de Calc aplicant diferents estils de pàgina als fulls." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Feu clic a la icona de caràcter especial de la barra d'eines per a obtindre un accés ràpid als caràcters preferits i recents que vulgueu inserir." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Trieu «Jeràrquic» a la barra lateral d'Estils per a veure la relació entre els estils." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Podeu usar els estils per a fer les taules del documents consistents. Trieu-ne un dels predefinits amb Estils (F11) o via Taula ▸ Format automàtic." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Voleu configurar l'ús de la tecla %MOD1 per a obrir els enllaços? Eines ▸ Opcions %PRODUCTNAME ▸ Seguretat ▸ Opcions ▸ «Requereix %MOD1+clic per a seguir els enllaços»." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Si voleu veure el càlcul dels elements individuals d'una fórmula, seleccioneu els elements respectius i premeu F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Podeu protegir les cel·les amb Format ▸ Cel·les ▸ Protecció de cel·les. Per a evitar inserir, suprimir, canviar el nom, moure/copiar fulls, utilitzeu Eines ▸ Protegeix el full." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Voleu escriure al llarg d'una corba? Dibuixeu la línia, feu-hi doble clic, escriviu el text i trieu Format ▸ Quadre de text i forma ▸ Fontwork" #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Voleu mostrar només els valors més alts en un full de càlcul? Seleccioneu el menú Dades ▸ Filtre automàtic, feu clic a la fletxa desplegable i trieu \"10primers\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Per a suprimir el número de pàgina de la taula de continguts, aneu a Insereix ▸ Taula de continguts (o feu clic amb el botó dret i editeu l'índex inserit anteriorment). A la pestanya Entrades suprimiu el número de pàgina (#) de la línia Estructura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Amb el Navigator podeu seleccionar i moure amunt/avall capçaleres i el text de sota la capçalera, tant al Navigator i com al document." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Per a obtindre ràpidament un objecte matemàtic a Writer, escriviu la fórmula, seleccioneu-la i utilitzeu Insereix ▸ Objecte ▸ Fórmula per a convertir el text." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Amb el %PRODUCTNAME és molt fàcil instal·lar un diccionari nou: es proporcionen com a extensions." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "El %PRODUCTNAME té una versió portàtil que vos dona mobilitat. Fins i tot sense tindre drets d'administrador al vostre ordinador, podeu instal·lar el %PRODUCTNAME portàtil al disc dur igualment." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "El Writer vos permet numerar les notes al peu per pàgina, capítol, document: Eines ▸ Notes al peu i al final ▸ pestanya Notes al peu ▸ Recompte." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "El document de Writer no es reobre amb el cursor de text en la mateixa posició on era quan el vau guardar? Afegiu el nom o cognom a Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Dades d'usuari ▸ Nom/Cognoms." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Gestió de citacions? Utilitzeu una extensió de tercers." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Voleu inserir un valor al mateix lloc en diversos fulls? Seleccioneu els fulls: manteniu premuda la tecla %MOD1 i feu clic a les pestanyes dels fulls abans d'entrar-hi." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Voleu amagar algun text d'un document? Seleccioneu el text. Insereix ▸ Secció, i seleccioneu \"Amaga\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Podeu personalitzar el botó central del ratolí amb Eines ▸ Opcions ▸ %PRODUCTNAME ▸ Visualitza ▸ Botó central del ratolí." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Voleu imprimir dues pàgines en vertical en una pàgina en horitzontal (reducció d'A4 a A5)? Fitxer ▸ Imprimeix i seleccioneu 2 a «Pàgines per full»." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Per a accedir ràpidament als marcadors del vostre document, feu clic dret al número de pàgina a la barra d'estat (a la cantonada inferior esquerra de la finestra del document)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Seleccioneu un objecte en el fons del document amb l'eina Selecciona en la barra d'eines Dibuix." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definiu com a text automàtic els textos que useu amb freqüència. Els podreu inserir pel seu nom, drecera o barra d'eines en qualsevol document del Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Reproduïu música durant una presentació assignant el so a la primera transició de diapositives sense fer clic al botó «Aplicar a totes les diapositives»." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "El %PRODUCTNAME Calc no calcula d'esquerra a dreta però respecta l'ordre: parèntesis, exponents, multiplicacions, divisions, sumes i restes." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Obteniu la documentació del %PRODUCTNAME i guies d'ús gratuïtes a:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Voleu suprimir tots els <> a la vegada i mantindre el text interior? Edita ▸ Cerca i reemplaça: Cerca = [<>], Reemplaça = en blanc i marqueu «Expressions regulars» a Altres opcions." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Vos cal presentar un informe escrit amb el Writer? Trieu Fitxer ▸ Envia ▸ Esquema a presentació; això crea una diapositiva a partir de l'esquema de forma automàtica." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Voleu gestionar la presentació dels enllaços en un full de càlcul? Inseriu-los amb la funció ENLLAÇ" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Desmarqueu Eines ▸ Opcions ▸ %PRODUCTNAME Calc ▸ Visualitza ▸ Escala: «Sincronitza fulls» perquè cada full del Calc tinga el seu propi factor d'escala." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Podeu definir un color per a cada pestanya: feu clic amb botó dret en la pestanya o Full ▸ Color de la pestanya del full." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Rastregeu de les cel·les usades en una fórmula, precedents (Maj+F9) o dependents (Maj+F5) (o useu Eines ▸ Detectiu. Amb cada pressió de tecla avanceu un pas en la cadena." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Inseriu i numereu les fórmules en un únic pas: premeu Fn i després F3. S'insereix un text automàtic amb una fórmula i un número alineats en una taula." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Podeu crear un índex d'il·lustracions a partir dels noms d'objectes, no només a partir de les llegendes." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Useu l'Android o l'iPhone per a controlar remotament la presentació Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Voleu saber quants dies té el mes actual? Useu la funció DIESENMES(AVUI())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Els dígits apareixen com a «###» al full de càlcul? La columna és massa estreta per als dígits." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Activeu càlculs paral·lels massius de cel·les de fórmula via Eines ▸ Opcions ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Useu l'eina del Connector des de la barra d'eines de dibuix en el Draw o l'Impress per a crear diagrames de flux agradables i, opcionalment, copiar i enganxar objectes en el Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Les vostres donacions ajuden a la nostra comunitat mundial." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Voleu afegir x mesos a una data? Useu =DATAE(data;mesos)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Per a seleccionar un interval de cel·les continu que continguen dades i delimitat per files i columnes buides useu %MOD1+* (en el teclat numèric)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "El patró de data no és adient? Useu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Patrons d'acceptació de dates per a ajustar el patró." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Voleu exportar fórmules a CSV? Fitxer ▸ Anomena i guarda ▸ Tipus de fitxer:Text CSV" #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La consola de presentació és una gran eina per a treballar amb el %PRODUCTNAME Impress. Ja l'heu provada?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Per a suprimir diversos comentaris, seleccioneu les cel·les amb comentaris i utilitzeu Full ▸ Comentaris de cel·la ▸ Suprimeix el comentari." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Convertiu fàcilment els documents a PDF fent un sol clic a la icona del PDF de la barra d'eines." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Voleu seleccionar un interval de cel·les gran sense fer cap desplaçament? Escriviu la referència de l'interval (p. ex. A1:A1000) a la casella del nom i, a continuació, Retorn." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Voleu saber els paràmetres de línia d'ordres vàlids? Executeu soffice amb --help, -h o -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Ajusteu el full o els intervals d'impressió a una pàgina amb Format ▸ Pàgina ▸ Full ▸ Mode d'escala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Necessiteu un element sense numerar en una llista? Useu «Insereix una entrada no numerada» en la barra d'eines de pics i numeració." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Podeu girar l'orientació de la taula de cel·les amb Taula ▸ Propietats… ▸ Flux del text ▸ Orientació del text." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "En el %PRODUCTNAME Draw, per a canviar el punt 0/0 dels regles, arrossegueu la intersecció dels dos regles en la cantonada superior esquerra de l'espai de treball." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Voleu moure una columna del Calc entre altres dues columnes en un pas? Feu clic a la capçalera i després en una cel·la de la columna, manteniu el botó del ratolí i mogueu a l'objectiu amb la tecla %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Podeu marcar automàticament les entrades alfabètiques de l'índex fent servir un fitxer de concordança." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Useu Formatació ▸ Alinea (o el menú contextual) per a posicionar amb precissió els objectes en el Draw o Impress: centra la pàgina si un objecte, o grup d'objecte, està seleccionat." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "No feu servir tabuladors per a separar elements en un document del Writer. Segons el que vulgueu fer, una taula sense vores pot ser una opció més pràctica." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "No cal que vos desplaceu per la llista a Eines ▸ Personalitza ▸ Teclat per a trobar una drecera: només cal que l'escriviu." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "El %PRODUCTNAME pot afegir automàticament una llegenda numerada si inseriu objectes. Vegeu Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Llegenda automàtica." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Amb el %PRODUCTNAME podeu usar el vostre compte de Google Mail per a fer combinació de correu. Ompliu Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Adreça electrònica per a la combinació de correu." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Manteniu les capçaleres de columnes d'un full visibles en desplaçar línies via Visualitza ▸ Congela les cel·les ▸ Congela la primera fila." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Voleu començar a treballar amb macros Basic? Feu una ullada als exemples de Eines ▸ Macros ▸ Edita les macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Apliqueu estils de paràgraf d'encapçalament al Writer amb les tecles de drecera: %MOD1+1 aplica Encapçalament 1, %MOD1+2 aplica Encapçalament 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "No vos perdeu en documents grans. Feu servir el Navegador (F5) per a orientar-vos en el document." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Edita ▸ Cerca i reemplaça vos permet inserir directament caràcters especials: feu clic dret en els camps d'entrada o premeu Maj+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Necessiteu continguts personalitzats per a les propietats de les metadades? La pestanya Fitxer ▸ Propietats ▸ Propietats personalitzades vos permet crear el que voleu." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Voleu veure, però no imprimir, un objecte al Draw? Dibuixeu-lo en una capa que tinga l'opció «Imprimible» desactivada (feu clic dret en la pestanya i «Modifica la capa»)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Per a inserir la data actual en el document, useu Insereix ▸ Camp ▸ Data." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Teniu moltes imatges en el document Writer? Accelereu-ne la visualització desactivant Visualitza ▸ Imatges i diagrames." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Utilitzeu Full ▸ Ompli les cel·les ▸ Nombre aleatori per a generar una sèrie aleatòria basada en diverses distribucions." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Canvieu el nom de les diapositives a Impress per a definir millor les interaccions «Vés a la pàgina» i tindre un resum més explícit que Dispositiva1, Diapositiva2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "El diàleg de numeració de capítols vos permet definir el text que s'ha de mostrar a davant del número del capítol. Per exemple, escriviu «Capítol» perquè es mostre «Capítol 1»" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Voleu transposar una taula de Writer? Copieu i enganxeu-la al Calc, transposeu-la amb el copia i enganxa especial i després copia i enganxa especial ▸ Text formatat en el Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Per a obtindre la barra d'eines «Text vertical» en la barra de dibuix, marqueu Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Llengües predeterminades per als documents ▸ Asiàtic, i feu el botó visible fent-hi clic dret." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Per a fer zoom ràpidament en l'interval de selecció, feu clic dret en l'apartat Escala de la barra d'estat i trieu Òptima." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Podeu signar els fitxers PDF existents i també verificar-ne les signatures." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Sovint creeu documents a partir d'un altre? Considereu la possibilitat de fer servir una plantilla." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Useu Format ▸ Condicionada ▸ Gestiona en el Calc per a trobar quines cel·les tenen formatació condicionada." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Eines ▸ Detectiu ▸ Marca les dades no vàlides, marca totes les cel·les del full que contenen valors que no compleixen les regles de validació. " #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Utilitzeu la inserció de tipus de lletra per a una major interoperabilitat amb altres suites d'oficina a Fitxer ▸ Propietats ▸ Tipus de lletra." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Per a convertir una fórmula en valors estàtics no cal copiar i enganxar; utilitzeu Dades ▸ Calcula ▸ Fórmula a valor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Podeu tornar a formatar tots els comentaris d'un document fent clic a la fletxa avall en un comentari i triant «Formata tots els comentaris»." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Voleu la mateixa disposició per a la pantalla i la impressió? Marqueu Eines ▸ Opcions ▸ %PRODUCTNAME Calc ▸ General ▸ Utilitza la mètrica de la impressora per a la formatació del text." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "El Writer vos ajuda a fer còpies de seguretat: amb «Fitxer ▸ Guarda una còpia» es crea un document nou i seguiu treballant en l'original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Si heu creat un estil basat en un altre estil, podeu introduir un valor en percentatge o valor diferencial (p. ex. 110 %, -2 pt o +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Per a copiar un comentari sense perdre el contingut de la cel·la objectiu hauríeu d'usar «Enganxament especial» i desmarqueu-ho tot excepte «Comentaris» en el diàleg. Utilitzeu les operacions «Afig» per a no substituir el contingut existent." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Convertiu de forma massiva els vostres documents del MS Office al format OpenDocument amb l'auxiliar de conversió de documents en el menú Fitxer ▸ Auxiliars ▸ Convertidor de documents." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "En editar una cel·la en la seua posició, podeu fer clic dret i inserir camps: data, noms del full, títol del document, etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Necessiteu moure una taula del Writer? «Taula ▸ Selecciona ▸ Taula» i «Insereix ▸ Marc ▸ Marc» i moveu-lo on vulgueu." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Amb Eines ▸ Text automàtic ▸ Text automàtic ▸ Importa podeu seleccionar un document o una plantilla del Word que continga les entrades de Text automàtic que vulgueu importar." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "No inseriu salts de línia manuals per a separar dos paràgrafs. En comptes d'això, canvieu «Sagnats i espaiat ▸ Espaiat ▸ Sota el paràgraf» a les propietats de l'estil o paràgraf." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Conserveu els zeros abans d'un número usant l'opció de format de cel·la «zeros inicials» o formateu la cel·la com a text abans d'introduir-hi el número." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Voleu tornar a l'estil predeterminat després d'aplicar un estil de llista? Feu clic en el botó de llistes de pics o numeració de la barra d'eines de formatació." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Suprimiu totes les àrees d'impressió en un únic pas: seleccioneu tots els fulls, i després Format ▸ Àrees d'impressió ▸ Neteja." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Afegiu imatges de fons en els fulls de càlcul via «Insereix ▸ Imatge» o arrossegueu un fons a la galeria, després «Format ▸ Organitza ▸ Al fons»." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Teniu problemes enganxant text als documents des de fitxers PDF o pàgines web? Proveu d'enganxar com a text sense format (%MOD1+%MOD2+Maj+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "En el Calc, utilitzeu MITJTRUNC() per a obtindre la mitjana del conjunt de dades excloent-ne els valors més alt i més baix." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "El quart paràmetre opcional de la funció CONSULTAV del Calc indica si la primera columna de les dades és ordenada. Si no ho és, introduïu FALS o zero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Les barres d'eines són contextuals. S'obren depenent del context. Si no voleu això, desmarqueu-les en Visualitza ▸ Barres d'eines." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Voleu crear un document mestre a partir del document Writer actual? Fitxer ▸ Envia ▸ Crea un document mestre (els subdocuments es creen depenent de l'esquema)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Voleu centrar cel·les en una pàgina impresa del Calc? Format ▸ Pàgina, Pàgina, Pàgina ▸ Paràmetres de format ▸ Alineació de la taula." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Els marcs es poden vincular perquè el text fluïsca d'un a l'altre com en els programes de maquetació." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Creeu un diagrama basat en una taula de Writer fent clic en la taula i triant Insereix ▸ Diagrama." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Seleccioneu opcions a «Eines ▸ Opcions ▸ %PRODUCTNAME Writer ▸ Ajudes a la formatació ▸ Visualització de» per a indicar quins caràcters no imprimibles voleu que es mostren." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Voleu saltar a una pàgina particular pel seu número? Feu clic a l'entrada de més a l'esquerra de la barra d'estat, useu «Edita ▸ Vés a la pàgina...» o premeu %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "El %PRODUCTNAME admet més de 150 llengües." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Desmarqueu Presentació de diapositives ▸ Paràmetres ▸ Presentació sempre en primer pla si necessiteu que un altre programa mostre la seua finestra al davant de la presentació." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Voleu trobar les paraules en negreta d'un document de Writer? Edita ▸ Cerca i reemplaça ▸ Altres opcions ▸ Atributs ▸ Pes de la lletra." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Podeu ordenar paràgrafs o files de taula de forma alfabètica o numèrica Eines ▸ Ordena." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Per a inserir un paràgraf abans (després) d'una secció, premeu %MOD2+Retorn al començament (final) de la secció." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "El %PRODUCTNAME té un centre de plantilles per a crear documents amb bona presentació. Proveu-lo." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calculeu els pagaments de préstecs amb el Calc: p. ex. PMT(2%/12;36;2500) taxa d'interés per període de pagament 2%/12, 36 mesos, import del préstec 2500 unitats monetàries." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "No trobeu el què voleu amb la funció CONSULTAV del Calc? Amb CONSULTAV i COINCIDEIX ho podeu fer tot!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Voleu mostrar la columna oculta A? Feu clic en una cel·la de la columna B, premeu el botó esquerre del ratolí, moveu el ratolí a l'esquerra, deixeu anar el botó. Després, feu-la visible via Format ▸ Columnes ▸ Mostra." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Per a canviar el número d'una pàgina al Writer, aneu a les propietats del primer paràgraf i, en la pestanya «Flux de text» marqueu Salts ▸ Insereix i introduïu el número." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Executeu el %PRODUCTNAME en qualsevol navegador web mitjançant el rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Obteniu un error estrany en el Calc, Err: seguit d'un número? Aquesta pàgina vos dóna l'explicació:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Incloeu un paràgraf que no siga un títol en la taula de continguts canviant Esquema i numeració en la configuració del paràgraf a un nivell d'esquema." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "A més a més de la taula de continguts, el %PRODUCTNAME pot crear índexs alfabètics, d'il·lustracions, de taules, d'objectes, bibliogràfics i definits per l'usuari." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "No podeu modificar o suprimir un estil de cel·la personalitzat? Comproveu tots els fulls, no n'hauria d'estar protegit cap." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Voleu saber si es fa referència a una cel·la en fórmules d'altres cel·les? Eines ▸ Detectiu ▸ Rastreja les dependències (Maj+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "En el camp de reemplaçament de les opcions de correcció automàtica podeu usar comodins .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Voleu duplicar la línia de dalt? Premeu %MOD1+D o utilitzeu Full ▸ Ompli les cel·les ▸ Avall." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Per a cercar en diversos fulls de càlcul, seleccioneu-los abans d'iniciar la cerca." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Arrossegar i deixar anar cel·les del Calc en una visualització normal d'una diapositiva crea una taula. En la visualització d'esquema crea una línia en l'esquema." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME vos ajuda a no introduir dos o més espais al Writer. Seleccioneu Eines ▸ Correcció automàtica ▸ Opcions de correcció automàtica ▸ Opcions ▸ Ignora els espais dobles." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Voleu que el cursor vagi a la cel·la de la dreta després d'introduir un valor al Calc? Utilitzeu la tecla Tab en comptes de l'Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Per a mostrar la barra de desplaçament a l'esquerra, activeu «Eines ▸ Opcions ▸ Configuració de la llengua ▸ Llengües ▸ Text complex» i marqueu «Full ▸ De dreta a esquerra»" #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arrossegueu un objecte formatat a la finestra Estils i Formatació. S'obri un diàleg, simplement introduïu el nom del nou estil." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Les noves versions del %PRODUCTNAME proporciona noves funcionalitats, correccions d'errors i pedaços de seguretat. Mantingueu el programari actualitzat!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Voleu desenvolupar filtres XSLT i XML nous?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Ajuda del %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Més informació" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Ord" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opc" diff -Nru libreoffice-7.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ca-valencia/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-10-30 22:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Catalan \n" @@ -15380,33 +15380,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "tipus de lletra amb parpelleigtipus de lletra amb flaix" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Parpelleig" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Fa que els caràcters seleccionats parpellegen. No podeu canviar la freqüència del parpelleig." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ckb/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ckb/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ckb/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ckb/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-08-17 07:35+0000\n" "Last-Translator: jwtiyar ali nariman \n" "Language-Team: Central Kurdish \n" @@ -2435,1071 +2435,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "یارمەتی %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "زانیاری زیاتر" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "‫⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "‫Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "‫Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "‫⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/cs/cui/messages.po libreoffice-7.1.3~rc2/translations/source/cs/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/cs/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cs/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-02-10 11:46+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565905500.000000\n" #. GyY9M @@ -1737,7 +1737,7 @@ #: cui/inc/strings.hrc:331 msgctxt "RID_SVXSTR_CORRECT_ACCIDENTAL_CAPS_LOCK" msgid "Correct accidental use of cAPS LOCK key" -msgstr "Opravit náhodné použití cAPS LOCK klávesy" +msgstr "Opravit náhodné použití klávesy cAPS LOCK" #. GZqG9 #: cui/inc/strings.hrc:332 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME podporuje čtyři úrovně zabezpečení maker (od nízké po velmi vysokou) a důvěryhodné zdroje." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 se účastní Google Summer of Code (GSOC), viz:" - -#. SNTbc -#: 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 "Víte, že k částem textu můžete připojovat komentáře? Jednoduše k tomu použijte klávesovou zkratku %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Potřebujete přesunout jeden nebo více odstavců? Nemusíte je vyjímat a vkládat, místo toho použijte klávesovou zkratku %MOD1+%MOD2+šipka (nahoru/dolů)." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Základní písma pro přednastavené šablony nebo pro aktuální dokument změníte pomocí Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Základní písma." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Přejete si najít slova s více než 10 znaky? Úpravy ▸ Najít a nahradit ▸ Najít ▸ [a-z]{10,} ▸ Ostatní možnosti ▸ zaškrtnout Regulární výrazy." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Otevírejte soubory CSV jako nový list aktuálního sešitu pomocí List ▸ Vložit list ze souboru." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Píšete-li ve Writeru tučně, kurzívou nebo podtrženým písmem, můžete se přepnout do výchozího nastavení pouhou klávesovou zkratkou %MOD1+Shift+X (odstraní přímé formátování znaků)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Pokud chcete vložit obsah schránky jako neformátovaný text, použijte klávesy %MOD1+%MOD2+Shift+V." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Vzhled poznámek pod čarou přizpůsobíte pomocí Nástroje ▸ Poznámky pod čarou a vysvětlivky." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Pomocí Prezentace ▸ Vlastní prezentace lze změnit pořadí a výběr snímků tak, aby prezentace odpovídala potřebám vašeho publika." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Přejete si změnit pro část textu kontrolu pravopisu? Klikněte na oblast s jazykem ve stavovém řádku nebo, což je lepší, použijte příslušný styl." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer může vkládat prázdnou stránku mezi dvě po sobě následující liché (sudé) stránky. Zaškrtněte „Tisknout automaticky vložené prázdné stránky“ na kartě Writer v dialogovém okně tisku." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Nechcete tisknout všechny sloupce? Skryjte nebo seskupte ty, které nepotřebujete." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Chcete-li upravit automaticky spouštěnou prezentaci, otevřete ji, a jakmile se spustí, klikněte pravým tlačítkem a z místní nabídky vyberte Upravit." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Potřebujete přesně umístit objekt? Klávesy %MOD2+šipka posunou objekty (tvar, obrázek, vzorec) o jeden pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Vestavěnou nápovědu – je-li nainstalovaná – spustíte stisknutím F1. Můžete se na ni podívat také online:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Chcete-li zobrazit v programu %PRODUCTNAME Calc počet vybraných buněk, klikněte pravým tlačítkem na stavový řádek a vyberte „Počet vybraných“." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Chcete mít dva či více sloupců pouze v části stránky ve Writeru? Vložit ▸ Sekce, zadejte nastavení na kartě Sloupce a umístěte do sekce text." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "V %PRODUCTNAME Calc můžete použít v nabídce Data ▸ Statistika vzorkování, popisnou statistiku, analýzu rozptylu, korelaci a mnoho dalšího." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Kopírovat mezi listy můžete i bez schránky. Vyberte oblast ke zkopírování, s klávesou %MOD1 klikněte na kartu cílového listu a použijte List ▸ Vyplnit buňky ▸ Vyplnit listy." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Vzhled %PRODUCTNAME můžete změnit v Nástroje ▸ Možnosti ▸ Zobrazení ▸ Uživatelské rozhraní." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "V programu %PRODUCTNAME Impress vytvoříte volbou Vložit ▸ Multimédia ▸ Fotoalbum prezentaci ze sady obrázků." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Místo výsledků můžete zobrazit vzorce, a to pomocí Zobrazit ▸ Zobrazit vzorec (nebo Nástroje ▸ Možnosti ▸ %PRODUCTNAME Calc ▸ Zobrazení ▸ Zobrazit ▸ Vzorce)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME je vyvíjen přátelskou komunitou tvořenou stovkami přispěvatelů z celého světa. Připojte se k nám s vašimi dovednostmi, znalost programování není potřebná." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Pro leváky: zobrazte si posuvník nalevo tím, že povolíte Nástroje ▸ Možnosti ▸ Jazyková nastavení ▸ Jazyky ▸ Asijské a zaškrtnete Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Zobrazit ▸ Pravítko ▸ Zarovnané vpravo." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Přejete si mít názvy kapitol vždy na začátku stránek? Otevřete Nadpis1 (styl odstavce) ▸ Tok textu ▸ Zalomení a zaškrtněte Vložit ▸ Stránka ▸ Před." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datum nebo čas je prostý počet dní od zvoleného dne nula. V tomto čísle představuje celočíselná část datum a zlomek odpovídá času (uplynulé části dne), hodnota 0,5 značí poledne." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Pomocí klávesové zkratky Shift+%MOD1+Del smažete text od aktuální pozice kurzoru do konce věty." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Ve vzorcích můžete používat popisky sloupců a řádku. Máte-li například dva sloupce „Čas“ a „Km“, počet minut na kilometr zjistíte jako =Čas/Km." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Vadí vám posouvající se pomlčky („pochodující mravenci“) kolem buněk Calcu? Zrušíte je stisknutím klávesy Esc, zkopírovaný obsah přitom zůstane dostupný a bude možné jej vkládat." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Chcete se zabývat %PRODUCTNAME profesionálně? Existují certifikace pro vývojáře, administrátory a školitele." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "V sešitu Calcu můžete střídat listy s orientací na výšku a na šířku, pokud jim nastavíte různé styly stránky." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Po kliknutí na ikonu speciálního znaku v nástrojové liště můžete rychle vkládat oblíbené a naposledy použité znaky." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Chcete-li zobrazit vztahy mezi styly, zvolte na postranní liště Styly volbu „Hierarchicky“." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Styly vám pomohou udržet jednotný vzhled tabulek v dokumentu. Připravený styl zvolíte pomocí Stylů (F11) nebo v nabídce Tabulka ▸ Styly automatického formátu." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Chcete nastavit, aby se odkaz otevíral pouze při kliknutí se stisknutou klávesou %MOD1? Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Zabezpečení ▸ Možnosti ▸ „Pro otevření hypertextových odkazů vyžadovat %MOD1-kliknutí“." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Pokud chcete zobrazit výpočet určité části vzorce, vyberte ji ve vstupním řádku a stiskněte F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Buňky uzamknete pomocí Formát ▸ Buňky ▸ Ochrana buňky. Chcete-li zabránit vkládání, mazání, přejmenovávání, přesouvání a kopírování listů, použijte Nástroje ▸ Uzamknout list." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Text podél křivky? Nakreslete čáru, dvakrát klikněte, zadejte text, Formát ▸ Textové pole a tvar ▸ Písmomalba." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Přejete si zobrazit v sešitu pouze největší hodnoty? Zvolte v nabídce Data ▸ Automatický filtr, klikněte na rozbalovací šipku a zvolte „Horních 10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Chcete-li odstranit číslo stránky z obsahu, přejděte na Vložit ▸ Obsah a rejstřík (nebo klepněte pravým tlačítkem a upravte již existující obsah). Na kartě Položky odstraňte číslo stránky (#) z řádku Struktura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "V Navigátoru můžete vybírat nadpisy spolu s následujícím textem a posouvat je nahoru či dolů. Nadpis a text se posune jak v Navigátoru, tak v dokumentu." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Chcete-li rychle vytvořit objekt matematického vzorce v aplikaci Writer, zadejte vzorec, vyberte jej a převeďte text pomocí Vložit ▸ Objekt ▸ Vzorec." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "S programem %PRODUCTNAME je velmi snadné nainstalovat nový slovník: jsou dodávány jako rozšíření." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "S přenosnou verzí %PRODUCTNAME budete mobilní. %PRODUCTNAME Portable nainstalujete na pevný disk dokonce bez administrátorských práv k počítači." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer umožňuje číslovat poznámky pod čarou pro stránku, kapitolu i dokument: Nástroje ▸ Poznámky pod čarou a vysvětlivky ▸ karta Poznámky pod čarou ▸ Počítání." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Dokument Writeru se neotevřel s textovým kurzorem na pozici, kde se nacházel při uložení? Zkontrolujte, zda je vyplněno jméno a příjmení v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Uživatelské údaje." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Pokud potřebujete používat citace, použijte rozšíření třetí strany." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Přejete si vložit hodnotu na totéž místo ve více listech najednou? Listy před zadáním hodnoty vyberte, tj. klikněte na jejich karty se stisknutou klávesou %MOD1." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Přejete si v dokumentu skrýt nějaký text? Vyberte jej, zvolte Vložit ▸ Sekce a zaškrtněte „Skrýt“." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Chování prostředního tlačítka myši lze upravit v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Zobrazení ▸ Prostřední tlačítko myši." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Přejete si vytisknout dvě stránky na výšku na jednu na šířku (např. zmenšit A4 na A5)? Soubor ▸ Tisk a „Stránek na list“." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Chcete-li v dokumentu rychle přejít na záložku, klikněte ve stavovém řádku pravým tlačítkem na číslo stránky (levý dolní roh okna s dokumentem)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Objekt na pozadí dokumentu vyberete pomocí nástroje Vybrat na liště Kresba, kterým požadovaný objekt ohraničíte." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Zadejte si texty, které často používáte, jako automatický text. Poté je budete moci vložit do jakéhokoliv dokumentu Writeru pomocí názvu, zkratky nebo z nástrojové lišty." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Přehrávání hudby během celé prezentace nastavíte tím, že prvnímu přechodu mezi snímky přiřadíte zvuk a nepoužijete u toho tlačítko „Použít přechod na všechny snímky“." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 nepočítá zleva doprava, ale respektuje pořadí priorit Závorky – Mocniny – Násobení – Dělení – Sčítání – Odčítání." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Stáhněte si dokumentaci a volně dostupné uživatelské příručky k %PRODUCTNAME na adrese:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Přejete si odstranit najednou všechny znaky <>, ale zachovat text mezi nimi? Úpravy ▸ Najít a nahradit: Najít = [<>], Nahradit = prázdné a v části Ostatní možnosti zaškrtněte „Regulární výrazy“." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Potřebujete prezentovat zprávu napsanou ve Writeru? Pomocí volby Soubor ▸ Odeslat ▸ Osnova do prezentace automaticky vytvoříte z osnovy snímky." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Chcete využít v sešitu hypertextové odkazy? Vložte je pomocí funkce HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Zrušíte-li zaškrtnutí Nástroje ▸ Možnosti ▸ %PRODUCTNAME Calc ▸ Zobrazení ▸ Přiblížení: „Synchronizovat listy“, bude mít každý list v Calcu vlastní míru přiblížení." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Pro každou kartu listu můžete nastavit barvu: klepněte pravým tlačítkem na kartu nebo použijte příkaz List ▸ Barva karty listu." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Můžete sledovat buňky použité ve vzorcích: předchůdce (Shift+F9) a následníky (Shift+F5; použít lze také Nástroje ▸ Detektiv). Každým použitím postoupíte v řetězci předchůdců nebo následníků o jeden krok." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Jak vložit najednou vzorec a jeho pořadové číslo: napište fn a stiskněte F3. Vloží se automatický text s tabulkou obsahující vzorec a číslo." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Seznam obrázků můžete vytvořit také z názvů objektů, nejen z jejich popisků." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Prezentace Impressu můžete dálkově ovládat, použijete-li Android nebo iPhone." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Chcete vědět, kolik dní má aktuální měsíc? Použijte funkci DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Zobrazují se čísla v sešitu jako ###? Sloupec je příliš úzký na to, aby se v něm zobrazily všechny číslice." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "V nabídce Nástroje ▸ Možnosti ▸ OpenCL zapnete paralelní výpočty vzorců." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Pomocí nástroje Spojnice z lišty Kresba v programech Draw/Impress připravíte hezké vývojové diagramy. Vytvořený objekt pak můžete zkopírovat a vložit do Writeru." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Vaše finanční příspěvky podporují naši celosvětovou komunitu." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Přejete si přidat k datu x měsíců? Použijte =EDATE(datum;měsíce)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Souvislou oblast buněk, které obsahují data a které jsou odděleny prázdným řádkem a sloupcem, vyberete pomocí %MOD1+* (na numerické klávesnici)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Nerozpoznává se správně datum? Vhodné masky nastavíte v Nástroje ▸ Možnosti ▸ Jazyková nastavení ▸ Jazyky ▸ Masky pro rozpoznání data." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Chcete exportovat vzorce do CSV? Soubor ▸ Uložit jako ▸ Typ: Text CSV, zaškrtněte „Upravit nastavení filtru“ a v dalším okně zaškrtněte „Místo vypočítaných hodnot buněk uložit vzorce“." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konzola prezentujícího je skvělá pomůcka při práci s aplikací %PRODUCTNAME Impress. Už jste si ji vyzkoušeli?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Chcete-li smazat více komentářů, vyberte oblast s nimi a použijte List ▸ Komentáře buňky ▸ Smazat komentář." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Kliknutím na ikonu PDF na nástrojové liště své dokumenty jednoduše převedete do PDF." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Přejete si vybrat rozsáhlou oblast buněk bez rolování? Zadejte do pole názvu odkaz na oblast (např. A1:A1000) a stiskněte Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Chcete se dozvědět, jaké jsou platné parametry příkazového řádku? Spusťte soffice s --help, -h nebo -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "List nebo oblast tisku přizpůsobíte stránce pomocí Formát ▸ Stránka ▸ karta List ▸ Měřítko." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Potřebujete nečíslovanou položku v seznamu? Použijte „Vložit nečíslovanou položku“ na nástrojové liště Odrážky a číslování." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Orientaci buněk tabulky můžete otáčet pomocí Tabulky ▸ Vlastnosti ▸ Tok textu ▸ Orientace textu." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Počátek pravítek (0/0) v programu %PRODUCTNAME Draw změníte tím, že přetáhněte průsečík pravítek do levého horního rohu pracovní plochy." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Chcete v Calcu v jednom kroku přesunout sloupec mezi dva jiné? Klikněte na záhlaví a pak na nějakou buňku tohoto sloupce a se stisknutým tlačítkem myši a klávesou %MOD2 jej přesuňte na požadované místo." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Položky abecedního rejstříku automaticky označíte pomocí rejstříkového souboru." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Chcete-li přesně zarovnat objekty v programu Draw/Impress, použijte Formát ▸ Zarovnání (nebo místní nabídku): jeden vybraný objekt se zarovná například na střed stránky a obdobně to funguje i pro skupinu." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Mezery mezi položkami ve Writeru nemusíte vytvářet pomocí tabulátoru. Pro některé účely může být vhodnější volbou tabulka bez ohraničení." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Abyste nalezli klávesovou zkratku v seznamu Nástroje ▸ Přizpůsobit ▸ Klávesnice, nemusíte rolovat: stačí zkratku stisknout." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Při vkládání objektu může %PRODUCTNAME automaticky doplnit číslovaný popisek, viz Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Automatické popisky." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "V %PRODUCTNAME můžete k vytvoření hromadné korespondence použít e-mailový účet od Googlu. Vyplňte jej v Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Hromadné rozesílání e-mailů." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Chcete-li ponechat záhlaví listu při posouvání řádků viditelné, zvolte Zobrazit ▸ Ukotvit buňky ▸ Ukotvit první řádek." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Chcete začít pracovat s makry v jazyku %PRODUCTNAME Basic? Podívejte se na příklady v nabídce Nástroje ▸ Makra ▸ Upravit makra." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Styly odstavce pro nadpisy můžete ve Writeru nastavit klávesovými zkratkami: %MOD1+1 použije Nadpis 1, %MOD1+2 Nadpis 2 atd." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Neztraťte se v rozsáhlých dokumentech. S Navigátorem (F5) se v jejich obsahu zorientujete." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Úpravy ▸ Najít a nahradit umožňuje přímo vkládat speciální znaky: klikněte pravým tlačítkem myši do vstupních polí nebo stiskněte Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Vyžadujete vlastní obsah v metadatech? Vše potřebné vytvoříte v Soubor ▸ Vlastnosti ▸ Vlastní vlastnosti." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Přejete si v Draw zobrazit, ale netisknout nějaký objekt? Nakreslete jej na vrstvu, jež nemá vlastnost „Tisknutelná“ (klikněte pravým tlačítkem na kartu a zvolte „Upravit vrstvu“)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Chcete-li do dokumentu vložit aktuální datum, použijte Vložit ▸ Pole ▸ Datum." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Příliš mnoho obrázků v dokumentu Writeru? Urychlete načítání tím, že je vypnete pomocí Zobrazit ▸ Obrázky a grafy." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Řadu náhodných čísel podle různých rozdělení vygenerujete pomocí List ▸ Vyplnit buňky ▸ Vyplnit náhodnými čísly." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Přejmenujete-li snímky v Impressu, snadněji pak budete zadávat interakce „Přechod na stránku“ a označení budou více vypovídající než Snímek1, Snímek2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Dialogové okno Číslování kapitol umožňuje nastavit text, který se zobrazí před číslem kapitoly: například pro text „Kapitola “ se zobrazí „Kapitola 1“." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Potřebujete transponovat tabulku ve Writeru? Zkopírujte ji a vložte do Calcu, transponujte ji pomocí Zkopírovat a Vložit jinak a nakonec ji zkopírujte a ve Writeru vložte jako Vložit jinak ▸ Formátovaný text." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Nástroj „Svislý text“ z nástrojové lišty Kresba dostanete, zaškrtnete-li Nástroje ▸ Možnosti ▸ Jazyková nastavení ▸ Jazyky ▸ Výchozí jazyky ▸ Asijské (a tlačítko změníte na viditelné po kliknutí pravým tlačítkem)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Chcete-li rychle přiblížit výběr, klikněte pravým tlačítkem ve stavovém řádku v oblasti přiblížení a zvolte Optimální zobrazení." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Můžete podepisovat již existující soubory PDF a jejich podpisy ověřovat." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Vytváříte často dokumenty z jiných dokumentů? A uvažovali jste o použití šablony?" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "V Calcu pomocí Formát ▸ Podmíněné ▸ Spravovat zjistíte, u kterých buněk bylo použito podmíněné formátování." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Nástroje ▸ Detektiv ▸ Označit neplatná data zvýrazní v listu všechny buňky, které nesplňují pravidla platnosti dat." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Větší interoperabilitu s jinými kancelářskými balíky zajistíte tím, že v nabídce Soubor ▸ Vlastnosti ▸ Písmo použijete vkládání písma." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Chcete-li převést vzorec na statickou hodnotu, nemusíte kopírovat a vkládat; použijte Data ▸ Spočítat ▸ Vzorec na hodnotu." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Všechny komentáře v dokumentu můžete přeformátovat klepnutím na šipku dolů v komentáři a volbou „Formátovat všechny komentáře“." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Přejete si mít stejné rozvržení na obrazovce i při tisku? Zaškrtněte Nástroje ▸ Možnosti ▸ %PRODUCTNAME Calc ▸ Obecné ▸ Při formátování textu použít metriku tiskárny." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer vám pomáhá zálohovat: pomocí volby Soubor ▸ Uložit kopii vytvoříte nový dokument a dál pracujete na tom původním." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Pokud vytváříte styl založený na jiném stylu, je možné zadat procentuální hodnotu nebo relativní hodnotu v bodech (např. 110 %, −2 pt nebo +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Chcete-li zkopírovat komentář a zachovat přitom obsah cílové buňky, použijte příkaz Vložit jinak a v dialogovém okně zrušte zaškrtnutí všeho kromě pole „Komentáře“. Stávající obsah se nepřepíše, použijete-li operaci „Přidat“." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Dokumenty MS Office lze dávkově převést do formátu OpenDocument pomocí průvodce v nabídce Soubor ▸ Průvodci ▸ Konvertor dokumentů." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Při úpravě buňky v sešitu můžete klepnout pravým tlačítkem a vložit pole: Datum, Název listu, Název dokumentu atd." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Potřebujete ve Writeru přesunout tabulku? Použijte Tabulka ▸ Vybrat ▸ Tabulka a Vložit ▸ Rámec ▸ Rámec a přesuňte ji, kam je potřeba." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Pomocí Nástroje ▸ Automatický text ▸ Automatický text ▸ Importovat můžete vybrat dokument či šablonu Wordu obsahující položky importovaného automatického textu." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Nevytvářejte mezeru mezi dvěma odstavci ručně. Raději změňte ve vlastnostech odstavce hodnotu Odsazení a rozestupy ▸ Rozestupy ▸ Pod odstavcem." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Nuly na začátku čísla ponecháte zobrazené pomocí volby „Úvodní nuly“ v dialogovém okně Formát buňky, nebo když buňku před zadáním čísla naformátujete jako text." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Chcete se vrátit k výchozímu nastavení po použití stylu seznamu? Klikněte na nástroj Číslování na liště Formátování." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Chcete-li smazat najednou všechny oblasti tisku, vyberte všechny listy a zvolte Formát ▸ Oblasti tisku ▸ Vymazat." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Přidejte obrázky na pozadí do tabulek pomocí Vložit ▸ Obrázek nebo přetáhněte pozadí z Galerie a poté Formát ▸ Uspořádat ▸ Na pozadí." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Nedaří se vám vložit do dokumentu text ze souboru PDF nebo z webové stránky? Zkuste jej vložit jako neformátovaný (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Pomocí funkce TRIMMEAN() v Calcu vrátíte průměr množiny dat bez největších a nejmenších hodnot." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Čtvrtý nepovinný parametr funkce VLOOKUP v Calcu udává, zda je první sloupec dat seřazený. Když není, zadejte hodnotu NEPRAVDA nebo nulu." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Nástrojové lišty se otevírají podle aktuálního kontextu. Pokud si je nepřejete zobrazovat, zrušte jejich zaškrtnutí v Zobrazit ▸ Nástrojové lišty." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Chcete vytvořit z aktuálního dokumentu Writeru hlavní dokument? Soubor ▸ Odeslat ▸ Vytvořit hlavní dokument (dílčí dokumenty se vytvoří podle osnovy)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Přejete si zarovnat buňky v Calcu na vytisknuté stránce na střed? Formát ▸ Stránka, Stránka ▸ Nastavení rozvržení ▸ Zarovnání tabulky." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Rámce mohou být propojeny tak, aby text mohl přetékat z jednoho do druhého, jak je to obvyklé v DTP." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Graf založený na tabulce ve Writeru vytvoříte tím, že do tabulky kliknete a zvolíte Vložit ▸ Graf." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Výběrem z Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Pomůcky pro formátování ▸ Zobrazovat určíte, které řídicí znaky se budou zobrazovat." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Přejete si přejít na určitou stránku podle čísla? Klikněte na položku stavového řádku umístěnou úplně vlevo, použijte Úpravy ▸ Přejít na stránku nebo stiskněte %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME podporuje více než 150 jazyků." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Pokud potřebujete zobrazit nad prezentací okno jiného programu, zrušte zaškrtnutí pole Prezentace ▸ Nastavení ▸ Prezentace vždy v popředí." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Chcete v dokumentu Writeru najít slova formátovaná tučně? Úpravy ▸ Najít a nahradit ▸ Ostatní možnosti ▸ Atributy ▸ Váha písma." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Pomocí Nástroje ▸ Seřadit můžete seřadit odstavce či řádky tabulky, a to a abecedně, nebo podle čísel." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Chcete-li vložit odstavec před (za) sekci, stiskněte na jejím začátku (konci) %MOD2+Enter." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "Dobře vypadající dokumenty můžete vytvořit pomocí šablon %PRODUCTNAME, vyzkoušejte si je." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Vypočítejte splátky dluhu v programu Calc: např. PMT(2%/12;36;2500) úroková míra za období platby 2%/12, 36 měsíců, jistina dluhu 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Nedaří se vám v Calcu najít požadovaný výsledek s funkcí VLOOKUP? S funkcemi INDEX a MATCH to nebude problém!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Chcete zobrazit skrytý sloupec A? Klikněte na buňku ve sloupci B, stiskněte levé tlačítko myši, pohněte myší doleva a uvolněte tlačítko. Pak přepněte zobrazení pomocí Formát ▸ Sloupce ▸ Zobrazit." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Chcete-li změnit ve Writeru číslo stránky, přejděte na vlastnosti prvního odstavce, na kartě Tok textu zaškrtněte Zalomení ▸ Vložit a zadejte číslo." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME lze pomocí rollApp spouštět v libovolném prohlížeči." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Zaznamenali jste v Calcu podivný chybový kód (Err: a poté číslo)? Vysvětlení naleznete na této stránce:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Chcete-li zahrnout do obsahu odstavec, který není nadpisem, změňte úroveň osnovy v nastavení tohoto odstavce (karta Osnova a číslování)." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Kromě obsahu lze v %PRODUCTNAME vytvářet seznamy obrázků, tabulek, objektů, použité literatury a abecední i uživatelem definované rejstříky." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Nelze upravit nebo odstranit vlastní styl buňky? Zkontrolujte všechny listy, žádný by neměl být uzamčen." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Potřebujete vyplnit posloupnost? Vyberte oblast buněk, následně List ▸ Vyplnit buňky ▸ Vyplnit posloupnost a zvolte mezi možnostmi Lineární, Růst, Datum a Automatické vyplnění." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Chcete vědět, jestli se buňka používá ve vzorcích jiných buněk? Nástroje ▸ Detektiv ▸ Následníci (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "V poli Nahradit v nastavení automatických oprav můžete použít zástupné znaky .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Přejete si duplikovat řádek nad? Stiskněte %MOD1+D nebo použijte List ▸ Vyplnit buňky ▸ Vyplnit dolů." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Více listů budete prohledávat v případě, že je před začátkem vyhledávání vyberete." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Přetažením buněk z Calcu na snímek prezentace v normálním zobrazení vytvoříte tabulku; při zobrazení Osnova vznikne z každé buňky jeden řádek osnovy." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME napomůže tomu, abyste ve Writeru nezadali víc mezer za sebou. Zaškrtněte Nástroje ▸ Automatické opravy ▸ Nastavení automatických oprav ▸ Možnosti ▸ Ignorovat dvojité mezery." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Chcete, aby kurzor přešel po zadání hodnoty v Calcu do buňky napravo? Použijte místo klávesy Enter tabulátor." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Chcete-li zobrazit posuvník nalevo, povolte Nástroje ▸ Možnosti ▸ Jazyková nastavení ▸ Jazyky ▸ Komplexní text a zaškrtněte List ▸ Zprava doleva." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Přetáhněte naformátovaný objekt do okna Styly a formátování. Objeví se dialogové okno, ve kterém můžete rovnou pojmenovat nový styl." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nové verze %PRODUCTNAME přinášejí nové funkce, opravy chyb i bezpečnostní záplaty. Nezapomínejte na ně aktualizovat!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Vyvíjíte nové filtry formátu XSLT a XML?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Pokud není v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Obecné povolena možnost „Rozšířené tipy“, zobrazíte v dialogových oknech dostupné rozšířené tipy stisknutím Shift+F1." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Nápověda %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Další informace" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Spustit tuto akci právě teď..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tip dne: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/scalc/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-02-01 17:36+0000\n" +"PO-Revision-Date: 2021-03-27 13:36+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547389818.000000\n" #. NXy6S @@ -3065,7 +3065,7 @@ "par_id3150049\n" "help.text" msgid "Select all cells with the random numbers." -msgstr "Označte všechny buňky s náhodnými čísly jako blok." +msgstr "Vyberte všechny buňky s náhodnými čísly jako blok." #. vxDRC #: cellstyle_conditional.xhp @@ -11399,7 +11399,7 @@ "par_id3147427\n" "help.text" msgid "Load a spreadsheet with a large number of records. We are using a fictional Turnover document, but you can just as easily use any other document. The document has the following layout:" -msgstr "Otevřete sešit s velkým počtem řádků. Použijme fiktivní dokument Obrat, ale lze použít jakýkoliv jiný. Náš dokument vypadá takto:" +msgstr "Otevřete sešit s velkým počtem záznamů. Jako příklad poslouží fiktivní dokument Obrat, ale lze místo něj použít jakýkoliv jiný. Dokument má následující rozvržení:" #. eEx5X #: specialfilter.xhp @@ -11651,7 +11651,7 @@ "par_id3147300\n" "help.text" msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on." -msgstr "Zkopírujte řádek 1 se záhlavím řádků (názvy polí) například do řádku 20. Zadejte kritéria spojené logickým OR do řádků 21, 22 a tak dále." +msgstr "Zkopírujte řádek 1 se záhlavím řádků (názvy polí) například do řádku 20. Zadejte kritéria spojená logickým OR do řádků 21, 22 a tak dále." #. fqCcM #: specialfilter.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-01-05 07:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547111868.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Kapitálky - Změní malá písmena na velká a poté zmenší jejich velikost." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blikající písma blýskající písma" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blikající" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Vybrané znaky budou blikat. Rychlost blikání není možné upravit." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -35906,7 +35879,7 @@ "par_id6049684\n" "help.text" msgid "A—B (A, em-dash, B)
(see note below the table)" -msgstr "A—B (A, dlouhá pomlčka, B)
(vizte poznámku pod tabulkou)" +msgstr "A—B (A, dlouhá pomlčka, B)
(viz poznámku pod tabulkou)" #. 56q9u #: 06040100.xhp @@ -37472,7 +37445,7 @@ "par_id3149549\n" "help.text" msgid "Position tab (Bullets and Numbering dialog)" -msgstr "Karta Umístění (dialog Odrážky a číslování)" +msgstr "Karta Umístění (dialogové okno Odrážky a číslování)" #. YDqB4 #: 06050100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-02-01 17:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547113478.000000\n" #. iharT @@ -23621,7 +23621,7 @@ "par_id041620170723507192\n" "help.text" msgid "Previews of available templates show up in the main window based on your search and filtering choices. Double-click on any template icon to open a new document with the contents and formatting of the template." -msgstr "V hlavním okně se náhledy šablon, které jsou pro zvolené vyhledávání a filtrování k dispozici. Poklepáním na ikonu šablony otevřete nový dokument s obsahem a formátováním z této šablony." +msgstr "V hlavním okně se zobrazují náhledy šablon, které jsou pro zvolené vyhledávání a filtrování k dispozici. Poklepáním na ikonu šablony otevřete nový dokument s obsahem a formátováním z této šablony." #. mB2AC #: template_manager.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cs/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-01-03 05:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565687607.000000\n" #. sZfWF @@ -23990,7 +23990,7 @@ "hd_id3153717\n" "help.text" msgid "Frame" -msgstr "Rámec" +msgstr "Rámce" #. AyAQs #: 05170000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-01-02 13:36+0000\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Stanislav Horáček \n" "Language-Team: Czech \n" "Language: cs\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564947888.000000\n" #. W5ukN @@ -10924,7 +10924,7 @@ "ContextLabel\n" "value.text" msgid "To Next Slide" -msgstr "Přejít na následující snímek" +msgstr "Na následující snímek" #. qSKb6 #: DrawImpressCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/cy/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-09 12:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1552902755.000000\n" #. NCRDD @@ -32,7 +32,7 @@ #: chart2/inc/chart.hrc:18 msgctxt "tp_ChartType|liststore1" msgid "Cone" -msgstr "Con" +msgstr "Côn" #. xsWC2 #: chart2/inc/chart.hrc:19 @@ -44,7 +44,7 @@ #: chart2/inc/strings.hrc:24 msgctxt "STR_DLG_CHART_WIZARD" msgid "Chart Wizard" -msgstr "Dewin Siart" +msgstr "Dewin Siartiau" #. HCEG9 #: chart2/inc/strings.hrc:25 @@ -662,7 +662,7 @@ #: chart2/inc/strings.hrc:127 msgctxt "STR_DATA_ROLE_X_ERROR_POSITIVE" msgid "Positive X-Error-Bars" -msgstr "Barrau-Gwall-X Posidol" +msgstr "Barrau-Gwall-X Positif" #. uTsVM #: chart2/inc/strings.hrc:128 @@ -680,7 +680,7 @@ #: chart2/inc/strings.hrc:130 msgctxt "STR_DATA_ROLE_Y_ERROR_POSITIVE" msgid "Positive Y-Error-Bars" -msgstr "Barrau-Gwall-Y Posidol" +msgstr "Barrau-Gwall-Y Positif" #. pZ3af #: chart2/inc/strings.hrc:131 @@ -1740,7 +1740,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:662 msgctxt "dlg_InsertErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS" msgid "Select Range for Positive Error Bars" -msgstr "Dewis Ystod ar gyfer Barrau Gwall Posidol" +msgstr "Dewis Ystod ar gyfer Barrau Gwall Positif" #. ixAQm #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:673 @@ -4176,7 +4176,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:601 msgctxt "tp_ErrorBars|STR_DATA_SELECT_RANGE_FOR_POSITIVE_ERRORBARS" msgid "Select Range for Positive Error Bars" -msgstr "Dewis Ystod ar gyfer Barrau Gwall Posidol" +msgstr "Dewis Ystod ar gyfer Barrau Gwall Positif" #. FXjsk #: chart2/uiconfig/ui/tp_ErrorBars.ui:612 diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/cui/messages.po libreoffice-7.1.3~rc2/translations/source/cy/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-18 15:36+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565800847.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "Mae %PRODUCTNAME yn cefnogi pedair lefel macro-ddiogelwch (o isel i uchel iawn) a ffynonellau dibynadwy." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "Mae %PRODUCTNAME yn bwriadu gwneud cais fel sefydliad a nawdd Google Summer of Code (GSoC) gweler:" - -#. SNTbc -#: 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 "Wyddch chi fod modd atodi sylwadau i ddarnau o destun? Defnyddiwch y llwybr byr %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Angen symud un neu fwy o baragraffau? Does dim angen torri a gludo: Defnyddiwch y llwybr byr bysellfwrdd %MOD1+%MOD2+C. + Saeth (I fyny / I lawr)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Newidiwch y ffontiau sylfaenol ar gyfer y templed rhag ddiffinedig neu ddogfen gyfredol yn ôl Offer > Dewisiadau >% PRODUCTNAME Writer> Fontiau Sylfaenol." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Eisiau dod o hyd i eiriau mwy na 10 nod? Golygu ▸ Canfod ac Amnewid ▸ Chwilio ▸ [a-z]{10,} ▸ Dewisiadau Eraill ▸ ticio mynegiadau Rheolaidd." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Agorwch ffeil CSV fel dalen newydd yn y daenlen gyfredol trwy Dalen > Dalen o'r ffeil." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Wrth deipio mewn trwm, italig neu danlinellu yn Writer mae modd parhau gyda'r priodweddau rhagosodedig gan ddefnyddio'r llwybr byr %MOD1+Shift+X (tynnu fformatau nod uniongyrchol)" #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Defnyddiwch %MOD1+%MOD2+Shift+V i ludo cynnwys y clipfwrdd fel testun heb fformat." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Cyfaddaswch eich tudalen troednodiadau gydag Offer › Troednodiadau/Ôl-nodau…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Gyda 'Sioe Sleidiau > Sioe Sleidiau Cyfaddas', ad-drefnwch a dewis sleidiau i fynd i sioe sleidiau yn ôl anghenion eich cynulleidfa." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Esiau newid gwirio sillafu ar rhan o'r testun? Cliciwch ym mharth iaith y bar statws neu'n well fyth, defnyddiwch arddull." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Mae Writer yn gallu mewnosod tudalen wag rhwng dwy dudalen od (eilrif) sy'n dilyn. Ticiwch ‘Argraffu tudalennau gwag a fewnosodwyd yn awtomatig’ yn nhab %PRODUCTNAME Writer o'r deialog argraffu." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Ddim eisiau argraffu pob colofn? Cuddio neu grwpio'r rhai nad oes eu hangen arnoch." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "I addasu cyflwyniad AwtoChwarae, ei agor ac ar ôl iddo ddechrau, cliciwch ar y dde a dewis Golygu yn y ddewislen cyd-destun." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Angen lleoli yn union? Mae bysell %MOD2+ saeth yn symud gwrthrychau (siapiau, lluniau, fformwlâu) un picsel ar y tro." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Mae cymorth wedi'i fewnblannu ar gael trwy bwyso F1, os ydych chi wedi'i osod. Fel arall, ewch i:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "De-gliciwch yn y bar statws yn %PRODUCTNAME Calc a dewis 'Cyfrif y dewis' i ddangos y nifer o gelloedd a ddewiswyd." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Esiau cael dwy golofn neu fwy ar gyfer rhan yn unig o dudalen %PRODUCTNAME Writer? Mewnosod ▸ Adran, wedi'i gosod gyda thab Colofnau, a gosod testun yn yr adran honno." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Defnyddiwch Data > Ystadegau ar gyfer samplu, ystadegau disgrifiadol, dadansoddi amrywiant, cydberthynas, a llawer mwy yn Calc %PRODUCTNAME." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Gallwch gopïo o un ddalen i'r llall heb y clipfwrdd. Dewiswch yr ardal i'w chopïo, %MOD1+ cliciwch tab y ddalen darged a defnyddio Dalen > Llanw Celloedd > Llanw Dalennau." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Gallwch newid golwg %PRODUCTNAME yn Offer > Dewisiadau > Golwg > Rhyngwyneb Defnyddiwr." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Yn Impress %PRODUCTNAME defnyddiwch Mewnosod > Cyfrwng > Albwm Lluniau i greu sioe sleidiau o gyfres o luniau gyda'r nodwedd 'Albwm Lluniau'." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Gallwch ddangos fformwlâu yn lle canlyniadau gyda Golwg > Dangos Fformiwla (neu Offer > Dewisiadau > Calc %PRODUCTNAME > Golwg > Dangos > Fformiwlâu)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "Mae %PRODUCTNAME yn cael ei ddatblygu gan gymuned gyfeillgar, sy'n cynnwys cannoedd o gyfranwyr ledled y byd. Ymunwch â ni gyda'ch sgiliau amrywiol." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Llaw chwith? Galluogwch Offer > Dewisiadau > Gosodiadau Iaith > Ieithoedd > Asiaidd ac edrych yn Offer > Dewisiadau > Writer %PRODUCTNAME > Golwg > Mesurydd > Alinio i'r dde, sy'n dangos y bar sgrolio i'r chwith." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Eisiau i'ch teitlau penodau ddechrau tudalen bob tro? Golygwch Pennawd1 (arddull paragraff) > Llif Testun > Toriad a thicio Mewnosod > Tudalen> Cynt." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Y nifer o ddyddiau ers diwrnod dewisol sero yw gwerth dyddiad/amser; yn y rhif, mae'r rhan gyfanrif yn cynrychioli dyddiad, a'r rhan ffracsiynol yw amser (rhan o ddiwrnod wedi mynd heibio), gyda 0.5 yn cynrychioli hanner diwrnod." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Mae Shift+%MOD1+Del yn dileu o'r cyrchwr hyd at ddiwedd y frawddeg gyfredol." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Defnyddiwch labeli colofn neu res mewn fformwlâu. Er enghraifft, os oes gennych ddwy golofn, “Amser” a “KM”, defnyddiwch = Amser/KM i gael munudau fesul cilomedr." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Yn flin oherwydd y morgrug o amgylch celloedd yn Calc. Pwyswch Esc i'w hatal; bydd y cynnwys a gopïwyd yn parhau i fod ar gael i'w gludo." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Am ddod yn Llysgennad %PRODUCTNAME? Mae ardystiadau ar gyfer datblygwyr, gweinyddwyr a hyfforddwyr." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Cymysgwch gyfeiriadau portread a thirwedd mewn taenlen Calc trwy osod gwahanol arddulliau tudalen ar ddalenni." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Cliciwch ar yr eicon nodau arbennig yn y bar offer i gael mynediad cyflym at eich hoff nodau a'r rhai diweddar i'w mewnosod." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Dewiswch \"Golwg Hierarchical\" yn y bar ochr Arddulliau i weld y berthynas rhwng arddulliau." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Gallwch ddefnyddio arddulliau i gysoni'r tablau yn eich dogfen. Dewiswch un o'r rhai wedi'u diffinio ymlaen llaw fesul Arddulliau (F11) neu trwy Tabl > AwtoFformat." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Ffurfweddwch ddefnydd o'r fysell %MOD1 i ddilyn dolenni? Offer > Dewisiadau >%PRODUCTNAME > Diogelwch > Dewisiadau > “%MOD1+ cliciwch i ddilyn dolenni\"." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Hoffech chi weld cyfrifiad elfennau unigol fformiwla, dewis yr elfennau priodol a phwyso F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Gallwch ddiogelu celloedd gyda Fformat > Celloedd > Diogelu. I atal mewnosod, dileu, ailenwi, symud / copïo dalennau defnyddiwch Offer> Diogelu Dalen." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Ysgrifennu ar hyd cromlin? Tynnwch lun y llinell, cliciwch ddwywaith, teipiwch y testun, Fformat > Blwch Testun a Siâp > Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Eisiau dangos y gwerthoedd uchaf yn unig mewn taenlen? Dewiswch y ddewislen Data > AwtoHidl, cliciwch y gwymplen, a dewis \"10 Uchaf\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "I dynnu rhif y dudalen o'ch tabl cynnwys ewch i Mewnosod > Tabl Cynnwys (neu dde-gliciwch a Golygu'r mynegai a fewnosodwyd yn flaenorol). Yn y tab Cofrestriadau dilëwch rif y dudalen (#) o'r llinell Strwythur." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Gyda'r Llywiwr gallwch ddewis a symud penawdau i fyny/i lawr a'r testun o dan y pennawd, yn y Llywiwr ac yn y ddogfen." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "I gael gwrthrych mathemateg yn Writer yn gyflym, teipiwch eich fformiwla, ei farcio, a defnyddio Mewnosod ▸ Gwrthrych ▸ Fformiwla i drosi'r testun." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Gyda %PRODUCTNAME mae'n hawdd iawn gosod geiriadur newydd: mae nhw ar gael fel estyniad." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "Mae gan %PRODUCTNAME fersiwn gludadwy sy'n rhoi symudedd i chi. Hyd yn oed heb hawliau gweinyddwr ar eich cyfrifiadur gallwch osod %PRODUCTNAME Cludadwy i'ch gyriant caled hefyd." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Mae Writer yn caniatáu i chi rifo'ch troednodiadau yn ôl y dudalen, pennod, dogfen: Offer › Troednodiadau/Ôl-nodau› Tab Troednodiadau › Cyfrif." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Nid yw eich dogfen Writer wedi ailagor gyda'r cyrchwr testun yn yr un safle golygu ag yr oeddech pan wnaethoch ei chadw? Ychwanegwch enw Cyntaf neu Olaf yn Offer > Dewisiadau >%PRODUCTNAME > Data Defnyddiwr > Enw cyntaf/olaf." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Rheoli dyfyniadau? Defnyddiwch estyniad 3ydd parti." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Eisiau mfewnosod gwerth yn yr un lle ar sawl dalen? Dewiswch y dalenni: daliwch y bysell %MOD1 i lawr a chlicio ar eu tabiau cyn mynd i mewn." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Eisiau cuddio rhywfaint o destun mewn dogfen? Dewiswch y testun. Mewnosod ▸ Adran, a dewis “Cuddio”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Gallwch gyfaddasu'r botwm llygoden ganol drwy Offer > Dewisiadau >%PRODUCTNAME > Golwg > botwm Llygoden Ganol." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Eisiau argraffu dwy dudalen bortread ar dirwedd un tirwedd (gan leihau A4 i A5)? Ffeil > Argraffu a dewis 2 yn \"Tudalen i'r dalen\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "I gael mynediad cyflym i nodau tudalen eich dogfen, de-gliciwch ar rif tudalen y bar statws (cornel chwith isaf ffenestr y ddogfen)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Dewiswch wrthrych yng nghefndir y ddogfen trwy'r teclyn Dewis yn y bar offer Lluniadu i amgylchynu'r gwrthrych sydd i'w ddewis." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Diffinio testunau rydych chi'n eu defnyddio'n aml fel AutoDestun. Byddwch yn gallu eu mewnosod yn ôl eu henw, llwybr byr neu far offer mewn unrhyw ddogfen Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "I chwarae cerddoriaeth trwy gydol sioe sleidiau, neilltuwch y sain i'r trawsnewidiad sleidiau cyntaf heb glicio ar y botwm 'Gosod i Bob Sleid'." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "Nid yw %PRODUCTNAME yn cyfrif o'r chwith i'r dde ond mae'n parchu'r drefn Cromfachau > Esbonydd > Lluosi> Rhannu > Adio > Tynnu." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Cewch ddogfennaeth a llyfrau canllaw i ddefnyddwyr %PRODUCTNAME am ddim yn:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Am gael gwared ar yr holl <> ar unwaith a chadw'r testun y tu mewn? Golygu ▸ Canfod ac Amnewid: Chwilio = [<|>], Amnewid = gwag a gwirio ‘Mynegiadau rheolaidd’ o dan dewisiadau Eraill." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Eisiau cyflwyno adroddiad wedi'i hysgrifennu gyda Writer? Mae Ffeil > Anfon > Amlinelliad i'r Cyflwyniad yn creu sioe sleidiau o'r amlinelliad yn awtomatig." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Eisiau rheoli cyflwyniad dolenni mewn taenlen? Mewnosodwch nhw gyda'r swyddogaeth HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Dad-diciwch Offer ›Dewisiadau› Calc %PRODUCTNAME ›Golwg ›Chwyddo: 'Cydweddu taenlenni' fel bod gan bob dalen ei ffactor chwyddo ei hun." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Gallwch osod lliw ar gyfer pob tab: de-gliciwch y tab neu ddefnyddio Dalen > Lliw Tab Dalen." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Olrhain celloedd sy'n cael eu defnyddio mewn fformiwla, cynseiliau (Shift + F9) neu ddibynyddion (Shift + F5) (neu defnyddio Offer> Ditectif). Ar gyfer pob trawiad rydych chi'n symud un cam arall yn y gadwyn." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Mewnosodwch a rhifo'ch fformiwlâu mewn un cam: teipiwch fn yna F3. Mae AutoDestun yn cael ei fewnosod gyda fformiwla a rhif wedi'i alinio mewn tabl." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Gallwch greu mynegai darluniol o enwau gwrthrychau, nid yn unig o eglurynnau." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Gallwch ddefnyddio'ch Android neu iPhone i reoli'ch cyflwyniad Impress o bell." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Eisiau gwybod sawl diwrnod sydd yn y mis cyfredol? Defnyddiwch swyddogaeth DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Mae eich rhifau'n cael eu dangos fel ### yn eich taenlen? Mae'r golofn yn rhy gul i ddangos yr holl ddigidau." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Galluogi cyfrifiadau cyfochrog enfawr o gelloedd fformiwla trwy Offer >Dewisiadau >OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Defnyddiwch yr offeryn Cysylltydd o'r bar offer Lluniadu yn Draw/Impress i greu siartiau llif da gyda'r dewis o gopïo/gludo'r gwrthrych yn Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Mae eich rhoddion yn cefnogi ein cymuned fyd-eang." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Eisiau ychwanegu x mis i ddyddiad? Defnyddiwch =EDATE(date;months)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "I ddewis ystod gyffiniol o gelloedd sy'n cynnwys data ac wedi'u ffinio â rhes wag a cholofnau, defnyddiwch %MOD1+ * (pad allwedd rhifol)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Mae eich patrwm derbyn dyddiad yn amhriodol? Offer > Dewisiadau > Gosodiadau Iaith > Iaith > Mae patrymau derbyn dyddiad yn caniatáu newid y patrwm." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Eisiau allforio fformwlâu i CSV? Ffeil > Cadw Fel > Math: Testun CSV, gwirio ‘Golygu gosodiadau hidlo’, a gwirio ‘Cadw fformwlâu celloedd’ yn y dialog nesaf." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Mae'r consol cyflwynydd yn nodwedd wych wrth weithio gyda %PRODUCTNAME Impress. Ydych chi wedi ei brofi?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "I ddileu sylwadau lluosog, dewiswch gelloedd gyda sylwadau a defnyddiwch Dalen> Sylwadau Cell> Dileu Sylw." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Gallwch drosi'ch dogfennau i PDF yn hawdd gydag un clic trwy glicio ar yr eicon PDF yn y bar offer." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Eisiau dewis ystod eang o gelloedd heb sgrolio? Teipiwch y cyfeirnod amrediad (e.e. A1: A1000) yn y blwch enw ac yna Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Eisiau gwybod am baramedrau'r llinell orchymyn ddilys? Dechreuwch soffice gyda --help neu -h neu -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Gosodwch eich dalen neu ystodau argraffu i dudalen gyda Fformat ›Tudalen › Tab Dalen › Modd Graddio." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Angen eitem heb rif mewn rhestr? Defnyddiwch \"Mewnosod Mynediad Heb Rif\" yn y bar offer Bwledi a Rhifo." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Gallwch gylchdroi cyfeiriadedd tabl celloedd gyda Thabl > Priodweddau… > Llif Testun > Cyfeiriadedd testun." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Yn Draw %PRODUCTNAME, i newid pwynt 0/0 y pren mesur, llusgwch groeslin y ddau fesurydd yn y gornel chwith uchaf i'r man gwaith." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Symudwch golofn yn Calc rhwng dau arall mewn un cam? Cliciwch y pennawd yna cell yn y golofn, cadwch fotwm y llygoden i lawr a symud i'r targed gyda'r fysell %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Gallwch farcio cofnodion mynegai yn nhrefn yr wyddor yn awtomatig gan ddefnyddio ffeil mynegeiriau." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Defnyddiwch Fformat > Alinio (neu'r ddewislen cyd-destun) ar gyfer union leoli gwrthrychau yn Draw/Impress: mae'n canolbwyntio ar y dudalen os yw un gwrthrych yn cael ei ddewis neu'n gweithio ar y grŵp yn y drefn honno." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Peidiwch â defnyddio tabiau i osod eitemau ar ddogfen Awdur. Yn dibynnu ar yr hyn rydych chi'n ceisio ei wneud, gall bwrdd heb ffiniau fod yn well dewis." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Nid oes angen sgrolio trwy'r rhestr yn Offer > Cyfaddasu > Bysell i ddod o hyd i lwybr byr: dim ond ei deipio." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Gall %PRODUCTNAME ychwanegu pennawd wedi'i rifo yn awtomatig pan fyddwch yn mewnosod gwrthrychau. Gw. Offer > Dewisiadau >Writer %PRODUCTNAME > AwtoEgluryn." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Gyda %PRODUCTNAME gallwch ddefnyddio'ch cyfrif Google Mail i gyfuno e-bost. Llenwch Offer >Dewisiadau >Writer %PRODUCTNAME >Post Cyfuno E-bost." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Cadwch benawdau colofn dalen yn weladwy wrth sgrolio llinellau trwy Golwg > Rhewi Celloedd > Rhewi Rhes Gyntaf." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Rydych eisiau dechrau gweithio gyda macros Basic? Cymerwch gip ar yr enghreifftiau o dan Offer > Macros > Golygu Macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Defnyddiwch arddulliau paragraff Pennawd yn Writer gyda bysell llwybr byr: Mae %MOD1+1 yn berthnasol i Bennawd 1, %MOD1+2 yn berthnasol i Bennawd 2, ac ati." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Peidiwch â mynd ar goll mewn ddogfennau mawr. Defnyddiwch y Llywiwr (F5) i ddod o hyd i bethau." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Mae Golygu > Canfod ac Amnewid yn caniatáu i chi fewnosod nodau arbennig yn uniongyrchol: cliciwch ar y dde mewn meysydd mewnbwn neu bwyso Shift+Ctrl+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Angen cynnwys wedi'i deilwra ar gyfer eiddo metadata? Mae Ffeil › Priodoleddau › Priodoleddau Cyfaddas yn caniatáu i chi greu'r hyn rydych chi ei eisiau." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Eisiau gweld, ond nid argraffu, gwrthrych yn Draw? Tynnwch lun ohono ar haen nad yw’r faner \"Argraffadwy’ wedi’i osod ar ei gyfer (cliciwch ar y dde ar y tab a \"Newid Haen\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "I fewnosod y dyddiad cyfredol yn eich dogfen defnyddiwch Mewnosod > Maes > Dyddiad." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Llawer o ddelweddau yn eich dogfen Writer? Cyflymwch yr dangosiad trwy analluogi Golwg > Delweddau a siartiau." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Defnyddiwch Taenlen > Llanw Celloedd > Rhif ar Hap i gynhyrchu cyfres ar hap yn seiliedig ar ddosbarthiadau amrywiol." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Ail-enwch eich sleidiau yn Impress i'ch helpu chi i ddiffinio rhyngweithiadau \"Ewch i'r dudalen\" ac i gael crynodeb yn fwy eglur na Sleid 1, Sleid 2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Mae deialog rhifo pennod yn caniatáu i chi osod testun i'w dangos cyn rhif y bennod. Er enghraifft, teipiwch \"Pennod\" i Ddangos \"Pennod 1\"" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Trawsosod tabl Writer? Copïo a Gludo yn Calc, trawsosodwch gyda copïo/gludo arbennig yna copïo/gludo arbennig ›Testun wedi'i fformatio yn Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "I gael yr offeryn ‘Testun Fertigol’ yn y bar offer Lluniadu, gwiriwch Offer > Dewisiadau > Gosodiadau Iaith > Ieithoedd > Ieithoedd rhagosodedig> Asiaidd (a gwneud y botwm yn weladwy gyda chlic ar y dde)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "I chwyddo'r dewis ystod yn gyflym, cliciwch ar y dde ar ran chwyddo'r bar statws a dewis Gorau." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Gallwch lofnodi ffeiliau PDF sy'n bodoli a gwirio'r llofnodion hynny hefyd." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Rydych chi'n aml yn creu dogfen o un arall? Ystyriwch ddefnyddio templed." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Defnyddio Fformat > Fformatio Amodol > Rheoli yn Calc i ddarganfod pa gelloedd sydd wedi'u diffinio gyda fformatio amodol." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Mae Offer › Ditectif › Marc Data Annilys yn marcio pob cell yn y ddalen sy'n cynnwys gwerthoedd y tu allan i'r rheolau dilysu." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Gallwch ddefnyddio mewnosod ffontiau i gael mwy o ryngweithredu gyda phecynnau swyddfa/systemau gweithredu eraill FFeil > Priodweddau > Ffont." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "I drosi fformiwla yn werthoedd statig nid oes angen i chi gopïo/gludo; defnyddiwch Data > Cyfrifo > Fformiwla i Werth." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Gallwch ailfformatio pob sylw mewn dogfen trwy glicio ar y saeth i lawr mewn sylw a dewis \"Fformatio'r holl Sylwadau\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Eisiau cael yr un cynllun ar gyfer dangos ac argraffu sgrin? Offer › Dewisiadau › %PRODUCTNAME › Cyffredinol › Defnyddiwch fetrigau'r argraffydd i fformatio testun." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Mae Writer yn eich helpu i wneud copïau wrth gefn: gyda Ffeil › Cadw Copi, rydych chi'n creu dogfen newydd gan barhau i weithio ar y gwreiddiol." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Wrth greu Arddull yn seiliedig ar un arall, gallwch nodi gwerth canrannol neu werth pwynt (e.e. 110% neu -2pt neu +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "I gopïo sylw heb golli cynnwys y gell darged dylech ddefnyddio Gludo Arbennig a dad-dicio popeth ac eithrio ‘Sylwadau’ mewn dialog. Defnyddiwch Weithrediadau ‘Ychwanegu’ i beidio â diystyru cynnwys sy’n bodoli eisoes." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Swp troswch eich dogfennau MS Office i fformat OpenDocument gyda'r dewin Troswr Dogfennau yn newidlen Ffeil > Dewin> Troswr Dogfennau." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Wrth olygu cell yn ei lle, gallwch glicio ar y dde a Mewnosod meysydd: Dyddiad, enw'r ddalen, teitl y ddogfen ac ati." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Angen symud tabl Writer? Tabl > Dewis > Tabl a Mewnosod > Ffrâm a'i symud i le bynnag." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Gydag Offer › AwtoDestun › Mewnforio gallwch ddewis dogfen neu dempled Word, sy'n cynnwys y cofnodion AwtoDestun rydych am eu mewnforio." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Peidiwch â mewnosod toriadau â llaw i wahanu dau baragraff. Yn hytrach newid Mewnolion a Bylchau > Bylchau > O dan baragraff ym mriodweddau arddull paragraffau." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Cadwch y seroau cyn rhif trwy ddefnyddio'r opsiwn fformat celloedd 'sero arwain' neu fformatio'r gell fel testun cyn nodi'r rhif." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Eisiau dychwelyd yn ragosodedig ar ôl defnyddio arddull rhestr? Cliciwch Bwledi neu'r offeryn Rhifo Ymlaen/Diffodd ar y bar offer Fformatio." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Dileu eich holl feysydd argraffu mewn un cam: dewis yr holl dalenni ac yna Fformat›Ystodau Argraffu›Clirio." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Ychwanegwch ddelweddau cefndir at daenlenni trwy Mewnosod > Delwedd neu lusgo cefndir o'r Oriel, yna Fformat > Trefnu > I'r Cefndir." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Yn cael trafferth pasio testun o ffeiliau PDF neu dudalennau gwe i mewn i ddogfennau? Ceisiwch gludo fel testun heb fformat (% MOD1 +% MOD2 + Shift + V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Yn Calc, defnyddiwch TRIMMEAN() i ddychwelyd cymedr set ddata heb gynnwys y gwerthoedd uchaf ac isaf." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Mae 4ydd paramedr dewisol swyddogaeth Calc VLOOKUP yn dweud a yw'r golofn gyntaf o ddata yn cael ei didoli. Os nad, nodwch FALSE neu sero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Mae bariau offer yn gyd-destunol, maen nhw'n agor yn dibynnu ar y cyd-destun. Os nad ydych eisiau hynny, dad-diciwch nhw o'r ddewislen Golwg > Bariau Offer." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Yn creu prif ddogfen o'r ddogfen Writer cyfredol? Ffeil › Anfon › Creu Prif Ddogfen (is-ddogfen wedi'i chreu yn dibynnu ar yr amlinelliad)" #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Eisiau ganoli celloedd ar dudalen wedi'i hargraffu yn Calc? Fformat ›Tudalen ›Tab Tudalen › Gosodiadau Cynllun › Aliniad tabl." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Mae modd cysylltu fframiau fel y gall y testun lifo o'r naill i'r llall fel gyda cyhoeddi bwrdd gwaith." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Crëwch siart yn seiliedig ar dabl Writer trwy glicio yn y tabl a dewis Mewnosod > Siart." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Dewiswch Offer > Dewisiadau > Writer %PRODUCTNAME > Cymhorthion Fformatio > dangos i bennu pa nodau di-argraff sy'n cael eu dangos." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Eisiau neidio i dudalen benodol yn ôl ei rhif? Cliciwch y cofnod bar statws mwyaf i'r chwith neu ddefnyddio Golygu > Ewch i Dudalen ... neu bwyso %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "Mae %PRODUCTNAME yn cefnogi dros 150 o ieithoedd." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Dad-diciwch Sioe Sleidiau › Gosodiadau › Bob tro ar y brig os oes angen i raglen arall dangos ei ffenestr dros ben eich cyflwyniad." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Eisiau canfod y geiriau mewn print trwm mewn dogfen Writer? Golygu ▸ Canfod ac Amnewid ▸ Dewisiadau eraill ▸ Priodoleddau ▸ Pwysau ffont." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Gallwch ddidoli paragraffau neu resi tabl yn nhrefn yr wyddor neu rif fesul Offer > Didoli." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Cliciwch ar ddechrau (diwedd) adran a phwyswch A%MOD2+Enter i fewnosod paragraff cyn (ar ôl) yr adran." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "Mae gan %PRODUCTNAME ganolfan dempledi i greu dogfennau sy'n edrych yn dda, cymrwch olwg arnyn nhw." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Cyfrifwch ad-daliadau benthyciad gyda Calc: ee. Cyfradd llog PMT (2%/12;36;2500) fesul cyfnod talu 2%/12, 36 mis, swm y benthyciad 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Methu dod o hyd i'r hyn rydych ei eisiau gyda'r swyddogaeth VLOOKUP yn Calc? Gyda INDEX a MATCH gallwch wneud popeth!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Eisiau dangos colofn gudd A? Cliciwch cell yng ngholofn B, pwyswch botwm chwith y llygoden, symudwch y llygoden i'r chwith, ac yna'i ryddhau. Yna ei droi ymlaen trwy Fformat > Colofnau > Dangos." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "I newid rhif tudalen yn Writer, ewch i briodweddau'r paragraff cyntaf ac yn y tab Llif Testun gwiriwch Toriad > Mewnosod a rhoi'r rhif." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Rhedwch %PRODUCTNAME o fewn unrhyw borwr trwy rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Cod gwall rhyfedd yn Calc, Err: wedi'i ddilyn gan rif? Mae'r dudalen hon yn cynnig yr esboniad:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Cynhwyswch baragraff nad yw'n deitl yn y tabl cynnwys trwy newid 'Amlinelliad a Rhifo' yn y gosodiadau paragraff i lefel amlinellol." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Ar wahân i dabl cynnwys gall %PRODUCTNAME greu mynegeion yn nhrefn yr wyddor, Darluniau, Tablau, Gwrthrychau, Llyfryddiaeth, Mynegeion wedi'u diffinio gan y Defnyddwyr." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Methu addasu neu ddileu arddull gell cyfaddas? Gwiriwch bob dalen, dylai ddim fod wedi'u diogelu." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Angen i chi lenwi rhes? Dewiswch yr ystod celloedd a'r Ddalen ▸ Llanw Celloedd ▸ Llanw Cyfres a dewis rhwng Llinol, Twf, Dyddiad ac AwtoLanw." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Eisiau gwybod a yw cell yn cael ei chyfeirio ati mewn fformwlâu celloedd eraill? Offer > Ditectif > Dibynyddion Olrhain (Shift + F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Yn y maes mewnbwn amnewid dewisiadau awto-gywiro gallwch ddefnyddio'r cardiau gwyllt. *" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Eisiau dyblygu'r llinell uchod? Pwyswch %MOD1+ D neu defnyddiwch Dalen > Llanw Celloedd > Llanw i Lawr." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Eisiau chwilio drwy sawl dalen, dewiswch nhw cyn i chi ddechrau'r chwilio." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Mae llusgo a gollwng celloedd o Calc i mewn i olwg arferol sleid yn creu tabl. O fmewn yr olwg amlinellol, mae pob cell yn creu llinell yn yr amlinelliad." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "Mae %PRODUCTNAME yn eich helpu i beidio â chreu ddau neu fwy o fylchau yn Writer. Offer › Dewisiadau AutoCywir › Dewisiadau > Anwybyddu bylchau dwbl." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Eisiau i'r cyrchwr fynd i'r gell i'r dde, ar ôl nodi gwerth yn Calc? Defnyddiwch y fysell Tab yn lle Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "I ddangos y bar sgrolio ar y chwith Offer ▸ Dewisiadau ▸ Gosodiadau Iaith ▸ Ieithoedd ▸ Cynllun testun cymhleth ac yna Dalen ▸ De i'r Chwith." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Llusgwch wrthrych wedi'i fformatio i'r ffenestr Steiliau a Fformatio. Mae blwch deialog yn agor, nodwch enw'r arddull newydd." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Mae fersiynau newydd o %PRODUCTNAME yn darparu nodweddion newydd, gwallau wedi'u trwsio a chywiriadau diogelwch. Cadwch eich meddalwedd wedi'i ddiweddaru!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Yn datblygu hidlwyr XSLT ac xml newydd?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Pwyswch Shift+F1 i weld unrhyw gynghorion estynedig mewn blychau deialog, pan fydd \"Cynghorion Estynedig \" wedi'u galluogi yn Offer ▸ Dewisiadau ▸ %PRODUCTNAME ▸ Cyffredinol." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Cymorth %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Rhagor o wybodaeth" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Rhedeg y weithred hon nawr..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Awgrym y Dydd: %PRESENNOL/%CYFANSWM" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/cy/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-10-29 14:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Rhoslyn Prys \n" -"Language-Team: Welsh \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565695943.000000\n" #. BiN6g @@ -1882,7 +1882,7 @@ #: dbaccess/inc/strings.hrc:339 msgctxt "STR_MOZILLA_PROFILE_NAME" msgid "~Mozilla profile name" -msgstr "Enw proffil ~Gwe-lywiwr" +msgstr "Enw proffil ~Mozilla" #. A6YJb #: dbaccess/inc/strings.hrc:340 diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/cy/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-11-03 11:57+0000\n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" "Last-Translator: Rhoslyn Prys \n" -"Language-Team: Welsh \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562676336.000000\n" #. cBx8W @@ -2348,10 +2348,10 @@ msgstr "" "Mae %PRODUCTNAME %NEXTVERSION ar gael.\n" "\n" -"Y fersiwn cyfredol yw %PRODUCTNAME %PRODUCTVERSION.\n" +"Eich fersiwn cyfredol yw %PRODUCTNAME %PRODUCTVERSION.\n" "\n" -"Sylw: Cyn llwytho diweddariad i lawr, gwnewch yn siŵr fod gennych hawliau mynediad digonol i'w osod.\n" -"Efallai bydd angen cyfrinair, cyfrinair y gweinyddwr neu root." +"Cyn llwytho diweddariad i lawr, byddwch yn siŵr fod gennych hawliau system digonol i'w osod.\n" +"Mae'n bosib y bydd angen cyfrif neu gyfrinair gweinyddwr." #. aPRNZ #: extensions/inc/strings.hrc:297 diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.1.3~rc2/translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.1.2~rc2/translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/instsetoo_native/inc_openoffice/windows/msi_languages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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" -"PO-Revision-Date: 2020-11-03 11:56+0000\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Rhoslyn Prys \n" -"Language-Team: Welsh \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563631225.000000\n" #. tBfTE @@ -3155,7 +3155,7 @@ "OOO_CONTROL_327\n" "LngText.text" msgid "{&DialogDefaultBold}Attention!" -msgstr "{&DialogDefaultBold}Attention!" +msgstr "{&DialogDefaultBold}Sylw!" #. 5eE5R #: Control.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/sc/messages.po libreoffice-7.1.3~rc2/translations/source/cy/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-12-08 06:36+0000\n" +"PO-Revision-Date: 2021-03-26 18:36+0000\n" "Last-Translator: Rhoslyn Prys \n" -"Language-Team: Welsh \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565695958.000000\n" #. kBovX @@ -858,8 +858,12 @@ msgctxt "STR_SELCOUNT_ROWARG" msgid "$1 row" msgid_plural "$1 rows" -msgstr[0] "$1 rhes" -msgstr[1] "$1 res" +msgstr[0] "$1 rhesi" +msgstr[1] "$1 rhes" +msgstr[2] "$1 res" +msgstr[3] "$1 rhes" +msgstr[4] "$1 rhes" +msgstr[5] "$1 rhes" #. o4pBL #. To translators: STR_SELCOUNT_COLARG is $1 of STR_SELCOUNT. $1 of STR_SELCOUNT_ROWARG is number of columns @@ -867,8 +871,12 @@ msgctxt "STR_SELCOUNT_COLARG" msgid "$1 column" msgid_plural "$1 columns" -msgstr[0] "$1 colofn" -msgstr[1] "$1 golofn" +msgstr[0] "$1 colofnau" +msgstr[1] "$1 colofn" +msgstr[2] "$1 golofn" +msgstr[3] "$1 colofn" +msgstr[4] "$1 cholofn" +msgstr[5] "$1 colofn" #. 3dMsw #: sc/inc/globstr.hrc:165 @@ -1866,8 +1874,12 @@ msgctxt "STR_SCATTR_PAGE_SCALE_PAGES" msgid "One page" msgid_plural "%1 pages" -msgstr[0] "Un tudalen" +msgstr[0] "%1 tudalennau" msgstr[1] "%1 tudalen" +msgstr[2] "%1 dudalen" +msgstr[3] "%1 tudalen" +msgstr[4] "%1 tudalen" +msgstr[5] "%1 tudalen" #. CHEgx #: sc/inc/globstr.hrc:338 @@ -16620,8 +16632,12 @@ msgctxt "SCSTR_TOTAL" msgid "One result found" msgid_plural "%1 results found" -msgstr[0] "Un canlyniad wedi ei ganfod" -msgstr[1] "%1 canlyniad wedi'u canfod" +msgstr[0] "Dim canlyniadau wedi'u canfod" +msgstr[1] "Un canlyniad wedi ei ganfod" +msgstr[2] "%1 ganlyniad wedi'u canfod" +msgstr[3] "%1 chanlyniad wedi'u canfod" +msgstr[4] "%1 chanlyniad wedi'u canfod" +msgstr[5] "%1 canlyniad wedi'u canfod" #. 7GkKi #: sc/inc/strings.hrc:53 diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/sd/messages.po libreoffice-7.1.3~rc2/translations/source/cy/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-04 20:47+0000\n" +"PO-Revision-Date: 2021-03-26 18:36+0000\n" "Last-Translator: Rhoslyn Prys \n" -"Language-Team: Welsh \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565695968.000000\n" #. WDjkB @@ -1120,8 +1120,12 @@ msgctxt "STR_SLIDES" msgid "%1 slide" msgid_plural "%1 slides" -msgstr[0] "%1 sleid" +msgstr[0] "%1 sleidiau" msgstr[1] "%1 sleid" +msgstr[2] "%1 sleid" +msgstr[3] "%1 sleid" +msgstr[4] "%1 sleid" +msgstr[5] "%1 sleid" #. DhF9g #. Strings for animation effects diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/sw/messages.po libreoffice-7.1.3~rc2/translations/source/cy/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,14 +4,14 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-17 10:36+0000\n" +"PO-Revision-Date: 2021-03-26 18:36+0000\n" "Last-Translator: Rhoslyn Prys \n" "Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" "X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565695976.000000\n" @@ -3719,8 +3719,12 @@ msgctxt "STR_WORDCOUNT_WORDARG" msgid "$1 word" msgid_plural "$1 words" -msgstr[0] "$1 gair" -msgstr[1] "$1 air" +msgstr[0] "$1 geiriau" +msgstr[1] "$1 gair" +msgstr[2] "$1 gair" +msgstr[3] "$1 gair" +msgstr[4] "$1 gair" +msgstr[5] "$1 gair" #. kNQDp #. To translators: STR_WORDCOUNT_CHARARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT_CHARARG is number of characters @@ -3728,8 +3732,12 @@ msgctxt "STR_WORDCOUNT_CHARARG" msgid "$1 character" msgid_plural "$1 characters" -msgstr[0] "$1 nod" +msgstr[0] "$1 nodau" msgstr[1] "$1 nod" +msgstr[2] "$1 nod" +msgstr[3] "$1 nod" +msgstr[4] "$1 nod" +msgstr[5] "$1 nod" #. UgpUM #. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG @@ -3746,8 +3754,12 @@ msgctxt "STR_WORDCOUNT_WORDARG_NO_SELECTION" msgid "$1 word" msgid_plural "$1 words" -msgstr[0] "$1 gair" -msgstr[1] "$1 air" +msgstr[0] "$1 geiriau" +msgstr[1] "$1 gair" +msgstr[2] "$1 gair" +msgstr[3] "$1 gair" +msgstr[4] "$1 gair" +msgstr[5] "$1 gair" #. KuZYC #. To translators: STR_WORDCOUNT_CHARARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION. @@ -3756,8 +3768,12 @@ msgctxt "STR_WORDCOUNT_CHARARG_NO_SELECTION" msgid "$1 character" msgid_plural "$1 characters" -msgstr[0] "$1 nod" +msgstr[0] "$1 nodau" msgstr[1] "$1 nod" +msgstr[2] "$1 nod" +msgstr[3] "$1 nod" +msgstr[4] "$1 nod" +msgstr[5] "$1 nod" #. fj6gC #: sw/inc/strings.hrc:306 @@ -4898,16 +4914,24 @@ msgctxt "STR_UNDO_TABS" msgid "One tab" msgid_plural "$1 tabs" -msgstr[0] "Un tab" +msgstr[0] "$1 tabiau" msgstr[1] "$1 tab" +msgstr[2] "$1 dab" +msgstr[3] "$1 thab" +msgstr[4] "$1 thab" +msgstr[5] "$1 thab" #. eP6mC #: sw/inc/strings.hrc:498 msgctxt "STR_UNDO_NLS" msgid "One line break" msgid_plural "$1 line breaks" -msgstr[0] "Un toriad llinell" +msgstr[0] "$1 toriadau llinell" msgstr[1] "$1 toriad llinell" +msgstr[2] "$1 doriad llinell" +msgstr[3] "$1 thoriad llinell" +msgstr[4] "$1 thoriad llinell" +msgstr[5] "$1 toriad llinell" #. yS3nP #: sw/inc/strings.hrc:499 @@ -5217,6 +5241,10 @@ msgid_plural "chapters" msgstr[0] "pennod" msgstr[1] "pennod" +msgstr[2] "bennod" +msgstr[3] "pennod" +msgstr[4] "phennod" +msgstr[5] "pennod" #. 2JCL2 #: sw/inc/strings.hrc:551 diff -Nru libreoffice-7.1.2~rc2/translations/source/cy/vcl/messages.po libreoffice-7.1.3~rc2/translations/source/cy/vcl/messages.po --- libreoffice-7.1.2~rc2/translations/source/cy/vcl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/cy/vcl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-04 20:46+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Rhoslyn Prys \n" -"Language-Team: Welsh \n" +"Language-Team: Welsh \n" "Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" +"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563633251.000000\n" #. k5jTM @@ -1184,7 +1184,7 @@ #: vcl/inc/strings.hrc:151 msgctxt "STR_WIZDLG_ROADMAP_TITLE" msgid "Steps" -msgstr "Cammau" +msgstr "Camau" #. wEp9A #: vcl/inc/strings.hrc:152 diff -Nru libreoffice-7.1.2~rc2/translations/source/da/cui/messages.po libreoffice-7.1.3~rc2/translations/source/da/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/da/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-05 18:21+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME understøtter fire makro-sikkerhedsniveauer (fra lavt til meget højt) og pålidelige kilder." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 vil som organisation ansøge om Google Summer of Code (GSoC). Se:" - -#. SNTbc -#: 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 "Vidste du, at du kan tilknytte kommentarer til dele af teksten? Brug bare genvejen %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Brug for at flytte et eller flere afsnit? Ingen grund til at klippe og klistre: Brug tastaturgenvejen %MOD1+%MOD2+PilOp/PilNed" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Udskift de grundliggende skrifttyper i den foruddefinerede skabelon eller aktuelt dokument gennem Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Writer ▸ Grundliggende skrifttyper." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Vil du finde ord på mere end 10 bogstaver? Rediger ▸ Søg og Erstat ▸ Søg ▸ [a-z]{10,} ▸ Andre indstillinger ▸ marker Regulære udtryk." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Åbn en CSV-fil som et nyt ark i det aktuelle regneark gennem Ark ▸ Indsæt ark fra fil." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Når du skriver med fed, kursiv eller understreget i Writer kan du fortsætte med standard-attributterne ved blot at bruge genvejen %MOD1+Skift+X (fjern direkte tegnformater)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Brug %MOD1+%MOD2+Skift+V til at indsætte indholdet af udklipsholderen som uformateret tekst." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Tilpas fodnoternes udseende med Funktioner ▸ Fodnoter og slutnoter…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Med Præsentation ▸ Brugerdefineret Præsentation omordner og vælger du dias til en præsentation, der passer til dine seeres behov." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Vil du ændre stavekontrollen for en del af teksten? Klik på Sprog-zonen på Statuslinjen eller bedre: brug en typografi." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer kan indsætte en tom side mellem to ulige (lige) sider efter hinanden. Marker “Udskriv indsatte tomme sider automatisk” i udskriftdialogens %PRODUCTNAME Writer-faneblad." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Vil du ikke udskrive alle kolonner? Skjul eller gruppér dem, du ikke har brug for." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "For at ændre et Automatisk diasshow åbner du det og efter det er startet, højreklikker du på det og vælger Rediger på kontekstmenuen." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Brug for at placere nøjagtigt? %MOD2+Piletaster flytter objekter (figurer, billeder, formler) med en pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Indlejret hjælp findes ved at trykke på F1, hvis du har installeret den. Ellers tjekker du online på:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Højreklik på statuslinjen i %PRODUCTNAME Calc og vælg \"Markerings-tælling\" for få vist antallet af markerede celler." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Ønskes der to eller flere spalter for en del af en %PRODUCTNAME Writer side? Vælg Indsæt ▸ Sektion..., angiv antal spalter i fanefladet Spalter og skriv tekst i sektionen." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Brug Data ▸ statistik til prøvetagning, beskrivende statistik, variansanalyse, korrelation og meget mere i %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Du kan kopiere fra et ark til et andet uden udklipsholderen. Marker området, der skal kopieres, %MOD1+klik på mål-arkets faneblad og brug Ark ▸ Udfyld celler ▸ Ark." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Du kan ændre udseendet på %PRODUCTNAME gennem Funktioner ▸ Indstillinger ▸ Vis ▸ Brugergrænseflade." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "I %PRODUCTNAME Impress bruger du Indsæt ▸ Medie ▸ Fotoalbum til at oprette en præsentation af en serie billeder med funktionen “Fotoalbum”." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Du kan vise formler i stedet for resultater med vis ▸ Vis formler (eller Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Calc ▸ Vis ▸ Vis ▸ Formler)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME er udviklet af et generøst fællesskab bestående af hundredevis af bidragsydere over hele verden. Deltag med dine evner til kodning og meget mere." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Venstrehåndet? Aktiver Funktioner ▸ Indstillinger ▸ Sprogindstillinger ▸ Sprog ▸ Asiatisk og tjek ▸ Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Calc ▸ Vis ▸ Ruler ▸ Højrejusteret, som viser rullebjælken til venstre." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Skal dine kapiteloverskrifter altid være øverst på en side? Rediger Overskrift 1 (afsnitstypografi) ▸ Tekstforløb ▸ Skift og aktiver Indsæt ▸ Side ▸ Før." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Dato/klokkeslæt er blot et antal dage siden en valgt dag nul; i tallet repræsenterer heltalsdelen datoen og brøkdelen klokkeslættet (den forløbne del af dagen), hvor 0,5 repræsenterer middag." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Skift+%MOD1+Del sletter fra markøren til slutningen af den aktuelle sætning." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Brug kolonne- eller række-etiketter i formler. Hvis du for eksempel har to kolonner \"Tid\" og \"Km\", bruger du =Tid/Km for at få minutter pr. kilometer." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Generet af de “marcherende myrer” omkring cellerne i Calc? Tryk på Esc for at stoppe dem; det kopierede indhold er fortsat tilgængeligt til indsættelse." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Vil du være %PRODUCTNAME-ambassadør? Der findes certificeringer af udviklere, administratorer og undervisere." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Bland stående og liggende papirretning i et Calc-regneark ved at bruge forskellige sidetypografier på arkene." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klik på ikonet \"Indsæt specialtegn\" i værktøjslinjen \"Standard\" for at få hurtig adgang til dine nyligt brugte og favoritspecialtegn." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Vælg “Hierarkisk” på sidepanelet Typografier for at se sammenhængen mellem typografier." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Du kan bruge typografier til at gøre tabellerne i dit dokument konsistente. Vælg en af de foruddefinere via Typgrafier (F11) eller gennem Tabel ▸ Autoformater." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Konfigurer brugen af %MOD1-tasten til at åbne hyperlinks? Funktioner ▸ Indstillinger ▸%PRODUCTNAME ▸ Sikkerhed ▸ Sikkerhedsindstillinger ▸ “%MOD1+klik kræves for at følge hyperlinks”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Du ville gerne se beregninge af de enkelte elementer i en formel og markerer de respektive elementer og trykker på F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Du kan beskytte celler med formater ▸ Celler ▸ Cellebeskyttelse. For at forhindre indsættelse, sletning, omdøbning. flytning/sletning af ark bruger du Funktioner ▸ Beskyt ark." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Skrive langs med en kurve? Træk linjen, dobbeltklik, indtast tekseten og Formater ▸ Tekstboks og figur ▸ FontWork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Vil du kun have vist de højeste værdier i et regneark. Vælg menuen Data ▸ Autofilter, klik på rullemenuens pil og vælg “Top 10”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "For at fjerne sidetallet fra din indholdsfortegnelse går du til Indsæt ▸ Indholdsfortegnelse (eller højreklikker og Redigerer den tidligere indsatte fortegnelse). På fanebladet Elementer sletter du sidetallet (#) på Strukturlinjen." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Med Navigator kan du markere og flytte overskrifter og teksten under overskriften i både Navigator og dokumentet." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Få hurtigt et Math-objekt i Writer ved at indtaste din formel, markere den og bruge Indsæt ▸ Objekt ▸ Formel for at konvertere teksten." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "I %PRODUCTNAME er det meget let at installere den ny ordbog: de leveres som udvidelser." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME har en bærbar version, som giver dig bevægelighed. Selv uden administrator-rettigheder på din computer kan du også installere %PRODUCTNAME Bærbar på din harddisk." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer lader nummerere dine fodnoter efter side, kapitel eller dokument: Funktioner ▸ Fodnoter og slutnoter ▸ fanebladet Fodnoter ▸ Optælling." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Dit Writer-dokument genåbnes ikke igen med tekstmarkøren på den samme redigeringsposition, som den var på, da du gemte det? Tilføj for- eller efternavn i Funktioner ▸ Indstillinger ▸ % PRODUCTNAME ▸ Brugerdata ▸ Fornavn/efternavn." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Håndtering af citater? Brug en tredjepartsudvidelse." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Vil du indsætte en værdi på det samme sted på flere ark? Marker arkene: hold %MOD1-tasten nede og klik på deres faneblade, før du indtaster værdien." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Vil du at skjule noget tekst i et dokument? Markér teksten, vælg Indsæt ▸ Sektion og aktiver \"Skjul\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Du kan tilpasse den midterste museknap gennem Funktioner ▸ Indstillinger ▸ %PRODUCTNAME ▸ Vis ▸ Midterste musekanp." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Vil du udskrive to stående sider på en liggende (og reducere A¤ til A%)? Filer ▸ Udskriv… ▸ fanebladet Sidelayout og vælg 2 ved “Sider pr. ark”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "For hurtig adgang til dit dokuments bogmærker højreklikker du på sidetallet i statuslinjen (nederste venstre hjørne af dokumentvinduet)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Vælg et objekt i dokumentets baggrund ved hjælp af Markeringsværktøjet på værkstøjslinjen Tegning til at omringe det objekt, der skal markeres." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definer tekster, som du tit bruger, som Autotekst. Du kan derefter indsætte dem ved hjælp af navn, tastaturgenvej eller værktøjslinje i et hvilket som helst Writer-dokument." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Spil musik under en hel præsentation ved at knytte lydfilen til den første diasovergang uden at klikke på knappen “Anvend overgang på alle dias”." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 beregner ikke fra venstre til højre, men respekterer rækkefølgen: Parenteser – Eksponenter – Multiplikation – Division – Addition – Subtraktion." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Få %PRODUCTNAME-dokumentation og gratis bruger-guidebøger på:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Vil du fjerne alle <> på én gang og beholde teksten indeni? Rediger ▸ Søg og Erstat: Søg = [<>], Erstat = tom og marker \"Regulære udtryk under Andre indstillinger." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Brug for at præsentere en rapport skrevet med Writer? Filer ▸ Send ▸ Disposition til præsentation opretter automatisk en præsentationud fra dispositionen." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Vil du håndtere præsentationen af hyperlinks i et regneark? Indsæt dem med HYPERLINK-funktionen." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Deaktiver Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Calc ▸ Vis ▸ Zoom: “Synkroniser ark”, så at hvert ark i Calc har sin egen zoomfaktor" #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Du kan give hvert faneblad sin egen farve: højreklik på fanebladet eller brug Ark ▸ Arkfanefarve." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Spor celler, der bruges i formler, overordnede (Skift+F9) eller underordnede (Skift+F5) (eller brug Funktioner ▸ Detektiv). For hvert tryk går du et trin videre i kæden." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Indsæt og nummerer dine formler i et trin: indtast fn og tryk på F3. Der indsættes en Autotekst med formlen og nummer i en tabel." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Du kan oprette en billedfortegnelse ud fra objektnavne ikke bare ud fra billedteksterne." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Brug din Android eller iPhone til fjernkontol af din Impress-præsentation." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Vil du vide hvor mange dage, der er i denne måned? Brug funktionen DAGEIMÅNED(IDAG())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Bliver dine tal vist som ### i dit regneark? Kolonnen er for smal til at vise alle cifre." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Aktiver massive parallelle beregninger af formelceller gennem Funktioner ▸ Indstillinger ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Brug Forbindelsesværktøjet på værktøjslinjen Tegning i Draw/Impress for at oprette pæne rutediagrammer og kopier/indsæt evt. objektet i Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Din donation støtter vores verdensomspændende fællesskab." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Vil du lægge x måneder til en dato? Så brug =EDATO(dato; måneder)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Marker et sammenhængende område af celler med data og afgrænset af tomme rækker og kolonner ved at bruge %MOD1+* (numerisk tastatur)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Er dine accepterede datomønstre uhensigtsmæssige? Brug Funktioner ▸ Indstillinger ▸ Sprogindstillinger ▸ Sprog ▸ Accepterede datomønstre for at trimme mønstret." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vil du eksportere formler til CSV? Filer ▸ gem som ▸ Type: Tekst-CSV, aktiver “Rediger filterindstillinger” og marker “Gem celleformler” i den næste dialog." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Præsentationskonsollen er en storartet funktion, når du arbejder med %PRODUCTNAME Impress. har du prøvet den?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Slet flere kommentarer ved at markere celler kommentarer og bruge Ark ▸ Cellekommentarer ▸ Slet kommentar." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Konverter let dine dokumenter til PDF med et enkelt klik ved at klikke på PDF-ikonet på værktøjslinjen." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Vil du vælge et stort celleområde i Calc uden at skulle rulle? Skriv områdereferencen (fx A1:A1000) i navnefeltet og tryk på Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vil du se de gyldige kommandolinjeparametre? Start soffice med --help eller -h eller -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Tilpas dit ark eller udskriftområder til en side med Formater ▸ Side ▸ fanebladet Ark ▸ Skaleringstilstand." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Brug for et unummereret element på en liste? Brug \"Indsæt unummereret element” på værktøjslisten Nummerering." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Du kan rotere cellers tabelorientering med Tabel ▸ Egenskaber… ▸ Tekstforløb ▸ Tekstorientering." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "For at ændre linealernes 0/0-pynkt i %PRODUCTNAME Draw trækker du skæringspunktet mellem de to linealer fra det øverste, venstre hjørne ind i arbejdsområdet." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Flyt en kolonne i Calc ind mellem to andre i et trin? Klik på kolonneoverskriften og så på en celle i kolonnen, hold på museknappen og flyt kolonnen til målet med %MOD2-tasten." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Opmærk automatisk elementer til et alfabetisk stikordsregister med en konkordans-fil." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Brug Formater ▸ Juster (eller kontekstmenuen) til præcis placering af objekter i Draw/Impress: den centrerer på siden, hvis der er valgt et objekt henholdsvis en gruppe." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Brug ikke tabulatorer til at skabe rum i et Writer-dokument. Afhængigt af, hvad du vil, kan en tabel uden kanter være et bedre valg." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Ingen grund til at rulle igennem listen i Funktioner ▸ Tilpas ▸ Tastatur for at finde en genvej: skriv den bare." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME kan automatisk indsætte en nummereret billedtekst, når du indsætter objekter. Se Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Writer ▸ Autobilledtekst." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Med %PRODUCTNAME kan du bruge din Google Mail-konto til brevfletning. Udfyld Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Writer ▸ Brevflet e-mail." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Hold kolonneoverskrifter på et ark synlige, mens linjerne rulles med Vis ▸ Frys celler ▸ Frys første række." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Vil du begynde at arbejde med Basic-makroer? Kig på eksemplerne under Funktioner ▸ Makroer ▸Rediger Makroer." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Tilknyt Overskrift-afsnitstypografier med genvejstaster: %MOD1+1 tilknytter Overskrift 1, %MOD1+2 tilknytter Overskrift 2, osv." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Far ikke vild i store dokumenter. Brug Navigator (F5) til at finde vej gennem indholdet." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Rediger ▸ Søg og erstat lader dig indsætte specialtgn direkte: højreklik på inputfelterne eller tryk på Skift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Brug for tilpasset indhold i metadata-egenskaber? Filer ▸ Egenskaber ▸ fanebladet Brugertilpassede egenskaber lader dig oprette det, du vil." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vil du se, men ikke udskrive, et objekt i Draw? Træk det til et lag, hvor flaget \"Kan udskrives\" ikke er sat (højreklik på fanebladet og \"Modificer lag\"." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Indsæt den aktuelle dato i dit dokument ved at bruge Indsæt ▸ Felt ▸ Dato." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Har du mange billeder i dit Writer-dokument? Sæt fart i visningen ved at deaktivere Vis ▸ Billeder og diagrammer." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Brug Ark ▸ Udfyld celler ▸ Tilfældigt tal til at generere en tilfældig serie basseret på forskellige fordelinger." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Omdøb dine dias i Impress for at hjælpe dig selv med at definere \"Gå til side\"-handlinger og få en oversigt, der er mere klar end Dias 1, Dias 2, ..." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Dialogenen Kapitelnummerering lader dig indsætte tekst, der skal vises foran kapitelnummeret. Skriv fx. “Kapitel” for at få vist “Kapitel 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transponer en Writer-tabel? Kopier og sæt ind i Calc, transponer med Kopier/Indsæt speciel og derefter Kopier/Indsæt speciel ▸ Formateret tekst i Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Få værktøjet “Lodret Tekst” i værkstøjslinjen Tegning ved at aktivere Funktioner ▸ Indstillinger▸ Sprogindstillinger ▸ Sprog ▸ Standardsprog ▸ Asiatisk (og gør knappen synlig med et højreklik)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "For hurtigt at zoome ind på områdemarkeringen højreklikker du på Zoom-delen af Statuslinjen og vælger Optimal visning." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Du kan signere eksisterende PDF-filer og også verificere disse signaturer." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Opretter du ofte et dokument fra et andet? Overvej at bruge en skabelon." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Brug Formater ▸ Betinget formatering ▸ Håndter i Calc til at finde ud af, hvilke celler der er defineret med Betinget formatering." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Funktioner ▸ Detektiv ▸ Marker ugyldige data fremhvæver alle celler på arket, som indeholder værdier uden for valideringsreglerne." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Brug Indlejring af skrifttyper under Filer ▸ Egenskaber ▸ fanebladet Skrifttype til at opnå større interoperabilitet med andre kontorpakker." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Konverter en formel til en talværdi behøver du ikke at Kopiere/Indsætte; brug Data ▸ Beregn ▸ Formel til værdi." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Du kan omformatere alle kommentarer i et dokument ved at klikke på pilen nedad i en kommentar og vælge “Formater alle kommentarer”." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Vi du have den samme layout i skærmvisning og udskrift? Marker Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Calc ▸ Generelt ▸ Benyt printerens måleenheder ved teksformatering." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer hjælper dig med at lave backups: med Filer ▸ Gem en kopi… opretter du et nyt dokument, mens du bliver ved med at arbejde på originalen." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Når du har oprettet en Typografi, der er baseret på en anden, kan du indstast en procentværdi eller en punktværdi (fx. 110%, -2 pkt. eller +5 pkt.)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Kopier en kommentar uden at miste indholdet i målcellen ved at bruge Indsæt speciel og deaktivere alt i dialogen undtagen “Kommentarer”. Brug operationen “Tilføj” for ikke at overskrive det eksisterende indhold." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Konverter dine MS Office-dokumenter i bundter til OpenDocument-format med guiden Dokumentkonvertering i menuen Filer ▸ Guider ▸ Dokumentkonvertering." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Når du redigerer en celle på dens placering, kan du højreklikke på den og Indsæt(te) felter: Daro, Arknavn, Dokumenttitel osv." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Brug for at flytte en Writer-tabel? Tabel ▸ Marker ▸ Tabel og så Indsæt ▸ Ramme ▸ Ramme og flyt derhen, hvor du vil." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Med Funktioner ▸ Autotekst ▸ Autotekst ▸ Importer kan du vælge et Word-dokument eller en skabelon, er indeholder de Autotekst-elementer. du vil importere." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Indsæt ikke manuelle linjeskift mellem to afsnit. Det er bedre at ændre typografi-/afsnit-egenskaberne på fanebladet Indrykning og afstand ▸ Under afsnit." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Behold nullerne foran et tal ved at bruge celleformat-indstillingen “Foranstillede nuller” eller formater cellen som tekst, før du indtaster tallet." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vil du tilbage til standarden efter at have anvendt en listetypografi? Klik på Punktopstilling til/fra på værktøjslinjen Formatering." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Slet alle dine udskriftsområder i et trin: marker alle ark og vælg så Formater ▸ Udskriftsområder ▸ Slet." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Sæt baggrundsbilleder på regneark ved hjælp af Indsæt ▸ Billede eller træk en baggrund fra Galleriet og så Formater ▸ Arranger ▸ I baggrunden." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Har du svært ved at indsætte tekst fra PDF-filer eller netsider i dokumenter? Prøv at indsætte som uformateret tekstt (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "I Calc kan du bruge TRIMMIDDELVÆRDI() til at returnere middelværdien af et datasæt uden de(n) højeste og laveste værdi(er)." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Den fjerde vilkårlige parameter i Calc-funktionen LOPSLAG viser, om den første data-kolonne er blevet sorteret. Hvis ikke, indtast FALSK eller 0(nul)." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Værktøjslister afhænger af sammenhængen – de åbnes afhængigt af sammenhængen. Hvis du ikke ønsker det, deaktiver dem i Vis ▸ Værktøjslinjer." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Opret et Hoveddokument ud fra det aktuelle Writer-dokument? Filer ▸ Send ▸ Opret Hoveddokument (underdokumenter oprettes afhængigt af disposition)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Vil du centrere celler på en udskrift fra Calc? Formater ▸ Side, fanebladet Side ▸ Layoutindstillinger ▸ Tabeljustering." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Rammer kan sammenkædes, så teksten kan flyde fra den ene til den anden ligesom i dtp-programmer." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Opret et diagram baseret på en Writer-tabel ved at klikke på tabellen og vælge Indsæt ▸ Diagram." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Marker indstillinger i Funktioner ▸ Indstillinger ▸ %PRODUCTNAME Writer ▸ Formateringshjælp ▸ Vis formatering for at specificere, hvilke ikke-skrivbare tegn, der skal vises." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Vil du hoppe til en bestemt side med dens sidetal? Klik på det yderste venstre element på statuslinje eller brug Rediger ▸ Gå til side… eller tryk på %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME understøtter over 150 sprog." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Deaktiver Præsentation ▸ Indstillinger ▸ Præsentation altid øverst, hvis du har for, at et andet program vises foran din præsentation." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Vil du finde ord med fed skrift i et Writer-dokument? Rediger ▸ Søg og erstat ▸ Andre indstillinger ▸ Attributter ▸ Skrifttypevægt." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Du kan sortere afsnit eller tabelrækker alfabetisk eller nummerering gennem Funktioner ▸ Sorter." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Indsæt et afsnit før (efter) en sektion ved at trykke på %MOD2+Enter i begyndelsen (slutningen) af sektionen." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME har et skabeloncenter til at oprette dokumenter, der ser godt ud – prøv det." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Beregn tilbagebetalingsrater med Calc: for eksempel R.YDELSE(2%/12;36;2500) rentesats pr. afdragspriode 2%/12, 36 måneder, lånebeløb 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Kan du ikke finde det, du vil, med funktionen LOPSLAG i Calc? Med INDEKS og SAMMENLIGN kan du gøre alt!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Vil du vise en skjult kolonne? Klik på en celle i kolonne B, tryk på den venstre museknap, flyt musen til venstre og slip. Derefter aktiverer du den med Formater ▸ Kolonner ▸ Vis." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "For at ændre sidetallet på en side i Writer går du til det første afsnits egenskaber og på fanebladet Tekstforløb markerer du Skift ▸ Indsæt og indtaster sidetallet." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Kør %PRODUCTNAME i enhver browser ved hjælp af RollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Mærkelige fejlkoder i Calc: Err: fulgt af et tal? Denne side giver forklaringen:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Medtag et afsnit, som ikke er en overskrift, i indholdsfortegnelsen ved at ændre Disposition og nummerering i afsnitsindstillingerne til et dispositionsniveau." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Udover indholdsfotegnelse kan %PRODUCTNAME oprette stikordsregister, billed-, tabel- og objekt-fortegnelser, Litteraturliste og brugerdefinerede indekser." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Kan du ikke ændre eller slette en tilpasset celletypografi? Tjek alle ark, ingen af dem skulle være beskyttet." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Har du brug for at udfylde en serie? Marker celleområdet og vælg Ark ▸ Udfyld celler ▸ Fyld serie og vælg mellem Lineær, Vækst, Dato og Autofyld." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Vil du vide, om der er henvist til en celle i andre cellers formler ? Funktioner ▸ Detektiv ▸ Spor underordnede (skift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "I indtastningsfeltet Erstat i Autokorrekturs indstillinger kan du bruge jokere *" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Vil du duplikere linjen ovenfor? Tryk på %MOD1+D eller brug Ark ▸ Udfyld celler ▸ Nedad." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Søg i flere regneark ved at markere dem, før du starter søgningen." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Træk-og-slip celler fra Calc til et dias' Normal-visning opretter en tabel, trukket ind i Dispositions-visningen opretter hver celle en linje i dispositionen," #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME hjælper dig med ikke at indtaste to eller flere mellemrum i Writer. Aktiver Funktioner▸ Autokorrekturindstillinger ▸ fanebladet Indstillinger ▸ Ignorer dobbelte mellemrum." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Vil du have markøren til at gå ind i den næste celle til højre, når du har indtastet en værdi i Calc? Brug Tabulatortasten i stedet for Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Få vist rullebjælken til venstre ved at aktivere Funktioner ▸ Indstillinger ▸ Sprogindstillinger ▸ Sprog ▸ ▸" #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Træk et formateret objekt ind i vinduet Typografier og formatering. Der åbnes et dialogfelt og du indtaster bare navnet på den nye typografi." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nye versioner af %PRODUCTNAME giver nye funktioner, fejlretninger, og større sikkerhed. Hold din software opdateret!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Udvikler du nye XSLT- og XML-filtre?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Tryk på Skift+F1 for at se et tilgængeligt, udvidet værktøjstip i dialogfelter, når \"Udvidede tips\" ikke er aktiveret under Funktioner ▸ Indstillinger ▸ %PRODUCTNAME ▸ Generelt." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Hjælp" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Flere oplysninger" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Udfør denne handling nu..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Dagens tip: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘  Kommando" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥  Alt" diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-26 13:37+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -19404,7 +19404,7 @@ "tit\n" "help.text" msgid "Mod Operator" -msgstr "Mod-operator" +msgstr "Rest-operator" #. t5HBD #: 03070600.xhp @@ -19413,7 +19413,7 @@ "bm_id3150669\n" "help.text" msgid "MOD operator (mathematical)" -msgstr "mod-operator (matematisk)" +msgstr "REST-operator (matematisk)" #. Rgq36 #: 03070600.xhp @@ -19449,7 +19449,7 @@ "par_id3147560\n" "help.text" msgid "Result = Expression1 MOD Expression2" -msgstr "Resultat = Udtryk1 MOD Udtryk2" +msgstr "Resultat = Udtryk1 REST Udtryk2" #. xiy2T #: 03070600.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-03-26 10:36+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -53206,7 +53206,7 @@ "hd_id1000013\n" "help.text" msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3." -msgstr "" +msgstr "Denne funktion er en del af Open Document Formatet til Office Applications (OpenDocument) standard Version 1.3." #. SGHPh #: calculate.xhp @@ -53242,7 +53242,7 @@ "tit\n" "help.text" msgid "Cell Styles" -msgstr "" +msgstr "Celletypografier" #. 8o4Ez #: cell_styles.xhp @@ -53251,7 +53251,7 @@ "hd_id811593560413206\n" "help.text" msgid "Cell Styles" -msgstr "" +msgstr "Celletypografier" #. AZNrM #: common_func.xhp @@ -54610,7 +54610,7 @@ "par_id1001601332672155\n" "help.text" msgid "This function is always recalculated whenever a recalculation occurs." -msgstr "" +msgstr "Denne funktion genberegnes altid, når som helst der sker en genberegning." #. 8DbP2 #: func_aggregate.xhp @@ -56482,7 +56482,7 @@ "par_id831605805755075\n" "help.text" msgid "For these examples to work as described, make sure that Enable regular expressions in formulas is selected in %PRODUCTNAME - PreferencesTools - Options - $[officename] Calc - Calculate." -msgstr "" +msgstr "For at disse eksempler kan fungere som beskrevet sikrer du dig, Aktiver regulære udtryk i formler er markeret i %PRODUCTNAME ▸ IndstillingerFunktioner ▸ Options ▸ $[officename] Calc ▸ Beregn." #. iHFsx #: func_countifs.xhp @@ -64458,7 +64458,7 @@ "par_id3154502\n" "help.text" msgid "0 or missing" -msgstr "" +msgstr "0 eller mangler" #. CkPny #: func_yearfrac.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-01-29 20:36+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2021-03-26 10:36+0000\n" +"Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563711617.000000\n" #. 3B8ZN @@ -8464,7 +8464,7 @@ "par_idN108E9\n" "help.text" msgid "Choose Tools - Customize - Menus tab, click the gear Icon gear menu dropdown menu and choose Add." -msgstr "Vælg Funktioner - Tilpas (fanebladet) Menuer, klikker du på værktøjs ikonet Værktøjsmenu rullemenu og vælger Tilføj." +msgstr "Vælg Funktioner ▸ Tilpas ▸ (fanebladet) Menuer, klikker du på værktøjs ikonet Værktøjsmenu rullemenu og vælger Tilføj." #. H7agM #: 00000406.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-03-04 16:36+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Kapitæler - Ændrer de valgte små bogstaver til STORE bogstaver og formindsker så deres størrelse." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinkende tekst blinkende skrifttyper" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinkende" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Får de valgte tegn til at blinke. Du kan ikke ændre blinkets frekvens." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-03-10 14:36+0000\n" +"PO-Revision-Date: 2021-04-19 10:37+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -11275,7 +11275,7 @@ "hd_id3109850\n" "help.text" msgid "Highlighting" -msgstr "" +msgstr "Fremhævning" #. TLSg8 #: 02160000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-15 09:36+0000\n" +"PO-Revision-Date: 2021-03-26 10:36+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -2903,7 +2903,7 @@ "par_id3154860\n" "help.text" msgid "To run an SQL query for filtering data in the database, use the Query Design View." -msgstr "For at køre en SQL-forespørgsel og filtrere data i databasen bruger du visningen Forespørgselsdessign." +msgstr "For at køre en SQL-forespørgsel og filtrere data i databasen bruger du visningen Forespørgselsdesign." #. Ck9G4 #: 11080000.xhp @@ -7097,7 +7097,7 @@ "par_idN105F8\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "E-maildokument" #. Qxg2W #: menufile.xhp @@ -7106,7 +7106,7 @@ "par_idN105FC\n" "help.text" msgid "Opens the default email application to send a new email. The current database file is appended as an attachment. You can enter the subject, the recipients and a mail body." -msgstr "" +msgstr "Åbner standard-e-mailprogrammet for at sende en ny e-mail. Den aktuelle databasefil tilføjes som vedhæftning. Du kan indtaste emnet, modtager og en mailtekst." #. 9WihT #: menufile.xhp @@ -7115,7 +7115,7 @@ "par_idN105FF\n" "help.text" msgid "Report as Email" -msgstr "" +msgstr "Rapport som e-mail" #. XWAoV #: menufile.xhp @@ -7124,7 +7124,7 @@ "par_idN10603\n" "help.text" msgid "Opens the default email application to send a new email. The selected report is appended as an attachment. You can enter the subject, the recipients and a mail body. A dynamic report is exported as a copy of the database contents at the time of export." -msgstr "" +msgstr "Åbner standard-e-mailprogrammet for at sende en ny e-mail. Den aktuelle rapport tilføjes som vedhæftning. Du kan indtaste emnet, modtager og en mailtekst. En dynamisk rapport eksporteres som en kopi af databasens indhold på eksporttidspunktet." #. 9cSVg #: menufile.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-02-14 22:09+0000\n" +"PO-Revision-Date: 2021-03-27 13:36+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562822777.000000\n" #. iharT @@ -923,7 +923,7 @@ "hd_id3149346\n" "help.text" msgid "Defining Graphics or Colors in the Background of Pages (Watermark)" -msgstr "" +msgstr "Definition af grafik eller farver i sidernes baggrund (Vandmærke)" #. Fa7Pn #: background.xhp @@ -941,7 +941,7 @@ "par_id3149581\n" "help.text" msgid "On the Area tab page, select a background color or a background graphic." -msgstr "" +msgstr "PÅ fanebladet Flade vælger du en baggrundsfarve eller en baggrundsgrafik." #. WCBmU #: background.xhp @@ -1328,7 +1328,7 @@ "par_idN106E0\n" "help.text" msgid "To insert a line break in a spreadsheet cell, press the CommandCtrl+Enter keys." -msgstr "" +msgstr "For at indsætte et linjeskift i en regnearkscelle trykker du på tasterne KommandoCtrl+Enter." #. y6vE4 #: breaking_lines.xhp @@ -1346,7 +1346,7 @@ "par_id0509200914160968\n" "help.text" msgid "You can search for a newline character in the Find & Replace dialog by searching for \\n as a regular expression. You can use the text function CHAR(10) to insert a newline character into a text formula." -msgstr "" +msgstr "Dum kan søge efter tegnet Ny linje i dialogen Søg og erstat ved at søge efter \\n som et regulært udtryk. Du kan bruge tekstfunktionen CHAR(10) til at indsætte tegnet Ny linje i en tekstformel." #. BsAfw #: breaking_lines.xhp @@ -1373,7 +1373,7 @@ "par_idN106F1\n" "help.text" msgid "Choose Format - Cells - Alignment." -msgstr "" +msgstr "Vælg Formater ▸ Celler ▸ Justering." #. jjEEf #: breaking_lines.xhp @@ -1400,7 +1400,7 @@ "par_idN10707\n" "help.text" msgid "To insert a line break in a text document table cell, press the Enter key." -msgstr "" +msgstr "For at indsætte et linjeskift i en tabelcelle i et tekstdokument trykker du på tasten Enter." #. Gm3yj #: breaking_lines.xhp @@ -2768,7 +2768,7 @@ "par_id170820161605428591\n" "help.text" msgid "The Remote files dialog appears. Select the remote file server." -msgstr "Dialogen Eksterne filer visees. Vælg den eksterne filserver." +msgstr "Dialogen Eksterne filer vises. Vælg den eksterne filserver." #. wQjzG #: cmis-remote-files.xhp @@ -6260,7 +6260,7 @@ "par_id3153223\n" "help.text" msgid "Query Design" -msgstr "" +msgstr "Forespørgselsdesign" #. 2ArGc #: data_forms.xhp @@ -6818,7 +6818,7 @@ "par_idN1065F\n" "help.text" msgid "You see the Query Design window." -msgstr "" +msgstr "Du ser vinduet Forespørgselsdesign." #. xGFGr #: data_register.xhp @@ -7484,7 +7484,7 @@ "par_id3149481\n" "help.text" msgid "More information about wildcards and operators can be found in Query Design." -msgstr "" +msgstr "Flere oplysninger om jokere og operatorer kan findes i Forespørgselsdesign." #. cEDEo #: data_search2.xhp @@ -7610,7 +7610,7 @@ "par_id3154760\n" "help.text" msgid "Each field can only accept data corresponding to the specified field type. For example, it is not possible to enter text in a number field. Memo fields in dBASE III format are references to internally-managed text files which can hold up to 64 kB text." -msgstr "" +msgstr "Hvert felt kan kun acceptere data, der svarer til den angivne felttype. Det er for eksempel ikke muligt at indtaste tekst i et numerisk felt. Memo-felter i dBASE III-format er referencer til internt håndterede tekstfiler, som kan indeholde op til 64 kB tekst." #. oApsQ #: data_tabledefine.xhp @@ -7700,7 +7700,7 @@ "par_idN10617\n" "help.text" msgid "Data is stored in tables. As an example, your system address book that you use for your email addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the email field." -msgstr "" +msgstr "Data gemmes i tabeller. Som et eksempel er dit systems adressebog, som du bruger til dine e-mailadresser, en tabel i adressebogs-databasen. Hver adresse er en datapost, præsenteret som en række i den tabel. Dataposter betår af datafelter, for eksempel felterne Fornavn og Efternavn samt feltet E-mail." #. No5nx #: data_tables.xhp @@ -7844,7 +7844,7 @@ "par_idN10795\n" "help.text" msgid "You see the View Design window, which is almost the same as the Query Design window." -msgstr "" +msgstr "Du ser vinduet Designvisning, som er næsten det samme som vinduet Forespørgselsdesign." #. bTx8G #: data_view.xhp @@ -8033,7 +8033,7 @@ "par_id3154909\n" "help.text" msgid "Create new form document, edit form controls, Form Wizard" -msgstr "" +msgstr "Opret nyt formular-dokument, rediger formularkontrolelementer, Formularguide" #. sD4GB #: database_main.xhp @@ -8420,7 +8420,7 @@ "par_id7953123\n" "help.text" msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed email pretending he is working for your bank. You will get that email, and the email or the document within has the \"valid signed\" icon." -msgstr "" +msgstr "Eksempel: Tænk på nogen, der vil kamuflere sin identitet, så han ligner en afsender fra din bank. Han kan let få et certifikat med et falsk navn og så sende en eller anden e-mail, der foregiver, at han arbejder for din bank. Du får e-mailen og e-mailen eller det vedhæftede dokument har ikonet \"gyldigt signeret\"." #. DGz9C #: digital_signatures.xhp @@ -10283,7 +10283,7 @@ "hd_id3153561\n" "help.text" msgid "To make a button visible on a toolbar" -msgstr "" +msgstr "Gør en knap synlig på en værktøjslinje" #. c3Nvo #: edit_symbolbar.xhp @@ -10292,7 +10292,7 @@ "par_id3159157\n" "help.text" msgid "Open the context menu of the toolbar (right click) and choose Visible Buttons and then select the button you want to display." -msgstr "" +msgstr "Åbn værktøjslinjens kontekstmenu (hæjreklik) og vælg Synlige knapper og vælg så den knap, du vil vise." #. AdQVC #: edit_symbolbar.xhp @@ -10310,7 +10310,7 @@ "hd_id3151384\n" "help.text" msgid "To add a button to a toolbar" -msgstr "" +msgstr "Tilføj en knap til en værktøjslinje" #. NAZNp #: edit_symbolbar.xhp @@ -10319,7 +10319,7 @@ "par_id3147264\n" "help.text" msgid "Choose Tools - Customize, and click on the Toolbars tab." -msgstr "" +msgstr "Vælg Funktioner ▸ Tilpas og klik på fanebladet Værktøjslinjer." #. p5667 #: edit_symbolbar.xhp @@ -10328,7 +10328,7 @@ "par_id3154071\n" "help.text" msgid "In the Target box, select the toolbar you want to change." -msgstr "" +msgstr "I feltet Mål vælger du den værktøjslinje, du vil ændre." #. aABvW #: edit_symbolbar.xhp @@ -10337,7 +10337,7 @@ "par_id3148797\n" "help.text" msgid "Select the command to be added in the Available Commands box. (Use the Category and/or Search boxes to restrict possibilities.)" -msgstr "" +msgstr "Vælg den kommando, der skal tilføjes til feltet Tilgængelige kommandoer. (Brug felterne Kategori og/eller Søg til at begænse mulighederne.)" #. W6XK5 #: edit_symbolbar.xhp @@ -10346,7 +10346,7 @@ "par_id611603924436655\n" "help.text" msgid "Click the Right Arrow icon to add the selected command." -msgstr "" +msgstr "Klik på ikonet Højrepil for at tilføje den valgte kommando." #. E4p3Y #: edit_symbolbar.xhp @@ -10355,7 +10355,7 @@ "par_id611603924900693\n" "help.text" msgid "The check box in the Assigned Commands list controls whether the command is visible on the toolbar." -msgstr "" +msgstr "Afkrydsningsfeltet på listen Tildelte kommandoer kontrollerer, om kommandoen er synlig på værktøjslinjen." #. HcHB7 #: edit_symbolbar.xhp @@ -10364,7 +10364,7 @@ "par_id3152922\n" "help.text" msgid "You can rearrange the Assigned Commands list by selecting a command name and clicking Move Up and Move Down." -msgstr "" +msgstr "Du kan omarrangere listen Tildelte kommandoer ved at markere et kommandonavn og klikke på Flyt op og Flyt Ned." #. VgXfX #: edit_symbolbar.xhp @@ -10382,7 +10382,7 @@ "tit\n" "help.text" msgid "Sending Documents as Email" -msgstr "" +msgstr "Sende dokumenter som e-mail" #. noFBE #: email.xhp @@ -10391,7 +10391,7 @@ "bm_id3153345\n" "help.text" msgid "documents; sending as emailsending; documents as emailemail attachmentsfiles; sending as emailtext documents;sending as emailspreadsheets; sending as emaildrawings; sending as emailpresentations; sending as emailattachments in emails" -msgstr "" +msgstr "dokumenter; sende som e-mailsende; dokumenter som e-maile-mail-vedhæftningerfiler; sende som e-mailtekstdokumenter;sende som e-mailregneark; sende som e-mailtegninger; sende som e-mailpresentations; sende som e-mailvedhæftninger i e-mails" #. CU2Ym #: email.xhp @@ -10400,7 +10400,7 @@ "hd_id3153345\n" "help.text" msgid "Sending Documents as Email" -msgstr "" +msgstr "Sende dokumenter som e-mail" #. Z3E7r #: email.xhp @@ -10409,7 +10409,7 @@ "par_id3154897\n" "help.text" msgid "Working in $[officename], you can send the current document as an email attachment." -msgstr "" +msgstr "Mens du arbejder i $[officename], kan du sende det aktuelle dokument som e-mail-vedhæftning." #. 8jsBd #: email.xhp @@ -10436,7 +10436,7 @@ "par_id3150986\n" "help.text" msgid "In your email program, enter the recipient, subject and any text you want to add, then send the email." -msgstr "" +msgstr "I dit e-mailprogram indtaster du modtager, emne og vilkårlig tekst, du vil tilføje og sender så e-mailen." #. XdVXq #: email.xhp @@ -10445,7 +10445,7 @@ "par_id3595385\n" "help.text" msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.
For a text document, choose File - Send - Email as Microsoft Word. For a spreadsheet, choose File - Send - Email as Microsoft Excel. And for a presentation, choose File - Send - Email as Microsoft PowerPoint.
If you want to send the document as a read-only file, choose File - Send - Email as PDF.
These commands do not change your current document. Only a temporary copy is created and sent." -msgstr "" +msgstr "I tilfælde af, at du vil sende e-mailen til en modtager, som udelukkende har software, der ikke kan læse OpenDocument-formatet, kan du sende det aktuelle dokument i et ofte brugt proprietært format.
Til et tekstdokument vælger du Filer ▸ Send ▸ E-mail som Microsoft Word. Til et regneark vælger du Filer ▸ Send ▸ E-mail som Microsoft Excel. Og til en præsentation vælger du Filer ▸ Send ▸ E-mail som Microsoft PowerPoint.
Hvis du vil sende dokumentet som en skrivebeskyttet fil vælger du Filer ▸ Send ▸ E-mail som PDF.
Disse kommandoer ændrer ikke dit aktuelle dokument, Der oprettes og sendes udelukkende en midlertidig kopi." #. MK28A #: error_report.xhp @@ -10454,7 +10454,7 @@ "tit\n" "help.text" msgid "Crash Report Tool" -msgstr "" +msgstr "Værktøjet Nedbrudsrapport" #. uvF7J #: error_report.xhp @@ -10463,7 +10463,7 @@ "bm_id3150616\n" "help.text" msgid "Crash Report Tool reports;crash reports crash reports activating;Crash Report Tool" -msgstr "" +msgstr "Værktøjet Nedbrudsrapport rapporter;nedbrudsrapporter nedbrudsrapporter aktivere;værktøjet Nedbrudsrapport" #. sNc7D #: error_report.xhp @@ -10472,7 +10472,7 @@ "hd_id3150616\n" "help.text" msgid "Crash Report Tool" -msgstr "" +msgstr "Værktøjet Nedbrudsrapport" #. ECi7s #: error_report.xhp @@ -10481,7 +10481,7 @@ "par_id3153345\n" "help.text" msgid "The Crash Report Tool starts automatically after a program crash occurs." -msgstr "" +msgstr "Værktøjet Nedbrudsrapport starter automatisk, efter at programmet er brudt ned." #. MGnxx #: error_report.xhp @@ -10490,7 +10490,7 @@ "par_id3147088\n" "help.text" msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report." -msgstr "" +msgstr "Værktøjet Nedbrudsrapport samler nødvendige oplysninger, der kan hjælpe programudviklerne med at forbedre koden, sådan at denne muligvis kan undgås. Hjælp os venligst med at forbedre softwaren og sende den genererede nedbrudsrapport." #. aWFas #: error_report.xhp @@ -10499,7 +10499,7 @@ "hd_id3148538\n" "help.text" msgid "Starting the Crash Report Tool" -msgstr "" +msgstr "Start af værktøjet Nedbrudsrapport" #. nTAZD #: error_report.xhp @@ -10508,7 +10508,7 @@ "par_id3149811\n" "help.text" msgid "With most program crashes the Crash Report Tool will start automatically." -msgstr "" +msgstr "Ved de fleste nedbrud af programmet starter værktøjet Nedbrudsrapport automatisk." #. ioZKn #: error_report.xhp @@ -10526,7 +10526,7 @@ "par_id711605615413339\n" "help.text" msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the Send Crash Report button." -msgstr "" +msgstr "Vælg afkrydsningsfeltet, hvis du vil genstarte %PRODUCTNAME i sikker tilstand. Klik derefter på knappen Send nedbrudsrapport." #. SPdCD #: error_report.xhp @@ -10535,7 +10535,7 @@ "par_id521605621252890\n" "help.text" msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser." -msgstr "" +msgstr "Hvis en nedbrudsrapport er sendt med succes, vil et dialogfelt opgive en URL til denne rapport. For at se rapporten kopierer du URLen og indsætter den i en webbrowser." #. 3PFBB #: error_report.xhp @@ -10544,7 +10544,7 @@ "par_id3149670\n" "help.text" msgid "You will not get an answer to your crash report. If you need support, please visit Community Assistance for an overview of different possibilities." -msgstr "" +msgstr "Du får ikke svar på din nedbrudsrapport. Hvis du har behov for hjælp, beder vi dig besøge Hjælp fra fællesskabet for et overblik over de forskellige muligheder." #. jaz2y #: error_report.xhp @@ -10553,7 +10553,7 @@ "hd_id3150792\n" "help.text" msgid "What Data are Sent?" -msgstr "" +msgstr "Hvilke data sendes?" #. CHASG #: error_report.xhp @@ -10562,7 +10562,7 @@ "par_id3154366\n" "help.text" msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: dbghelp.dll on Windows systems; clone(), ptrace() and /proc directory on Linux systems; Apple's Crash Reporter on Mac systems." -msgstr "" +msgstr "Nedbrudsrapportten sender information og den fejltype, der udløste nedbruddet og hukommelsesindholdet i processen på tidspunktet for nedbruddet. Dette hukommelsesindhold indeholder: en liste hentede biblioteler og deres versionsnummer; en liste over de aktuelle tråde med deres stakkes hukommelsesindhold og processor-registertilstande. Hukommelsesspor samles lokalt af standard systemværktøjer: dbghelp.dll på Windows-systemer; clone(), ptrace() og mappen /proc på Linux systemer; Apple's Crash Reporter på Mac-systemer." #. yu8Rq #: error_report.xhp @@ -10580,7 +10580,7 @@ "par_id3150504\n" "help.text" msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request." -msgstr "" +msgstr "Nedbrudsrapporten er anonym. Der sendes ingen identifikationsoplysninger og intet dokumentindhold. Rapportdata sendes som en multipart HTTP POST-anmodning." #. uD7Ga #: export_ms.xhp @@ -11642,7 +11642,7 @@ "par_id951604586347866\n" "help.text" msgid "Push Button Icon" -msgstr "" +msgstr "ikonet Trykknap" #. 4GWCF #: formfields.xhp @@ -11678,7 +11678,7 @@ "par_idN107B2\n" "help.text" msgid "Right-click the button and choose Control Properties." -msgstr "" +msgstr "Højreklik på knappen og vælg Kontrolegenskaber." #. Atf22 #: formfields.xhp @@ -11732,7 +11732,7 @@ "par_idN10828\n" "help.text" msgid "Right-click the button and choose Form Properties." -msgstr "" +msgstr "Højreklik på knappen og vælg Formularegenskaber." #. kGATC #: formfields.xhp @@ -12533,7 +12533,7 @@ "par_id3147008\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General and specify in the Save URLs relative to field if $[officename] creates relative or absolute hyperlinks. Relative linking is only possible when the document you are working on and the link destination are on the same drive." -msgstr "" +msgstr "Vælg %PRODUCTNAME ▸ IndstillingerFfunktionner ▸ IndstillingerHent/Gem - Generelt og angiv i felterne Gem URLer relativt til, om $[officename] opretter relative eller absolute hyperlinks. Relativ linkning er kun mulig, når det dokument, du arbejder på, og linkmålet er på det samme drev." #. Ue6zh #: hyperlink_rel_abs.xhp @@ -13406,7 +13406,7 @@ "par_id3155535\n" "help.text" msgid "To view a repertoire of all characters, choose Insert - Special Character." -msgstr "" +msgstr "Hvis du vil se hele tegn-repertoiret, vælger du Indsæt ▸ Specialtegn." #. fFAT9 #: insert_specialchar.xhp @@ -19832,7 +19832,7 @@ "par_id381566315781439\n" "help.text" msgid "Generate QR Code for any text or URL." -msgstr "" +msgstr "Generering af QR-kode til en vilkårlig tekst eller URL." #. SzeNM #: qrcode.xhp @@ -19868,7 +19868,7 @@ "par_id251566316519649\n" "help.text" msgid "The text from which to generate the QR code." -msgstr "" +msgstr "Teksten, der skal genereres en QR-kode til." #. 6mj5K #: qrcode.xhp @@ -19949,7 +19949,7 @@ "par_id981566316947064\n" "help.text" msgid "The width in dots of the border surrounding the QR code." -msgstr "" +msgstr "Bredden i punkter af rammen omkring QR-koden." #. kZPNW #: qrcode.xhp @@ -20156,7 +20156,7 @@ "par_id551562796791417\n" "help.text" msgid "Redacted Export (Black): finalize your document by converting the semitransparent redaction shapes to opaque black and export as pixels in the PDF file." -msgstr "" +msgstr "Maskeret Eksport (Sort): færdiggør dit dokument ved at konvertere de halvgennemsigtige maskeringsformer til heldækkende sort og eksporter dem som pixler i PDF-filen." #. HSvWX #: redaction.xhp @@ -20165,7 +20165,7 @@ "par_id191562796822685\n" "help.text" msgid "Redacted Export (White): finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as pixels in the PDF file." -msgstr "" +msgstr "Maskeret Eksport (Hvidt): færdiggør dit dokument ved at konvertere de halvgennemsigtige maskeringsformer til heldækkende hvidt og eksporter dem som pixler i PDF-filen." #. 2w5mE #: redaction.xhp @@ -20255,7 +20255,7 @@ "par_id3146957\n" "help.text" msgid "Let's say you also emailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by email with your colleague's suggestions." -msgstr "" +msgstr "Lad os sige, at du også har e-mailet en kopi af rapporten til en god ven og kollega, som tidligere har forsket i et lignende emne. Du har bedt om nogle få forslag, og nu er dokumentet returneret via e-mail med din kollegas forslag." #. CoW6n #: redlining.xhp @@ -20813,7 +20813,7 @@ "hd_id3159201\n" "help.text" msgid "Protecting Changes" -msgstr "" +msgstr "Beskyttelse af ændringer" #. jVeUw #: redlining_protect.xhp @@ -21803,7 +21803,7 @@ "tit\n" "help.text" msgid "Creating and Changing Default and Custom Templates" -msgstr "" +msgstr "Oprettelse og ændring af standard- og tilpassede skabeloner" #. CaTEi #: standard_template.xhp @@ -21812,7 +21812,7 @@ "bm_id3154285\n" "help.text" msgid "modifying, see changingchanging, see also editing and replacingdefault templates; changingdefault templates; creatingdefaults;documentscustom templatesupdating; templatesediting;templatestemplates;editing and savingsaving;templatesresetting;templates" -msgstr "" +msgstr "skifte, se ændreændre, se også redigere og omplacerestandard-skabeloner; ændrestandard-skabeloner; oprettestandarder;dokumenterstilpasse skabeloneropdatere; skabelonerredigere;skabelonerskabeloner;redigere og gemme gemme;skabelonernulstille;skabeloner" #. fZ8SR #: standard_template.xhp @@ -21821,7 +21821,7 @@ "hd_id3154285\n" "help.text" msgid "Creating and Changing Default and Custom Templates" -msgstr "" +msgstr "Oprette og ændre standard- og tilpassede skabeloner" #. nWgSj #: standard_template.xhp @@ -21839,7 +21839,7 @@ "par_id3159152\n" "help.text" msgid "You can define document templates for each $[officename] application." -msgstr "" +msgstr "Du kan definere dokumentskabeloner til hvert $[officename]-program." #. T3xE3 #: standard_template.xhp @@ -21848,7 +21848,7 @@ "hd_id3150792\n" "help.text" msgid "Creating a Default Template" -msgstr "" +msgstr "Oprettelse af en standard-skabelon" #. WaygD #: standard_template.xhp @@ -21857,7 +21857,7 @@ "par_id3154365\n" "help.text" msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template." -msgstr "" +msgstr "Først åbner du enten en eksisterende $[officename]-skabelon og ændrer den, eller åbner et nyt dokument og redigerer det, som det er nødvendigt for at oprette den ønskede skabelon." #. bnC8i #: standard_template.xhp @@ -21866,7 +21866,7 @@ "par_id3145748\n" "help.text" msgid "Save the document by choosing File - Templates - Save as Template, then enter the template name, click the Set as default template checkbox, and save in the My Templates category." -msgstr "" +msgstr "Gem dit dokument ved at vælge Filer ▸ Skabeloner ▸ Gem som skabelon og indtast så skabelonens navn, klik på afkrydsningsfeltet Sæt som standardskabelon og gem dokumentet i kategorien Mine skabeloner." #. td5TZ #: standard_template.xhp @@ -21875,7 +21875,7 @@ "par_id3146901\n" "help.text" msgid "The next time you open a new text document, the new document will be based on this new default template." -msgstr "" +msgstr "Næste gang du åbner et nyt tekstdokument, bliver det baseret på denne nye standard-skabelon." #. MEA5R #: standard_template.xhp @@ -21884,7 +21884,7 @@ "hd_id751605458425017\n" "help.text" msgid "Modifying a Default Template" -msgstr "" +msgstr "Ændring af en Standard-skabelon" #. 7bPEX #: standard_template.xhp @@ -21893,7 +21893,7 @@ "par_id3154011\n" "help.text" msgid "Choose File - Templates - Manage Templates." -msgstr "" +msgstr "Vælg Filer ▸ Skabeloner ▸ Håndter Skabeloner." #. mhwYW #: standard_template.xhp @@ -21902,7 +21902,7 @@ "par_id531605464645795\n" "help.text" msgid "Use Filter to select the type of document." -msgstr "" +msgstr "Brug Filter til at vælge dokumenttypen." #. qaBUc #: standard_template.xhp @@ -21911,7 +21911,7 @@ "par_id981605464830645\n" "help.text" msgid "The default template is marked with a green check mark. Right-click that template and choose Edit." -msgstr "" +msgstr "Standardskabelonen er markeret med en grøn markering. Højreklik på denne skabelon og vælg Rediger." #. Us6Qr #: standard_template.xhp @@ -21920,7 +21920,7 @@ "par_id211605464919603\n" "help.text" msgid "Make desired changes, choose File - Save, and close the document." -msgstr "" +msgstr "Foretag de ønskede ændringer, vælg Filer ▸ Gem og luk dokumentet." #. Mype2 #: standard_template.xhp @@ -21929,7 +21929,7 @@ "par_id851605464921341\n" "help.text" msgid "When you open a new document, the modified default template will be used." -msgstr "" +msgstr "Når du åbner et nyt dokument, bruges den ændrede standardskabelon." #. SrDht #: standard_template.xhp @@ -21938,7 +21938,7 @@ "par_id131605483428241\n" "help.text" msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template." -msgstr "" +msgstr "%PRODUCTNAME leverer indbyggede præsentations-skabeloner, som ikke kan redigeres, omdøbes eller slettes. For at ændre en indbygget præsentation, åbner du et dokument, der bruger skabelonen, og gemmer den så som en ny skabelon." #. o4GyG #: standard_template.xhp @@ -21947,7 +21947,7 @@ "par_id461605483905608\n" "help.text" msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template." -msgstr "" +msgstr "%PRODUCTNAME leverer indbyggede skabeloner til Writer, som ikke kan redigeres, omdøbes eller slettes. For at ændre en indbygget skabelon, åbner du et dokument, der bruger skabelonen, ændrer den og gemmer den som en ny skabelon." #. S3sg4 #: standard_template.xhp @@ -21956,7 +21956,7 @@ "hd_id891605476755142\n" "help.text" msgid "Setting a Template as Default" -msgstr "" +msgstr "Sætte en skabelon som standard" #. YPWzX #: standard_template.xhp @@ -21974,7 +21974,7 @@ "par_id711605476873605\n" "help.text" msgid "Right-click on template to be made default, choose Set as Default." -msgstr "" +msgstr "Højreklik på den skabelon, der skal gøres til standard, vælger du Sæt som standard." #. LNBjE #: standard_template.xhp @@ -21983,7 +21983,7 @@ "hd_id3153764\n" "help.text" msgid "Creating a Custom Template" -msgstr "" +msgstr "Oprettelse af en standard-skabelon" #. eUBit #: standard_template.xhp @@ -22001,7 +22001,7 @@ "par_id251605475503009\n" "help.text" msgid "Choose File - Templates - Save As Template, then enter the template name, choose a Template category, and save." -msgstr "" +msgstr "Vælg Filer ▸ Skabeloner ▸ Gem som skabelon, så indtaster du skabelonnavnet, vælger en Skabelonkategori og gemmer." #. FZqGj #: standard_template.xhp @@ -22010,7 +22010,7 @@ "hd_id311605475738848\n" "help.text" msgid "Modifying a Custom Template" -msgstr "" +msgstr "Ændring af en tilpasset skabelon" #. CpDHT #: standard_template.xhp @@ -22028,7 +22028,7 @@ "par_id51605476162735\n" "help.text" msgid "Right-click on the template to be modified, and choose Edit." -msgstr "" +msgstr "Højreklik på den skabelon, der skal ændres, og vælg Rediger." #. VMFLZ #: standard_template.xhp @@ -22046,7 +22046,7 @@ "hd_id3149109\n" "help.text" msgid "Saving a Template in the Template Folder" -msgstr "" +msgstr "Lagring af en skabelon i skabelonmappen" #. eWjFn #: standard_template.xhp @@ -22055,7 +22055,7 @@ "par_id3146918\n" "help.text" msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the User Paths directory specified for Templates in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths. It is often easier to save a document with File - Templates - Save As Template, because it automatically places the template in the appropriate directory." -msgstr "" +msgstr "Du kan gemme ethvert dokument som en skabelon ved at vælge filtypen \"Skabelon\" i dialogen Gem. For at tilgå skabelonen fra Skabelonhåndteringen gemmer du skabelonen i den mappe, der i Brugerstier er angivet til Skabeloner under %PRODUCTNAME ▸ IndstillingerFunktioner ▸ Indstillinger ▸ %PRODUCTNAME ▸ Stier. Det er ofte lettere at gemme et dokument med Filer ▸ Skabeloner ▸ Gem som skabelon, fordi det automatisk placerer skabelonen i den passende mappe." #. 4VMWF #: standard_template.xhp @@ -23045,7 +23045,7 @@ "par_id0820200802525413\n" "help.text" msgid "Click the Recent Documents button to show thumbnails of the most recent documents you opened in the right side of the window. Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath." -msgstr "" +msgstr "Klik på knappen Seneste dokumenter for at få vist miniaturer af de allerseneste dokumenter, du åbnede i vinduets højre side. Lad din mus svæve over miniaturen for at fremhæve dokumnetet, vise et tip om dokumentets placering og vise et ikon øverst til højre til at slette miniaturen fra ruden og fra listen over de seneste filer. Klik på miniaturen for at åbne det underliggende dokument." #. FRzQw #: startcenter.xhp @@ -23054,7 +23054,7 @@ "par_id0820200802626414\n" "help.text" msgid "You can remove an item from the Recent Documents list by clicking the button in the upper-right corner of the icon. The document itself is not deleted. You can remove all items on the Recent Documents list by pressing the Recent Documents dropdown button and selecting Clear Recent Documents." -msgstr "Du kan fjerne et element fra listen Seneste dokumenter ved at klikke på knappen i øverste, højre hjørne af ikonet. Selve dokumentet slettes ikke. Du kan fjerne alle elementer på listen Seneste dokumenter ved at trykke på rulleknappen Seneste dokumenter og vælge Seneste dokumenter." +msgstr "Du kan fjerne et element fra listen Seneste dokumenter ved at klikke på knappen i øverste, højre hjørne af ikonet. Selve dokumentet slettes ikke. Du kan fjerne alle elementer på listen Seneste dokumenter ved at trykke på rulleknappen Seneste dokumenter og vælge Ryd seneste dokumenter." #. fALjn #: startcenter.xhp @@ -23063,7 +23063,7 @@ "hd_id41607696972873\n" "help.text" msgid "Working with Templates" -msgstr "" +msgstr "Arbejde med skabeloner" #. kBTaf #: startcenter.xhp @@ -23072,7 +23072,7 @@ "par_id0820200803105045\n" "help.text" msgid "Click the Templates button to display templates for all applications in the right side of the window." -msgstr "" +msgstr "Klik på knappen Skabeloner for at vise skabeloner til alle programmer til højre i vinduet." #. mDftQ #: startcenter.xhp @@ -23081,7 +23081,7 @@ "par_id0820200802626412\n" "help.text" msgid "Click the down arrow after the Templates button to open a menu where you can select a filter to display templates by application type or open the Template Manager dialog." -msgstr "" +msgstr "Klik på pilen nedad efter knappen Skabeloner for at åbne en menu, hvor du kan vælge et ffilter til at vise skabeloner efter programtype eller åbn dialogen Skabelonhåndtering." #. PcEEX #: startcenter.xhp @@ -23180,7 +23180,7 @@ "par_id0820200802626413\n" "help.text" msgid "Encrypted files will not display a thumbnail image of its content." -msgstr "" +msgstr "Krypterede filer viser ikke et miniaturebillede af dets indhold." #. vRgcu #: tabs.xhp @@ -24251,7 +24251,7 @@ "bm_id3159233\n" "help.text" msgid "text; overwriting or inserting overwrite mode insert mode for entering text" -msgstr "" +msgstr "tekst; overskrive eller indsætte tilstanden overskriv tilstanden Indsæt til indtastning af tekst" #. AWrGk #: textmode_change.xhp @@ -24260,7 +24260,7 @@ "hd_id3159233\n" "help.text" msgid " Switching Between Insert Mode and Overwrite Mode " -msgstr "" +msgstr " Skift mellem tilstandene Indsæt og Overskriv " #. qhFEZ #: textmode_change.xhp @@ -24278,7 +24278,7 @@ "par_id3153031\n" "help.text" msgid "Press Insert to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar. The text cursor must be enabled in the cell or in the input line." -msgstr "" +msgstr "Tryk på Insert for at skifte mellem tilstandene Overskriv og Indsæt. Den aktuelle tilstand vises på Status-linjen. Tekstmarkøren skal være aktiveret i cellen eller i input-linjen." #. Hd4Vg #: textmode_change.xhp @@ -24305,7 +24305,7 @@ "par_id3145673\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Indsæt" #. DjbYz #: textmode_change.xhp @@ -24314,7 +24314,7 @@ "par_id3154307\n" "help.text" msgid " Insert mode is active. The area in the status bar is blank, when Insert mode is active. The text cursor is a blinking vertical line. Click on the area to activate the overwrite mode." -msgstr "" +msgstr " Tilstanden Indsæt er aktiv. Området på statuslinjen er tomt, når Indsæt-tilstand er aktiv. Tekstmarkøren er en blinkende lodret linje. Klik på fladen for at aktivere tilstanden Overskriv." #. XFgYi #: textmode_change.xhp @@ -24323,7 +24323,7 @@ "par_id3150984\n" "help.text" msgid "Overwrite" -msgstr "" +msgstr "Overskriv" #. idAmv #: textmode_change.xhp @@ -24332,7 +24332,7 @@ "par_id3148491\n" "help.text" msgid "The overwrite mode is active. The text cursor is a blinking block. Click on the area to activate insert mode." -msgstr "" +msgstr "Tilstanden Overskriv er aktiv. Tekstmarkøren er en blinkende blok. Klik på fladen for at aktivere tilstanden Indsæt." #. tHRqe #: textmode_change.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/simpress/02.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/simpress/02.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/simpress/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/simpress/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-02-03 19:36+0000\n" +"PO-Revision-Date: 2021-03-25 09:17+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561276105.000000\n" #. AiACn @@ -5702,7 +5702,7 @@ "tit\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fastgør til fanglinjer" #. DQ4DB #: 13140000.xhp @@ -5711,7 +5711,7 @@ "hd_id3153726\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fastgør til fanglinjer" #. GXfRk #: 13140000.xhp @@ -5720,7 +5720,7 @@ "par_id3150717\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. wYSJV #: 13140000.xhp @@ -5729,7 +5729,7 @@ "par_id3154255\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fastgør til fanglinjer" #. oXWsX #: 13150000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/da/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/da/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-05 17:36+0000\n" +"PO-Revision-Date: 2021-03-26 10:36+0000\n" "Last-Translator: SteenRønnow \n" "Language-Team: Danish \n" "Language: da\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562179621.000000\n" #. sZfWF @@ -5351,7 +5351,7 @@ "par_id3149806\n" "help.text" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time. In an HTML document, bookmarks are converted to anchors that you can jump to from a hyperlink." -msgstr "Indsætter et bogmærke på markørens position. Du kan så bruge Navigator til huartigt at springe til det markerede sted en anden gang. I et HTML-dokument konverteres bogmærker til ankre, du kan springe til fra et hyperlink." +msgstr "Indsætter et bogmærke på markørens position. Du kan så bruge Navigator til hurtigt at hoppe til det valgte sted en anden gang. I et HTML-dokument konverteres bogmærker til ankre, du kan hoppe til fra et hyperlink." #. DA74C #: 04040000.xhp @@ -8699,7 +8699,7 @@ "par_id3150996\n" "help.text" msgid "Defines a variable and its value. You can change the value of a variable by clicking in front of the variable field, and then choosing Edit - Field." -msgstr "Definerer en variabel og dens værdi. Du kan ændre en variabels værdi ved at klikke foran variabelfeltet og så vælge Rediger - Felt." +msgstr "Definerer en variabel og dens værdi. Du kan ændre en variabels værdi ved at klikke foran variabelfeltet og så vælge Rediger ▸ Felt." #. WjgAZ #: 04090005.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/basctl/messages.po libreoffice-7.1.3~rc2/translations/source/de/basctl/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/basctl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/basctl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -332,7 +332,7 @@ #: basctl/inc/strings.hrc:77 msgctxt "RID_STR_USERMACROSDIALOGS" msgid "My Macros & Dialogs" -msgstr "Meine Makros & Dialoge" +msgstr "Meine Makros und Dialoge" #. EAJgs #: basctl/inc/strings.hrc:78 @@ -350,7 +350,7 @@ #: basctl/inc/strings.hrc:80 msgctxt "RID_STR_SHAREMACROSDIALOGS" msgid "%PRODUCTNAME Macros & Dialogs" -msgstr "%PRODUCTNAME Makros & Dialoge" +msgstr "%PRODUCTNAME Makros und Dialoge" #. BAMA5 #: basctl/inc/strings.hrc:81 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/de/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3456,7 +3456,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:342 msgctxt "tp_ChartType|linetypeft" msgid "_Line type" -msgstr "Linien_typ" +msgstr "Linien_typ:" #. RbyB4 #: chart2/uiconfig/ui/tp_ChartType.ui:356 @@ -3510,7 +3510,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:423 msgctxt "tp_ChartType|nolinesft" msgid "_Number of lines" -msgstr "Anzahl der _Linien" +msgstr "Anzahl der _Linien:" #. bBgDJ #: chart2/uiconfig/ui/tp_ChartType.ui:443 @@ -4563,7 +4563,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:295 msgctxt "tp_Scale|extended_tip|LB_TIME_RESOLUTION" msgid "Resolution can be set to show days, months, or years as interval steps." -msgstr "Die Auflösung kann so gesetzt werden, dass Tage, Monate oder Jahre als Intervalschritte angezeigt werden." +msgstr "Die Auflösung kann so gesetzt werden, dass Tage, Monate oder Jahre als Intervallschritte angezeigt werden." #. ezN7c #: chart2/uiconfig/ui/tp_Scale.ui:307 @@ -5217,19 +5217,19 @@ #: chart2/uiconfig/ui/wizelementspage.ui:45 msgctxt "wizelementspage|labelPrimaryXaxis" msgid "_X axis" -msgstr "_X-Achse" +msgstr "_X-Achse:" #. LtEdA #: chart2/uiconfig/ui/wizelementspage.ui:59 msgctxt "wizelementspage|labelPrimaryYaxis" msgid "_Y axis" -msgstr "_Y-Achse" +msgstr "_Y-Achse:" #. tVeNC #: chart2/uiconfig/ui/wizelementspage.ui:73 msgctxt "wizelementspage|labelPrimaryZaxis" msgid "_Z axis" -msgstr "_Z-Achse" +msgstr "_Z-Achse:" #. 7qRfe #: chart2/uiconfig/ui/wizelementspage.ui:92 @@ -5253,13 +5253,13 @@ #: chart2/uiconfig/ui/wizelementspage.ui:141 msgctxt "wizelementspage|labelMainTitle" msgid "_Title" -msgstr "_Titel" +msgstr "_Titel:" #. nPAjY #: chart2/uiconfig/ui/wizelementspage.ui:155 msgctxt "wizelementspage|labelSubTitle" msgid "_Subtitle" -msgstr "_Untertitel" +msgstr "_Untertitel:" #. CWmMQ #: chart2/uiconfig/ui/wizelementspage.ui:174 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/cui/messages.po libreoffice-7.1.3~rc2/translations/source/de/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1571,7 +1571,7 @@ #: cui/inc/strings.hrc:303 msgctxt "RID_SVXSTR_JAVA_START_PARAM" msgid "Edit Parameter" -msgstr "Parameter bearbeiten" +msgstr "Parameter bearbeiten:" #. fsbAN #: cui/inc/strings.hrc:305 @@ -2111,7 +2111,7 @@ #: 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 "Um die Notizen Ihrer Folien auszudrucken, wählen Sie »Datei ▸ Drucken… ▸ Register: LibreOffice Impress« und im Abschnitt Dokument \"Typ: Notizen\"." +msgstr "Um die Notizen Ihrer Folien auszudrucken, wählen Sie »Datei ▸ Drucken… ▸ Register: LibreOffice Impress ▸ Abschnitt: Dokument ▸ Typ: Notizen«." #. TWjA5 #: cui/inc/tipoftheday.hrc:51 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME unterstützt vier Makro-Sicherheitslevels (von niedrig bis sehr hoch) und vertrauenswürdige Quellen." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 beteiligt sich als Organisation beim Google Summer of Code:" - -#. SNTbc -#: 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 "Sie können in Writer auch Textabschnitte mit Kommentaren versehen. Verwenden Sie dazu einfach die Tastenkombination »%MOD1+%MOD2+C«." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Um einen oder mehrere Absätze in Writer ohne Ausschneiden und Einfügen zu verschieben, verwenden Sie %MOD1+%MOD2+Pfeil nach oben/unten." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Um in Writer die Grundschriftart für vordefinierte Vorlagen oder für das aktuelle Dokument zu ändern, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Grundschriftarten«." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Um Wörter mit einer Länge von mehr als 10 Zeichen zu finden, wählen Sie »Bearbeiten ▸ Suchen und ersetzen… ▸ Textfeld: Suchen ▸ [a-z] {10,}« sowie »Weitere Optionen… ▸ Markierfeld: Reguläre Ausdrücke«." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Zum Öffnen einer CSV-Datei als eine neue Tabelle im aktuellen Calc-Tabellendokument wählen Sie »Tabelle ▸ Tabelle aus Datei einfügen…«." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Wenn Sie in Writer Text in fett, kursiv oder unterstrichen eingegeben haben, können Sie mit den Standardattributen fortfahren, indem Sie die Tastenkombination [%MOD1+Umschalt+X] verwenden (Direkte Zeichenformatierung entfernen)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Um den Inhalt der Zwischenablage als unformatierten Text in Writer einzufügen, verwenden Sie %MOD1+%MOD2+Umschalt+V." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Um in Writer die Darstellung der Fußnoten anzupassen, wählen Sie »Extras ▸ Fuß-/Endnoten…«." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Um in Impress Folien neu anzuordnen oder welche auszuwählen, damit die Präsentation an die Bedürfnisse Ihrer Zuschauer angepasst wird, wählen Sie »Bildschirmpräsentation ▸ Individuelle Präsentation«." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Um die Rechtschreibprüfung für einen Teil des Texts zu ändern, klicken Sie in den Bereich Sprache der Statusleiste oder wenden Sie eine entsprechende Vorlage an." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer kann eine leere Seite zwischen zwei aufeinanderfolgenden ungeraden (geraden) Seiten einfügen. Wählen Sie dazu »Datei ▸ Drucken… ▸ Register: %PRODUCTNAME Writer« und aktivieren Sie das Markierfeld \"Automatisch eingefügte leere Seiten drucken\"." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Um in Calc nicht alle Spalten zu drucken, verstecken oder gruppieren Sie diejenigen, die Sie nicht benötigen." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Um eine AutoStart-Präsentation zu ändern, öffnen Sie diese, rechtsklicken nach dem Start und wählen im Kontextmenü Bearbeiten." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Um Objekte (Formen, Bilder, Formeln) genau zu positionieren, verwenden Sie zum Verschieben um einen Pixel [%MOD2+Pfeiltasten]." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Mit [F1] öffnet sich die Hilfe; die eingebettete, sofern diese installiert ist, andernfalls die Online-Hilfe unter:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Rechtsklicken Sie in die Statusleiste in %PRODUCTNAME Calc und wählen Sie »Anzahl Zellen«, um die Anzahl ausgewählter Zellen anzuzeigen." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Um in %PRODUCTNAME Writer zwei oder mehr Spalten für lediglich einen Teil einer Seite festzulegen, wählen Sie »Einfügen ▸ Bereich… ▸ Register: Spalten« legen die Anzahl der Spalten fest und fügen Text in diesen Bereich ein." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Um Stichproben, beschreibende Statistiken, Varianzanalysen, Korrelationen und vieles mehr mit %PRODUCTNAME Calc zu verwenden, wählen Sie »Daten ▸ Statistiken«." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Sie können in Calc ohne Zwischenablage von einer Tabelle in eine andere kopieren. Wählen Sie den zu kopierenden Bereich aus, klicken Sie bei gedrückter Taste [%MOD1] auf die Registerkarte der Zieltabelle und wählen Sie »Tabelle ▸ Zellen ausfüllen ▸ Tabellen…«." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Um das Aussehen von %PRODUCTNAME zu ändern, wählen Sie »Extras ▸ Optionen… ▸ Ansicht ▸ Benutzeroberfläche«." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Um eine Präsentation aus einer Reihe von Bildern mit der Funktion \"Fotoalbum\" zu erstellen, wählen Sie in %PRODUCTNAME Impress »Einfügen ▸ Medien ▸ Fotoalbum«." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Um Formeln anstelle von Ergebnissen in Calc anzuzeigen, wählen Sie »Ansicht ▸ Formel anzeigen« (oder »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Ansicht ▸ Bereich: Anzeige ▸ Markierfeld: Formeln«)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME wird von einer freundlichen Community entwickelt, bestehend aus hunderten von Entwicklern aus der ganzen Welt. Bringen Sie Ihre Fähigkeiten auch jenseits des Codierens mit ein." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Wenn Sie Linkshänder sind, wählen Sie »Extras ▸ Optionen… ▸ Spracheinstellungen ▸ Sprachen ▸ Markierfeld: Asiatisch« und bestätigen mit \"OK\". Anschließend wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Ansicht ▸ Lineal ▸ Markierfeld: Rechts ausgerichtet«, wodurch das Lineal in Writer rechts und die Bildlaufleiste links angezeigt wird." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Um Ihre Kapitelüberschriften in Writer immer mit einer neuen Seite zu beginnen, klicken Sie in den Formatvorlagen mit der rechten Maustaste auf die Absatzvorlage Überschrift 1 und wählen »Ändern… ▸ Register: Textfluss ▸ Abschnitt: Umbrüche ▸ Markierfeld: Einfügen ▸ Typ: Seite ▸ Position: Vor«." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Der Wert für Datum/Uhrzeit ist nur eine Anzahl von Tagen seit dem festgelegten Tag Null; in der Zahl steht der ganzzahlige Teil für das Datum und der Bruchteil für die Zeit (verstrichener Teil eines Tages), wobei 0,5 für den Mittag steht." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "»Umschalt+%MOD1+Entf« löscht in Writer vom Cursor bis zum Ende des aktuellen Satzes." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Verwenden Sie in Calc Spalten- oder Zeilenbeschriftungen in Formeln. Wenn Sie beispielsweise zwei Spalten mit \"Zeit\" und \"km\" haben, geben Sie =Zeit/km ein, um die Zeit pro Kilometer zu bekommen." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Um die marschierenden Ameisen um Zellen in Calc zu stoppen, drücken Sie die Taste [Esc]. Der kopierte Inhalt bleibt zum Einfügen verfügbar." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Falls Sie ein Botschafter für %PRODUCTNAME werden möchten, gibt es Zertifizierungen für Entwickler, Administratoren und Ausbilder." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Um Hochformat und Querformat in Calc-Tabellendokumenten zu mischen, weisen Sie den einzelnen Tabellen verschiedene Seitenvorlagen zu." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Um schnell auf die zuletzt eingefügten und bevorzugten Sonderzeichen zuzugreifen, klicken Sie auf das Symbol »Sonderzeichen einfügen« in der Symbolleiste „Standard“." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Wählen Sie in der Seitenleiste Formatvorlagen die Option \"Hierarchische Ansicht\", um die Beziehung zwischen den Formatvorlagen anzuzeigen." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Sie können Vorlagen verwenden, um die Tabellen in Ihrem Writer-Dokument einheitlich aussehen zu lassen. Wählen Sie eine der vordefinierten Vorlagen [F11] oder »Tabelle ▸ AutoFormat…«." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Um die Verwendung der Taste [%MOD1] zum Folgen von Hyperlinks zu ändern, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME ▸ Sicherheit ▸ Schaltfläche: Optionen… ▸ Markierfeld: %MOD1 beim Klicken halten, um Hyperlinks zu folgen«." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Um die Berechnung einzelner Elemente einer Calc-Formel anzuzeigen, wählen Sie die entsprechenden Elemente aus und drücken [F9]." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Zum Schützen von Zellen in Calc wählen Sie »Format ▸ Zellen… ▸ Register: Zellschutz«. Um zu verhindern, dass Tabellen eingefügt, gelöscht, umbenannt, verschoben oder kopiert werden, wählen Sie »Extras ▸ Tabelle schützen…«." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Um entlang einer Kurve zu schreiben, zeichnen Sie die Linie, doppelklicken auf sie, geben Sie den Text ein und wählen Sie »Format ▸ Textfeld« und »Form ▸ Fontwork…«." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Um in einer Calc-Tabelle nur die größten Werte anzuzeigen, wählen Sie »Daten ▸ Autofilter« und in der Dropdown-Liste \"Top 10\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Um die Seitenzahl aus Ihrem Inhaltsverzeichnis in Writer zu entfernen, wählen Sie »Einfügen ▸ Verzeichnis ▸ Verzeichnis…« (oder klicken mit der rechten Maustaste und bearbeiten das zuvor eingefügte Verzeichnis). Löschen Sie auf der Registerkarte \"Einträge\" die Seitenzahl (#) aus der Zeile Struktur." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Im Navigator können Sie Überschriften und den zugehörigen Text im Writer-Dokument auswählen und verschieben." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Um in Writer schnell ein Formel-Objekt zu erstellen, geben Sie den Formeltext ein, markieren ihn und wählen »Einfügen ▸ Objekt ▸ Formel…«, um den Text zu konvertieren." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Mit %PRODUCTNAME ist es ganz einfach, ein neues Wörterbuch zu installieren: Sie werden als Extension geliefert." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME gibt es für Ihre volle Mobilität auch als Portable-Version. Sogar ohne Administrator-Rechte für Ihren Computer können Sie %PRODUCTNAME-Portable auf Ihrer Festplatte installieren." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Mit Writer können Sie Ihre Fußnoten pro Seite, Kapitel oder Dokument nummerieren: Wählen Sie »Extras ▸ Fuß-/Endnoten… ▸ Register: Fußnoten ▸ Dropdown-Liste: Zählung«." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Um Ihr Writer-Dokument mit dem Textcursor an der gleichen Bearbeitungsposition zu öffnen, an der Sie es gespeichert haben, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME ▸ Benutzerdaten« und überprüfen Sie, dass Vor-/Nachname nicht leer ist." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Für ein Zitier-Management verwenden Sie eine Drittanbieter-Extension." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Um einen Wert an derselben Stelle in mehreren Calc-Tabellen einzufügen, wählen Sie die Tabellen aus, indem Sie die Taste %MOD1 gedrückt halten und auf die entsprechenden Tabellenregister klicken, bevor Sie die Eingabe machen." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Um Text in einem Dokument zu verstecken, markieren Sie den Text, wählen Sie »Einfügen ▸ Bereich…« und aktivieren Sie das Markierfeld „Ausblenden“." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Sie können die mittlere Maustaste unter »Extras ▸ Optionen… ▸ %PRODUCTNAME ▸ Ansicht ▸ Dropdown-Menü: Mittlere Maustaste« anpassen." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Um zwei Seiten im Hochformat auf eine Seite im Querformat zu drucken (verkleinert von A4 auf A5), wählen Sie »Datei ▸ Drucken… ▸ Register: Seitenlayout« und „2“ in der Dropdown-Liste „Seiten pro Blatt“." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Um in Writer schnell auf Ihre Lesezeichen zuzugreifen, klicken Sie mit der rechten Maustaste auf die Seitenzahl in der Statusleiste (linke untere Ecke des Dokumentfensters)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Um ein Objekt im Dokumenthintergrund auszuwählen, verwenden Sie das Werkzeug Auswahl in der Symbolleiste Zeichnung, um das Objekt zu umgrenzen." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Legen Sie häufig verwendete Texte in Writer als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastaturkürzel oder Symbolleiste in jedes Writer-Dokument ein." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Um Musik während der gesamten Präsentation abzuspielen, weisen Sie den Klang dem ersten Folienübergang zu, ohne das Markierfeld \"Wiederholen bis zum nächsten Klang\" zu aktivieren." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 berechnet nicht von links nach rechts, sondern berücksichtigt die mathematische Reihenfolge: Klammern > Exponenten > Multiplikation > Division > Addition > Subtraktion." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Sie erreichen die %PRODUCTNAME-Dokumentation und kostenlose Handbücher über:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Um alle <> auf einmal zu entfernen und den Text darin zu behalten, wählen Sie »Bearbeiten ▸ Suchen & Ersetzen… ▸ Suchen: \"[<>]\" ▸ Ersetzen: (leer)« und aktivieren im Bereich \"Weitere Optionen\" das Markierfeld \"Reguläre Ausdrücke\"." +msgstr "Um alle <> auf einmal zu entfernen und den Text darin zu behalten, wählen Sie »Bearbeiten ▸ Suchen und ersetzen… ▸ Suchen: \"[<>]\" ▸ Ersetzen: (leer)« und aktivieren im Bereich \"Weitere Optionen\" das Markierfeld \"Reguläre Ausdrücke\"." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Um einen mit Writer erstellten Bericht zu präsentieren, wählen Sie »Datei ▸ Senden ▸ Gliederung an Präsentation«, um automatisch eine Bildschirmpräsentation aus der Gliederung zu erzeugen." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Um die Darstellung von Hyperlinks in Calc zu verwalten, fügen Sie diese mittels »Einfügen ▸ Hyperlink…« ein." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Damit jede Tabelle in Calc ihren eigenen Maßstab hat, deaktivieren Sie das Markierfeld „Tabellen synchronisieren“ unter »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Ansicht ▸ Maßstab«." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Sie können für jede Registerkarte in Calc eine Farbe festlegen: Klicken Sie mit der rechten Maustaste auf die Registerkarte oder wählen Sie »Tabelle ▸ Tabellenregisterfarbe…«." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Verfolgen Sie in Calc die in einer Formel verwendeten Zellen, die Spur zum Vorgänger [Umschalt+F9] oder die Spur zum Nachfolger [Umschalt+F5] (oder wählen Sie »Extras ▸ Detektiv«). Bei jeder Ausführung gehen Sie in der Kette einen Schritt weiter." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Um Formeln in Writer zu nummerieren, geben Sie fn ein und drücken dann F3. Ein Autotext wird eingefügt, wobei Formel und Nummer in einer Tabelle ausgerichtet sind." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "In Writer lässt sich ein Abbildungsverzeichnis auch von Objektnamen anstelle der Beschriftungen erstellen." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Verwenden Sie Ihr Android oder iPhone als Fernbedienung für Ihre Impress-Präsentation." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Um in Calc die Anzahl der Tage des aktuellen Monats zu ermitteln, geben Sie =TAGEIMMONAT(HEUTE()) ein." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Wenn Ihre Zahlen in Ihrer Calc-Tabelle als ### angezeigt werden, ist die Spalte zu schmal, um alle Ziffern anzuzeigen." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Für massiv parallele Berechnungen von Formelzellen in Calc aktivieren Sie das Markierfeld unter »Extras ▸ Optionen… ▸ LibreOffice ▸ OpenCL«." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Um Flussdiagramme zu erstellen, verwenden Sie in Draw/Impress die Verbinder in der Symbolleiste Zeichnung und kopieren das fertige Objekt in Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Ihre Spenden unterstützen unsere weltweite Gemeinschaft." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Um in Calc zu einem Datum x Monate hinzu zu addieren, geben Sie =EDATUM(Datum;Monate) ein." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Verwenden Sie in Calc %MOD1+Stern (*) (auf dem Ziffernblock), um einen zusammenhängenden Bereich von Zellen auszuwählen, die Daten enthalten und durch leere Zeilen und Spalten begrenzt sind." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Um in Calc das Datumserkennungsmuster Ihren Vorlieben anzupassen, wählen Sie »Extras ▸ Optionen… ▸ Spracheinstellungen ▸ Sprache ▸ Datumserkennungsmuster« und ergänzen dort das gewünschte Muster." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Um Formeln aus Calc in CSV zu exportieren, wählen Sie »Datei ▸ Speichern unter… ▸ Typ: Text CSV«, aktivieren Sie \"Filtereinstellungen bearbeiten\" und aktivieren Sie im nächsten Dialog \"Formeln anstatt berechneter Werte speichern\"." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Probieren Sie mal die Presenter Console aus, welche eine hervorragende Funktion bei der Arbeit mit %PRODUCTNAME Impress ist." #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Um in Calc mehrere Kommentare zu löschen, markieren Sie die Zellen mit Kommentaren und wählen »Bearbeiten ▸ Kommentare ▸ Löschen…«." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Wandeln Sie Ihre Dokumente mit einem Klick auf das Symbol PDF in der Symbolleiste in PDFs." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Um in Calc einen großen Zellenbereich auszuwählen, ohne einen Bildlauf durchzuführen, geben Sie die Bereichsreferenz (beispielsweise A1:A1000) in das Namensfeld ein und drücken die Eingabetaste." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Um die gültigen Kommandozeilen-Parameter kennenzulernen, starten Sie soffice mit --help, -h oder -?." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Um Ihre Tabelle oder Ihre Druckbereiche in Calc an die Seite anzupassen, wählen Sie »Format ▸ Seite… ▸ Register: Tabelle ▸ Abschnitt: Maßstab«." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Um einen nicht nummerierten Eintrag in einer Liste in Writer einzufügen, verwenden Sie in der Symbolleiste \"Aufzählungszeichen und Nummerierung\" die Option \"Eintrag ohne Nummer einfügen\"." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Um die Ausrichtung einer Writer-Tabellenzelle zu drehen, wählen Sie »Tabelle ▸ Eigenschaften… ▸ Textfluss ▸ Dropdown-Menü: Textausrichtung«." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Um in %PRODUCTNAME Draw den 0/0-Punkt der Lineale zu ändern, ziehen Sie den Schnittpunkt der beiden Lineale in der linken oberen Ecke in die Arbeitsfläche." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Um eine Spalte in Calc in einem Schritt zwischen zwei andere zu verschieben, klicken Sie auf die Überschrift und halten Sie die Taste %MOD2 gedrückt, während sie auf eine Zelle in der Spalte klicken und diese an das Ziel ziehen." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Um in Writer automatisch alle Verzeichniseinträge alphabetisch zu markieren, nehmen Sie eine Konkordanzdatei zu Hilfe." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Um in Draw/Impress Objekte genau zu positionieren, wählen Sie »Format ▸ Ausrichten« (oder das Kontextmenü): Es wird auf der Seite zentriert, wenn ein Objekt ausgewählt ist, oder entsprechend die Gruppe." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Um Elemente in Writer anzuordnen kann je nach dem, was Sie erreichen möchten, eine rahmenlose Tabelle die bessere Wahl gegenüber der Verwendung von Tabulatoren sein." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Sie müssen nicht in der Liste unter »Extras ▸ Anpassen… ▸ Register: Tastatur« blättern, um eine Tastenkombination zu finden. Geben Sie sie einfach ein." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Um %PRODUCTNAME beim Einfügen von Objekten in Writer automatisch eine nummerierte Beschriftung hinzufügen zu lassen, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Automatische Beschriftung«." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Um mit %PRODUCTNAME über Ihr Google Mail-Konto Serien-E-Mails zu versenden, geben Sie unter »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Serien-E-Mail« Ihre Zugangsdaten ein." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Um die Spaltenüberschriften einer Calc-Tabelle beim rollen durch Zeilen sichtbar zu behalten, wählen Sie »Ansicht ▸ Zellen fixieren ▸ Erste Zeile fixieren«." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Um zu beginnen, mit %PRODUCTNAME Makros zu arbeiten, schauen Sie sich die Beispiele unter »Extras ▸ Makros ▸ Makros bearbeiten…« an." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Wenden Sie in Writer Absatzvorlagen für Überschriften an, indem Sie %MOD1+1 für Überschrift 1, %MOD1+2 für Überschrift 2 und so weiter drücken." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Um sich im Inhalt großer Dokumente zurechtzufinden, verwenden Sie den Navigator (F5)." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Um im Dialog unter »Bearbeiten ▸ Suchen und Ersetzen…« Sonderzeichen direkt einzufügen, klicken Sie mit rechts in das Eingabefeld oder drücken Sie [Umschalt+%MOD1+S]." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Wenn Sie in Writer benutzerdefinierte Inhalte für Metadaten-Eigenschaften benötigen, wählen Sie »Datei ▸ Eigenschaften… ▸ Register: Benutzerdefinierte Eigenschaften« und erstellen Sie dort, was Sie möchten." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Wenn Sie ein Objekt in Draw zwar sehen aber nicht drucken möchten, zeichnen Sie es in eine Ebene, für welche das Markierfeld „Druckbar“ nicht aktiviert ist (klicken Sie mit rechts auf ein Register und wählen Sie „Ebene ändern…“)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Um das aktuelle Datum in Ihr Dokument einzufügen, wählen Sie »Einfügen ▸ Feldbefehl ▸ Datum«." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Um die Anzeige in Ihrem Writer-Dokument bei vielen Bildern zu beschleunigen, deaktivieren Sie »Ansicht ▸ Bilder und Diagramme«." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Um eine zufällige, auf verschiedenen Verteilungen basierende Reihe in Calc zu erstellen, wählen Sie »Tabelle ▸ Zellen ausfüllen ▸ Zufallszahlen…«." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Sie können Folien in Impress umbenennen, um einfacher Aktionen wie \"Gehe zu Folie\" zu definieren und um eine verständlichere Zusammenfassung als Folie 1, Folie 2 und so weiter zu haben." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Um festlegen, dass Text vor der Kapitelnummer in Writer angezeigt wird, wählen Sie »Extras ▸ Kapitelnummerierung… ▸ Register: Nummerierung« und geben Sie beispielsweise \"Kapitel\" im Feld „Davor“ ein, um „Kapitel 1“ anzuzeigen." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Um eine Writer-Tabelle zu transponieren, kopieren Sie sie und fügen sie in Calc ein. Um sie zu transponieren, kopieren Sie sie und wählen »Bearbeiten ▸ Inhalte einfügen ▸ Inhalte einfügen… ▸ Schaltfläche: Transponieren«. Anschließend kopieren Sie sie und fügen sie wieder in eine Writer-Tabelle ein." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Um in Writer das Werkzeug \"Vertikalen Text\" in der Symbolleiste Zeichnung zu aktivieren, wählen Sie »Extras ▸ Optionen… ▸ Spracheinstellungen ▸ Sprachen ▸ Standardsprachen« und aktivieren das Markierfeld \"Asiatisch\" (gegebenenfalls aktivieren Sie noch das Symbol mittels Rechtsklick auf die Symbolleiste und \"Sichtbare Schaltflächen\")." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Um schnell auf einen ausgewählten Bereich zu vergrößern, klicken Sie mit der rechten Maustaste auf den Bereich Maßstab in der Statusleiste und wählen Optimal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Es lassen sich bestehende PDF-Dateien signieren und deren Signaturen überprüfen." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Wenn Sie oft ein Dokument aus einem anderen erstellen, um Formatierungen wiederzuverwenden, sollten Sie einmal überlegen, Dokumentvorlagen zu verwenden." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Um herauszufinden, für welche Zellen in Calc bedingte Formatierungen definiert sind, wählen Sie »Format ▸ Bedingte Formatierung ▸ Verwalten…«." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Um in Calc alle Zellen einer Tabelle mit Werten außerhalb der Gültigkeitsregeln hervorzuheben, wählen Sie »Extras ▸ Detektiv ▸ Ungültige Daten einkreisen«." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Um Schriftarten für eine reibungslose Zusammenarbeit mit anderen Office-Anwendungen einzubetten, wählen Sie »Datei ▸ Eigenschaften… ▸ Schriftart«." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Um eine Formel in statische Werte umzuwandeln, müssen Sie sie nicht kopieren und einfügen; wählen Sie »Daten ▸ Berechnen ▸ Formel zu Wert«." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Sie können in Writer alle Kommentare in einem Dokument auf einmal neu formatieren, indem Sie in einem Kommentar auf den Pfeil nach unten klicken und \"Alle Kommentare formatieren\" wählen." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Um in Calc dasselbe Layout für die Bildschirmanzeige und den Druck zu verwenden, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Allgemein ▸ Markierfeld: Druckermaße für die Textformatierung verwenden«." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Um ein Backup zu erstellen, wählen Sie »Datei ▸ Eine Kopie speichern…« und erstellen so ein neues Dokument. Setzen Sie anschließend die Arbeit am Original fort." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Wenn Sie in Writer eine Vorlage basierend auf einer anderen erstellen, können Sie einen Prozentwert oder einen Punktwert eingeben (beispielsweise 110 % oder -2 pt beziehungsweise +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Um in Calc nur einen Kommentar zu kopieren ohne den Inhalt des Ziels zu verlieren, verwenden Sie den Befehl Inhalte einfügen, demarkieren im Dialog alles bis auf \"Kommentare\" und verwenden die Rechenoperation \"Addieren\"." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Um Ihre MS Office-Dokumente mittels Dokument-Konverter in das OpenDocument-Format umzuwandeln, wählen Sie »Datei ▸ Assistenten ▸ Dokument-Konverter…«." +msgstr "Um Ihre MS Office-Dokumente mittels Dokumentkonverter in das OpenDocument-Format umzuwandeln, wählen Sie »Datei ▸ Assistenten ▸ Dokumentkonverter…«." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Sie können, wenn Sie gerade eine Zelle in Calc bearbeiten, Feldbefehle wie Datum, Tabellenname, Dokumenttitel und so weiter einfügen, indem Sie mit der rechten Maustaste klicken und Feldbefehl wählen." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Um die Seitenzahl aus Ihrem Inhaltsverzeichnis in Writer zu entfernen, wählen Sie »Einfügen ▸ Verzeichnis ▸ Verzeichnis…« (oder klicken mit der rechten Maustaste und bearbeiten das zuvor eingefügte Verzeichnis). Löschen Sie auf der Registerkarte \"Einträge\" die Seitenzahl (#) aus der Zeile Struktur." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Um Autotexteinträge aus einem Word-Dokument oder eine Vorlage zu importieren, wählen Sie »Extras ▸ AutoText… ▸ Schaltfläche: AutoText ▸ Importieren…«." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Anstatt in Writer Leerzeilen einzufügen, um zwei Absätze zu trennen, wählen Sie besser »Format ▸ Absatz… ▸ Register: Einzüge und Abstände ▸ Bereich: Abstand ▸ Eigenschaft: Unter Absatz« und ändern Sie dort den Wert ab oder passen Sie an gleicher Stelle die Absatzvorlage an." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Um in Calc führende Nullen zu erhalten, verwenden Sie die Zahlenformat-Option \"Führende Nullen\" oder formatieren Sie die Zelle zuvor als Text." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Um in Writer nach dem Anwenden einer Listenvorlage zu den Standardeinstellungen zurückzukehren, klicken Sie in der Symbolleiste Formatierung auf Aufzählungszeichen/Nummerierte Liste umschalten." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Um in Calc alle Druckbereiche in einem Schritt zu löschen, markieren Sie alle Tabellen und wählen dann »Format ▸ Druckbereiche ▸ Löschen«." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Um ein Hintergrundbild zu einer Calc-Tabelle hinzuzufügen, wählen Sie »Einfügen ▸ Bild…« oder ziehen Sie es aus der Gallery in die Tabelle, wählen Sie dann »Format ▸ Anordnung ▸ Im Hintergrund«." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Falls Sie Probleme beim Einfügen von Text aus PDF-Dateien oder von Webseiten in Dokumente haben, versuchen Sie, ihn als unformatierten Text ([%MOD1+%MOD2+Umschalt+V]) einzufügen." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Verwenden Sie in Calc die Funktion =GESTUTZTMITTEL(), um den Mittelwert einer Datenreihe ohne den höchsten und niedrigsten Wert zu bestimmen." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Der optionale vierte Parameter der Calc-Funktion SVERWEIS übermittelt, ob die erste Spalte mit Daten sortiert ist. Falls nicht, geben Sie hier FALSCH oder 0 ein." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Symbolleisten sind kontextabhängig und werden je nach Kontext geöffnet. Wenn Sie das nicht möchten, deaktivieren Sie diese unter »Ansicht ▸ Symbolleisten«." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Um ein Globaldokument aus dem aktuellen Writer-Dokument zu erstellen, wählen Sie »Datei ▸ Senden ▸ Globaldokument erzeugen« (Unterdokumente werden abhängig von der Gliederung erstellt)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Um Zellen auf einer gedruckten Seite in Calc zu zentrieren, wählen Sie »Format ▸ Seite… ▸ Register: Seite ▸ Bereich: Layout-Einstellungen ▸ Markierfelder: Tabellenausrichtung«." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Es lassen sich Rahmen so miteinander verknüpfen, dass der Text von einen zum anderen fließen kann, wie im Desktop-Publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Um ein Diagramm basierend auf einer Writer-Tabelle zu erstellen, klicken Sie in die Tabelle und wählen Sie »Einfügen ▸ Diagramm…«." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Um in Writer festzulegen, welche nicht druckbaren Zeichen angezeigt werden sollen, markieren Sie nur die gewünschten Markierfelder unter »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Formatierungshilfen ▸ Bereich: Formatierung anzeigen«." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Um in Writer zu einer bestimmten Seite anhand ihrer Nummer zu springen, klicken Sie auf den Eintrag ganz links in der Statusleiste, wählen Sie »Bearbeiten ▸ Wechseln zu Seite…« oder drücken [%MOD1+G]." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME unterstützt über 150 Sprachen." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Wenn Sie ein anderes Programm benötigen, dessen Fenster vor Ihrer Präsentation angezeigt wird, deaktivieren Sie »Bildschirmpräsentation ▸ Präsentations-Einstellungen… ▸ Markierfeld: Bildschirmpräsentation immer im Vordergrund«." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Um fett geschriebene Wörter in einem Writer-Dokument zu finden, wählen Sie »Bearbeiten ▸ Suchen und Ersetzen… ▸ Weitere Optionen… ▸ Attribute… ▸ Schriftstärke«." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Mittels »Extras ▸ Sortieren…« lassen sich Absätze oder Tabellenzeilen in Writer alphabetisch oder numerisch sortieren." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Um einen Absatz vor (nach) einem Abschnitt einzufügen, drücken Sie am Anfang (Ende) des Abschnitts [%MOD2+Eingabetaste]." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME verfügt über eine Vorlagenverwaltung zum Erstellen ansprechender Dokumente – probieren Sie es aus." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Berechnen Sie Darlehnsrückzahlungen mit Calc, beispielsweise =RMZ(2%/12;36;2500) für einen Zinssatz pro Periode von 2%/12, 36 Perioden und einen Darlehnsbetrag von 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Falls Sie in Calc mit SVERWEIS nicht das Gewünschte erreichen, haben Sie mit INDEX und VERGLEICH unbegrenzte Möglichkeiten." #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Um in Calc die verborgene Spalte A anzuzeigen, klicken Sie in Spalte B, halten die linke Maustaste gedrückt, bewegen die Maus nach links bis auf die Zeilennummer und lassen die Maustaste los. Dann wählen Sie »Format ▸ Spalten ▸ Einblenden«." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Um die Seitennummer in Writer zu ändern, klicken Sie in den ersten Absatz der Seite und wählen »Format ▸ Absatz… ▸ Register: Textfluss ▸ Abschnitt: Umbrüche ▸ Markierfeld: Einfügen« und geben Sie die Nummer ein." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Führen Sie %PRODUCTNAME in jedem Browser als rollApp aus." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Wenn Sie einen merkwürdigen Fehlercode in Calc sehen, Fehler: gefolgt von einer Zahl, gibt folgende Seite die Erklärung:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Um in Writer einen einen Absatz, der kein Titel ist, in das Inhaltsverzeichnis aufzunehmen, wählen Sie »Format ▸ Absatz… ▸ Register: Gliederung und Nummerierung« und wählen die gewünschte Gliederungsebene." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Neben Inhaltsverzeichnissen lassen sich mit %PRODUCTNAME Writer auch Stichwort-, Abbildungs-, Tabellen-, Objekt-, Literatur- und benutzerdefinierte Verzeichnisse erstellen." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Falls Sie eine benutzerdefinierte Zellvorlage in Calc nicht löschen können, überprüfen Sie alle Tabellen, dass keine geschützt ist." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Um in Calc eine Reihe zu erzeugen, markieren Sie den Zellbereich, wählen »Tabelle ▸ Zellen ausfüllen ▸ Reihen…« und entscheiden sich zwischen Linear, Wachstum, Datum und Automatisch füllen." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Um herauszufinden, ob auf eine Zelle in Calc ein Bezug in Formeln anderer Zellen besteht, wählen Sie »Extras ▸ Detektiv ▸ Spur zum Nachfolger« [Umschalt+F5]." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Im Eingabefeld Ersetzen der Autokorrektur-Optionen können Sie den Platzhalter .* verwenden." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Um in Calc die obige Zeile zu verdoppeln, drücken Sie [%MOD1+D] oder wählen Sie »Tabelle ▸ Zellen füllen ▸ Unten«." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Um in mehreren Tabellendokumenten zu suchen, wählen Sie sie aus, bevor Sie die Suche starten." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Durch Ziehen-und-Ablegen von Zellen aus Calc in die Normalansicht einer Folie wird eine Tabelle erzeugt; in der Gliederungsansicht erzeugt jede Zelle eine Linie in der Gliederung." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME hilft Ihnen dabei, in Writer zwei oder mehr aufeinanderfolgende Leerzeichen zu vermeiden. Wählen Sie »Extras ▸ AutoKorrektur ▸ Autokorrektur-Optionen… ▸ Register: Optionen ▸ Markierfeld: Doppelte Leerzeichen ignorieren«." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Um den Cursor nach Eingabe eines Wertes in Calc in die Zelle rechts springen zu lassen, verwenden Sie die Tabulatortaste anstelle der Eingabetaste." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Um in Writer die Bildlaufleiste links anzuzeigen, wählen Sie »Extras ▸ Optionen… ▸ Spracheinstellungen ▸ Sprachen ▸ Markierfeld: Komplexes Textlayout« und wählen anschließend »Tabelle ▸ Rechts-nach-links«." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Ziehen Sie eine formatiertes Objekt in das Fenster Formatvorlagen, öffnet sich eine Dialogbox, in der sie den Namen für eine neue Vorlage eingeben können." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Neue %PRODUCTNAME-Versionen enthalten neue Funktionen, Fehlerbehebungen und Sicherheitspatches. Halten Sie Ihre Software auf dem neuesten Stand!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Sie können neue XSLT- und XML-Filter entwickeln." #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Um alle verfügbaren erweiterten Tipps in Dialogfeldern anzuzeigen, wenn „Erweiterte Tipps“ unter »Extras ▸ Optionen… ▸ %PRODUKTNAME ▸ Allgemein« nicht aktiviert ist, drücken Sie [Umschalt+F1]." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Hilfe" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Weitere Informationen" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Führen Sie diese Aktion jetzt aus…" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tipp des Tages: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Befehl" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Strg" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Option" @@ -4129,13 +4123,13 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:24 msgctxt "aboutconfigdialog|AboutConfig" msgid "Expert Configuration" -msgstr "Experten-Einstellungen" +msgstr "Experteneinstellungen" #. GBiPy #: cui/uiconfig/ui/aboutconfigdialog.ui:40 msgctxt "aboutconfigdialog|edit" msgid "Edit" -msgstr "Bearbeiten" +msgstr "Bearbeiten…" #. Z7SA5 #: cui/uiconfig/ui/aboutconfigdialog.ui:46 @@ -7808,7 +7802,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:169 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 "Hier wählen Sie den Frame, in den das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen." +msgstr "Hier wählen Sie den Frame, in dem das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen." #. V8Zgo #: cui/uiconfig/ui/cuiimapdlg.ui:197 @@ -9422,7 +9416,7 @@ #: cui/uiconfig/ui/gallerygeneralpage.ui:153 msgctxt "gallerygeneralpage|image-atkobject" msgid "Theme Name" -msgstr "Themename" +msgstr "Themenname" #. US2Dq #: cui/uiconfig/ui/gallerysearchprogress.ui:8 @@ -9465,7 +9459,7 @@ #: cui/uiconfig/ui/gallerythemeiddialog.ui:8 msgctxt "gallerythemeiddialog|GalleryThemeIDDialog" msgid "Theme ID" -msgstr "Theme-ID" +msgstr "Themen-ID" #. dDD78 #: cui/uiconfig/ui/gallerythemeiddialog.ui:75 @@ -11359,13 +11353,13 @@ #: cui/uiconfig/ui/javaclasspathdialog.ui:18 msgctxt "javaclasspathdialog|JavaClassPath" msgid "Class Path" -msgstr "Klassen-Pfad" +msgstr "Klassenpfad" #. cCAqB #: cui/uiconfig/ui/javaclasspathdialog.ui:105 msgctxt "javaclasspathdialog|label1" msgid "A_ssigned folders and archives" -msgstr "Z_ugewiesene Ordner und Archive" +msgstr "Z_ugewiesene Ordner und Archive:" #. ERHh7 #: cui/uiconfig/ui/javaclasspathdialog.ui:158 @@ -11389,7 +11383,7 @@ #: cui/uiconfig/ui/javaclasspathdialog.ui:204 msgctxt "javaclasspathdialog|folder" msgid "Add _Folder" -msgstr "_Ordner hinzufügen" +msgstr "_Ordner hinzufügen…" #. WP9Eo #: cui/uiconfig/ui/javaclasspathdialog.ui:211 @@ -11425,7 +11419,7 @@ #: cui/uiconfig/ui/javastartparametersdialog.ui:105 msgctxt "javastartparametersdialog|label4" msgid "Java start _parameter" -msgstr "Java-Start_parameter" +msgstr "Java-Start_parameter:" #. Btkis #: cui/uiconfig/ui/javastartparametersdialog.ui:124 @@ -11437,7 +11431,7 @@ #: cui/uiconfig/ui/javastartparametersdialog.ui:137 msgctxt "javastartparametersdialog|label5" msgid "Assig_ned start parameters" -msgstr "Zuge_wiesene Startparameter" +msgstr "Zuge_wiesene Startparameter:" #. xjKFh #: cui/uiconfig/ui/javastartparametersdialog.ui:179 @@ -11467,7 +11461,7 @@ #: cui/uiconfig/ui/javastartparametersdialog.ui:230 msgctxt "javastartparametersdialog|editbtn" msgid "_Edit" -msgstr "_Bearbeiten" +msgstr "_Bearbeiten:" #. 5FP58 #: cui/uiconfig/ui/javastartparametersdialog.ui:238 @@ -11961,7 +11955,7 @@ #: cui/uiconfig/ui/macroselectordialog.ui:251 msgctxt "macroselectordialog|categoryft" msgid "Category" -msgstr "Bereich" +msgstr "Kategorie" #. QvKmS #: cui/uiconfig/ui/macroselectordialog.ui:330 @@ -13393,13 +13387,13 @@ #: cui/uiconfig/ui/optadvancedpage.ui:166 msgctxt "optadvancedpage|classpath" msgid "_Class Path..." -msgstr "_Class Path…" +msgstr "_Klassenpfad…" #. qDrtT #: cui/uiconfig/ui/optadvancedpage.ui:173 msgctxt "extended_tip|classpath" msgid "Opens the Class Path dialog." -msgstr "Öffnet den Dialog Class Path." +msgstr "Öffnet den Dialog Klassenpfad." #. MxHGu #: cui/uiconfig/ui/optadvancedpage.ui:245 @@ -13531,7 +13525,7 @@ #: cui/uiconfig/ui/optappearancepage.ui:250 msgctxt "optappearancepage|colorsetting" msgid "Color setting" -msgstr "Farb-Einstellung" +msgstr "Farbeinstellung" #. Jms9Q #: cui/uiconfig/ui/optappearancepage.ui:263 @@ -15419,7 +15413,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:342 msgctxt "optonlineupdatepage|labeldest" msgid "Download Destination" -msgstr "Ziel herunterladen" +msgstr "Herunterladen nach" #. JqAh4 #: cui/uiconfig/ui/optonlineupdatepage.ui:377 @@ -17089,7 +17083,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:567 msgctxt "pageformatpage|liststorePageLayout" msgid "Right and left" -msgstr "Rechts und Links" +msgstr "Rechts und links" #. xetCH #: cui/uiconfig/ui/pageformatpage.ui:568 @@ -17768,19 +17762,19 @@ #: cui/uiconfig/ui/personalization_tab.ui:33 msgctxt "personalization_tab|no_persona" msgid "Default look, do not use Themes" -msgstr "Normale Ansicht ohne Themes" +msgstr "Normale Ansicht ohne Themen" #. 3KoUz #: cui/uiconfig/ui/personalization_tab.ui:50 msgctxt "personalization_tab|default_persona" msgid "Preinstalled Theme" -msgstr "Vorinstalliertes Theme" +msgstr "Vorinstalliertes Thema" #. hWiJZ #: cui/uiconfig/ui/personalization_tab.ui:189 msgctxt "personalization_tab|personas_label" msgid "LibreOffice Themes" -msgstr "LibreOffice Themes" +msgstr "LibreOffice-Themen" #. C5MHG #: cui/uiconfig/ui/pickbulletpage.ui:43 @@ -17888,7 +17882,7 @@ #: cui/uiconfig/ui/positionpage.ui:134 msgctxt "positionpage|raiselower" msgid "Raise/lower by" -msgstr "Hoch/Tief um" +msgstr "Hoch/Tief um:" #. Ac85F #: cui/uiconfig/ui/positionpage.ui:170 @@ -17900,7 +17894,7 @@ #: cui/uiconfig/ui/positionpage.ui:187 msgctxt "positionpage|relativefontsize" msgid "Relative font size" -msgstr "Schriftgröße relativ" +msgstr "Schriftgröße relativ:" #. iG3EE #: cui/uiconfig/ui/positionpage.ui:215 @@ -17930,7 +17924,7 @@ #: cui/uiconfig/ui/positionpage.ui:318 msgctxt "positionpage|label24" msgid "Scale width" -msgstr "Breite skalieren" +msgstr "Breite skalieren:" #. vAV4A #: cui/uiconfig/ui/positionpage.ui:344 @@ -20957,7 +20951,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:218 msgctxt "ToolbarmodeDialog|radiobutton9" msgid "Contextual Groups" -msgstr "Kontextabhängig gruppiert" +msgstr "Kontextabhängig" #. wTDDF #: cui/uiconfig/ui/toolbarmodedialog.ui:236 @@ -21371,7 +21365,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:19 msgctxt "zoomdialog|ZoomDialog" msgid "Zoom & View Layout" -msgstr "Maßstab & Ansichtslayout" +msgstr "Maßstab und Ansichtslayout" #. JSuui #: cui/uiconfig/ui/zoomdialog.ui:112 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/de/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -458,7 +458,7 @@ #: dbaccess/inc/strings.hrc:92 msgctxt "STR_NO_TABLE_OBJECT" msgid "The given object is no table object." -msgstr "Das angegbene Objekt ist kein Tabellenobjekt." +msgstr "Das angegebene Objekt ist kein Tabellenobjekt." #. WboPA #: dbaccess/inc/strings.hrc:93 @@ -1726,7 +1726,7 @@ #: dbaccess/inc/strings.hrc:310 msgctxt "RID_STR_EXTENSION_NOT_PRESENT" msgid "The report, \"$file$\", requires the Report Builder feature." -msgstr "Der Bericht \"$file$\" benötigt die Funktion Report Builder." +msgstr "Der Bericht \"$file$\" benötigt die Funktion Bericht-Designer." #. oC8Px #: dbaccess/inc/strings.hrc:312 @@ -1768,7 +1768,7 @@ #: dbaccess/inc/strings.hrc:319 msgctxt "STR_TABLE_PRIV_NAME" msgid "Table name" -msgstr "Tabellename" +msgstr "Tabellenname" #. Nw93R #: dbaccess/inc/strings.hrc:320 @@ -1804,7 +1804,7 @@ #: dbaccess/inc/strings.hrc:325 msgctxt "STR_TABLE_PRIV_REFERENCE" msgid "Modify references" -msgstr "References ändern" +msgstr "Verweise ändern" #. SEGp9 #: dbaccess/inc/strings.hrc:326 @@ -1816,19 +1816,19 @@ #: dbaccess/inc/strings.hrc:328 msgctxt "STR_DBASE_PATH_OR_FILE" msgid "Path to the dBASE files" -msgstr "Pfad zu den dBASE Dateien" +msgstr "Pfad zu den dBASE-Dateien:" #. hnBFY #: dbaccess/inc/strings.hrc:329 msgctxt "STR_FLAT_PATH_OR_FILE" msgid "Path to the text files" -msgstr "Pfad zu den Textdateien" +msgstr "Pfad zu den Textdateien:" #. DRFyX #: dbaccess/inc/strings.hrc:330 msgctxt "STR_CALC_PATH_OR_FILE" msgid "Path to the spreadsheet document" -msgstr "Pfad zum Tabellendokument" +msgstr "Pfad zum Tabellendokument:" #. qxbA7 #: dbaccess/inc/strings.hrc:331 @@ -1840,7 +1840,7 @@ #: dbaccess/inc/strings.hrc:332 msgctxt "STR_WRITER_PATH_OR_FILE" msgid "Path to the Writer document" -msgstr "Pfad zum Writer-Dokument" +msgstr "Pfad zum Writer-Dokument:" #. zQxCp #: dbaccess/inc/strings.hrc:333 @@ -3805,7 +3805,7 @@ #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:237 msgctxt "mysqlnativesettings|namedpipelabel" msgid "Named p_ipe:" -msgstr "Named p_ipe:" +msgstr "Benannte P_ipe:" #. CzRyx #: dbaccess/uiconfig/ui/namematchingpage.ui:67 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/desktop/messages.po libreoffice-7.1.3~rc2/translations/source/de/desktop/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/desktop/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/desktop/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-16 13:42+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -828,7 +828,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:8 msgctxt "extensionmanager|ExtensionManagerDialog" msgid "Extension Manager" -msgstr "Extension Manager" +msgstr "Extension-Manager" #. gjCkd #: desktop/uiconfig/ui/extensionmanager.ui:85 @@ -882,7 +882,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:210 msgctxt "extensionmanager|optionsbtn" msgid "_Options" -msgstr "_Optionen" +msgstr "_Optionen…" #. DbuQS #: desktop/uiconfig/ui/extensionmanager.ui:217 @@ -894,7 +894,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:229 msgctxt "extensionmanager|updatebtn" msgid "Check for _Updates" -msgstr "Auf _Updates prüfen" +msgstr "Auf _Updates prüfen…" #. rirpA #: desktop/uiconfig/ui/extensionmanager.ui:236 @@ -954,7 +954,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:399 msgctxt "extensionmanager|extended_tip|ExtensionManagerDialog" msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions." -msgstr "Mit dem Extension Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren." +msgstr "Mit dem Extension-Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren." #. EGwkP #: desktop/uiconfig/ui/installforalldialog.ui:12 @@ -1050,7 +1050,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:24 msgctxt "updatedialog|UpdateDialog" msgid "Extension Update" -msgstr "Extension Update" +msgstr "Extension-Update" #. DmHy5 #: desktop/uiconfig/ui/updatedialog.ui:55 @@ -1062,7 +1062,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:122 msgctxt "updatedialog|UPDATE_LABEL" msgid "_Available extension updates" -msgstr "_Verfügbare Extension-Updates" +msgstr "_Verfügbare Extension-Updates:" #. 3mtLC #: desktop/uiconfig/ui/updatedialog.ui:135 @@ -1086,7 +1086,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:258 msgctxt "updatedialog|DESCRIPTION_LABEL" msgid "Description" -msgstr "Beschreibung" +msgstr "Beschreibung:" #. 7DTtA #: desktop/uiconfig/ui/updatedialog.ui:277 @@ -1122,7 +1122,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:390 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 "Klicken Sie auf die Schaltfläche Auf Updates prüfen im Extension Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü Update." +msgstr "Klicken Sie auf die Schaltfläche »Auf Updates prüfen« im Extension-Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü »Update«." #. YEhMN #: desktop/uiconfig/ui/updateinstalldialog.ui:8 @@ -1146,7 +1146,7 @@ #: 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 "Klicken Sie auf die Schaltfläche »Auf Updates prüfen« im Extension Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü »Update…«." +msgstr "Klicken Sie auf die Schaltfläche »Auf Updates prüfen« im Extension-Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf und wählen Sie dann im Kontextmenü »Update…«." #. Kfhc4 #: desktop/uiconfig/ui/updaterequireddialog.ui:8 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/dictionaries/en/dialog.po libreoffice-7.1.3~rc2/translations/source/de/dictionaries/en/dialog.po --- libreoffice-7.1.2~rc2/translations/source/de/dictionaries/en/dialog.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/dictionaries/en/dialog.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -131,7 +131,7 @@ "hlp_mdash\n" "property.text" msgid "Force unspaced em dash instead of spaced en dash." -msgstr "Em-Bindestriche ohne Leerstelle gegenüber en-Bindestrichen mit Leerstelle bevorzugen." +msgstr "Em-Bindestriche ohne Leerstelle gegenüber En-Bindestrichen mit Leerstelle bevorzugen." #. WCsJy #: en_en_US.properties @@ -149,7 +149,7 @@ "hlp_ndash\n" "property.text" msgid "Force spaced en dash instead of unspaced em dash." -msgstr "En-Bindestriche mit Leerstelle gegenüber em-Bindestrichen ohne Leerstelle bevorzugen." +msgstr "En-Bindestriche mit Leerstelle gegenüber Em-Bindestrichen ohne Leerstelle bevorzugen." #. zGBHG #: en_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/de/filter/messages.po libreoffice-7.1.3~rc2/translations/source/de/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -26,19 +26,19 @@ #: filter/inc/strings.hrc:26 msgctxt "STR_IMPORT_ONLY" msgid "import filter" -msgstr "Import Filter" +msgstr "Importfilter" #. 7vg82 #: filter/inc/strings.hrc:27 msgctxt "STR_IMPORT_EXPORT" msgid "import/export filter" -msgstr "Import/Export Filter" +msgstr "Im- und Exportfilter" #. q6Bc5 #: filter/inc/strings.hrc:28 msgctxt "STR_EXPORT_ONLY" msgid "export filter" -msgstr "Export Filter" +msgstr "Exportfilter" #. AmATR #: filter/inc/strings.hrc:29 @@ -110,7 +110,7 @@ #: filter/inc/strings.hrc:40 msgctxt "STR_FILTER_PACKAGE" msgid "XSLT filter package" -msgstr "XSLT Filter Paket" +msgstr "XSLT-Filterpaket" #. TAAAB #: filter/inc/strings.hrc:41 @@ -216,7 +216,7 @@ #: filter/inc/strings.hrc:60 msgctxt "PDF_PROGRESS_BAR" msgid "Export as PDF" -msgstr "Exportieren als PDF" +msgstr "Als PDF exportieren" #. BGJB2 #. strings used in encryption UI @@ -279,7 +279,7 @@ #: filter/inc/strings.hrc:74 msgctxt "STR_WARN_TRANSP_CONVERTED" msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting." -msgstr "Da das Ziel-PDF-Format keine Transparenzen unterstützt, werden einige Objekte zu Bildern konvertiert, um Transparenzen zu entfernen. Es können eventuell bessere Ergebnisse erzielt werden, wenn die transparenten Objekte vor dem Export entfernt werden." +msgstr "Da das Ziel-PDF-Format keine Transparenzen unterstützt, werden einige Objekte zu Bildern konvertiert, um Transparenzen zu entfernen. Möglicherweise können bessere Ergebnisse erzielt werden, wenn die transparenten Objekte vor dem Export entfernt werden." #. qtCcB #: filter/inc/strings.hrc:75 @@ -1137,7 +1137,7 @@ #: filter/uiconfig/ui/pdfsignpage.ui:273 msgctxt "pdfsignpage|label15" msgid "Time Stamp Authority:" -msgstr "Zeitstempel-Stelle:" +msgstr "Zeitstempelstelle:" #. YeAiB #: filter/uiconfig/ui/pdfsignpage.ui:297 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/filter/source/config/fragments/types.po libreoffice-7.1.3~rc2/translations/source/de/filter/source/config/fragments/types.po --- libreoffice-7.1.2~rc2/translations/source/de/filter/source/config/fragments/types.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/filter/source/config/fragments/types.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2019-11-05 12:23+0000\n" -"Last-Translator: kuehl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559618340.000000\n" #. VQegi @@ -374,7 +374,7 @@ "UIName\n" "value.text" msgid "Writer 8 Master Document" -msgstr "Writer 8-Hauptdokument" +msgstr "Writer 8-Globaldokument" #. dp7AA #: writerglobal8_template.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/de/formula/messages.po libreoffice-7.1.3~rc2/translations/source/de/formula/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/formula/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/formula/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -2535,13 +2535,13 @@ #: formula/inc/strings.hrc:28 msgctxt "STR_TITLE1" msgid "Function Wizard" -msgstr "Funktions-Assistent" +msgstr "Funktionsassistent" #. ctTA6 #: formula/inc/strings.hrc:29 msgctxt "STR_TITLE2" msgid "Function Wizard -" -msgstr "Funktions-Assistent –" +msgstr "Funktionsassistent –" #. USDCA #: formula/inc/strings.hrc:30 @@ -2673,7 +2673,7 @@ #: formula/uiconfig/ui/functionpage.ui:156 msgctxt "functionpage|extended_tip|FunctionPage" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "Öffnet den Funktions-Assistenten, der Sie beim interaktiven Erstellen von Formeln unterstützt." +msgstr "Öffnet den Funktionsassistenten, der Sie beim interaktiven Erstellen von Formeln unterstützt." #. GCYUY #: formula/uiconfig/ui/parameter.ui:27 @@ -2685,25 +2685,25 @@ #: formula/uiconfig/ui/parameter.ui:226 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 "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." +msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." #. u3Zoo #: formula/uiconfig/ui/parameter.ui:242 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 "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." +msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." #. noEab #: formula/uiconfig/ui/parameter.ui:258 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 "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." +msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." #. M3LSb #: formula/uiconfig/ui/parameter.ui:274 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 "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." +msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." #. 6GD3i #: formula/uiconfig/ui/parameter.ui:288 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/fpicker/messages.po libreoffice-7.1.3~rc2/translations/source/de/fpicker/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/fpicker/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/fpicker/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2019-12-06 10:21+0000\n" -"Last-Translator: kuehl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1538496878.000000\n" #. SJGCw @@ -292,13 +292,13 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:508 msgctxt "remotefilesdialog|filterLabel" msgid "Filter" -msgstr "Filter" +msgstr "Filter:" #. rCVer #: fpicker/uiconfig/ui/remotefilesdialog.ui:522 msgctxt "remotefilesdialog|nameLabel" msgid "File name" -msgstr "Dateiname" +msgstr "Dateiname:" #. GUWMA #: include/fpicker/strings.hrc:14 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/auxiliary.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/auxiliary.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/auxiliary.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/auxiliary.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-05-19 12:41+0200\n" -"PO-Revision-Date: 2020-07-25 13:34+0000\n" +"PO-Revision-Date: 2021-04-01 04:36+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562560629.000000\n" #. fEEXD @@ -527,7 +527,7 @@ "100504\n" "node.text" msgid "Agenda Wizard" -msgstr "Tagesordnungs-Assistent" +msgstr "Tagesordnungsassistent" #. gvsML #: shared.tree diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-11-08 19:34+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -455,7 +455,7 @@ "N0497\n" "help.text" msgid ".ISEMBEDDED = \"document\" ' document script" -msgstr ".ISEMBEDDED = \"document\" ' Dokumentskript" +msgstr ".ISEMBEDDED = \"document\" ' Dokumentenskript" #. GGD4G #: basic_2_python.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/python.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -2093,7 +2093,7 @@ "hd_id591544049572647\n" "help.text" msgid "%PRODUCTNAME Macros container" -msgstr "%PRODUCTNAME Makro-Container" +msgstr "%PRODUCTNAME Makrocontainer" #. xBzRT #: python_locations.xhp @@ -2111,7 +2111,7 @@ "par_id861544210028670\n" "help.text" msgid "The %PRODUCTNAME Macros container location in the file system depends on the operating system:" -msgstr "Der Speicherort des %PRODUCTNAME Makro-Containers im Dateisystem hängt vom Betriebssystem ab:" +msgstr "Der Speicherort des %PRODUCTNAME Makrocontainers im Dateisystem hängt vom Betriebssystem ab:" #. GMBSF #: python_locations.xhp @@ -2228,7 +2228,7 @@ "par_id191544209928221\n" "help.text" msgid "Libraries are folders in the container tree. To create a library, add a folder in the target container. The library name is the folder name." -msgstr "Bibliotheken sind Ordner in der Container-Struktur. Fügen Sie dem Zielcontainer einen Ordner hinzu, um eine Bibliothek zu erstellen. Der Bibliotheksname ist der Ordnername." +msgstr "Bibliotheken sind Ordner in der Containerstruktur. Fügen Sie dem Zielcontainer einen Ordner hinzu, um eine Bibliothek zu erstellen. Der Bibliotheksname ist der Ordnername." #. hFS3L #: python_locations.xhp @@ -3416,4 +3416,4 @@ "N0142\n" "help.text" msgid "Python Interactive Console" -msgstr "Python Interaktive-Konsole" +msgstr "Interaktive Python-Konsole" diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -2354,7 +2354,7 @@ "par_id3153070\n" "help.text" msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"." -msgstr "Einfache Variablen können positive oder negative Werte von 3,402823x10E38 bis 1,401298x10E-45 annehmen. Einfache Variablen sind Fließkommavariablen, in welchen die Dezimalpräzesion sinkt, wenn der nicht-dezimale Teil der Nummer steigt. Einfache Variablen sind geeignet für mathematische Berechnungen mit durchschnittlicher Genauigkeit. Berechnungen erfordern mehr Zeit als bei Integer-Variablen, sind aber schneller als Double-Variablen. Eine einfache Variable benötigt 4 Bytes Speicher. Das Zeichen der Typdekleration ist \"!\"." +msgstr "Einfache Variablen können positive oder negative Werte von 3,402823x10E38 bis 1,401298x10E-45 annehmen. Einfache Variablen sind Fließkommavariablen, in welchen die Dezimalpräzision sinkt, wenn der nicht-dezimale Teil der Nummer steigt. Einfache Variablen sind geeignet für mathematische Berechnungen mit durchschnittlicher Genauigkeit. Berechnungen erfordern mehr Zeit als bei Integer-Variablen, sind aber schneller als Double-Variablen. Eine einfache Variable benötigt 4 Bytes Speicher. Das Zeichen der Typdeklaration ist \"!\"." #. X2BBe #: 01020100.xhp @@ -2417,7 +2417,7 @@ "par_id1001576839723156\n" "help.text" msgid "Numbers can be encoded using octal and hexadecimal forms." -msgstr "Nummern können codiert werden, indem das Oktal- und Hexidezimalsystem verwendet wird." +msgstr "Nummern können codiert werden, indem das Oktal- und Hexadezimalsystem verwendet wird." #. nGGUD #: 01020100.xhp @@ -2588,7 +2588,7 @@ "par_idm1341048752\n" "help.text" msgid "Dim Text$(-15 To 5) '21 elements (including 0), numbered from -15 to 5'" -msgstr "Dim Text$(-15 To 5) '21 Elemente (einschließlich 0), von -15 bis 5 numeriert'" +msgstr "Dim Text$(-15 To 5) '21 Elemente (einschließlich 0), von -15 bis 5 nummeriert'" #. 6iBW4 #: 01020100.xhp @@ -3812,7 +3812,7 @@ "par_id581574080384335\n" "help.text" msgid "Document: libraries stored in the document container are only available for the document and are accessible only when the document is open. You cannot access macros of a document from another document." -msgstr "Dokument: Im Dokument-Container gespeicherte Bibliotheken sind nur für das Dokument verfügbar und nur zugänglich, wenn das Dokument geöffnet ist. Sie können nicht von einem anderen Dokument aus auf Makros eines Dokuments zugreifen." +msgstr "Dokument: Im Dokumentcontainer gespeicherte Bibliotheken sind nur für das Dokument verfügbar und nur zugänglich, wenn das Dokument geöffnet ist. Sie können nicht von einem anderen Dokument aus auf Makros eines Dokuments zugreifen." #. GCWxT #: 01030400.xhp @@ -3821,7 +3821,7 @@ "par_id881574081445896\n" "help.text" msgid "To access macros stored in libraries of %PRODUCTNAME Macros or My Macros from another container, including the document container, use the GlobalScope specifier." -msgstr "Um auf Makros, die in ein den Bibliotheken %PRODUCTNAME Makros oder Meine Makros gespeichert sind, von einem anderen Container aus zuzugreifen, einschließlich des Dokument-Containers, verwenden Sie den GlobalScope-Specifier." +msgstr "Um auf Makros, die in den Bibliotheken %PRODUCTNAME Makros oder Meine Makros gespeichert sind, von einem anderen Container einschließlich des Dokument-Containers aus zuzugreifen, verwenden Sie den GlobalScope-Spezifizierer." #. bGzjL #: 01030400.xhp @@ -6044,7 +6044,7 @@ "par_id3155113\n" "help.text" msgid "Select \"Yes\" to enable the dropdown option for list or combo box controls. A dropdown control field has an arrow button which you can click to open a list of the existing form entries." -msgstr "Wählen Sie \"Ja\" aus, um die Dropdown-Option für Listen- und Kombinationsfelder zu aktivieren. Dropdown-Steuelemente haben eine Schaltfläche mit Pfeil, die beim Anklicken eine Liste der vorhandenen Feldeinträge anzeigt." +msgstr "Wählen Sie \"Ja\" aus, um die Dropdown-Option für Listen- und Kombinationsfelder zu aktivieren. Dropdown-Steuerelemente haben eine Schaltfläche mit Pfeil, die beim Anklicken eine Liste der vorhandenen Feldeinträge anzeigt." #. tCz4B #: 01170101.xhp @@ -6908,7 +6908,7 @@ "par_id9174779\n" "help.text" msgid "If Root displayed is set to FALSE, the root node of a model is no longer a valid node for the tree control and can't be used with any method of XTreeControl." -msgstr "Wenn die Wurzeldarstellung auf FALSE gesetzt ist, ist der Wurzelknoten kein gülter Knoten mehr für das Baumansicht-Steuerelement und kann nicht mit einer XTreeControl Methode genutzt werden." +msgstr "Wenn die Wurzeldarstellung auf FALSE gesetzt ist, ist der Wurzelknoten kein gültiger Knoten mehr für das Baumansicht-Steuerelement und kann nicht mit einer XTreeControl-Methode genutzt werden." #. KucrS #: 01170101.xhp @@ -7070,7 +7070,7 @@ "par_id4974822\n" "help.text" msgid "The handles are dotted lines that visualize the hierarchy of the tree control." -msgstr "Die Linien weden gepunktet dargestellt und stellen die Hirarchie im Baum dar." +msgstr "Die Linien werden gepunktet dargestellt und stellen die Hierarchie im Baum dar." #. 55Gfe #: 01170101.xhp @@ -7097,7 +7097,7 @@ "par_id3314004\n" "help.text" msgid "Specifies whether the handles of the nodes should also be displayed at root level." -msgstr "Legt fest, ob die Linien der Knoten auch auf der Ursprungs-Ebene angezeigt werden sollen" +msgstr "Legt fest, ob die Linien der Knoten auch auf der Ursprungsebene angezeigt werden sollen." #. GCfuF #: 01170101.xhp @@ -7142,7 +7142,7 @@ "par_idN10F0A\n" "help.text" msgid "Click the item or items that you want to select. To select more than one item, ensure that the Multiselection option is selected." -msgstr "Klicken Sie auf das auszuwählende Elemente. Um mehrere Elemente gleichzeitig auszuwählen, muss die Option Mehrfachauswahl aktiviert sein." +msgstr "Klicken Sie auf das Element oder die Elemente, die Sie auswählen möchten. Um mehrere Elemente gleichzeitig auszuwählen, muss die Option Mehrfachauswahl aktiviert sein." #. 56k8D #: 01170101.xhp @@ -7160,7 +7160,7 @@ "par_id1134067\n" "help.text" msgid "Specifies the selection mode that is enabled for this tree control." -msgstr "Bestimmt den Auswahl-Modus, der für das Steuerelement Baumansicht verfügbar ist." +msgstr "Bestimmt den Auswahlmodus, der für das Steuerelement Baumansicht verfügbar ist." #. roCpn #: 01170101.xhp @@ -7223,7 +7223,7 @@ "hd_id3149538\n" "help.text" msgid "Tabstop" -msgstr "Tabstop" +msgstr "Tabstopp" #. s9gEA #: 01170101.xhp @@ -7250,7 +7250,7 @@ "par_id3153547\n" "help.text" msgid "Only input controls receive the focus when using the Tab key. Controls without input like caption controls are omitted." -msgstr "Nur Eingabesteuerelemente erhalten den Fokus, wenn Sie die Taste Tabulator verwenden. Steuerelemente ohne Eingabe wie Bildunterschriftkontrollen werden ausgelassen." +msgstr "Nur Eingabesteuerelemente erhalten den Fokus, wenn Sie die Taste Tabulator verwenden. Steuerelemente ohne Eingabe wie Beschriftungssteuerelemente werden ausgelassen." #. JTQgu #: 01170101.xhp @@ -8060,7 +8060,7 @@ "par_id3146915\n" "help.text" msgid "Add the Information icon to the dialog." -msgstr "Das Symbol Information wird dem Dialog hinzuegfügt." +msgstr "Das Symbol Information wird dem Dialog hinzugefügt." #. 8sTDk #: 03010101.xhp @@ -8357,7 +8357,7 @@ "par_id3146915\n" "help.text" msgid "Add the Information icon to the dialog." -msgstr "Das Symbol Information wird dem Dialog hinzuegfügt." +msgstr "Das Symbol Information wird dem Dialog hinzugefügt." #. gDmyx #: 03010102.xhp @@ -10436,7 +10436,7 @@ "par_id3159153\n" "help.text" msgid "The Input# statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma." -msgstr "Die Anweisung Input# liest numerische Werte oder Zeichenketten aus einer geöffneten Datei und weist die Daten einer oder mehreren Variablen zu. Numerische Variablen werden bis zum ersten Wagenrücklauf (Asc=13), Zeilenvorschub (Asc=10), Leerzeichen oder Komma gelesen. Zeichenkettenvariablen werden bis zum ersten Wagenrücklauf (Asc=13), Zeilenvorschub (Asc=10) oder Komma gelesen." +msgstr "Die Anweisung Input# liest numerische Werte oder Zeichenketten aus einer geöffneten Datei und weist die Daten einer oder mehreren Variablen zu. Numerische Variablen werden bis zum ersten Wagenrücklauf (Asc = 13), Zeilenvorschub (Asc = 10), Leerzeichen oder Komma gelesen. Zeichenkettenvariablen werden bis zum ersten Wagenrücklauf (Asc = 13), Zeilenvorschub (Asc = 10) oder Komma gelesen." #. DfDXQ #: 03020202.xhp @@ -10553,7 +10553,7 @@ "par_id3150010\n" "help.text" msgid "With the Line Input# 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 "Mit Hilfe der Anweisung Line Input# können Sie Zeichenketten aus einer geöffneten Datei in eine Variable einlesen. String-Variablen werden bis zum ersten Carriage-Return (Asc=13) oder Line Feed (Asc=10), also zeilenweise gelesen, wobei die Zeilenendenmarken selbst nicht mit in die Zeichenkette übernommen werden." +msgstr "Mit Hilfe der Anweisung Line Input# können Sie Zeichenketten aus einer geöffneten Datei in eine Variable einlesen. String-Variablen werden bis zum ersten Carriage-Return (Asc = 13) oder Line Feed (Asc = 10), also zeilenweise gelesen, wobei die Zeilenendenmarken selbst nicht mit in die Zeichenkette übernommen werden." #. fhFEa #: 03020204.xhp @@ -10949,7 +10949,7 @@ "par_id3154138\n" "help.text" msgid "Returns the current position in an open file." -msgstr "Gibt Aufschluß über die gegenwärtige Position innerhalb einer geöffneten Datei." +msgstr "Gibt Aufschluss über die gegenwärtige Position innerhalb einer geöffneten Datei." #. paZ9R #: 03020302.xhp @@ -11750,7 +11750,7 @@ "par_id3150010\n" "help.text" msgid "This function is not case-sensitive." -msgstr "Groß- und Kleinschreibung hat keinen Einfluß auf die Funktion." +msgstr "Groß- und Kleinschreibung hat keinen Einfluss auf die Funktion." #. 4LFNu #: 03020403.xhp @@ -14468,7 +14468,7 @@ "par_id3148551\n" "help.text" msgid "The year part must consist of either two (supported only in YYMMDD format without separators for compatibility) or at least four digits. With four digits leading zeros must be given if the absolute value is less than 1000, it can be negative with a leading minus sign if the date passed denotes a year before the common era (BCE) and it can have more than four digits if the absolute value is greater than 9999. The formatted string can be in the range \"-327680101\" to \"327671231\", or \"-32768-01-01\" to \"32767-12-31\"." -msgstr "Die Jahreszahl muss entweder 2 (was aus Gründen der Kombatibilität nur in dem Format YYMMDD ohne die jeweiligen Separatoren möglich ist) oder eben dann mindestens 4 Ziffern enthalten. Bei Jahreszahlen kleiner als 4 Ziffern, beispielsweise dem 09. Mai 658, muss die Null voran gestellt werden, also beispielsweise 09.05.0658. Bei Zeitangaben vor unserer Zeitrechnung (auch bekannt als B.C. - Before Christ) kann die Jahreszahl ebenfalls mehr als vier Ziffern beinhalten, falls deren Betrag größer als 9999 ist. Die formatierte Zeichenkette kann derzeit im Bereich \"--327680101\" bis \"327671231\" oder \"01.01.-32768\" bis \"31.12.32767\" liegen." +msgstr "Die Jahreszahl muss entweder 2 (was aus Gründen der Kompatibilität nur in dem Format YYMMDD ohne die jeweiligen Separatoren möglich ist) oder eben dann mindestens 4 Ziffern enthalten. Bei Jahreszahlen kleiner als 4 Ziffern, beispielsweise dem 09. Mai 658, muss die Null vorangestellt werden, also beispielsweise 09.05.0658. Bei Zeitangaben vor unserer Zeitrechnung (auch bekannt als B.C. - Before Christ) kann die Jahreszahl ebenfalls mehr als vier Ziffern beinhalten, falls deren Betrag größer als 9999 ist. Die formatierte Zeichenkette kann derzeit im Bereich \"--327680101\" bis \"327671231\" oder \"01.01.-32768\" bis \"31.12.32767\" liegen." #. ACdxD #: 03030108.xhp @@ -14495,7 +14495,7 @@ "par_id3148554\n" "help.text" msgid "The YYYY-MM-DD format with separators is supported since %PRODUCTNAME 5.3.4. Years less than 100 or greater than 9999 are accepted since %PRODUCTNAME 5.4 if not in VBA compatibility mode." -msgstr "Das Format JJJJ-MM-TT mit Separatoren wird seit %PRODUCTNAME 5.3.4 unterstützt. Jahreszahlen kleiner als 100 oder größer als 9999 werden seit %PRODUCTNAME 5.4 akzeptiert, sofern nicht im VBA-Kombatibilitätsmodus." +msgstr "Das Format JJJJ-MM-TT mit Separatoren wird seit %PRODUCTNAME 5.3.4 unterstützt. Jahreszahlen kleiner als 100 oder größer als 9999 werden seit %PRODUCTNAME 5.4 akzeptiert, sofern nicht im VBA-Kompatibilitätsmodus." #. DahpE #: 03030108.xhp @@ -25745,7 +25745,7 @@ "par_id3125864\n" "help.text" msgid "When you convert a string expression, the date and time must be entered either in one of the date acceptance patterns defined for your locale setting (see %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages) or in ISO date format (momentarily, only the ISO format with hyphens, e.g. \"2012-12-31\" is accepted). In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time." -msgstr "Wenn Sie eine Zeichenkette konvertieren, müssen Datum und Uhrzeit entweder in einem der für Ihre Gebietsschema-Einstellung definierten Datum-Annahmemuster eingegeben werden (siehe %PRODUCTNAME – EinstellungenExtras – Optionen… – Spracheinstellungen – Sprachen) oder im ISO-Datumsfomat (momentan wird nur das ISO-Format mit Bindestrichen akzeptiert, beispielsweise \"2012-12-31\"). In numerischen Ausdrücken stehen die Werte links von der Dezimalstelle für das Datum ab dem 31. Dezember 1899. Die Werte rechts von der Dezimalstelle stehen für die Uhrzeit." +msgstr "Wenn Sie eine Zeichenkette konvertieren, müssen Datum und Uhrzeit entweder in einem der für Ihre Gebietsschema-Einstellung definierten Datum-Annahmemuster eingegeben werden (siehe %PRODUCTNAME – EinstellungenExtras – Optionen… – Spracheinstellungen – Sprachen) oder im ISO-Datumsformat (momentan wird nur das ISO-Format mit Bindestrichen akzeptiert, beispielsweise \"2012-12-31\"). In numerischen Ausdrücken stehen die Werte links von der Dezimalstelle für das Datum ab dem 31. Dezember 1899. Die Werte rechts von der Dezimalstelle stehen für die Uhrzeit." #. hCKkH #: 03100300.xhp @@ -30236,7 +30236,7 @@ "par_id3148947\n" "help.text" msgid "Uno type : A UnoObject" -msgstr "Uno type: Ein Uno-Ubjekt" +msgstr "Uno type: Ein Uno-Objekt" #. AsDnS #: 03104500.xhp @@ -34952,7 +34952,7 @@ "par_id3152924\n" "help.text" msgid "Instantiates a Uno service with the ProcessServiceManager." -msgstr "Instanziert einen Uno service am ProcessServiceManager." +msgstr "Instanziiert einen Uno-Dienst mit dem ProcessServiceManager." #. NjYQ2 #: 03131600.xhp @@ -35195,7 +35195,7 @@ "bm_id3150682\n" "help.text" msgid "GlobalScope specifierlibrary systemsLibrary containerGlobalScopeAPI; BasicLibrariesAPI; DialogLibrariesBasicLibraries; library containerDialogLibraries; library container" -msgstr "GlobalScope (Spezifizierer)Bibliotheks-SystemeBibliotheks-ContainerGlobalScopeAPI; BasicLibrariesAPI; DialogLibrariesBasicLibraries; Bibliotheks-ContainerDialogLibraries; Bibliotheks-Container" +msgstr "GlobalScope (Spezifizierer)BibliothekssystemeBibliothekscontainerGlobalScopeAPI; BasicLibrariesAPI; DialogLibrariesBasicLibraries; BibliothekscontainerDialogLibraries; Bibliothekscontainer" #. BEFVK #: 03131900.xhp @@ -35213,7 +35213,7 @@ "par_id991572457387308\n" "help.text" msgid "To manage personal or shared library containers (%PRODUCTNAME Macros or My Macros) from within a document, use the GlobalScope specifier." -msgstr "Um gemeinsame genutzte oder persönliche Bibliotheks-Container (%PRODUCTNAME Makros oder Meine Makros) aus einem Dokuments heraus zu verwalten, verwenden Sie den Spezifizierer GlobalScope." +msgstr "Um gemeinsame genutzte oder persönliche Bibliothekscontainer (%PRODUCTNAME Makros oder Meine Makros) aus einem Dokument heraus zu verwalten, verwenden Sie den Spezifizierer GlobalScope." #. Jz8ET #: 03131900.xhp @@ -35222,7 +35222,7 @@ "par_id3153345\n" "help.text" msgid "Basic source code and dialogs are organized in library containers. Libraries can contain modules and dialogs." -msgstr "Basic-Quellcode und Dialoge sind in Bibliotheks-Containern organisiert. Bibliotheken können Module und Dialoge enthalten." +msgstr "Basic-Quellcode und Dialoge sind in Bibliothekscontainern organisiert. Bibliotheken können Module und Dialoge enthalten." #. BhGwB #: 03131900.xhp @@ -35267,7 +35267,7 @@ "par_id3150543\n" "help.text" msgid "BasicLibraries and DialogLibraries containers exist at application level and within every document. Document's library containers do not need the GlobalScope specifier to be managed. If you want to call a global library container (located in %PRODUCTNAME Macros or My Macros) from within a document, you must use the GlobalScope specifier." -msgstr "BasicLibraries- und DialogLibraries-Container sind auf Anwendungsebene und in jedem Dokument vorhanden. Für die Bibliotheks-Container des Dokuments muss der GlobalScope-Spezifizierer nicht verwaltet werden. Wenn Sie einen globalen Bibliotheks-Ccontainer (in %PRODUCTNAME Makros oder Meine Makros) aus einem Dokument heraus aufrufen möchten, müssen Sie den GlobalScope-Spezifizierer verwenden." +msgstr "BasicLibraries- und DialogLibraries-Container sind auf Anwendungsebene und in jedem Dokument vorhanden. Für die Bibliothekscontainer des Dokuments muss der GlobalScope-Spezifizierer nicht verwaltet werden. Wenn Sie einen globalen Bibliothekscontainer (in %PRODUCTNAME Makros oder Meine Makros) aus einem Dokument heraus aufrufen möchten, müssen Sie den GlobalScope-Spezifizierer verwenden." #. BDRji #: 03131900.xhp @@ -35285,7 +35285,7 @@ "par_id3158408\n" "help.text" msgid "' calling Dialog1 in the document library Standard" -msgstr "' Ansprechen von Dialog1 in der Dokumenten-Bibliothek Standard" +msgstr "' Ansprechen von Dialog1 in der Dokumentenbibliothek Standard" #. BcE6x #: 03131900.xhp @@ -35330,7 +35330,7 @@ "par_id3149346\n" "help.text" msgid "Creates a Listener instance." -msgstr "Instanziert einen Listener." +msgstr "Instanziiert einen Listener." #. X9iCk #: 03132000.xhp @@ -35348,7 +35348,7 @@ "par_id3143228\n" "help.text" msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )" -msgstr "oListener = CreateUnoListener( Praefixname, ListenerSchnittstelleName )" +msgstr "oListener = CreateUnoListener( Präfixname, ListenerSchnittstelleName )" #. B3pJi #: 03132000.xhp @@ -40442,7 +40442,7 @@ "N0106\n" "help.text" msgid "' Procedures & functions go here." -msgstr "' Prozeduren & Funktionen gehören hier her." +msgstr "' Prozeduren und Funktionen gehören hier her." #. Funka #: classmodule.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-07-27 05:34+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564805193.000000\n" #. E9tti @@ -464,7 +464,7 @@ "par_id3154370\n" "help.text" msgid "Function Wizard" -msgstr "Funktions-Assistent" +msgstr "Funktionsassistent" #. CfMjV #: 00000404.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3821,7 +3821,7 @@ "tit\n" "help.text" msgid "Function Wizard" -msgstr "Funktions-Assistent" +msgstr "Funktionsassistent" #. DHRxH #: 04060000.xhp @@ -3830,7 +3830,7 @@ "bm_id3147426\n" "help.text" msgid "inserting functions; Function Wizardfunctions;Function Wizardwizards; functions" -msgstr "Funktionen einfügen; Funktions-AssistentFunktionen; Funktions-AssistentAssistenten; Funktionen" +msgstr "Funktionen einfügen; FunktionsassistentFunktionen; FunktionsassistentAssistenten; Funktionen" #. KeWpp #: 04060000.xhp @@ -3848,7 +3848,7 @@ "par_id3145271\n" "help.text" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "Öffnet das Fenster Funktions-Assistent, das Sie beim interaktiven Erstellen von Formeln unterstützt." +msgstr "Öffnet das Fenster Funktionsassistent, das Sie beim interaktiven Erstellen von Formeln unterstützt." #. exDJs #: 04060000.xhp @@ -3875,7 +3875,7 @@ "par_id3159153\n" "help.text" msgid "The Function Wizard has two tabs: Functions is used to create formulas, and Structure is used to check the formula build." -msgstr "Der Funktions-Assistent umfasst zwei Register: Funktionen zum Erstellen von Formeln und Struktur zum Prüfen der Formelstruktur." +msgstr "Der Funktionsassistent umfasst zwei Register: Funktionen zum Erstellen von Formeln und Struktur zum Prüfen der Formelstruktur." #. v7CjU #: 04060000.xhp @@ -4046,7 +4046,7 @@ "par_id3157980\n" "help.text" 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 "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktions-Assistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." +msgstr "Gestattet Ihnen den Zugriff auf eine untergeordnete Ebene des Funktionsassistenten, auf der anstelle von Werten oder Bezügen verschachtelte Funktionen erstellt, also Funktionen in Funktionen eingegeben werden können." #. GSRgn #: 04060000.xhp @@ -4100,7 +4100,7 @@ "par_id3149898\n" "help.text" msgid "Displays the created formula. Type your entries directly, or create the formula using the wizard." -msgstr "Zeigt die erstellte Formel an. Geben Sie die Formel entweder direkt ein oder erstellen Sie eine mithilfe des Funktions-Assistenten." +msgstr "Zeigt die erstellte Formel an. Geben Sie die Formel entweder direkt ein oder erstellen Sie eine mithilfe des Funktionsassistenten." #. iBGou #: 04060000.xhp @@ -4172,7 +4172,7 @@ "par_id3153029\n" "help.text" msgid "Ends the Function Wizard, and transfers the formula to the selected cells." -msgstr "Beendet den Funktions-Assistenten und überträgt die Formel in die ausgewählten Zellen." +msgstr "Beendet den Funktionsassistenten und überträgt die Formel in die ausgewählten Zellen." #. fBUkR #: 04060000.xhp @@ -4217,7 +4217,7 @@ "par_id3149350\n" "help.text" msgid "If you start the Function Wizard while the cell cursor is positioned in a cell that already contains a function, the Structure tab is opened and shows the composition of the current formula." -msgstr "Wenn Sie den Funktions-Assistenten aufrufen, während sich der Zellcursor in einer Zelle mit einer Funktion befindet, wird das Register Struktur geöffnet, in dem der Aufbau der aktuellen Formel angezeigt wird." +msgstr "Wenn Sie den Funktionsassistenten aufrufen, während sich der Zellcursor in einer Zelle mit einer Funktion befindet, wird das Register Struktur geöffnet, in dem der Aufbau der aktuellen Formel angezeigt wird." #. bNwhM #: 04060000.xhp @@ -4280,7 +4280,7 @@ "par_id3149378\n" "help.text" msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard." -msgstr "In diesem Abschnitt werden die Funktionen von $[officename] Calc beschrieben. Dabei sind die verschiedenen Funktionen im Funktions-Assistenten zu Kategorien zusammengefasst." +msgstr "In diesem Abschnitt werden die Funktionen von $[officename] Calc beschrieben. Dabei sind die verschiedenen Funktionen im Funktionsassistenten zu Kategorien zusammengefasst." #. JJJ2y #: 04060100.xhp @@ -5567,7 +5567,7 @@ "bm_id3154536\n" "help.text" msgid "date and time functions functions; date & time Function Wizard; date & time" -msgstr "Datums- und ZeitfunktionenFunktionen; Datum und ZeitFunktions-Assistent; Datum und Zeit" +msgstr "Datums- und ZeitfunktionenFunktionen; Datum und ZeitFunktionsassistent; Datum und Zeit" #. 4twnp #: 04060102.xhp @@ -5783,7 +5783,7 @@ "bm_id3143284\n" "help.text" msgid "financial functions functions; financial functions Function Wizard; financial amortizations, see also depreciations" -msgstr "Finanzmathematische FunktionenFunktionen; finanzmathematische FunktionenFunktions-Assistent; finanzmathematischAmortisierung, siehe auch Abschreibungen" +msgstr "Finanzmathematische FunktionenFunktionen; finanzmathematische FunktionenFunktionsassistent; finanzmathematischAmortisierung, siehe auch Abschreibungen" #. 3uCaF #: 04060103.xhp @@ -6521,7 +6521,7 @@ "par_id3150900\n" "help.text" msgid "=SYD(50000;10000;5;1)=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units." -msgstr "=DIA(50000;10000;5;1)=13.333,33 Währungseinheiten. Der Abschreibungsbetrag für das erste Jahr beträgt 13.333,33 Währungseinheiten." +msgstr "=DIA(50000;10000;5;1) = 13.333,33 Währungseinheiten. Der Abschreibungsbetrag für das erste Jahr beträgt 13.333,33 Währungseinheiten." #. YMhcv #: 04060103.xhp @@ -7763,7 +7763,7 @@ "bm_id3147247\n" "help.text" msgid "information functions Function Wizard; information functions; information functions" -msgstr "InformationsfunktionenFunktions-Assistent; InformationenFunktionen; Informationsfunktionen" +msgstr "InformationsfunktionenFunktionsassistent; InformationenFunktionen; Informationsfunktionen" #. rdDfi #: 04060104.xhp @@ -9977,7 +9977,7 @@ "bm_id3153484\n" "help.text" msgid "logical functions Function Wizard; logical functions; logical functions" -msgstr "Logische FunktionenFunktions-Assistent; logischFunktionen; logische Funktionen" +msgstr "Logische FunktionenFunktionsassistent; logischFunktionen; logische Funktionen" #. HZKH9 #: 04060105.xhp @@ -10535,7 +10535,7 @@ "bm_id3147124\n" "help.text" msgid "mathematical functions Function Wizard; mathematical functions; mathematical functions trigonometric functions" -msgstr "Mathematische FunktionenFunktions-Assistent; mathematische FunktionenFunktionen; mathematische FunktionenTrigonometrische Funktionen" +msgstr "Mathematische FunktionenFunktionsassistent; mathematische FunktionenFunktionen; mathematische FunktionenTrigonometrische Funktionen" #. 9umC6 #: 04060106.xhp @@ -10553,7 +10553,7 @@ "par_id3154943\n" "help.text" msgid "This category contains the Mathematical functions for Calc. To open the Function Wizard, choose Insert - Function." -msgstr "Diese Kategorie enthält mathematische Funktionen für Calc. Um den Funktions-Assistenten zu öffnen, wählen Sie Einfügen - Funktion...." +msgstr "Diese Kategorie enthält mathematische Funktionen für Calc. Um den Funktionsassistenten zu öffnen, wählen Sie Einfügen - Funktion...." #. bWDf7 #: 04060106.xhp @@ -13847,7 +13847,7 @@ "par_id3151774\n" "help.text" msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008-01-01, of the invoices to be included and C2 the date, 2008-02-01, that is no longer included." -msgstr "Beispiel: Angenommen, Sie haben Rechnungen in eine Tabelle eingegeben. Spalte A enthält das Datum der jeweiligen Rechnung, Spalte B die jeweiligen Beträge. Sie möchten eine Formel verwenden, mit der Sie die Summe aller Beträge für einen bestimmten Monat berechnen können, beispielsweise den Betrag für den Zeitraum >=01.01.2008 bis <01.02.2008. Die Daten umfassen den Bereich A1:A40, die zusammenzurechnenden Beträge umfassen den Bereich B1:B40. C1 enthält das Anfangsdatum 01.01.2008 der einzubeziehenden Rechnungen und C2 enthält das Datum 01.02.2008, das nicht mehr einbezogen wird." +msgstr "Beispiel: Angenommen, Sie haben Rechnungen in eine Tabelle eingegeben. Spalte A enthält das Datum der jeweiligen Rechnung, Spalte B die jeweiligen Beträge. Sie möchten eine Formel verwenden, mit der Sie die Summe aller Beträge für einen bestimmten Monat berechnen können, beispielsweise den Betrag für den Zeitraum >= 01.01.2008 bis < 01.02.2008. Die Daten umfassen den Bereich A1:A40, die zusammenzurechnenden Beträge umfassen den Bereich B1:B40. C1 enthält das Anfangsdatum 01.01.2008 der einzubeziehenden Rechnungen und C2 enthält das Datum 01.02.2008, das nicht mehr einbezogen wird." #. drXLF #: 04060106.xhp @@ -14486,7 +14486,7 @@ "par_id0119200904301815\n" "help.text" msgid "Triangulation_precision is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied." -msgstr "Zwischenergebnis_Genauigkeit ist ein optionaler Parameter. Wenn Zwischenergebnis_Genauigkeit angeben und >=3 ist, wird das Zwischenergebnis der Umwandlung (Währung_1, EUR, Währung_2) auf diese Genauigkeit gerundet. Wenn Zwischenergebnis_Genauigkeit fehlt, wird das Zwischenergebnis nicht gerundet. Auch wenn die Zielwährung \"EUR\" ist, wird Zwischenergebnis_Genauigkeit verwendet, als wenn ein Zwischenergebnis berechnet würde und auf die Umwandlung EUR zu EUR angewandt." +msgstr "Zwischenergebnis_Genauigkeit ist ein optionaler Parameter. Wenn Zwischenergebnis_Genauigkeit angeben und >= 3 ist, wird das Zwischenergebnis der Umwandlung (Währung_1, EUR, Währung_2) auf diese Genauigkeit gerundet. Wenn Zwischenergebnis_Genauigkeit fehlt, wird das Zwischenergebnis nicht gerundet. Auch wenn die Zielwährung \"EUR\" ist, wird Zwischenergebnis_Genauigkeit verwendet, als wenn ein Zwischenergebnis berechnet würde und auf die Umwandlung EUR zu EUR angewandt." #. YmarB #: 04060106.xhp @@ -14783,7 +14783,7 @@ "par_id3164347\n" "help.text" msgid "=MROUND(15.5;3) returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)." -msgstr "=VRUNDEN(15,5;3) ergibt 15, da 15,5 dichter an 15 (=3*5) liegt als an 18 (=3*6)." +msgstr "=VRUNDEN(15,5;3) ergibt 15, da 15,5 dichter an 15 (= 3*5) liegt als an 18 (= 3*6)." #. unovG #: 04060106.xhp @@ -14792,7 +14792,7 @@ "par_idN14DD6\n" "help.text" msgid "=MROUND(1.4;0.5) returns 1.5 (= 0.5*3)." -msgstr "=VRUNDEN(1,4;0,5) ergibt 1,5 (=0,5*3)." +msgstr "=VRUNDEN(1,4;0,5) ergibt 1,5 (= 0,5 * 3)." #. ZY96G #: 04060106.xhp @@ -15224,7 +15224,7 @@ "bm_id3147273\n" "help.text" msgid "matrices; functionsFunction Wizard; arraysarray formulasinline array constantsformulas; arraysfunctions; array functionsediting; array formulascopying; array formulasadjusting array rangescalculating; conditional calculationsmatrices; calculationsconditional calculations with arraysimplicit array handlingforced array handling" -msgstr "Matrizen; FunktionenFunktions-Assistent; MatrizenMatrizen; FormelnMatrizen; KonstantenFunktionen; MatrizenFormeln; MatrizenBearbeiten; MatrixformelnKopieren; MatrixformelnMatrixbereiche anpassenBerechnen; Bedingungen bei MatrizenMatrizen; BerechnungenBedingungen; Berechnungen bei MatrizenImplizite MatrixbearbeitungErzwungene Matrixbearbeitung" +msgstr "Matrizen; FunktionenFunktionsassistent; MatrizenMatrizen; FormelnMatrizen; KonstantenFunktionen; MatrizenFormeln; MatrizenBearbeiten; MatrixformelnKopieren; MatrixformelnMatrixbereiche anpassenBerechnen; Bedingungen bei MatrizenMatrizen; BerechnungenBedingungen; Berechnungen bei MatrizenImplizite MatrixbearbeitungErzwungene Matrixbearbeitung" #. ALUph #: 04060107.xhp @@ -15386,7 +15386,7 @@ "par_id3149102\n" "help.text" msgid "If you create an array formula using the Function Wizard, you must mark the Array check box each time so that the results are returned in an array. Otherwise, only the value in the upper-left cell of the array being calculated is returned." -msgstr "Beim Erstellen von Matrixformeln im Fenster Funktions-Assistent müssen Sie jedes Mal das Markierfeld Matrix aktivieren, damit die Ergebnisse in einer Matrix ausgegeben werden. Anderenfalls wird nur der Wert der oberen linken Zelle der zu berechnenden Matrix geliefert." +msgstr "Beim Erstellen von Matrixformeln im Fenster Funktionsassistent müssen Sie jedes Mal das Markierfeld Matrix aktivieren, damit die Ergebnisse in einer Matrix ausgegeben werden. Anderenfalls wird nur der Wert der oberen linken Zelle der zu berechnenden Matrix geliefert." #. G9EUo #: 04060107.xhp @@ -15638,7 +15638,7 @@ "par_id3146787\n" "help.text" msgid "Select a range of cells where you want to insert the array formula and either press F2 or position the cursor in the input line." -msgstr "Wählen Sie den Zellbereich aus, in den die Matrixformel eingefügt werden soll. Drücken Sie dann entweder die Taste F2 oder setzen Sie den Cursor in die Eingabezeile." +msgstr "Wählen Sie den Zellbereich aus, in dem die Matrixformel eingefügt werden soll. Drücken Sie dann entweder die Taste F2 oder setzen Sie den Cursor in die Eingabezeile." #. EBtxq #: 04060107.xhp @@ -16052,7 +16052,7 @@ "par_id3150312\n" "help.text" msgid "Select a single column range in which to enter the frequency according to the class limits. You must select one field more than the class ceiling. In this example, select the range C1:C6. Call up the FREQUENCY function in the Function Wizard. Select the Data range in (A1:A11), and then the Classes range in which you entered the class limits (B1:B6). Select the Array check box and click OK. You will see the frequency count in the range C1:C6." -msgstr "Wählen Sie einen einspaltigen Bereich aus, in den die Häufigkeit der Werte gemäß der Klassengrenzen eingetragen werden soll. Sie müssen eine Zelle über die oberste Klasse hinaus auswählen. Für dieses Beispiel wählen Sie den Bereich C1:C6. Rufen Sie die Funktion HÄUFIGKEIT im Funktions-Assistenten auf. Wählen Sie den Bereich Daten als (A1:A11) und den Bereich Klassen, in den Sie die Klassengrenzen eingegeben haben als (B1:B6). Aktivieren Sie das Kontrollkästchen Matrix und klicken Sie auf OK. Die Häufigkeitszählung erscheint im Bereich C1:C6." +msgstr "Wählen Sie einen einspaltigen Bereich aus, in dem die Häufigkeit der Werte gemäß der Klassengrenzen eingetragen werden soll. Sie müssen eine Zelle über die oberste Klasse hinaus auswählen. Für dieses Beispiel wählen Sie den Bereich C1:C6. Rufen Sie die Funktion HÄUFIGKEIT im Funktionsassistenten auf. Wählen Sie den Bereich Daten als (A1:A11) und den Bereich Klassen, in dem Sie die Klassengrenzen eingegeben haben als (B1:B6). Aktivieren Sie das Kontrollkästchen Matrix und klicken Sie auf OK. Die Häufigkeitszählung erscheint im Bereich C1:C6." #. shMJG #: 04060107.xhp @@ -16223,7 +16223,7 @@ "par_id3146826\n" "help.text" msgid "Select a square range. Choose the MMULT function. Select Array 1, then select Array 2. Using the Function Wizard, mark the Array check box. Click OK. The output array will appear in the first selected range." -msgstr "Wählen Sie einen quadratischen Bereich aus. Rufen Sie die Funktion MMULT auf. Wählen Sie Matrix 1 und anschließend Matrix 2 aus. Bei Verwendung des Funktions-Assistenten aktivieren Sie das Markierfeld Matrix. Klicken Sie auf die Schaltfläche OK. Die Ausgabematrix wird im ersten ausgewählten Bereich angezeigt." +msgstr "Wählen Sie einen quadratischen Bereich aus. Rufen Sie die Funktion MMULT auf. Wählen Sie Matrix 1 und anschließend Matrix 2 aus. Bei Verwendung des Funktionsassistenten aktivieren Sie das Markierfeld Matrix. Klicken Sie auf die Schaltfläche OK. Die Ausgabematrix wird im ersten ausgewählten Bereich angezeigt." #. vPBWq #: 04060107.xhp @@ -16286,7 +16286,7 @@ "par_id3159366\n" "help.text" msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press Shift + Command + EnterShift + Ctrl + Enter. Or, if you are using the Function Wizard, mark the Array check box. The transposed array appears in the selected target range and is protected automatically against changes." -msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens die selbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus, und drücken Sie Umschalt+Befehl+EingabetasteUmschalt+Strg+Eingabetaste. Anderenfalls, wenn Sie mit dem Funktions-Assistenten arbeiten, aktivieren Sie das Markierfeld Matrix. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt." +msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens die selbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus und drücken Sie Umschalt+Befehl+EingabetasteUmschalt+Strg+Eingabetaste. Anderenfalls, wenn Sie mit dem Funktionsassistenten arbeiten, aktivieren Sie das Markierfeld Matrix. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt." #. 3oHh6 #: 04060107.xhp @@ -16610,7 +16610,7 @@ "par_id3144687\n" "help.text" msgid "Column A contains several X1 values, column B several X2 values and column C the Y values. You have already entered these values in your spreadsheet. You have now set up E2:G6 in the spreadsheet and activated the Function Wizard. For the LINEST function to work, you must have marked the Array check box in the Function Wizard. Next, select the following values in the spreadsheet (or enter them using the keyboard):" -msgstr "Spalte A enthält mehrere X1-Werte, Spalte B mehrere X2-Werte und Spalte C die Y-Werte. Diese Werte haben Sie bereits in das Tabellendokument eingefügt. Sie haben nun E2:G6 im Tabellendokument eingerichtet und den Funktions-Assistenten aktiviert. Damit RGP funktioniert, müssen Sie außerdem das Markierfeld Matrix im Fenster Funktions-Assistent aktivieren. Nun wählen Sie die folgenden Werte im Tabellendokument aus (oder geben sie über die Tastatur ein):" +msgstr "Spalte A enthält mehrere X1-Werte, Spalte B mehrere X2-Werte und Spalte C die Y-Werte. Diese Werte haben Sie bereits in das Tabellendokument eingefügt. Sie haben nun E2:G6 im Tabellendokument eingerichtet und den Funktionsassistenten aktiviert. Damit RGP funktioniert, müssen Sie außerdem das Markierfeld Matrix im Fenster Funktionsassistent aktivieren. Nun wählen Sie die folgenden Werte im Tabellendokument aus (oder geben sie über die Tastatur ein):" #. KgyyZ #: 04060107.xhp @@ -17303,7 +17303,7 @@ "bm_id3153018\n" "help.text" msgid "statistics functionsFunction Wizard; statisticsfunctions; statistics functions" -msgstr "StatistikfunktionenFunktions-Assistent; StatistikenFunktionen; statistische Funktionen" +msgstr "StatistikfunktionenFunktionsassistent; StatistikenFunktionen; statistische Funktionen" #. KKBEq #: 04060108.xhp @@ -17375,7 +17375,7 @@ "bm_id3148522\n" "help.text" msgid "spreadsheets; functions Function Wizard; spreadsheets functions; spreadsheets" -msgstr "Tabellen; FunktionenFunktions-Assistent; Tabellen Funktionen; Tabellen" +msgstr "Tabellen; FunktionenFunktionsassistent; Tabellen Funktionen; Tabellen" #. qcCTY #: 04060109.xhp @@ -19454,7 +19454,7 @@ "par_id1672109\n" "help.text" msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax." -msgstr "Von der zweiten Syntaxvariante wird ausgegangen, wenn genau zwei Parameter vorhanden sind, von denen der erste eine Zelle oder ein Zellbereich ist. In allen anderen Fällen wird von der ersten Syntaxvariante ausgegangen. Der Funktions-Assistent zeigt die erste Syntaxvariante." +msgstr "Von der zweiten Syntaxvariante wird ausgegangen, wenn genau zwei Parameter vorhanden sind, von denen der erste eine Zelle oder ein Zellbereich ist. In allen anderen Fällen wird von der ersten Syntaxvariante ausgegangen. Der Funktionsassistent zeigt die erste Syntaxvariante." #. Cwsfn #: 04060109.xhp @@ -19598,7 +19598,7 @@ "bm_id3145389\n" "help.text" msgid "text in cells; functions functions; text functions Function Wizard;text" -msgstr "Text in Zellen; FunktionenFunktionen; TextfunktionenFunktions-Assistent; Text" +msgstr "Text in Zellen; FunktionenFunktionen; TextfunktionenFunktionsassistent; Text" #. DEMF7 #: 04060110.xhp @@ -22280,7 +22280,7 @@ "bm_id3150870\n" "help.text" msgid "add-ins; functionsfunctions; add-in functionsFunction Wizard; add-ins" -msgstr "Add-ins; FunktionenFunktionen; Add-in-FunktionenFunktions-Assistent; Add-ins" +msgstr "Add-ins; FunktionenFunktionen; Add-in-FunktionenFunktionsassistent; Add-ins" #. igy2a #: 04060111.xhp @@ -22883,7 +22883,7 @@ "par_id3150361\n" "help.text" msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the Function Wizard in the Add-In category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the shared libraryexternal DLL so that the Add-In can be successfully attached." -msgstr "$[officename] Calc kann um Plug-ins, externe Programmiermodule mit zusätzlichen Funktionen für die Arbeit mit Tabellendokumenten, erweitert werden. Diese Funktionen finden Sie im Funktions-Assistenten unter der Kategorie Plug-in. Wenn Sie selbst Plug-ins programmieren möchten, erfahren Sie hier, welche Funktionen für eine erfolgreiche Implementierung von Plug-ins aus der Shared Library (gemeinsamen Bibliothek)externen DLL exportiert werden müssen." +msgstr "$[officename] Calc kann um Plug-ins, externe Programmiermodule mit zusätzlichen Funktionen für die Arbeit mit Tabellendokumenten, erweitert werden. Diese Funktionen finden Sie im Funktionsassistenten unter der Kategorie Plug-in. Wenn Sie selbst Plug-ins programmieren möchten, erfahren Sie hier, welche Funktionen für eine erfolgreiche Implementierung von Plug-ins aus der Shared Library (gemeinsamen Bibliothek)externen DLL exportiert werden müssen." #. qyzrA #: 04060112.xhp @@ -22892,7 +22892,7 @@ "par_id3149211\n" "help.text" msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable shared libraryDLL. To be recognized by $[officename], the shared libraryDLL must have certain properties, as explained in the following. This information allows you to program your own Add-In for Function Wizard of $[officename] Calc." -msgstr "$[officename] durchsucht den in der Konfiguration festgelegten Plug-in-Ordner nach einer passenden shared library (gemeinsame Bibliothek)DLL. Um von $[officename] erkannt zu werden, muss die shared libraryDLL bestimmte Eigenschaften aufweisen, wie im Folgenden erklärt wird. Mit diesen Informationen können Sie Ihr eigenes Plug-in für den Funktions-Assistenten von $[officename] Calc programmieren." +msgstr "$[officename] durchsucht den in der Konfiguration festgelegten Plug-in-Ordner nach einer passenden shared library (gemeinsame Bibliothek)DLL. Um von $[officename] erkannt zu werden, muss die shared libraryDLL bestimmte Eigenschaften aufweisen, wie im Folgenden erklärt wird. Mit diesen Informationen können Sie Ihr eigenes Plug-in für den Funktionsassistenten von $[officename] Calc programmieren." #. CAC5V #: 04060112.xhp @@ -23225,7 +23225,7 @@ "par_id3148579\n" "help.text" msgid "Output: Function name as seen by the programmer, as it is named in the Shared LibraryDLL. This name does not determine the name used in the Function Wizard." -msgstr "Output: Der bei der Programmierung verwendete Funktionsname, der die Funktion in der Shared LibraryDLL darstellt. Dieser Name legt nicht den Namen fest, der im Funktions-Assistenten verwendet wird." +msgstr "Output: Der bei der Programmierung verwendete Funktionsname, der die Funktion in der Shared LibraryDLL darstellt. Dieser Name legt nicht den Namen fest, der im Funktionsassistenten verwendet wird." #. 6yGps #: 04060112.xhp @@ -23252,7 +23252,7 @@ "par_id3155261\n" "help.text" msgid "Output: Function name as seen by the user, as it appears in the Function Wizard. May contain umlauts." -msgstr "Output: Der für den Benutzer sichtbare Funktionsname, wie er im Funktions-Assistenten erscheint. Umlaute sind hier zulässig." +msgstr "Output: Der für den Benutzer sichtbare Funktionsname, wie er im Funktionsassistenten erscheint. Umlaute sind hier zulässig." #. rcNLZ #: 04060112.xhp @@ -23270,7 +23270,7 @@ "par_id3153000\n" "help.text" msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the Function Wizard." -msgstr "Liefert eine kurze Beschreibung der Add-in-Funktion und ihrer Parameter. Diese Funktion kann optional eingesetzt werden, um im Funktions-Assistenten Beschreibungen der Funktionen und ihrer Parameter anzuzeigen." +msgstr "Liefert eine kurze Beschreibung der Add-in-Funktion und ihrer Parameter. Diese Funktion kann optional eingesetzt werden, um im Funktionsassistenten Beschreibungen der Funktionen und ihrer Parameter anzuzeigen." #. WCRmw #: 04060112.xhp @@ -23342,7 +23342,7 @@ "par_id3145303\n" "help.text" msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the Function Wizard is limited and that the 256 characters cannot be fully used." -msgstr "pName und pDesc sind in $[officename] Calc implementierte Char-Arrays der Größe 256. Beachten Sie bitte, dass der im Funktions-Assistenten verfügbare Platz beschränkt ist und die 256 Zeichen nicht voll genutzt werden können." +msgstr "pName und pDesc sind in $[officename] Calc implementierte Char-Arrays der Größe 256. Beachten Sie bitte, dass der im Funktionsassistenten verfügbare Platz beschränkt ist und die 256 Zeichen nicht voll genutzt werden können." #. gmvAA #: 04060112.xhp @@ -38786,7 +38786,7 @@ "par_id3149200\n" "help.text" msgid "C (optional) = 0 or False calculates the density function; C = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME." -msgstr "Kumuliert (optional) = 0 oder FALSCH berechnet die Dichtefunktion; Kumuliert =1 oder WAHR berechnet die Verteilung. Wenn der Parameter fehlt, wird der Defaultwert WAHR angenommen, wenn Sie das Dokument speichern. Das gewährleistet die beste Kompatibilität mit anderen Programmen und älteren Versionen von %PRODUCTNAME." +msgstr "Kumuliert (optional) = 0 oder FALSCH berechnet die Dichtefunktion; Kumuliert = 1 oder WAHR berechnet die Verteilung. Wenn der Parameter fehlt, wird der Defaultwert WAHR angenommen, wenn Sie das Dokument speichern. Das gewährleistet die beste Kompatibilität mit anderen Programmen und älteren Versionen von %PRODUCTNAME." #. bE3Ap #: 04060184.xhp @@ -38957,7 +38957,7 @@ "par_id2854940\n" "help.text" msgid "Returns the Alpha'th percentile of a supplied range of values for a given value of Alpha, within the range 0 to 1 (exclusive). A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (Alpha=1) of a data series. For Alpha = 25%, the percentile means the first quartile; Alpha = 50% is the MEDIAN." -msgstr "Ergibt das Alpha-te Quantil eines übergebenen Bereichs von Werten für einen übergebenen Wert Alpha im Bereich von 0 bis 1 (exklusiv). Ein Quantil ergibt den Skalenwert für eine Datenreihe, die vom kleinsten Wert (Alpha=0) bis zum größten Wert (Alpha=1) eines Datenbereichs reicht. Alpha = 25 % entspricht dem ersten Quartil; Alpha = 50 % ist der MEDIAN." +msgstr "Ergibt das Alpha-te Quantil eines übergebenen Bereichs von Werten für einen übergebenen Wert Alpha im Bereich von 0 bis 1 (exklusiv). Ein Quantil ergibt den Skalenwert für eine Datenreihe, die vom kleinsten Wert (Alpha=0) bis zum größten Wert (Alpha = 1) eines Datenbereichs reicht. Alpha = 25 % entspricht dem ersten Quartil; Alpha = 50 % ist der MEDIAN." #. 88Eod #: 04060184.xhp @@ -42008,7 +42008,7 @@ "par_id0305200911372777\n" "help.text" msgid "If C is 0, WEIBULL calculates the probability density function." -msgstr "Wenn K=0 , berechnet WEIBULL die Wahrscheinlichkeitdichtefunktion." +msgstr "Wenn K = 0 , berechnet WEIBULL die Wahrscheinlichkeitsdichtefunktion." #. gLsBV #: 04060185.xhp @@ -42017,7 +42017,7 @@ "par_id0305200911372743\n" "help.text" msgid "If C is 1, WEIBULL calculates the cumulative distribution function." -msgstr "Wenn K=1, berechnet WEIBULL die kumulative Verteilungsfunktion." +msgstr "Wenn K = 1, berechnet WEIBULL die kumulative Verteilungsfunktion." #. XaFap #: 04060185.xhp @@ -42125,7 +42125,7 @@ "par_id2905200911372777\n" "help.text" msgid "If C is 0, WEIBULL.DIST calculates the probability density function." -msgstr "Wenn K=0, berechnet WEIBULL.VERT die Wahrscheinlichkeitdichtefunktion." +msgstr "Wenn K = 0, berechnet WEIBULL.VERT die Wahrscheinlichkeitsdichtefunktion." #. DTAzF #: 04060185.xhp @@ -42134,7 +42134,7 @@ "par_id2905200911372743\n" "help.text" msgid "If C is 1, WEIBULL.DIST calculates the cumulative distribution function." -msgstr "Wenn K=1, berechnet WEIBULL.VERT die kumulative Verteilungsfunktion." +msgstr "Wenn K = 1, berechnet WEIBULL.VERT die kumulative Verteilungsfunktion." #. UNtn7 #: 04060185.xhp @@ -43628,7 +43628,7 @@ "par_id3151118\n" "help.text" msgid "Opens the Function List deck of the Sidebar, which displays all functions that can be inserted into your document. The Function List deck is similar to the Functions tab page of the Function Wizard. The functions are inserted with placeholders to be replaced with your own values." -msgstr "Öffnet das den Bereich Funktionen in der Seitenleiste, das alle Funktionen auflistet, die in das Dokument eingefügt werden können. Der Bereich Funktionen der Seitenleiste ist mit dem Register Funktionen des Funktions-Assistenten vergleichbar. Die Funktionen werden mit Platzhaltern eingefügt, die durch Ihre eigenen Werte zu ersetzen sind." +msgstr "Öffnet das den Bereich Funktionen in der Seitenleiste, das alle Funktionen auflistet, die in das Dokument eingefügt werden können. Der Bereich Funktionen der Seitenleiste ist mit dem Register Funktionen des Funktionsassistenten vergleichbar. Die Funktionen werden mit Platzhaltern eingefügt, die durch Ihre eigenen Werte zu ersetzen sind." #. UGvDB #: 04080000.xhp @@ -47579,7 +47579,7 @@ "par_id3153188\n" "help.text" msgid "The structure of protected spreadsheet documents can be changed only if the Protect option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item Select All Sheets can be activated. All other menu items are deactivated. To remove the protection, call up the command Tools - Protect Spreadsheet Structure again. If no password is assigned, protection is immediately removed. If you were assigned a password, the Remove Spreadsheet Protection dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active." -msgstr "Die Struktur geschützter Tabellendokumente lässt sich nur dann ändern, wenn die Option Schutz deaktiviert ist. In den Kontextmenüs der Tabellenregister am unteren Bildschirmrand kann nur Alle Tabellen auswählen ausgewählt werden. Alle übrigen Menüelemente sind nicht verfügbar. Zum Aufheben des Schutzes wählen Sie erneut Extras - Tabellenstruktur schützen.... Wenn kein Kennwort festgelegt wurde, wird der Schutz sofort aufgehoben. Wenn ein Kennwort für die Schutzfunktion festgelegt wurde, erscheint der Dialog Tabellenschutz aufheben, in den Sie das Kennwort eingeben müssen. Erst dann wird das Häkchen ausgeblendet, das auf einen aktiven Schutz hinweist." +msgstr "Die Struktur geschützter Tabellendokumente lässt sich nur dann ändern, wenn die Option Schutz deaktiviert ist. In den Kontextmenüs der Tabellenregister am unteren Bildschirmrand kann nur Alle Tabellen auswählen ausgewählt werden. Alle übrigen Menüelemente sind nicht verfügbar. Zum Aufheben des Schutzes wählen Sie erneut Extras - Tabellenstruktur schützen.... Wenn kein Kennwort festgelegt wurde, wird der Schutz sofort aufgehoben. Wenn ein Kennwort für die Schutzfunktion festgelegt wurde, erscheint der Dialog Tabellenschutz aufheben, in dem Sie das Kennwort eingeben müssen. Erst dann wird das Häkchen ausgeblendet, das auf einen aktiven Schutz hinweist." #. Y5KBL #: 06060200.xhp @@ -47867,7 +47867,7 @@ "par_id3150439\n" "help.text" msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from Function Wizard, from all defined range names, from all database range names, and from the content of all label ranges." -msgstr "Bei der Eingabe von Formeln mit Zeichen, die bereits in vorigen Einträgen vorgekommen sind, wird ein Hilfetipp eingeblendet. Darin sind die letzten zehn aus dem Funktions-Assistenten verwendeten Funktionen aus allen definierten Bereichsnamen, allen Datenbankbereichsnamen und dem Inhalt aller Beschriftungsbereiche aufgeführt." +msgstr "Bei der Eingabe von Formeln mit Zeichen, die bereits in vorigen Einträgen vorgekommen sind, wird ein Hilfetipp eingeblendet. Darin sind die letzten zehn aus dem Funktionsassistenten verwendeten Funktionen aus allen definierten Bereichsnamen, allen Datenbankbereichsnamen und dem Inhalt aller Beschriftungsbereiche aufgeführt." #. ZG6FW #: 06130000.xhp @@ -54437,7 +54437,7 @@ "par_id26516178768369\n" "help.text" msgid "If the complex number is actually a real number (b=0), then it can be either a string expression or a number value." -msgstr "Wenn Komplexe_Zahl eine reelle Zahl (b=0) ist, dann kann sie entweder eine Zeichenkette oder ein Zahlwert sein." +msgstr "Wenn Komplexe_Zahl eine reelle Zahl (b = 0) ist, dann kann sie entweder eine Zeichenkette oder ein Zahlwert sein." #. 9GGQu #: ful_func.xhp @@ -58532,7 +58532,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 18.8061295551355, the prediction interval for additive forecast for January 2014 based on Values and Timeline named ranges above, 90% (=0.9) confidence level, with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "Ergibt 18,8061295551355, das Vorhersageintervall für die additive Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90 % (=0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." +msgstr "Ergibt 18,8061295551355, das Vorhersageintervall für die additive Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90 % (= 0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." #. fZJa4 #: func_forecastetspiadd.xhp @@ -58658,7 +58658,7 @@ "hd_id04032016112394554\n" "help.text" msgid "Returns 20.1040952101013, the prediction interval for multiplicative forecast for January 2014 based on Values and Timeline named ranges above, confidence level of 90% (=0.9) with one sample per period, no missing data, and AVERAGE as aggregation." -msgstr "Ergibt 20,1040952101013, das Vorhersageintervall für die multiplikative Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90 % (=0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." +msgstr "Ergibt 20,1040952101013, das Vorhersageintervall für die multiplikative Vorhersage für Januar 2014 basierend auf den für Werte und Zeitraum benannten Bereichen oberhalb, einem 90 % (= 0,9) Konfidenzintervall, einer Periodenlänge von 1, keinen fehlenden Daten und MITTELWERT als Näherung." #. 5GAFZ #: func_forecastetspimult.xhp @@ -61439,7 +61439,7 @@ "par_id571575080642652\n" "help.text" msgid "Further information about touch / no-touch options may be found on many financial websites." -msgstr "Weitere Informationen zu Touch-/No-Touch-Optionen finden Sie auf vielen Finanzwebsites." +msgstr "Weitere Informationen zu Touch-/No-Touch-Optionen finden Sie auf vielen Finanzwebseiten." #. V3nnz #: func_opt_touch.xhp @@ -64976,7 +64976,7 @@ "par_id221589959855748\n" "help.text" msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions." -msgstr "Sie können, falls verfügbar, weitere Solver-Maschinen als Extensions installieren. Wählen Sie Extras – Extension Manager… und navigieren Sie zur Extensions-Website, um nach Erweiterungen zu suchen." +msgstr "Sie können, falls verfügbar, weitere Solver-Maschinen als Extensions installieren. Wählen Sie Extras – Extension-Manager… und navigieren Sie zur Extensions-Webseite, um nach Erweiterungen zu suchen." #. QtDyE #: solver_options.xhp @@ -65102,7 +65102,7 @@ "par_id0603200910394248\n" "help.text" msgid "Specifies the probability for an individual to choose the Differential Evolution strategy." -msgstr "Gibt die Wahrscheinlichkeit an, mit der eine Person die differentielle Entwicklungs-Strategie wählt." +msgstr "Gibt die Wahrscheinlichkeit an, mit der eine Person die differentielle Entwicklungsstrategie wählt." #. DbnUB #: solver_options_algo.xhp @@ -65723,7 +65723,7 @@ "par_id1000550\n" "help.text" msgid "The following table has two time series, one representing an impulse function at time t=0 and the other an impulse function at time t=2." -msgstr "Die folgende Tabelle zeigt zwei Zeitreihen: eine repräsentiert eine Impulsfunktion zur Zeit t=0 und die andere eine Impulsfunktion zur Zeit t=2." +msgstr "Die folgende Tabelle zeigt zwei Zeitreihen: eine repräsentiert eine Impulsfunktion zur Zeit t = 0 und die andere eine Impulsfunktion zur Zeit t = 2." #. uZ5BP #: stat_data.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:08+0200\n" -"PO-Revision-Date: 2021-03-07 20:37+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -608,7 +608,7 @@ "par_id3155922\n" "help.text" msgid "Enter the formula that you want to add to the current cell. You can also click the Function Wizard icon to insert a predefined function into the formula." -msgstr "Geben Sie die Formel ein, die in die aktuelle Zelle eingefügt werden soll. Alternativ können Sie auch auf das Symbol des Funktions-Assistenten klicken, um eine vordefinierte Funktion in die Formel einzufügen." +msgstr "Geben Sie die Formel ein, die in die aktuelle Zelle eingefügt werden soll. Alternativ können Sie auch auf das Symbol des Funktionsassistenten klicken, um eine vordefinierte Funktion in die Formel einzufügen." #. pBxxB #: 06060000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-02-17 12:22+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -761,7 +761,7 @@ "par_id3145162\n" "help.text" msgid "Opens the Function Wizard." -msgstr "Öffnet den Funktions-Assistenten." +msgstr "Öffnet den Funktionsassistenten." #. ppW28 #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -86,7 +86,7 @@ "par_id3149210\n" "help.text" msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, 'Harry\\'s Bar'." -msgstr "Damit Namen automatisch von Calc erkannt werden, müssen sie aus Buchstaben und Zahlen bestehen, wobei das erste Zeichen ein Buchstabe sein muss. Um auch andere Zeichen zu verwenden, einschließlich Leerzeichen, müssen Sie den Namen in einfache Anführungszeichen (') einschließen. Kommt im Namen selbst ein einfaches Anführungszeichen vor, so muss vor diesem Zeichen ein Rückstrich stehen, beispielsweise 'Jan \\'97'." +msgstr "Damit Namen automatisch von Calc erkannt werden, müssen sie aus Buchstaben und Zahlen bestehen, wobei das erste Zeichen ein Buchstabe sein muss. Um auch andere Zeichen einschließlich Leerzeichen zu verwenden, müssen Sie den Namen in einfache Anführungszeichen (') einschließen. Kommt im Namen selbst ein einfaches Anführungszeichen vor, so muss vor diesem Zeichen ein Rückstrich stehen, beispielsweise 'Jan \\'97'." #. EXFye #: auto_off.xhp @@ -257,7 +257,7 @@ "par_id3154368\n" "help.text" msgid "Tools - AutoCorrect - AutoCorrect Options" -msgstr "Extras - AutoKorrektur - AutoKorrektur-Optionen..." +msgstr "Extras - AutoKorrektur-Optionen…" #. tdzBC #: autofilter.xhp @@ -3038,7 +3038,7 @@ "par_id3153246\n" "help.text" msgid "Close the Function Wizard with OK." -msgstr "Schließen Sie den Funktions-Assistenten mit OK." +msgstr "Schließen Sie den Funktionsassistenten mit OK." #. 75WFf #: cellstyle_conditional.xhp @@ -6809,7 +6809,7 @@ "par_id3150109\n" "help.text" msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions." -msgstr "Wie das Beispiel zeigt, können Funktionen in Formeln eingebettet werden. Sie können auch mehrere Funktionen ineinander verschachteln. Der Funktions-Assistent unterstützt Sie beim Arbeiten mit verschachtelten Funktionen." +msgstr "Wie das Beispiel zeigt, können Funktionen in Formeln eingebettet werden. Sie können auch mehrere Funktionen ineinander verschachteln. Der Funktionsassistent unterstützt Sie beim Arbeiten mit verschachtelten Funktionen." #. CQoDo #: formulas.xhp @@ -6827,7 +6827,7 @@ "par_id3152869\n" "help.text" msgid "Function Wizard" -msgstr "Funktions-Assistent" +msgstr "Funktionsassistent" #. 6XzRE #: fraction_enter.xhp @@ -7898,7 +7898,7 @@ "par_id3150305\n" "help.text" msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell." -msgstr "Von der aktuellen Zelle bis zur Zelle, auf die Sie geklickt haben, wird durch Mausklick ein rechteckiger Bereich ausgewählt. Alternativ können Sie mit gedückter Umschalttaste auf die Zelle klicken." +msgstr "Von der aktuellen Zelle bis zur Zelle, auf die Sie geklickt haben, wird durch Mausklick ein rechteckiger Bereich ausgewählt. Alternativ können Sie mit gedrückter Umschalttaste auf die Zelle klicken." #. TBk4P #: mark_cells.xhp @@ -9491,7 +9491,7 @@ "hd_id201525166689277\n" "help.text" msgid "Pivot chart field buttons" -msgstr "Schaltflächen für Pivot-Diargamm-Felder" +msgstr "Schaltflächen für Pivot-Diagramm-Felder" #. h7jXH #: pivotchart_filter.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/scalc.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/scalc.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-07-27 05:34+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1513085807.000000\n" #. ZxQeC @@ -536,7 +536,7 @@ "hd_id3154015\n" "help.text" msgid "AutoCorrect Options" -msgstr "AutoKorrektur-Optionen..." +msgstr "AutoKorrektur-Optionen…" #. eAavz #: main0106.xhp @@ -1535,7 +1535,7 @@ "par_id3145271\n" "help.text" msgid "You can also use the Function Wizard to help you create your formulas." -msgstr "Außerdem steht Ihnen der Funktions-Assistent als Hilfe zum Erstellen von Formeln zur Verfügung." +msgstr "Außerdem steht Ihnen der Funktionsassistent als Hilfe zum Erstellen von Formeln zur Verfügung." #. jARFA #: main0503.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/schart/01.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/schart/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -635,7 +635,7 @@ "par_id1106200812112530\n" "help.text" 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 "Legt die Schreibrichtung für einen Absatz fest, der Complex Text Layout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist." +msgstr "Legt die Schreibrichtung für einen Absatz fest, der Komplexes Textlayout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist." #. iNVc7 #: 04020000.xhp @@ -860,7 +860,7 @@ "par_id1106200812280719\n" "help.text" 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 "Legt die Schreibrichtung für einen Absatz fest, der Complex Text Layout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist." +msgstr "Legt die Schreibrichtung für einen Absatz fest, der Komplexes Textlayout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist." #. iCBUY #: 04030000.xhp @@ -3479,7 +3479,7 @@ "par_id1106200812235271\n" "help.text" 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 "Legt die Schreibrichtung für einen Absatz fest, der Complex Text Layout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist." +msgstr "Legt die Schreibrichtung für einen Absatz fest, der Komplexes Textlayout (CTL) verwendet. Diese Eigenschaft wird nur unterstützt, wenn in den Optionen \"Bidirektionales Schreiben\" aktiviert ist." #. cjeWA #: 05030000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3019,7 +3019,7 @@ "par_idN107BD\n" "help.text" msgid "In %PRODUCTNAME Base, you can access data that is stored in a wide variety of database file formats. %PRODUCTNAME Base natively supports some flat file database formats, such as the dBASE format. You can also use %PRODUCTNAME Base to connect to external relational databases, such as databases from MySQL or Oracle." -msgstr "In %PRODUCTNAME Base kann man die in vielen Datenbankenformaten gespeicherte Daten abrufen. %PRODUCTNAME Base unterstützt nativ einige flache Datenbankenformate, wie die dBASE-Dateien. Man kann mit %PRODUCTNAME Base auch externe relationale Datenbanken abrufen, wie die von MySQL oder Oracle." +msgstr "In %PRODUCTNAME Base kann man die in vielen Datenbankformaten gespeicherten Daten abrufen. %PRODUCTNAME Base unterstützt nativ einige flache Datenbankformate, wie die dBASE-Dateien. Man kann mit %PRODUCTNAME Base auch externe relationale Datenbanken abrufen, wie die von MySQL oder Oracle." #. RRoXE #: main.xhp @@ -3100,7 +3100,7 @@ "par_idN1084A\n" "help.text" msgid "To open a database file, choose File - Open. In the File type list box, select to view only \"Database documents\". Select a database document and click Open." -msgstr "Zum Öffnen einer Datenbank wählen Sie Datei – Öffnen…. In der Liste Dateityp wählen Sie \"Datenbankendokumente\". Wählen Sie einen Datenbankdokument aus und klicken Sie auf Öffnen." +msgstr "Zum Öffnen einer Datenbank wählen Sie Datei – Öffnen…. In der Liste Dateityp wählen Sie \"Datenbankdokumente\". Wählen Sie ein Datenbankdokument aus und klicken Sie auf Öffnen." #. QFEDB #: main.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sdraw.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sdraw.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/sdraw.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/sdraw.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -104,7 +104,7 @@ "par_id3150868\n" "help.text" msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click Exit." -msgstr "Dieses Menü umfasst Befehle zum Arbeiten mit Draw Dokumenten. Sie können beispielsweise ein neues Dokument erstellen, ein Dokumente öffnen, schließen und drucken. Um die Arbeit mit $[officename] Draw zu beenden, klicken Sie auf Schließen." +msgstr "Dieses Menü umfasst Befehle zum Arbeiten mit Draw-Dokumenten. Sie können beispielsweise ein neues Dokument erstellen, ein Dokumente öffnen, schließen und drucken. Um die Arbeit mit $[officename] Draw zu beenden, klicken Sie auf Schließen." #. uGyaP #: main0103.xhp @@ -788,7 +788,7 @@ "par_id3146974\n" "help.text" msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)." -msgstr "Hier finden Sie Befehle zum Bearbeiten von Draw Dokumenten, beispielsweise zum Widerrufen der letzten Aktion, zum Kopieren und Einfügen über die Zwischenablage." +msgstr "Hier finden Sie Befehle zum Bearbeiten von Draw-Dokumenten, beispielsweise zum Widerrufen der letzten Aktion, zum Kopieren und Einfügen über die Zwischenablage." #. dCFBH #: main_edit.xhp @@ -1283,7 +1283,7 @@ "par_id3156443\n" "help.text" msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings." -msgstr "Dieses Menü enthält zusätzliche Befehle für $[officename] Draw Dokumente wie zur Sprache und den Programmeinstellungen." +msgstr "Dieses Menü enthält zusätzliche Befehle für $[officename] Draw-Dokumente wie zur Sprache und den Programmeinstellungen." #. QBgiC #: main_tools.xhp @@ -1301,7 +1301,7 @@ "hd_id3153415\n" "help.text" msgid "AutoCorrect Options" -msgstr "AutoKorrektur-Optionen" +msgstr "AutoKorrektur-Optionen…" #. U5jsV #: main_tools.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1958,7 +1958,7 @@ "par_id3155336\n" "help.text" msgid "Export Directly as PDF" -msgstr "Direktes Exportieren als PDF" +msgstr "Direkt als PDF exportieren" #. xDED8 #: 00000005.xhp @@ -2084,7 +2084,7 @@ "par_id3156081\n" "help.text" msgid "Languages with complex text layout may have some or all of the following features:" -msgstr "Sprachen mit komplexen Skripten können unter anderem folgende Eigenschaften aufweisen:" +msgstr "Sprachen mit komplexem Textlayout können einige oder alle der folgenden Funktionen aufweisen:" #. 6BmAW #: 00000005.xhp @@ -4478,7 +4478,7 @@ "par_idN10AC5\n" "help.text" msgid "Document Converter Wizard" -msgstr "Dokumenten-Konverter-Assistent" +msgstr "Dokumentkonverter-Assistent" #. 6sL4z #: 00000099.xhp @@ -6746,7 +6746,7 @@ "par_id3153387\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select HTML file type, page 1 of the wizard." -msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren..., Dateityp Webseite, Seite 1 des Assistenten." +msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren…, Dateityp HTML-Dokument, Seite 1 des Assistenten." #. kTG56 #: 00000401.xhp @@ -6755,7 +6755,7 @@ "par_id3154021\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select HTML file type, page 2 of the wizard." -msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren..., Dateityp Webseite, Seite 2 des Assistenten." +msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren…, Dateityp HTML-Dokument, Seite 2 des Assistenten." #. z8mpb #: 00000401.xhp @@ -6764,7 +6764,7 @@ "par_id3147246\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select HTML file type, page 3 of the wizard." -msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren..., Dateityp Webseite, Seite 3 des Assistenten." +msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren…, Dateityp HTML-Dokument, Seite 3 des Assistenten." #. A9Fks #: 00000401.xhp @@ -6773,7 +6773,7 @@ "par_id3145131\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select HTML file type, page 4 of the wizard." -msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren..., Dateityp Webseite, Seite 4 des Assistenten." +msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren…, Dateityp HTML-Dokument, Seite 4 des Assistenten." #. pf6v8 #: 00000401.xhp @@ -6782,7 +6782,7 @@ "par_id3150235\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select HTML file type, page 5 of the wizard." -msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren..., Dateityp Webseite, Seite 5 des Assistenten." +msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren…, Dateityp HTML-Dokument, Seite 5 des Assistenten." #. bqvr4 #: 00000401.xhp @@ -6791,7 +6791,7 @@ "par_id3145762\n" "help.text" msgid "$[officename] Draw or $[officename] Impress menu File - Export, select HTML file type, page 6 of the wizard." -msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren..., Dateityp Webseite, Seite 6 des Assistenten." +msgstr "In $[officename] Draw/$[officename] Impress wählen Sie Datei - Exportieren…, Dateityp HTML-Dokument, Seite 6 des Assistenten." #. SgBFJ #: 00000401.xhp @@ -7151,7 +7151,7 @@ "par_id3155763\n" "help.text" msgid "Export Directly as PDF" -msgstr "Direktes Exportieren als PDF" +msgstr "Direkt als PDF exportieren" #. 4XVGr #: 00000401.xhp @@ -8393,7 +8393,7 @@ "par_idN10843\n" "help.text" msgid "Choose Tools - Extension Manager." -msgstr "Wählen Sie Extras - Extension-Manager...." +msgstr "Wählen Sie Extras - Extension-Manager…." #. JPbac #: 00000406.xhp @@ -8402,7 +8402,7 @@ "par_id9988402\n" "help.text" msgid "Choose Tools - Extension Manager, click Check for Updates button." -msgstr "Wählen Sie Extras - Extension Manager... und klicken Sie dann auf die Schaltfläche Auf Updates prüfen." +msgstr "Wählen Sie Extras - Extension-Manager… und klicken Sie dann auf die Schaltfläche Auf Updates prüfen." #. sPJ9b #: 00000406.xhp @@ -8870,7 +8870,7 @@ "par_id3155446\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Complex Text Layout." -msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen - Complex Text Layout." +msgstr "Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen… - Spracheinstellungen - Sprachen - Komplexes Textlayout." #. NyrwR #: 00000406.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3047,7 +3047,7 @@ "par_id471561565422027\n" "help.text" msgid "The Export command opens the system file picker, where you can enter the name and format of the exported file." -msgstr "" +msgstr "Der Befehl Exportieren öffnet die Dateiauswahl, in welcher der Name und das Format der zu exportierenden Datei eingegeben werden können." #. BM7XX #: 01070001.xhp @@ -3065,7 +3065,7 @@ "par_id871561565412738\n" "help.text" msgid "Enter a file name or a path for the file." -msgstr "" +msgstr "Geben Sie einen Dateinamen und Pfad für die Datei ein." #. qpAcp #: 01070001.xhp @@ -3137,7 +3137,7 @@ "hd_id71513635341099\n" "help.text" msgid "Export Directly as PDF" -msgstr "Direktes Exportieren als PDF" +msgstr "Direkt als PDF exportieren" #. AWMaF #: 01070002.xhp @@ -3506,7 +3506,7 @@ "par_idN106CC\n" "help.text" msgid "Digital Signatures" -msgstr "" +msgstr "Digitale Signaturen" #. EdEtn #: 01100200.xhp @@ -3524,7 +3524,7 @@ "hd_id3156346\n" "help.text" msgid "Last printed" -msgstr "" +msgstr "Zuletzt gedruckt" #. BunTF #: 01100200.xhp @@ -3542,7 +3542,7 @@ "par_id211604484407570\n" "help.text" msgid "After printing, a document must be saved to preserve its Last printed data. No warning message is given about this, if an unsaved document is closed." -msgstr "" +msgstr "Nach dem Drucken muss ein Dokument gespeichert werden, um seine Daten für Zuletzt gedruckt zu erhalten. Es wird keine Warnmeldung angezeigt, wenn ein nicht gespeichertes Dokument geschlossen wird." #. mD6yU #: 01100200.xhp @@ -3551,7 +3551,7 @@ "hd_id3155342\n" "help.text" msgid "Total editing time" -msgstr "" +msgstr "Gesamte Bearbeitungszeit" #. pg3gJ #: 01100200.xhp @@ -3569,7 +3569,7 @@ "hd_id3153252\n" "help.text" msgid "Revision number" -msgstr "" +msgstr "Versionsnummer" #. FPbiF #: 01100200.xhp @@ -3623,7 +3623,7 @@ "hd_id101602069139228\n" "help.text" msgid "Save preview image with this document" -msgstr "" +msgstr "Vorschaubild mit diesem Dokument speichern" #. ibdbD #: 01100300.xhp @@ -3776,7 +3776,7 @@ "hd_id3153311\n" "help.text" msgid "Cells:" -msgstr "" +msgstr "Zellen:" #. sLNFC #: 01100400.xhp @@ -3785,7 +3785,7 @@ "par_id3156114\n" "help.text" msgid "Number of cells with content in the file." -msgstr "" +msgstr "Anzahl der Zellen in der Datei mit Inhalt." #. sxqAk #: 01100400.xhp @@ -3794,7 +3794,7 @@ "hd_id641526904710590\n" "help.text" msgid "Formula groups:" -msgstr "" +msgstr "Formelgruppen:" #. QDcds #: 01100400.xhp @@ -3803,7 +3803,7 @@ "par_id541526903668055\n" "help.text" msgid "Number of contiguous ranges in a column with same formula." -msgstr "" +msgstr "Anzahl der zusammenhängenden Bereiche in einer Spalte mit derselben Formel." #. LU85G #: 01100400.xhp @@ -3812,7 +3812,7 @@ "hd_id3147210\n" "help.text" msgid "Images:" -msgstr "" +msgstr "Bilder:" #. a4k3j #: 01100400.xhp @@ -3821,7 +3821,7 @@ "par_id3166411\n" "help.text" msgid "Number of images in the file. This statistic does not include images that were inserted as OLE objects." -msgstr "" +msgstr "Anzahl der Bilder in der Datei. Diese Statistik enthält keine Bilder, die als OLE-Objekte eingefügt wurden." #. UBabs #: 01100400.xhp @@ -3830,7 +3830,7 @@ "hd_id3147618\n" "help.text" msgid "OLE Objects:" -msgstr "" +msgstr "OLE-Objekte:" #. BuF3C #: 01100400.xhp @@ -3839,7 +3839,7 @@ "par_id3149820\n" "help.text" msgid "Number of OLE objects in the file, including tables and graphics that were inserted as OLE objects." -msgstr "" +msgstr "Anzahl der OLE-Objekte in der Datei, einschließlich Tabellen und Grafiken, die als OLE-Objekte eingefügt wurden." #. qw77q #: 01100400.xhp @@ -3848,7 +3848,7 @@ "hd_id3153665\n" "help.text" msgid "Paragraphs:" -msgstr "" +msgstr "Absätze:" #. sDTWH #: 01100400.xhp @@ -3857,7 +3857,7 @@ "par_id3156156\n" "help.text" msgid "Number of paragraphs, including blank paragraphs, in the file." -msgstr "" +msgstr "Anzahl der Absätze in der Datei, einschließlich der leeren Absätze." #. cJoGM #: 01100400.xhp @@ -3866,7 +3866,7 @@ "hd_id3155261\n" "help.text" msgid "Words:" -msgstr "" +msgstr "Wörter:" #. NWZHb #: 01100400.xhp @@ -3875,7 +3875,7 @@ "par_id3147402\n" "help.text" msgid "Number of words, including words consisting of a single character, in the file." -msgstr "" +msgstr "Anzahl der Wörter in der Datei, einschließlich Wörtern, die aus einem einzelnen Zeichen bestehen." #. F9a22 #: 01100400.xhp @@ -3884,7 +3884,7 @@ "hd_id3150466\n" "help.text" msgid "Characters:" -msgstr "" +msgstr "Zeichen:" #. J57aD #: 01100400.xhp @@ -3893,7 +3893,7 @@ "par_id3149294\n" "help.text" msgid "Number of characters, including spaces, in the file. Non-printable characters are not included." -msgstr "" +msgstr "Anzahl der Zeichen in der Datei, einschließlich Leerzeichen. Nicht druckbare Zeichen sind nicht enthalten." #. EvT7H #: 01100400.xhp @@ -3902,7 +3902,7 @@ "hd_id541589188608624\n" "help.text" msgid "Characters excluding spaces:" -msgstr "" +msgstr "Zeichen ohne Leerzeichen:" #. C6y8S #: 01100400.xhp @@ -3911,7 +3911,7 @@ "par_id341589188750182\n" "help.text" msgid "Number of characters, excluding spaces, in the file. Non-printable characters are not included." -msgstr "" +msgstr "Anzahl der Zeichen ohne Leerzeichen in der Datei. Nicht druckbare Zeichen sind nicht enthalten." #. FeKAd #: 01100400.xhp @@ -3920,7 +3920,7 @@ "hd_id3148947\n" "help.text" msgid "Lines:" -msgstr "" +msgstr "Linien:" #. cronY #: 01100400.xhp @@ -3929,7 +3929,7 @@ "par_id3149650\n" "help.text" msgid "Number of lines in the file." -msgstr "" +msgstr "Anzahl der Linien in der Datei." #. dbQ2X #: 01100400.xhp @@ -3938,7 +3938,7 @@ "hd_id3153525\n" "help.text" msgid "Update" -msgstr "" +msgstr "Aktualisieren" #. xECP4 #: 01100400.xhp @@ -3947,7 +3947,7 @@ "par_id3148981\n" "help.text" msgid "Updates the statistics." -msgstr "" +msgstr "Aktualisiert die Statistik." #. HpTwh #: 01100600.xhp @@ -4406,7 +4406,7 @@ "par_id0818200912284853\n" "help.text" msgid "The Print dialog consists of three main parts: A preview with navigation buttons, tab pages with control elements specific to the current document type, and the Print, Cancel and Help buttons." -msgstr "" +msgstr "Der Dialog Drucken besteht aus drei Bereichen: Eine Vorschau mit Navigationsschaltflächen, Registerkarten mit Steuerelementen, die für den aktuellen Dokumenttyp spezifisch sind, und den Schaltflächen Drucken, Abbrechen und Hilfe." #. KGLDV #: 01130000.xhp @@ -4460,7 +4460,7 @@ "par_id0818200912284952\n" "help.text" msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME (application name) - Print." -msgstr "" +msgstr "Die Einstellungen, die Sie im Dialog Drucken festlegen, gelten nur für den aktuellen Druckauftrag, den Sie durch einen Klick auf die Schaltfläche Drucken starten. Wenn Sie einige Optionen dauerhaft ändern möchten, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME (Anwendungsname) – Drucken." #. ZFcax #: 01130000.xhp @@ -4469,7 +4469,7 @@ "par_id3156080\n" "help.text" msgid "To set the default %PRODUCTNAME printer options for text documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Print." -msgstr "" +msgstr "Um in %PRODUCTNAME die Standard-Druckeroptionen für Textdokumente festzulegen, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Drucken." #. w5LsV #: 01130000.xhp @@ -4478,7 +4478,7 @@ "par_idN1099E\n" "help.text" msgid "To set the default %PRODUCTNAME printer options for spreadsheet documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Print." -msgstr "" +msgstr "Um in %PRODUCTNAME die Standard-Druckeroptionen für Tabellendokumente festzulegen, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Calc – Drucken." #. z8SQf #: 01130000.xhp @@ -4487,7 +4487,7 @@ "par_idN109CD\n" "help.text" msgid "To set the default %PRODUCTNAME printer options for presentation documents, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Impress - Print." -msgstr "" +msgstr "Um in %PRODUCTNAME die Standard-Druckeroptionen für Präsentationen festzulegen, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Impress – Drucken." #. bEFFQ #: 01130000.xhp @@ -5099,7 +5099,7 @@ "par_id0818200912285150\n" "help.text" msgid "The Page Layout section can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper." -msgstr "" +msgstr "Im Abschnitt Seitenlayout können Sie einige Blatt Papier einsparen, indem Sie mehrere Seiten auf jedes Blatt Papier drucken. Hier legen Sie die Anordnung und Größe der Ausgabeseiten auf dem physischen Papier fest." #. eYRqB #: 01130000.xhp @@ -5396,7 +5396,7 @@ "par_id4546342\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das OpenDocument-Dateiformat wird verwendet." #. EiZei #: 01160000.xhp @@ -5405,7 +5405,7 @@ "par_id6845301\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das Microsoft-Dateiformat wird verwendet." #. E7FtX #: 01160000.xhp @@ -5423,7 +5423,7 @@ "par_id5917844\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das OpenDocument-Dateiformat wird verwendet." #. yrGWK #: 01160000.xhp @@ -5441,7 +5441,7 @@ "par_id5759453\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Excel file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das Microsoft Excel-Dateiformat wird verwendet." #. DBfk7 #: 01160000.xhp @@ -5459,7 +5459,7 @@ "par_id7829218\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das OpenDocument-Dateiformat wird verwendet." #. q3LCG #: 01160000.xhp @@ -5477,7 +5477,7 @@ "par_id8319650\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft PowerPoint file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das Microsoft PowerPoint-Dateiformat wird verwendet." #. Vjqvr #: 01160000.xhp @@ -5495,7 +5495,7 @@ "par_id9085055\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The OpenDocument file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das OpenDocument-Dateiformat wird verwendet." #. TH4Pg #: 01160000.xhp @@ -5513,7 +5513,7 @@ "par_id5421918\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The Microsoft Word file format is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das Microsoft Word-Dateiformat wird verwendet." #. 9Vye6 #: 01160000.xhp @@ -5567,7 +5567,7 @@ "par_id3152823\n" "help.text" msgid "Opens a new window in your default email program with the current document as an attachment. The current file format is used. If the document is new and unsaved, the format specified in %PRODUCTNAME - PreferencesTools - Options - Load/Save - General is used." -msgstr "" +msgstr "Öffnet ein neues Fenster in Ihrem Standard-E-Mail-Programm mit dem aktuellen Dokument als Anhang. Das aktuelle Dateiformat wird verwendet. Wenn das Dokument neu und nicht gespeichert ist, wird das unter %PRODUCTNAME – EinstellungenExtras – Optionen… – Laden/Speichern – Allgemein angegebene Format verwendet." #. EAoDd #: 01160200.xhp @@ -6404,7 +6404,7 @@ "hd_id3147477\n" "help.text" msgid "Paste Special" -msgstr "" +msgstr "Inhalte einfügen" #. 2xiJU #: 02070000.xhp @@ -6449,7 +6449,7 @@ "par_id3149812\n" "help.text" 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 "" +msgstr "Wählen Sie ein Format für den aus der Zwischenablage einzufügenden Inhalt aus. Das verfügbare Format hängt vom kopierten oder ausgeschnittenen Quellformat ab." #. HzshB #: 02070000.xhp @@ -6458,7 +6458,7 @@ "par_id3147653\n" "help.text" msgid "When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments." -msgstr "" +msgstr "Wenn Sie HTML-Daten in ein Textdokument einfügen, können Sie zwischen \"HTML-Format\" oder \"HTML-Format ohne Kommentare\" wählen. Die zweite Wahl ist die Standardeinstellung: Es werden alle HTML-Daten eingefügt, jedoch keine Kommentare." #. AiR33 #: 02070000.xhp @@ -6467,7 +6467,7 @@ "hd_id3155420\n" "help.text" msgid "Paste Special" -msgstr "" +msgstr "Inhalte einfügen" #. yj2Fr #: 02070000.xhp @@ -6476,7 +6476,7 @@ "par_id3150976\n" "help.text" msgid "This dialog appears in Calc if the clipboard contains spreadsheet cells." -msgstr "" +msgstr "Dieser Dialog wird in Calc angezeigt, wenn die Zwischenablage Tabellenzellen enthält." #. LTyRC #: 02070000.xhp @@ -6485,7 +6485,7 @@ "hd_id3155341\n" "help.text" msgid "Selection" -msgstr "" +msgstr "Auswahl" #. ENGDQ #: 02070000.xhp @@ -6494,7 +6494,7 @@ "par_id3152909\n" "help.text" msgid "Select a format for the clipboard contents that you want to paste." -msgstr "" +msgstr "Wählen Sie ein Format für den aus der Zwischenablage einzufügenden Inhalt aus." #. rPXGJ #: 02070000.xhp @@ -6503,7 +6503,7 @@ "hd_id3145120\n" "help.text" msgid "Paste all" -msgstr "" +msgstr "Alles einfügen" #. aBXw3 #: 02070000.xhp @@ -6512,7 +6512,7 @@ "par_id3146848\n" "help.text" msgid "Pastes all cell contents, comments, formats, and objects into the current document." -msgstr "" +msgstr "Fügt alle Zelleninhalte, Kommentare, Formate und Objekte in das aktuelle Dokument ein." #. 2zvDG #: 02070000.xhp @@ -6521,7 +6521,7 @@ "hd_id3155449\n" "help.text" msgid "Text" -msgstr "" +msgstr "Text" #. REHuj #: 02070000.xhp @@ -6530,7 +6530,7 @@ "par_id3149244\n" "help.text" msgid "Inserts cells containing text." -msgstr "" +msgstr "Fügt Zellen ein, die Text enthalten." #. EBWrT #: 02070000.xhp @@ -6539,7 +6539,7 @@ "hd_id3148947\n" "help.text" msgid "Numbers" -msgstr "" +msgstr "Zahlen" #. GDE2X #: 02070000.xhp @@ -6548,7 +6548,7 @@ "par_id3152360\n" "help.text" msgid "Inserts cells containing numbers." -msgstr "" +msgstr "Fügt Zellen ein, die Zahlen enthalten." #. EuRG9 #: 02070000.xhp @@ -6557,7 +6557,7 @@ "hd_id3151054\n" "help.text" msgid "Date & Time" -msgstr "" +msgstr "Datum und Zeit" #. kMiEY #: 02070000.xhp @@ -6566,7 +6566,7 @@ "par_id3154226\n" "help.text" msgid "Inserts cells containing date and time values." -msgstr "" +msgstr "Fügt Zellen ein, die Datums- und Zeitwerte enthalten." #. jBXgB #: 02070000.xhp @@ -6575,7 +6575,7 @@ "hd_id3150791\n" "help.text" msgid "Formulas" -msgstr "" +msgstr "Formeln" #. siXaL #: 02070000.xhp @@ -6584,7 +6584,7 @@ "par_id3145744\n" "help.text" msgid "Inserts cells containing formulae." -msgstr "" +msgstr "Fügt Zellen ein, die Formeln enthalten." #. 8hAk2 #: 02070000.xhp @@ -6593,7 +6593,7 @@ "hd_id3153968\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Kommentare" #. PSGBG #: 02070000.xhp @@ -6602,7 +6602,7 @@ "par_id3156422\n" "help.text" msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation." -msgstr "" +msgstr "Fügt Kommentare ein, die an Zellen angehängt sind. Wenn Sie die Kommentare zum vorhandenen Zelleninhalt hinzufügen möchten, wählen Sie die Rechenoperation \"Addieren\"." #. BVEu4 #: 02070000.xhp @@ -6611,7 +6611,7 @@ "hd_id3152935\n" "help.text" msgid "Formats" -msgstr "" +msgstr "Formatierungen" #. sSEUh #: 02070000.xhp @@ -6620,7 +6620,7 @@ "par_id3125863\n" "help.text" msgid "Inserts cell format attributes." -msgstr "" +msgstr "Fügt Zellenformatierungen ein." #. vt4Hc #: 02070000.xhp @@ -6629,7 +6629,7 @@ "hd_id3156282\n" "help.text" msgid "Objects" -msgstr "" +msgstr "Objekte" #. L7ZAm #: 02070000.xhp @@ -6638,7 +6638,7 @@ "par_id3149810\n" "help.text" msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects." -msgstr "" +msgstr "Fügt Objekte ein, die im ausgewählten Zellbereich enthalten sind. Dies können OLE-Objekte, Diagrammobjekte oder Zeichnungsobjekte sein." #. PEQod #: 02070000.xhp @@ -6647,7 +6647,7 @@ "hd_id3150440\n" "help.text" msgid "Operations" -msgstr "" +msgstr "Rechenoperationen" #. MjkRH #: 02070000.xhp @@ -6656,7 +6656,7 @@ "par_id3151351\n" "help.text" msgid "Select the operation to apply when you paste cells into your sheet." -msgstr "" +msgstr "Wählen Sie die Rechenoperation aus, die angewendet werden soll, wenn Sie Zellen in Ihre Tabelle einfügen." #. Ea8L3 #: 02070000.xhp @@ -6665,7 +6665,7 @@ "hd_id3153952\n" "help.text" msgid "None" -msgstr "" +msgstr "Keine" #. Ff6dF #: 02070000.xhp @@ -6674,7 +6674,7 @@ "par_id3147348\n" "help.text" msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents." -msgstr "" +msgstr "Wendet keine Rechenoperation an, wenn Sie den Zellbereich aus der Zwischenablage einfügen. Der Inhalt der Zwischenablage ersetzt den vorhandenen Zelleninhalt." #. nub6H #: 02070000.xhp @@ -6683,7 +6683,7 @@ "hd_id3154988\n" "help.text" msgid "Add" -msgstr "" +msgstr "Addieren" #. htC6o #: 02070000.xhp @@ -6692,7 +6692,7 @@ "par_id3159196\n" "help.text" msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells." -msgstr "" +msgstr "Addiert die Werte in den Zellen der Zwischenablage zu den Werten in den Zielzellen hinzu. Wenn die Zwischenablage nur Kommentare enthält, werden die Kommentare zu den Zielzellen hinzugefügt." #. xCBTk #: 02070000.xhp @@ -6701,7 +6701,7 @@ "hd_id3145263\n" "help.text" msgid "Subtract" -msgstr "" +msgstr "Subtrahieren" #. LmxHG #: 02070000.xhp @@ -6710,7 +6710,7 @@ "par_id3154149\n" "help.text" msgid "Subtracts the values in the clipboard cells from the values in the target cells." -msgstr "" +msgstr "Subtrahiert die Werte in den Zellen der Zwischenablage von den Werten in den Zielzellen." #. CkGuW #: 02070000.xhp @@ -6719,7 +6719,7 @@ "hd_id3155312\n" "help.text" msgid "Multiply" -msgstr "" +msgstr "Multiplizieren" #. JQTu7 #: 02070000.xhp @@ -6728,7 +6728,7 @@ "par_id3155307\n" "help.text" msgid "Multiplies the values in the clipboard cells with the values in the target cells." -msgstr "" +msgstr "Multipliziert die Werte in den Zellen der Zwischenablage mit den Werten in den Zielzellen." #. wwJFy #: 02070000.xhp @@ -6737,7 +6737,7 @@ "hd_id3154320\n" "help.text" msgid "Divide" -msgstr "" +msgstr "Dividieren" #. eUmBX #: 02070000.xhp @@ -6746,7 +6746,7 @@ "par_id3155417\n" "help.text" msgid "Divides the values in the target cells by the values in the clipboard cells." -msgstr "" +msgstr "Dividiert die Werte in den Zielzellen durch die Werte in den Zellen der Zwischenablage." #. YQPSF #: 02070000.xhp @@ -6755,7 +6755,7 @@ "hd_id3147048\n" "help.text" msgid "Options" -msgstr "" +msgstr "Optionen" #. yJWfD #: 02070000.xhp @@ -6764,7 +6764,7 @@ "par_id3156283\n" "help.text" msgid "Sets the paste options for the clipboard contents." -msgstr "" +msgstr "Legt die Einfügeoptionen für den Inhalt der Zwischenablage fest." #. rgU5u #: 02070000.xhp @@ -6773,7 +6773,7 @@ "hd_id3151052\n" "help.text" msgid "Skip empty cells" -msgstr "" +msgstr "Leere Zellen überspringen" #. ZEuoV #: 02070000.xhp @@ -6782,7 +6782,7 @@ "par_id3148775\n" "help.text" msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard." -msgstr "" +msgstr "Leere Zellen aus der Zwischenablage ersetzen keine Zielzellen. Wenn Sie diese Option in Verbindung mit der Operation \"Multiplizieren\" oder \"Dividieren\" verwenden, wird die Operation nicht auf die Zielzelle einer leeren Zelle in der Zwischenablage angewendet." #. 2Duk9 #: 02070000.xhp @@ -6800,7 +6800,7 @@ "hd_id3147173\n" "help.text" msgid "Transpose" -msgstr "" +msgstr "Transponieren" #. yGdbE #: 02070000.xhp @@ -6809,7 +6809,7 @@ "par_id3147223\n" "help.text" msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows." -msgstr "" +msgstr "Die Zeilen des Bereichs in der Zwischenablage werden eingefügt, um Spalten des Ausgabebereichs zu werden. Die Spalten des Bereichs in der Zwischenablage werden als Zeilen eingefügt." #. WFn3f #: 02070000.xhp @@ -6818,7 +6818,7 @@ "hd_id3152971\n" "help.text" msgid "Link" -msgstr "" +msgstr "Verknüpfen" #. HCLBh #: 02070000.xhp @@ -6836,7 +6836,7 @@ "par_id3145667\n" "help.text" msgid "You can also link sheets within the same spreadsheet. When you link to other files, a DDE link is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole." -msgstr "" +msgstr "Sie können auch Tabellen innerhalb desselben Tabellendokuments verknüpfen. Wenn Sie auf andere Dateien verlinken, wird automatisch ein DDE-Link erstellt. Ein DDE-Link wird als Matrixformel eingefügt und kann nur als Ganzes geändert werden." #. QgPWJ #: 02070000.xhp @@ -6845,7 +6845,7 @@ "hd_id3146914\n" "help.text" msgid "Shift Cells" -msgstr "" +msgstr "Zellen verschieben" #. fjeGH #: 02070000.xhp @@ -6854,7 +6854,7 @@ "par_id3145169\n" "help.text" msgid "Set the shift options for the target cells when the clipboard content is inserted." -msgstr "" +msgstr "Legen Sie die Verschiebungsoptionen für die Zielzellen fest, wenn der Inhalt der Zwischenablage eingefügt wird." #. 2tqEi #: 02070000.xhp @@ -6863,7 +6863,7 @@ "hd_id3155518\n" "help.text" msgid "Don't shift" -msgstr "" +msgstr "Nicht verschieben" #. JLew4 #: 02070000.xhp @@ -6872,7 +6872,7 @@ "par_id3154158\n" "help.text" msgid "Inserted cells replace the target cells." -msgstr "" +msgstr "Eingefügte Zellen ersetzen die Zielzellen." #. 7pWWW #: 02070000.xhp @@ -6881,7 +6881,7 @@ "hd_id3148483\n" "help.text" msgid "Down" -msgstr "" +msgstr "Nach unten" #. jVBVg #: 02070000.xhp @@ -6890,7 +6890,7 @@ "par_id3152962\n" "help.text" msgid "Target cells are shifted downward when you insert cells from the clipboard." -msgstr "" +msgstr "Zielzellen werden nach unten verschoben, wenn Sie Zellen aus der Zwischenablage einfügen." #. JJojt #: 02070000.xhp @@ -6899,7 +6899,7 @@ "hd_id3145621\n" "help.text" msgid "Right" -msgstr "" +msgstr "Nach rechts" #. ncgjJ #: 02070000.xhp @@ -6908,7 +6908,7 @@ "par_id3159264\n" "help.text" msgid "Target cells are shifted to the right when you insert cells from the clipboard." -msgstr "" +msgstr "Zielzellen werden nach rechts verschoben, wenn Sie Zellen aus der Zwischenablage einfügen." #. 2fEf3 #: 02090000.xhp @@ -7727,7 +7727,7 @@ "bm_id3146765\n" "help.text" msgid "regular expressions; list ofregular expressions; new lineregular expressions; empty paragraphregular expressions; begin of wordregular expressions; begin of paragraphregular expressions; end of paragraphlists; regular expressionsreplacing; tab stops (regular expressions)tab stops; regular expressionsconcatenation, see ampersand symbolampersand symbol, see also operators" -msgstr "" +msgstr "Reguläre Ausdrücke; Liste vonReguläre Ausdrücke; ZeilenumbruchReguläre Ausdrücke; Leerer AbsatzReguläre Ausdrücke; WortanfangReguläre Ausdrücke; AbsatzanfangRegüläre Ausdrücke; AbsatzendeListen; reguläre AusdrückeErsetzen; Tabulatoren (reguläre Ausdrücke)Tabulatoren; reguläre AusdrückeVerkettung, siehe kaufmännisches UndKaufmännisches Und, siehe auch Operatoren" #. hKBwP #: 02100001.xhp @@ -7745,7 +7745,7 @@ "par_id3149741\n" "help.text" msgid "Term" -msgstr "" +msgstr "Ausdruck" #. vESi8 #: 02100001.xhp @@ -7754,7 +7754,7 @@ "par_id3155577\n" "help.text" msgid "Representation/Use" -msgstr "" +msgstr "Darstellung/Verwendung" #. UjXoc #: 02100001.xhp @@ -7772,7 +7772,7 @@ "par_id9824518.00000001\n" "help.text" msgid "The given character, unless it is a regular expression meta character. The list of meta characters follows in this table." -msgstr "" +msgstr "Das angegebene Zeichen, sofern es sich nicht um ein Metazeichen für reguläre Ausdrücke handelt. Die Liste mit Metazeichen ist in dieser Tabelle aufgeführt." #. NoqA6 #: 02100001.xhp @@ -7781,7 +7781,7 @@ "par_id3149031\n" "help.text" msgid "Any single character except a line break or a paragraph break. For example, the search term \"sh.rt\" matches both \"shirt\" and \"short\"." -msgstr "" +msgstr "Jedes einzelne Zeichen außer einem Zeilenumbruch oder einem Absatzumbruch. Beispielsweise entspricht der Suchbegriff \"Am.el\" sowohl \"Amsel\" als auch \"Ampel\"." #. qMXRu #: 02100001.xhp @@ -7790,7 +7790,7 @@ "par_id3155351\n" "help.text" msgid "The beginning of a paragraph or cell. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\" matches the word \"Peter\" only when it is the first word of a paragraph." -msgstr "" +msgstr "Am Anfang eines Absatzes oder einer Zelle. Spezielle Objekte wie leere Felder oder als Zeichen verankerte Rahmen am Anfang eines Absatzes werden ignoriert. Beispiel: \"^Peter\" stimmt nur dann mit dem Wort \"Peter\" überein, wenn es das erste Wort eines Absatzes ist." #. NxhF9 #: 02100001.xhp @@ -7799,7 +7799,7 @@ "par_id3152542\n" "help.text" msgid "The end of a paragraph or cell. Special objects such as empty fields or character-anchored frames at the end of a paragraph are ignored. Example: \"Peter$\" matches only when the word \"Peter\" is the last word of a paragraph, note \"Peter\" cannot be followed by a period." -msgstr "" +msgstr "Am Ende eines Absatzes oder einer Zelle. Spezielle Objekte wie leere Felder oder als Zeichen verankerte Rahmen am Ende eines Absatzes werden ignoriert. Beispiel: \"Peter$\" stimmt nur überein, wenn das Wort \"Peter\" das letzte Wort eines Absatzes ist. Hinweis: Nach \"Peter\" darf kein Punkt mehr folgen." #. oMTnF #: 02100001.xhp @@ -7817,7 +7817,7 @@ "par_id3155555\n" "help.text" msgid "Zero or more of the regular expression term immediately preceding it. For example, \"Ab*c\" matches \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\", and so on." -msgstr "" +msgstr "Keiner oder mehr des regulären Ausdrucks unmittelbar davor. Beispielsweise stimmt \"Ab*c\" mit \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\" und so weiter überein." #. YUSaM #: 02100001.xhp @@ -7826,7 +7826,7 @@ "par_id3157958\n" "help.text" msgid "One or more of the regular expression term immediately preceding it. For example, \"AX.+4\" finds \"AXx4\", but not \"AX4\"." -msgstr "" +msgstr "Einer oder mehrere des regulären Ausdrucks unmittelbar davor. Zum Beispiel findet \"AX.+4\" \"AXx4\" aber nicht \"AX4\"." #. LMvcH #: 02100001.xhp @@ -7835,7 +7835,7 @@ "par_id3145313\n" "help.text" msgid "The longest possible string that matches this regular expression in a paragraph is always matched. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted." -msgstr "" +msgstr "Es wird immer die längste mögliche Zeichenfolge gefunden, die mit diesem regulären Ausdruck in einem Absatz übereinstimmt. Wenn der Absatz die Zeichenfolge \"AX 4 AX4\" enthält, wird die gesamte Passage hervorgehoben." #. mdVaj #: 02100001.xhp @@ -7844,7 +7844,7 @@ "par_id3153684\n" "help.text" msgid "Zero or one of the regular expression term immediately preceding it. For example, \"Texts?\" matches \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"." -msgstr "" +msgstr "Keiner oder einer des regulären Ausdrucks unmittelbar davor. Zum Beispiel passt \"Texte?\" zu \"Text\" und \"Texte\" und \"x(ab|c)?y\" findet \"xy\", \"xaby\" oder \"xcy\"." #. zyaC5 #: 02100001.xhp @@ -7853,7 +7853,7 @@ "par_id3147209\n" "help.text" msgid "The special character that follows it is interpreted as a normal character and not as a regular expression meta character (except for the combinations \"\\n\", \"\\t\", \"\\b\", \"\\>\" and \"\\<\"). For example, \"tree\\.\" matches \"tree.\", not \"treed\" or \"trees\"." -msgstr "" +msgstr "Das darauf folgende Sonderzeichen wird als normales Zeichen und nicht als Metazeichen für reguläre Ausdrücke interpretiert (mit Ausnahme der Kombinationen \"\\n\", \"\\t\", \"\\b\", \"\\>\" und \"\\<\"). Zum Beispiel entspricht \"alle\\.\" \"alle.\", aber nicht \"alles\" oder \"aller\"." #. sDmtU #: 02100001.xhp @@ -7862,7 +7862,7 @@ "par_id3153700\n" "help.text" msgid "A line break that was inserted with the Shift+Enter key combination when in the Find text box." -msgstr "" +msgstr "Ein Zeilenumbruch, der mit der Tastenkombination Umschalt+Eingabetaste eingefügt wurde, im Textfeld Suchen." #. r4Xir #: 02100001.xhp @@ -7871,7 +7871,7 @@ "par_id731559575258580\n" "help.text" msgid "A paragraph break that can be entered with the Enter or Return key when in the Replace text box in Writer. Has no special meaning in Calc, and is treated literally there." -msgstr "" +msgstr "Ein Absatzumbruch, der mittels Eingabetaste oder Enter eingegeben werden kann, im Textfeld Ersetzen. Hat in Calc keine besondere Bedeutung und wird dort wörtlich behandelt." #. u7KxS #: 02100001.xhp @@ -7880,7 +7880,7 @@ "par_id631559575338134\n" "help.text" msgid "To change line breaks into paragraph breaks, enter \\n in both the Find and Replace boxes, and then perform a search and replace." -msgstr "" +msgstr "Um Zeilenumbrüche in Absatzumbrüche umzuwandeln, geben Sie \"\\n\" in beide Felder, Suchen und Ersetzen, ein und führen dann eine Suche und Ersetzung durch." #. UvYSH #: 02100001.xhp @@ -7889,7 +7889,7 @@ "par_id3157809\n" "help.text" msgid "A tab character. Can also be used in the Replace box." -msgstr "" +msgstr "Ein Tabulatorzeichen. Kann auch im Feld Ersetzen verwendet werden." #. wimpC #: 02100001.xhp @@ -7898,7 +7898,7 @@ "par_id3153666\n" "help.text" msgid "A word boundary. For example, \"\\bbook\" matches \"bookmark\" and \"book\" but not \"checkbook\" whereas \"book\\b\" matches \"checkbook\" and \"book\" but not \"bookmark\"." -msgstr "" +msgstr "Eine Wortgrenze. Zum Beispiel stimmt \"\\blaufen\" mit \"laufenlassen\" und \"laufen\" überein, aber nicht mit \"weglaufen\", wohingegen \"laufen\\b\" mit \"weglaufen\" und \"laufen\" übereinstimmt, aber nicht mit \"laufenlassen\"." #. rGGpb #: 02100001.xhp @@ -7907,7 +7907,7 @@ "par_id851559575484466\n" "help.text" msgid "Note, this form replaces the obsolete (although they still work for now) forms \"\\>\" (match end of word) and \"\\<\" (match start of word)." -msgstr "" +msgstr "Beachten Sie, dass diese Form die veralteten Formen \"\\>\" (mit dem Wortende übereinstimmend) und \"\\<\" (mit dem Wortanfang übereinstimmend) ersetzt (obwohl sie derzeit noch funktionieren)." #. CLz2y #: 02100001.xhp @@ -7943,7 +7943,7 @@ "par_id3153961\n" "help.text" msgid "Adds the string that was found by the search criteria in the Find box to the term in the Replace box when you make a replacement." -msgstr "" +msgstr "Fügt dem Begriff im Feld Ersetzen die Zeichenfolge hinzu, die anhand der Suchkriterien im Feld Suchen gefunden wurde, wenn Sie eine Ersetzung vornehmen." #. GeEfv #: 02100001.xhp @@ -7952,7 +7952,7 @@ "par_id3149650\n" "help.text" msgid "For example, if you enter \"window\" in the Find box and \"&frame\" in the Replace box, the word \"window\" is replaced with \"windowframe\"." -msgstr "" +msgstr "Wenn Sie beispielsweise \"Tür\" in das Feld Suchen und \"&griff\" in das Feld Ersetzen eingeben, wird das Wort \"Tür\" durch \"Türgriff\" ersetzt." #. i8gW8 #: 02100001.xhp @@ -7961,7 +7961,7 @@ "par_id3150543\n" "help.text" msgid "You can also enter an \"&\" in the Replace box to modify the Attributes or the Format of the string found by the search criteria." -msgstr "" +msgstr "Sie können auch ein \"&\" in das Feld Ersetzen eingeben, um die Attribute oder das Format der von den Suchkriterien gefundenen Zeichenfolge zu ändern." #. vQ3mE #: 02100001.xhp @@ -7970,7 +7970,7 @@ "par_id3154630\n" "help.text" msgid "Any single occurrence of any one of the characters that are between the brackets. For example: \"[abc123]\" matches the characters ‘a’, ‘b’, ’c’, ‘1’, ‘2’ and ‘3’. \"[a-e]\" matches single occurrences of the characters a through e, inclusive (the range must be specified with the character having the smallest Unicode code number first). \"[a-eh-x]\" matches any single occurrence of the characters that are in the ranges ‘a’ through ‘e’ and ‘h’ through ‘x’." -msgstr "" +msgstr "Jedes einzelne Vorkommen eines der Zeichen in Klammern. Beispiel: \"[abc123]\" entspricht den Zeichen \"a\", \"b\", \"c\", \"1\", \"2\" und \"3\". \"[a-e]\" stimmt mit einzelnen Vorkommen der Zeichen \"a\" bis einschließlich \"e\" überein (der Bereich muss mit dem Zeichen zuerst angegeben werden, das die kleinste Unicode-Codenummer hat). \"[a-eh-x]\" entspricht einem einzelnen Vorkommen der Zeichen in den Bereichen \"a\" bis \"e\" und \"h\" bis \"x\"." #. VGtpx #: 02100001.xhp @@ -7979,7 +7979,7 @@ "par_id3149167\n" "help.text" msgid "Any single occurrence of a character, including Tab, Space and Line Break characters, that is not in the list of characters specified inclusive ranges are permitted. For example \"[^a-syz]\" matches all characters not in the inclusive range ‘a’ through ‘s’ or the characters ‘y’ and ‘z’." -msgstr "" +msgstr "Jedes einzelne Vorkommen eines Zeichens, einschließlich Tabulator-, Leer- und Zeilenumbruchzeichen, das nicht in der Liste der angegebenen Zeichen einschließlich der Bereiche enthalten ist, ist zulässig. Zum Beispiel entspricht \"[^a-syz]\" allen Zeichen, die nicht im Einschlussbereich \"a\" bis \"s\" liegen oder die Zeichen \"y\" und \"z\" sind." #. tNwDD #: 02100001.xhp @@ -7988,7 +7988,7 @@ "par_id3153768\n" "help.text" msgid "The character represented by the four-digit hexadecimal Unicode code (XXXX)." -msgstr "" +msgstr "Das durch den vierstelligen hexadezimalen Unicode-Code (XXXX) dargestellte Zeichen." #. Xp9AR #: 02100001.xhp @@ -7997,7 +7997,7 @@ "par_id3153769\n" "help.text" msgid "The character represented by the eight-digit hexadecimal Unicode code (XXXXXXXX)." -msgstr "" +msgstr "Das durch den achtstelligen hexadezimalen Unicode-Code (XXXXXXXX) dargestellte Zeichen." #. DkhRN #: 02100001.xhp @@ -8015,7 +8015,7 @@ "par_id3154985\n" "help.text" msgid "The infix operator delimiting alternatives. Matches the term preceding the \"|\" or the term following the \"|\". For example, \"this|that\" matches occurrences of both \"this\" and \"that\"." -msgstr "" +msgstr "Der Infix-Operator, der Alternativen abgrenzt. Entspricht dem Begriff vor dem \"|\" oder der Begriff nach dem \"|\". Beispielsweise stimmt \"dieses|jenes\" mit Vorkommen von \"dieses\" und \"jenes\" überein." #. 8RnED #: 02100001.xhp @@ -8024,7 +8024,7 @@ "par_id3150103\n" "help.text" msgid "The post-fix repetition operator that specifies an exact number of occurrences (\"N\") of the regular expression term immediately preceding it must be present for a match to occur. For example, \"tre{2}\" matches \"tree\"." -msgstr "" +msgstr "Der Postfix-Wiederholungsoperator, der eine genaue Anzahl der Vorkommen (\"N\") des regulären Ausdrucks angibt, der unmittelbar davor steht. Er muss vorhanden sein, damit eine Übereinstimmung auftritt. Beispielsweise findet \"Se{2}\" \"See\"." #. EVGGD #: 02100001.xhp @@ -8033,7 +8033,7 @@ "par_id3147317\n" "help.text" msgid "The post-fix repetition operator that specifies a range (minimum of \"N\" to a maximum of \"M\") of occurrences of the regular expression term immediately preceding it that can be present for a match to occur. For example, \"tre{1,2}\" matches \"tre\" and \"tree\"." -msgstr "" +msgstr "Der Post-Fix-Wiederholungsoperator, der einen Bereich (mindestens \"N\" bis höchstens \"M\") von Vorkommen des regulären Ausdrucks unmittelbar davor angibt, der vorhanden sein kann, damit eine Übereinstimmung auftritt. Zum Beispiel findet \"Alle{1,2}\" \"Alle\" und \"Allee\"." #. Awzam #: 02100001.xhp @@ -8042,7 +8042,7 @@ "par_id843836\n" "help.text" msgid "The post-fix repetition operator that specifies a range (minimum \"N\" to an unspecified maximum) of occurrences of the regular expression term immediately preceding it that can be present for a match to occur. (The maximum number of occurrences is limited only by the size of the document). For example, \"tre{2,}\" matches \"tree\", \"treee\", and \"treeeee\"." -msgstr "" +msgstr "Der Postfix-Wiederholungsoperator, der einen Bereich (Minimum \"N\" bis zu einem nicht angegebenen Maximum) von Vorkommen des regulären Ausdrucks unmittelbar davor angibt, der vorhanden sein kann, damit eine Übereinstimmung auftritt. (Die maximale Anzahl der Vorkommen ist nur durch die Größe des Dokuments begrenzt.) Beispielsweise findet \"Se{2,}\" \"See\", \"Seee\" und \"Seeeee\"." #. yWFFT #: 02100001.xhp @@ -8051,7 +8051,7 @@ "par_id91559576682961\n" "help.text" msgid "The grouping construct that serves three purposes." -msgstr "" +msgstr "Das Gruppierungskonstrukt, das drei Zwecken dient." #. A9ZHn #: 02100001.xhp @@ -8060,7 +8060,7 @@ "par_id871559576709007\n" "help.text" msgid "To enclose a set of ‘|’ alternatives. For example, the regular expression \"b(oo|ac)k\" matches both \"book\" and \"back\"." -msgstr "" +msgstr "Um eine Reihe von \"|\"-Alternativen beizufügen. Beispielsweise stimmt der reguläre Ausdruck \"B(il|an)d\" sowohl mit \"Bild\" als auch mit \"Band\" überein." #. zeknH #: 02100001.xhp @@ -8069,7 +8069,7 @@ "par_id891559576747109\n" "help.text" msgid "To group terms in a complex expression to be operated on by the post-fix operators: \"*\", \"+\" and \"?\" along with the post-fix repetition operators. For example, the regular expression \"a(bc)?d\" matches both \"ad\" and \"abcd\" in a search.; the regular expression \"M(iss){2}ippi\" matches \"Mississippi\"." -msgstr "" +msgstr "Um Begriffe in einem komplexen Ausdruck zu gruppieren, die von den Postfix-Operatoren bearbeitet werden sollen: \"*\", \"+\" und \"?\" zusammen mit den Postfix-Wiederholungsoperatoren. Beispielsweise stimmt der reguläre Ausdruck \"a(bc)?D\" bei einer Suche sowohl mit \"ad\" als auch mit \"abcd\" überein; der reguläre Ausdruck \"M(iss){2}ippi\" stimmt mit \"Mississippi\" überein." #. CAKwA #: 02100001.xhp @@ -8078,7 +8078,7 @@ "par_id801559576780692\n" "help.text" msgid "To record the matched sub string inside the parentheses as a reference for later use in the Find box using the \"\\n\" construct or in the Replace box using the \"$n\" construct. The reference to the first match is represented by \"\\1\" in the Find box and by \"$1\" in the Replace box. The reference to the second matched sub string by \"\\2\" and \"$2\" respectively, and so on." -msgstr "" +msgstr "Um die übereinstimmende Teilzeichenkette in den Klammern im Feld Suchen mit dem Ausdruck \"\\n\" als Referenz für die spätere Verwendung im Feld Ersetzen mit dem Ausdruck \"$n\" aufzuzeichnen. Der Verweis auf die erste Übereinstimmung wird durch den Ausdruck \"\\1\" im Feld Suchen und durch \"$1\" im Feld Ersetzen dargestellt. Der Verweis auf die zweite übereinstimmende Teilzeichenfolge durch \"\\2\" beziehungsweise \"$2\" und so weiter." #. ekwoG #: 02100001.xhp @@ -8339,7 +8339,7 @@ "par_id131559578728924\n" "help.text" msgid "\\bconst(itu|ruc)tion\\b" -msgstr "" +msgstr "\\bconst(itu|ruc)tion\\b" #. 22cNV #: 02100001.xhp @@ -8429,7 +8429,7 @@ "par_id91559578832058\n" "help.text" msgid "\\b specifies that the match must end at a word boundary." -msgstr "" +msgstr "/b gibt an, dass die Übereinstimmung an einer Wortgrenze enden muss." #. K8QcW #: 02100001.xhp @@ -11363,7 +11363,7 @@ "par_id3155922\n" "help.text" msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list." -msgstr "Hier wählen Sie den Frame, in den das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen." +msgstr "Hier wählen Sie den Frame, in dem das Dokument geladen werden soll. Die Bedeutung der vorgegebenen Einträge sehen Sie in der Tabelle der Bedeutungen." #. BgAcM #: 02220100.xhp @@ -14864,7 +14864,7 @@ "par_id3147576\n" "help.text" msgid "Complex text layout font - right-to-left text direction" -msgstr "Schriftart für CTL (Complex Text Layout) - Textlaufrichtung von rechts nach links" +msgstr "Schriftart für Komplexes Textlayout (CTL) - Textlaufrichtung von rechts nach links" #. iVVkD #: 05020100.xhp @@ -14873,7 +14873,7 @@ "par_id3153663\n" "help.text" msgid "To enable support for complex text layout and Asian character sets, choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages, and then select the Enabled box in the corresponding area." -msgstr "Um die Unterstützung für CTL und asiatische Zeichensätze zu aktivieren, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen - Spracheinstellungen - Sprachen und dann Aktiviert im entsprechenden Bereich." +msgstr "Um die Unterstützung für CTL und asiatische Zeichensätze zu aktivieren, wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen… - Spracheinstellungen - Sprachen und dann Aktiviert im entsprechenden Bereich." #. ig9HL #: 05020100.xhp @@ -15008,7 +15008,7 @@ "par_id3147213\n" "help.text" msgid "Complex text layout support" -msgstr "CTL-Unterstützung" +msgstr "CTL-Unterstützung" #. FC2BQ #: 05020200.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "Blinkende SchriftBlitzende Schrift" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinkend" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Macht die ausgewählten Zeichen blinkend. Sie können die Blinkfrequenz nicht ändern." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -21884,7 +21857,7 @@ "par_id3157960\n" "help.text" 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 "Geben Sie den Textfluss für Absätze an, die CTL (Complex Text Layout) verwenden. Diese Funktion ist nur bei aktivierter CTL-Unterstützung verfügbar." +msgstr "Geben Sie den Textfluss für Absätze an, die Komplexes Textlayout (CTL) verwenden. Diese Funktion ist nur bei aktivierter CTL-Unterstützung verfügbar." #. LzeZA #: 05030800.xhp @@ -22973,7 +22946,7 @@ "par_id3156027\n" "help.text" msgid "Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics." -msgstr "Fügt der aktuellen Seitenvorlage eine Kopfzeile hinzu. Eine Kopfzeile ist ein Bereich am oberen Seitenrand, in den Sie Text oder Grafiken einfügen können." +msgstr "Fügt der aktuellen Seitenvorlage eine Kopfzeile hinzu. Eine Kopfzeile ist ein Bereich am oberen Seitenrand, in dem Sie Text oder Grafiken einfügen können." #. AiAZ8 #: 05040300.xhp @@ -33404,7 +33377,7 @@ "hd_id3150775\n" "help.text" msgid "Black & White" -msgstr "Schwarzweiß" +msgstr "Schwarz-weiß" #. BmUsB #: 05350500.xhp @@ -33413,7 +33386,7 @@ "par_id3147242\n" "help.text" msgid "Converts the texture to black and white." -msgstr "Die Textur wird in Schwarzweiß konvertiert." +msgstr "Die Textur wird in Schwarz-Weiß konvertiert." #. ohvQW #: 05350500.xhp @@ -33431,7 +33404,7 @@ "par_id3156156\n" "help.text" msgid "Black & White" -msgstr "Schwarzweiß" +msgstr "Schwarz-weiß" #. 4ATv3 #: 05350500.xhp @@ -35645,7 +35618,7 @@ "par_id3146137\n" "help.text" msgid "AutoCorrect" -msgstr "AutoKorrektur" +msgstr "AutoKorrektur" #. rLEm9 #: 06040100.xhp @@ -36833,7 +36806,7 @@ "par_id3152425\n" "help.text" msgid "Select the special character that will automatically replace the current opening quotation mark in your document when you choose Tools - AutoCorrect - Apply." -msgstr "Wählen Sie das Sonderzeichen, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von Extras - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." +msgstr "Wählen Sie das Sonderzeichen, durch das öffnende Anführungszeichen in Ihrem Dokument beim Aufrufen von Extras - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." #. rmnSr #: 06040400.xhp @@ -36851,7 +36824,7 @@ "par_id3147008\n" "help.text" msgid "Select the special character that will automatically replace the current closing quotation mark in your document when you choose Tools - AutoCorrect - Apply." -msgstr "Wählen Sie das Sonderzeichen, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von Extras - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." +msgstr "Wählen Sie das Sonderzeichen, durch das schließende Anführungszeichen in Ihrem Dokument beim Aufrufen von Extras - AutoKorrektur - Anwenden automatisch ersetzt werden sollen." #. fzTrp #: 06040400.xhp @@ -43700,7 +43673,7 @@ "tit\n" "help.text" msgid "Extension Update" -msgstr "Extension Update" +msgstr "Extension-Update" #. gFZiV #: extensionupdate.xhp @@ -43709,7 +43682,7 @@ "hd_id9688100\n" "help.text" msgid "Extension Update" -msgstr "Extension Update" +msgstr "Extension-Update" #. C93ei #: extensionupdate.xhp @@ -43718,7 +43691,7 @@ "par_id5084688\n" "help.text" 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 "Klicken Sie auf die Schaltfläche Auf Updates prüfen im Extension Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf, und wählen Sie dann im Kontextmenü Update." +msgstr "Klicken Sie auf die Schaltfläche Auf Updates prüfen im Extension-Manager, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur für eine ausgewählte Extension nach einem Online-Update zu suchen, klicken Sie mit der rechten Maustaste darauf, und wählen Sie dann im Kontextmenü Update." #. j6Gfk #: extensionupdate.xhp @@ -43727,7 +43700,7 @@ "par_id6401257\n" "help.text" msgid "When you click the Check for Updates button or choose the Update command, the Extension Update dialog is displayed and the check for availability of updates starts immediately." -msgstr "Wenn Sie auf die Schaltfläche Auf Updates prüfen klicken oder den Befehl Update wählen, wird der Dialog \"Extension Update\" angezeigt und die Prüfung auf verfügbare Aktualisierungen beginnt." +msgstr "Wenn Sie auf die Schaltfläche Auf Updates prüfen klicken oder den Befehl Update wählen, wird der Dialog \"Extension-Update\" angezeigt und die Prüfung auf verfügbare Aktualisierungen beginnt." #. tzbHd #: extensionupdate.xhp @@ -43763,7 +43736,7 @@ "par_id6420484\n" "help.text" msgid "The Extension Update dialog may contain entries which are not selectable and hence no automatic update can be performed." -msgstr "Der Dialog \"Extension Update\" kann verschiedene Einträge enthalten, die nicht ausgewählt werden können. Bei diesen Einträgen können keine automatisches Update durchgeführt werden." +msgstr "Der Dialog \"Extension-Update\" kann verschiedene Einträge enthalten, die nicht ausgewählt werden können. Bei diesen Einträgen kann kein automatisches Update durchgeführt werden." #. XAmPE #: extensionupdate.xhp @@ -43781,7 +43754,7 @@ "par_id616779\n" "help.text" msgid "Insufficient user rights (the Extension Manager was started from the menu, but shared extensions can only be modified when %PRODUCTNAME does not run, and only by a user with appropriate rights). See Extension Manager for details." -msgstr "Unzureichende Benutzerrechte (der Extension Manager wurde über das Menü gestartet, aber die gemeinsam genutzten Extensions können nur dann geändert werden, wenn %PRODUCTNAME nicht ausgeführt wird, und nur von einem Benutzer mit entsprechenden Rechten). Sehen Sie für weitere Details unter Extension Manager nach." +msgstr "Unzureichende Benutzerrechte (der Extension-Manager wurde über das Menü gestartet, aber die gemeinsam genutzten Extensions können nur dann geändert werden, wenn %PRODUCTNAME nicht ausgeführt wird, und nur von einem Benutzer mit entsprechenden Rechten). Sehen Sie für weitere Details unter Extension-Manager nach." #. BfdJ5 #: extensionupdate.xhp @@ -43817,7 +43790,7 @@ "par_id3949095\n" "help.text" msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser." -msgstr "Einige Extensions können mit dem Hinweis \"Browserbasiertes Update\" markiert sein. Diese Extensions können nicht über den Extension Manager heruntergeladen werden. Um die Extension von einer bestimmten Webseite herunterzuladen, muss ein Webbrowser geöffnet werden. Auf dieser Webseite können Anwendereingriffe nötig sein, um die Extension herunterzuladen. Nach dem Herunterladen müssen Sie die Extension manuell installieren, beispielsweise durch Doppelklick auf das Symbol der Extension in einem Dateibrowser." +msgstr "Einige Extensions können mit dem Hinweis \"Browserbasiertes Update\" markiert sein. Diese Extensions können nicht über den Extension-Manager heruntergeladen werden. Um die Extension von einer bestimmten Webseite herunterzuladen, muss ein Webbrowser geöffnet werden. Auf dieser Webseite können Anwendereingriffe nötig sein, um die Extension herunterzuladen. Nach dem Herunterladen müssen Sie die Extension manuell installieren, beispielsweise durch Doppelklick auf das Symbol der Extension in einem Dateibrowser." #. 8NJ29 #: extensionupdate.xhp @@ -43826,7 +43799,7 @@ "par_id3729056\n" "help.text" msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately." -msgstr "Der Extension Manager öffnet für Extensions, die als \"Browserbasiertes Update\" markiert sind, Ihren Webbrowser mit der entsprechenden Webseite. Dies geschieht nach dem Schließen des Dialogs, nachdem alle sonstigen Updates heruntergeladen wurden. Der Webbrowser startet sofort, wenn für keine Extension direkt Updates heruntergeladen werden können." +msgstr "Der Extension-Manager öffnet für Extensions, die als \"Browserbasiertes Update\" markiert sind, Ihren Webbrowser mit der entsprechenden Webseite. Dies geschieht nach dem Schließen des Dialogs, nachdem alle sonstigen Updates heruntergeladen wurden. Der Webbrowser startet sofort, wenn für keine Extension direkt Updates heruntergeladen werden können." #. yBbmW #: extensionupdate.xhp @@ -43871,7 +43844,7 @@ "par_id7634510\n" "help.text" msgid "Extension Manager" -msgstr "Extension Manager" +msgstr "Extension-Manager" #. ytNtF #: font_features.xhp @@ -44087,7 +44060,7 @@ "par_id1536301\n" "help.text" msgid "Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled." -msgstr "Fügt ein unsichtbares Leerzeichen in ein Wort ein, das einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen in einer Zeile wird. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." +msgstr "Fügt ein unsichtbares Leerzeichen in ein Wort ein, das einen Zeilenumbruch erzeugt, wenn es das letzte Zeichen in einer Zeile wird. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist." #. W4vvs #: formatting_mark.xhp @@ -44105,7 +44078,7 @@ "par_id1085238\n" "help.text" msgid "Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled." -msgstr "Fügt ein unsichtbares Leerzeichen in ein Wort ein, welches das Wort am Ende einer Zeile zusammenhält. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." +msgstr "Fügt ein unsichtbares Leerzeichen in ein Wort ein, welches das Wort am Ende einer Zeile zusammenhält. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist." #. vgtCd #: formatting_mark.xhp @@ -44123,7 +44096,7 @@ "par_id6690878\n" "help.text" msgid "Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled." -msgstr "Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." +msgstr "Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist." #. MK38W #: formatting_mark.xhp @@ -44141,7 +44114,7 @@ "par_id923184\n" "help.text" msgid "Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled." -msgstr "Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Complex Text Layout (CTL) aktiviert ist." +msgstr "Fügt eine Textrichtungsmarkierung ein, die die Textrichtung des Textes hinter der Markierung beeinflusst. Nur verfügbar, wenn Komplexes Textlayout (CTL) aktiviert ist." #. CwV4T #: gallery.xhp @@ -46013,7 +45986,7 @@ "bm_id2883388\n" "help.text" msgid "UNO components;Extension Managerextensions;Extension Managerpackages, see extensions" -msgstr "UNO-Komponenten; Extension ManagerExtensions; Extension ManagerPackages, siehe Extensions" +msgstr "UNO-Komponenten; Extension-ManagerExtensions; Extension-ManagerPackages, siehe Extensions" #. i2fi4 #: packagemanager.xhp @@ -46022,7 +45995,7 @@ "par_idN10543\n" "help.text" msgid "Extension Manager" -msgstr "Extension Manager" +msgstr "Extension-Manager" #. ELh8y #: packagemanager.xhp @@ -46031,7 +46004,7 @@ "par_idN10553\n" "help.text" msgid "The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions." -msgstr "Mit dem Extension Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren." +msgstr "Mit dem Extension-Manager können Sie %PRODUCTNAME-Extensions hinzufügen, entfernen, deaktivieren, aktivieren und aktualisieren." #. AEioS #: packagemanager.xhp @@ -46148,7 +46121,7 @@ "par_id7857905\n" "help.text" msgid "You can find a collection of extensions on the Web. Click the \"Get more extensions online\" link in the Extension Manager to open your Web browser and see the https://extensions.libreoffice.org/ page." -msgstr "Sie finden eine Sammlung von Extensions im Netz. Klicken Sie im Extension Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter...\", um Ihren Webbrowser zu öffnen und die Seite https://extensions.libreoffice.org/ zu anzuzeigen." +msgstr "Sie finden eine Sammlung von Extensions im Netz. Klicken Sie im Extension-Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter...\", um Ihren Webbrowser zu öffnen und die Seite https://extensions.libreoffice.org/ anzuzeigen." #. eeTRp #: packagemanager.xhp @@ -46184,7 +46157,7 @@ "par_id5269020\n" "help.text" msgid "On a web page, click a hyperlink to an *.oxt file (if your web browser can be configured to start the Extension Manager for this file type)." -msgstr "Klicken Sie auf einer Webseite auf einen Hyperlink zu einer *.oxt-Datei (wenn Ihr Webbrowser zum Starten des Extension Managers für diesen Dateityp konfiguriert werden kann)." +msgstr "Klicken Sie auf einer Webseite auf einen Hyperlink zu einer *.oxt-Datei (wenn Ihr Webbrowser zum Starten des Extension-Managers für diesen Dateityp konfiguriert werden kann)." #. B2MCq #: packagemanager.xhp @@ -46193,7 +46166,7 @@ "par_id8714255\n" "help.text" msgid "Choose Tools - Extension Manager and click Add." -msgstr "Wählen Sie Extras - Extension Manager... und klicken Sie auf Hinzufügen." +msgstr "Wählen Sie Extras - Extension-Manager… und klicken Sie auf Hinzufügen." #. cnBQF #: packagemanager.xhp @@ -46355,7 +46328,7 @@ "par_id4129459\n" "help.text" 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. You will see the Extension Update dialog." -msgstr "Klicken Sie hier, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur ausgewählte Extensions auf Updates zu prüfen, klicken Sie zum Öffnen des Kontextmenüs mit der rechten Maustaste auf diese und wählen dann Update.... Die Prüfung auf verfügbare Aktualisierungen wird unmittelbar gestartet. Der Dialog Extension Update wird geöffnet." +msgstr "Klicken Sie hier, um nach Online-Updates für alle installierten Extensions zu suchen. Um nur ausgewählte Extensions auf Updates zu prüfen, klicken Sie zum Öffnen des Kontextmenüs mit der rechten Maustaste auf diese und wählen dann Update.... Die Prüfung auf verfügbare Aktualisierungen wird unmittelbar gestartet. Der Dialog Extension-Update wird geöffnet." #. CBJAi #: packagemanager.xhp @@ -46454,7 +46427,7 @@ "par_id0103201110331832\n" "help.text" msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension." -msgstr "Abhängig von der gewählten Extension können einige weitere Einträge im Kontextmenü des Extension Managers angezeigt werden. So können Sie den Lizenztext erneut anzeigen lassen oder die Extension von der Prüfung auf Updates ausnehmen oder wieder einschließen." +msgstr "Abhängig von der gewählten Extension können einige weitere Einträge im Kontextmenü des Extension-Managers angezeigt werden. So können Sie den Lizenztext erneut anzeigen lassen oder die Extension von der Prüfung auf Updates ausnehmen oder wieder einschließen." #. tBvF5 #: password_dlg.xhp @@ -47534,7 +47507,7 @@ "tit\n" "help.text" msgid "Export as PDF" -msgstr "Exportieren als PDF" +msgstr "Als PDF exportieren" #. 9A7EN #: ref_pdf_export.xhp @@ -50063,7 +50036,7 @@ "tit\n" "help.text" msgid "Time Stamp Authorities for Digital Signatures" -msgstr "" +msgstr "Zeitstempel-Behörden für digitale Signaturen" #. HgFt5 #: timestampauth.xhp @@ -50819,7 +50792,7 @@ "par_idN1076B\n" "help.text" msgid "The Condition button opens the Add Condition dialog where you can enter the calculation." -msgstr "Die Schaltfläche Bedingung öffnet den Dialog Bedingung hinzufügen, in den Sie die Berechnung eingeben können." +msgstr "Die Schaltfläche Bedingung öffnet den Dialog Bedingung hinzufügen, in dem Sie die Berechnung eingeben können." #. VYfFD #: xformsdataaddcon.xhp @@ -51197,7 +51170,7 @@ "par_id636921\n" "help.text" msgid "Enter the DOM node to bind the control model to. Click the ... button for a dialog to enter the XPath expression." -msgstr "Geben Sie den DOM-Knoten ein, mit dem das Steuerelement-Modell verbunden werden soll. Klicken Sie auf die Schaltfläche ..., um einen Dialog zu öffnen, in den Sie den XPath-Ausdruck eingeben können." +msgstr "Geben Sie den DOM-Knoten ein, mit dem das Steuerelement-Modell verbunden werden soll. Klicken Sie auf die Schaltfläche ..., um einen Dialog zu öffnen, in dem Sie den XPath-Ausdruck eingeben können." #. mZuaw #: xformsdatatab.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -4442,7 +4442,7 @@ "par_id3150378\n" "help.text" msgid "When creating a form, an index is automatically assigned to the control fields that are added to this form; every control field added is assigned an index increased by 1. If you change the index of a control, the indices of the other controls are updated automatically. Elements that cannot be focused (\"Tabstop = No\") are also assigned a value. However, these controls are skipped when using the Tab key." -msgstr "Bei der Erstellung eines Formulars wird den Steuerelementen, die diesem Formular hinzugefügt werden, automatisch ein Index zugewiesen, wobei jedes neu hinzugefügte Steuerelement einen um 1 erhöhten Index erhält. Wenn Sie den Index eines Steuerelements ändern, werden die Indizes der restlichen Steuerelemente automatisch aktualisiert. Elementen, die nicht fokussiert werden können (\"Tabstop = Nein\"), wird ebenfalls ein Wert zugewiesen. Diese Steuerelemente werden jedoch bei einer Betätigung der Tabulatortaste übersprungen." +msgstr "Bei der Erstellung eines Formulars wird den Steuerelementen, die diesem Formular hinzugefügt werden, automatisch ein Index zugewiesen, wobei jedes neu hinzugefügte Steuerelement einen um 1 erhöhten Index erhält. Wenn Sie den Index eines Steuerelements ändern, werden die Indizes der restlichen Steuerelemente automatisch aktualisiert. Elementen, die nicht fokussiert werden können (\"Tabstopp = Nein\"), wird ebenfalls ein Wert zugewiesen. Diese Steuerelemente werden jedoch bei einer Betätigung der Tabulatortaste übersprungen." #. BAvfE #: 01170101.xhp @@ -12641,7 +12641,7 @@ "tit\n" "help.text" msgid "Export Directly as PDF" -msgstr "Direktes Exportieren als PDF" +msgstr "Direkt als PDF exportieren" #. A98Xc #: 07090000.xhp @@ -12650,7 +12650,7 @@ "hd_id3146946\n" "help.text" msgid "Export Directly as PDF" -msgstr "Direktes Exportieren als PDF" +msgstr "Direkt als PDF exportieren" #. MKhDs #: 07090000.xhp @@ -18698,7 +18698,7 @@ "par_id3153062\n" "help.text" msgid "The graphic object is shown in black and white. All brightness values below 50% will appear black, all over 50% will appear white." -msgstr "Das Grafikobjekt wird in Schwarzweiß angezeigt. Alle Helligkeitswerte unter 50 % erscheinen als Schwarz, alle über 50 % als Weiß." +msgstr "Das Grafikobjekt wird in Schwarz-Weiß angezeigt. Alle Helligkeitswerte unter 50 % werden schwarz, alle über 50 % werden weiß dargestellt." #. BCJuy #: 24020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/06.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/06.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/06.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/06.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -167,7 +167,7 @@ "par_id481394381734366\n" "help.text" msgid "Options CTL Dialog Image" -msgstr "Bild des Dialogs Optionen – Complex Text Layout" +msgstr "Bild des Dialogs Optionen – Komplexes Textlayout" #. kEHFK #: optionen_screenshots.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/autokorr.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -50,7 +50,7 @@ "par_id3158397\n" "help.text" msgid "Typing errors such as \"WOrd\" have been corrected and replaced by the AutoCorrect function to \"Word\"." -msgstr "Tippfehler wie \"WOrt\" wurden durch die AutoKorrektur zu \"Wort\" korrigiert." +msgstr "Tippfehler wie \"WOrt\" wurden durch die AutoKorrektur zu \"Wort\" korrigiert." #. YGggv #: 02000000.xhp @@ -86,7 +86,7 @@ "par_id3158397\n" "help.text" msgid "Your text was corrected with AutoCorrect so that the current word began with a capital letter. AutoCorrect changes words at the beginning of a paragraph, and words after the character at the end of a sentence (period, exclamation point, question mark)." -msgstr "Ihr Text wurde mit der AutoKorrektur korrigiert, sodass das aktuelle Wort mit einem Großbuchstaben beginnt. Die AutoKorrektur ändert Wörter am Anfang eines Absatzes und Wörter nach einem Satzendezeichen (Punkt, Ausrufezeichen, Fragezeichen)." +msgstr "Ihr Text wurde mit der AutoKorrektur korrigiert, sodass das aktuelle Wort mit einem Großbuchstaben beginnt. Die AutoKorrektur ändert Wörter am Anfang eines Absatzes und Wörter nach einem Satzendezeichen (Punkt, Ausrufezeichen, Fragezeichen)." #. L6A3T #: 03000000.xhp @@ -122,7 +122,7 @@ "par_id3158397\n" "help.text" msgid "AutoCorrect has modified your text so that a word beginning with two capital letters at the beginning of a sentence now starts with one capital letter." -msgstr "Ihr Text wurde durch die AutoKorrektur so korrigiert, dass zwei Großbuchstaben am Wortanfang sowie am Satzanfang durch einen Großbuchstabe ersetzt wurden." +msgstr "Ihr Text wurde durch die AutoKorrektur so korrigiert, dass zwei Großbuchstaben am Wortanfang sowie am Satzanfang durch einen Großbuchstaben ersetzt wurden." #. gwa8j #: 04000000.xhp @@ -158,7 +158,7 @@ "par_id3159241\n" "help.text" msgid "AutoCorrect has replaced a word." -msgstr "AutoKorrektur hat ein Wort ersetzt." +msgstr "AutoKorrektur hat ein Wort ersetzt." #. CgGde #: 05000000.xhp @@ -194,7 +194,7 @@ "par_id3153341\n" "help.text" msgid "AutoCorrect has performed a replacement, and the beginning of the sentence now starts with a capital letter." -msgstr "AutoKorrektur hat eine Ersetzung vorgenommen. Der Satz beginnt nun mit einem Großbuchstaben." +msgstr "AutoKorrektur hat eine Ersetzung vorgenommen. Der Satz beginnt nun mit einem Großbuchstaben." #. pMoyc #: 06000000.xhp @@ -230,7 +230,7 @@ "par_id3146060\n" "help.text" msgid "Your text was corrected by Autocorrect so that double quotation marks were replaced by typographical quotation marks." -msgstr "AutoKorrektur hat doppelte Anführungszeichen in Ihrem Text durch typografische Anführungszeichen ersetzt." +msgstr "AutoKorrektur hat doppelte Anführungszeichen in Ihrem Text durch typografische Anführungszeichen ersetzt." #. B9CDq #: 07000000.xhp @@ -266,7 +266,7 @@ "par_id3154688\n" "help.text" msgid "Your text was corrected by Autocorrect so that single quotation marks were replaced by typographical quotation marks." -msgstr "AutoKorrektur hat einfache Anführungszeichen in Ihrem Text durch typografische Anführungszeichen ersetzt." +msgstr "AutoKorrektur hat einfache Anführungszeichen in Ihrem Text durch typografische Anführungszeichen ersetzt." #. RkFAj #: 08000000.xhp @@ -302,7 +302,7 @@ "par_id3150278\n" "help.text" msgid "AutoCorrect has modified your text. A string has been detected as an URL and is now shown as a hyperlink." -msgstr "Die AutoKorrektur hat Ihren Text verändert. Eine Zeichenkette wurde als URL erkannt und wird nun als Hyperlink dargestellt." +msgstr "Die AutoKorrektur hat Ihren Text verändert. Eine Zeichenkette wurde als URL erkannt und wird nun als Hyperlink dargestellt." #. VTdXe #: 09000000.xhp @@ -338,7 +338,7 @@ "par_id3149297\n" "help.text" msgid "AutoCorrect has corrected your text so that the multiple spaces you have entered have now been reduced to one single space." -msgstr "AutoKorrektur hat mehrfach eingegebene Leerzeichen in Ihrem Text durch einzelne Leerzeichen ersetzt." +msgstr "AutoKorrektur hat mehrfach eingegebene Leerzeichen in Ihrem Text durch einzelne Leerzeichen ersetzt." #. EejSa #: 10000000.xhp @@ -374,7 +374,7 @@ "par_id3156014\n" "help.text" msgid "AutoCorrect has modified your text, and the bold and/or underline text attributes have been automatically applied." -msgstr "AutoKorrektur hat die Textattribute Fett und/oder Unterstrichen automatisch auf Ihren Text angewendet." +msgstr "AutoKorrektur hat die Textattribute Fett und/oder Unterstrichen automatisch auf Ihren Text angewendet." #. FBeJm #: 12000000.xhp @@ -410,7 +410,7 @@ "par_id3148932\n" "help.text" msgid "AutoCorrect has modified your text, and minus signs have been replaced with dashes." -msgstr "AutoKorrektur hat Minuszeichen in Ihrem Text durch Bindestriche ersetzt." +msgstr "AutoKorrektur hat Minuszeichen in Ihrem Text durch Bindestriche ersetzt." #. bKCng #: 13000000.xhp @@ -446,4 +446,4 @@ "par_id3153220\n" "help.text" msgid "AutoCorrect has corrected your text so that ordinal number suffixes have been superscripted." -msgstr "AutoKorrektur hat Ihren Text so korrigiert, dass die Endungen der im Englischen gebräuchlichen Ordnungszahlen hochgestellt sind." +msgstr "AutoKorrektur hat Ihren Text so korrigiert, dass die Endungen der im Englischen gebräuchlichen Ordnungszahlen hochgestellt sind." diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/autopi.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -86,7 +86,7 @@ "hd_id3147530\n" "help.text" msgid "Document Converter" -msgstr "Dokumenten-Konverter" +msgstr "Dokumentkonverter" #. nxJzj #: 01000000.xhp @@ -1859,7 +1859,7 @@ "tit\n" "help.text" msgid "Agenda Wizard" -msgstr "Tagesordnungs-Assistent" +msgstr "Tagesordnungsassistent" #. D3wGn #: 01040000.xhp @@ -1868,7 +1868,7 @@ "bm_id3149031\n" "help.text" msgid "wizards;agendasAgenda Wizardtemplates;agendas" -msgstr "Assistenten; TagesordnungTagesordnungs-AssistentVorlagen; Tagesordnungen" +msgstr "Assistenten; TagesordnungTagesordnungsassistentVorlagen; Tagesordnungen" #. s5qJR #: 01040000.xhp @@ -1877,7 +1877,7 @@ "hd_id3149031\n" "help.text" msgid "Agenda Wizard" -msgstr "Tagesordnungs-Assistent" +msgstr "Tagesordnungsassistent" #. rVtcF #: 01040000.xhp @@ -1976,7 +1976,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Page Design" -msgstr "Tagesordnungs-Assistent - Seitendesign" +msgstr "Tagesordnungsassistent – Seitendesign" #. bBzNB #: 01040100.xhp @@ -1985,7 +1985,7 @@ "hd_id3151100\n" "help.text" msgid "Agenda Wizard - Page Design" -msgstr "Tagesordnungs-Assistent - Seitendesign" +msgstr "Tagesordnungsassistent – Seitendesign" #. fPTHx #: 01040100.xhp @@ -2039,7 +2039,7 @@ "par_id3153087\n" "help.text" msgid "Go to Agenda Wizard - General information" -msgstr "Weiter zu Tagesordnungs-Assistent - Allgemeine Informationen" +msgstr "Weiter zu: Tagesordnungsassistent – Allgemeine Informationen" #. WGmzy #: 01040200.xhp @@ -2048,7 +2048,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - General Information" -msgstr "Tagesordnungs-Assistent - Allgemeine Informationen" +msgstr "Tagesordnungsassistent – Allgemeine Informationen" #. d4naA #: 01040200.xhp @@ -2057,7 +2057,7 @@ "hd_id3150247\n" "help.text" msgid "Agenda Wizard - General Information" -msgstr "Tagesordnungs-Assistent - Allgemeine Informationen" +msgstr "Tagesordnungsassistent – Allgemeine Informationen" #. eLECH #: 01040200.xhp @@ -2147,7 +2147,7 @@ "par_id3148946\n" "help.text" msgid "Go to Agenda Wizard - Headings to include" -msgstr "Weiter zu Tagesordnungs-Assistent - Bestandteile" +msgstr "Weiter zum Tagesordnungsassistenten – Bestandteile" #. Q5JDB #: 01040300.xhp @@ -2156,7 +2156,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Headings to include" -msgstr "Tagesordnungs-Assistent - Bestandteile" +msgstr "Tagesordnungsassistent – Bestandteile" #. ipAGt #: 01040300.xhp @@ -2165,7 +2165,7 @@ "hd_id3109850\n" "help.text" msgid "Agenda Wizard - Headings to include" -msgstr "Tagesordnungs-Assistent - Bestandteile" +msgstr "Tagesordnungsassistent – Bestandteile" #. yBn6A #: 01040300.xhp @@ -2255,7 +2255,7 @@ "par_id3163802\n" "help.text" msgid "Go to Agenda Wizard - Names" -msgstr "Weiter zu Tagesordnungs-Assistent - Namen" +msgstr "Weiter zu: Tagesordnungsassistent – Namen" #. zECC7 #: 01040400.xhp @@ -2264,7 +2264,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Names" -msgstr "Tagesordnungs-Assistent - Namen" +msgstr "Tagesordnungsassistent – Namen" #. FmZNr #: 01040400.xhp @@ -2273,7 +2273,7 @@ "hd_id3143284\n" "help.text" msgid "Agenda Wizard - Names" -msgstr "Tagesordnungs-Assistent - Namen" +msgstr "Tagesordnungsassistent – Namen" #. emLhT #: 01040400.xhp @@ -2417,7 +2417,7 @@ "par_id3150275\n" "help.text" msgid "Go to Agenda Wizard - Agenda Items" -msgstr "Weiter zu Tagesordnungs-Assistent - Tagesordnungspunkte" +msgstr "Weiter zu: Tagesordnungsassistent – Tagesordnungspunkte" #. STCc4 #: 01040500.xhp @@ -2426,7 +2426,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Agenda Items" -msgstr "Tagesordnungs-Assistent - Tagesordnungspunkte" +msgstr "Tagesordnungsassistent – Tagesordnungspunkte" #. Gj4D2 #: 01040500.xhp @@ -2435,7 +2435,7 @@ "hd_id3159224\n" "help.text" msgid "Agenda Wizard - Agenda Items" -msgstr "Tagesordnungs-Assistent - Tagesordnungspunkte" +msgstr "Tagesordnungsassistent – Tagesordnungspunkte" #. BDRvF #: 01040500.xhp @@ -2543,7 +2543,7 @@ "par_id3146798\n" "help.text" msgid "Go to Agenda Wizard - Name and location" -msgstr "Weiter zu Tagesordnungs-Assistent - Name und Speicherort" +msgstr "Weiter zu: Tagesordnungsassistent – Name und Speicherort" #. H9Wbq #: 01040600.xhp @@ -2552,7 +2552,7 @@ "tit\n" "help.text" msgid "Agenda Wizard - Name and Location" -msgstr "Tagesordnungs-Assistent - Name und Speicherort" +msgstr "Tagesordnungsassistent – Name und Speicherort" #. VcrH9 #: 01040600.xhp @@ -2561,7 +2561,7 @@ "hd_id3144740\n" "help.text" msgid "Agenda Wizard - Name and Location" -msgstr "Tagesordnungs-Assistent - Name und Speicherort" +msgstr "Tagesordnungsassistent – Name und Speicherort" #. viGf3 #: 01040600.xhp @@ -2651,7 +2651,7 @@ "par_idN105F6\n" "help.text" msgid "Go to Agenda Wizard" -msgstr "Weiter zu Tagesordnungs-Assistent" +msgstr "Weiter zu: Tagesordnungsassistent" #. 4DsCG #: 01090000.xhp @@ -3857,7 +3857,7 @@ "tit\n" "help.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. Ljpsw #: 01100000.xhp @@ -3866,7 +3866,7 @@ "hd_id3150499\n" "help.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. Wxizv #: 01100000.xhp @@ -3893,7 +3893,7 @@ "tit\n" "help.text" msgid "Report Wizard - Field Selection" -msgstr "Berichts-Assistent - Feldauswahl" +msgstr "Berichtsassistent – Feldauswahl" #. 3hFgh #: 01100100.xhp @@ -3902,7 +3902,7 @@ "hd_id3155599\n" "help.text" msgid "Report Wizard - Field Selection" -msgstr "Berichts-Assistent – Feldauswahl" +msgstr "Berichtsassistent – Feldauswahl" #. k9HWM #: 01100100.xhp @@ -4046,7 +4046,7 @@ "par_id3145609\n" "help.text" msgid "More about Report Wizard - Labeling Fields" -msgstr "Weitere Informationen zum Berichts-Assistent – Felder beschriften" +msgstr "Weitere Informationen zu: Berichtsassistent – Felder beschriften" #. CU6F5 #: 01100150.xhp @@ -4055,7 +4055,7 @@ "tit\n" "help.text" msgid "Report Wizard - Labeling Fields" -msgstr "Berichts-Assistent – Felder beschriften" +msgstr "Berichtsassistent – Felder beschriften" #. pcAoA #: 01100150.xhp @@ -4064,7 +4064,7 @@ "hd_id3144415\n" "help.text" msgid "Report Wizard - Labeling Fields" -msgstr "Berichts-Assistent - Felder beschriften" +msgstr "Berichtsassistent - Felder beschriften" #. GsVRi #: 01100150.xhp @@ -4100,7 +4100,7 @@ "par_id3153748\n" "help.text" msgid "More about Report Wizard - Grouping" -msgstr "Weitere Informationen zum Berichts-Assistent – Gruppierung" +msgstr "Weitere Informationen zu: Berichtsassistent – Gruppierung" #. BUhYd #: 01100200.xhp @@ -4109,7 +4109,7 @@ "tit\n" "help.text" msgid "Report Wizard - Grouping" -msgstr "Berichts-Assistent – Gruppierung" +msgstr "Berichtsassistent – Gruppierung" #. QGdmm #: 01100200.xhp @@ -4118,7 +4118,7 @@ "hd_id3147000\n" "help.text" msgid "Report Wizard - Grouping" -msgstr "Berichts-Assistent – Gruppierung" +msgstr "Berichtsassistent – Gruppierung" #. UURLb #: 01100200.xhp @@ -4208,7 +4208,7 @@ "par_id3150355\n" "help.text" msgid "More about Report Wizard - Sort Options" -msgstr "Weitere Informationen zum Berichts-Assistent – Sortieroptionen" +msgstr "Weitere Informationen zu: Berichtsassistent – Sortieroptionen" #. HPGPg #: 01100300.xhp @@ -4217,7 +4217,7 @@ "tit\n" "help.text" msgid "Report Wizard - Sort Options" -msgstr "Berichts-Assistent – Sortieroptionen" +msgstr "Berichtsassistent – Sortieroptionen" #. 5icZB #: 01100300.xhp @@ -4226,7 +4226,7 @@ "hd_id3148668\n" "help.text" msgid "Report Wizard - Sort Options" -msgstr "Berichts-Assistent – Sortieroptionen" +msgstr "Berichtsassistent – Sortieroptionen" #. RSArv #: 01100300.xhp @@ -4316,7 +4316,7 @@ "par_id3156329\n" "help.text" msgid "More about Report Wizard - Choose Layout" -msgstr "Weitere Informationen zum Berichts-Assistent – Auswahl des Layouts" +msgstr "Weitere Informationen zu: Berichtsassistent – Auswahl des Layouts" #. 8Gkxm #: 01100400.xhp @@ -4325,7 +4325,7 @@ "tit\n" "help.text" msgid "Report Wizard - Choose Layout" -msgstr "Berichts-Assistent - Auswahl des Layouts" +msgstr "Berichtsassistent – Auswahl des Layouts" #. GCkoV #: 01100400.xhp @@ -4334,7 +4334,7 @@ "hd_id3148668\n" "help.text" msgid "Report Wizard - Choose Layout" -msgstr "Berichts-Assistent – Auswahl des Layouts" +msgstr "Berichtsassistent – Auswahl des Layouts" #. aPVFq #: 01100400.xhp @@ -4442,7 +4442,7 @@ "par_id3148491\n" "help.text" msgid "More about Report Wizard - Create Report" -msgstr "Weitere Informationen zum Berichts-Assistent – Bericht erstellen" +msgstr "Weitere Informationen zu: Berichtsassistent – Bericht erstellen" #. KwNon #: 01100500.xhp @@ -4451,7 +4451,7 @@ "tit\n" "help.text" msgid "Report Wizard - Create Report" -msgstr "Berichts-Assistent - Bericht erstellen" +msgstr "Berichtsassistent – Bericht erstellen" #. gKZbX #: 01100500.xhp @@ -4460,7 +4460,7 @@ "hd_id3156211\n" "help.text" msgid "Report Wizard - Create Report" -msgstr "Berichts-Assistent - Bericht erstellen" +msgstr "Berichtsassistent – Bericht erstellen" #. G5N3i #: 01100500.xhp @@ -5180,7 +5180,7 @@ "par_id3146119\n" "help.text" msgid "To export to ASP, in a $[officename] Impress document choose File - Export. You then see the Export dialog in which you select HTML Document as the file type. Once you have selected a directory and entered a file name, click Export. For export as ASP, we recommend selecting a \"secret\" file name for the HTML file (see below for more details). You then see the HTML Export dialog. Several files will be written to the directory you have just selected." -msgstr "Zum Exportieren nach ASP wählen Sie in einem geöffneten $[officename] Impress Dokument Datei - Exportieren. Sie sehen den Dialog Exportieren, in dem Sie Webseite als Dateityp wählen. Nach Auswahl eines Verzeichnisses und Eingabe eines Dateinamens klicken Sie auf Speichern. Für den Export als ASP empfehlen wir einen \"geheimen\" Dateinamen für die HTML-Datei zu wählen, siehe weiter unten. Sie sehen anschließend den Dialog HTML-Export. Er wird mehrere Dateien in das eben ausgewählte Verzeichnis schreiben." +msgstr "Zum Exportieren nach ASP wählen Sie in einem geöffneten $[officename] Impress-Dokument Datei - Exportieren…. Sie sehen den Dialog Exportieren, in dem Sie HTML-Dokument als Dateityp wählen. Nach Auswahl eines Verzeichnisses und Eingabe eines Dateinamens klicken Sie auf Speichern. Für den Export als ASP empfehlen wir, einen \"geheimen\" Dateinamen für die HTML-Datei zu wählen, siehe weiter unten. Sie sehen anschließend den Dialog HTML-Export. Es werden mehrere Dateien in das soeben gewählte Verzeichnis geschrieben." #. ALHEL #: 01110200.xhp @@ -5963,7 +5963,7 @@ "hd_id3149095\n" "help.text" msgid "Use browser colors" -msgstr "Browser Farben verwenden" +msgstr "Browserfarben verwenden" #. AgdRU #: 01110600.xhp @@ -6593,7 +6593,7 @@ "tit\n" "help.text" msgid "Document Converter" -msgstr "Dokumenten-Konverter-Assistent" +msgstr "Dokumentkonverter-Assistent" #. szRb9 #: 01130000.xhp @@ -6602,7 +6602,7 @@ "hd_id3149798\n" "help.text" msgid "Document Converter" -msgstr "Dokumenten-Konverter-Assistent" +msgstr "Dokumentkonverter-Assistent" #. v5SJh #: 01130000.xhp @@ -6629,7 +6629,7 @@ "par_id3156410\n" "help.text" msgid "The Document Converter Wizard contains the following pages:" -msgstr "Der Dokumenten-Konverter-Assistent umfasst die folgenden Seiten:" +msgstr "Der Dokumentkonverter-Assistent umfasst die folgenden Seiten:" #. 9CQNJ #: 01130000.xhp @@ -6638,7 +6638,7 @@ "hd_id3154318\n" "help.text" msgid "Document Converter Summary" -msgstr "Dokumenten-Konverter Zusammenfassung" +msgstr "Dokumentkonverter Zusammenfassung" #. 3qZPc #: 01130000.xhp @@ -6656,7 +6656,7 @@ "tit\n" "help.text" msgid "Document Converter Page 1" -msgstr "Dokumenten-Konverter Erste Seite" +msgstr "Dokumentkonverter Erste Seite" #. EhtBu #: 01130100.xhp @@ -6665,7 +6665,7 @@ "hd_id3151299\n" "help.text" msgid "Document Converter Page 1" -msgstr "Dokumenten-Konverter Erste Seite" +msgstr "Dokumentkonverter Erste Seite" #. G7Zgn #: 01130100.xhp @@ -6773,7 +6773,7 @@ "par_id3149578\n" "help.text" msgid "Continue to the next page of the Document Converter." -msgstr "Hier geht es weiter zur nächsten Seite des Dokumenten-Konverters." +msgstr "Hier geht es weiter zur nächsten Seite des Dokumentkonverters." #. 58vGa #: 01130200.xhp @@ -6782,7 +6782,7 @@ "tit\n" "help.text" msgid "Document converter continuation pages" -msgstr "Dokumenten-Konverter Folgeseiten" +msgstr "Dokumentkonverter Folgeseiten" #. MZWf5 #: 01130200.xhp @@ -6791,7 +6791,7 @@ "hd_id3149748\n" "help.text" msgid "Document converter continuation pages" -msgstr "Dokumenten-Konverter Folgeseiten" +msgstr "Dokumentkonverter Folgeseiten" #. Ve7Wv #: 01130200.xhp @@ -6845,7 +6845,7 @@ "par_id3149182\n" "help.text" msgid "Specifies that templates are to be converted." -msgstr "Markieren Sie dieses Feld, um die Dokumentenvorlagen zu konvertieren." +msgstr "Markieren Sie dieses Feld, um die Dokumentvorlagen zu konvertieren." #. fnBXC #: 01130200.xhp @@ -6971,7 +6971,7 @@ "par_id3156344\n" "help.text" msgid "Here you can return to the main page of the Document Converter Wizard." -msgstr "Hier können Sie zur Hauptseite des Dokumenten-Konverter zurückkehren." +msgstr "Hier können Sie zur Hauptseite des Dokumentkonverter zurückkehren." #. ELq8D #: 01150000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-02 05:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3632,7 +3632,7 @@ "par_idN105B7\n" "help.text" msgid "Working with databases in %PRODUCTNAME" -msgstr "" +msgstr "Mit Datenbanken in %PRODUCTNAME arbeiten" #. ptEgp #: dabaprop.xhp @@ -4496,7 +4496,7 @@ "bm_id2026429\n" "help.text" msgid "wizards;databases (Base)Database Wizard (Base)databases; formats (Base)MySQL databases (Base)MariaDB databases (Base)dBASE; database settings (Base)spreadsheets;as databases (base)" -msgstr "" +msgstr "Assistenten; Datenbanken (Base)Datenbankassistent (Base)Datenbanken; Formate (Base)MySQL Datenbanken (Base)MariaDB Datenbanken (Base)dBASE; Datenbankeinstellungen (Base)Tabellendokumente; als Datenbanken (Base)" #. 4QDPm #: dabawiz00.xhp @@ -5738,7 +5738,7 @@ "tit\n" "help.text" msgid "MariaDB and MySQL Connection" -msgstr "" +msgstr "Verbindung mit MariaDB und MySQL" #. bVNAZ #: dabawiz02mysql.xhp @@ -5747,7 +5747,7 @@ "bm_id861587404584956\n" "help.text" msgid "MariaDB settings (Base)MySQL settings (Base)" -msgstr "" +msgstr "MariaDB-Einstellungen (Base)MySQL-Einstellungen (Base)" #. f4CzF #: dabawiz02mysql.xhp @@ -5756,7 +5756,7 @@ "par_idN10549\n" "help.text" msgid "MariaDB and MySQL Connection" -msgstr "" +msgstr "Verbindung zu MariaDB und MySQL" #. 5FPU6 #: dabawiz02mysql.xhp @@ -5765,7 +5765,7 @@ "par_idN1054D\n" "help.text" msgid "Specifies the options for MariaDB and MySQL databases." -msgstr "" +msgstr "Legt die Optionen für MariaDB- und MySQL-Datenbanken fest." #. Bmcwo #: dabawiz02mysql.xhp @@ -5774,7 +5774,7 @@ "hd_id661587405298284\n" "help.text" msgid "Direct Connection for MariaDB and MySQL databases" -msgstr "" +msgstr "Direktverbindung für MariaDB- und MySQL-Datenbanken" #. vd9VD #: dabawiz02mysql.xhp @@ -5783,7 +5783,7 @@ "hd_id321587405303769\n" "help.text" msgid "Database name" -msgstr "" +msgstr "Datenbankname" #. 6LAsi #: dabawiz02mysql.xhp @@ -5792,7 +5792,7 @@ "par_id371587405314376\n" "help.text" msgid "Enter the name of the MariaDB or MySQL database. Ask your database administrator for the correct name." -msgstr "" +msgstr "Geben Sie den Namen der MariaDB- oder MySQL-Datenbank ein. Fragen Sie Ihren Datenbankadministrator nach dem richtigen Namen." #. jbdZp #: dabawiz02mysql.xhp @@ -5801,7 +5801,7 @@ "hd_id561587405334695\n" "help.text" msgid "Server URL" -msgstr "" +msgstr "Server-URL" #. SshYk #: dabawiz02mysql.xhp @@ -5810,7 +5810,7 @@ "par_id521587405341138\n" "help.text" msgid "Enter the URL for the database server. This is the name of the machine that runs the MariaDB or MySQL database. You can also replace hostname with the IP address of the server." -msgstr "" +msgstr "Geben Sie die URL für den Datenbankserver ein. Dies ist der Name des Computers, auf dem die MariaDB- oder MySQL-Datenbank ausgeführt wird. Sie können den Hostnamen auch durch die IP-Adresse des Servers ersetzen." #. MZQiq #: dabawiz02mysql.xhp @@ -5819,7 +5819,7 @@ "hd_id171587405349438\n" "help.text" msgid "Port number" -msgstr "" +msgstr "Portnummer" #. J2SR3 #: dabawiz02mysql.xhp @@ -5828,7 +5828,7 @@ "par_id1001587405358390\n" "help.text" msgid "Enter the port number for the database server. Ask your database administrator for the correct port address. The default port number for MySQL or MariaDB databases is 3306." -msgstr "" +msgstr "Geben Sie die Portnummer für den Datenbankserver ein. Fragen Sie Ihren Datenbankadministrator nach der richtigen Portadresse. Die Standardportnummer für MySQL- oder MariaDB-Datenbanken lautet 3306." #. ovKhU #: dabawiz02mysql.xhp @@ -5837,7 +5837,7 @@ "hd_id121587407845730\n" "help.text" msgid "Named Pipe" -msgstr "" +msgstr "Benannte Pipe" #. Rq89B #: dabawiz02mysql.xhp @@ -5846,7 +5846,7 @@ "par_id941587407987180\n" "help.text" msgid "If the MariaDB or MySQL database is to be accessed by a named pipe, enter its name." -msgstr "" +msgstr "Wenn auf die MariaDB- oder MySQL-Datenbank über eine benannte Pipe zugegriffen werden soll, geben Sie hier ihren Namen ein." #. wF6bj #: dabawiz02mysql.xhp @@ -5855,7 +5855,7 @@ "hd_id161587405553671\n" "help.text" msgid "Socket" -msgstr "" +msgstr "Socket" #. e8DB2 #: dabawiz02mysql.xhp @@ -5864,7 +5864,7 @@ "par_id161587405561472\n" "help.text" msgid "If the MariaDB or MySQL database is to be accessed by a socket, enter the socket ID." -msgstr "" +msgstr "Wenn über einen Socket auf die MariaDB- oder MySQL-Datenbank zugegriffen werden soll, geben Sie hier die Socket-ID ein." #. fpBNu #: dabawiz02mysql.xhp @@ -6908,7 +6908,7 @@ "par_idN105C2\n" "help.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. U7xE3 #: menuedit.xhp @@ -6917,7 +6917,7 @@ "par_idN105C6\n" "help.text" msgid "Starts the Report Wizard for the selected table, query, or view." -msgstr "Startet den Berichts-Assistenten für die ausgewählte Tabelle, Abfrage oder Ansicht." +msgstr "Startet den Berichtsassistenten für die ausgewählte Tabelle, Abfrage oder Ansicht." #. yNkzG #: menuedit.xhp @@ -7835,7 +7835,7 @@ "par_id0112200902353466\n" "help.text" msgid "The Database Document Macro Migration Wizard moves existing macros from sub-documents of an old Base file into the new Base file's macro storage area." -msgstr "Der Migrations-Assistent für Datenbankmakros verschiebt vorhandene Makros aus Unterdokumenten einer alten Datenbankdatei in den Makro-Speicherbereich der neuen Datenbankdatei." +msgstr "Der Migrationsassistent für Datenbankmakros verschiebt vorhandene Makros aus Unterdokumenten einer alten Datenbankdatei in den Makro-Speicherbereich der neuen Datenbankdatei." #. ajASD #: migrate_macros.xhp @@ -7880,7 +7880,7 @@ "par_id0112200903075830\n" "help.text" msgid "The Database Document Macro Migration Wizard can move the macros up into the Base file's storage area. You can then examine the macros and edit them as needed." -msgstr "Der Migrations-Assistent für Datenbankmakros kann die Makros in den Speicherbereich der Datenbankdatei verschieben. Sie können dann die Makros überprüfen und nach Bedarf bearbeiten." +msgstr "Der Migrationsassistent für Datenbankmakros kann die Makros in den Speicherbereich der Datenbankdatei verschieben. Sie können dann die Makros überprüfen und nach Bedarf bearbeiten." #. RJUfX #: migrate_macros.xhp @@ -7907,7 +7907,7 @@ "par_id0112200902353554\n" "help.text" msgid "An in depth explanation by the developers (Wiki)." -msgstr "Wiki-Seite mit einer ausführlichereren Erklärung der Entwickler." +msgstr "Wiki-Seite mit einer ausführlicheren Erklärung der Entwickler." #. WG9NH #: password.xhp @@ -8843,7 +8843,7 @@ "par_id8638874\n" "help.text" msgid "You can open the Date and Time dialog of the Report Builder by choosing Insert - Date and Time." -msgstr "Sie können den Dialog \"Datum und Zeit\" des Report Builders öffnen, indem Sie Einfügen – Datum und Zeit wählen." +msgstr "Sie können den Dialog \"Datum und Zeit\" des Bericht-Designers öffnen, indem Sie Einfügen – Datum und Zeit wählen." #. tSLyd #: rep_datetime.xhp @@ -9113,7 +9113,7 @@ "par_id5248573\n" "help.text" msgid "The Report Builder is a tool to create your own database reports. Unlike with the Report Wizard, using the Report Builder you can take control to design the report the way you want. The generated report is a Writer document that you can edit, too." -msgstr "Der Bericht-Designer ist ein Werkzeug, mit dem Sie Ihre eigenen Datenbankberichte erstellen können. Im Unterschied zum Berichts-Assistenten können Sie mithilfe des Bericht-Designers den Bericht den eigenen Wünschen entsprechend entwerfen. Der erzeugte Bericht ist ein Writerdokument, welches Sie ebenfalls bearbeiten können." +msgstr "Der Bericht-Designer ist ein Werkzeug, mit dem Sie Ihre eigenen Datenbankberichte erstellen können. Im Unterschied zum Berichtsassistenten können Sie mithilfe des Bericht-Designers den Bericht den eigenen Wünschen entsprechend entwerfen. Der erzeugte Bericht ist ein Writerdokument, welches Sie ebenfalls bearbeiten können." #. A7xcb #: rep_main.xhp @@ -9122,7 +9122,7 @@ "par_id7128818\n" "help.text" msgid "To use the Report Builder, the Report Builder component must be installed. In addition, the Java Runtime Environment (JRE) software must be installed, and this software must be selected in %PRODUCTNAME." -msgstr "Um den Report Builder-Designer zu nutzen, muss die Report Builder-Komponente installiert sein. Zusätzlich muss eine Java-Laufzeitumgebung (JRE) installiert und in %PRODUCTNAME ausgewählt sein." +msgstr "Um den Bericht-Designer zu nutzen, muss die Komponente Bericht-Designer installiert sein. Zusätzlich muss eine Java-Laufzeitumgebung (JRE) installiert und in %PRODUCTNAME ausgewählt sein." #. MUFG8 #: rep_main.xhp @@ -10004,7 +10004,7 @@ "par_id3424481\n" "help.text" msgid "You can open the Page Numbers dialog of the Report Builder by choosing Insert - Page Numbers." -msgstr "Sie können den Dialog Seitenzahlen des Report Builders öffnen, indem Sie Einfügen - Seitenzahlen wählen." +msgstr "Sie können den Dialog Seitenzahlen des Bericht-Designers öffnen, indem Sie Einfügen - Seitenzahlen wählen." #. ygaGw #: rep_pagenumbers.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -347,7 +347,7 @@ "par_id3153541\n" "help.text" msgid "Press the shortcut keys Shift+F1 to activate extended tips once." -msgstr "Drücken Sie zum einmaligen Aktivieren der Erweiterten Tipps die Tastenkombination Umschalt+F1." +msgstr "Drücken Sie zum einmaligen Aktivieren der erweiterten Tipps die Tastenkombination Umschalt+F1." #. GjoTE #: active_help_on_off.xhp @@ -419,7 +419,7 @@ "par_id3150771\n" "help.text" msgid "Click the Start button on the Windows taskbar. Choose Settings." -msgstr "" +msgstr "Klicken Sie in der Windows-Taskleiste auf die Schaltfläche Start. Wählen Sie Einstellungen." #. u7g6Z #: activex.xhp @@ -428,7 +428,7 @@ "par_idN106E8\n" "help.text" msgid "In Settings, click Apps." -msgstr "" +msgstr "In den Einstellungen klicken Sie auf Apps." #. 3UNE4 #: activex.xhp @@ -437,7 +437,7 @@ "par_id3156155\n" "help.text" msgid "In the Apps & features list, click %PRODUCTNAME, then click Change." -msgstr "" +msgstr "Klicken Sie in der Liste Apps & Funktionen auf %PRODUCTNAME und dann auf Ändern." #. CaXPY #: activex.xhp @@ -446,7 +446,7 @@ "par_idN10706\n" "help.text" msgid "In the Installation Wizard, select Modify." -msgstr "Wählen Sie im Installations-Assistenten die Option Ändern." +msgstr "Wählen Sie im Installationsassistenten die Option Ändern." #. cuFZi #: activex.xhp @@ -1769,7 +1769,7 @@ "par_id4439832\n" "help.text" msgid "In Calc, a chart is an object on a sheet that can be copied and pasted on another sheet of the same document, the data series will stay linked to the range on the other sheet. If it is pasted on another Calc document, it has its own chart data table and is no more linked to the original range." -msgstr "In Calc ist ein Diagramm ein Objekt in einer Tabelle, das kopiert und in eine andere Tabelle des gleichen Dokuments eingefügt werden kann, wobei die Datenreihen mit dem Bereich in der ursprünglichen Tabellen verknüpft bleiben. Falls es in ein anderes Calc Dokument eingefügt wird, hat es seine eigene Diagrammdatentabelle und ist nicht mehr mit dem Originalbereich verknüpft." +msgstr "In Calc ist ein Diagramm ein Objekt in einer Tabelle, das kopiert und in eine andere Tabelle des gleichen Dokuments eingefügt werden kann, wobei die Datenreihen mit dem Bereich in der ursprünglichen Tabellen verknüpft bleiben. Falls es in ein anderes Calc-Dokument eingefügt wird, hat es seine eigene Diagrammdatentabelle und ist nicht mehr mit dem Originalbereich verknüpft." #. qQLu6 #: chart_insert.xhp @@ -2264,7 +2264,7 @@ "par_id150820161816034394\n" "help.text" msgid "Note: the root of the file service is provided by the file service administrator and may consists of scripts files, parameters and paths." -msgstr "Beachten Sie: Die Wurzel des Dateidienstes wird durch den Administrator des Dateidienstes bereitgestellt und kann Skriptsdateien, Parameter und Pfade enthalten." +msgstr "Beachten Sie: Die Wurzel des Dateidienstes wird durch den Administrator des Dateidienstes bereitgestellt und kann Skriptdateien, Parameter und Pfade enthalten." #. 8hLk4 #: cmis-remote-files-setup.xhp @@ -2345,7 +2345,7 @@ "hd_id150820161816049600\n" "help.text" msgid "Connecting to a Windows share" -msgstr "Verbindung zu einer Windows Freigabe" +msgstr "Verbindung zu einer Windows-Freigabe" #. Jw5YH #: cmis-remote-files-setup.xhp @@ -2354,7 +2354,7 @@ "bm_id170820161249395796\n" "help.text" msgid "remote file service;Windows share Windows share;remote file service Windows share;remote file service setup remote file service setup;Windows share" -msgstr "Service für Dateien auf Servern; Windows FreigabeWindows Freigabe; Service für Dateien auf ServernWindows Freigabe; Service für Dateien auf Servern konfigurierenService für Dateien auf Servern konfigurieren; Windows Freigabe" +msgstr "Service für Dateien auf Servern; Windows-FreigabeWindows-Freigabe; Service für Dateien auf ServernWindows-Freigabe; Service für Dateien auf Servern konfigurierenService für Dateien auf Servern konfigurieren; Windows-Freigabe" #. qH9zL #: cmis-remote-files-setup.xhp @@ -2363,7 +2363,7 @@ "par_id150820161816041482\n" "help.text" msgid "Type: Windows Share" -msgstr "Typ: Windows Freigabe" +msgstr "Typ: Windows-Freigabe" #. 72p76 #: cmis-remote-files-setup.xhp @@ -2417,7 +2417,7 @@ "par_id16082016175916814\n" "help.text" msgid "User, Password: the username and password of the Google account." -msgstr "Benuter, Kennwort: Der Benutzername und das Kennwort für den Google Account." +msgstr "Benutzer, Kennwort: Der Benutzername und das Kennwort für den Google-Account." #. NfYmB #: cmis-remote-files-setup.xhp @@ -2462,7 +2462,7 @@ "par_id150820161816046632\n" "help.text" msgid "User, Password: the username and password of the CMIS service." -msgstr "Beutzer, Kennwort: Der Benutzername und das Kennwort für den CMIS Service." +msgstr "Benutzer, Kennwort: Der Benutzername und das Kennwort für den CMIS-Service." #. W4Jaq #: cmis-remote-files-setup.xhp @@ -2480,7 +2480,7 @@ "par_id150820161816054065\n" "help.text" msgid "Refresh button: click to refresh the contents of the repository list." -msgstr "Schaltfläche Aktualisieren: Klicken, um den Inhalt der Repositorys-Liste zu aktualisieren." +msgstr "Schaltfläche Aktualisieren: Klicken, um den Inhalt der Repository-Liste zu aktualisieren." #. JE7Dx #: cmis-remote-files-setup.xhp @@ -5828,7 +5828,7 @@ "par_id3153770\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Complex Text Layout" -msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Complex Text Layout" +msgstr "%PRODUCTNAME - EinstellungenExtras - Optionen… - Spracheinstellungen - Komplexes Textlayout" #. E7xSj #: data_addressbook.xhp @@ -6854,7 +6854,7 @@ "par_idN105C1\n" "help.text" msgid "Data from any database file can be registered to the installed instance of %PRODUCTNAME. To register means to tell %PRODUCTNAME where the data is located, how it is organized, how to get that data, and more. Once the database is registered, you can use the menu command View - Data source to access the data records from your text documents and spreadsheets." -msgstr "" +msgstr "Daten aus einer beliebigen Datenbankdatei können in der installierten Instanz von %PRODUCTNAME registriert werden. Registrieren bedeutet, %PRODUCTNAME mitzuteilen, wo sich die Daten befinden, wie sie organisiert sind, wie diese Daten abgerufen werden und vieles mehr. Sobald die Datenbank registriert ist, können Sie aus Ihren Text- und Tabellendokumenten auf die Datensätze zugreifen, indem Sie Ansicht – Datenquellen wählen." #. ADK4M #: data_register.xhp @@ -6989,7 +6989,7 @@ "par_idN1077D\n" "help.text" msgid "These links are added automatically when you create a new report by the Report Wizard or in the Report Builder window." -msgstr "Diese Verknüpfungen werden automatisch hinzugefügt, wenn Sie einen neuen Bericht mit dem Berichts-Assistenten oder dem Bericht-Designer erstellen." +msgstr "Diese Verknüpfungen werden automatisch hinzugefügt, wenn Sie einen neuen Bericht mit dem Berichtsassistenten oder dem Bericht-Designer erstellen." #. rECmE #: data_report.xhp @@ -7043,7 +7043,7 @@ "hd_id3153104\n" "help.text" msgid "Editing a Report Created by the Report Wizard" -msgstr "Bearbeiten eines Berichts, der mit dem Berichts-Assistenten erstellt wurde" +msgstr "Bearbeiten eines Berichts, der mit dem Berichtsassistenten erstellt wurde" #. PcBjS #: data_report.xhp @@ -7052,7 +7052,7 @@ "par_id3125863\n" "help.text" msgid "On the last dialog page of the Report Wizard, you can choose to edit the report template before you use the report." -msgstr "Auf der letzten Seite im Dialog des Berichts-Assistent können Sie entscheiden, ob die Berichtsvorlage vor der ersten Verwendung weiter bearbeitet werden soll." +msgstr "Auf der letzten Seite im Dialog des Berichtsassistent können Sie entscheiden, ob die Berichtsvorlage vor der ersten Verwendung weiterbearbeitet werden soll." #. X9jYZ #: data_report.xhp @@ -7106,7 +7106,7 @@ "par_idN105C1\n" "help.text" msgid "A report is a Writer text document that can show your data in an organized order and formatting. In %PRODUCTNAME Base, you have a choice to create a report either manually using drag-and-drop in the Report Builder window, or semi-automatic by following a series of dialogs in the Report Wizard." -msgstr "Ein Bericht ist ein Writer Textdokument, das Ihre Daten in einer geordneten Reihenfolge und Formatierung anzeigen kann. In %PRODUCTNAME Base haben Sie die Wahl, einen Bericht entweder manuell im Bericht-Designer durch Arbeiten mit der Maus oder halbautomatisch über die Dialogfolge des Berichts-Assistenten zu erstellen." +msgstr "Ein Bericht ist ein Writer-Textdokument, das Ihre Daten in einer geordneten Reihenfolge und Formatierung anzeigen kann. In %PRODUCTNAME Base haben Sie die Wahl, einen Bericht entweder manuell im Bericht-Designer durch Arbeiten mit der Maus oder halbautomatisch über die Dialogfolge des Berichtsassistenten zu erstellen." #. G4j7Y #: data_reports.xhp @@ -7133,7 +7133,7 @@ "par_id9764091\n" "help.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. GjNKw #: data_reports.xhp @@ -7196,7 +7196,7 @@ "par_id8611713\n" "help.text" msgid "Generates a one-time snapshot of the data. To see an updated report, execute the same report again to create a Writer document with the updated data." -msgstr "Erzeugt eine einmalige Momentaufnahme der Daten. Um den aktualisierten Bericht zu sehen, führen Sie den gleichen Berichte wieder aus, um ein Writer Dokument mit den aktualisierten Daten zu erstellen." +msgstr "Erzeugt eine einmalige Momentaufnahme der Daten. Um den aktualisierten Bericht zu sehen, führen Sie den gleichen Berichte wieder aus, um ein Writer-Dokument mit den aktualisierten Daten zu erstellen." #. mE89k #: data_reports.xhp @@ -7313,7 +7313,7 @@ "par_idN105C4\n" "help.text" msgid "Creating a New Report With the Report Wizard" -msgstr "Erstellen eines neuen Berichts mit dem Berichts-Assistenten" +msgstr "Erstellen eines neuen Berichts mit dem Berichtsassistenten" #. XSaQ9 #: data_reports.xhp @@ -7349,7 +7349,7 @@ "par_id8032166\n" "help.text" msgid "Follow the steps of the Report Wizard to create the report." -msgstr "Folgen Sie den Schritten des Berichts-Assistenten, um einen Bericht zu erstellen." +msgstr "Folgen Sie den Schritten des Berichtsassistenten, um einen Bericht zu erstellen." #. TKDmA #: data_search.xhp @@ -7952,7 +7952,7 @@ "par_idN105F1\n" "help.text" msgid "Working with databases in %PRODUCTNAME" -msgstr "" +msgstr "Mit Datenbanken in %PRODUCTNAME arbeiten" #. VPAta #: database_main.xhp @@ -8051,7 +8051,7 @@ "par_id3151380\n" "help.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. tpEVh #: database_main.xhp @@ -10418,7 +10418,7 @@ "par_id3147335\n" "help.text" msgid "Choose File - Send - Email Document." -msgstr "" +msgstr "Wählen Sie Datei – Senden – Dokument als E-Mail…." #. EGqDe #: email.xhp @@ -10427,7 +10427,7 @@ "par_id3153127\n" "help.text" msgid "$[officename] opens your default email program. If you want to send the current document with another email program, you can select the program to use with Internet - Email in the Options dialog box." -msgstr "" +msgstr "$[officename] öffnet Ihr Standard-E-Mail-Programm. Wenn Sie das aktuelle Dokument mit einem anderen E-Mail-Programm senden möchten, können Sie in den Optionen unter Internet – E-Mail das Programm festlegen, das verwendet werden soll." #. maP2B #: email.xhp @@ -11615,7 +11615,7 @@ "par_idN10731\n" "help.text" msgid "You can use the Form Controls toolbar to add checkboxes, buttons, tables showing data records, and other controls to a document." -msgstr "Sie können mit der Symbolleiste Formular-Steuerlemente in einem Dokument Markierfelder, Schaltflächen, Tabellen mit Datensätzen und andere Steuerelemente anzeigen oder hinzufügen." +msgstr "Sie können mit der Symbolleiste Formular-Steuerelemente in einem Dokument Markierfelder, Schaltflächen, Tabellen mit Datensätzen und andere Steuerelemente anzeigen oder hinzufügen." #. YQ56A #: formfields.xhp @@ -12758,7 +12758,7 @@ "bm_id3153988\n" "help.text" msgid "Microsoft Office;opening Microsoft documents documents; importing importing; documents in other formats opening; documents from other formats loading; documents from other formats converting;Microsoft documents saving; default file formats defaults;document formats in file dialogs file formats; saving always in other formats Microsoft Office; as default file format files;importing XML converters converters; XML Document Converter Wizard wizards; document converter converters; document converter files, see also documents" -msgstr "Microsoft Office; Microsoft-Dokumente öffnenDokumente; importierenImportieren; Dokumente in anderen FormatenÖffnen; Dokumente in anderen FormatenLaden; Dokumente aus anderen FormatenKonvertieren; Microsoft DokumenteSpeichern; voreingestellte DateiformateVoreinstellungen; Dokumentenformate in DateidialogenDateiformate; immer in anderen Formaten speichernMicrosoft Office; als voreingestelltes DateiformatDateien; importierenXML-KonverterKonvertieren; XMLDokumenten-Konverter-AssistentAssistenten; Dokumenten-KonverterKonverter; Dokumenten-KonverterDateien, siehe auch Dokumente" +msgstr "Microsoft Office; Microsoft-Dokumente öffnenDokumente; importierenImportieren; Dokumente in anderen FormatenÖffnen; Dokumente in anderen FormatenLaden; Dokumente aus anderen FormatenKonvertieren; Microsoft DokumenteSpeichern; voreingestellte DateiformateVoreinstellungen; Dokumentenformate in DateidialogenDateiformate; immer in anderen Formaten speichernMicrosoft Office; als voreingestelltes DateiformatDateien; importierenXML-KonverterKonvertieren; XMLDokumentkonverter-AssistentAssistenten; DokumentkonverterKonverter; DokumentkonverterDateien, siehe auch Dokumente" #. 2SFQD #: import_ms.xhp @@ -13415,7 +13415,7 @@ "par_id3147275\n" "help.text" msgid "In the large selection field double-click on the desired character, which is inserted in the current document." -msgstr "" +msgstr "Doppelklicken Sie im großen Auswahlfeld auf das gewünschte Zeichen, das in das aktuelle Dokument eingefügt werden soll." #. p7XqC #: insert_specialchar.xhp @@ -13478,7 +13478,7 @@ "par_id3153896\n" "help.text" msgid "AutoCorrect" -msgstr "AutoKorrektur" +msgstr "AutoKorrektur" #. WDGAE #: integratinguno.xhp @@ -14081,7 +14081,7 @@ "par_id3145619\n" "help.text" msgid "Set the grid resolution unit with %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Grid in the Resolution area. If you enter a number greater than 1 in the Subdivision area, you must press the arrow key as often as the number states to move the selected object by one grid resolution unit." -msgstr "Die Gittereinheit stellen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Gitter im Bereich Auflösung ein. Haben Sie im Bereich Unterteilung eine Zahl größer eins eingetragen, müssen Sie die Pfeiltaste genau so oft drücken, um das ausgewählte Objekt um eine Gittereinheit zu verschieben." +msgstr "Die Gittereinheit stellen Sie unter %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME Writer - Gitter im Bereich Auflösung ein. Haben Sie im Bereich Unterteilung eine Zahl größer eins eingetragen, müssen Sie die Pfeiltaste genauso oft drücken, um das ausgewählte Objekt um eine Gittereinheit zu verschieben." #. 6Vt2A #: keyboard.xhp @@ -15125,7 +15125,7 @@ "par_id0130200903370930\n" "help.text" msgid "Continue to select and insert database fields if you want more fields on every label. You can press Enter to insert a new line, and you can type any character to insert fixed text." -msgstr "Fügen Sie weitere Datenbankfelder ein, um mehr Daten auf den Etiketten anzuzeigen. Sie können die Eingabetaste benutzen, um einen Zeilenumbruch zu erzeugen oder beliebige Zeichen eingeben, um Text hinzuzufügen." +msgstr "Fügen Sie weitere Datenbankfelder ein, um mehr Daten auf den Etiketten anzuzeigen. Sie können die Eingabetaste benutzen, um einen Zeilenumbruch zu erzeugen, oder beliebige Zeichen eingeben, um Text hinzuzufügen." #. C4ZRE #: labels_database.xhp @@ -15188,7 +15188,7 @@ "bm_id3083278\n" "help.text" msgid "languages; selecting for text documents; languages characters; language selection character styles;language selection text; language selection paragraph styles; languages drawings; languages defaults;languages spellcheck; default languages spelling; default languages dictionaries, see also languages" -msgstr "" +msgstr "Sprachen; für Text auswählenDokumente; SprachenZeichen; SprachauswahlZeichenvorlagen; SprachauswahlTexte; SprachauswahlAbsatzvorlagen; SprachenZeichnungen; SprachenVorgaben; SprachenRechtschreibprüfung; StandardsprachenRechtschreibung; StandardsprachenWörterbücher, siehe auch Sprachen" #. AoAWf #: language_select.xhp @@ -15476,7 +15476,7 @@ "par_id3906979\n" "help.text" msgid "In %PRODUCTNAME, choose Tools - Extension Manager and click Add to install the downloaded extensions." -msgstr "Wählen Sie in %PRODUCTNAME Extras - Extension Manager... und klicken Sie auf Hinzufügen, um die heruntergeladene Erweiterung zu installieren." +msgstr "Wählen Sie in %PRODUCTNAME Extras - Extension-Manager… und klicken Sie auf Hinzufügen, um die heruntergeladene Erweiterung zu installieren." #. YSG3Q #: language_select.xhp @@ -16520,7 +16520,7 @@ "par_idN10826\n" "help.text" msgid "Working with databases in %PRODUCTNAME" -msgstr "" +msgstr "Mit Datenbanken in %PRODUCTNAME arbeiten" #. CGeKT #: main.xhp @@ -16556,7 +16556,7 @@ "par_id3154011\n" "help.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. CZZjV #: main.xhp @@ -16979,7 +16979,7 @@ "par_id3152962\n" "help.text" msgid "AutoCorrect" -msgstr "AutoKorrektur" +msgstr "AutoKorrektur" #. WFVDK #: microsoft_terms.xhp @@ -17015,7 +17015,7 @@ "par_id3150297\n" "help.text" msgid "Spelling" -msgstr "" +msgstr "Rechtschreibung" #. RdJY7 #: microsoft_terms.xhp @@ -17870,7 +17870,7 @@ "par_id3150486\n" "help.text" msgid "Choose File - Wizards - Document Converter to start the wizard." -msgstr "Wählen Sie Datei - Assistenten - Dokument-Konverter, um den Assistenten aufzurufen." +msgstr "Wählen Sie Datei – Assistenten – Dokumentkonverter…, um den Assistenten aufzurufen." #. V3ANF #: ms_user.xhp @@ -18284,7 +18284,7 @@ "hd_id131543693200115\n" "help.text" msgid "Encrypting Documents with OpenPGP" -msgstr "" +msgstr "Dokumente mit OpenPGP verschlüsseln" #. pDG6n #: openpgp.xhp @@ -19157,7 +19157,7 @@ "tit\n" "help.text" msgid "Printing in Black and White" -msgstr "Drucken in Schwarzweiß" +msgstr "Drucken in Schwarz-Weiß" #. FDei5 #: print_blackwhite.xhp @@ -19175,7 +19175,7 @@ "hd_id3150125\n" "help.text" msgid "Printing in Black and White" -msgstr "Drucken in Schwarzweiß" +msgstr "Drucken in Schwarz-Weiß" #. uAc5B #: print_blackwhite.xhp @@ -19184,7 +19184,7 @@ "hd_id3150499\n" "help.text" msgid "Printing Text and Images in Black and White" -msgstr "Text und Grafik schwarzweiß drucken" +msgstr "Text und Grafik schwarz-weiß drucken" #. JEFQG #: print_blackwhite.xhp @@ -19211,7 +19211,7 @@ "par_id3145313\n" "help.text" msgid "Select the option to print in black and white. For further information, refer to the user's manual of your printer." -msgstr "Wählen Sie die Option zum Drucken in Schwarzweiß. Weitere Informationen entnehmen Sie bitte der Bedienungsanleitung Ihres Druckers." +msgstr "Wählen Sie die Option zum Drucken in Schwarz-Weiß. Weitere Informationen entnehmen Sie bitte der Bedienungsanleitung Ihres Druckers." #. 3F6Cg #: print_blackwhite.xhp @@ -19229,7 +19229,7 @@ "par_id3156113\n" "help.text" msgid "The current document will be printed in black and white." -msgstr "Das aktuelle Dokument wird in schwarzweiß gedruckt." +msgstr "Das aktuelle Dokument wird in Schwarz-Weiß gedruckt." #. GZk5M #: print_blackwhite.xhp @@ -19238,7 +19238,7 @@ "hd_id3147653\n" "help.text" msgid "Printing in Black and White in %PRODUCTNAME Impress and %PRODUCTNAME Draw" -msgstr "In %PRODUCTNAME-Impress und %PRODUCTNAME-Draw schwarzweiß drucken" +msgstr "In %PRODUCTNAME-Impress und %PRODUCTNAME-Draw schwarz-weiß drucken" #. BHUpA #: print_blackwhite.xhp @@ -19265,7 +19265,7 @@ "par_id3147573\n" "help.text" msgid "Under Quality, select either Grayscale or Black & white and click OK." -msgstr "Wählen Sie im Bereich Ausgabequalität eine der Optionen Graustufen oder Schwarzweiß und klicken Sie auf OK." +msgstr "Wählen Sie im Bereich Ausgabequalität eine der Optionen Graustufen oder Schwarz-weiß und klicken Sie auf OK." #. kGhaY #: print_blackwhite.xhp @@ -19292,7 +19292,7 @@ "par_id3145610\n" "help.text" msgid "Black & white converts all colors into the two values black and white. All borders around objects are printed black. All text will be printed in black. A background set by Format - Page - Background will not be printed." -msgstr "Schwarzweiß konvertiert alle Farben in die beiden Werte Schwarz und Weiß. Alle Umrandungen werden schwarz gedruckt. Der gesamte Text wird schwarz gedruckt. Ein Hintergrund, der unter Format - Seite - Hintergrund eingestellt ist, wird nicht gedruckt." +msgstr "Schwarz-weiß konvertiert alle Farben in die beiden Werte Schwarz und Weiß. Alle Umrandungen werden schwarz gedruckt. Der gesamte Text wird schwarz gedruckt. Ein Hintergrund, der unter Format - Seite - Hintergrund eingestellt ist, wird nicht gedruckt." #. GeX3p #: print_blackwhite.xhp @@ -19301,7 +19301,7 @@ "hd_id3153896\n" "help.text" msgid "Printing Only Text in Black and White" -msgstr "Nur Text schwarzweiß drucken" +msgstr "Nur Text schwarz-weiß drucken" #. SLPHu #: print_blackwhite.xhp @@ -19310,7 +19310,7 @@ "par_id3147559\n" "help.text" msgid "In %PRODUCTNAME Writer you can choose to print color-formatted text in black and white. You can specify this either for all subsequent text documents to be printed, or only for the current printing process." -msgstr "In %PRODUCTNAME-Writer besteht auch die Möglichkeit, farbig formatierten Text schwarzweiß auszudrucken. Diese Option können Sie entweder für alle künftig zu druckenden Textdokumente oder ausschließlich für das aktuelle Dokument festlegen." +msgstr "In %PRODUCTNAME-Writer besteht auch die Möglichkeit, farbig formatierten Text schwarz-weiß auszudrucken. Diese Option können Sie entweder für alle künftig zu druckenden Textdokumente oder ausschließlich für das aktuelle Dokument festlegen." #. jkZek #: print_blackwhite.xhp @@ -19319,7 +19319,7 @@ "hd_id3150358\n" "help.text" msgid "Printing All Text Documents with Black and White Text" -msgstr "Alle Textdokumente in schwarzweißem Text drucken" +msgstr "Alle Textdokumente in schwarz-weißem Text drucken" #. uTVpV #: print_blackwhite.xhp @@ -19364,7 +19364,7 @@ "hd_id3148920\n" "help.text" msgid "Printing the Current Text Document with Black and White Text" -msgstr "Das aktuelle Textdokument in schwarzweißem Text drucken" +msgstr "Das aktuelle Textdokument in schwarz-weißem Text drucken" #. G4PGi #: print_blackwhite.xhp @@ -19877,7 +19877,7 @@ "hd_id701566317347416\n" "help.text" msgid "Error correction" -msgstr "" +msgstr "Fehlerkorrektur" #. VezeF #: qrcode.xhp @@ -19886,7 +19886,7 @@ "par_id281566317365617\n" "help.text" msgid "The error correction value for the QR Code that is to be created. The error correction of a QR code is a measure that helps a QR code to recover if it is damaged." -msgstr "" +msgstr "Der Fehlerkorrekturwert für den zu erstellenden QR-Code. Die Fehlerkorrektur eines QR-Codes ist eine Maßnahme, mit deren Hilfe ein QR-Code wiederhergestellt werden kann, wenn er beschädigt ist." #. iHFHY #: qrcode.xhp @@ -20759,7 +20759,7 @@ "par_id3153882\n" "help.text" msgid "There are two available commands to navigate changes in a Writer document:" -msgstr "Es gibt zwei verfügbare Befehle, um durch Änderungen in einem Writer Dokument zu navigieren:" +msgstr "Es gibt zwei verfügbare Befehle, um durch Änderungen in einem Writer-Dokument zu navigieren:" #. 7V3vB #: redlining_navigation.xhp @@ -21623,7 +21623,7 @@ "par_id3154749\n" "help.text" msgid "In order to enter dashes, you can find under Tools - AutoCorrect - AutoCorrect Options - Options the Replace dashes option. This option replaces one or two hyphens under certain conditions with an en-dash or an em-dash (see AutoCorrect Options)." -msgstr "Zum Einfügen von Gedankenstrichen steht Ihnen unter Extras - AutoKorrektur - AutoKorrektur-Optionen... - Register: Optionen die Option Gedankenstriche ersetzen zur Verfügung. Mithilfe dieser Option lassen sich ein oder zwei Minuszeichen unter bestimmten Bedingungen durch einen Halbgeviertstrich oder einen Geviertstrich ersetzen (siehe AutoKorrektur-Optionen)." +msgstr "Zum Einfügen von Gedankenstrichen steht Ihnen unter Extras - AutoKorrektur - AutoKorrektur-Optionen… - Register: Optionen die Option Gedankenstriche ersetzen zur Verfügung. Mithilfe dieser Option lassen sich ein oder zwei Minuszeichen unter bestimmten Bedingungen durch einen Halbgeviertstrich oder einen Geviertstrich ersetzen (siehe AutoKorrektur-Optionen…)." #. XBNDB #: space_hyphen.xhp @@ -21632,7 +21632,7 @@ "par_id3153561\n" "help.text" msgid "For additional replacements see the replacements table under Tools - AutoCorrect - AutoCorrect Options- Replace. Here you can, among other things, replace a shortcut automatically by a dash, even in another font." -msgstr "Für weitere Ersetzungen nutzen Sie die Ersetzungstabelle unter Extras - AutoKorrektur-Optionen... - Ersetzung. Hier können Sie unter anderem ein von Ihnen bestimmtes Kürzel bei der Eingabe automatisch durch einen beliebigen Gedankenstrich ersetzen lassen, sogar in einer anderen Schriftart." +msgstr "Für weitere Ersetzungen nutzen Sie die Ersetzungstabelle unter Extras - AutoKorrektur-Optionen… - Register: Ersetzungen. Hier können Sie unter anderem ein von Ihnen bestimmtes Kürzel bei der Eingabe automatisch durch einen beliebigen Gedankenstrich ersetzen lassen, sogar in einer anderen Schriftart." #. q9kTq #: space_hyphen.xhp @@ -21731,7 +21731,7 @@ "par_id3145649\n" "help.text" msgid "On the Device tab page, you can activate the special options for your printer. If your printer can only print in black and white, choose \"grayscale\" under Color, otherwise choose \"color\". If switching to grayscale leads to unfavorable results, you can also select \"color\" under Color and see how the printer or PostScript emulator applies it. Furthermore, on this tab page you can set the precision with which colors are described as well as the PostScript level." -msgstr "Im Register Gerät aktivieren Sie spezielle Optionen Ihres Druckers. Wenn Ihr Drucker nur schwarzweiß drucken kann, sollte unter Farbe \"Graustufen\" eingestellt werden, ansonsten \"Farbe\". Falls die Umsetzung auf Graustufen zu schlechten Ergebnissen führt, können Sie auch unter Farbe \"Farbe\" wählen und die Umsetzung dem Drucker oder dem PostScript-Emulator überlassen. Ferner können Sie in diesem Register die Genauigkeit, mit der Farben beschrieben werden sowie den PostScript Level einstellen." +msgstr "Im Register Gerät aktivieren Sie spezielle Optionen Ihres Druckers. Wenn Ihr Drucker nur schwarz-weiß drucken kann, sollte unter Farbe \"Graustufen\" eingestellt werden, ansonsten \"Farbe\". Falls die Umsetzung auf Graustufen zu schlechten Ergebnissen führt, können Sie auch unter Farbe \"Farbe\" wählen und die Umsetzung dem Drucker oder dem PostScript-Emulator überlassen. Ferner können Sie in diesem Register die Genauigkeit, mit der Farben beschrieben werden, sowie den PostScript-Level einstellen." #. XGTgK #: spadmin.xhp @@ -22694,7 +22694,7 @@ "par_id3147213\n" "help.text" msgid "Starts with an empty Writer document." -msgstr "Startet mit einem leeren Writer Dokument." +msgstr "Startet mit einem leeren Writer-Dokument." #. ucgzm #: start_parameters.xhp @@ -22703,7 +22703,7 @@ "par_id3145261\n" "help.text" msgid "Starts with an empty Calc document." -msgstr "Startet mit einem leeren Calc Dokument." +msgstr "Startet mit einem leeren Calc-Dokument." #. 9jSmQ #: start_parameters.xhp @@ -22712,7 +22712,7 @@ "par_id3154011\n" "help.text" msgid "Starts with an empty Draw document." -msgstr "Startet mit einem leeren Draw Dokument." +msgstr "Startet mit einem leeren Draw-Dokument." #. GRBED #: start_parameters.xhp @@ -22721,7 +22721,7 @@ "par_id3153222\n" "help.text" msgid "Starts with an empty Impress document." -msgstr "Startet mit einem leeren Impress Dokument." +msgstr "Startet mit einem leeren Impress-Dokument." #. caFeB #: start_parameters.xhp @@ -22739,7 +22739,7 @@ "par_id3151075\n" "help.text" msgid "Starts with an empty Writer master document." -msgstr "Startet mit einem leeren Writer Globaldokument." +msgstr "Startet mit einem leeren Writer-Globaldokument." #. uEgej #: start_parameters.xhp @@ -22766,7 +22766,7 @@ "par_id20161204125411030\n" "help.text" msgid "The arguments define how following filenames are treated. New treatment begins after the argument and ends at the next argument. The default treatment is to open documents for editing, and create new documents from document templates." -msgstr "Die Argumente geben an, wie die nachfolgend genannten Dateien behandelt werden. Jede Behandlung beginnt nach einem Argument und endet beim nächsten Argument. Die Standardbehandlung ist es, die Dokumente zum Bearbeiten zu öffnen und neue Dokumente aus Dokumentenvorlagen zu erstellen." +msgstr "Die Argumente geben an, wie die nachfolgend genannten Dateien behandelt werden. Jede Behandlung beginnt nach einem Argument und endet beim nächsten Argument. Die Standardbehandlung ist es, die Dokumente zum Bearbeiten zu öffnen und neue Dokumente aus Dokumentvorlagen zu erstellen." #. NoRni #: start_parameters.xhp @@ -22856,7 +22856,7 @@ "par_id3153838\n" "help.text" msgid "Opens and starts the following presentation documents of each immediately. Files are closed after the showing. Files other than Impress documents are opened in default mode , regardless of previous mode." -msgstr "Öffnet und startet die nachfolgend genannten Präsentationen sofort. Die Dateien werden nach der Vorführung geschlossen. Andere Dateien als Impress Dokumente werden im Standardmodus geöffnet, unabhängig vom vorhergehenden Modus." +msgstr "Öffnet und startet die nachfolgend genannten Präsentationen sofort. Die Dateien werden nach der Vorführung geschlossen. Andere Dateien als Impress-Dokumente werden im Standardmodus geöffnet, unabhängig vom vorhergehenden Modus." #. 7TVQD #: start_parameters.xhp @@ -23162,7 +23162,7 @@ "par_id0820200803105089\n" "help.text" msgid "Base Database opens %PRODUCTNAME Base" -msgstr "" +msgstr "Base-Datenbank öffnet %PRODUCTNAME Base" #. MvEcH #: startcenter.xhp @@ -23603,7 +23603,7 @@ "par_id041620170723504381\n" "help.text" msgid "If you have opened the %PRODUCTNAME start center and have not yet opened a document or application, the Template Manager may be accessed differently. Ctrl-Shift-N will still open the Template Manager, but it may also be accessed by choosing Templates from the left sidebar, and then choosing Manage Templates." -msgstr "" +msgstr "Wenn Sie das %PRODUCTNAME-Startcenter und noch kein Dokument oder keine Anwendung geöffnet haben, kann auf den Vorlagen-Manager anders zugegriffen werden. Strg+Umschalt+N öffnet weiterhin den Vorlagen-Manager. Sie können jedoch auch in der linken Seitenleiste »Dokumentvorlagen« und dann »Vorlagen verwalten…« wählen." #. oD5Ec #: template_manager.xhp @@ -24026,7 +24026,7 @@ "par_id041620170723513541\n" "help.text" msgid "Browse to the folder where you downloaded the template, select it and press Open" -msgstr "Öffnen Sie den Ordner, in den Sie die Dokumentvorlage heruntergeladen haben, wählen Sie diese aus und klicken Sie auf Öffnen" +msgstr "Öffnen Sie den Ordner, in dem Sie die Dokumentvorlage heruntergeladen haben, wählen Sie diese aus und klicken Sie auf Öffnen" #. Dvx8b #: template_manager.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/menu.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/menu.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/menu.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/menu.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-11-08 19:34+0100\n" -"PO-Revision-Date: 2020-03-08 23:15+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1464855090.000000\n" #. EEMss @@ -266,7 +266,7 @@ "par_id91566150694760\n" "help.text" msgid "Choose SlidePage - Set Background Image." -msgstr "Wählen Sie FolieFolie – Hintergundbild festlegen…." +msgstr "Wählen Sie FolieFolie – Hintergrundbild festlegen…." #. DU4B8 #: set_image_background.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1085,7 +1085,7 @@ "par_id6944182\n" "help.text" msgid "LibreOffice 7.0 supports the OpenDocument format (ODF) version 1.3. The prior versions of LibreOffice support the file format ODF 1.2. Prior file formats cannot store all new features of the new software." -msgstr "" +msgstr "LibreOffice 7.0 und höher unterstützen das OpenDocument-Format (ODF) Version 1.3. Die früheren Versionen von LibreOffice unterstützen das Dateiformat ODF 1.2. Frühere Dateiformate können nicht alle neuen Funktionen der neuen Software speichern." #. BZc73 #: 01010200.xhp @@ -1094,7 +1094,7 @@ "par_id6944181\n" "help.text" msgid "OpenOffice.org 3 and StarOffice 9 introduced new features which have to be saved using the OpenDocument format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software." -msgstr "" +msgstr "OpenOffice.org 3 und StarOffice 9 führten neue Funktionen ein, die mit dem OpenDocument-Format (ODF) Version 1.2 gespeichert werden müssen. Die früheren Versionen von OpenOffice.org 2 und StarOffice 8 unterstützen die Dateiformate ODF 1.0/1.1. Diese früheren Dateiformate können nicht alle neuen Funktionen der neuen Software speichern." #. BoRgh #: 01010200.xhp @@ -1103,7 +1103,7 @@ "par_id886257\n" "help.text" msgid "Current %PRODUCTNAME versions can open documents in ODF formats 1.0/1.1, 1.2, and 1.3." -msgstr "" +msgstr "Aktuelle %PRODUCTNAME-Versionen können Dokumente in den ODF-Formaten 1.0/1.1, 1.2 und 1.3 öffnen." #. PL8e4 #: 01010200.xhp @@ -1112,7 +1112,7 @@ "par_id8892483\n" "help.text" msgid "When you save a document, you can select whether to save the document in the format ODF 1.3, ODF 1.3 Extended, ODF 1.2, ODF 1.2 Extended, ODF 1.2 Extended (compatibility mode), or in the prior format ODF 1.0/1.1." -msgstr "" +msgstr "Wenn Sie ein Dokument speichern, können Sie auswählen, ob das Dokument im Format ODF 1.3, ODF 1.3 Extended, ODF 1.2, ODF 1.2 Extended, ODF 1.2 Extended (Kompatibilitätsmodus) oder im vorherigen Format ODF 1.0/1.1 gespeichert werden soll." #. hadyp #: 01010200.xhp @@ -1121,7 +1121,7 @@ "par_id0915200911205367\n" "help.text" msgid "Currently, the ODF 1.2 (Extended) or newer formats enable files of Draw and Impress to contain comments. Those comments can be inserted by Insert - Comment in the latest software version. The comments get lost when loading files into prior software versions that were saved by the latest software version." -msgstr "" +msgstr "Derzeit ermöglichen die Formate ODF 1.2 (Erweitert) oder neuer, dass Dateien von Draw und Impress Kommentare enthalten. Diese Kommentare können durch Einfügen – Kommentar in der neuesten Softwareversion eingefügt werden. Die Kommentare gehen verloren, wenn Dateien in frühere Softwareversionen geladen werden, die mit der neuesten Softwareversion gespeichert wurden." #. aLBQC #: 01010200.xhp @@ -1130,7 +1130,7 @@ "par_id7198400\n" "help.text" 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 "" +msgstr "Einige Unternehmen oder Organisationen benötigen möglicherweise ODF-Dokumente im Format ODF 1.0/1.1 oder ODF 1.2. Sie können dieses Format im Listenfeld zum Speichern auswählen. Diese älteren Formate können nicht alle neuen Funktionen speichern, daher wird nach Möglichkeit das neue Format ODF 1.3 (Erweitert) empfohlen." #. 9iBAX #: 01010200.xhp @@ -1139,7 +1139,7 @@ "par_id7198401\n" "help.text" msgid "The ODF 1.2 Extended (compatibility mode) is a more backward-compatible ODF 1.2 extended mode. It uses features that are deprecated in ODF 1.2 and/or it is 'bug-compatible' to older OpenOffice.org versions. It may be useful if you need to interchange ODF documents with users who use pre-ODF 1.2 or ODF 1.2-only legacy applications." -msgstr "" +msgstr "ODF 1.2 Extended (Kompatibilitätsmodus) ist ein abwärtskompatibler Modus für ODF 1.2 Extended. Es verwendet Funktionen, die in ODF 1.2 veraltet sind und/oder mit älteren OpenOffice.org-Versionen \"fehlerkompatibel\" sind. Dies kann hilfreich sein, wenn Sie ODF-Dokumente mit Benutzern austauschen müssen, die veraltete Anwendungen \"vor\" ODF 1.2 oder \"nur\" ODF 1.2 verwenden." #. iP4AE #: 01010200.xhp @@ -1661,7 +1661,7 @@ "bm_id7986388\n" "help.text" msgid "writing aids optionscustom dictionaries; editinguser-defined dictionaries; editingdictionaries; editing user-definedexceptions; user-defined dictionariesuser-defined dictionaries; dictionary of exceptionsspellcheck; dictionary of exceptionsignore list for spellcheckspellcheck; ignore listspelling; dictionary of exceptionsignore list for spellingspelling; ignore listhyphenation; minimal number of characters" -msgstr "" +msgstr "Optionen in der LinguistikBenutzerwörterbücher; bearbeitenBenutzerdefinierte Wörterbücher; bearbeitenWörterbücher; benutzerdefinierte Wörterbücher bearbeitenAusnahmen; BenutzerwörterbücherBenutzerwörterbücher; AusnahmewörterbuchRechtschreibprüfung; AusnahmewörterbuchIgnorieren-Liste für die RechtschreibprüfungRechtschreibprüfung; Ignorieren-ListeRechtschreibung; Ignorieren-ListeRechtschreibung; AusnahmewörterbuchIgnorieren-Liste für RechtschreibungSilbentrennung; Mindestwortlänge" #. BfSt6 #: 01010400.xhp @@ -1679,7 +1679,7 @@ "par_id3153527\n" "help.text" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "" +msgstr "Legt die Eigenschaften von Rechtschreibung, Thesaurus und Silbentrennung fest." #. u8YqG #: 01010400.xhp @@ -1706,7 +1706,7 @@ "par_id3153663\n" "help.text" msgid "A language module can contain one, two or three submodules: Spelling, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the Edit button to open the Edit Modules dialog." -msgstr "" +msgstr "Ein Sprachmodul kann ein, zwei oder drei Teilmodule enthalten: Rechtschreibung, Silbentrennung und Thesaurus. Jedes Teilmodul kann in einer oder mehreren Sprachen verfügbar sein. Wenn Sie vor den Namen des Moduls klicken, aktivieren Sie alle verfügbaren Teilmodule gleichzeitig. Wenn Sie eine gesetzte Markierung entfernen, deaktivieren Sie alle verfügbaren Teilmodule gleichzeitig. Wenn Sie einzelne Teilmodule aktivieren oder deaktivieren möchten, klicken Sie auf die Schaltfläche Bearbeiten…, um den Dialog Module bearbeiten zu öffnen." #. oeBAY #: 01010400.xhp @@ -1751,7 +1751,7 @@ "par_id3155419\n" "help.text" msgid "Lists the available user dictionaries. Mark the user dictionaries that you want to use for spelling and hyphenation." -msgstr "" +msgstr "Listet die verfügbaren Benutzerwörterbücher auf. Markieren Sie die Benutzerwörterbücher, die Sie für Rechtschreibung und Silbentrennung verwenden möchten." #. hFB5J #: 01010400.xhp @@ -1958,7 +1958,7 @@ "par_id3151253\n" "help.text" msgid "You can use a [] block instead of the = sign to specify character changes before the hyphenation break. Possible character changes: (1) Extra characters, for example tug[g]gumi results the correct hyphenation “tugg- gummi” of the Swedish word “tuggummi”. (2) Character removing specified by a digit, for example paral·[1]lel results correct hyphenation “paral- lel” of the Catalan word “paral·lel”, removing one character before the break point. (3) Both removed and extra characters, for example cafee[2é]tje results correct hyphenation “café- tje” of the Dutch word “cafeetje”, removing two characters before the break point, and adding an extra one." -msgstr "Sie können [] anstatt des Zeichens = zum Festlegen von Zeichenänderungen vor dem Trennzeichen festlegen. Mögliche Zeichenänderungen sind: (1) Einfügen eines zusätzlichen Zeichen; zum Beispiel ergibt tug[g]gumi die korrekte Silbentrennung „tugg- gummi“ des schwedischen Worts „tuggummi“. (2) Entfernen eines Zeichens (werden mit einem Punkt gekenzeichnet); zum Beispiel ergibt paral·[1]lel in der korrekten Silbentrennung „para- lel“ des katalanischen Worts „paral·lel“, also die Entfernung eines Zeichens vor dem Umbruch. (3) Ersetzen von Zeichen durch andere Zeichen; zum Beispiel ergibt cafee[2é]tje die korrekte Silbentrennung „café- tje“ des niederländischen Worts „cafeetje“, also die Ersetzung von zwei Zeichen vor dem Umruch und durch ein anderes Zeichen." +msgstr "Sie können [] anstatt des Zeichens = zum Festlegen von Zeichenänderungen vor dem Trennzeichen festlegen. Mögliche Zeichenänderungen sind: (1) Einfügen eines zusätzlichen Zeichen; zum Beispiel ergibt tug[g]gumi die korrekte Silbentrennung „tugg- gummi“ des schwedischen Worts „tuggummi“. (2) Entfernen eines Zeichens (werden mit einem Punkt gekennzeichnet); zum Beispiel ergibt paral·[1]lel in der korrekten Silbentrennung „para- lel“ des katalanischen Worts „paral·lel“, also die Entfernung eines Zeichens vor dem Umbruch. (3) Ersetzen von Zeichen durch andere Zeichen; zum Beispiel ergibt cafee[2é]tje die korrekte Silbentrennung „café- tje“ des niederländischen Worts „cafeetje“, also die Ersetzung von zwei Zeichen vor dem Umbruch und durch ein anderes Zeichen." #. P5pVw #: 01010400.xhp @@ -2138,7 +2138,7 @@ "par_id3153815\n" "help.text" msgid "To place the word pair in the AutoCorrect replacement table, open the AutoCorrect context menu and choose AutoCorrect. Make your selection from the submenu. The word is replaced and at the same time the word pair is placed in the replacement table." -msgstr "Um das Wortpaar in die Ersetzungstabelle der AutoKorrektur zu übernehmen, öffnen Sie das Kontextmenü der automatischen Korrektur und wählen Immer korrigieren in. Treffen Sie Ihre Auswahl im Untermenü. Das Wort wird ersetzt und gleichzeitig wird das Wortpaar in die Ersetzungstabelle übernommen." +msgstr "Um das Wortpaar in die Ersetzungstabelle der AutoKorrektur zu übernehmen, öffnen Sie das Kontextmenü der automatischen Korrektur und wählen Immer korrigieren in. Treffen Sie Ihre Auswahl im Untermenü. Das Wort wird ersetzt und gleichzeitig wird das Wortpaar in die Ersetzungstabelle übernommen." #. jX9FE #: 01010400.xhp @@ -2246,7 +2246,7 @@ "bm_id3154230\n" "help.text" msgid "spellcheck; activating for a languagespelling; activating for a languagehyphenation; activating for a languagethesaurus; activating for a languagelanguages; activating modulesdictionaries;creatinguser-defined dictionaries;creating" -msgstr "" +msgstr "Rechtschreibprüfung; aktivieren für eine SpracheRechtschreibung; aktivieren für eine SpracheSilbentrennung; aktivieren für eine SpracheThesaurus; aktivieren für eine SpracheSprachen; aktivieren der ModuleWörterbücher; erstellenBenutzerwörterbücher; erstellen" #. LFHnZ #: 01010401.xhp @@ -2417,7 +2417,7 @@ "bm_id3150771\n" "help.text" msgid "pick colorcolor selector" -msgstr "" +msgstr "Farbe wählenFarbauswahl" #. yHj82 #: 01010501.xhp @@ -2426,7 +2426,7 @@ "hd_id3153126\n" "help.text" msgid "Selecting a new color" -msgstr "" +msgstr "Eine neue Farbe auswählen" #. 2DKci #: 01010501.xhp @@ -2453,7 +2453,7 @@ "par_id3148944\n" "help.text" msgid "The Pick a Color dialog consists of four main areas." -msgstr "" +msgstr "Der Dialog »Farbe auswählen« besteht aus vier Hauptbereichen." #. JA9HB #: 01010501.xhp @@ -2552,7 +2552,7 @@ "par_id3153727\n" "help.text" 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 "" +msgstr "Legt die rote Komponente im vertikalen Farbregler fest sowie die grüne und blaue Komponente im zweidimensionalen Farbauswahlfeld. Zulässige Werte sind 0 bis 255." #. G5BRr #: 01010501.xhp @@ -2561,7 +2561,7 @@ "par_id3153726\n" "help.text" msgid "Set the Red color value directly. Allowed values are 0 to 255." -msgstr "Lässt Sie den Wert der roten Farbe direkt setzen. Erlaubt dien Werte zwischen 0 und 255." +msgstr "Lässt Sie den Wert der roten Farbe direkt setzen. Erlaubt sind Werte zwischen 0 und 255." #. AqzMN #: 01010501.xhp @@ -2579,7 +2579,7 @@ "par_id3153728\n" "help.text" 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 "" +msgstr "Legt die grüne Komponente im vertikalen Farbregler fest sowie die rote und blaue Komponente im zweidimensionalen Farbauswahlfeld. Zulässige Werte sind 0 bis 255." #. NauiA #: 01010501.xhp @@ -2588,7 +2588,7 @@ "par_id3149298\n" "help.text" msgid "Set the Green color value directly. Allowed values are 0 to 255." -msgstr "Lässt Sie den Wert der grünen Farbe direkt setzen. Erlaubt dien Werte zwischen 0 und 255." +msgstr "Lässt Sie den Wert der grünen Farbe direkt setzen. Erlaubt sind Werte zwischen 0 und 255." #. JjLaN #: 01010501.xhp @@ -2606,7 +2606,7 @@ "par_id3153729\n" "help.text" 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 "" +msgstr "Legt die blaue Komponente im vertikalen Farbregler fest sowie die grüne und rote Komponente im zweidimensionalen Farbauswahlfeld. Zulässige Werte sind 0 bis 255." #. EHQDG #: 01010501.xhp @@ -2615,7 +2615,7 @@ "par_id3148455\n" "help.text" msgid "Set the Blue color value directly. Allowed values are 0 to 255." -msgstr "Lässt Sie den Wert der blauen Farbe direkt setzen. Erlaubt dien Werte zwischen 0 und 255." +msgstr "Lässt Sie den Wert der blauen Farbe direkt setzen. Erlaubt sind Werte zwischen 0 und 255." #. QRGET #: 01010501.xhp @@ -2660,7 +2660,7 @@ "par_id3153730\n" "help.text" 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 "" +msgstr "Legt die Farbtonkomponente im vertikalen Farbregler fest sowie die Sättigungs- und Helligkeitskomponente im zweidimensionalen Farbauswahlfeld. Die Werte werden in Grad von 0 bis 359 angegeben." #. fGAJ5 #: 01010501.xhp @@ -2687,7 +2687,7 @@ "par_id3153731\n" "help.text" 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 "" +msgstr "Legt die Sättigungskomponente im vertikalen Farbregler fest sowie die Farbton- und Helligkeitskomponente im zweidimensionalen Farbauswahlfeld. Die Werte werden in Prozent (0 bis 100) angegeben." #. cuCGT #: 01010501.xhp @@ -2714,7 +2714,7 @@ "par_id3153732\n" "help.text" 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 "" +msgstr "Legt die Helligkeitskomponente im vertikalen Farbregler fest sowie die Farbton- und Sättigungskomponenten im zweidimensionalen Farbauswahlfeld. Die Werte werden in Prozent (0 bis 100) angegeben." #. uDLZu #: 01010501.xhp @@ -2966,7 +2966,7 @@ "hd_id111581845580821\n" "help.text" msgid "%PRODUCTNAME Quickstarter" -msgstr "" +msgstr "%PRODUCTNAME Schnellstarter" #. BrALY #: 01010600.xhp @@ -2975,7 +2975,7 @@ "hd_id731581845724606\n" "help.text" msgid "Load %PRODUCTNAME during system start-up" -msgstr "" +msgstr "Lädt %PRODUCTNAME während des Systemstarts" #. J7FUd #: 01010600.xhp @@ -2984,7 +2984,7 @@ "par_id971581845639198\n" "help.text" msgid "If enabled, loads %PRODUCTNAME into memory when the computer is booted, or when %PRODUCTNAME is restarted. When loaded, it reduces the time for opening %PRODUCTNAME. An icon is also added to the system tray. Right-click on the icon to show a menu for opening new or existing documents, and for stopping the quickstarter." -msgstr "" +msgstr "Wenn diese Option aktiviert ist, wird %PRODUCTNAME beim Starten des Computers oder beim Neustart von %PRODUCTNAME in den Speicher geladen. Nach dem Laden wird die Zeit zum Öffnen von %PRODUCTNAME verkürzt. Ein Symbol wird auch zur Taskleiste hinzugefügt. Klicken Sie mit der rechten Maustaste auf das Symbol, um ein Menü zum Öffnen neuer oder vorhandener Dokumente und zum Stoppen des Schnellstarters anzuzeigen." #. MGRtz #: 01010600.xhp @@ -2993,7 +2993,7 @@ "hd_id411581548563601\n" "help.text" msgid "%PRODUCTNAME File Associations" -msgstr "" +msgstr "%PRODUCTNAME Dateizuordnungen" #. sAAWp #: 01010600.xhp @@ -3002,7 +3002,7 @@ "hd_id81581845691263\n" "help.text" msgid "Windows Default Apps" -msgstr "" +msgstr "Windows-Standard-Apps" #. BnQGA #: 01010600.xhp @@ -3011,7 +3011,7 @@ "par_id481581548792359\n" "help.text" msgid "Call Windows file associations management. This button behaves according to Microsoft file association management policy, which is to open \"Default apps\" on Windows 7, 8, and 8.1; and to show a message telling user how to open that applet manually in Windows 10." -msgstr "" +msgstr "Rufen Sie die Verwaltung der Windows-Dateizuordnungen auf. Diese Schaltfläche verhält sich gemäß der Microsoft-Richtlinie zur Verwaltung von Dateizuordnungen, mit der \"Standard-Apps\" unter Windows 7, 8 und 8.1 geöffnet werden, und um eine Meldung anzuzeigen, die den Benutzer darüber informiert, wie das Applet in Windows 10 manuell geöffnet werden kann." #. 9MQ7V #: 01010700.xhp @@ -3452,7 +3452,7 @@ "par_id3155630\n" "help.text" msgid "Specifies view options." -msgstr "Legt die Ansichts-Optionen fest." +msgstr "Legt die Ansichtsoptionen fest." #. M4iFj #: 01010800.xhp @@ -4163,7 +4163,7 @@ "par_id3156382\n" "help.text" msgid "Specifies the maximum number of gradient stripes for printing." -msgstr "Hier legen Sie die maximale Anzahl an Farbverlaufssteifen fürs Drucken fest." +msgstr "Hier legen Sie die maximale Anzahl an Farbverlaufsstreifen fürs Drucken fest." #. r6pvq #: 01010900.xhp @@ -4406,7 +4406,7 @@ "hd_id3148672\n" "help.text" msgid "Custom Colors" -msgstr "" +msgstr "Benutzerdefinierte Farben" #. 7JQfD #: 01012000.xhp @@ -4424,7 +4424,7 @@ "par_id3150769\n" "help.text" msgid "To apply a color to a user interface element, ensure that the box in front of the name is checked. To hide a user interface element, clear the check box." -msgstr "" +msgstr "Um eine Farbe auf ein Element der Benutzeroberfläche anzuwenden, stellen Sie sicher, dass das Kontrollkästchen vor dem Namen aktiviert ist. Deaktivieren Sie das Kontrollkästchen, um ein Element der Benutzeroberfläche auszublenden." #. LRXwH #: 01012000.xhp @@ -4433,7 +4433,7 @@ "par_id3155430\n" "help.text" msgid "Some user interface elements cannot be hidden." -msgstr "" +msgstr "Einige Elemente der Benutzeroberfläche können nicht ausgeblendet werden." #. ebKkM #: 01012000.xhp @@ -4442,7 +4442,7 @@ "par_id3145365\n" "help.text" msgid "To enhance cursor visibility, set the application background color between 40% and 60% gray, it is automatically changed to 40% gray." -msgstr "" +msgstr "Um die Sichtbarkeit des Cursors zu verbessern, stellen Sie die Hintergrundfarbe der Anwendung zwischen 40 % und 60 % Grau ein. Sie wird automatisch in 40 % Grau geändert." #. 7xJHG #: 01012000.xhp @@ -5612,7 +5612,7 @@ "par_id3150792\n" "help.text" msgid "Specifies the settings for basic fonts for complex text layout languages if their support has been activated under %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Legt die Einstellungen zu Basisschriften für \"Complex Text Layout\"-Sprachen fest, wenn die Unterstützung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert wurde." +msgstr "Legt die Einstellungen zu Basisschriften für Sprachen mit komplexem Textlayout fest, wenn die Unterstützung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert wurde." #. DrtAF #: 01040200.xhp @@ -5630,7 +5630,7 @@ "bm_id3156346\n" "help.text" msgid "snap lines; showing when moving frames (Writer)scrollbars; horizontal and vertical (Writer)horizontal scrollbars (Writer)vertical scrollbars (Writer)smooth scrolling (Writer)displaying; pictures and objects (Writer)pictures; displaying in Writer (Writer)objects; displaying in text documentsdisplaying; tables (Writer)tables in text; displayinglimits of tables (Writer)borders;table boundaries (Writer)boundaries of tables (Writer)showing; drawings and controls (Writer)drawings; showing (Writer)controls; showing (Writer)displaying; comments in text documents" -msgstr "" +msgstr "Fanglinien; beim Bewegen von Rahmen anzeigen (Writer)Bildlaufleisten; horizontal und vertikal (Writer)Horizontale Bildlaufleisten (Writer)Vertikale Bildlaufleisten (Writer)Sanfter Bildlauf (Writer)Anzeigen; Bilder und Objekte (Writer)Bilder; anzeigen (Writer)Objekte; in Textdokumenten anzeigenAnzeigen; Tabellen (Writer)Tabellen im Text; anzeigenTabellenbegrenzungen (Writer)Rahmen; Tabellenbegrenzung (Writer)Tabellenbegrenzungen (Writer)Anzeigen; Zeichnungen und Steuerelemente (Writer)Zeichnungen; anzeigen (Writer)Steuerelemente; anzeigen (Writer)Anzeigen; Kommentare in Textdokumenten" #. Bc7jh #: 01040200.xhp @@ -5657,7 +5657,7 @@ "hd_id3145072\n" "help.text" msgid "Guides" -msgstr "" +msgstr "Hilfslinien" #. ye7LB #: 01040200.xhp @@ -5810,7 +5810,7 @@ "hd_id901581669796238\n" "help.text" msgid "Display fields" -msgstr "" +msgstr "Felder anzeigen" #. 7A8My #: 01040200.xhp @@ -5819,7 +5819,7 @@ "hd_id3149481\n" "help.text" msgid "Hidden text" -msgstr "" +msgstr "Verborgenen Text" #. 82k4a #: 01040200.xhp @@ -5828,7 +5828,7 @@ "par_id3149413\n" "help.text" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "" +msgstr "Zeigt Text an, der durch Feldbefehle für bedingten Text oder verborgenen Text verborgen wurde." #. zT6EU #: 01040200.xhp @@ -5837,7 +5837,7 @@ "hd_id3149300\n" "help.text" msgid "Hidden paragraphs" -msgstr "" +msgstr "Verborgene Absätze" #. nH86m #: 01040200.xhp @@ -5954,7 +5954,7 @@ "hd_id3149926\n" "help.text" msgid "Measurement unit" -msgstr "" +msgstr "Maßeinheit" #. ozjGx #: 01040200.xhp @@ -6008,7 +6008,7 @@ "par_id3152349\n" "help.text" msgid "You can also change the basic fonts for Asian and complex text layout languages if their support is enabled in %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages." -msgstr "Sie können die Grundschriften für asiatische und Complex Text Layout Sprachen ändern, wenn Sie die entsprechnde Unterstützung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert haben." +msgstr "Sie können die Grundschriften für asiatische Sprachen und Sprachen mit komplexem Textlayout ändern, wenn Sie die entsprechende Unterstützung unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen aktiviert haben." #. DeGFa #: 01040300.xhp @@ -7016,7 +7016,7 @@ "hd_id3144510\n" "help.text" msgid "Display formatting" -msgstr "" +msgstr "Formatierung anzeigen" #. 7EDoZ #: 01040600.xhp @@ -7142,7 +7142,7 @@ "par_idN108E5\n" "help.text" msgid "Hidden characters" -msgstr "" +msgstr "Verborgene Zeichen" #. F2h2C #: 01040600.xhp @@ -7160,7 +7160,7 @@ "hd_id901581666055387\n" "help.text" msgid "Bookmarks" -msgstr "" +msgstr "Lesezeichen" #. AhYjX #: 01040600.xhp @@ -7169,7 +7169,7 @@ "par_id241581666070616\n" "help.text" msgid "Specifies that bookmark indicators are shown. | indicates the position of a point bookmark. [ ] indicates the start and end of a bookmark on a text range." -msgstr "" +msgstr "Legt fest, dass Lesezeichenmarkierungen angezeigt werden. | zeigt die Position eines Lesezeichens an. [ ] zeigt den Anfang und das Ende eines Lesezeichens in einem Textbereich an." #. PoJmB #: 01040600.xhp @@ -7178,7 +7178,7 @@ "par_id931581667619159\n" "help.text" msgid "The following controls appear only for Writer documents, not for HTML documents." -msgstr "" +msgstr "Die folgenden Steuerelemente werden nur für Writer-Dokumente angezeigt, nicht für HTML-Dokumente." #. 7xFsw #: 01040600.xhp @@ -7187,7 +7187,7 @@ "hd_id3146134\n" "help.text" msgid "Protected Areas" -msgstr "" +msgstr "Geschützte Bereiche" #. UuMDa #: 01040600.xhp @@ -7196,7 +7196,7 @@ "hd_id131581667078614\n" "help.text" msgid "Enable cursor" -msgstr "" +msgstr "Cursor aktivieren" #. BHJaU #: 01040600.xhp @@ -7214,7 +7214,7 @@ "hd_id3156180\n" "help.text" msgid "Direct cursor" -msgstr "" +msgstr "Direkt-Cursor" #. FDnFU #: 01040600.xhp @@ -7250,7 +7250,7 @@ "hd_id3152962\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Einfügen" #. zCrNj #: 01040600.xhp @@ -7304,7 +7304,7 @@ "hd_id631581667209365\n" "help.text" msgid "Spaces" -msgstr "" +msgstr "Leerzeichen" #. EQ5VD #: 01040600.xhp @@ -7313,7 +7313,7 @@ "par_id441581667221797\n" "help.text" msgid "When the direct cursor is used, spaces are added in the new paragraph until the clicked position is reached." -msgstr "" +msgstr "Wenn der Direkt-Cursor verwendet wird, werden im neuen Absatz Leerzeichen hinzugefügt, bis die angeklickte Position erreicht ist." #. AKwn3 #: 01040600.xhp @@ -11453,7 +11453,7 @@ "par_id4155419\n" "help.text" msgid "In %PRODUCTNAME Calc function names can be localized. By default, the check box is off, which means the localized function names are used. Checking this check box will swap localized function names with the English ones. This change takes effect in all of the following areas: formula input and display, function wizard, and formula tips. You can of course uncheck it to go back to the localized function names." -msgstr "In %PRODUCTNAME Calc können Funktionsnamen übersetzt werden. Standardmäßig ist das Markierfeld dektiviert, sodass übersetzte Funktionsnamen verwendet werden. Wird das Markierfeld aktiviert, werden stattdessen die englischen Funktionsnamen verwendet. Diese Änderung betrifft folgende Bereiche: Eingabe und Anzeige von Formeln, den Funktions-Assistenten und Formeltipps. Wenn das Markierfeld wieder aktiviert wird, werden erneut übersetzte Funktionsnamen verwendet." +msgstr "In %PRODUCTNAME Calc können Funktionsnamen übersetzt werden. Standardmäßig ist das Markierfeld deaktiviert, sodass übersetzte Funktionsnamen verwendet werden. Wird das Markierfeld aktiviert, werden stattdessen die englischen Funktionsnamen verwendet. Diese Änderung betrifft folgende Bereiche: Eingabe und Anzeige von Formeln, den Funktionsassistenten und Formeltipps. Wenn das Markierfeld wieder deaktiviert wird, werden erneut übersetzte Funktionsnamen verwendet." #. DtrRf #: 01060900.xhp @@ -12326,7 +12326,7 @@ "hd_id3146975\n" "help.text" msgid "Black & white" -msgstr "Schwarzweiß" +msgstr "Schwarz-weiß" #. mQJPQ #: 01070400.xhp @@ -12335,7 +12335,7 @@ "par_id3159154\n" "help.text" msgid "Specifies that you want to print the document in black and white." -msgstr "Hier legen Sie fest, dass Sie das Dokument in schwarzweiß drucken möchten." +msgstr "Hier legen Sie fest, dass Sie das Dokument in Schwarz-Weiß drucken möchten." #. H4Cod #: 01070400.xhp @@ -13487,7 +13487,7 @@ "bm_id881592499093945\n" "help.text" msgid "Microsoft lock fileslock files;Microsoft Officelock files;%PRODUCTNAMEOLE objects;import and exportembedded objects;import and exportOLE objects;Microsoft OfficeOLE objects;PDFcharacter highlighting;Microsoft Office export" -msgstr "" +msgstr "Microsoft-SperrdateienSperrdateien; Microsoft OfficeSperrdateien; %PRODUCTNAMEOLE-Objekte; Import und ExportEingebettete Objekte; Import und ExportOLE-Objekte; Microsoft OfficeOLE-Objekte; PDFZeichenhervorhebung; Microsoft Office-Export" #. HgnAh #: 01130200.xhp @@ -13505,7 +13505,7 @@ "par_id3149095\n" "help.text" msgid "Specifies the settings for importing and exporting Microsoft Office and other documents." -msgstr "" +msgstr "Legt die Einstellungen für das Importieren und Exportieren von Microsoft Office und anderen Dokumenten fest." #. TamAv #: 01130200.xhp @@ -13523,7 +13523,7 @@ "par_id3159234\n" "help.text" msgid "The Embedded Objects section specifies how to import and export Microsoft Office or other OLE objects." -msgstr "" +msgstr "Im Abschnitt Eingebettete Objekte legen Sie fest, wie Microsoft Office- oder andere OLE-Objekte importiert und exportiert werden sollen." #. wE3wv #: 01130200.xhp @@ -13532,7 +13532,7 @@ "par_id3159233\n" "help.text" msgid "These settings are valid when no Microsoft or other OLE server exists (for example, in UNIX) or when there is no $[officename] OLE server ready for editing the OLE objects." -msgstr "" +msgstr "Diese Einstellungen sind gültig, wenn kein Microsoft- oder anderer OLE-Server vorhanden ist (beispielsweise unter UNIX) oder wenn kein $[officename]-OLE-Server zum Bearbeiten der OLE-Objekte bereit ist." #. 4EfQn #: 01130200.xhp @@ -13559,7 +13559,7 @@ "hd_id3146798\n" "help.text" msgid "[L] and [S] Columns" -msgstr "" +msgstr "Spalten [L] und [S]" #. bWxuu #: 01130200.xhp @@ -13568,7 +13568,7 @@ "par_id3150670\n" "help.text" msgid "The [L] and [S] checkbox displays the entries for the pair of OLE objects that can be converted when loading into $[officename] [L] and/or when saving into a Microsoft format [S]. " -msgstr "" +msgstr "Die Markierfelder [L] und [S] zeigen die Einträge für das Paar von OLE-Objekten an, die beim Laden in $[officename] [L] und/oder beim Speichern in ein Microsoft-Format [S] konvertiert werden können." #. 57kk4 #: 01130200.xhp @@ -13577,7 +13577,7 @@ "par_id3154286\n" "help.text" msgid "Mark the box in the [L] column in front of the entry if a Microsoft or other OLE object is to be converted into the specified $[officename] OLE object when a Microsoft or other document is loaded into $[officename]." -msgstr "" +msgstr "Markieren Sie das Feld in der Spalte [L] vor dem Eintrag, wenn ein Microsoft- oder ein anderes OLE-Objekt in das angegebene $[officename]-OLE-Objekt konvertiert werden soll, wenn ein Microsoft- oder anderes Dokument in $[officename] geladen wird." #. FZRFw #: 01130200.xhp @@ -13595,7 +13595,7 @@ "hd_id3146797\n" "help.text" msgid "Character Highlighting" -msgstr "" +msgstr "Zeichenhervorhebung" #. nJKA9 #: 01130200.xhp @@ -13613,7 +13613,7 @@ "hd_id551592495779229\n" "help.text" msgid "Lock files" -msgstr "" +msgstr "Sperrdateien" #. oBsu3 #: 01130200.xhp @@ -13622,7 +13622,7 @@ "par_id91592496281531\n" "help.text" msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file. Lock files signal to applications that a resource or file should not be used until the lock is released." -msgstr "" +msgstr "Aktivieren Sie dieses Kontrollkästchen, um zusätzlich zur eigenen %PRODUCTNAME-Sperrdatei eine Microsoft Office-Sperrdatei zu generieren. Sperrdateien signalisieren Anwendungen, dass eine Ressource oder Datei erst verwendet werden soll, wenn die Sperre aufgehoben wurde." #. F64qZ #: 01130200.xhp @@ -13631,7 +13631,7 @@ "par_id931592496307158\n" "help.text" msgid "%PRODUCTNAME can read lock files generated by Microsoft Office." -msgstr "" +msgstr "%PRODUCTNAME kann von Microsoft Office generierte Sperrdateien lesen." #. TGBzs #: 01140000.xhp @@ -13856,7 +13856,7 @@ "par_id3149763\n" "help.text" msgid "Specifies the languages for spelling, thesaurus and hyphenation." -msgstr "" +msgstr "Legt die Sprachen für Rechtschreibung, Thesaurus und Silbentrennung fest." #. CebA4 #: 01140000.xhp @@ -13919,7 +13919,7 @@ "par_id3156212\n" "help.text" msgid "Specifies the language for the complex text layout spellcheck." -msgstr "Legt die Sprache für die Complex Text Layout-Rechtschreibprüfung fest." +msgstr "Legt die Sprache für die Rechtschreibprüfung des komplexen Textlayouts fest." #. wtRSR #: 01140000.xhp @@ -14054,7 +14054,7 @@ "par_id3153665\n" "help.text" msgid "The Searching in Japanese and Asian Layout tab pages are only visible if the Asian language support option in the Languages tab page is activated and the Options dialog is re-opened. The Complex Text Layout tab page is only visible if the CTL support is enabled." -msgstr "Die Register Suchoptionen für Japanisch und Asiatisches Layout werden erst sichtbar, wenn Sie die Option Steuerelemente für ostasiatische Schreibweisen anzeigen im Register Sprachen aktivieren und den Dialog Optionen erneut öffnen. Das Register Complex Text Layout ist nur bei aktiviertem Steuerelemente für bidirektionales Schreiben anzeigen sichtbar." +msgstr "Die Register Suchoptionen für Japanisch und Asiatisches Layout werden erst sichtbar, wenn Sie die Option Steuerelemente für ostasiatische Schreibweisen anzeigen im Register Sprachen aktivieren und den Dialog Optionen erneut öffnen. Das Register Komplexes Textlayout ist nur bei aktiviertem Steuerelemente für bidirektionales Schreiben anzeigen sichtbar." #. sUiBd #: 01150100.xhp @@ -15314,7 +15314,7 @@ "par_id3067110\n" "help.text" msgid "Convert only if unambiguous: If the text represents a valid and unambiguous numeric value, convert it. Example: \"123.456\" will generate a #VALUE! error because the text contains a separator, while \"123456\" will not.
See for details." -msgstr "" +msgstr "Nur eindeutige umwandeln: Wenn der Text einen gültigen und eindeutigen numerischen Wert darstellt, wird dieser konvertiert. Beispiel: \"123,456\" generiert einen #VALUE!-Fehler, da der Text ein Trennzeichen enthält, während \"123456\" keines enthält.
Für mehr Details siehe ." #. Eo47W #: detailedcalculation.xhp @@ -15359,7 +15359,7 @@ "par_id402233\n" "help.text" msgid "Formula syntax to use when parsing references given in string parameters. This affects built-in functions such as INDIRECT that takes a reference as a string value." -msgstr "Formelsyntax für die Analye von Bezügen, die in Zeichenkettenparametern enthalten sind. Dies hat Auswirkungen auf eingebaute Funktionen wie INDIRECT, welche einen Bezug wie eine Zeichenkette behandeln." +msgstr "Formelsyntax für die Analyse von Bezügen, die in Zeichenkettenparametern enthalten sind. Dies hat Auswirkungen auf eingebaute Funktionen wie INDIRECT, welche einen Bezug wie eine Zeichenkette behandeln." #. rCAEG #: detailedcalculation.xhp @@ -15872,7 +15872,7 @@ "par_idN105AD\n" "help.text" msgid "Class Path" -msgstr "Class Path" +msgstr "Klassenpfad" #. S2Bhi #: java.xhp @@ -15881,7 +15881,7 @@ "par_idN10686\n" "help.text" msgid "Opens the Class Path dialog." -msgstr "Öffnet den Dialog Class Path." +msgstr "Öffnet den Dialog Klassenpfad." #. BDpS5 #: java.xhp @@ -15953,7 +15953,7 @@ "tit\n" "help.text" msgid "Class Path" -msgstr "Class Path" +msgstr "Klassenpfad" #. FAdA3 #: javaclasspath.xhp @@ -15962,7 +15962,7 @@ "par_idN10566\n" "help.text" msgid "Class Path" -msgstr "Class Path" +msgstr "Klassenpfad" #. 4aPLC #: javaclasspath.xhp @@ -15971,7 +15971,7 @@ "par_idN1056A\n" "help.text" msgid "You use this dialog to add folders and archives to the Java class path. These paths are valid for any JRE that you start." -msgstr "Mit diesem Dialog können Sie Ordner und Archive zum Java-Umgebungsungsvariable CLASSPATH hinzufügen. Diese Pfade gelten für alle Java-Laufzeitumgebungen, die Sie aufrufen." +msgstr "Mit diesem Dialog können Sie Ordner und Archive zur Java-Umgebungsvariable CLASSPATH hinzufügen. Diese Pfade gelten für alle Java-Laufzeitumgebungen, die Sie aufrufen." #. GDxbt #: javaclasspath.xhp @@ -16808,7 +16808,7 @@ "par_id4057130\n" "help.text" msgid "Online Update is a module that is installed by default. To exclude, choose \"Custom\" in the Setup when installing %PRODUCTNAME. Check your distribution package to see if it is possible to exclude installation of Online Update. " -msgstr "" +msgstr "Online Update ist ein Modul, das standardmäßig installiert ist. Um dies auszuschließen, wählen Sie bei der Installation von %PRODUCTNAME beim Setup \"Benutzerdefiniert\".Überprüfen Sie Ihr Distributionspaket, um festzustellen, ob die Installation von Online Update ausgeschlossen werden kann." #. aR687 #: online_update.xhp @@ -16817,7 +16817,7 @@ "hd_id671580577871833\n" "help.text" msgid "Online Update Options" -msgstr "" +msgstr "Online-Update-Optionen" #. Ts3hG #: online_update.xhp @@ -16844,7 +16844,7 @@ "par_id8994109\n" "help.text" msgid "When an update is available, an icon in the menu bar Update Icon displays some explaining text. Click the icon to proceed." -msgstr "" +msgstr "Wenn ein Update verfügbar ist, wird unterhalb der Menüleiste ein Symbol Symbol für Update und ein erklärender Text angezeigt. Klicken Sie auf das Symbol, um fortzufahren." #. qDUxL #: online_update.xhp @@ -16934,7 +16934,7 @@ "hd_id3051545\n" "help.text" msgid "Download Destination" -msgstr "" +msgstr "Herunterladen nach" #. mNiGF #: online_update.xhp @@ -16970,7 +16970,7 @@ "hd_id1418807\n" "help.text" msgid "Change" -msgstr "Ändern" +msgstr "Ändern…" #. kHNSV #: online_update.xhp @@ -16979,7 +16979,7 @@ "par_id0116200901063996\n" "help.text" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "Klicken Sie, um den Zielordner für heruntergeladene Dateien auszuwählen." #. nErT3 #: online_update.xhp @@ -16988,7 +16988,7 @@ "hd_id411580578548938\n" "help.text" msgid "User Agent" -msgstr "" +msgstr "User-Agent" #. BMLAF #: online_update.xhp @@ -16997,7 +16997,7 @@ "par_id331580578595346\n" "help.text" msgid "Enable the check to send information about your %PRODUCTNAME version, operating system and basic hardware. This information is used to optimize the download." -msgstr "" +msgstr "Aktivieren Sie die Prüfung, um Informationen zu Ihrer %PRODUCTNAME-Version, Ihrem Betriebssystem und Ihrer Basishardware zu senden. Diese Informationen werden verwendet, um den Download zu optimieren." #. AN7zk #: opencl.xhp @@ -17042,7 +17042,7 @@ "par_id8266853\n" "help.text" msgid "OpenCL™ is the first open, royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices. OpenCL (Open Computing Language) greatly improves speed and responsiveness for a wide spectrum of applications in numerous market categories from gaming and entertainment to scientific and medical software" -msgstr "OpenCL™ ist der erste offene, lizenzfreie Standard plattformübergreifender, paralleler Programmierung für moderne Prozessoren, wie sie in PCs, Servern, Hand- und eingebetteten Geräten vorhanden sind. OpenCL (Open Computing Language) verbessert die Geschwindigkeit und Reaktionsfähigkeit für eine Vielzahl von Anwendungen in zahlreichen Bereichen von der Spiele- und Unterhaltungs- bis hin zur Wissenschafts und Medizinsoftware" +msgstr "OpenCL™ ist der erste offene, lizenzfreie Standard plattformübergreifender, paralleler Programmierung für moderne Prozessoren, wie sie in PCs, Servern, Hand- und eingebetteten Geräten vorhanden sind. OpenCL (Open Computing Language) verbessert die Geschwindigkeit und Reaktionsfähigkeit für eine Vielzahl von Anwendungen in zahlreichen Bereichen von der Spiele- und Unterhaltungs- bis hin zur Wissenschafts- und Medizinsoftware" #. CAiPr #: opencl.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-16 15:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -374,7 +374,7 @@ "par_id5144510\n" "help.text" msgid "Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28." -msgstr "Zeigt das Dokument CREDITS.odt an, in dem die Personen aufgeführt sind, die an dem OpenOffice.org-Quelltext (deren Beiträge in LibreOffice imintegriert worden sind) oder an LibreOffice seit dem 28.09.2010 mitgearbeitet haben." +msgstr "Zeigt das Dokument CREDITS.odt an, in dem die Personen aufgeführt sind, die an dem OpenOffice.org-Quelltext (deren Beiträge in LibreOffice importiert wurden) oder an LibreOffice seit dem 28.09.2010 mitgearbeitet haben." #. F8BFu #: main0108.xhp @@ -1940,7 +1940,7 @@ "par_id9116183\n" "help.text" msgid "Before you can use a JDBC driver, you need to add its class path. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME." -msgstr "Bevor Sie einen JDBC-Treiber nutzen können, müssen Sie seinen Klassenpfad hinzufügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - %PRODUCTNAME - Erweitert und klicken Sie auf die Schaltfläche Class Path... . Nachdem Sie die Pfadinformation eingetragen haben, starten Sie %PRODUCTNAME neu." +msgstr "Bevor Sie einen JDBC-Treiber nutzen können, müssen Sie dessen Klassenpfad hinzufügen. Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen… - %PRODUCTNAME - Erweitert und klicken Sie auf die Schaltfläche Klassenpfad… . Nachdem Sie die Pfadinformation eingetragen haben, starten Sie %PRODUCTNAME neu." #. ApwuB #: main0650.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/00.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/00.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:43+0100\n" -"PO-Revision-Date: 2020-10-22 11:35+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557892670.000000\n" #. sqmGT @@ -347,7 +347,7 @@ "par_id3155255\n" "help.text" msgid "Choose View - Master Handout" -msgstr "Wählen Sie Ansicht - Handzettelmaster" +msgstr "Wählen Sie Ansicht - Masterhandzettel" #. jBGUy #: 00000403.xhp @@ -419,7 +419,7 @@ "par_idN10AF7\n" "help.text" msgid "Choose View - Master Slide " -msgstr "Wählen Sie Ansicht - Folienmaster" +msgstr "Wählen Sie Ansicht - Masterfolie" #. QetBX #: 00000403.xhp @@ -428,7 +428,7 @@ "par_idN10B19\n" "help.text" msgid "Choose View - Master Notes " -msgstr "Wählen Sie Ansicht - Notizenmaster" +msgstr "Wählen Sie Ansicht - Masternotiz" #. SL63x #: 00000403.xhp @@ -482,7 +482,7 @@ "par_id3153480\n" "help.text" msgid "Choose View - Master Slide " -msgstr "Wählen Sie Ansicht - Folienmaster" +msgstr "Wählen Sie Ansicht – Masterfolie" #. LG3aP #: 00000403.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1580,7 +1580,7 @@ "par_id9628894\n" "help.text" msgid "When enabled, the current slide shows the background of the master slide." -msgstr "Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild des Folienmasters an." +msgstr "Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild der Masterfolie an." #. EFGy7 #: 03080000.xhp @@ -1589,7 +1589,7 @@ "par_id7587206\n" "help.text" msgid "When enabled, the current slide shows the objects of the master slide." -msgstr "Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild des Folienmasters an." +msgstr "Wenn aktiviert, zeigt die aktuelle Folie das Hintergrundbild der Masterfolie an." #. z7z7h #: 03080000.xhp @@ -1598,7 +1598,7 @@ "par_id3257545\n" "help.text" msgid "Opens a file dialog to select a picture. The picture will be scaled and inserted on the background of the current master slide." -msgstr "Öffnet einen Dateidialog zum Auswählen eines Bildes. Das Bild wird skaliert und in den Hintergrund des aktuellen Folienmasters eingefügt." +msgstr "Öffnet einen Dateidialog zum Auswählen eines Bildes. Das Bild wird skaliert und in den Hintergrund der aktuellen Masterfolie eingefügt." #. RhRBB #: 03090000.xhp @@ -1886,7 +1886,7 @@ "tit\n" "help.text" msgid "Master Slide" -msgstr "Folienmaster" +msgstr "Masterfolie" #. bbaVv #: 03150100.xhp @@ -1895,7 +1895,7 @@ "bm_id3154013\n" "help.text" msgid "normal view; backgrounds backgrounds; normal view views;master slide view master slide view" -msgstr "Normalansicht; HintergründeHintergründe; NormalansichtAnsicht; FolienmasterFolienmaster" +msgstr "Normalansicht; HintergründeHintergründe; NormalansichtAnsicht; MasterfolieMasterfolie" #. D8RE5 #: 03150100.xhp @@ -1904,7 +1904,7 @@ "hd_id3154013\n" "help.text" msgid "Master Slide" -msgstr "Folienmaster" +msgstr "Masterfolie" #. yuN3X #: 03150100.xhp @@ -1913,7 +1913,7 @@ "par_id3151075\n" "help.text" msgid "Switches to master slide view, where you can add elements that you want to appear on all of the slides that use the same master slide." -msgstr "Wechselt in die Ansicht Folienmaster, in der Sie Elemente erstellen und bearbeiten können, welche auf allen Folien erscheinen, die denselben Folienmaster verwenden." +msgstr "Wechselt in die Ansicht Masterfolie, in der Sie Elemente erstellen und bearbeiten können, welche auf allen Folien erscheinen, die dieselbe Masterfolie verwenden." #. 9gFTW #: 03150100.xhp @@ -1922,7 +1922,7 @@ "par_id4941557\n" "help.text" msgid "Inserts a new master slide into the document. Double-click the new master slide on the Slides pane to apply it to all slides." -msgstr "Fügt einen neuen Folienmaster in das Dokument ein. Klicken Sie doppelt auf den neuen Folienmaster im Bereich Folien, um ihm auf alle Folien anzuwenden." +msgstr "Fügt eine neue Masterfolie in das Dokument ein. Klicken Sie doppelt auf die neue Masterfolie im Bereich Folien, um sie auf alle Folien anzuwenden." #. QwNyk #: 03150100.xhp @@ -1931,7 +1931,7 @@ "par_id9961851\n" "help.text" msgid "Select a master slide and click this icon to remove the master slide from the document." -msgstr "Wählen Sie einen Folienmaster aus und klicken Sie auf dieses Symbol, um den Folienmaster aus dem Dokument zu entfernen." +msgstr "Wählen Sie eine Masterfolie aus und klicken Sie auf dieses Symbol, um die Masterfolie aus dem Dokument zu entfernen." #. erQ56 #: 03150100.xhp @@ -1940,7 +1940,7 @@ "par_id4526200\n" "help.text" msgid "Select a master slide and click this icon to rename the master slide." -msgstr "Wählen Sie einen Folienmaster aus und klicken Sie auf dieses Symbol, um den Folienmaster umzubenennen." +msgstr "Wählen Sie eine Masterfolie aus und klicken Sie auf dieses Symbol, um die Masterfolie umzubenennen." #. rUYFb #: 03150100.xhp @@ -1949,7 +1949,7 @@ "par_id8036133\n" "help.text" msgid "Closes the master slide view." -msgstr "Schließt die Ansicht Folienmaster." +msgstr "Schließt die Ansicht Masterfolie." #. gEyC8 #: 03150300.xhp @@ -1958,7 +1958,7 @@ "tit\n" "help.text" msgid "Master Notes" -msgstr "Notizenmaster" +msgstr "Masternotizen" #. M5hFB #: 03150300.xhp @@ -1976,7 +1976,7 @@ "hd_id3153144\n" "help.text" msgid "Master Notes" -msgstr "Notizenmaster" +msgstr "Masternotizen" #. QUxqM #: 03150300.xhp @@ -1985,7 +1985,7 @@ "par_id3154491\n" "help.text" msgid "Displays the master notes, where you can set the default formatting for notes." -msgstr "Wechselt in den Notizenmaster, in dem Sie Formate für Notizen definieren können." +msgstr "Wechselt in die Masternotiz, in dem Sie Formate für Notizen definieren können." #. FjtAU #: 03151000.xhp @@ -2003,7 +2003,7 @@ "bm_id4083986\n" "help.text" msgid "headers and footers;master slides layouts master slides layouts with headers and footers" -msgstr "Kopf- und Fußzeilen; Folienmaster-LayoutsFolienmaster-Layouts mit Kopf- und Fußzeilen" +msgstr "Kopf- und Fußzeilen; MasterfolienlayoutsMasterfolienlayouts mit Kopf- und Fußzeilen" #. W4r4L #: 03151000.xhp @@ -2021,7 +2021,7 @@ "par_idN1057D\n" "help.text" msgid "Add header, footer, date, and slide number placeholders to the master slide." -msgstr "Fügt dem Folienmaster Platzhalter für Kopfzeile, Fußzeile, Datum und Foliennummer hinzu." +msgstr "Fügt der Masterfolie Platzhalter für Kopfzeile, Fußzeile, Datum und Foliennummer hinzu." #. 9sGbo #: 03151100.xhp @@ -2030,7 +2030,7 @@ "tit\n" "help.text" msgid "Master Slide Layout" -msgstr "Folienmaster-Layout" +msgstr "Masterfolienlayout" #. 9DE2m #: 03151100.xhp @@ -2039,7 +2039,7 @@ "par_idN10537\n" "help.text" msgid "Master Slide Layout" -msgstr "Folienmaster-Layout" +msgstr "Masterfolienlayout" #. BFiHw #: 03151100.xhp @@ -2048,7 +2048,7 @@ "par_idN1053B\n" "help.text" msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide." -msgstr "Fügt dem Folienmaster Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese." +msgstr "Fügt der Masterfolie Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese." #. hzr7L #: 03151100.xhp @@ -2075,7 +2075,7 @@ "par_idN1055A\n" "help.text" msgid "Adds a header placeholder to the master slide for notes." -msgstr "Fügt dem Notizenmaster einen Platzhalter für Kopfzeilen hinzu, um Notizen hinzuzufügen." +msgstr "Fügt der Masternotiz einen Platzhalter für Kopfzeilen hinzu, um Notizen hinzuzufügen." #. PmBBD #: 03151100.xhp @@ -2093,7 +2093,7 @@ "par_idN10575\n" "help.text" msgid "Adds a date/time placeholder to the master slide." -msgstr "Fügt dem Folienmaster einen Platzhalter für Datum und Uhrzeit hinzu." +msgstr "Fügt der Masterfolie einen Platzhalter für Datum und Uhrzeit hinzu." #. UTCgn #: 03151100.xhp @@ -2111,7 +2111,7 @@ "par_idN10590\n" "help.text" msgid "Adds a footer placeholder to the master slide." -msgstr "Fügt dem Folienmaster einen Platzhalter für eine Fußzeile hinzu." +msgstr "Fügt der Masterfolie einen Platzhalter für eine Fußzeile hinzu." #. BEzcG #: 03151100.xhp @@ -2138,7 +2138,7 @@ "tit\n" "help.text" msgid "Master Notes Layout" -msgstr "Folienmaster-Layout" +msgstr "Masterfolienlayout" #. CZPoq #: 03151200.xhp @@ -2147,7 +2147,7 @@ "par_idN10527\n" "help.text" msgid "Master Notes Layout" -msgstr "Notizenmaster-Layout" +msgstr "Masternotizlayout" #. 5xuE5 #: 03151200.xhp @@ -2156,7 +2156,7 @@ "par_idN1052B\n" "help.text" msgid "Add header, footer, date, and slide number to the master notes." -msgstr "Fügt dem Notizenmaster Platzhalter für Kopfzeile, Fußzeile, Datum und Seitennummer hinzu." +msgstr "Fügt der Masternotiz Platzhalter für Kopfzeile, Fußzeile, Datum und Seitennummer hinzu." #. 86iBU #: 03152000.xhp @@ -2192,7 +2192,7 @@ "par_idN1054E\n" "help.text" msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides." -msgstr "Fügt den Text in den Platzhaltern oben und unten auf den Folien und dem Folienmaster hinzu beziehungsweise ändert diesen." +msgstr "Fügt den Text in den Platzhaltern oben und unten auf den Folien und der Masterfolie hinzu beziehungsweise ändert diese." #. DZHmF #: 03152000.xhp @@ -2435,7 +2435,7 @@ "par_idN107DC\n" "help.text" msgid "Applies the settings to all the slides in your presentation, including the corresponding master slides." -msgstr "Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich dem entsprechenden Folienmaster." +msgstr "Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich der entsprechenden Masterfolie." #. wQmSk #: 03152000.xhp @@ -2489,7 +2489,7 @@ "par_id3151073\n" "help.text" msgid "Shows slides in color, grayscale, or black and white." -msgstr "Zeigt die Folien in Farbe, in Graustufen, in Schwarzweiß oder mit hohem Kontrast." +msgstr "Zeigt die Folien in Farbe, in Graustufen, in Schwarz-Weiß oder mit hohem Kontrast." #. FZMsi #: 03180000.xhp @@ -2534,7 +2534,7 @@ "hd_id3150342\n" "help.text" msgid "Black and White" -msgstr "Schwarzweiß" +msgstr "Schwarz-weiß" #. Ju3FF #: 03180000.xhp @@ -3893,7 +3893,7 @@ "tit\n" "help.text" msgid "Change Slide Master" -msgstr "Folienmaster ändern" +msgstr "Masterfolie ändern" #. Jg7LJ #: 05120000.xhp @@ -3902,7 +3902,7 @@ "hd_id3154253\n" "help.text" msgid "Change Slide Master" -msgstr "Folienmaster ändern" +msgstr "Masterfolie ändern" #. Bi55Y #: 05120000.xhp @@ -3983,7 +3983,7 @@ "par_id3156020\n" "help.text" msgid "Displays the Load Master Slide dialog, where you can select additional slide designs." -msgstr "Deigt den Dialog Folienmaster laden an, in dem Sie weitere Folienvorlagen auswählen können." +msgstr "Deigt den Dialog Masterfolie laden an, in dem Sie weitere Folienvorlagen auswählen können." #. sQnAB #: 05120100.xhp @@ -3992,7 +3992,7 @@ "tit\n" "help.text" msgid "Load Master Slide" -msgstr "Folienmaster laden" +msgstr "Masterfolie laden" #. cVSPz #: 05120100.xhp @@ -4001,7 +4001,7 @@ "hd_id3153728\n" "help.text" msgid "Load Master Slide" -msgstr "Folienmaster laden" +msgstr "Masterfolie laden" #. DB49E #: 05120100.xhp @@ -4028,7 +4028,7 @@ "hd_id3150327\n" "help.text" msgid "Categories" -msgstr "Bereiche" +msgstr "Kategorien" #. Qjzs5 #: 05120100.xhp @@ -4037,7 +4037,7 @@ "par_id3147338\n" "help.text" msgid "Displays the available slide design categories." -msgstr "Zeigt die vorhandenen Folienvorlagenbereiche." +msgstr "Zeigt die vorhandenen Folienvorlagenkategorien." #. SFJp7 #: 05120100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -5234,7 +5234,7 @@ "tit\n" "help.text" msgid "Black and White" -msgstr "Schwarzweiß" +msgstr "Schwarz-weiß" #. RtZw8 #: 11110000.xhp @@ -5243,7 +5243,7 @@ "bm_id3154011\n" "help.text" msgid "views; black and whiteblack and white view" -msgstr "Ansicht; SchwarzweißSchwarzweiß-Ansicht" +msgstr "Ansicht; Schwarz-weißSchwarz-Weiß-Ansicht" #. jMCGY #: 11110000.xhp @@ -5261,7 +5261,7 @@ "par_id3145251\n" "help.text" msgid "Shows your slides in black and white only." -msgstr "Zeigt Text in der Gliederungsansicht in Schwarzweiß oder in Farbe." +msgstr "Zeigt Text in der Gliederungsansicht in Schwarz-Weiß oder in Farbe." #. EbyNY #: 11110000.xhp @@ -5279,7 +5279,7 @@ "par_id3150345\n" "help.text" msgid "Black and White" -msgstr "Schwarzweiß" +msgstr "Schwarz-weiß" #. VKoAW #: 13010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-03-13 12:06+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1832,7 +1832,7 @@ "tit\n" "help.text" msgid "Presenter Console Keyboard Shortcuts" -msgstr "Presenter Console Tastenkombinationen" +msgstr "Presenter Console-Tastenkombinationen" #. 7nDJu #: presenter.xhp @@ -1841,7 +1841,7 @@ "bm_id0921200912285678\n" "help.text" msgid "Presenter Console shortcuts" -msgstr "Presenter Console Tastenkombinationen" +msgstr "Presenter Console-Tastenkombinationen" #. wYw58 #: presenter.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1364,7 +1364,7 @@ "par_id1356547\n" "help.text" msgid "Every slide is based on a master slide. The text, pictures, tables, fields or other objects that you place on the master slide are visible as a background on all slides that are based on that master slide." -msgstr "Jede Folie basiert auf einem Folienmaster. Der Text, die Bilder, Tabellen, Felder oder andere Objekte, die Sie auf dem Folienmaster platzieren, sind als Hintergrund auf allen Folien sichtbar, die auf diesem Folienmaster basieren." +msgstr "Jede Folie basiert auf einer Masterfolie. Der Text, die Bilder, Tabellen, Felder oder andere Objekte, die Sie auf der Masterfolie platzieren, sind als Hintergrund auf allen Folien sichtbar, die auf dieser Masterfolie basieren." #. sZgV6 #: footer.xhp @@ -1373,7 +1373,7 @@ "par_id704672\n" "help.text" msgid "Masters exist for slides, notes, and handouts." -msgstr "Master existieren für Folien, Notizen und Handouts." +msgstr "Master existieren für Folien, Notizen und Handzettel." #. D55w2 #: footer.xhp @@ -1382,7 +1382,7 @@ "par_id8403576\n" "help.text" msgid "To edit a master slide, choose View - Master Slide. Click the Close Master View icon on the Master View toolbar, or choose View - Normal, to leave the master slide." -msgstr "Um einen Folienmaster zu bearbeiten, wählen Sie Ansicht - Folienmaster. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie Ansicht - Normal, um den Folienmaster zu verlassen." +msgstr "Um eine Masterfolie zu bearbeiten, wählen Sie Ansicht - Masterfolie. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie Ansicht - Normal, um die Masterfolie zu verlassen." #. GPe9V #: footer.xhp @@ -1391,7 +1391,7 @@ "par_id5641651\n" "help.text" msgid "To edit a master notes, choose View - Master Notes. Click the Close Master View icon on the Master View toolbar, or choose View - Normal, to leave the master notes." -msgstr "Um einen Notizenmaster zu bearbeiten, wählen Sie Ansicht - Notizenmaster. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie Ansicht - Normal, um den Notizenmaster zu verlassen." +msgstr "Um eine Masternotiz zu bearbeiten, wählen Sie Ansicht - Masternotiz. Klicken Sie auf das Symbol Masteransicht schließen in der Symbolleiste Masteransicht oder wählen Sie Ansicht - Normal, um die Masternotiz zu verlassen." #. aGtFB #: footer.xhp @@ -1400,7 +1400,7 @@ "par_id1583300\n" "help.text" msgid "To edit a master handout, click the Handout tab above the slide. Click the Normal tab to leave the master handout." -msgstr "Um einen Handoutmaster zu bearbeiten, klicken Sie auf das Register Handout oberhalb der aktuellen Folie. Klicken Sie auf das Register Normal, um den Handoutmaster zu verlassen." +msgstr "Um einen Masterhandzettel zu bearbeiten, klicken Sie auf das Register Handzettel oberhalb der aktuellen Folie. Klicken Sie auf das Register Normal, um den Masterhandzettel zu verlassen." #. KqnDQ #: footer.xhp @@ -1436,7 +1436,7 @@ "par_id7549668\n" "help.text" msgid "A predefined Header Area is available only for notes and handouts. If you want a header on all slides, you can move the Footer Area on the master slide to the top." -msgstr "Ein vordefinierter Kopfzeilenbereich ist nur für Notizen und Handouts verfügbar. Um auf allen Folien eine Kopfzeile zu erhalten, können Sie den Fußzeilenbereich zur Oberseite des Folienmasters verschieben." +msgstr "Ein vordefinierter Kopfzeilenbereich ist nur für Notizen und Handzettel verfügbar. Um auf allen Folien eine Kopfzeile zu erhalten, können Sie den Fußzeilenbereich zur Oberseite der Masterfolie verschieben." #. VCDtb #: footer.xhp @@ -1445,7 +1445,7 @@ "par_id1829889\n" "help.text" msgid "Objects that you insert on a master slide are visible on all slides that are based on that master slide." -msgstr "Objekte, die Sie auf einen Folienmaster einfügen, sind auf allen Folien sichtbar, die auf diesem Folienmaster basieren." +msgstr "Objekte, die Sie auf einer Masterfolie einfügen, sind auf allen Folien sichtbar, die auf dieser Masterfolie basieren." #. Avxqn #: footer.xhp @@ -1463,7 +1463,7 @@ "par_id1876583\n" "help.text" msgid "You see a dialog with two tab pages: Slides and Notes and Handouts where you can enter contents to the predefined areas." -msgstr "Sie sehen einen Dialog mit zwei Registern: Folie und Notizblätter und Handzettel, in denen Sie Inhalte zu den vordefinierten Bereichen hinzufügen können." +msgstr "Sie sehen einen Dialog mit zwei Registern: Folie sowie Notizblätter und Handzettel, in denen Sie Inhalte zu den vordefinierten Bereichen hinzufügen können." #. Rw82K #: footer.xhp @@ -1508,7 +1508,7 @@ "par_id1956236\n" "help.text" msgid "If you want to change the position and formatting of the master objects, choose View - Master." -msgstr "Um die Position und Formatierung der Masterobjekte zu ändern, wählen Sie Ansicht - Folienmaster." +msgstr "Um die Position und Formatierung der Masterobjekte zu ändern, wählen Sie Ansicht – Masterfolie." #. M7H3u #: footer.xhp @@ -1517,7 +1517,7 @@ "par_id5259559\n" "help.text" msgid "You see the master slide with areas near the bottom. You can move the areas , and you can select the fields and apply some formatting. You can also enter some text here which will be shown next to the fields." -msgstr "Sie sehen den Folienmaster mit Bereichen nahe des unteren Endes. Sie können die Bereiche verschieben und Sie können die Felder auswählen und einige Formatierungen darauf anwenden. Sie können hier auch Text eingeben, welcher nahe der Felder angezeigt werden wird." +msgstr "Sie sehen die Masterfolie mit Bereichen nahe des unteren Endes. Sie können die Bereiche verschieben und Sie können die Felder auswählen und einige Formatierungen darauf anwenden. Sie können hier auch Text eingeben, welcher nahe der Felder angezeigt werden wird." #. 4rmFa #: footer.xhp @@ -1553,7 +1553,7 @@ "par_id3155064\n" "help.text" msgid "You can add a text object anywhere on the master slide." -msgstr "Sie haben die Möglichkeit, Textobjekte überall auf dem Folienmaster einzufügen." +msgstr "Sie haben die Möglichkeit, Textobjekte überall auf der Masterfolie einzufügen." #. DWS8F #: footer.xhp @@ -1562,7 +1562,7 @@ "par_id3148866\n" "help.text" msgid "Choose View - Master Slide." -msgstr "Wählen Sie Ansicht - Folienmaster." +msgstr "Wählen Sie Ansicht - Masterfolie." #. ABnCF #: footer.xhp @@ -1580,7 +1580,7 @@ "par_id3149947\n" "help.text" msgid "Drag in the master slide to draw a text object, and then type or paste your text." -msgstr "Ziehen Sie im Folienmaster ein Textobjekt auf, dann geben Sie Text ein oder fügen Sie ihn aus der Zwischenablage ein." +msgstr "Ziehen Sie in der Masterfolie ein Textobjekt auf, dann geben Sie Text ein oder fügen Sie ihn aus der Zwischenablage ein." #. b5czM #: footer.xhp @@ -3848,7 +3848,7 @@ "par_idN106FA\n" "help.text" msgid "Left-click to apply the master slide to all slides. Right-click for a context menu." -msgstr "Klicken Sie mit der linken Maustaste, um den Folienmaster auf alle Folien anzuwenden. Klicken Sie mit der rechten Maustaste, um ein Kontextmenü aufzurufen." +msgstr "Klicken Sie mit der linken Maustaste, um die Masterfolie auf alle Folien anzuwenden. Klicken Sie mit der rechten Maustaste, um ein Kontextmenü aufzurufen." #. ngDy7 #: masterpage.xhp @@ -3857,7 +3857,7 @@ "par_idN10747\n" "help.text" msgid "Applies the master slide to all slides." -msgstr "Wendet den Folienmaster auf alle Folien an." +msgstr "Wendet die Masterfolie auf alle Folien an." #. sCVSn #: masterpage.xhp @@ -3866,7 +3866,7 @@ "par_idN10762\n" "help.text" msgid "Applies the master slide or the slide design to the selected slides." -msgstr "Wendet den Folienmaster oder die Folienvorlage auf die ausgewählten Folien an." +msgstr "Wendet die Masterfolie oder die Folienvorlage auf die ausgewählten Folien an." #. yYGFf #: masterpage.xhp @@ -3875,7 +3875,7 @@ "par_idN10785\n" "help.text" msgid "Resizes the preview of the master slides." -msgstr "Verändert die Größe der Vorschau des Folienmasters." +msgstr "Verändert die Größe der Vorschau der Masterfolie." #. YyBf8 #: masterpage.xhp @@ -4757,7 +4757,7 @@ "par_id190820172252291668\n" "help.text" msgid "The Presenter Console provides extra control over slide shows by using different views on your computer display and on the display seen by the audience. The view you see on your computer display includes the current slide, the upcoming slide, optionally the slide notes, and a presentation timer." -msgstr "Die Presenter Comsole stellt eine zusätzliche Kontrolle für die Präsentation zur Verfügung, indem verschiedene Ansichten auf dem Computerbildschirm und dem vorführenden Bildschirm dargestellt werden. Die Ansicht am Computerbildschirm zeigt die aktuelle und die folgende Folie sowie optional die Foliennotizen und eine Stoppuhr." +msgstr "Die Presenter Console stellt eine zusätzliche Kontrolle für die Präsentation zur Verfügung, indem verschiedene Ansichten auf dem Computerbildschirm und dem vorführenden Bildschirm dargestellt werden. Die Ansicht am Computerbildschirm zeigt die aktuelle und die folgende Folie sowie optional die Foliennotizen und eine Stoppuhr." #. wz2dB #: presenter_console.xhp @@ -4919,7 +4919,7 @@ "hd_id281512836182615\n" "help.text" msgid "Presenter Console Keyboard Shortcuts" -msgstr "Presenter Console Tastenkombinationen" +msgstr "Presenter Console-Tastenkombinationen" #. a38t5 #: presenter_console.xhp @@ -4928,7 +4928,7 @@ "hd_id791512827206666\n" "help.text" msgid "Presenter Console modes" -msgstr "Presenter Console Modi" +msgstr "Presenter Console-Modi" #. yVhhn #: presenter_console.xhp @@ -5234,7 +5234,7 @@ "par_id6744285\n" "help.text" msgid "Click the Handout tab." -msgstr "Klicken Sie auf das Register \"Handout\"." +msgstr "Klicken Sie auf das Register \"Handzettel\"." #. UQvRq #: printing.xhp @@ -5261,7 +5261,7 @@ "par_id5703909\n" "help.text" msgid "You see four areas on this dialog with check boxes for Header, Date and time, Footer, and Page number. These four areas correspond to the four areas in the corners of the master handout view." -msgstr "Auf diesem Register befinden sich vier Bereiche mit Markierfeldern für \"Kopfzeile\", \"Datum und Uhrzeit\", \"Fußzeile\" und \"Seitenzahl\". Diese vier Bereiche entsprechen den vier Bereichen in den Ecken der Ansicht Handzettelmaster." +msgstr "Auf diesem Register befinden sich vier Bereiche mit Markierfeldern für \"Kopfzeile\", \"Datum und Uhrzeit\", \"Fußzeile\" und \"Seitenzahl\". Diese vier Bereiche entsprechen den vier Bereichen in den Ecken der Ansicht Masterhandzettel." #. VaD3B #: printing.xhp @@ -5288,7 +5288,7 @@ "par_id863063\n" "help.text" msgid "The fields in the master handout view on screen are not updated, but the text that you entered will be printed." -msgstr "Die Felder in der Ansicht Handzettelmaster auf dem Bildschirm werden nicht aktualisiert, aber der von Ihnen eingegebene Text wird gedruckt." +msgstr "Die Felder in der Ansicht Masterhandzettel auf dem Bildschirm werden nicht aktualisiert, aber der von Ihnen eingegebene Text wird gedruckt." #. YHUmc #: printing.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/simpress.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/simpress.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -140,7 +140,7 @@ "hd_id110120150549176280\n" "help.text" msgid "Handout" -msgstr "Handzettelmaster" +msgstr "Handzettel" #. wa6UF #: main0103.xhp @@ -185,7 +185,7 @@ "par_id102720150112257941\n" "help.text" msgid "Toggle the visibility of a master slide's background to be used as the background of the current slide." -msgstr "Schaltet die Sichtbarkeit eines Hintergrundbildes eines Folienmasters, die als Hintergrund der aktuellen Folie benutzt wird, um." +msgstr "Schaltet die Sichtbarkeit eines Hintergrundbildes einer Masterfolie, die als Hintergrund der aktuellen Folie benutzt wird, um." #. zrUk5 #: main0103.xhp @@ -203,7 +203,7 @@ "par_id102720150112256473\n" "help.text" msgid "Toggle the visibility of a master slide's objects to appear on the current slide." -msgstr "Schaltet die Sichtbarkeit von Objekten eines Folienmasters, die auf der aktuellen Folie erscheinen, um." +msgstr "Schaltet die Sichtbarkeit von Objekten einer Masterfolie, die auf der aktuellen Folie erscheinen, um." #. cizmi #: main0103.xhp @@ -914,7 +914,7 @@ "par_id3148699\n" "help.text" msgid "To select an object that is behind another object, hold OptionAlt, and then click the object. To select the next underlying object in the stacking, hold OptionAlt, and then click again. To return the selection to the previously selected object, hold down Shift + OptionAlt, and then click." -msgstr "Um ein Objekt auszuwählen, das sich hinter einem anderen Objekt befindet, halten Sie die Taste OptionAlt gedrückt und klicken dann auf das Objekt. Das in der Stapelreihenfolge nächsttiefere Objekt wählen Sie aus, indem Sie OptionAlt gedrückt halten und erneut klicken. Zu dem zuvor ausgewählten Objekt kehren Sie zurück, wenn Sie Umschaltt+OptionAlt gedrückt halten und dann klicken." +msgstr "Um ein Objekt auszuwählen, das sich hinter einem anderen Objekt befindet, halten Sie die Taste OptionAlt gedrückt und klicken dann auf das Objekt. Das in der Stapelreihenfolge nächsttiefere Objekt wählen Sie aus, indem Sie OptionAlt gedrückt halten und erneut klicken. Zu dem zuvor ausgewählten Objekt kehren Sie zurück, wenn Sie Umschalt+OptionAlt gedrückt halten und dann klicken." #. 4aToU #: main0210.xhp @@ -950,7 +950,7 @@ "par_idN106C0\n" "help.text" msgid "Draws a filled rectangle where you drag in the current document. Click where you want to place a corner of the rectangle, and drag to the size you want. To draw a square, hold down Shift while you drag." -msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dorthin, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." +msgstr "Zeichnet an der Stelle, an der Sie im aktuellen Dokument ziehen, ein gefülltes Rechteck. Klicken Sie dort, wo eine Ecke des Rechtecks platziert werden soll, und ziehen Sie es bei gedrückter linker Maustaste auf die gewünschte Größe auf. Um ein Quadrat zu zeichnen, halten Sie beim Ziehen die Umschalttaste gedrückt." #. 8q8av #: main0210.xhp @@ -1724,7 +1724,7 @@ "hd_id3153248\n" "help.text" msgid "AutoCorrect Options" -msgstr "AutoKorrektur-Optionen..." +msgstr "AutoKorrektur-Optionen…" #. b8grv #: main_tools.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/smath/00.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/smath/00.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/smath/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/smath/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-05-25 18:07+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1552452987.000000\n" #. E9tti @@ -104,7 +104,7 @@ "par_id3148870\n" "help.text" msgid "Shift+F3" -msgstr "Umschalttaste+F3" +msgstr "Umschalt+F3" #. A2tmE #: 00000004.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -383,7 +383,7 @@ "bm_id3155963\n" "help.text" msgid "selection options in formulasformulas; selectionselements;in Math" -msgstr "" +msgstr "Auswahloptionen in FormelnFormeln; AuswahlElemente; in Math" #. yUSBK #: 03090000.xhp @@ -3857,7 +3857,7 @@ "par_id3145802\n" "help.text" msgid "You can choose from various attributes for %PRODUCTNAME Math formulas. Some attributes are displayed in the lower part of the Elements pane. These attributes are also listed in the context menu of the Commands window. All attributes not contained in the Elements pane or in the context menu must be typed manually in the Commands window." -msgstr "" +msgstr "Sie können in %PRODUCTNAME Math aus verschiedenen Attributen für Formeln auswählen. Einige Attribute werden im unteren Teil der Seitenleiste angezeigt. Diese Attribute sind auch im Kontextmenü des Fensters Befehle aufgelistet. Alle Attribute, die nicht in der \"Seitenleiste\" oder im Kontextmenü enthalten sind, müssen manuell in das Fenster Befehle eingegeben werden." #. LGFaf #: 03090600.xhp @@ -4577,7 +4577,7 @@ "par_id3146071\n" "help.text" msgid "The nbold and nitalic commands remove the bold or italic default fonts of formula components. For example, remove italics from the x in the formula 5 x + 3=28 by typing nitalic before the x as in 5 nitalic x + 3=28." -msgstr "Um programmmäßig fett oder kursiv formatierten Formelbestandteilen diese Attribute zu nehmen, können Sie die Befehle nbold und nitalic nutzen. Soll beispielsweise das x in der Formel 5 x + 3=28 nicht mehr kursiv sein, muss vor x nitalic gesetzt werden, das heißt, Sie müssen dann 5 nitalic x + 3=28 eingeben." +msgstr "Um programmmäßig fett oder kursiv formatierten Formelbestandteilen diese Attribute zu nehmen, können Sie die Befehle nbold und nitalic nutzen. Soll beispielsweise das x in der Formel 5 x + 3 = 28 nicht mehr kursiv sein, muss vor x nitalic gesetzt werden, das heißt, Sie müssen dann 5 nitalic x + 3 = 28 eingeben." #. sRp2Q #: 03090600.xhp @@ -6998,7 +6998,7 @@ "par_id3156276\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Subtraktion" #. xVtpD #: 03091501.xhp @@ -7016,7 +7016,7 @@ "par_id3163824\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Vorzeichen (Minus)" #. zm8mC #: 03091501.xhp @@ -7034,7 +7034,7 @@ "par_id3147514\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Vorzeichen (Minus/Plus)" #. d8Bed #: 03091501.xhp @@ -7052,7 +7052,7 @@ "par_id3154821\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Division (Geteiltstrich)" #. xBiRw #: 03091501.xhp @@ -7070,7 +7070,7 @@ "par_id3155179\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Multiplikation (Stern)" #. mcf5B #: 03091501.xhp @@ -7088,7 +7088,7 @@ "par_id3150832\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Addition" #. akctZ #: 03091501.xhp @@ -7106,7 +7106,7 @@ "par_id3145590\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Vorzeichen (Plus)" #. 3RD4E #: 03091501.xhp @@ -7124,7 +7124,7 @@ "par_id3150764\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Vorzeichen (Plus/Minus)" #. QGgTn #: 03091501.xhp @@ -7142,7 +7142,7 @@ "par_idN10A6B\n" "help.text" msgid "and or &" -msgstr "" +msgstr "and oder &" #. 63ybQ #: 03091501.xhp @@ -7151,7 +7151,7 @@ "par_id3146336\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für logisches UND" #. CQAn6 #: 03091501.xhp @@ -7169,7 +7169,7 @@ "par_id3903317\n" "help.text" msgid "No symbol." -msgstr "" +msgstr "Kein Symbol" #. psyQg #: 03091501.xhp @@ -7187,7 +7187,7 @@ "par_id8633686\n" "help.text" msgid "Usage a boper %SYM1 b" -msgstr "" +msgstr "Verwendung: a boper %SYM1 b" #. QnWMJ #: 03091501.xhp @@ -7196,7 +7196,7 @@ "par_id1713309\n" "help.text" msgid "No symbol" -msgstr "" +msgstr "Kein Symbol" #. z75ev #: 03091501.xhp @@ -7214,7 +7214,7 @@ "par_id4594256\n" "help.text" msgid "Usage: uoper %SYM2 b" -msgstr "" +msgstr "Verwendung: uoper %SYM2 b" #. RNbM5 #: 03091501.xhp @@ -7223,7 +7223,7 @@ "par_id3147212\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Multiplikation (Malpunkt)" #. 35CPM #: 03091501.xhp @@ -7241,7 +7241,7 @@ "par_id3151130\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Verkettung (Kreis)" #. bpEo6 #: 03091501.xhp @@ -7259,7 +7259,7 @@ "par_id3147470\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Division (Geteiltzeichen)" #. XUDiv #: 03091501.xhp @@ -7277,7 +7277,7 @@ "par_id3151319\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für logisches NICHT" #. xFRty #: 03091501.xhp @@ -7367,7 +7367,7 @@ "par_idN10AB0\n" "help.text" msgid "or or |" -msgstr "" +msgstr "or oder |" #. gnH4b #: 03091501.xhp @@ -7376,7 +7376,7 @@ "par_id3147065\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für logisches ODER" #. nLgpA #: 03091501.xhp @@ -7412,7 +7412,7 @@ "par_id3148873\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Division (Bruch)" #. MBV9p #: 03091501.xhp @@ -7430,7 +7430,7 @@ "par_id3147073\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Multiplikation (Kreuz)" #. VE3wD #: 03091501.xhp @@ -7538,7 +7538,7 @@ "par_idN10E08\n" "help.text" msgid "< or lt" -msgstr "" +msgstr "< oder lt" #. XEZdc #: 03091502.xhp @@ -7547,7 +7547,7 @@ "par_id3156247\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für kleiner" #. sxCGL #: 03091502.xhp @@ -7565,7 +7565,7 @@ "par_id9464726\n" "help.text" msgid "<< or ll" -msgstr "" +msgstr "<< oder ll" #. AGcXA #: 03091502.xhp @@ -7583,7 +7583,7 @@ "par_idN11059\n" "help.text" msgid "<= or le" -msgstr "" +msgstr "<= oder le" #. DATT6 #: 03091502.xhp @@ -7592,7 +7592,7 @@ "par_id3153031\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für kleiner oder gleich" #. zuQPg #: 03091502.xhp @@ -7610,7 +7610,7 @@ "par_idN10D00\n" "help.text" msgid "<> or neq" -msgstr "" +msgstr "<> oder neq" #. w3GaC #: 03091502.xhp @@ -7619,7 +7619,7 @@ "par_id3155548\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für ungleich" #. e4kvY #: 03091502.xhp @@ -7637,7 +7637,7 @@ "par_id3150600\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für gleich" #. CyvDN #: 03091502.xhp @@ -7655,7 +7655,7 @@ "par_idN10E4D\n" "help.text" msgid "> or gt" -msgstr "" +msgstr "> oder gt" #. DeNKA #: 03091502.xhp @@ -7664,7 +7664,7 @@ "par_id3152978\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für größer" #. krNBR #: 03091502.xhp @@ -7682,7 +7682,7 @@ "par_idN1109E\n" "help.text" msgid ">= or ge" -msgstr "" +msgstr ">= oder ge" #. UAKHS #: 03091502.xhp @@ -7691,7 +7691,7 @@ "par_id3152741\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für größer oder gleich" #. ABJYz #: 03091502.xhp @@ -7709,7 +7709,7 @@ "par_idN11183\n" "help.text" msgid ">> or gg" -msgstr "" +msgstr ">> oder gg" #. 8auBb #: 03091502.xhp @@ -7727,7 +7727,7 @@ "par_id3150840\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für ungefähr gleich" #. UHrCb #: 03091502.xhp @@ -7754,7 +7754,7 @@ "par_id3154050\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für teilt" #. wArgv #: 03091502.xhp @@ -7772,7 +7772,7 @@ "par_id3150419\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Doppelpfeil nach links" #. GziuK #: 03091502.xhp @@ -7790,7 +7790,7 @@ "par_id3154424\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Doppelpfeil nach links und rechts" #. 6ZsLj #: 03091502.xhp @@ -7808,7 +7808,7 @@ "par_id3155410\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Doppelpfeil nach rechts" #. DJd7B #: 03091502.xhp @@ -7826,7 +7826,7 @@ "par_id3153373\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für identisch/kongruent" #. C3MkN #: 03091502.xhp @@ -7844,7 +7844,7 @@ "par_id3149139\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für größer oder gleich" #. XjCZC #: 03091502.xhp @@ -7862,7 +7862,7 @@ "par_id3153648\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für kleiner oder gleich" #. STPBc #: 03091502.xhp @@ -7880,7 +7880,7 @@ "par_id3145098\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für teilt nicht" #. S9xpS #: 03091502.xhp @@ -7898,7 +7898,7 @@ "par_id3152809\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für orthogonal" #. wPLhC #: 03091502.xhp @@ -7916,7 +7916,7 @@ "par_id3153161\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für parallel" #. eLZQa #: 03091502.xhp @@ -7934,7 +7934,7 @@ "par_id3150336\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für proportional" #. BJ3Cz #: 03091502.xhp @@ -7952,7 +7952,7 @@ "par_id3154416\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für ähnlich" #. qR3Ar #: 03091502.xhp @@ -7970,7 +7970,7 @@ "par_id3149265\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für ähnlich oder gleich" #. CDtUh #: 03091502.xhp @@ -7988,7 +7988,7 @@ "par_id3153957\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für strebt gegen" #. FVEYx #: 03091502.xhp @@ -8006,7 +8006,7 @@ "par_id3153958\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für von niedrigerem Rang" #. gGMFP #: 03091502.xhp @@ -8024,7 +8024,7 @@ "par_id3153959\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht von niedrigerem Rang" #. wMUAe #: 03091502.xhp @@ -8042,7 +8042,7 @@ "par_id3153960\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für von höherem Rang" #. VxJ9r #: 03091502.xhp @@ -8060,7 +8060,7 @@ "par_id3153961\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht von höherem Rang" #. EwXma #: 03091502.xhp @@ -8078,7 +8078,7 @@ "par_id3153962\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für von niedrigerem oder gleichem Rang" #. 7GtUu #: 03091502.xhp @@ -8096,7 +8096,7 @@ "par_id3153963\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für von höherem oder gleichem Rang" #. CSE3L #: 03091502.xhp @@ -8114,7 +8114,7 @@ "par_id3153964\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für von niedrigerem oder äquivalentem Rang" #. 4QGmN #: 03091502.xhp @@ -8132,7 +8132,7 @@ "par_id3153965\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für von höherem oder äquivalentem Rang" #. uCzoV #: 03091502.xhp @@ -8222,7 +8222,7 @@ "par_id3146505\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Kardinalzahl" #. FFGfs #: 03091503.xhp @@ -8240,7 +8240,7 @@ "par_id3159379\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für leere Menge" #. mGRyB #: 03091503.xhp @@ -8258,7 +8258,7 @@ "par_id3158166\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Element" #. sm4Rg #: 03091503.xhp @@ -8276,7 +8276,7 @@ "par_id3152402\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Durchschnitt" #. GEEMZ #: 03091503.xhp @@ -8294,7 +8294,7 @@ "par_id3158212\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht Element" #. UzuDG #: 03091503.xhp @@ -8312,7 +8312,7 @@ "par_id3158819\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht Teilmenge" #. qdSN4 #: 03091503.xhp @@ -8330,7 +8330,7 @@ "par_id3158966\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht Teilmenge oder gleich" #. Ndiik #: 03091503.xhp @@ -8348,7 +8348,7 @@ "par_id3159114\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht Obermenge" #. DuaNY #: 03091503.xhp @@ -8366,7 +8366,7 @@ "par_id3163002\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für nicht Obermenge oder gleich" #. UwbsN #: 03091503.xhp @@ -8384,7 +8384,7 @@ "par_idN112D9\n" "help.text" msgid "owns or ni" -msgstr "" +msgstr "owns oder ni" #. VSBTG #: 03091503.xhp @@ -8393,7 +8393,7 @@ "par_id3158359\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für enthält" #. YQptA #: 03091503.xhp @@ -8411,7 +8411,7 @@ "par_id3156480\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Menge der komplexen Zahlen" #. wmvnm #: 03091503.xhp @@ -8429,7 +8429,7 @@ "par_idN113E5\n" "help.text" msgid "setminus or bslash" -msgstr "" +msgstr "setminus oder bslash" #. uukK3 #: 03091503.xhp @@ -8438,7 +8438,7 @@ "par_id3145932\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Differenz" #. W8PY7 #: 03091503.xhp @@ -8456,7 +8456,7 @@ "par_id3163149\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Menge der natürlichen Zahlen" #. juEAq #: 03091503.xhp @@ -8474,7 +8474,7 @@ "par_id3163444\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Menge der rationalen Zahlen" #. eTC9Q #: 03091503.xhp @@ -8492,7 +8492,7 @@ "par_id3163591\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Menge der reellen Zahlen" #. CVXPR #: 03091503.xhp @@ -8510,7 +8510,7 @@ "par_id3163296\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Menge der ganzen Zahlen" #. 2BFXD #: 03091503.xhp @@ -8528,7 +8528,7 @@ "par_id3146357\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Quotient" #. bX3jf #: 03091503.xhp @@ -8546,7 +8546,7 @@ "par_id3146652\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Teilmenge" #. NGHLF #: 03091503.xhp @@ -8564,7 +8564,7 @@ "par_id3146800\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Teilmenge oder gleich" #. VqxmF #: 03091503.xhp @@ -8582,7 +8582,7 @@ "par_id3158524\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Obermenge" #. tGDcX #: 03091503.xhp @@ -8600,7 +8600,7 @@ "par_id3158671\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Obermenge oder gleich" #. HavfX #: 03091503.xhp @@ -8618,7 +8618,7 @@ "par_id3152548\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Vereinigung" #. KPHqD #: 03091503.xhp @@ -9212,7 +9212,7 @@ "par_id3144534\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Koprodukt" #. MtgRx #: 03091505.xhp @@ -9230,7 +9230,7 @@ "par_id3166611\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für untere Grenze eines Operators" #. S9j8D #: 03091505.xhp @@ -9248,7 +9248,7 @@ "par_id3144681\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für untere und obere Grenze eines Operators" #. YScQ5 #: 03091505.xhp @@ -9266,7 +9266,7 @@ "par_id3145083\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für dreifaches Integral" #. ba5G4 #: 03091505.xhp @@ -9284,7 +9284,7 @@ "par_id3144936\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für doppeltes Integral" #. QNzAx #: 03091505.xhp @@ -9302,7 +9302,7 @@ "par_id3144789\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Integral" #. ic9n5 #: 03091505.xhp @@ -9338,7 +9338,7 @@ "par_id3166719\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Kurvenintegral" #. p7GnF #: 03091505.xhp @@ -9356,7 +9356,7 @@ "par_id3166866\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für doppeltes Kurvenintegral" #. PppTF #: 03091505.xhp @@ -9374,7 +9374,7 @@ "par_id3167013\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für dreifaches Kurvenintegral" #. 6yWRL #: 03091505.xhp @@ -9401,7 +9401,7 @@ "par_id3144387\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Produkt" #. cAogx #: 03091505.xhp @@ -9419,7 +9419,7 @@ "par_id3144240\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Summe" #. mfdvB #: 03091505.xhp @@ -9437,7 +9437,7 @@ "par_id3167161\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für obere Grenze eines Operators" #. ujJ9N #: 03091505.xhp @@ -9455,7 +9455,7 @@ "par_id3144093\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Limes" #. EkvSq #: 03091505.xhp @@ -9527,7 +9527,7 @@ "par_id3167709\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Akzent nach oben rechts" #. 5torC #: 03091506.xhp @@ -9545,7 +9545,7 @@ "par_id3159771\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Überstrich" #. M5oba #: 03091506.xhp @@ -9563,7 +9563,7 @@ "par_id3161361\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Fettschrift" #. es4i3 #: 03091506.xhp @@ -9581,7 +9581,7 @@ "par_id3168153\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Breve" #. fDKnV #: 03091506.xhp @@ -9599,7 +9599,7 @@ "par_id3168006\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für umgekehrtes Dach" #. mEfHC #: 03091506.xhp @@ -9617,7 +9617,7 @@ "par_id3168303\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Kreis" #. Ek5Wo #: 03091506.xhp @@ -9653,7 +9653,7 @@ "par_id3161104\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für dreifacher Punkt" #. MQZTH #: 03091506.xhp @@ -9671,7 +9671,7 @@ "par_id3160512\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für doppelter Punkt" #. jqAz8 #: 03091506.xhp @@ -9689,7 +9689,7 @@ "par_id3159919\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Punkt" #. ixAQG #: 03091506.xhp @@ -9707,7 +9707,7 @@ "par_id3167857\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Akzent nach rechts unten" #. N7xvR #: 03091506.xhp @@ -9725,7 +9725,7 @@ "par_id3159622\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Dach" #. 4d5a8 #: 03091506.xhp @@ -9743,7 +9743,7 @@ "par_id3161469\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Kursivschrift" #. LbSw2 #: 03091506.xhp @@ -9779,7 +9779,7 @@ "par_id3160659\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Überstreichung" #. bDEFU #: 03091506.xhp @@ -9797,7 +9797,7 @@ "par_id3160956\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Durchstreichung" #. rEkBP #: 03091506.xhp @@ -9815,7 +9815,7 @@ "par_id3161252\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für transparent" #. rY2pH #: 03091506.xhp @@ -9824,7 +9824,7 @@ "par_id3161333\n" "help.text" msgid "Phantom character" -msgstr "transparent" +msgstr "Transparent" #. ewsRt #: 03091506.xhp @@ -9833,7 +9833,7 @@ "par_id3168599\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Tilde" #. SkR7m #: 03091506.xhp @@ -9851,7 +9851,7 @@ "par_id3160808\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Unterstreichung" #. ETsmG #: 03091506.xhp @@ -9869,7 +9869,7 @@ "par_id3168451\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Vektorpfeil" #. JhETG #: 03091506.xhp @@ -9887,7 +9887,7 @@ "par_id3160364\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für breites Dach" #. 23gvb #: 03091506.xhp @@ -9896,7 +9896,7 @@ "par_id3160485\n" "help.text" msgid "wide roof, adjusts to the character size" -msgstr "breites Dach" +msgstr "Breites Dach" #. mF8Ah #: 03091506.xhp @@ -9905,7 +9905,7 @@ "par_id3160215\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für breite Tilde" #. 2a8ye #: 03091506.xhp @@ -9914,7 +9914,7 @@ "par_id3160336\n" "help.text" msgid "wide tilde, adjusts to the character size" -msgstr "breite Tilde" +msgstr "Breite Tilde" #. EHoDk #: 03091506.xhp @@ -9923,7 +9923,7 @@ "par_id3160067\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für breiter Vektorpfeil" #. dZ2uv #: 03091506.xhp @@ -9932,7 +9932,7 @@ "par_id3160188\n" "help.text" msgid "wide vector arrow, adjusts to the character size" -msgstr "breiter Vektorpfeil" +msgstr "Breiter Vektorpfeil" #. Gik5w #: 03091507.xhp @@ -10004,7 +10004,7 @@ "par_id3179931\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Punkte mittig" #. kRTrv #: 03091507.xhp @@ -10022,7 +10022,7 @@ "par_id3180374\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Punkte schräg nach unten" #. hxZCA #: 03091507.xhp @@ -10040,7 +10040,7 @@ "par_id3179784\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Punkte unten" #. xKwP3 #: 03091507.xhp @@ -10058,7 +10058,7 @@ "par_idN127BB\n" "help.text" msgid "dotsup or dotsdiag" -msgstr "" +msgstr "dotsup oder dotsdiag" #. brT8y #: 03091507.xhp @@ -10067,7 +10067,7 @@ "par_id3180078\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Punkte schräg nach oben" #. WJoKS #: 03091507.xhp @@ -10085,7 +10085,7 @@ "par_id3180226\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Punkte senkrecht" #. qxGPE #: 03091507.xhp @@ -10103,7 +10103,7 @@ "par_id3179636\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Pfeil nach unten" #. kxCN7 #: 03091507.xhp @@ -10121,7 +10121,7 @@ "par_id3162627\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für es existiert" #. E7FKi #: 03091507.xhp @@ -10139,7 +10139,7 @@ "par_idA3162627\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für es existiert nicht" #. ZCXd5 #: 03091507.xhp @@ -10157,7 +10157,7 @@ "par_id3162775\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für für alle" #. SCqgq #: 03091507.xhp @@ -10175,7 +10175,7 @@ "par_id3162922\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für h quer" #. Yf8hP #: 03091507.xhp @@ -10193,7 +10193,7 @@ "par_id3178900\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Imaginärteil" #. reAGT #: 03091507.xhp @@ -10211,7 +10211,7 @@ "par_idN12939\n" "help.text" msgid "infinity or infty" -msgstr "" +msgstr "infinity oder infty" #. MzaN8 #: 03091507.xhp @@ -10220,7 +10220,7 @@ "par_id3162185\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für unendlich" #. EApwg #: 03091507.xhp @@ -10238,7 +10238,7 @@ "par_id3178604\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Lambda quer" #. MBAGB #: 03091507.xhp @@ -10256,7 +10256,7 @@ "par_id3179195\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Pfeil nach links" #. nno3N #: 03091507.xhp @@ -10274,7 +10274,7 @@ "par_id3162480\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Nabla" #. hfUu3 #: 03091507.xhp @@ -10292,7 +10292,7 @@ "par_id3162332\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Partial" #. HE8ov #: 03091507.xhp @@ -10310,7 +10310,7 @@ "par_id3178752\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Realteil" #. HDmFq #: 03091507.xhp @@ -10328,7 +10328,7 @@ "par_id3179342\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Pfeil nach rechts" #. jZeSn #: 03091507.xhp @@ -10346,7 +10346,7 @@ "par_id3179489\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Pfeil nach oben" #. 8627X #: 03091507.xhp @@ -10364,7 +10364,7 @@ "par_id3179047\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Weierstrass-p" #. FC7HD #: 03091507.xhp @@ -10436,7 +10436,7 @@ "par_id3180783\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für runde Klammern" #. NmQ9B #: 03091508.xhp @@ -10445,7 +10445,7 @@ "par_id3180903\n" "help.text" msgid "Normal round left and right bracket" -msgstr "runde Klammern" +msgstr "Runde Klammern" #. BHKGE #: 03091508.xhp @@ -10454,7 +10454,7 @@ "par_id3180930\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für eckige Klammern" #. UHy6E #: 03091508.xhp @@ -10463,7 +10463,7 @@ "par_id3181050\n" "help.text" msgid "Left and right square bracket" -msgstr "eckige Klammern" +msgstr "Eckige Klammern" #. vDxXK #: 03091508.xhp @@ -10472,7 +10472,7 @@ "par_id3181078\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für doppelte eckige Klammern" #. SCa3n #: 03091508.xhp @@ -10481,7 +10481,7 @@ "par_id3181201\n" "help.text" msgid "Left and right square double bracket" -msgstr "doppelte eckige Klammern" +msgstr "Doppelte eckige Klammern" #. 5Z2pi #: 03091508.xhp @@ -10490,7 +10490,7 @@ "par_id3181229\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für senkrechte Linien" #. Jixmh #: 03091508.xhp @@ -10499,7 +10499,7 @@ "par_id3181350\n" "help.text" msgid "Left and right vertical line" -msgstr "senkrechte Linien" +msgstr "Senkrechte Linien" #. ZEAEE #: 03091508.xhp @@ -10508,7 +10508,7 @@ "par_id3181377\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für doppelte senkrechte Linien" #. jKGfG #: 03091508.xhp @@ -10517,7 +10517,7 @@ "par_id3181498\n" "help.text" msgid "Left and right double vertical lines" -msgstr "doppelte senkrechte Linien" +msgstr "Doppelte senkrechte Linien" #. DEuLV #: 03091508.xhp @@ -10526,7 +10526,7 @@ "par_id3181525\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für geschweifte Klammern" #. kYWGD #: 03091508.xhp @@ -10535,7 +10535,7 @@ "par_id3181646\n" "help.text" msgid "Left and right curly brackets, set bracket" -msgstr "geschweifte Klammern" +msgstr "Geschweifte Klammern" #. Gtom8 #: 03091508.xhp @@ -10544,7 +10544,7 @@ "par_id3181674\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für spitze Klammern" #. YvBNE #: 03091508.xhp @@ -10553,7 +10553,7 @@ "par_id3181794\n" "help.text" msgid "Left and right pointed bracket" -msgstr "spitze Klammern" +msgstr "Spitze Klammern" #. RAY5V #: 03091508.xhp @@ -10562,7 +10562,7 @@ "par_id3181822\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Operatorklammern" #. i9GQu #: 03091508.xhp @@ -10580,7 +10580,7 @@ "par_id3181973\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Gruppierungsklammern" #. BkZdN #: 03091508.xhp @@ -10589,7 +10589,7 @@ "par_id3182055\n" "help.text" msgid "Left and right group bracket. They are not displayed in the document and do not take up any room." -msgstr "Gruppenklammern. Sie werden nicht im Dokument dargestellt und benötigen keinen Platz." +msgstr "Gruppierungsklammern. Sie werden nicht im Dokument dargestellt und benötigen keinen Platz." #. A9GYt #: 03091508.xhp @@ -10598,7 +10598,7 @@ "par_id3182083\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare runde Klammern" #. st5dU #: 03091508.xhp @@ -10607,7 +10607,7 @@ "par_id3182178\n" "help.text" msgid "Brackets, scalable" -msgstr "runde Klammern, skalierbar" +msgstr "Skalierbare runde Klammern" #. PYgh9 #: 03091508.xhp @@ -10616,7 +10616,7 @@ "par_id3182210\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare eckige Klammern" #. Ed5xr #: 03091508.xhp @@ -10625,7 +10625,7 @@ "par_id3182305\n" "help.text" msgid "Square brackets, scalable" -msgstr "eckige Klammern, skalierbar" +msgstr "Skalierbare eckige Klammern" #. gw5x7 #: 03091508.xhp @@ -10634,7 +10634,7 @@ "par_id3182332\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare doppelte eckige Klammern" #. x9DpW #: 03091508.xhp @@ -10643,7 +10643,7 @@ "par_id3182428\n" "help.text" msgid "Double square brackets, scalable" -msgstr "doppelte eckige Klammern, skalierbar" +msgstr "Skalierbare doppelte eckige Klammern" #. B9iAB #: 03091508.xhp @@ -10652,7 +10652,7 @@ "par_id3182456\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare geschweifte Klammern" #. QXXDx #: 03091508.xhp @@ -10661,7 +10661,7 @@ "par_id3182551\n" "help.text" msgid "Braces, scalable" -msgstr "geschweifte Klammern, skalierbar" +msgstr "Skalierbare geschweifte Klammern" #. PHUGQ #: 03091508.xhp @@ -10670,7 +10670,7 @@ "par_id3182579\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare senkrechte Linien" #. m2ghA #: 03091508.xhp @@ -10679,7 +10679,7 @@ "par_id3182674\n" "help.text" msgid "Single lines, scalable" -msgstr "senkrechte Linien, skalierbar" +msgstr "Skalierbare senkrechte Linien" #. nGe3M #: 03091508.xhp @@ -10688,7 +10688,7 @@ "par_id3182702\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare doppelte senkrechte Linien" #. CJD5Q #: 03091508.xhp @@ -10697,7 +10697,7 @@ "par_id3182797\n" "help.text" msgid "Double lines, scalable" -msgstr "doppelte senkrechte Linien, skalierbar" +msgstr "Skalierbare doppelte senkrechte Linien" #. 5qqfJ #: 03091508.xhp @@ -10706,7 +10706,7 @@ "par_id3182825\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare spitze Klammern" #. BLH52 #: 03091508.xhp @@ -10715,7 +10715,7 @@ "par_id3182920\n" "help.text" msgid "Angle brackets, scalable" -msgstr "spitze Klammern, skalierbar" +msgstr "Skalierbare spitze Klammern" #. GuBHX #: 03091508.xhp @@ -10724,7 +10724,7 @@ "par_id3182948\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare Operatorklammern" #. aaku8 #: 03091508.xhp @@ -10733,7 +10733,7 @@ "par_id3183043\n" "help.text" msgid "Scalable left and right pointed operator bracket" -msgstr "Operatorklammern, skalierbar" +msgstr "Skalierbare Operatorklammern" #. CcC4t #: 03091508.xhp @@ -10742,7 +10742,7 @@ "par_id3183072\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare geschweifte Klammer oberhalb" #. F2Ydk #: 03091508.xhp @@ -10751,7 +10751,7 @@ "par_id3183195\n" "help.text" msgid "Scalable curly set bracket on top" -msgstr "geschweifte Klammer oberhalb, skalierbar" +msgstr "Skalierbare geschweifte Klammer oberhalb" #. igG74 #: 03091508.xhp @@ -10760,7 +10760,7 @@ "par_id3183223\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für skalierbare geschweifte Klammer unterhalb" #. LfbHS #: 03091508.xhp @@ -10769,7 +10769,7 @@ "par_id3183346\n" "help.text" msgid "Scalable curly set bracket below" -msgstr "geschweifte Klammer unterhalb, skalierbar" +msgstr "Skalierbare geschweifte Klammer unterhalb" #. 6BDV4 #: 03091508.xhp @@ -10796,7 +10796,7 @@ "par_idN12F9F\n" "help.text" msgid "\\lbrace \\rbrace or \\{ \\}" -msgstr "" +msgstr "\\lbrace \\rbrace oder \\{ \\}" #. CWCoh #: 03091508.xhp @@ -10877,7 +10877,7 @@ "par_id3985717\n" "help.text" msgid "none" -msgstr "" +msgstr "none" #. AcuvC #: 03091508.xhp @@ -10886,7 +10886,7 @@ "par_id1778008\n" "help.text" msgid "Qualifier to suppress one bracket, as in right none " -msgstr "" +msgstr "Ausdruck zum Unterdrücken einer Klammer, wie in right none " #. BvLcE #: 03091509.xhp @@ -10949,7 +10949,7 @@ "par_id3184418\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für linken Exponent" #. TUwug #: 03091509.xhp @@ -10967,7 +10967,7 @@ "par_id3184566\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Exponent direkt über einem Zeichen" #. gDQSk #: 03091509.xhp @@ -10985,7 +10985,7 @@ "par_idN13117\n" "help.text" msgid "^ or sup or rsup" -msgstr "" +msgstr "^, sup oder rsup" #. v7vQv #: 03091509.xhp @@ -10994,7 +10994,7 @@ "par_id3184717\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für rechten Exponent" #. EpL9g #: 03091509.xhp @@ -11012,7 +11012,7 @@ "par_id3184864\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Binom" #. CADG7 #: 03091509.xhp @@ -11030,7 +11030,7 @@ "par_id3185011\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für neue Zeile" #. HVyHD #: 03091509.xhp @@ -11048,7 +11048,7 @@ "par_id3185119\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für linken Index" #. tTC3y #: 03091509.xhp @@ -11066,7 +11066,7 @@ "par_id3185267\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Index direkt unter einem Zeichen" #. BD3nT #: 03091509.xhp @@ -11084,7 +11084,7 @@ "par_idN1322D\n" "help.text" msgid "_ or sub or rsub" -msgstr "" +msgstr "_, sub oder rsub" #. DNiot #: 03091509.xhp @@ -11093,7 +11093,7 @@ "par_id3185418\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für rechten Index" #. CBuyC #: 03091509.xhp @@ -11111,7 +11111,7 @@ "par_id3185566\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Stapel" #. Gteev #: 03091509.xhp @@ -11129,7 +11129,7 @@ "par_id3185714\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für kleinen Zwischenraum" #. GMFhD #: 03091509.xhp @@ -11147,7 +11147,7 @@ "par_id3185823\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für linke Ausrichtung" #. z4vsC #: 03091509.xhp @@ -11165,7 +11165,7 @@ "par_id3185931\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für zentrierte Ausrichtung" #. tTBJA #: 03091509.xhp @@ -11183,7 +11183,7 @@ "par_id3186039\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für rechte Ausrichtung" #. vxXXF #: 03091509.xhp @@ -11201,7 +11201,7 @@ "par_id3186147\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für Matrix" #. FsB3E #: 03091509.xhp @@ -11219,7 +11219,7 @@ "par_id3186295\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Symbol für großen Zwischenraum" #. CEanK #: 03091509.xhp @@ -13577,7 +13577,7 @@ "par_id3145295\n" "help.text" msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above." -msgstr "Wenn die Schriftart, die Sie im Listenfeld Schriftart gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in den das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt." +msgstr "Wenn die Schriftart, die Sie im Listenfeld Schriftart gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in die das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt." #. kdGeM #: 06010100.xhp @@ -13802,7 +13802,7 @@ "tit\n" "help.text" msgid "Chemical Formulas" -msgstr "" +msgstr "Chemische Formeln" #. j2CrZ #: chemical.xhp @@ -13811,7 +13811,7 @@ "bm_id241584201850390\n" "help.text" msgid "chemical formula" -msgstr "" +msgstr "Chemische Formel" #. cmCqg #: chemical.xhp @@ -13820,7 +13820,7 @@ "hd_id951584200892379\n" "help.text" msgid "Chemical Formulas Examples" -msgstr "" +msgstr "Beispiele für chemische Formeln" #. Uo7jh #: chemical.xhp @@ -13829,7 +13829,7 @@ "par_id111584200892379\n" "help.text" msgid "The primary purpose of %PRODUCTNAME Math is to create mathematical formulas, but it can also be used to write chemical formulas. However, in chemical formulas, the chemical symbols are normally written in uppercase using upright, rather than italic, characters." -msgstr "" +msgstr "Das Haupteinsatzgebiet von %PRODUCTNAME Math ist das Erstellen mathematischer Formeln, es kann jedoch auch zum Schreiben chemischer Formeln verwendet werden. In chemischen Formeln werden die chemischen Symbole jedoch normalerweise in Großbuchstaben mit aufrechten statt kursiven Zeichen geschrieben." #. CLnAG #: chemical.xhp @@ -13838,7 +13838,7 @@ "par_id61584210063479\n" "help.text" msgid "To create chemical formulas using Math, you may want to change the font used for variables to a non-italic font, or use the nitalic modifier." -msgstr "" +msgstr "Um chemische Formeln mit Math zu erstellen, können Sie die für Variablen verwendete Schriftart in eine nicht kursive Schriftart ändern oder den Modifikator nitalic verwenden." #. LHaDo #: chemical.xhp @@ -13847,7 +13847,7 @@ "hd_id681584201309050\n" "help.text" msgid "Molecules" -msgstr "" +msgstr "Moleküle" #. Fhyg6 #: chemical.xhp @@ -13856,7 +13856,7 @@ "hd_id801584201314869\n" "help.text" msgid "Isotopes" -msgstr "" +msgstr "Isotopen" #. 5Jmw8 #: chemical.xhp @@ -13865,7 +13865,7 @@ "par_id981584282254171\n" "help.text" msgid "nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma} ~~binom{{size 6{{%beta}-{}}}} {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size 6{{%beta}-{}}}}{toward}~~ Pu lsup 239 lsub 94}" -msgstr "" +msgstr "nitalic{{U lsup 238 lsub 92 + n} ~~toward~~ {U lsup 239 lsub 92 + %gamma} ~~binom{{size 6{{%beta}-{}}}} {toward} ~~ Np lsup 239 lsub 93 ~~binom{{size 6{{%beta}-{}}}}{toward}~~ Pu lsup 239 lsub 94}" #. f9BiV #: chemical.xhp @@ -13874,7 +13874,7 @@ "hd_id921584201320412\n" "help.text" msgid "Ions" -msgstr "" +msgstr "Ionen" #. CfSpa #: chemical.xhp @@ -13883,4 +13883,4 @@ "par_id921584201737219\n" "help.text" msgid "SO_4^{2-{}} or SO_4^{2\"-\"}" -msgstr "" +msgstr "SO_4^{2-{}} oder SO_4^{2\"-\"}" diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/smath/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-01-12 13:18+0100\n" -"PO-Revision-Date: 2018-07-25 05:43+0000\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: LANGUAGE \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1532497407.000000\n" +#. P9FEQ #: align.xhp msgctxt "" "align.xhp\n" @@ -24,6 +25,7 @@ msgid "Manually Aligning Formula Parts" msgstr "Formelteile manuell ausrichten" +#. Dc94G #: align.xhp msgctxt "" "align.xhp\n" @@ -32,6 +34,7 @@ msgid "aligning; characters in %PRODUCTNAME Mathformula parts; manually aligning" msgstr "Ausrichten; Zeichen in %PRODUCTNAME MathFormelteile; manuell ausrichten" +#. 5ENLq #: align.xhp msgctxt "" "align.xhp\n" @@ -40,6 +43,7 @@ msgid "Manually Aligning Formula Parts" msgstr "Formelteile manuell ausrichten" +#. eUZmq #: align.xhp msgctxt "" "align.xhp\n" @@ -48,6 +52,7 @@ msgid "How do you align characters in $[officename] Math quickly and easily?" msgstr "Wie können Zeichen in $[officename] Math ausgerichtet werden?" +#. EJ2GY #: align.xhp msgctxt "" "align.xhp\n" @@ -56,6 +61,7 @@ msgid "To accomplish this, you must define empty groups and character strings. They do not require any space, but carry information that helps in the alignment process." msgstr "Nutzen Sie dazu die Möglichkeit, leere Gruppen und Zeichenketten zu definieren. Sie benötigen keinen Raum, tragen aber Informationen, die bei der Ausrichtung helfen." +#. BLcvk #: align.xhp msgctxt "" "align.xhp\n" @@ -64,6 +70,7 @@ msgid "To create empty groups, enter curly brackets {} in the Commands window. In the following example, the goal is to achieve a line break so that the plus signs are beneath one another, even though one less character is entered in the upper line:" msgstr "Um leere Gruppen zu erzeugen, geben Sie im Kommandofenster geschweifte Klammern {} ein. Im folgenden Beispiel soll ein Zeilenumbruch erreicht werden, bei dem die Pluszeichen untereinander stehen, obwohl in der oberen Zeile ein Zeichen weniger eingegeben wird:" +#. wDfhJ #: align.xhp msgctxt "" "align.xhp\n" @@ -72,6 +79,7 @@ msgid "Empty character strings are a simple way to ensure that texts and formulas are left-aligned. They are defined using double inverted commas \"\" . Make sure you do not use any typographic inverted commas. Example:" msgstr "Leere Zeichenketten sind ein einfaches Mittel, Texte und Formeln linksbündig beginnen zu lassen. Sie werden durch doppelte Anführungszeichen \"\" festgelegt. Verwenden Sie keine typografischen Anführungszeichen. Beispiel:" +#. C6Ky9 #: align.xhp msgctxt "" "align.xhp\n" @@ -80,6 +88,7 @@ msgid "\"A further example.\" newline a+b newline \"\"c-d" msgstr "\"Ein weiteres Beispiel.\" newline a+b newline \"\" c-d" +#. WA2Pc #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -88,6 +97,7 @@ msgid "Changing Default Attributes" msgstr "Standardattribute ändern" +#. 4DrY6 #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -96,6 +106,7 @@ msgid "attributes; changing in $[officename] Mathfont attributes;changing defaultsformatting;changing default attributesdefaults;changing default formattingchanging;default formatting" msgstr "Attribute; in $[officename] Math ändernSchriftattribute; Vorgaben ändernFormatierung; Vorgabeattribute ändernVorgaben; Vorgabeformatierung ändernÄndern; Vorgabeformatierung" +#. WndEQ #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -104,6 +115,7 @@ msgid "Changing Default Attributes" msgstr "Standardattribute ändern" +#. gAHnh #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -112,6 +124,7 @@ msgid "Can default formats in $[officename] Math be modified?" msgstr "Können standardmäßige Formatierungen in $[officename] Math geändert werden?" +#. k9ADA #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -120,6 +133,7 @@ msgid "Some parts of formulas are always formatted bold or italic by default." msgstr "Einige Formelbestandteile sind immer fett oder kursiv formatiert." +#. 7A7Vi #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -128,6 +142,7 @@ msgid "You can remove these attributes using \"nbold\" and \"nitalic\". Example:" msgstr "Sie können diese Attribute mit den Befehlen \"nbold\" und \"nitalic\" entfernen. Beispiel:" +#. MCJxc #: attributes.xhp msgctxt "" "attributes.xhp\n" @@ -136,6 +151,7 @@ msgid "In the second formula, the a is not italic. The b is bold. You cannot change the plus sign by this method." msgstr "In der zweiten Formel wird das a nicht kursiv dargestellt. Das b erhält das Attribut fett. Das Pluszeichen ist auf diese Weise nicht veränderbar." +#. oPuAE #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -144,6 +160,7 @@ msgid "Merging Formula Parts in Brackets" msgstr "Formelteile in Klammern zusammenfassen" +#. bDPkX #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -152,6 +169,7 @@ msgid "brackets; merging formula partsformula parts; mergingfractions in formulasmerging;formula parts" msgstr "Klammern; Formelteile zusammenfassenFormelteile; zusammenfassenBrüche in FormelnZusammenfassen; Formelteile" +#. J7BeM #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -160,6 +178,7 @@ msgid "Merging Formula Parts in Brackets" msgstr "Formelteile in Klammern zusammenfassen" +#. z6zop #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -168,6 +187,7 @@ msgid "Inserting fractions into formulas" msgstr "So können Brüche in eine Formel eingegeben werden" +#. jPtfJ #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -176,6 +196,7 @@ msgid "In the case of a fraction whose numerator and denominator consist of a product, a sum, and so on, the values that belong together must be bracketed together." msgstr "Für einen Bruch, dessen Zähler oder Nenner aus einem Produkt, einer Summe oder ähnlichem besteht, müssen die zusammengehörigen Werte mit einer Klammer zusammengefasst werden." +#. 4bWFt #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -184,6 +205,7 @@ msgid "Use the following syntax:" msgstr "Verwenden Sie folgende Schreibweise:" +#. FX6mw #: brackets.xhp msgctxt "" "brackets.xhp\n" @@ -192,6 +214,7 @@ msgid "or" msgstr "oder" +#. 3UYoM #: comment.xhp msgctxt "" "comment.xhp\n" @@ -200,6 +223,7 @@ msgid "Entering Comments" msgstr "Kommentar eingeben" +#. EpAyX #: comment.xhp msgctxt "" "comment.xhp\n" @@ -208,6 +232,7 @@ msgid "comments; entering in $[officename] Mathinserting;comments in $[officename] Math" msgstr "Kommentare; in $[officename] Math eingebenEinfügen; Kommentare in $[officename] Math" +#. RB5xU #: comment.xhp msgctxt "" "comment.xhp\n" @@ -216,6 +241,7 @@ msgid "Entering Comments" msgstr "Kommentar eingeben" +#. CA8hE #: comment.xhp msgctxt "" "comment.xhp\n" @@ -224,14 +250,16 @@ msgid "How does one attach comments that don't appear in the document to a formula?" msgstr "Wie lässt sich eine Formel mit nicht im Dokument erscheinenden Kommentaren versehen?" +#. sj3Gt #: comment.xhp msgctxt "" "comment.xhp\n" "par_id3149499\n" "help.text" msgid "A comment begins with a double percent sign %%, and extends to the next line-end character (Enter key). Everything that lies in between is ignored and is not printed out. If there are percent signs in the text, they are treated as part of the text." -msgstr "Ein Kommentar beginnt mit doppelten Prozentzeichen %% und geht bis zum nächsten Zeilenendzeichen (Eingabetaste). Alles, was dazwischen steht, wird ignoriert und führt zu keiner Ausgabe. Befinden sich Prozentzeichen im Text, werden diese als Textbestandteil behandelt." +msgstr "Ein Kommentar beginnt mit doppelten Prozentzeichen %% und geht bis zum nächsten Zeilenendezeichen (Eingabetaste). Alles, was dazwischen steht, wird ignoriert und führt zu keiner Ausgabe. Befinden sich Prozentzeichen im Text, werden diese als Textbestandteil behandelt." +#. 27yBP #: comment.xhp msgctxt "" "comment.xhp\n" @@ -240,6 +268,7 @@ msgid "Example:" msgstr "Beispiel:" +#. CMAYs #: comment.xhp msgctxt "" "comment.xhp\n" @@ -248,6 +277,7 @@ msgid "a^2+b^2=c^2 %% Pythagorean theorem." msgstr "a^2+b^2=c^2 %% Der Satz des Pythagoras." +#. PZSB7 #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -256,6 +286,7 @@ msgid "Shortcuts ($[officename] Math Accessibility)" msgstr "Tastatursteuerung ($[officename] Math Barrierefreiheit)" +#. rsGdv #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -264,6 +295,7 @@ msgid "accessibility; $[officename] Math shortcuts" msgstr "Barrierefreiheit; Tastenkombinationen in $[officename] Math" +#. 4zHFd #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -272,6 +304,7 @@ msgid "Shortcuts ($[officename] Math Accessibility)" msgstr "Tastatursteuerung ($[officename] Math Barrierefreiheit)" +#. ZkpGA #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -280,6 +313,7 @@ msgid "You can control $[officename] Math without a mouse." msgstr "Auch ohne Maus können Sie $[officename] Math steuern." +#. dNEFC #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -288,6 +322,7 @@ msgid "Inserting a Formula Directly" msgstr "Direktes Einfügen der Formel" +#. 3ztDF #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -296,6 +331,7 @@ msgid "If you want to insert a formula into a text document, and you already know the correct writing, you can proceed as follows:" msgstr "Um in ein Textdokument eine Formel einzufügen, deren Syntax Sie bereits kennen, ist dies auch folgendermaßen möglich:" +#. qoVM4 #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -304,6 +340,7 @@ msgid "Write the formula into your text" msgstr "Schreiben Sie die Formel in den Text" +#. dmJc9 #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -312,6 +349,7 @@ msgid "Select the formula" msgstr "Markieren Sie die Formel" +#. bN6uQ #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -320,6 +358,7 @@ msgid "Choose the command Insert - Object - Formula." msgstr "Rufen Sie den Befehl Einfügen - Objekt - Formel auf." +#. aowxC #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -328,6 +367,7 @@ msgid "Inserting a Formula using a Window" msgstr "Einfügen mit Fenster-Steuerung" +#. Tqx4F #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -336,6 +376,7 @@ msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command Insert - Object - Formula without any text selected." msgstr "Um die Oberfläche von $[officename] Math zum Zusammenstellen der Formel zu nutzen, rufen Sie den Befehl Einfügen - Objekt - Formel... auf, ohne dass Text markiert ist." +#. sEBBM #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -344,6 +385,7 @@ msgid "The cursor waits in the Commands window and you can type the formula." msgstr "Der Cursor steht im Kommandofenster und Sie können mit der Eingabe beginnen." +#. rvzhp #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -352,6 +394,7 @@ msgid "You can compose formulas using the Elements pane. Open it with the menu View - Elements if it is not already open." msgstr "Viele Formeln können Sie über die Seitenleiste zusammenstellen. Öffnen Sie sie gegebenenfalls über Ansicht - Seitenleiste." +#. tfpCC #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -360,6 +403,7 @@ msgid "If the Elements pane is open, use F6 to switch from the Commands window to the Elements pane and back." msgstr "Wenn die Seitenleiste geöffnet ist, wechseln Sie mit der Taste F6 zwischen dieser und dem Fenster Kommandos." +#. PxwLi #: keyboard.xhp msgctxt "" "keyboard.xhp\n" @@ -368,6 +412,7 @@ msgid "Elements pane" msgstr "Seitenleiste" +#. iKfcF #: limits.xhp msgctxt "" "limits.xhp\n" @@ -376,6 +421,7 @@ msgid "Working with Limits" msgstr "Arbeiten mit Grenzen" +#. 6WSEC #: limits.xhp msgctxt "" "limits.xhp\n" @@ -384,6 +430,7 @@ msgid "limits;in sums/integralsintegral limits" msgstr "Grenzen; in Summen/IntegralenIntegralgrenzen" +#. jCWYY #: limits.xhp msgctxt "" "limits.xhp\n" @@ -392,6 +439,7 @@ msgid "Working with Limits" msgstr "Mit Grenzen arbeiten" +#. Gtt8e #: limits.xhp msgctxt "" "limits.xhp\n" @@ -400,6 +448,7 @@ msgid "How can I define the limits in a Sum or Integral formula?" msgstr "Wie kann ich Grenzen in einer Summen- oder Integralformel definieren?" +#. kFrLC #: limits.xhp msgctxt "" "limits.xhp\n" @@ -408,6 +457,7 @@ msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document." msgstr "Sie möchten eine Summierungsformel wie \"Summieren von s^k für k = 0 bis n\" an der Cursorposition in einem Writer Textdokument einfügen." +#. 5oKcr #: limits.xhp msgctxt "" "limits.xhp\n" @@ -416,6 +466,7 @@ msgid "Choose Insert - Object - Formula." msgstr "Wählen Sie Einfügen - Objekt - Formel." +#. qAFch #: limits.xhp msgctxt "" "limits.xhp\n" @@ -424,6 +475,7 @@ msgid "You see the Math input window and the Elements pane on the left." msgstr "Sie sehen das Eingabefenster von Math und die Seitenleiste links." +#. DZW2c #: limits.xhp msgctxt "" "limits.xhp\n" @@ -432,6 +484,7 @@ msgid "From the list on the upper part of the Elements pane, select the Operators item." msgstr "Wählen Sie aus der Liste im oberen Teil der Seitenleiste den Eintrag Operatoren." +#. r8sVG #: limits.xhp msgctxt "" "limits.xhp\n" @@ -440,6 +493,7 @@ msgid "In the lower part of the Elements pane, click the Sum icon." msgstr "Klicken Sie im unteren Teil der Seitenleiste auf das Symbol Summe." +#. erGA9 #: limits.xhp msgctxt "" "limits.xhp\n" @@ -448,6 +502,7 @@ msgid "To enable lower and upper limits, click additionally the Upper and Lower Limits icon." msgstr "Um untere und obere Grenzen zu ermöglichen, klicken Sie zusätzlich auf das Symbolobere und untere Grenze." +#. YxM8C #: limits.xhp msgctxt "" "limits.xhp\n" @@ -456,6 +511,7 @@ msgid "In the input window, the first placeholder or marker is selected, and you can start to enter the lower limit:" msgstr "Im Eingabefenster wird der erste Platzhalter beziehungsweise die erste Markierung ausgewählt und Sie können mit der Eingabe der unteren Grenze beginnen:" +#. szLNG #: limits.xhp msgctxt "" "limits.xhp\n" @@ -464,6 +520,7 @@ msgid "Press F4 to advance to the next marker, and enter the upper limit:" msgstr "Drücken Sie F4, um zur nächsten Markierung zu gelangen und geben Sie die obere Grenze ein:" +#. Wh4vB #: limits.xhp msgctxt "" "limits.xhp\n" @@ -472,6 +529,7 @@ msgid "Press F4 to advance to the next marker, and enter the summand:" msgstr "Drücken Sie F4, um zur nächsten Markierung zu gelangen und geben den Summanden ein:" +#. dJvvn #: limits.xhp msgctxt "" "limits.xhp\n" @@ -480,6 +538,7 @@ msgid "Now the formula is complete. Click into your text document outside the formula to leave the formula editor." msgstr "Jetzt ist die Formel komplett. Klicken Sie in Ihrem Textdokument außerhalb der Formel, um den Formeleditor zu verlassen." +#. bFFkA #: limits.xhp msgctxt "" "limits.xhp\n" @@ -488,6 +547,7 @@ msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window." msgstr "Auf die gleiche Art können Sie eine Integralformel mit Grenzen eingeben. Wenn Sie auf das Zeichen der Seitenleiste klicken, wird der zugeordnete Textbefehl in das Fenster Kommandos eingefügt. Falls Sie die Textbefehle kennen, können Sie sie direkt in das Fenster Kommandos eingeben." +#. q8yAH #: limits.xhp msgctxt "" "limits.xhp\n" @@ -496,6 +556,7 @@ msgid "Choose Insert - Object - Formula." msgstr "Wählen Sie Einfügen - Objekt - Formel." +#. VAoyi #: limits.xhp msgctxt "" "limits.xhp\n" @@ -504,6 +565,7 @@ msgid "Click in the input window and enter the following line:" msgstr "Klicken Sie in das Eingabefenster und geben die folgende Zeile ein:" +#. 7rRJW #: limits.xhp msgctxt "" "limits.xhp\n" @@ -512,6 +574,7 @@ msgid "A small gap exists between f(x) and dx, which you can also enter using the Elements pane: select the Formats item from the list on the top, then the Small Gap icon." msgstr "Es existiert eine schmale Lücke zwischen f(x) und dx, welche Sie auch über die Seitenleiste eingeben können: Wählen Sie den Eintrag Formatierungen aus der Liste oben, dann das Symbol für Schmaler Freiraum." +#. FSWqq #: limits.xhp msgctxt "" "limits.xhp\n" @@ -520,6 +583,7 @@ msgid "If you don't like the font of the letters f and x, choose Format - Fonts and select other fonts. Click the Default button to use the new fonts as default from now on." msgstr "Falls Sie die Schriftart der Buchstaben f und x nicht mögen, wählen Sie Format - Schriftarten... und wählen andere Schriftarten. Klicken Sie auf die Schaltfläche Standard, um die neuen Schriftarten als Standard zu benutzen." +#. KBUXj #: limits.xhp msgctxt "" "limits.xhp\n" @@ -528,6 +592,7 @@ msgid "If you need the formula within a line of text, the limits increase the line height. You can choose Format - Text Mode to place the limits besides the Sum or Integral symbol, which reduces the line height." msgstr "Falls Sie die Formel innerhalb einer Textzeile benötigen, erhöhen die Grenzen die Zeilenhöhe. Sie können Format - Textmodus wählen, um die Grenzen neben dem Summen- oder Integralsymbol zu platzieren, was die Zeilenhöhe reduziert." +#. FMfHG #: limits.xhp msgctxt "" "limits.xhp\n" @@ -536,6 +601,7 @@ msgid "Example of Integral and Sum ranges" msgstr "Beispiel für Integral- und Summenbereiche" +#. tfPe4 #: main.xhp msgctxt "" "main.xhp\n" @@ -544,6 +610,7 @@ msgid "Instructions for Using $[officename] Math" msgstr "Anleitungen für $[officename] Math" +#. FfhxL #: main.xhp msgctxt "" "main.xhp\n" @@ -552,6 +619,7 @@ msgid "$[officename] Math;general instructionsinstructions; $[officename] MathEquation Editor, see $[officename] Math" msgstr "$[officename] Math; allgemeine HinweiseAnleitungen; $[officename] MathFormel Editor, siehe $[officename] Math" +#. DyNdG #: main.xhp msgctxt "" "main.xhp\n" @@ -560,6 +628,7 @@ msgid "Instructions for Using $[officename] Math" msgstr "Anleitungen für $[officename] Math" +#. ArDuV #: main.xhp msgctxt "" "main.xhp\n" @@ -568,6 +637,7 @@ msgid "Entering and Editing Formulas" msgstr "Formeln eingeben und bearbeiten" +#. 74qEh #: newline.xhp msgctxt "" "newline.xhp\n" @@ -576,6 +646,7 @@ msgid "Entering Line Breaks" msgstr "Zeilenumbruch eingeben" +#. S8pTx #: newline.xhp msgctxt "" "newline.xhp\n" @@ -584,6 +655,7 @@ msgid "line breaks; in formulasformulas;line breakswrapping text;in formulas" msgstr "Zeilenumbrüche; in FormelnFormeln; ZeilenumbrücheUmbruch von Text; in Formeln" +#. Uaq5F #: newline.xhp msgctxt "" "newline.xhp\n" @@ -592,6 +664,7 @@ msgid "Entering Line Breaks" msgstr "Zeilenumbruch eingeben" +#. gLLUF #: newline.xhp msgctxt "" "newline.xhp\n" @@ -600,6 +673,7 @@ msgid "How to write formulas in $[officename] Math over two lines (with manual line break):" msgstr "So schreiben Sie eine Formel im $[officename] Math zweizeilig (mit manuellem Zeilenumbruch):" +#. hYDBe #: newline.xhp msgctxt "" "newline.xhp\n" @@ -608,6 +682,7 @@ msgid "Create a line break by using the \"newline\" command. Everything coming after the line break is placed on the next line." msgstr "Ein Zeilenumbruch kann mit dem Befehl \"newline\" erzeugt werden. Alles, was dahinter steht, befindet sich in einer neuen Zeile." +#. fhtKa #: parentheses.xhp msgctxt "" "parentheses.xhp\n" @@ -616,6 +691,7 @@ msgid "Inserting Brackets" msgstr "Klammern eingeben" +#. CeDFE #: parentheses.xhp msgctxt "" "parentheses.xhp\n" @@ -624,6 +700,7 @@ msgid "brackets; inserting in %PRODUCTNAME Mathinserting;bracketsdistances between brackets" msgstr "Klammern; in %PRODUCTNAME Math eingebenEinfügen; KlammernAbstände zwischen Klammern" +#. XkEUk #: parentheses.xhp msgctxt "" "parentheses.xhp\n" @@ -632,6 +709,7 @@ msgid "Inserting Brackets" msgstr "Klammern eingeben" +#. cAGdF #: parentheses.xhp msgctxt "" "parentheses.xhp\n" @@ -640,6 +718,7 @@ msgid "In %PRODUCTNAME Math, can brackets be shown separately so that the distance between them is freely definable?" msgstr "Sind in %PRODUCTNAME Math Klammern auch einzeln und in frei definierbarer Größe darstellbar?" +#. L2fFP #: parentheses.xhp msgctxt "" "parentheses.xhp\n" @@ -648,6 +727,7 @@ msgid "You can set individual brackets using \"left\" and \"right\", but the distance between the brackets will not be fixed, as they adapt to the argument. Nevertheless, there is a way to display brackets so that the distance between them is fixed. To accomplish this, place a \"\\\" (backslash) before the normal brackets. These brackets now behave like any other symbol and the alignment is the same as with other symbols:" msgstr "Mit \"left\" und \"right\" gesetzte Klammern haben keine feste Größe, da sie sich dem Argument anpassen. Um einzelne Klammern mit fester Größe darzustellen, stellen Sie den Klammern einen Rückstrich \"\\\" (Backslash) voran. Die Klammern verhalten sich dann wie andere Symbole und haben nicht mehr die besondere Funktionalität von Klammern, das heißt sie wirken nicht gruppierend:" +#. AECF4 #: text.xhp msgctxt "" "text.xhp\n" @@ -656,6 +736,7 @@ msgid "Entering Text" msgstr "Text eingeben" +#. FGbj6 #: text.xhp msgctxt "" "text.xhp\n" @@ -664,6 +745,7 @@ msgid "text strings; entering in $[officename] Mathdirect text; entering in $[officename] Mathinserting;text in $[officename] Math" msgstr "Zeichenketten; eingeben in $[officename] MathDirekter Text; eingeben in $[officename] MathEinfügen; Text in $[officename] Math" +#. XRDUC #: text.xhp msgctxt "" "text.xhp\n" @@ -672,6 +754,7 @@ msgid "Entering Text" msgstr "Text eingeben" +#. FGjG4 #: text.xhp msgctxt "" "text.xhp\n" @@ -680,6 +763,7 @@ msgid "How to enter direct text strings that do not get interpreted?" msgstr "So geben Sie direkt Zeichenketten ein, die nicht interpretiert werden." +#. 8AWkB #: text.xhp msgctxt "" "text.xhp\n" @@ -688,6 +772,7 @@ msgid "Some text strings get interpreted as operators automatically. Sometimes this is not what you want. If you want to write W* (a letter with a superscripted asterisk), the asterisk will be interpreted as a multiplication operator. Enclose the direct text within double quotes or add spaceholders." msgstr "Einige Zeichenketten werden automatisch als Operatoren interpretiert. Manchmal ist dies nicht erwünscht. Wenn Sie W* (ein Buchstabe mit einem hochgestellten Stern) schreiben, wird der Stern als ein Multiplikationsoperator interpretiert werden. Schließen Sie direkten Text innerhalb doppelter Anführungszeichen ein oder fügen Sie leere Gruppierungsklammen hinzu." +#. HCpMB #: text.xhp msgctxt "" "text.xhp\n" @@ -696,6 +781,7 @@ msgid "Examples:" msgstr "Beispiele:" +#. aKbTy #: text.xhp msgctxt "" "text.xhp\n" @@ -704,6 +790,7 @@ msgid "An imported MathType formula contains the following string" msgstr "Eine importierte MathType-Formel enthält die folgende Zeichenkette" +#. pgDrE #: text.xhp msgctxt "" "text.xhp\n" @@ -712,6 +799,7 @@ msgid "If you have set up Math to convert imported MathType formulas (in %PRODUCTNAME - PreferencesTools - Options - Load/Save - Microsoft Office), you see the formula with a placeholder instead of the asterisk." msgstr "Wenn Sie (unter %PRODUCTNAME - EinstellungenExtras - Optionen... - Laden/Speichern - Microsoft Office), eingestellt haben, dass Math importierte MathType Formeln umwandelt, sehen Sie die Formel mit einem Platzhalter anstatt eines Sterns." +#. VXaga #: text.xhp msgctxt "" "text.xhp\n" @@ -720,6 +808,7 @@ msgid "Change {*} to {} * {} as in the following formula:" msgstr "Ändern Sie {*} in {} * {} wie in der folgenden Formel:" +#. HGq8j #: text.xhp msgctxt "" "text.xhp\n" @@ -728,6 +817,7 @@ msgid "You can also use W^\"*\" to enter the character as direct text." msgstr "Sie können auch W^\"*\" zur Eingabe der Zeichen als direkten Text benutzen." +#. qELLZ #: text.xhp msgctxt "" "text.xhp\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1472,7 +1472,7 @@ "par_id3154275\n" "help.text" msgid "Choose Edit - Find & Replace - Format - Text Flow tab." -msgstr "Wählen Sie Bearbeiten - Suchen & Ersetzen... - Schaltfläche: Format... - Register: Textfluss." +msgstr "Wählen Sie Bearbeiten – Suchen und ersetzen… – Schaltfläche: Format… – Register: Textfluss." #. ihtMU #: 00000405.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -2597,7 +2597,7 @@ "hd_id3156038\n" "help.text" msgid "Categories" -msgstr "Bereiche..." +msgstr "Kategorien…" #. dgAGC #: 02120000.xhp @@ -2615,7 +2615,7 @@ "hd_id3159217\n" "help.text" msgid "Edit Categories" -msgstr "Bereiche bearbeiten" +msgstr "Kategorien bearbeiten" #. DeMH7 #: 02120000.xhp @@ -12002,7 +12002,7 @@ "par_id3143270\n" "help.text" msgid "Enter the number of heading levels to include in the index." -msgstr "Geben Sie an, wie viele Überschriftebenen in das Verzeichnis aufgenommen werden sollen." +msgstr "Geben Sie an, wie viele Überschriftenebenen in das Verzeichnis aufgenommen werden sollen." #. BAXZH #: 04120211.xhp @@ -12092,7 +12092,7 @@ "par_id3145776\n" "help.text" msgid "Opens the Assign Styles dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index." -msgstr "Öffnet den Dialog Vorlagen zuweisen, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll." +msgstr "Öffnet den Dialog Vorlagen zuweisen, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftenebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll." #. oGe7C #: 04120211.xhp @@ -15935,7 +15935,7 @@ "hd_id3147295\n" "help.text" msgid "Display drop caps" -msgstr "Initialien anzeigen" +msgstr "Initialen anzeigen" #. QTU6Z #: 05030400.xhp @@ -22757,7 +22757,7 @@ "par_id3154829\n" "help.text" msgid "Click Apply to apply the selected Paragraph Style to the defined context." -msgstr "" +msgstr "Klicken Sie auf Anwenden, um die ausgewählte Absatzvorlage auf den definierten Kontext anzuwenden." #. e2L8Z #: 05140000.xhp @@ -22766,7 +22766,7 @@ "tit\n" "help.text" msgid "Styles (Sidebar)" -msgstr "" +msgstr "Formatvorlagen (Seitenleiste)" #. yJjGG #: 05140000.xhp @@ -22784,7 +22784,7 @@ "hd_id3154505\n" "help.text" msgid "Styles (Sidebar)" -msgstr "" +msgstr "Formatvorlagen (Seitenleiste)" #. YEFkv #: 05140000.xhp @@ -22973,7 +22973,7 @@ "par_id3132646\n" "help.text" msgid "Icon Table Styles" -msgstr "" +msgstr "Symbol für Tabellenvorlagen" #. w5Cs5 #: 05140000.xhp @@ -22982,7 +22982,7 @@ "par_id3129390\n" "help.text" msgid "Table Styles" -msgstr "" +msgstr "Tabellenvorlagen" #. DzY6Z #: 05140000.xhp @@ -22991,7 +22991,7 @@ "par_id3115361\n" "help.text" msgid "Displays formatting styles for tables. Use table styles to apply borders, backgrounds, fonts, alignment, and number formats to tables." -msgstr "" +msgstr "Zeigt die Formatvorlagen für Tabellen. Verwenden Sie Tabellenvorlagen, um Rahmen, Hintergründe, Schriftarten, Ausrichtung und Zahlenformate auf Tabellen anzuwenden." #. 7Eid5 #: 05140000.xhp @@ -23009,7 +23009,7 @@ "par_id3145786\n" "help.text" msgid "Fill Format Mode" -msgstr "" +msgstr "Gießkannenmodus" #. q3tQu #: 05140000.xhp @@ -23054,7 +23054,7 @@ "par_idN109DA\n" "help.text" msgid "New Style from Selection" -msgstr "" +msgstr "Neue Formatvorlage aus Auswahl" #. L5UYB #: 05140000.xhp @@ -23072,7 +23072,7 @@ "par_idN10A04\n" "help.text" msgid "Update Selected Style" -msgstr "" +msgstr "Ausgewählte Formatvorlage aktualisieren" #. JZgJw #: 05140000.xhp @@ -23108,7 +23108,7 @@ "hd_id3147167\n" "help.text" msgid "How to apply a Character style to a selected text" -msgstr "" +msgstr "Um eine Zeichenvorlage auf einen ausgewählten Text anzuwenden:" #. mCzuE #: 05140000.xhp @@ -23117,7 +23117,7 @@ "par_id3151264\n" "help.text" msgid "Select the text." -msgstr "" +msgstr "Markieren Sie den Text." #. ZfDP6 #: 05140000.xhp @@ -23126,7 +23126,7 @@ "par_id3150756\n" "help.text" msgid "Double-click the desired character style in the Styles window." -msgstr "" +msgstr "Klicken Sie doppelt auf die gewünschte Zeichenvorlage in der Seitenleiste Formatvorlagen." #. EkiBU #: 05140000.xhp @@ -23135,7 +23135,7 @@ "hd_id3147184\n" "help.text" msgid "How to apply a Paragraph style" -msgstr "" +msgstr "Um eine Absatzvorlage anzuwenden:" #. iXDWY #: 05140000.xhp @@ -23144,7 +23144,7 @@ "par_id3153564\n" "help.text" msgid "Place the cursor in the paragraph, or select multiple paragraphs." -msgstr "" +msgstr "Platzieren Sie den Cursor im Absatz oder markieren Sie mehrere Absätze." #. ZxnWG #: 05140000.xhp @@ -23153,7 +23153,7 @@ "par_id3150735\n" "help.text" msgid "Double-click the desired paragraph style in the Styles window." -msgstr "" +msgstr "Klicken Sie doppelt auf die gewünschte Absatzvorlage in der Seitenleiste Formatvorlagen." #. Gn8ka #: 05140000.xhp @@ -23162,7 +23162,7 @@ "par_idN1071D\n" "help.text" msgid "You can assign shortcut keys to Styles from the Tools - Customize - Keyboard tab. Some shortcuts are predefined. Command+0Ctrl+0 (zero) applies the Text Body paragraph style. Heading 1 through Heading 5 paragraph styles can be applied by using the CommandCtrl key and the heading number. For example Command+2Ctrl+2 applies the Heading 2 paragraph style." -msgstr "" +msgstr "Sie können Formatvorlagen Tastenkombinationen zuweisen, indem Sie Extras – Anpassen…Register: Tastatur wählen. Ein paar Tastenkombinationen sind vordefiniert. Befehl+0Strg+0 (Null) weist die Absatzvorlage Textkörper zu. Die Absatzvorlagen Überschrift 1 bis Überschrift 5 können mit BefehlStrg und der Überschriftnummer zugewiesen werden. Beispielsweise weist Befehl+2Strg+2 die Absatzvorlage Überschrift 2 zu." #. jynAF #: 05140000.xhp @@ -23171,7 +23171,7 @@ "par_id3154643\n" "help.text" msgid "The Formatting (Styles) toolbar contains icons for applying and modifying styles." -msgstr "" +msgstr "Die Symbolleiste Formatierungen (Formatvorlagen) enthält Symbole, um Formatvorlagen zuzuweisen und zu ändern." #. fvko5 #: 05140000.xhp @@ -23207,7 +23207,7 @@ "hd_id3153925\n" "help.text" msgid "AutoCorrect" -msgstr "AutoKorrektur" +msgstr "AutoKorrektur" #. bLXgC #: 05150000.xhp @@ -23279,7 +23279,7 @@ "par_id3148488\n" "help.text" msgid "You can use AutoCorrect to format text documents and plain ASCII text files, but not characters that you have manually formatted. Automatic word completion only occurs after you type a word for the second time in a document." -msgstr "Sie können AutoKorrektur verwenden, um Textdokumente und reine ASCII-Textdateien zu formatieren, nicht jedoch für Zeichen, die Sie manuell formatiert haben. Die automatische Wortergänzung findet erst statt, wenn Sie ein Wort zweimal in einem Dokument eingegeben haben." +msgstr "Sie können AutoKorrektur verwenden, um Textdokumente und reine ASCII-Textdateien zu formatieren, nicht jedoch für Zeichen, die Sie manuell formatiert haben. Die automatische Wortergänzung findet erst statt, wenn Sie ein Wort zweimal in einem Dokument eingegeben haben." #. aZA7m #: 05150100.xhp @@ -23288,7 +23288,7 @@ "par_id3147407\n" "help.text" msgid "To reverse the last AutoCorrect action, choose Edit - Undo." -msgstr "Um die letzte AutoKorrektur-Aktion rückgängig zu machen, wählen Sie Bearbeiten - Rückgängig." +msgstr "Um die letzte AutoKorrektur-Aktion rückgängig zu machen, wählen Sie Bearbeiten - Rückgängig." #. ofrX8 #: 05150100.xhp @@ -23297,7 +23297,7 @@ "par_id3150536\n" "help.text" msgid "Other AutoCorrect rules" -msgstr "Weitere Regeln zur AutoKorrektur" +msgstr "Weitere Regeln zur AutoKorrektur" #. CjDuT #: 05150101.xhp @@ -23468,7 +23468,7 @@ "par_id3150707\n" "help.text" msgid "Deletes the selected table style. You cannot delete \"Default Table Style\"." -msgstr "" +msgstr "Löscht die ausgewählte Tabellenvorlage. Sie können keine \"Standard-Tabellenvorlagen\" löschen." #. 3rqAx #: 05150101.xhp @@ -23486,7 +23486,7 @@ "par_id3149490\n" "help.text" msgid "Changes the name of the selected table style. You cannot rename \"Default Table Style\"." -msgstr "" +msgstr "Ändert den Namen der ausgewählten Tabellenvorlage. Sie können keine \"Standard-Tabellenvorlagen\" umbenennen." #. 2PEkJ #: 05150101.xhp @@ -23504,7 +23504,7 @@ "par_id3154477\n" "help.text" msgid "Select the formatting attributes to include in the selected table style." -msgstr "" +msgstr "Wählen Sie die für die ausgewählte Tabellenvorlage anzuwendenden Formatierungsattribute." #. XRRp9 #: 05150101.xhp @@ -23567,7 +23567,7 @@ "hd_id3149690\n" "help.text" msgid "Borders" -msgstr "" +msgstr "Rahmen" #. yZ9HG #: 05150101.xhp @@ -23909,7 +23909,7 @@ "tit\n" "help.text" msgid "Load Styles" -msgstr "Vorlagen laden" +msgstr "Formatvorlagen laden" #. BFL9X #: 05170000.xhp @@ -23918,7 +23918,7 @@ "hd_id3151242\n" "help.text" msgid "Load Styles" -msgstr "" +msgstr "Formatvorlagen laden" #. DSm5D #: 05170000.xhp @@ -24008,7 +24008,7 @@ "hd_id3147565\n" "help.text" msgid "Pages" -msgstr "" +msgstr "Seiten" #. AjBQj #: 05170000.xhp @@ -24071,7 +24071,7 @@ "hd_id3153668\n" "help.text" msgid "From File" -msgstr "" +msgstr "Aus Datei…" #. 8Npm7 #: 05170000.xhp @@ -24593,7 +24593,7 @@ "par_id3147512\n" "help.text" msgid "Saves or loads a chapter numbering format. A saved chapter numbering format is available to all text documents." -msgstr "" +msgstr "Speichert oder lädt ein Kapitelnummerierungsformat. Ein gespeichertes Kapitelnummerierungsformat ist in allen Textdokumenten verfügbar." #. Eoxwy #: 06060000.xhp @@ -24602,7 +24602,7 @@ "par_id3150979\n" "help.text" msgid "The Load/Save button is only available for chapter numbering. For numbered or bulleted list styles, modify the numbering styles of the paragraphs." -msgstr "" +msgstr "Die Schaltfläche Laden/Speichern ist nur für Kapitelnummerierungen verfügbar. Für Listenvorlagen mit Nummerierungen oder Aufzählungszeichen ändern Sie die Listenvorlage des Absatzes." #. EV2DT #: 06060000.xhp @@ -24629,7 +24629,7 @@ "hd_id3153675\n" "help.text" msgid "Save As" -msgstr "Speichern als" +msgstr "Speichern als…" #. LsqXh #: 06060000.xhp @@ -24701,7 +24701,7 @@ "par_id3150018\n" "help.text" msgid "Click the chapter and outline level that you want to modify, and then specify the numbering options for the level. To apply the numbering options, except for paragraph style, to all the levels, click \"1-10\"." -msgstr "" +msgstr "Klicken Sie auf die zu ändernde Kapitel- und Gliederungsebene und legen Sie die Nummerierungsoptionen der Ebene fest. Um die Nummerierungsoptionen, bis auf die Absatzvorlage, für alle Ebenen festzulegen, klicken Sie auf \"1 – 10\"." #. s4LDs #: 06060100.xhp @@ -24719,7 +24719,7 @@ "par_id3150930\n" "help.text" msgid "Specify the formatting for the selected outline level." -msgstr "" +msgstr "Hier legen Sie die Formatierung der ausgewählten Gliederungsebene fest." #. Z3udV #: 06060100.xhp @@ -25043,7 +25043,7 @@ "tit\n" "help.text" msgid "Footnote Settings" -msgstr "" +msgstr "Fußnoteneinstellungen" #. yXZUg #: 06080100.xhp @@ -25052,7 +25052,7 @@ "hd_id3154705\n" "help.text" msgid "Footnote Settings" -msgstr "" +msgstr "Fußnoteneinstellungen" #. hBHjS #: 06080100.xhp @@ -25061,7 +25061,7 @@ "par_id3149500\n" "help.text" msgid "Specifies the formatting for footnotes." -msgstr "" +msgstr "Legt die Formatierung für Fußnoten fest." #. JkEHS #: 06080100.xhp @@ -25070,7 +25070,7 @@ "par_id3154560\n" "help.text" msgid "To set additional option for footnotes, choose Format - Page Style, and then click the Footnote tab." -msgstr "" +msgstr "Um zusätzliche Optionen für Fußnoten festzulegen, wählen Sie Format – Seitenvorlage… und das Register Fußnote." #. mGXqS #: 06080100.xhp @@ -25097,7 +25097,7 @@ "par_id3150568\n" "help.text" msgid "Select the numbering style that you want to use." -msgstr "" +msgstr "Wählen Sie den gewünschten Nummerierungsstil aus." #. cqBBB #: 06080100.xhp @@ -25448,7 +25448,7 @@ "hd_id3155871\n" "help.text" msgid "Styles" -msgstr "Stil" +msgstr "Vorlagen" #. VbWRX #: 06080100.xhp @@ -25466,7 +25466,7 @@ "hd_id3147418\n" "help.text" msgid "Paragraph" -msgstr "Absatz..." +msgstr "Absatz" #. zLPuG #: 06080100.xhp @@ -25475,7 +25475,7 @@ "par_id3147620\n" "help.text" msgid "Select the paragraph style for the footnote text. Only special styles can be selected." -msgstr "" +msgstr "Wählen Sie die Absatzvorlage für den Fußnotentext. Nur Vorlagen für Sonderbereiche können ausgewählt werden." #. 3bbSC #: 06080100.xhp @@ -25610,7 +25610,7 @@ "tit\n" "help.text" msgid "Endnote Settings" -msgstr "" +msgstr "Endnoteneinstellungen" #. i4S6A #: 06080200.xhp @@ -25619,7 +25619,7 @@ "hd_id3156321\n" "help.text" msgid "Endnote Settings" -msgstr "" +msgstr "Endnoteneinstellungen" #. sVpC6 #: 06080200.xhp @@ -25700,7 +25700,7 @@ "hd_id3152952\n" "help.text" msgid "Styles" -msgstr "Stil" +msgstr "Vorlagen" #. 7BMFG #: 06080200.xhp @@ -25709,7 +25709,7 @@ "par_id3150970\n" "help.text" msgid "To ensure a uniform appearance for the endnotes in your document, assign a paragraph style." -msgstr "" +msgstr "Um ein einheitliches Aussehen der Endnoten in Ihrem Dokument sicherzustellen, weisen Sie eine Absatzvorlage zu." #. TGC8v #: 06080200.xhp @@ -25718,7 +25718,7 @@ "hd_id3151312\n" "help.text" msgid "Paragraph" -msgstr "Absatz..." +msgstr "Absatz" #. DERAY #: 06080200.xhp @@ -25727,7 +25727,7 @@ "par_id3147526\n" "help.text" msgid "Select the paragraph style for the endnote text. Only special styles can be selected." -msgstr "" +msgstr "Wählen Sie eine Absatzvorlage für den Endnotentext aus. Nur Vorlagen für Sonderbereiche können ausgewählt werden." #. 9WDi7 #: 06080200.xhp @@ -27122,7 +27122,7 @@ "tit\n" "help.text" msgid "Position (List Styles - Legacy)" -msgstr "" +msgstr "Position (Listenvorlagen – Veraltet)" #. 6MuMJ #: legacynumbering.xhp @@ -27131,7 +27131,7 @@ "bm_id601579742532876\n" "help.text" msgid "numbering;OpenOffice.orgOpenOffice.org legacy numbering" -msgstr "" +msgstr "Nummerierung; OpenOffice.orgOpenOffice.org; veraltete Nummerierung" #. 6EfGu #: legacynumbering.xhp @@ -27140,7 +27140,7 @@ "hd_id761579742307751\n" "help.text" msgid "Position (List Styles - Legacy)" -msgstr "" +msgstr "Position (Listenvorlagen – Veraltet)" #. VFBKw #: legacynumbering.xhp @@ -27149,7 +27149,7 @@ "par_id5004119\n" "help.text" msgid "%PRODUCTNAME Writer uses the position controls shown here when opening documents that use a different method for positioning and spacing. For default controls see Position (List Styles)." -msgstr "" +msgstr "%PRODUCTNAME Writer verwendet die hier gezeigten Positionssteuerelemente, wenn Dokumente geöffnet werden, die eine andere Methode zum Positionieren und für Abstände verwenden. Für die Standard-Steuerelemente siehe Position (Listenvorlagen)." #. VAeg9 #: legacynumbering.xhp @@ -27158,7 +27158,7 @@ "hd_id3154422\n" "help.text" msgid "Indent" -msgstr "" +msgstr "Einzug" #. rGJJs #: legacynumbering.xhp @@ -27167,7 +27167,7 @@ "par_id3144438\n" "help.text" 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 "" +msgstr "Geben Sie den Abstand zwischen dem linken Seitenrand (oder dem linken Rand des Textobjekts) und dem linken Rand des Nummerierungsbereichs ein. Wenn die aktuelle Absatzvorlage einen Einzug verwendet, wird der hier eingegebene Betrag dem Einzug hinzugefügt." #. oaSPS #: legacynumbering.xhp @@ -27176,7 +27176,7 @@ "hd_id3155179\n" "help.text" msgid "Relative" -msgstr "" +msgstr "Relativ" #. CH33W #: legacynumbering.xhp @@ -27185,7 +27185,7 @@ "par_id3146137\n" "help.text" msgid "Indents the current level relative to the previous level in the list hierarchy." -msgstr "" +msgstr "Rückt die aktuelle Ebene relativ zur vorherigen Ebene in der Listenhierarchie ein." #. cK83Z #: legacynumbering.xhp @@ -27194,7 +27194,7 @@ "hd_id3150245\n" "help.text" msgid "Width of numbering" -msgstr "" +msgstr "Breite der Nummerierung" #. TtTBG #: legacynumbering.xhp @@ -27203,7 +27203,7 @@ "par_id3150129\n" "help.text" msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area." -msgstr "" +msgstr "Geben Sie die Breite des Nummerierungsbereichs ein. Das Nummerierungssymbol kann in diesem Bereich links, mittig oder rechts ausgerichtet sein." #. 4XWNy #: legacynumbering.xhp @@ -27212,7 +27212,7 @@ "hd_id3156194\n" "help.text" msgid "Minimum space between numbering and text." -msgstr "" +msgstr "Minimaler Abstand zwischen Nummerierung und Text." #. EEBBt #: legacynumbering.xhp @@ -27221,7 +27221,7 @@ "par_id3147574\n" "help.text" 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 "" +msgstr "Die Ausrichtung des Nummerierungssymbols wird angepasst, um den gewünschten Mindestabstand zu erhalten. Wenn dies nicht möglich ist, weil der Nummerierungsbereich nicht breit genug ist, wird der Textanfang angepasst." #. 482Rm #: legacynumbering.xhp @@ -27230,7 +27230,7 @@ "par_id621580154011473\n" "help.text" msgid "Aligns the numbering symbol left, center, or right in the numbering area. The position might be adjusted to maintain the minimum space." -msgstr "" +msgstr "Richtet das Nummerierungssymbol links, mittig oder rechts im Nummerierungsbereich aus. Die Position kann angepasst werden, um den Mindestabstand beizubehalten." #. VPLZn #: legacynumbering.xhp @@ -27239,7 +27239,7 @@ "par_id3116235\n" "help.text" msgid "Position (List Styles)" -msgstr "" +msgstr "Position (Listenvorlagen)" #. bETAX #: legacynumbering.xhp @@ -27248,7 +27248,7 @@ "par_id3199228\n" "help.text" msgid "Paragraph alignment" -msgstr "" +msgstr "Absatzausrichtung" #. zgLgx #: legacynumbering.xhp @@ -27257,7 +27257,7 @@ "par_id3194378\n" "help.text" msgid "Indenting Paragraphs" -msgstr "" +msgstr "Absätze einrücken" #. mtBWM #: mailmerge00.xhp @@ -31109,7 +31109,7 @@ "par_id831516906589936\n" "help.text" msgid "If the watermark in use is a text inserted by the Format - Watermark menu command or by the document classification settings, you can edit the contents and settings on opening the watermark dialog." -msgstr "Falls das verwendete Wasserzeichen ein Text ist, der über Format - Wasserzeichen oder über die Dokumentklassifizierungs-Einstellungen eingefügt wurde, können Sie den Inhalt und die Einstellungen über das Öffnen des Dialogs Wasserzeichendialogs bearbeiten." +msgstr "Wenn das verwendete Wasserzeichen ein Text ist, der über Format – Wasserzeichen… oder über die Dokumentenklassifizierungs-Einstellungen eingefügt wurde, können Sie den Inhalt und die Einstellungen über das Öffnen des Dialogs Wasserzeichen bearbeiten." #. FF8p2 #: watermark.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-03-13 12:06+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -968,7 +968,7 @@ "hd_id3148414\n" "help.text" msgid "CommandCtrl+multiplication sign * (only on number pad)" -msgstr "BefehlStrg+Sternchen (*) (nur auf dem Nummernblock)" +msgstr "BefehlStrg+Multiplikationszeichen (*) (nur auf dem Nummernblock)" #. Pjfzz #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -500,7 +500,7 @@ "hd_id3147812\n" "help.text" msgid "Turning Off AutoCorrect" -msgstr "AutoKorrektur abschalten" +msgstr "AutoKorrektur abschalten" #. ojUKt #: auto_off.xhp @@ -842,7 +842,7 @@ "hd_id3152887\n" "help.text" msgid "Adding Exceptions to the AutoCorrect List" -msgstr "Hinzufügen von Ausnahmen zur AutoKorrektur-Liste" +msgstr "Hinzufügen von Ausnahmen zur AutoKorrektur-Liste" #. C8LFD #: autocorr_except.xhp @@ -6071,7 +6071,7 @@ "par_idN106C6\n" "help.text" msgid "If you want to place mail merge fields anywhere else in the document select the corresponding column in your address data source and then drag and drop the column header into the document where you would like the field to be. Be sure to select the entire column." -msgstr "Um Seriendruckfelder in einem Dokument zu platzieren, wählen Sie die korrespondierende Spalte in Ihrer Addressdatenquelle aus und fügen die Kopfzeile der Spalte per \"drag and drop\" an dder gewünschte Stelle des Dokumentes ein. Wählen Sie dabei die gesamte Spalte aus." +msgstr "Um Seriendruckfelder in einem Dokument zu platzieren, wählen Sie die korrespondierende Spalte in Ihrer Addressdatenquelle aus und fügen die Kopfzeile der Spalte per Ziehen-und-Ablegen an der gewünschte Stelle des Dokumentes ein. Wählen Sie dabei die gesamte Spalte aus." #. xbE3K #: form_letters_main.xhp @@ -6107,7 +6107,7 @@ "hd_id3145246\n" "help.text" msgid "Master Documents and Subdocuments" -msgstr "Globaldokumente und Teildokumente" +msgstr "Global- und Teildokumente" #. uwqGi #: globaldoc.xhp @@ -7304,7 +7304,7 @@ "par_id3154853\n" "help.text" msgid "Click in the paragraph where you want to add the text." -msgstr "Klicken Sie in den Absatz, in den Sie den Text einfügen möchten." +msgstr "Klicken Sie in den Absatz, in dem Sie den Text einfügen möchten." #. snFHJ #: hidden_text.xhp @@ -7727,7 +7727,7 @@ "par_id0302200910262850\n" "help.text" msgid "Enable the special features of complex text layout (CTL) languages: Choose %PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages and check Enabled for complex text layout (CTL). Click OK." -msgstr "Aktivieren Sie die besondere Funktion Complex Text Layout (CTL) für Sprachen: Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen... - Spracheinstellungen - Sprachen und markieren Sie Complex Text Layout (CTL). Klicken Sie auf OK." +msgstr "Aktivieren Sie die besondere Funktion Komplexes Textlayout (CTL) für Sprachen: Wählen Sie %PRODUCTNAME - EinstellungenExtras - Optionen… - Spracheinstellungen - Sprachen und markieren Sie Komplexes Textlayout (CTL). Klicken Sie auf OK." #. CiY92 #: hyphen_prevent.xhp @@ -9977,7 +9977,7 @@ "par_id3156240\n" "help.text" msgid "Click an entry in the Categories list, then click the template containing the styles that you want to use in the Templates list, and then click OK." -msgstr "Wählen Sie einen Eintrag aus der Liste Bereiche aus, klicken Sie anschließend die Vorlage an, welche die in der Liste Vorlagen zu verwendenden Formatvorlagen enthält, und klicken Sie dann auf OK." +msgstr "Wählen Sie einen Eintrag aus der Liste Kategorien aus, klicken Sie anschließend die Vorlage an, welche die in der Liste Vorlagen zu verwendenden Formatvorlagen enthält, und klicken Sie dann auf OK." #. rc6un #: load_styles.xhp @@ -11435,7 +11435,7 @@ "par_id2632831\n" "help.text" msgid "Choose Format - Paragraph - Text flow tab." -msgstr "Wählrn Sie Format – Absatz… – Register: Textfluss." +msgstr "Wählen Sie Format – Absatz… – Register: Textfluss." #. LLNW3 #: pagenumbers.xhp @@ -15035,7 +15035,7 @@ "par_id3856013\n" "help.text" msgid "Save the *.oxt extension file to your harddrive, then double-click the *.oxt file in your file manager. Alternatively, in %PRODUCTNAME choose Tools - Extension Manager to open the Extension Manager, click Add and browse to the file." -msgstr "Speichern Sie die Datei mit der Erweiterung *.oxt auf Ihrer Festplatte ab. Doppelklicken Sie dann im Dateimanager auf die *.oxt Datei. Sie können auch in %PRODUCTNAME den Extension Manager öffnen, indem Sie Extras - Extension Manager... wählen, dann Hinzufügen klicken und die Datei auswählen." +msgstr "Speichern Sie die Datei mit der Erweiterung *.oxt auf Ihrer Festplatte ab. Doppelklicken Sie dann im Dateimanager auf die *.oxt-Datei. Sie können auch in %PRODUCTNAME den Extension-Manager öffnen, indem Sie Extras - Extension-Manager… wählen, dann Hinzufügen klicken und die Datei auswählen." #. hAPoK #: smarttags.xhp @@ -15656,7 +15656,7 @@ "par_id3154705\n" "help.text" msgid "Tools - AutoCorrect - Replace" -msgstr "Extras - AutoKorrektur-Optionen - Ersetzen" +msgstr "Extras - AutoKorrektur - AutoKorrektur-Optionen… - Register: Ersetzungen" #. 6YCYG #: table_cellmerge.xhp @@ -17375,7 +17375,7 @@ "par_id6924649\n" "help.text" msgid "Use the Text tool on the Drawing toolbar." -msgstr "Verwenden Sie das Textwerkzeug in der Symbolleiste Zeichnennung." +msgstr "Verwenden Sie das Textwerkzeug in der Symbolleiste Zeichnung." #. K8DGN #: text_emphasize.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter/librelogo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -167,7 +167,7 @@ "par_345\n" "help.text" msgid "The “magic wand” icon sets 2-page layout for program editing, expands and converts to uppercase the abbreviated, lowercase Logo commands in the Writer document. Change the language of the document (%PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages - Western) and click on this icon to translate the Logo program to the selected language." -msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Begehle und konvertiert Logo-Befehle innerhalb eines Writer Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – Spracheinstellungen – Sprache – Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzen." +msgstr "Das Icon mit dem Zauberstab setzt ein doppelseitiges Layout für die Programmbearbeitung, erweitert abgekürzte Logo-Befehle und konvertiert Logo-Befehle innerhalb eines Writer-Dokuments in Großbuchstaben. Wechseln Sie die Sprache des Dokuments (wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – Spracheinstellungen – Sprache – Westlich) und klicken Sie auf diese Schaltfläche, um den Logo-Programmcode in die gewählte Sprache zu übersetzen." #. UXKqW #: LibreLogo.xhp @@ -248,7 +248,7 @@ "par_430\n" "help.text" msgid "LibreLogo drawings and programs use the same Writer document. The LibreLogo canvas is on the first page of the Writer document. You can insert a page break before the LibreLogo programs and set page zoom using the “magic wand” icon of the Logo toolbar, also change the font size for a comfortable 2-page layout for LibreLogo programming: left (first) page is the canvas, right (second) page is the LibreLogo program editor." -msgstr "LibreLogo-Zeichnungen und -Programmcode benutzen dasselbe Writer Dokument. Die LibreLogo-Zeichenfläche befindet sich auf der ersten Seite des Writer Dokuments. Sie können einen Seitenumbruch vor dem LibreLogo-Programmcode einfügen und mittels des Icons mit dem Zauberstab aus der Symbolleiste Logo die Ansicht so optimieren, dass ein komfortables doppelseitiges Layout für die Ansicht der LibreLogo-Programmierung zur Verfügung steht: Links (erste Seite) die Zeichenfläche, rechts (zweite Seite) der LibreLogo-Programmcode." +msgstr "LibreLogo-Zeichnungen und -Programmcode benutzen dasselbe Writer-Dokument. Die LibreLogo-Zeichenfläche befindet sich auf der ersten Seite des Writer-Dokuments. Sie können einen Seitenumbruch vor dem LibreLogo-Programmcode einfügen und mittels des Icons mit dem Zauberstab aus der Symbolleiste Logo die Ansicht so optimieren, dass ein komfortables doppelseitiges Layout für die Ansicht der LibreLogo-Programmierung zur Verfügung steht: Links (erste Seite) die Zeichenfläche, rechts (zweite Seite) der LibreLogo-Programmcode." #. SSNHJ #: LibreLogo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/de/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-10-22 11:35+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548481633.000000\n" #. P7iNX @@ -77,7 +77,7 @@ "par_id030820161744121143\n" "help.text" msgid "While this standard has been developed with the intent that it would be applicable in any domain of activity, %PRODUCTNAME retained the aerospace and defense industry nomenclature and categories, where sensitivity marking results from national security, export control and intellectual property policies." -msgstr "Während dieser Standard mit der Absicht entwickelt wurde, dass er in jedem Aktivitätsbereich anwendbar ist, behält %PRODUCTNAME die Nomenklatur und Kategorien der Luft- und Raumfahrt und der Verteidungsindustrie bei, wo Vertraulichkeitskennzeichungen aus der nationalen Sicherheit, Ausfuhrkontrollen und den Prinzipien des geistigen Eigentums resultieren." +msgstr "Während dieser Standard mit der Absicht entwickelt wurde, dass er in jedem Aktivitätsbereich anwendbar ist, behält %PRODUCTNAME die Nomenklatur und Kategorien der Luft- und Raumfahrt sowie der Verteidigungsindustrie bei, wo Vertraulichkeitskennzeichungen aus der nationalen Sicherheit, den Ausfuhrkontrollen und den Prinzipien des geistigen Eigentums resultieren." #. mEAHm #: classificationbar.xhp @@ -104,7 +104,7 @@ "par_id030820161744126871\n" "help.text" msgid "Business Authorization Identification and Labeling Scheme (BAILS) specifies how to refer to such a BAF policy in a document. The concepts in BAILS are so generic that they can be applied to any format that supports document-level user-defined properties." -msgstr "Business Authorization Identification and Labeling Scheme (BAILS) legt fest, wie solch eine BAF-Regel in einem Dokument zu übergeben ist. Die Konzepte in BAILS sind so allgemein, dass sie in jedem Format eingesetzt werden können, welches benutzerdefinierte Regeln auf Dokumentebene unterstützt." +msgstr "Business Authorization Identification and Labeling Scheme (BAILS) legt fest, wie solch eine BAF-Regel in einem Dokument zu übergeben ist. Die Konzepte in BAILS sind so allgemein, dass sie in jedem Format eingesetzt werden können, das benutzerdefinierte Regeln auf Dokumentenebene unterstützt." #. 6mz7n #: classificationbar.xhp @@ -194,7 +194,7 @@ "par_idN106FA\n" "help.text" msgid "Selects the category of this document for the export control policy type. The selected category is saved together with the document as BAILS metadata in the file properties and no modifications is carried in the document layout or the user interface." -msgstr "Wählt als Kategorie für dieses Dokument den Typ Ausfuhrkontrollregeln. Die ausgewählte Kategorie wird zusammen mit dem Dokument als BAILS-Metadaten in den Dateieigenschaften gespeichert und es sind keine Veränderungen am Dokumentenlayout oder an der Bedienoberfläche zugelassen." +msgstr "Wählt als Kategorie für dieses Dokument den Typ Ausfuhrkontrollregeln. Die ausgewählte Kategorie wird zusammen mit dem Dokument als BAILS-Metadaten in den Dateieigenschaften gespeichert. Es sind keine Veränderungen am Dokumentlayout oder an der Bedienoberfläche zugelassen." #. iVEDx #: classificationbar.xhp @@ -293,7 +293,7 @@ "par_id030820161747133280\n" "help.text" msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file example.xml located in %PRODUCTNAME - PreferencesTools - Options - LibreOffice - Paths - Classification into a local folder and edit the contents." -msgstr "%PRODUCTNAME erlaubt es Ihnen, die Klassifierungstufen für Ihr Geschäft anzupassen. Um die Zahl und den Namen der Stufen anzupassen, kopieren Sie die Datei example.xml, die sich im Pfad unter %PRODUCTNAME – EinstellungenExtras – Optionen… – LibreOffice – Pfade – Klassifikation befindet, in ein lokales Verzeichnis und bearbeiten den Inhalt." +msgstr "%PRODUCTNAME erlaubt es Ihnen, die Klassifizierungstufen für Ihr Geschäft anzupassen. Um die Zahl und den Namen der Stufen anzupassen, kopieren Sie die Datei example.xml, die sich im Pfad unter %PRODUCTNAME – EinstellungenExtras – Optionen… – LibreOffice – Pfade – Klassifikation befindet, in ein lokales Verzeichnis und bearbeiten den Inhalt." #. F3njz #: classificationbar.xhp @@ -2579,7 +2579,7 @@ "hd_id8070314\n" "help.text" msgid "Zoom & View Layout" -msgstr "Maßstab & Ansichts-Layout" +msgstr "Maßstab und Ansichtslayout" #. p8GUN #: main0208.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -4784,7 +4784,7 @@ "TooltipLabel\n" "value.text" msgid "Bad Cell Style" -msgstr "Zellenvorlage Schlecht" +msgstr "Zellvorlage Schlecht" #. rHqpo #: CalcCommands.xcu @@ -7374,7 +7374,7 @@ "Label\n" "value.text" msgid "Report Wizard..." -msgstr "Be~richts-Assistent…" +msgstr "Be~richtsassistent…" #. cpEvD #: DbuCommands.xcu @@ -8494,7 +8494,7 @@ "Label\n" "value.text" msgid "~Master Slide" -msgstr "Folien~master" +msgstr "~Masterfolie" #. ffjrk #: DrawImpressCommands.xcu @@ -8504,7 +8504,7 @@ "Label\n" "value.text" msgid "M~aster Notes" -msgstr "Notizenmaster" +msgstr "Masternotizen" #. 5jAWW #: DrawImpressCommands.xcu @@ -9374,7 +9374,7 @@ "Label\n" "value.text" msgid "Master Hando~ut" -msgstr "~Handzettelmaster" +msgstr "Master~handzettel" #. 53ogX #: DrawImpressCommands.xcu @@ -10344,7 +10344,7 @@ "Label\n" "value.text" msgid "Master Notes Layout..." -msgstr "Notizenmasterlayout…" +msgstr "Masternotizenlayout…" #. FzmHt #: DrawImpressCommands.xcu @@ -10354,7 +10354,7 @@ "Label\n" "value.text" msgid "Master Handout Layout..." -msgstr "Handzettelmasterlayout…" +msgstr "Masterhandzettellayout…" #. n3pZ9 #: DrawImpressCommands.xcu @@ -17974,7 +17974,7 @@ "ContextLabel\n" "value.text" msgid "Increase Size" -msgstr "Schriftröße v~ergrößern" +msgstr "Schriftgröße v~ergrößern" #. wyNBH #: GenericCommands.xcu @@ -23376,7 +23376,7 @@ "ContextLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "~Direktes Exportieren als PDF" +msgstr "~Direkt als PDF exportieren" #. JCirv #: GenericCommands.xcu @@ -23386,7 +23386,7 @@ "TooltipLabel\n" "value.text" msgid "Export Directly as PDF" -msgstr "Direktes Exportieren als PDF" +msgstr "Direkt als PDF exportieren" #. LrSFu #: GenericCommands.xcu @@ -24536,7 +24536,7 @@ "Label\n" "value.text" msgid "Fill Transparency" -msgstr "Füllungstransparenz" +msgstr "Fülltransparenz" #. q3G9Y #: GenericCommands.xcu @@ -25106,7 +25106,7 @@ "Label\n" "value.text" msgid "~Extension Manager..." -msgstr "Extension~ Manager…" +msgstr "E~xtension-Manager…" #. JwAqG #: GenericCommands.xcu @@ -26186,7 +26186,7 @@ "Label\n" "value.text" msgid "Apply document classification" -msgstr "Dokumentklassifizierung übernehmen" +msgstr "Dokumentenklassifizierung übernehmen" #. owQR2 #: GenericCommands.xcu @@ -26836,7 +26836,7 @@ "UIName\n" "value.text" msgid "Master Slide Sorter/Pane" -msgstr "Folienmaster-Sortierung/-Bereich" +msgstr "Masterfolien-Sortierung/-Bereich" #. FzNvJ #: ImpressWindowState.xcu @@ -26846,7 +26846,7 @@ "UIName\n" "value.text" msgid "Master Slide Sorter/Pane (no selection)" -msgstr "Folienmaster-Sortierung/-Bereich (keine Auswahl)" +msgstr "Masterfolien-Sortierung/-Bereich (keine Auswahl)" #. D3FGq #: ImpressWindowState.xcu @@ -28366,7 +28366,7 @@ "Title\n" "value.text" msgid "Master Slides" -msgstr "Folienmaster" +msgstr "Masterfolien" #. AfH6t #: Sidebar.xcu @@ -28836,7 +28836,7 @@ "Title\n" "value.text" msgid "Themes" -msgstr "Themes" +msgstr "Themen" #. Z4GcB #: Sidebar.xcu @@ -28886,7 +28886,7 @@ "Title\n" "value.text" msgid "Axis" -msgstr "~Achse" +msgstr "Achse" #. zKHJR #: Sidebar.xcu @@ -28936,7 +28936,7 @@ "UIName\n" "value.text" msgid "Standard" -msgstr "Standard" +msgstr "Symbolleisten" #. A3mmd #: ToolbarMode.xcu @@ -28956,7 +28956,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "Kompakt" +msgstr "Symbolleisten kompakt" #. UTzyD #: ToolbarMode.xcu @@ -29026,7 +29026,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontextabhängig gruppiert" +msgstr "Kontextabhängig" #. L5JbD #: ToolbarMode.xcu @@ -29046,7 +29046,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "Kompakt" +msgstr "Symbolleisten kompakt" #. VnDYA #: ToolbarMode.xcu @@ -29106,7 +29106,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontextabhängig gruppiert" +msgstr "Kontextabhängig" #. C6x8E #: ToolbarMode.xcu @@ -29116,7 +29116,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "Symbolleiste Standard" +msgstr "Symbolleisten" #. GDJio #: ToolbarMode.xcu @@ -29126,7 +29126,7 @@ "Label\n" "value.text" msgid "Single Toolbar" -msgstr "Kompakt" +msgstr "Symbolleisten kompakt" #. 8frgn #: ToolbarMode.xcu @@ -29186,7 +29186,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontextabhängig gruppiert" +msgstr "Kontextabhängig" #. mrACC #: ToolbarMode.xcu @@ -29196,7 +29196,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "Symbolleiste Standard" +msgstr "Symbolleisten" #. D27KE #: ToolbarMode.xcu @@ -29246,7 +29246,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "Symbolleiste Standard" +msgstr "Symbolleisten" #. DQTVG #: ToolbarMode.xcu @@ -29256,7 +29256,7 @@ "Label\n" "value.text" msgid "Standard Toolbar" -msgstr "Symbolleiste Standard" +msgstr "Symbolleisten" #. pDAEU #: WriterCommands.xcu @@ -32366,7 +32366,7 @@ "Label\n" "value.text" msgid "Insert Unnumbered Entry" -msgstr "Eintrag ohne Nummer ein~fügen" +msgstr "Eintrag ohne Nummerierung ein~fügen" #. BZNTk #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -274,7 +274,7 @@ "Title\n" "value.text" msgid "Document ~Converter..." -msgstr "~Dokument-Konverter…" +msgstr "~Dokumentkonverter…" #. Fcxxv #: Common.xcu @@ -784,7 +784,7 @@ "DisplayName\n" "value.text" msgid "Report Builder" -msgstr "Report Builder" +msgstr "Bericht-Designer" #. iE8oL #: ExtendedColorScheme.xcu @@ -1334,7 +1334,7 @@ "STR_DELETE_MASTER_PAGES\n" "value.text" msgid "Delete unused ~master slides" -msgstr "Nicht verwendete Folien~master löschen" +msgstr "Nicht verwendete ~Masterfolien löschen" #. nyEoz #: PresentationMinimizer.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice.po libreoffice-7.1.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice.po --- libreoffice-7.1.2~rc2/translations/source/de/officecfg/registry/data/org/openoffice.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/officecfg/registry/data/org/openoffice.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: 2018-02-28 09:30+0000\n" -"Last-Translator: Sophia Schröder \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1519810220.000000\n" +#. foAxC #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -25,6 +26,7 @@ msgid "Base: Database Form" msgstr "Base: Datenbankformulare" +#. YAxMS #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -32,8 +34,9 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Report Design" -msgstr "Base: Berichts-Assistent" +msgstr "Base: Berichtsassistent" +#. GwFDf #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -43,6 +46,7 @@ msgid "Base: Relation Design" msgstr "Base: Relationenentwurf" +#. uEmjY #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -52,6 +56,7 @@ msgid "Base: Query Design" msgstr "Base: Abfrageentwurf" +#. X5S6E #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -61,6 +66,7 @@ msgid "Base: View Design" msgstr "Base: Ansichtsentwurf" +#. Lsw4Y #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -70,6 +76,7 @@ msgid "Base: Table Design" msgstr "Base: Tabellenentwurf" +#. s3Ecc #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -79,6 +86,7 @@ msgid "Base: Data View" msgstr "Base: Datenansicht" +#. LC2DZ #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -88,6 +96,7 @@ msgid "Base: Table Data View" msgstr "Base: Tabellendatenansicht" +#. aienR #: Setup.xcu msgctxt "" "Setup.xcu\n" @@ -95,4 +104,4 @@ "ooSetupFactoryUIName\n" "value.text" msgid "Base: Report Builder" -msgstr "Base: Report Builder" +msgstr "Base: Bericht-Designer" diff -Nru libreoffice-7.1.2~rc2/translations/source/de/reportdesign/messages.po libreoffice-7.1.3~rc2/translations/source/de/reportdesign/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/reportdesign/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/reportdesign/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-06-09 21:11+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1532152617.000000\n" #. FBVr9 @@ -38,7 +38,7 @@ #: reportdesign/inc/stringarray.hrc:20 msgctxt "RID_STR_FORCENEWPAGE_CONST" msgid "Before & After Section" -msgstr "Vor & nach Bereich" +msgstr "Vor und nach Bereich" #. FiMq7 #: reportdesign/inc/stringarray.hrc:26 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/sc/messages.po libreoffice-7.1.3~rc2/translations/source/de/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -8341,7 +8341,7 @@ #: sc/inc/scfuncs.hrc:1645 msgctxt "SC_OPCODE_LINEST" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "Ist Kenngrößen=0, so werden nur die Regressionskoeffizienten berechnet, sonst noch weitere Werte." +msgstr "Ist Kenngröße = 0, so wird nur der Regressionskoeffizient berechnet, sonst noch weitere Werte." #. TjhxE #: sc/inc/scfuncs.hrc:1651 @@ -8395,7 +8395,7 @@ #: sc/inc/scfuncs.hrc:1659 msgctxt "SC_OPCODE_LOGEST" msgid "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." -msgstr "Ist Kenngrößen=0, so werden nur die Regressionskoeffizienten berechnet, sonst noch weitere Werte." +msgstr "Ist Kenngröße = 0, so wird nur der Regressionskoeffizient berechnet, sonst noch weitere Werte." #. FABFr #: sc/inc/scfuncs.hrc:1665 @@ -8449,7 +8449,7 @@ #: sc/inc/scfuncs.hrc:1673 msgctxt "SC_OPCODE_TREND" msgid "If type = 0 the linears will be calculated through the zero point, or else moved linears." -msgstr "Ist Art=0, so werden Geraden durch den Nullpunkt berechnet, sonst auch verschobene Geraden." +msgstr "Ist Art = 0, so werden Geraden durch den Nullpunkt berechnet, sonst auch verschobene Geraden." #. Qadzq #: sc/inc/scfuncs.hrc:1679 @@ -8503,7 +8503,7 @@ #: sc/inc/scfuncs.hrc:1687 msgctxt "SC_OPCODE_GROWTH" msgid "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." -msgstr "Ist Art=0, so werden Funktionen der Form y=m^x berechnet, sonst auch Funktionen y=b*m^x." +msgstr "Ist Art = 0, so werden Funktionen der Form y = m^x berechnet, sonst auch Funktionen y = b*m^x." #. kgGDC #: sc/inc/scfuncs.hrc:1693 @@ -15686,7 +15686,7 @@ #: sc/inc/scfuncs.hrc:3919 msgctxt "SC_OPCODE_EUROCONVERT" msgid "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded." -msgstr "Wenn angegeben und >=3, werden die Zwischenergebnisse auf diese Genauigkeit gerundet. Anderenfalls erfolgt keine Rundung." +msgstr "Wenn angegeben und >= 3, werden die Zwischenergebnisse auf diese Genauigkeit gerundet. Anderenfalls erfolgt keine Rundung." #. upY2X #: sc/inc/scfuncs.hrc:3924 @@ -17292,7 +17292,7 @@ #: sc/inc/strings.hrc:170 msgctxt "SCSTR_QHELP_BTNCALC" msgid "Function Wizard" -msgstr "Funktions-Assistent" +msgstr "Funktionsassistent" #. rU6xA #: sc/inc/strings.hrc:171 @@ -23202,25 +23202,25 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:238 msgctxt "headerfootercontent|labelFT_H_DEFINED" msgid "_Header" -msgstr "_Kopfzeile" +msgstr "_Kopfzeile:" #. di3Ad #: sc/uiconfig/scalc/ui/headerfootercontent.ui:253 msgctxt "headerfootercontent|labelFT_F_DEFINED" msgid "_Footer" -msgstr "F_ußzeile" +msgstr "F_ußzeile:" #. z9EEa #: sc/uiconfig/scalc/ui/headerfootercontent.ui:280 msgctxt "headerfootercontent|labelFT_H_CUSTOM" msgid "Custom header" -msgstr "Benutzerdefiniert" +msgstr "Benutzerdefiniert:" #. kDb9h #: sc/uiconfig/scalc/ui/headerfootercontent.ui:293 msgctxt "headerfootercontent|labelFT_F_CUSTOM" msgid "Custom footer" -msgstr "Benutzerdefiniert" +msgstr "Benutzerdefiniert:" #. DqPqG #: sc/uiconfig/scalc/ui/headerfootercontent.ui:318 @@ -26996,7 +26996,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:534 msgctxt "pastespecial|skip_empty" msgid "S_kip empty cells" -msgstr "_Leerzellen überspringen" +msgstr "_Leere Zellen überspringen" #. BodqB #: sc/uiconfig/scalc/ui/pastespecial.ui:538 @@ -27068,7 +27068,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:682 msgctxt "pastespecial|move_right" msgid "_Right" -msgstr "Re_chts" +msgstr "Nach re_chts" #. GEFe7 #: sc/uiconfig/scalc/ui/pastespecial.ui:692 @@ -29012,7 +29012,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:238 msgctxt "sheetprintpage|checkBTN_HEADER" msgid "_Column and row headers" -msgstr "Zeilen- & Spalten_köpfe" +msgstr "Zeilen- und Spalten_köpfe" #. tB2MC #: sc/uiconfig/scalc/ui/sheetprintpage.ui:247 @@ -32174,7 +32174,7 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:205 msgctxt "validationcriteriapage|allowempty" msgid "Allow _empty cells" -msgstr "_Leerzellen zulassen" +msgstr "_Leere Zellen zulassen" #. gMyAs #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:214 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/scp2/source/graphicfilter.po libreoffice-7.1.3~rc2/translations/source/de/scp2/source/graphicfilter.po --- libreoffice-7.1.2~rc2/translations/source/de/scp2/source/graphicfilter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/scp2/source/graphicfilter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-04-27 15:55+0200\n" -"PO-Revision-Date: 2019-11-05 12:26+0000\n" -"Last-Translator: kuehl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1513490314.000000\n" #. yNDcH @@ -41,7 +41,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_ADOBE\n" "LngText.text" msgid "Adobe Photoshop Import Filter" -msgstr "Adobe Photoshop Importfilter" +msgstr "Adobe Photoshop-Importfilter" #. 7g8wn #: module_graphicfilter.ulf @@ -50,7 +50,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_ADOBE\n" "LngText.text" msgid "Adobe Photoshop Import Filter" -msgstr "Adobe Photoshop Importfilter" +msgstr "Adobe Photoshop-Importfilter" #. BuJNs #: module_graphicfilter.ulf @@ -59,7 +59,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_TGA\n" "LngText.text" msgid "TGA Import" -msgstr "TGA Import" +msgstr "TGA-Import" #. sGasR #: module_graphicfilter.ulf @@ -68,7 +68,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_TGA\n" "LngText.text" msgid "TGA TrueVision TARGA Import Filter" -msgstr "TGA TrueVision TARGA Importfilter" +msgstr "TGA TrueVision TARGA-Importfilter" #. 2eKBa #: module_graphicfilter.ulf @@ -86,7 +86,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_EPS\n" "LngText.text" msgid "Encapsulated Postscript Import/Export Filter" -msgstr "Encapsulated Postscript-Im- und Exportfilter" +msgstr "Encapsulated PostScript-Im- und Exportfilter" #. MjpxH #: module_graphicfilter.ulf @@ -149,7 +149,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_ACAD\n" "LngText.text" msgid "AutoCAD Import" -msgstr "AutoCAD Import" +msgstr "AutoCAD-Import" #. BaBAs #: module_graphicfilter.ulf @@ -158,7 +158,7 @@ "STR_DESC_MODULE_OPTIONAL_GRFFLT_ACAD\n" "LngText.text" msgid "AutoCAD Import Filter" -msgstr "AutoCAD Importfilter" +msgstr "AutoCAD-Importfilter" #. Ce6Le #: module_graphicfilter.ulf @@ -221,7 +221,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_PCX\n" "LngText.text" msgid "PCX Import" -msgstr "PCX Import" +msgstr "PCX-Import" #. NmYRD #: module_graphicfilter.ulf @@ -239,7 +239,7 @@ "STR_NAME_MODULE_OPTIONAL_GRFFLT_TIFF\n" "LngText.text" msgid "TIFF Import/Export" -msgstr "TIFF Import/Export" +msgstr "TIFF-Im- und Export" #. oUH68 #: module_graphicfilter.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/de/scp2/source/ooo.po libreoffice-7.1.3~rc2/translations/source/de/scp2/source/ooo.po --- libreoffice-7.1.2~rc2/translations/source/de/scp2/source/ooo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/scp2/source/ooo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-17 15:06+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -5297,7 +5297,7 @@ "STR_NAME_MODULE_OPTIONAL_REPORTDESIGN\n" "LngText.text" msgid "Report Builder" -msgstr "Report Builder" +msgstr "Bericht-Designer" #. uzCcq #: module_reportbuilder.ulf @@ -5306,7 +5306,7 @@ "STR_DESC_MODULE_OPTIONAL_REPORTDESIGN\n" "LngText.text" msgid "Report Builder helps to design database reports. It requires Java." -msgstr "Der Report Builder ermöglicht eine Gestaltung von Datenbankberichten. Dafür wird Java benötigt." +msgstr "Der Bericht-Designer ermöglicht eine Gestaltung von Datenbankberichten. Dafür wird Java benötigt." #. 9vjxt #: module_systemint.ulf @@ -5342,7 +5342,7 @@ "STR_REG_VAL_SO60_CONFIGFILE\n" "LngText.text" msgid "%PRODUCTNAME Configuration File" -msgstr "%PRODUCTNAME-Konfigurationdatei" +msgstr "%PRODUCTNAME-Konfigurationsdatei" #. AjY7Q #: registryitem_ooo.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/de/sd/messages.po libreoffice-7.1.3~rc2/translations/source/de/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -358,7 +358,7 @@ #: sd/inc/strings.hrc:30 msgctxt "STR_UNDO_SLIDE_PARAMS" msgid "Slide parameter" -msgstr "Folien Parameter" +msgstr "Folienparameter" #. 6ZECs #: sd/inc/strings.hrc:31 @@ -412,7 +412,7 @@ #: sd/inc/strings.hrc:39 msgctxt "STR_SLIDE_MASTER_MODE" msgid "Master Slide" -msgstr "Folienmaster" +msgstr "Masterfolie" #. qBuHh #: sd/inc/strings.hrc:40 @@ -430,13 +430,13 @@ #: sd/inc/strings.hrc:42 msgctxt "STR_NOTES_MASTER_MODE" msgid "Master Notes" -msgstr "Notizenmaster" +msgstr "Masternotizen" #. tGt9g #: sd/inc/strings.hrc:43 msgctxt "STR_HANDOUT_MASTER_MODE" msgid "Master Handout" -msgstr "Handzettelmaster" +msgstr "Masterhandzettel" #. GtVe6 #: sd/inc/strings.hrc:44 @@ -1134,7 +1134,7 @@ #: sd/inc/strings.hrc:159 msgctxt "STR_LOAD_PRESENTATION_LAYOUT" msgid "Load Master Slide" -msgstr "Folienmaster laden" +msgstr "Masterfolie laden" #. HxEp8 #: sd/inc/strings.hrc:160 @@ -1605,7 +1605,7 @@ #: sd/inc/strings.hrc:238 msgctxt "STR_TITLE_RENAMEMASTER" msgid "Rename Master Slide" -msgstr "Folienmaster umbenennen" +msgstr "Masterfolie umbenennen" #. rWiXQ #: sd/inc/strings.hrc:239 @@ -1881,13 +1881,13 @@ #: sd/inc/strings.hrc:285 msgctxt "STR_MASTERSLIDE_NAME" msgid "Master Slide" -msgstr "Folienmaster" +msgstr "Masterfolie" #. 8WvYc #: sd/inc/strings.hrc:286 msgctxt "STR_MASTERSLIDE_LABEL" msgid "Master Slide:" -msgstr "Folienmaster:" +msgstr "Masterfolie:" #. C3zZM #: sd/inc/strings.hrc:287 @@ -5870,7 +5870,7 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:33 msgctxt "headerfooterdialog|extended_tip|apply_all" msgid "Applies the settings to all the slides in your presentation, including the corresponding master slides." -msgstr "Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich dem entsprechenden Folienmaster." +msgstr "Wendet die Einstellungen auf alle Folien der Präsentation an, einschließlich der entsprechenden Masterfolien." #. eaqgU #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:53 @@ -5894,7 +5894,7 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:221 msgctxt "headerfooterdialog|extended_tip|HeaderFooterDialog" msgid "Adds or changes text in placeholders at the top and the bottom of slides and master slides." -msgstr "Fügt den Text in den Platzhaltern oben und unten auf den Folien und dem Folienmaster hinzu beziehungsweise ändert diesen." +msgstr "Fügt den Text in den Platzhaltern oben und unten auf den Folien und Masterfolien hinzu beziehungsweise ändert diesen." #. BgFsS #: sd/uiconfig/simpress/ui/headerfootertab.ui:39 @@ -6326,7 +6326,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:105 msgctxt "masterlayoutdlg|extended_tip|header" msgid "Adds a header placeholder to the master slide for notes." -msgstr "Fügt dem Notizenmaster einen Platzhalter für Kopfzeilen hinzu, um Notizen hinzuzufügen." +msgstr "Fügt der Masterfolie einen Kopfzeilen-Platzhalter für Notizen hinzu." #. iccus #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:117 @@ -6338,7 +6338,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:126 msgctxt "masterlayoutdlg|extended_tip|datetime" msgid "Adds a date/time placeholder to the master slide." -msgstr "Fügt dem Folienmaster einen Platzhalter für Datum und Uhrzeit hinzu." +msgstr "Fügt der Masterfolie einen Platzhalter für Datum und Uhrzeit hinzu." #. SFrZg #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:138 @@ -6350,7 +6350,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:147 msgctxt "masterlayoutdlg|extended_tip|footer" msgid "Adds a footer placeholder to the master slide." -msgstr "Fügt dem Folienmaster einen Platzhalter für eine Fußzeile hinzu." +msgstr "Fügt der Masterfolie einen Platzhalter für eine Fußzeile hinzu." #. AyWZh #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:159 @@ -6380,7 +6380,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:227 msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog" msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide." -msgstr "Fügt dem Folienmaster Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese." +msgstr "Fügt der Masterfolie Platzhalter für Kopfzeilen, Fußzeilen, Datum und Foliennummern hinzu beziehungsweise entfernt diese." #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 @@ -8985,7 +8985,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1727 msgctxt "publishingdialog|defaultRadiobutton" msgid "Use _browser colors" -msgstr "_Browser Farben verwenden" +msgstr "_Browserfarben verwenden" #. FtkC2 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1744 @@ -9213,7 +9213,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:108 msgctxt "sidebarslidebackground|displaymasterobjects" msgid "Master Objects" -msgstr "Master-Objekte" +msgstr "Masterobjekte" #. iFFSD #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:147 @@ -9225,7 +9225,7 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:224 msgctxt "sidebarslidebackground|displaymasterbackground" msgid "Master Background" -msgstr "Master-Hintergrund" +msgstr "Masterhintergrund" #. jeCZN #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:254 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/setup_native/source/mac.po libreoffice-7.1.3~rc2/translations/source/de/setup_native/source/mac.po --- libreoffice-7.1.2~rc2/translations/source/de/setup_native/source/mac.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/setup_native/source/mac.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2019-12-17 11:18+0000\n" -"Last-Translator: Christian Lohmaier \n" -"Language-Team: German \n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1516554961.000000\n" #. HQKCW @@ -50,7 +50,7 @@ "IntroText1\n" "LngText.text" msgid "Welcome to the [FULLPRODUCTNAME] Installation Wizard" -msgstr "Willkommen beim [FULLPRODUCTNAME] Installations-Assistenten" +msgstr "Willkommen beim [FULLPRODUCTNAME] Installationsassistenten" #. nBYzF #: macinstall.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/de/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/de/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1690,7 +1690,7 @@ #: include/sfx2/strings.hrc:305 msgctxt "STR_TEMPLATE_NAME4" msgid "Blueprint Plans" -msgstr "Blaupausen Plan" +msgstr "Blaupausenpläne" #. AEtHT #: include/sfx2/strings.hrc:306 @@ -2681,7 +2681,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:89 msgctxt "documentinfopage|label18" msgid "Re_vision number:" -msgstr "Re_visionsnummer:" +msgstr "Datei_version:" #. BgTqU #: sfx2/uiconfig/ui/documentinfopage.ui:131 @@ -2717,7 +2717,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:226 msgctxt "documentinfopage|extended_tip|reset" msgid "Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted." -msgstr "Setzt die Bearbeitungszeit auf Null, das Erstellungsdatum auf das aktuelle Datum und die aktuelle Uhrzeit und die Versionsnummer auf 1. Datum und Uhrzeit der letzten Änderung und des letzten Drucks werden gelöscht." +msgstr "Setzt die Bearbeitungszeit auf Null, das Erstellungsdatum auf das aktuelle Datum und die aktuelle Uhrzeit sowie die Versionsnummer auf 1. Datum und Uhrzeit der letzten Änderung und des letzten Drucks werden gelöscht." #. qeWvU #: sfx2/uiconfig/ui/documentinfopage.ui:238 @@ -4265,7 +4265,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:228 msgctxt "templatedlg|label1" msgid "Filter" -msgstr "Filter" +msgstr "Filter:" #. j39jM #: sfx2/uiconfig/ui/templatedlg.ui:335 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/starmath/messages.po libreoffice-7.1.3~rc2/translations/source/de/starmath/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/starmath/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/starmath/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -3663,7 +3663,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:423 msgctxt "symdefinedialog|extended_tip|fontsSubsetLB" msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above." -msgstr "Wenn die Schriftart, die Sie im Listenfeld Schriftart gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in den das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt." +msgstr "Wenn die Schriftart, die Sie im Listenfeld Schriftart gewählt haben, keine Symbolschriftart ist, können Sie eine Unicode-Untergruppe angeben, in der das neue oder bearbeitete Symbol aufgenommen werden soll. Nach der Wahl der Untergruppe werden alle zu dieser Untergruppe des aktuellen Symbolsets gehörenden Symbole in der Symbolliste darüber aufgeführt." #. 8XjkA #: starmath/uiconfig/smath/ui/symdefinedialog.ui:448 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/de/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -370,7 +370,7 @@ #: include/svtools/strings.hrc:85 msgctxt "STR_FORMAT_ID_STARWRITERGLOB_60" msgid "OpenOffice.org 1.0 Writer/Master object" -msgstr "OpenOffice.org 1.0 Writer/Global Objekt" +msgstr "OpenOffice.org 1.0 Writer/Globalobjekt" #. iEkCL #: include/svtools/strings.hrc:86 @@ -2753,7 +2753,7 @@ #: svtools/inc/langtab.hrc:71 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Chinese (traditional)" -msgstr "Chinesisch (Trad.)" +msgstr "Chinesisch (traditionell)" #. Gbige #: svtools/inc/langtab.hrc:72 @@ -5285,7 +5285,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:889 msgctxt "graphicexport|extended_tip|level1rb" msgid "Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2." -msgstr "Mit diesem Level ist keine Kompression möglich. Sollte der Drucker Level 2 nicht unterstützen, wählen Sie die Option Level 1." +msgstr "Mit diesem Level ist keine Kompression möglich. Sollte der PostScript-Drucker Level 2 nicht unterstützen, wählen Sie die Option Level 1." #. kuCNX #: svtools/uiconfig/ui/graphicexport.ui:900 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/svx/messages.po libreoffice-7.1.3~rc2/translations/source/de/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -5930,7 +5930,7 @@ #: include/svx/strings.hrc:1066 msgctxt "RID_GALLERYSTR_THEME_EDUCATION" msgid "School & University" -msgstr "Schule & Uni" +msgstr "Schule und Uni" #. EKFgg #: include/svx/strings.hrc:1067 @@ -6243,7 +6243,7 @@ #: include/svx/strings.hrc:1123 msgctxt "RID_SVXSTR_UNDO_APPLY_EXTRUSION_LIGHTING" msgid "Change Lighting" -msgstr "Beläuchtung ändern" +msgstr "Beleuchtung ändern" #. j4AR9 #: include/svx/strings.hrc:1124 @@ -11162,7 +11162,7 @@ #: svx/inc/svxerr.hrc:41 msgctxt "RID_SVXERRCTX" msgid "$(ERR) setting background attribute." -msgstr "$(ERR) beim Festlegen eines Hintergrund-Attributes." +msgstr "$(ERR) beim Festlegen eines Hintergrundattributes." #. YFjdh #: svx/inc/svxerr.hrc:43 @@ -11216,7 +11216,7 @@ #: svx/inc/svxerr.hrc:63 msgctxt "RID_SVXERRCODE" msgid "All changes to the Basic Code are lost. The original VBA Macro Code is saved instead." -msgstr "Alle Veränderungen am Basic-Code sind verlorengegangen. Stattdessen wird der originale VBA-Makrocode gespeichert." +msgstr "Alle Veränderungen am Basic-Code sind verloren gegangen. Stattdessen wird der originale VBA-Makrocode gespeichert." #. A2WQJ #: svx/inc/svxerr.hrc:65 @@ -12738,7 +12738,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:434 msgctxt "adddataitemdialog|extended_tip|calculatecond" msgid "The Condition button opens the Add Condition dialog where you can enter the calculation." -msgstr "Die Schaltfläche Bedingung öffnet den Dialog Bedingung hinzufügen, in den Sie die Berechnung eingeben können." +msgstr "Die Schaltfläche Bedingung öffnet den Dialog Bedingung hinzufügen, in dem Sie die Berechnung eingeben können." #. JEwfa #: svx/uiconfig/ui/adddataitemdialog.ui:451 @@ -14814,7 +14814,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1807 msgctxt "docking3deffects|textype|tooltip_text" msgid "Black & White" -msgstr "Schwarz/Weiß" +msgstr "Schwarz-weiß" #. S5ACF #: svx/uiconfig/ui/docking3deffects.ui:1815 @@ -19090,7 +19090,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:118 msgctxt "sidebargraphic|colorlmodelabel" msgid "Color _mode:" -msgstr "_Farb-Einstellungen:" +msgstr "_Farbeinstellungen:" #. Rj5UQ #: svx/uiconfig/ui/sidebargraphic.ui:135 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/sw/messages.po libreoffice-7.1.3~rc2/translations/source/de/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -98,7 +98,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "Hält die Ebenen der Überschriften geordnet. Überschriftebene %LEVEL_CURRENT% darf nicht nach %LEVEL_PREV% stehen." +msgstr "Hält die Ebenen der Überschriften geordnet. Überschriftenebene %LEVEL_CURRENT% darf nicht nach %LEVEL_PREV% stehen." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 @@ -182,7 +182,7 @@ #: sw/inc/app.hrc:38 msgctxt "RID_PARAGRAPHSTYLEFAMILY" msgid "Special Styles" -msgstr "Vorlagen Sonderbereiche" +msgstr "Vorlagen für Sonderbereiche" #. M9it7 #: sw/inc/app.hrc:39 @@ -687,7 +687,7 @@ #: sw/inc/inspectorproperties.hrc:45 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Category" -msgstr "Bereich" +msgstr "Kategorie" #. cd79Y #: sw/inc/inspectorproperties.hrc:46 @@ -1557,37 +1557,37 @@ #: sw/inc/inspectorproperties.hrc:190 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Color" -msgstr "Absatz: Hintergrund Farbe" +msgstr "Absatz: Hintergrundfarbe" #. uKmB5 #: sw/inc/inspectorproperties.hrc:191 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic" -msgstr "Absatz: Hintergrund Grafik" +msgstr "Absatz: Hintergrundgrafik" #. f6RGz #: sw/inc/inspectorproperties.hrc:192 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "Absatz: Hintergrund Grafik Filter" +msgstr "Absatz: Hintergrundgrafikfilter" #. Yy5RY #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Location" -msgstr "Absatz: Hintergrund Grafik Speicherort" +msgstr "Absatz: Hintergrundgrafik-Speicherort" #. MLDdK #: sw/inc/inspectorproperties.hrc:194 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic URL" -msgstr "Absatz: Hintergrund Grafik URL" +msgstr "Absatz: Hintergrundgrafik-URL" #. HkGF3 #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Transparent" -msgstr "Absatz: Hintergrund Transparenz" +msgstr "Absatz: Hintergrundtransparenz" #. TuYLo #: sw/inc/inspectorproperties.hrc:196 @@ -1611,7 +1611,7 @@ #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Conditional Style Name" -msgstr "Absatz: Benutzerdefinierte Vorlage Name" +msgstr "Absatz: Benutzerdefinierter Vorlagenname" #. AFGoP #: sw/inc/inspectorproperties.hrc:200 @@ -1671,7 +1671,7 @@ #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Auto First Line Indent" -msgstr "Absatz: Einzug Erste Zeile ist Automatisch" +msgstr "Absatz: Einzug Erste Zeile ist automatisch" #. Q68Bx #: sw/inc/inspectorproperties.hrc:210 @@ -1701,7 +1701,7 @@ #: sw/inc/inspectorproperties.hrc:214 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "Absatz: ist Silbentrenning" +msgstr "Absatz: ist Silbentrennung" #. mHDWE #: sw/inc/inspectorproperties.hrc:215 @@ -1731,7 +1731,7 @@ #: sw/inc/inspectorproperties.hrc:219 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin Relative" -msgstr "Absatz: Abstand links Relativ" +msgstr "Absatz: Abstand links relativ" #. G43XB #: sw/inc/inspectorproperties.hrc:220 @@ -1773,13 +1773,13 @@ #: sw/inc/inspectorproperties.hrc:226 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin Relative" -msgstr "Absatz: Abstand rechts Relativ" +msgstr "Absatz: Abstand rechts relativ" #. FC9mA #: sw/inc/inspectorproperties.hrc:227 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Shadow Format" -msgstr "Absatz: Schatten Format" +msgstr "Absatz: Schattenformat" #. VXwD2 #: sw/inc/inspectorproperties.hrc:228 @@ -1809,7 +1809,7 @@ #: sw/inc/inspectorproperties.hrc:232 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "Absatz: Abstand oben Relativ" +msgstr "Absatz: Abstand oben relativ" #. pUjFj #: sw/inc/inspectorproperties.hrc:233 @@ -5606,7 +5606,7 @@ #: sw/inc/strings.hrc:620 msgctxt "STR_PRINTOPTUI_BROCHURE" msgid "Broch~ure" -msgstr "~Broschüre" +msgstr "~Broschüre:" #. t6drz #: sw/inc/strings.hrc:621 @@ -5756,7 +5756,7 @@ #: sw/inc/strings.hrc:647 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "Rechtsklicken Sie, um Unterebenen einzuschließen" +msgstr "Rechtsklicken, um Unterebenen einzuschließen" #. kDbnu #: sw/inc/strings.hrc:648 @@ -7465,7 +7465,7 @@ #: sw/inc/strings.hrc:967 msgctxt "FMT_FF_UI_RANGE" msgid "Category" -msgstr "Bereich" +msgstr "Kategorie" #. DB5nv #. -------------------------------------------------------------------- @@ -8330,7 +8330,7 @@ #: sw/inc/strings.hrc:1137 msgctxt "STR_DRAWMODE_BLACKWHITE" msgid "Black & White" -msgstr "Schwarz/Weiß" +msgstr "Schwarz-weiß" #. tABTr #: sw/inc/strings.hrc:1138 @@ -10106,7 +10106,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:290 msgctxt "asciifilterdialog|includebom" msgid "Include byte-order mark" -msgstr "Byte-Reihefolge-Markierung einschließen" +msgstr "Byte-Reihenfolge-Markierung einschließen" #. B2ofV #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:313 @@ -12596,7 +12596,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:154 msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS" msgid "Enter the number of characters to convert to drop caps." -msgstr "Geben Sie die Anzahl der Zeichen ein, die in Initialien konvertiert werden sollen." +msgstr "Geben Sie die Anzahl der Zeichen ein, die in Initialen konvertiert werden sollen." #. mTJvq #: sw/uiconfig/swriter/ui/dropcapspage.ui:173 @@ -12710,7 +12710,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:18 msgctxt "editcategories|EditCategoriesDialog" msgid "Edit Categories" -msgstr "Bereiche bearbeiten" +msgstr "Kategorien bearbeiten" #. 2CmpG #: sw/uiconfig/swriter/ui/editcategories.ui:42 @@ -12734,7 +12734,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:154 msgctxt "editcategories|label3" msgid "Selection list" -msgstr "Auswahlliste" +msgstr "Auswahlliste:" #. 2L9md #: sw/uiconfig/swriter/ui/editcategories.ui:212 @@ -12752,13 +12752,13 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:244 msgctxt "editcategories|label2" msgid "Path" -msgstr "Pfad" +msgstr "Pfad:" #. zaAUf #: sw/uiconfig/swriter/ui/editcategories.ui:258 msgctxt "editcategories|label1" msgid "Category" -msgstr "Kategorie" +msgstr "Kategorie:" #. k4DHd #: sw/uiconfig/swriter/ui/editcategories.ui:277 @@ -14004,7 +14004,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:389 msgctxt "flddocumentpage|extended_tip|level" msgid "Select the chapter heading level that you want to include in the selected field." -msgstr "Wählen Sie die Kapitelüberschriftebene, die im markierten Feld erscheinen soll." +msgstr "Wählen Sie die Kapitelüberschriftenebene, die im markierten Feld erscheinen soll." #. PjBqv #: sw/uiconfig/swriter/ui/flddocumentpage.ui:407 @@ -14586,7 +14586,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:90 msgctxt "footnoteareapage|maxheight" msgid "Maximum footnote _height" -msgstr "Maximale Höhe der _Fußnote" +msgstr "Maximale Höhe der _Fußnote:" #. bC7yH #: sw/uiconfig/swriter/ui/footnoteareapage.ui:104 @@ -14598,7 +14598,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:118 msgctxt "footnoteareapage|label3" msgid "Space to text" -msgstr "Abstand zum Text" +msgstr "Abstand zum Text:" #. 3gM96 #: sw/uiconfig/swriter/ui/footnoteareapage.ui:140 @@ -14622,37 +14622,37 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:221 msgctxt "footnoteareapage|label4" msgid "_Position" -msgstr "_Position" +msgstr "_Position:" #. fzkPB #: sw/uiconfig/swriter/ui/footnoteareapage.ui:236 msgctxt "footnoteareapage|label5" msgid "_Style" -msgstr "_Stil" +msgstr "_Stil:" #. 7X5cr #: sw/uiconfig/swriter/ui/footnoteareapage.ui:251 msgctxt "footnoteareapage|label6" msgid "_Thickness" -msgstr "D_icke" +msgstr "D_icke:" #. myPFY #: sw/uiconfig/swriter/ui/footnoteareapage.ui:266 msgctxt "footnoteareapage|label7" msgid "_Color" -msgstr "_Farbe" +msgstr "_Farbe:" #. xdT9F #: sw/uiconfig/swriter/ui/footnoteareapage.ui:281 msgctxt "footnoteareapage|label8" msgid "_Length" -msgstr "Län_ge" +msgstr "Län_ge:" #. F3nWG #: sw/uiconfig/swriter/ui/footnoteareapage.ui:296 msgctxt "footnoteareapage|label9" msgid "_Spacing to footnote contents" -msgstr "Abstan_d zum Fußnoteninhalt" +msgstr "Abstan_d zum Fußnoteninhalt:" #. uZuEN #: sw/uiconfig/swriter/ui/footnoteareapage.ui:313 @@ -17034,7 +17034,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:642 msgctxt "insertdbcolumnsdialog|extended_tip|tableheading" msgid "Specifies whether to insert a heading line for the columns in the text table." -msgstr "Hier geben Sie an, ob eine Überschriftzeile für die Spalten in der Texttabelle eingefügt werden soll." +msgstr "Hier geben Sie an, ob eine Überschriftenzeile für die Spalten in der Texttabelle eingefügt werden soll." #. wEgCa #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:653 @@ -17058,7 +17058,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:685 msgctxt "insertdbcolumnsdialog|extended_tip|rowonly" msgid "Inserts an empty heading line into the text table." -msgstr "Es wird eine leere Überschriftzeile in die Texttabelle eingefügt." +msgstr "Es wird eine leere Überschriftenzeile in die Texttabelle eingefügt." #. oJMmt #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:696 @@ -17250,7 +17250,7 @@ #: sw/uiconfig/swriter/ui/insertscript.ui:18 msgctxt "insertscript|InsertScriptDialog" msgid "Insert Script" -msgstr "Skipt einfügen" +msgstr "Skript einfügen" #. H6Gmd #: sw/uiconfig/swriter/ui/insertscript.ui:48 @@ -19764,7 +19764,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:164 msgctxt "mmselectpage|extended_tip|browsedoc" msgid "Locate the Writer document that you want to use, and then click Open." -msgstr "Suchen Sie das gewünschte Writer-Dokument und klicken Öffnenan." +msgstr "Suchen Sie das gewünschte Writer-Dokument und klicken Öffnen an." #. 3trwP #: sw/uiconfig/swriter/ui/mmselectpage.ui:175 @@ -28241,7 +28241,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:301 msgctxt "tocindexpage|extended_tip|level" msgid "Enter the number of heading levels to include in the index." -msgstr "Geben Sie an, wie viele Überschriftebenen in das Verzeichnis aufgenommen werden sollen." +msgstr "Geben Sie an, wie viele Überschriftenebenen in das Verzeichnis aufgenommen werden sollen." #. GwFGr #: sw/uiconfig/swriter/ui/tocindexpage.ui:324 @@ -28361,7 +28361,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:577 msgctxt "tocindexpage|extended_tip|styles" msgid "Opens the Assign Styles dialog, where you can select the paragraph styles to include in the index. Choose the proper heading level on which the style will be included in the index." -msgstr "Öffnet den Dialog Vorlagen zuweisen, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll." +msgstr "Öffnet den Dialog Vorlagen zuweisen, in dem Sie in das Verzeichnis aufzunehmende Absatzvorlagen auswählen können. Wählen Sie die richtige Überschriftenebene aus, für welche die Vorlage in dem Verzeichnis verwendet werden soll." #. KvQH4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:618 @@ -28811,7 +28811,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:320 msgctxt "viewoptionspage|changesinmargin" msgid "Tracked _deletions in margin" -msgstr "Löschungen für Änderungen verfolgen am Rand" +msgstr "Gelöschte Änderungen am Rand" #. vvvb7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:329 @@ -28829,7 +28829,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:361 msgctxt "viewoptionspage|changeslabel" msgid "Display tracked changes" -msgstr "Änderungen für Änderungen verfolgen anzeigen" +msgstr "Änderungen anzeigen" #. CuQqf #: sw/uiconfig/swriter/ui/viewoptionspage.ui:395 @@ -28859,7 +28859,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:490 msgctxt "viewoptionspage|vruler" msgid "Verti_cal ruler" -msgstr "_Vertikales Lineal" +msgstr "_Vertikales Lineal:" #. gBqEr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:499 @@ -28895,7 +28895,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:566 msgctxt "viewoptionspage|hruler" msgid "Hori_zontal ruler" -msgstr "Horizo_ntales Lineal" +msgstr "Horizo_ntales Lineal:" #. 3Xu8U #: sw/uiconfig/swriter/ui/viewoptionspage.ui:572 @@ -29105,13 +29105,13 @@ #: sw/uiconfig/swriter/ui/wordcount.ui:34 msgctxt "wordcount|extended_tip|close" msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection." -msgstr "Zeit eine Statistik über die Anzahl der Wörter und Zeichen, mit und ohne Leerzeichen, in der aktuellen Auswahl und im ganzen Dokument. Die Zählung wird laufend aktualisiert, wenn Sie weitere Eingaben machen oder eine Änderung der Auswahl vonehmen." +msgstr "Zählt die Wörter und Zeichen, mit und ohne Leerzeichen, in der aktuellen Auswahl und im ganzen Dokument. Die Zählung wird laufend aktualisiert, wenn Sie weitere Eingaben machen oder eine Änderung der Auswahl vornehmen." #. mqnk8 #: sw/uiconfig/swriter/ui/wordcount.ui:53 msgctxt "wordcount|extended_tip|help" msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection." -msgstr "Zeit eine Statistik über die Anzahl der Wörter und Zeichen, mit und ohne Leerzeichen, in der aktuellen Auswahl und im ganzen Dokument. Die Zählung wird laufend aktualisiert, wenn Sie weitere Eingaben machen oder eine Änderung der Auswahl vonehmen." +msgstr "Zählt die Wörter und Zeichen, mit und ohne Leerzeichen, in der aktuellen Auswahl und im ganzen Dokument. Die Zählung wird laufend aktualisiert, wenn Sie weitere Eingaben machen oder eine Änderung der Auswahl vornehmen." #. 4rhHV #: sw/uiconfig/swriter/ui/wordcount.ui:86 @@ -29159,7 +29159,7 @@ #: sw/uiconfig/swriter/ui/wordcount.ui:343 msgctxt "wordcount|extended_tip|WordCountDialog" msgid "Counts the words and characters, with or without spaces, in the current selection and in the whole document. The count is kept up to date as you type or change the selection." -msgstr "Zeit eine Statistik über die Anzahl der Wörter und Zeichen, mit und ohne Leerzeichen, in der aktuellen Auswahl und im ganzen Dokument. Die Zählung wird laufend aktualisiert, wenn Sie weitere Eingaben machen oder eine Änderung der Auswahl vonehmen." +msgstr "Zählt die Wörter und Zeichen, mit und ohne Leerzeichen, in der aktuellen Auswahl und im ganzen Dokument. Die Zählung wird laufend aktualisiert, wenn Sie weitere Eingaben machen oder eine Änderung der Auswahl vornehmen." #. A2jUj #: sw/uiconfig/swriter/ui/wrapdialog.ui:8 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.1.3~rc2/translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.1.2~rc2/translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -94,7 +94,7 @@ "Dlg_EditSetting_UrlLabel\n" "value.text" msgid "U~RL" -msgstr "U~RL" +msgstr "U~RL:" #. Nisvz #: WikiExtension.xcu @@ -104,7 +104,7 @@ "Dlg_EditSetting_UsernameLabel\n" "value.text" msgid "~Username" -msgstr "~Nutzername" +msgstr "~Nutzername:" #. rRpmN #: WikiExtension.xcu @@ -114,7 +114,7 @@ "Dlg_EditSetting_PasswordLabel\n" "value.text" msgid "~Password" -msgstr "~Kennwort" +msgstr "~Kennwort:" #. J2PDr #: WikiExtension.xcu @@ -224,7 +224,7 @@ "Dlg_SendToMediaWiki_Label1\n" "value.text" msgid "Media~Wiki Server" -msgstr "Media~Wiki-Server" +msgstr "Media~Wiki-Server:" #. GiPyL #: WikiExtension.xcu @@ -234,7 +234,7 @@ "Dlg_SendToMediaWiki_Label2\n" "value.text" msgid "~Title" -msgstr "~Titel" +msgstr "~Titel:" #. DM8RZ #: WikiExtension.xcu @@ -244,7 +244,7 @@ "Dlg_SendToMediaWiki_Label3\n" "value.text" msgid "S~ummary" -msgstr "~Zusammenfassung" +msgstr "~Zusammenfassung:" #. yDFJs #: WikiExtension.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/de/sysui/desktop/share.po libreoffice-7.1.3~rc2/translations/source/de/sysui/desktop/share.po --- libreoffice-7.1.2~rc2/translations/source/de/sysui/desktop/share.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/sysui/desktop/share.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2019-11-05 12:25+0000\n" -"Last-Translator: kuehl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2021-03-28 22:36+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550741537.000000\n" #. a9uCy @@ -320,7 +320,7 @@ "ms-excel-template-12\n" "LngText.text" msgid "Microsoft Excel Worksheet Template" -msgstr "Microsoft Excel Arbeitsblattsvorlage" +msgstr "Microsoft Excel Arbeitsblattvorlage" #. kg6D4 #: documents.ulf @@ -392,7 +392,7 @@ "openxmlformats-officedocument-spreadsheetml-template\n" "LngText.text" msgid "Microsoft Excel Worksheet Template" -msgstr "Microsoft Excel Arbeitsblattsvorlage" +msgstr "Microsoft Excel Arbeitsblattvorlage" #. So2PB #: documents.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/de/wizards/messages.po libreoffice-7.1.3~rc2/translations/source/de/wizards/messages.po --- libreoffice-7.1.2~rc2/translations/source/de/wizards/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/wizards/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -242,7 +242,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:70 msgctxt "RID_LETTERWIZARDDIALOG_START_15" msgid "Salu~tation" -msgstr "Briefan~rede" +msgstr "Briefan~rede:" #. FCjnE #: wizards/com/sun/star/wizards/common/strings.hrc:71 @@ -254,7 +254,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:72 msgctxt "RID_LETTERWIZARDDIALOG_START_17" msgid "~Complimentary close" -msgstr "~Grußformel" +msgstr "~Grußformel:" #. wZFLu #: wizards/com/sun/star/wizards/common/strings.hrc:73 @@ -320,19 +320,19 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:83 msgctxt "RID_LETTERWIZARDDIALOG_START_28" msgid "Page design" -msgstr "Seitendesign" +msgstr "Seitendesign:" #. GsEGH #: wizards/com/sun/star/wizards/common/strings.hrc:84 msgctxt "RID_LETTERWIZARDDIALOG_START_29" msgid "Page design" -msgstr "Seitendesign" +msgstr "Seitendesign:" #. jHVif #: wizards/com/sun/star/wizards/common/strings.hrc:85 msgctxt "RID_LETTERWIZARDDIALOG_START_30" msgid "Page design" -msgstr "Seitendesign" +msgstr "Seitendesign:" #. 2JKh5 #: wizards/com/sun/star/wizards/common/strings.hrc:86 @@ -428,7 +428,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:101 msgctxt "RID_LETTERWIZARDDIALOG_START_47" msgid "Footer" -msgstr "Fußzeile" +msgstr "Fußzeile:" #. Pgcir #: wizards/com/sun/star/wizards/common/strings.hrc:102 @@ -656,13 +656,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:147 msgctxt "RID_FAXWIZARDDIALOG_START_7" msgid "S~alutation" -msgstr "B~riefanrede" +msgstr "B~riefanrede:" #. yCrAe #: wizards/com/sun/star/wizards/common/strings.hrc:148 msgctxt "RID_FAXWIZARDDIALOG_START_8" msgid "~Complimentary close" -msgstr "~Grußformel" +msgstr "~Grußformel:" #. RJBJc #: wizards/com/sun/star/wizards/common/strings.hrc:149 @@ -704,13 +704,13 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:155 msgctxt "RID_FAXWIZARDDIALOG_START_15" msgid "Page design" -msgstr "Seitendesign" +msgstr "Seitendesign:" #. VyP8j #: wizards/com/sun/star/wizards/common/strings.hrc:156 msgctxt "RID_FAXWIZARDDIALOG_START_16" msgid "Page design" -msgstr "Seitendesign" +msgstr "Seitendesign:" #. u7oAX #: wizards/com/sun/star/wizards/common/strings.hrc:157 @@ -746,7 +746,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:162 msgctxt "RID_FAXWIZARDDIALOG_START_22" msgid "Footer" -msgstr "Fußzeile" +msgstr "Fußzeile:" #. 4r9Bt #: wizards/com/sun/star/wizards/common/strings.hrc:163 @@ -830,7 +830,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:176 msgctxt "RID_FAXWIZARDDIALOG_START_36" msgid "~Type of message" -msgstr "~Kommunikationsart" +msgstr "~Kommunikationsart:" #. BAKHS #: wizards/com/sun/star/wizards/common/strings.hrc:177 @@ -1052,7 +1052,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:223 msgctxt "RID_AGENDAWIZARDDIALOG_START_1" msgid "Agenda Wizard" -msgstr "Tagesordnungs-Assistent" +msgstr "Tagesordnungsassistent" #. AV2GE #: wizards/com/sun/star/wizards/common/strings.hrc:224 diff -Nru libreoffice-7.1.2~rc2/translations/source/de/wizards/source/resources.po libreoffice-7.1.3~rc2/translations/source/de/wizards/source/resources.po --- libreoffice-7.1.2~rc2/translations/source/de/wizards/source/resources.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/de/wizards/source/resources.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557207175.000000\n" #. 8UKfi @@ -221,7 +221,7 @@ "RID_REPORT_0\n" "property.text" msgid "Report Wizard" -msgstr "Berichts-Assistent" +msgstr "Berichtsassistent" #. BZtXG #: resources_en_US.properties @@ -941,7 +941,7 @@ "RID_REPORT_99\n" "property.text" msgid "Align Left - Red & Blue" -msgstr "Linksbündig – rot & blau" +msgstr "Linksbündig – rot und blau" #. BvcfB #: resources_en_US.properties @@ -1004,7 +1004,7 @@ "RID_REPORT_106\n" "property.text" msgid "Outline - Red & Blue" -msgstr "Umriss – rot & blau" +msgstr "Umriss – rot und blau" #. zKFcj #: resources_en_US.properties @@ -1058,7 +1058,7 @@ "RID_REPORT_112\n" "property.text" msgid "Outline, indented - Red & Blue" -msgstr "Umriss, eingerückt – rot & blau" +msgstr "Umriss, eingerückt – rot und blau" #. TzXg5 #: resources_en_US.properties @@ -1202,7 +1202,7 @@ "RID_DB_COMMON_5\n" "property.text" msgid "~Table name" -msgstr "~Tabellename" +msgstr "~Tabellenname" #. KC4Dw #: resources_en_US.properties @@ -4667,7 +4667,7 @@ "GroupnameDefault\n" "property.text" msgid "Imported_Templates" -msgstr "Importierte_Vorlagen" +msgstr "Importierte Vorlagen" #. As7iy #: resources_en_US.properties @@ -4793,7 +4793,7 @@ "DialogTitle\n" "property.text" msgid "Document Converter" -msgstr "Dokumenten-Konverter-Assistent" +msgstr "Dokumentkonverter-Assistent" #. 6hySA #: resources_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/dgo/cui/messages.po libreoffice-7.1.3~rc2/translations/source/dgo/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/dgo/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/dgo/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:35+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2479,1071 +2479,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/dsb/cui/messages.po libreoffice-7.1.3~rc2/translations/source/dsb/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/dsb/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/dsb/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-07-03 11:16+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Lower Sorbian \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME styri makrowe wěstotne rowniny (wót niskeje do wjelgin wusokeje) a dowěry gódne žrědła." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 co se ako organizacija za Google Summer of Code (GSoC) prócowaś, glejśo:" - -#. SNTbc -#: 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 "Sćo wěźeł, až móžośo komentary k źělam teksta pśipowjesyś? Wužywajśo jadnorje tastowu skrotconku %MOD1+%MOD2+C za to." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Musyśo jaden wótstawk abo někotare wótstawki pśesunuś? Njetrjebaśo kopěrowaś: Wužywajśo tastowu kombinaciju %MOD1+%MOD2+šypka (górjej/dołoj)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Změńśo zakładne pisma za pśeddefiněrowanu pśedłogu abo aktualny dokument pśez „Rědy ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Zakładne pisma“." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Cośo słowa z wěcej ako 10 znamuškami namakaś? Wužywajśo „Wobźěłaś ▸ Pytaś a wuměniś ▸ Pytaś a zapódajśo [a-z]{10} ▸ Dalšne nastajenja ▸ Regularne wuraze“," #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Wócyńśo w CALC CSV-dataju ako nowu tabelu w aktualnej tabelowej kalkulaciji pśez „Tabela ▸ Tabelu z dataje zasajźiś“." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Gaž we Writer tucny abo kursiwny tekst pišćo abo jen pódšmarujośo, móžośo ze standardnymi atributami pókšacowaś: Tłocćo jano tastowu skrotconku %MOD1+Umsch+X (to wótwónoźijo direktne znamuškowe formaty)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Wužywajśo %MOD1+%MOD2+Umsch+V, aby wopśimjeśe z mjazywótkłada ako njeformatěrowany tekst zasajźił." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Pśiměŕśo naglěd nožkow z „Rědy ▸ Nožki a kóńcne nožki…“" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Wubjeŕśo „Prezentacija ▸ Swójska prezentacija...“, aby folije pśerědował a wubrał, aby prezentaciju pótrjebnosćam swójogo publikuma pśiměrił." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Cośo za tekstowy źěl pšawopis kontrolěrowaś? Klikniśo do rěcnego kašćika statusoweje rědki (Dolnoserbšćina) abo lěpjej, nałožćo pśedłogu." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer móžo prozny bok mjazy dwěma rownyma (njerownyma) bokoma zasajźiś. Wubjeŕśo „Dataja ▸ Śišćaś ▸ Rejtarik %PRODUCTNAME Writer“ śišćarskego dialoga a klikniśo do kašćika pśed „Awtomatiski zasajźone prozne boki śišćaś“" #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Njocośo wšykne supy śišćaś? Schowajśo abo rědujśo do kupkow te, kótarež njetrjebaśo." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Aby prezentaciju změnił, kótaraž se awtomatiski wótgrawa, wócyńśo ju a gaž startujo, klikniśo z pšaweju tastu a wubjeŕśo Wobźěłaś w kontekstowem meniju. " #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Musyśo eksaktnje pozicioněrowaś? Z %MOD2+šypkowymi tastami móžośo objekty (formy, wobraze, formule) piksel pó pikselu pśesunuś." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Tłocćo na tastu F1, aby zasajźonu pomoc wužywał, jolic jo zainstalěrowana. Howac jo online k dispoziciji:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Klikniśo z pšaweju tastu do statusoweje rědki do wobcerka z tekstom „Pśerěz; Suma:“ w %PRODUCTNAME Calc a wubjeŕśo ‚Licba wubranych celow‘, aby licbu wubranych celow pokazał." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Cośo dwa słupa abo wěcej za jano źěl boka %PRODUCTNAME Writer měś? Wužywajśo „Zasajźiś > Wótrězk > Słupy“, nastajśo licbu słupow, klikniśo pótom na „Zasajźiś“, aby wótrězk zasajźił a pišćo tekst do wótrězka." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Wužywajśo „Daty ▸ Statistika“ Lubowólne proby, Wopisujuca statistika, Wariancowa analyza abo Korelacija a wjele wěcej w %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Móžośo z jadneje tabele do drugeje kopěrowaś, bźez togo aby mjazywótkład wužywał. Wubjeŕśo wobceŕk, kótaryž ma se kopěrowaś, klikniśo z tłoconeju tastu %MOD1 na rejtarik celoweje tabele a wužywajśo „Tabela ▸ Cele wupołniś ▸ Tabele wupołniś“." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Móžośo naglěd %PRODUCTNAME změniś: Wužywajśo „Rědy ▸ Nastajenja ▸ Naglěd ▸ Wužywaŕski pówjerch“." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Wužywajśo w %PRODUCTNAME Impress „Zasajźiś ▸ Medije ▸ Fotoalbum“, aby diaprojekciju z rěda wobrazow z funkciju ‚Fotoalbum‘ napórał." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Móžośo se formule město wuslědkow pokazaś daś. Wužywajśo „Naglěd ▸ Formulu pokazaś“ w Calc (abo „Rědy > Nastajenja ▸ %PRODUCTNAME Calc ▸ Naglěd ▸ Pokazaś ▸ Formule“)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME se wót pśijaśelnego zgromaźeństwa wuwija, kótarež ze stow wuwijarjow na cełem swěśe wobstoj. Pśinosujśo swóje zamóžnosći, bźeztogo aby programěrował." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Sćo lěwicaŕ? Zmóžniśo „Rědy ▸ Nastajenja ▸ Rěcne nastajenja ▸ Rěcy ▸ Aziske“ a wubjeŕśo „Rědy ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Naglěd ▸ Naglěd ▸ Napšawo wusměrjony“, což suwańsku rědku nalěwo pokazujo." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Cośo, až waše kapitlowe nadpisma pśecej bok zachopiju? Wužywajśo „Pśedłogi ▸ Pśedłogi zastojaś (abo tłocćo F11) ▸ Wótstawkowe pśedłogi ▸ Nadpismo ▸ Nadpismo1 ▸ (klikniśo z pšaweju tastu) ▸ Změniś ▸ Tekstowy běg ▸ Łamanja ▸ Zasajźiś ▸ Bok ▸ Pśed“." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datumowa abo casowa gódnota jo jano licba dnjow wót wubranego dnja nul; w licbje cełolicbny źěl datum a łamkowy źěl cas (zajźonydźěl dnja) reprezentěrujo; 0.5 połdnjo reprezentěrujo." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Umsch+%MOD1+Entf wót kursora do kóńca aktualneje sady wulašujo." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Wužywajśo pópisanja za słupy abo smužkach we formulach. Jolic na pśikład dwa słupa „Cas“ a „KM“ maśo, wužywajśo „Cas/KM“, aby minuty na kilometer dostał." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "„Drogujuce mrojki“ wokoło celow w Calc móliśo? Tłocćo tastu Esc, aby je zastajił; kopěrowane wopśimjeśe za zasajźenje k dispoziciji wóstanjo." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Cośo wjelikopósłańc %PRODUCTNAME byś? Su pśizwólenja za wuwijarjow, administratorow a trenarjow." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Nałožćo rozdźělne pśedłogi boka na tabele, aby wusoki a prěcny format w tabelowem dokumenśe měšał." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klikniśo na symbol wósebnego znamuška w symbolowej rědce, aby nejcesćej wužyte a nejnowše znamuška malsnje zasajźił." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Wubjeŕśo „Hierarchiski“ w bocnicy Pśedłogi, aby póśěg mjazy pśedłogami wiźeł." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Móžośo we Writer pśedłogi wužywaś, aby tabele w swójom dokumenśe konsistentne cynił. Wubjeŕśo jadnu z pśeddefiněrowanych pśedłogow (F11) abo wužywajśo Tabela ▸ Pśedłogi awtomatiskego formata." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Cośo wužywanje tasty %MOD1 konfigurěrowaś, aby wótkazam slědował? Wužywajśo „Rědy ▸ Nastajenja ▸%PRODUCTNAME ▸ Wěstota ▸ Nastajenja ▸ Klikniśo z tłoconeju tastu %MOD1, aby wótkaze wócynił“." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Cośo se woblicenje jadnotliwych elementow formule woglědaś? Wubjeŕśo wótpowědne elementy a tłocćo F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Móžośo cele z „Format▸ Cele... ▸ Rejtarik Celowy šćit“ šćitaś. Aby zasajźanjeju, lašowanjeju, pśemjenjowanjeju, pśesunjenjeju abo kopěrowanjeju tabelow zajźował, wužywajśo „Rědy ▸ Tabelu šćitaś...“" #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Cośo spóromnje kśiwule pisaś? Śěgniśo liniju, klikniśo dwójcy, pišćo tekst a wužywajśo pótom „Format ▸ Tekstowe pólo a forma ▸ Fontwork“." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Cośo jano nejwětše w tabeli Calc pokazaś? Wubjeŕśo meni „Daty ▸ Awtomatiski filter“, klikniśo pótom na šypku w celi wuběrańskeje lisćiny a wubjeŕśo „Nejwětše 10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Aby we Writer licbu boka ze swójogo zapisa wopśimjeśa wótwónoźił, wužywajśo „Zasajźiś ▸ Zapis wopśimjeśa a gronidłowy zapis ▸ Zapis wopśimjeśa, gronidłowy zapis a zapis literatury“ (abo klikniśo z pšaweju tastu a wobźěłajśo do togo zasajźony zapisk). Wulašujśo na rejtariku „Zapiski“ numer boka (#) ze smužki „Struktura“." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Z Nawigatorom móžośo nadpisma a tekst pód nadpismom wubraś a górjej resp. dokoj pśesunuś, w Nawigatorje a w dokumenśe." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Aby malsnje formulowy objekt we Writer napórał, zapódajśo swóju formulu a wužywajśo „Zasajźiś ▸ Objekt ▸ Formula...“, aby tekst konwertěrował." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Z %PRODUCTNAME jo wjelgin lažko, nowy słownik instalěrowaś: Słowniki se ako rozšyrjenja k dispoziciji stajaju." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME za wašu mobilnosć teke ako portabelna wersija eksistěrujo. Móžośo samo bźez pšawow administratora na swójom licadle %PRODUCTNAME Portable teke na swójej twardej plaśe instalěrowaś." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer wam zmóžnja, swóje nožki na bok, kapitl a dokument numerěrowaś: Wubjeŕśo „Rědy ▸ Nožki a kóńcne nožki ▸ Nožki ▸ Numerěrowanje“." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Waš dokument Writer njejo se zasej wócynił z tekstowym kursorom na tom samskem wobźěłowańskem městnje, na kótaremž sćo jen składował? Pśidaśo w „Rědy ▸ Nastajenja ▸ %PRODUCTNAME ▸ Wužywaŕske daty ▸ Pśedmě/familijowe mě/iniciale“." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Citatowe zastojanje? Wužywajśo rozšyrjenje tśeśego póbitowarja." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Cośo w někotarych tabelach gódnotu na tom samskem městnje zasajźiś? Wubjeŕśo tabele: Źaržćo tastu %MOD1 tłoconu a klikniśo na jich rejtariki, nježli až ju zapódajośo." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Cośo tekst w dokumenśe schowaś? Wubjeŕśo tekst a wužywajśo „Zasajźiś > Wótrězk“ a wubjeŕśo „Schowaś > Schowaś“." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Móžośo srjejźnu tastu myški pśiměriś. Wužywajśo „Rědy ▸ Nastajenja ▸ %PRODUCTNAME ▸ Naglěd ▸ Srjejźna tasta“." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Cośo dwa boka we wusokem formaśe na jaden bok w prěcnem formaśe śišćaś (pómjeńšonej wót A4 do A5)? Wubjeŕśo „Dataja ▸ Śišćaś“ a nastajśo „2“ w pólu „Boki na łopjeno“." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Za malsny pśistup k swójim dokumentowym cytańskim znamjenjam, klikniśo z pšaweju tastu na numer boka w statuslowej rědce (w dolnem lěwem rožku dokumentowego wokna)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Wubjeŕśo objekt w dokumentowej slězynje a wužywajśo rěd Wubraś w symbolowej rědce Kreslanka, aby objekt wobgranicował." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definěrujśo teksty, kótarež cesto ako awtomatiski tekst wužywaśo. Móžośo je pśez jich mě, tastowu skrotconku abo symbolowu rědku w dokumenśe Writer zasajźiś." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Aby muziku za prezentaciju wótgrał, pśipokažćo prědnemu folijowemu pśechadoju zuk, bźez togo aby na tłocašk „Pśechad na wšykne folije nałožyś“ kliknuł." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 wótlěwa napšawo njewoblicujo, ale źiwa na pórěd „spinki - eksponenty - multiplikacija - diwizija - adicija - subtrakcija“." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Dostanjośo se k dokumentaciji %PRODUCTNAME a dermotnym pśiruckam na:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Cośo wšykne „<“ a „>“ naraz wótwónoźeś a tekst w nich wobchowaś? Źiśo k „Wobźěłaś ▸ Pytaś a wuměniś: Pytaś = [<>], Wuměniś = (prozne wóstajiś) a wubjerśo „Regularne wuraze“ pód „Dalšne nastajenja“." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Musyśo pisnu rozpšawu z Writer prezentěrowaś? Wubjeŕśo „Dataja ▸ Pósłaś ▸ Rozrědowanje do prezentacije“, aby se prezentacija awtomatiski z rozrědowanja napórała." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Cośo zwobraznjenje hyperwótkazow w tabelowej kalkulaciji zastojaś? Zasajźćo je ze Zasajźiś > Hyperwótkaz..." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Znjemóžniśo „Rědy ▸ Nastajenja ▸ %PRODUCTNAME Calc ▸ Naglěd ▸ Měritko: ‚Tabele synchronizěrowaś‘“, aby kužda tabela swójsku skalěrowański faktor w Calc měła." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Móžośo za kuždy rejtarik barwu póstajiś: Klikniśo z pšaweju tastu na rejtarik abo wužywajśo „Tabela ▸ Rejtarikowa barwa tabele...“ w Calc." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Slědujśo celam we formuli, slědoju k pśedchadnikoju (Umsch+F9) abo naslědnikoju (Umsch+F5) (abo wubjeŕśo „Rědy ▸ Detektiw“). Za kuždu namakanku źiśo dalšny kšac w rjeśazku." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Zasajźćo a numerěrujśo swóje formule w jadnom kšacu: Tłocćo FN a pótom F3. Awtomatiski tekst se z formulu a numerom zasajźijo, wuměrjony w tabeli." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Móžośo zapis wobrazow z objektowych mjenjow napóraś, nic jano z pópisanjow." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Wužywajśo swój telefon Android abo swój iPhone, zo byšće swóju prezentaciju Impress wóźił." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Cośo wěźeś, kak wjele dnjow aktualny mjasec ma? Wužywajśo funkciju DNYWMJASECU(ŹINSA())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Waše licby se ako ### w swójom tabelowem dokumenśe pokazuju? Słup jo pśewuski, aby wšykne cyfry pokazał." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Zmóžniśo pśez „Rědy ▸ Nastajenja ▸ OpenCL“ wjele paralelnych woblicenjow formulowych celow." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Wužywajśo rěd Zwězowak z kresleńskeje symboloweje rědki w Draw/Impress, aby rědne běžne diagramy napórał a objekt pó žycenju do Writer kopěrował." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Waše dary naše zgromaźeństwo pó cełem swěśe pódpěraju." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Cośo k datumoju x mjasecow aděrowaś? Wužywajśo =EDATUM(zachopny datum;mjasece)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Wužywajśo %MOD1+* (na numeriskej tastaturje), aby susedny wobcerk celow wubrał, kótarež daty wopśimuju a su pśez prozne smužki a słupy wobgranicowane." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Waš muster za spóznawanje datuma jo njepśigódny? Wužywajśo „Rědy ▸ Nastajenja ▸ Rěcne nastajenja ▸ Rěcy ▸ Mustry za spóznawanje datuma“, aby muster pśiměrił." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Cośo formule do CSV-dataje eksportěrowaś? Wužywajśo „Dataja ▸ Składowaś ako ▸ Dateityp: Tekst CSV, zmóžniśo ‚Filtrowe nastajenja wobźěłaś‘“ a „Celowe formule město wuliconych gódnotow składowaś“ w pśiducem dialogu." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konsola Presenter jo wjelicna funkcija, gaž z %PRODUCTNAME Impress źěłaśo. Sćo ju južo wopytał?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Aby w Calc někotare komentary wulašował, wubjeŕśo cele z komentarami a wužywajśo „Tabela ▸ Celowe komentary ▸ Komentar wulašowaś“." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Klikniśo na symbol PDF w symbolowej rědce, aby swóje dokumenty z jadnym kliknjenim lažko do PDF konwertěrował." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Cośo wjeliki celowy wobceŕk bźez kulanja wubraś? Zapódajśo wobceŕkowy póśěg (na pś. A1:A1000) do mjenjowego póla a tłocćo pón Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Cośo płaśiwe parametry pśikazoweje smužki póznaś? Startujśo soffice z --help, -h abo -?." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Wužywajśo w Calc „Format ▸ Bok ▸ Tabela ▸ Měritko ▸ Skalěrowański modus“, aby bokoju tabelu abo śišćarske wobcerki pśiměrił." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Trjebaśo njenumerěrowany zapisk w lisćinje? Wužywajśo „Njenumerěrowany zapisk zasajźiś“ w symbolowej rědce „Naliceńske znamuška a numerěrowanje“ we Writer." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Móžośo wusmerjenje tabelowych celow we Writer rotěrowaś. Wužywajśo „Tabela ▸ Kakosći… ▸ Tekstowy běg ▸ Tekstowe wusměrjenje“." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Śěgniśo w %PRODUCTNAME Draw zrězk dweju linealowu w górnem lěwem rožku do źěłoweje płoniny, aby dypk 0/0 linealowu změnił." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Cośo słup w Calc mjazy dwěma drugima w jadnem kšacu pśesunuś? Klikniśo na głowu, pótom do cele w słupje, źaržćo tastu myški tłoconu a pśesuńśo do cele z tastu %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Markěrujśo awtomatiski wšykne zapiski alfabetiskego gronidłowego zapisa z pomocu konkordancneje dataje." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Wužywajśo „Format ▸ wusměriś“ (abo kontekstowy meni), aby objekty w Draw/Impress dokradnje pozicioněrował: Wusměrjuju se na boku, jolic se jaden objekt wuběra resp. na kupku wustatkujo." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Njewužywajśo tabulatory w dokumenśe Writer, aby zapiski z proznym rumom źělił. Pó tom, což wopytujośo cyniś, móžo tabela bźez ramikow lěpša wólba byś." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Njetrjebaśo lisćinu „Rědy ▸ Pśiměriś ▸ Tastatura“ pśeglědowaś, aby tastowu skrotconku namakał: Zapódajśo jen jadnorje." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME móžo numerěrowane pópisanje awtomatiski pśidaś, gaž objekty zasajźaśo. Glejśo „Rědy ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Awtomatiske pópisanje“." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Z %PRODUCTNAME móžośo swójo konto Google Mail wužywaś, aby serijowe mejlki rozpósłał. Wupołniśo „Rědy ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Serijowa e-mail“." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Wubjeŕśo „Naglěd ▸ Cele fiksěrowaś ▸ Prědnu smužku fiksěrowaś“, aby słupowe głowy tabele widobne źaržał, gaž smužki kulaśo." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Cośo zmakrami Basic %PRODUCTNAME źěłaś? Póglědajśo do pśikładow pód „Rědy ▸ Makra ▸ Makra wobźěłaś“." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Nałožćo wótstawkowe pśedłogi za nadpisma we Writer z tastowymi skrotconkami: Tłocćo %MOD1+1 za nadpismo 1, %MOD1+2 za nadpismo 2 atd." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Njezgubujśo se we wjelikich dokumentach. Wužywajśo Nawigator (F5), aby swóju drogu pśez wopśimjeśe namakał." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Wužywajśo „Wobźěłaś ▸ Pytaś a wuměniś“, aby wósebne znamuška direktnje zasajźił: Klikniśo z pšaweju tastu do zapódawańskich pólow abo tłocćo Umsch+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Trjebaśo swójske wopśimjeśe za kakosći metadatow? Wužywajśo „Dataja ▸ Kakosći ▸ rejtarik Swójske kakosći“, aby napórał, což cośo." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Cośo objekt w Draw wiźeś, ale nic śišćaś? Śěgniśo jen do warsty, za kótaruž marka „Śišćobny“ njejo nastajona (klikniśo z pšaweju tastu pód bokom na rejtarik a wubjeŕśo „Warstu změniś“)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Wužywajśo „Zasajźiś ▸ Pólo ▸ Datum“, aby aktualny datum do swójogo dokumenta zasajźił." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Maśo wjele wobrazow w dokumenśe Writer? Znjemóžniśo „Naglěd ▸ Wobraze a diagramy“, aby zwobraznjenje póspěšył." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Wubjeŕśo w Calc „Tabela ▸ Cele wupołniś ▸ Z pśipadnymi licbami wupołniś“, aby pśipadny rěd na zakłaźe wšakich rozdźělenjow napórał." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Pśemjeńśo swóje folije w Impress, aby interakcije ako „K foliji“ definěrował a aby zbadnjejše zespominanje ako foliju 1, foliju 2 atd. měł…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Kapitlowe numerěrowanje wam zmóžnja, tekst pśed kapitlowym numerom zasajźiś. Zapódajśo na pśikład „Kapitel“, aby „Kapitel 1“ pokazał." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Cośo tabelu Writer transponěrowaś? Kopěrujśo ju a zasajźćo ju do Calc. Aby ju transponěrował, kopěrujśo ju w Calc a wubjeŕśo „Wobźěłaś – Wopśimjeśe zasajźiś – Wopśimjeśe zasajźiś… – Kašćik ‚Transponěrowaś‘“. Kopěrujśo ju pótom do tabele Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Aby w Draw rěd „Wertikalny tekst“ w kresleńskej symbolowej rědce zmóžnił, wubjeŕśo „Rědy ▸ Nastajenja ▸ Rěcne nastajenja ▸ Standardne rěcy za dokumenty ▸ Aziske“ (a cyńśo jen widobny z kliknjenim z pšaweju tastu na rědku a pótom na „Widobne tłocaški“." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Aby wobceŕkowy wuběrk pówětšył, klikniśo z pšaweju tastu na skalěrowański kašćik statusoweje rědki a wubjeŕśo „Optimalny naglěd“." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Móžośo eksistěrujuce PDF-dataje signěrowaś a toś te signatury pśeglědowaś." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Napórajśo cesto jaden dokument z drugego? Wužywajśo ga pśedłogu." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Wužywajśo „Format ▸ Wuměnjone ▸ Zastojaś...“ w Calc, aby wuslěźił, kótare cele maju wuměnjone formatěrowanje." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Wubjeŕśo „Rědy ▸ Detektiw ▸ Njepłaśiwe daty wóznamjeniś“, aby wšykne cele w tabeli wuzwignuł, kótarež gódnoty zwenka pšawidłow płaśiwosći wopśimuju." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Wužywajśo zasajźenje pismow pśez „Dataja ▸ Kakosći ▸ Pismo“, aby z drugimi běrowymi paketami lěpjej gromadu źěłał." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Aby w Calc formulu do statiskich gódnotow konwertěrował, njetrjebaśo kopěrowaś; wužywajśo „Daty ▸ Wulicyś ▸ Formula do gódnoty“." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Móžośo wšykne komentary w dokumenśe znowego formatěrowaś: Klikniśo na šypku dołoj w komentarje a wubjeŕśo „Wšykne komentary formatěrowaś“." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Cośo to samske wugótowanje za wobrazowku a śišćanje? Wubjeŕśo „Rědy ▸ Nastajenja... ▸ %PRODUCTNAME Calc ▸ Powšykne ▸ Śišćakowe měry za formatěrowanje teksta wužywaś“." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer wam pomaga, zawěsćenja napóraś. Wubjeŕśo „Dataja ▸ Kopiju składowaś...“ a napórajśo nowy dokument. Pókšacujśo pótom ze źěłom na originalu." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Gaž sćo napórał pśedłogu na zakłaźe drugeje pśedłogi, móžośo procentowu gódnotu abo dypkowu gódnotu (w „pt“) wužywaś, na pś. 110 % abo -2 pt abo +5 pt." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Aby w Calc komentar kopěrował, bźez togo aby wopśimjeśe celoweje cele zgubił, kopěrujśo komentar do celoweje cele, klikniśo z pšaweju tastu na „Wopśimjeśe zasajźiś ▸ Wopśimjeśe zasajźiś…“ a znjemóžniśo wšykne zapiski mimo „Komentary“ w dialogu. Zmóžniśo tam pód „Operacije“ zapisk „Pśidaś“." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Konwertěrujśo wšykne swóje dokumenty MS Office do formata OpenDocument z asistentom Dokumentowy Konwerter w meniju „Dataja ▸ Asistenty ▸ Dokumentowy konwerter…“." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Gaž rowno celu wobźěłujośo, móžośo z pšaweju tastu kliknuś a póla zasajźiś: datum, tabelowe mě, dokumentowy titel atd." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Musyśo tabelu Writer pśesunuś? Wužywajśo z menija „Tabela ▸ Wubraś“ a pótom z menija „Zasajźiś ▸ Wobłuk…“ a pśesuńśo ju, źož cośo." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Wužywajśo „Rědy ▸ Awtomatiski tekst ▸ Awtomatiski tekst (tłocašk) ▸ Importěrowaś“, aby dokument Word wubrał abo pśedłogu, kótaraž zapiski awtomatiskego teksta wopśimujo, kótarež cośo importěrowaś." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Njezasajźajśo manuelne łamanja, aby dwa wótstawka źělił. Wužywajśo město togo „Format (abo Wótstawk z kontekstowego menija) ▸ Wótstawk ▸ Zasunjenja a wótkłony ▸ Wótkłon ▸ Pód wótstawkom“." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Wobchowajśo nule pśed licbu z pomocu nastajenja celowego formata ‚Wjeduce nule‘ pśez„ Format ▸ Cele“, abo formatěrujśo celu ako tekst, nježli až licbu zapódawaśo." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Sćo lisćinowu pśedłogu wužył a cośo se k standardoju wrośiś? Klikniśo na symbol „Naliceńsku lisćinu pśešaltowaś“ abo symbol „Numerěrowanu lisćinu pśešaltowaś“ na symbolowej rědce Formatěrowanje." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Wulašujśo wšykne swóje śišćarske wobcerki w Calc z jadnym kšacom: Wubjeŕśo wšykne tabele a wužywajśo pótom „Format ▸ Śišćarske wobcerki ▸ Lašowaś“." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Wubjeŕśo „Zasajźiś ▸ Wobraz“ abo śěgniśo slězynowy wobraz z galerije a pótom „Format ▸ Rědowaś ▸ Do slězyny“, aby tabelam slězynowe wobraze pśidał." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Maśo problemy pśi zasajźowanju teksta z PDF-datajow abo webbokow do dokumentow? Wopytajśo jen ako njeformatěrowany tekst zasajźiś (%MOD1+%MOD2+Umsch+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Wužywajśo funkciju =PŚIRĚZKPŚERĚZK() w Calc, aby pśerězk datowego rěda bźez nejwušeje a nejnišeje gódnoty wulicył." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Opcionalny stwórty parameter funkcije Calc WPOKAZ pódawa, lěc prědny datowy słup jo sortěrowany. Jolic nic, zapódajśo FALSE abo 0." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Symbolowe rědki se na wěsty kontekst póśěguju, wócynjaju se we wótwisnosći wót konteksta. Jolic to njocośo, znjemóžniśo je w „Naglěd ▸ Symbolowe rědki“." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Cośo globalny dokument z aktualnego dokumenta Writer napóraś? Wužywajśo „Dataja ▸ Pósłaś ▸ Globalny dokument napóraś“ (póddokumenty se pó rozrědowanju napóraju)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Cośo w Calc cele na śišćarskem boku centrěrowaś? Wužywajśo „Format ▸ Bok...▸ Bok ▸ Wugótowańske nastajenja ▸ Tabelowe wusměrjenje“." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Wobłuki daju se zwězaś, aby mógł tekst wót jadnogo do drugego hyś, ako w desktopowem publicěrowanju." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Klikniśo do tabele a wubjeŕśo „Zasajźiś ▸ Diagram“, aby we Writer diagram na zakłaźe tabele napórał." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Wubjeŕśo nastajenja w „Rědy ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Formatěrowańske pomocne srědki ▸ Formatěrowanje pokazaś“, aby wubrał, kótare njeśišćajobne znamuška maju se pokazaś." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Cośo we Writer k wěstemu bokoju skócyś? Klikniśo cele nalěwo dołojce w statusowej rědce na pś. na zapisk „Bok 1 z 1“, aby dialog „K bokoju pśejś“ wócynił, abo wužywajśo „Wobźěłaś ▸ K bokoju pśejś…“ abo tłocćo %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME wěcej ako 150 rěcow pódpěra." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Znjemóžniśo „Prezentacija ▸ Nastajenja prezentacije ▸ Nastajenja ▸ Prezentacija pśecej w prědku“, jolic cośo, až drugi program ma swójo wokno w prědku wašeje prezentacije pokazaś." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Cośo tucnje napisane słowa w dokumenśe Writer namakaś? Wubjeŕśo „Wobźěłaś ▸ Pytaś a wuměniś... ▸ Dalšne nastajenja ▸ Atributy ▸ Pismowa waga“." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Móžośo wótstawki abo tabelowe smužki alfabetiski abo numeriski pśez „Rědy ▸ Sortěrowaś sortěrowaś“." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Aby wótstawk pśed abo za wótrězkom zasajźił, tłocćo %MOD2+Enter na zachopjeńku resp. na kóńcu wótrězka." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME ma zastojnstwo pśedłogow, aby derje wuglědajuce dokumenty napórał - wopytajśo jo." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Wulicćo slědkpłaśenja póžyconkow z Calc: na pś. =PŠP(2%/12;36;2500) za dankowu sajźbu na periodu 2%/12, 36 mjasacow a póžyconk 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Njamóžośo z funkciju VLOOKUP w Calc namakaś, což pytaśo? Z INDEX a MATCH móžośo wšykno cyniś!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Cośo schowany słup A pokazaś? Klikniśo na celu w słupje B, tłocćo lěwu tastu myški, gibniśo myšku dolěwa a pušćo tastu. Wubjeŕśo pótom „Format ▸ Słupy ▸ Pokazaś“." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Aby numer boka we Writer změnił, wubjeŕśo „Format ▸ Wótstawk...“ a pótom na rejtarik „Tekstowy běg ▸ Łamanja ▸ Zasajźiś“ a zapódajśo numer." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Wuwjeźćo %PRODUCTNAME pśez rollApp we wobglědowaku." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Źiwny zmólkowy kod w Calc, zmólka slědowana pśez licbu? Toś ten bok dajo wujasnjenje:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Aby wótstawk zasajźił, kótaryž titel njejo w zapisu wopśimjeśa, wubjeŕśo Format > Wótstawk > Rozrědowanje a numerěrowanje a pótom rozrědowańsku rowninu." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Mimo zapisa wopśimjeśa móžo %PRODUCTNAME gronidłowy zapise, zapise wobrazow, zapise tabelow, zapise objektow, zapise literatury a swójske zapise napóraś. " #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Njamóžośo swójsku celowu pśedłogu změniś abo wulašowaś? Pśeglědujśo wšykne tabele, lěc žedna njejo šćitana." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Cośo wěźeś, lěc cela we formulach drugich celow w Calc wustupujo? Wužywajśo „Rědy ▸ Detektiw ▸ Naslědnikam slědowaś“ (Umsch+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "W zapódawańskem pólu „Z“ nastajenjow awtomatiskeje korektury, móžośo zastupujucej symbola .* wužywaś." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Cośo smužku górjejce pódwójś? Tłocćo %MOD1+D abo wužywajśo „Tabela ▸ Cele wupołniś ▸ Dołojce“." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Aby w někotarych tabelach pytał, wubjeŕśo je, nježli až pytanje zachopijośo." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Pśesuńśo cele z Calc do normalnego naglěda folije, aby tabelu napórał; gaž do rozrědowańskego naglěda śěgniśo, kužda cela smužku w rozrědowanju napórajo." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME Writer wam pomaga, se dweju prozneju znamjenjowu abo wěcej proznych znamjenjow wobinuś. Wubjeŕśo „Rědy ▸ Awtomatiska korektura ▸ Nastajenja awtomatiskeje korektury ▸ Nastajenja ▸ Dwójne prozne znamjenja ignorěrowaś“." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Cośo kursor do cele napšawo stajiś, za tym až sćo gódnotu w Calc zapódał? Wužyajśo tabulatorowu tastu město zapódawańskeje tasty." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Aby se suwańska rědka w Calc nalěwo pokazała, zmóžniśo „Rědy ▸ Nastajenja ▸ Rěcne nastajenja ▸ Rěcy ▸ Kompleksne tekstowe wugótowanje“ a zmóžniśo pótom w meniju „Tabela ▸ Wótpšawa nalěwo“." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Śěgniśo formatěrowany objekt do wokna Pśedłogi. Dialogowe pólo se wócynijo a zapódajśo jadnorje mě noweje pśedłogi." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nowe wersije %PRODUCTNAME nowe funkcije, zmólkowe pórěźenja a wěstotne dopórěźenja k dispoziciji stajaju. Źaržćo swóju softwaru na běžnem!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Wuwijaśo nowe XSLT- a XML-filtry?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Pomoc %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Dalšne informacije" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Strg" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/dz/cui/messages.po libreoffice-7.1.3~rc2/translations/source/dz/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/dz/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/dz/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2477,1071 +2477,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/dz/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 11:55+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "འགུལ་ཅན་ཡིག་གཟུགས་ཚུ་ རིབ་སྟོན་འབད་བའི་ཡིག་གཟུགས།" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "འགུལ་ཅན།" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/el/cui/messages.po libreoffice-7.1.3~rc2/translations/source/el/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/el/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/el/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-01-07 18:36+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "Το %PRODUCTNAME υποστηρίζει 4 επίπεδα ασφαλείας μακροεντολών (από χαμηλή μέχρι πολύ υψηλή) και έμπιστες πηγές." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 σκοπεύει να συμμετάσχει ως οργανισμός στο Google Summer of Code (GSoC) δείτε:" - -#. SNTbc -#: 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 "Ξέρετε ότι μπορείτε να επισυνάψετε σχόλια σε τμήματα κειμένου; Χρησιμοποιήστε απλά τη συντόμευση %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Χρειάζεται να μετακινήσετε μία ή περισσότερες παραγράφους; Δεν χρειάζεται να αποκόψετε και να επικολλήσετε: Χρησιμοποιήστε τη συντόμευση πληκτρολογίου %MOD1+%MOD2+βέλος (πάνω/κάτω)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Αλλάξτε τις βασικές γραμματοσειρές για το προκαθορισμένο πρότυπο ή τρέχον έγγραφο με Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Writer ▸ Βασικές γραμματοσειρές." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Θέλετε να βρείτε τις λέξεις που περιέχουν περισσότερους από 10 χαρακτήρες; Επεξεργασία ▸ Εύρεση και αντικατάσταση ▸ Αναζήτηση ▸ [a-z]{10,} ▸ Άλλες επιλογές ▸ Σημείωση κανονικών εκφράσεων." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Ανοίξτε αρχείο CSV ως νέο φύλλο στο τρέχον υπολογιστικό φύλλο μέσω Φύλλο ▸ Φύλλο από αρχείο." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Πληκτρολογώντας έντονα, πλάγια ή υπογραμμισμένα στο Writer μπορείτε να συνεχίσετε με τα προεπιλεγμένα γνωρίσματα χρησιμοποιώντας απλώς τη συντόμευση %MOD1+Shift+X (αφαιρεί την άμεση μορφοποίηση των χαρακτήρων)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Χρησιμοποιήστε %MOD1+%MOD2+Shift+V για να επικολλήσετε τα περιεχόμενα του προχείρου ως μη μορφοποιημένο κείμενο." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Προσαρμόστε την εμφάνιση της υποσημείωσης με Εργαλεία ▸ Υποσημειώσεις και σημειώσεις τέλους…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "Θέλετε να αλλάξετε τον ορθογραφικό έλεγχο κάποιου τμήματος του κειμένου; Πατήστε στον τομέα γλώσσας της γραμμής κατάστασης ή καλύτερα εφαρμόστε μια τεχνοτροπία." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Το Writer μπορεί να εισάγει μια κενή σελίδα μεταξύ δύο μονών (ζυγών) σελίδων που ακολουθούν. Σημειώστε “Αυτόματη εκτύπωση εισαγόμενων κενών σελίδων” στην καρτέλα του διαλόγου εκτύπωσης του %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Χρειάζεστε ακριβή τοποθέτηση; Το %MOD2+πλήκτρα βελών μετακινεί αντικείμενα (σχήματα, εικόνες, τύπους) κατά ένα εικονοστοιχείο." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Η ενσωματωμένη βοήθεια είναι διαθέσιμη πατώντας F1, εάν την έχετε εγκαταστήσει. Αλλιώς κοιτάξτε διαδικτυακά στο:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Δεξιοπατήστε στη γραμμή κατάστασης στο %PRODUCTNAME Calc και επιλέξτε “Επιλογή πλήθους” για να εμφανίσετε τον αριθμό των επιλεγμένων κελιών." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Θέλετε να έχετε δύο ή περισσότερες στήλες μόνο για τμήμα σελίδας του %PRODUCTNAME Writer; Εισαγωγή ▸ Ενότητα, ορισμός με την καρτέλα στήλες και τοποθέτηση κειμένου σε αυτήν την ενότητα." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Χρησιμοποιήστε Δεδομένα ▸ Στατιστικά για δειγματοληψία, περιγραφικά στατιστικά, ανάλυση διακύμανσης, συσχέτιση και πολλά άλλα στο %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Μπορείτε να αντιγράψετε από ένα φύλλο σε ένα άλλο χωρίς το πρόχειρο. Επιλέξτε την προς αντιγραφή περιοχή, %MOD1+πάτημα στην καρτέλα του φύλλου προορισμού και χρησιμοποιήστε Φύλλο ▸ Συμπλήρωση κελιών ▸ Συμπλήρωση φύλλων." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Μπορείτε να αλλάξετε την εμφάνιση του %PRODUCTNAME μέσω Εργαλεία ▸ Επιλογές ▸ Προβολή ▸ Διεπαφή χρήστη." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Στο %PRODUCTNAME Impress, χρησιμοποιήστε Εισαγωγή ▸ Μέσα ▸ Φωτογραφικό λεύκωμα για να δημιουργήσετε μια προβολή διαφανειώνς από μια σειρά εικόνων με το γνώρισμα “Φωτογραφικό λεύκωμα”." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "μπορείτε να εμφανίσετε τους τύπους αντί για τα αποτελέσματα με Προβολή ▸ Εμφάνιση τύπου (ή Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Calc ▸ Προβολή ▸ Εμφάνιση ▸ Τύποι)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "Το %PRODUCTNAME αναπτύσσεται από μια φιλική κοινότητα, αποτελούμενη από εκατοντάδες συντελεστές παγκοσμίως. Γίνεται μέλος με τις ικανότητές σας πέρα από την κωδικοποίηση." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Αριστερόχειρας; Ενεργοποιήστε Εργαλεία ▸ Επιλογές ▸ Ρυθμίσεις γλώσσας ▸ Γλώσσες ▸ Ασιατικές και σημειώστε Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Writer ▸ Προβολή ▸ Χάρακας ▸ Δεξιά στοίχιση, που εμφανίζει τη γραμμή κύλισης στα αριστερά." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Θέλετε οι τίτλοι των κεφαλαίων σας να ξεκινούν πάντα μια σελίδα; Επεξεργαστείτε Επικεφαλίδα1 (τεχνοτροπία παραγράφου) ▸ Ροή κειμένου ▸ Αλλαγές και σημειώστε Εισαγωγή ▸ Σελίδα ▸ Πριν." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Η τιμή ημερομηνία/χρόνος είναι απλώς ένας αριθμός ημερών από μια επιλεγμένη ημέρα μηδέν· στον αριθμό, το ακέραιο τμήμα αντιπροσωπεύει ημερομηνία και το κλασματικό τμήμα είναι ο χρόνος (τμήμα της ημέρας που έχει περάσει), με το 0,5 να αναπαριστά το μεσημέρι." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del διαγράφει από τον δρομέα μέχρι το τέλος της τρέχουσας πρότασης." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Χρησιμοποιήστε ετικέτες στηλών ή γραμμών στους τύπους. Παραδείγματος χάρη, εάν έχετε δύο στήλες, “Time” και “KM”, χρησιμοποιήστε = Time/KM για να πάρετε λεπτά ανά χιλιόμετρο." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Βαρεθήκατε τις “διακεκομμένες γραμμές” γύρω από τα κελιά στο Calc; Πατήστε διαφυγή (esc) για να τις σταματήσετε· το αντιγραμμένο περιεχόμενο θα παραμείνει διαθέσιμο για επικόλληση." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Θέλετε να γίνετε εκπρόσωπος του %PRODUCTNAME; Υπάρχουν πιστοποιητικά για προγραμματιστές, διαχειριστές και εκπαιδευτές." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Αναμείξτε οριζόντιους και κάθετους προσανατολισμούς σε ένα υπολογιστικό φύλλο του Calc εφαρμόζοντας διαφορετικές τεχνοτροπίες σελίδας στα φύλλα." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Επιλέξτε “Ιεραρχική προβολή” στην πλευρική γραμμή τεχνοτροπιών για να δείτε τη σχέση μεταξύ τεχνοτροπιών." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Μπορείτε να χρησιμοποιήσετε τεχνοτροπίες για να κάνετε ομοιόμορφους τους πίνακες στο έγγραφό σας. Επιλέξτε μία από τις προκαθορισμένες τεχνοτροπίες (F11) ή μέσω Πίνακας ▸ Αυτόματη μορφή." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Ρύθμιση της χρήσης του πλήκτρου %MOD1 για να ανοίγετε υπερσυνδέσμους; Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME ▸ Ασφάλεια ▸ Επιλογές ▸ “Απαιτείται %MOD1+πάτημα για να ανοίγετε υπερσυνδέσμους”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Εάν θα θέλατε να προβάλετε τον υπολογισμό μεμονωμένων στοιχείων τύπου, επιλέξτε τα αντίστοιχα στοιχεία και πατήστε F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Γράψιμο κατά μήκος καμπύλης; Σχεδιάστε τη γραμμή, διπλοπατήστε, πληκτρολογήστε το κείμενο, Μορφή ▸ Πλαίσιο κειμένου και σχήματος ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Θέλετε να εμφανίσετε μόνο τις μέγιστες τιμές σε υπολογιστικό φύλλο; Επιλέξτε μενού Δεδομένα ▸ Αυτόματο φίλτρο, πατήστε το πτυσσόμενο βέλος και επιλέξτε “10 μεγαλύτερα”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "Για να πάρετε γρήγορα ένα μαθηματικό αντικείμενο στο Writer πληκτρολογήστε τον τύπο σας, επισημάνετε τον και χρησιμοποιήστε Εισαγωγή ▸ Αντικείμενο ▸ Τύπος για να μετατρέψετε το κείμενο." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Με το %PRODUCTNAME είναι πολύ εύκολη η εγκατάσταση νέου λεξικού: παρέχονται ως επεκτάσεις." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "Το %PRODUCTNAME έχει μια φορητή έκδοση που σας δίνει κινητικότητα. Ακόμα και χωρίς διαχειριστικά δικαιώματα στον υπολογιστή σας μπορείτε να εγκαταστήσετε το φορητό %PRODUCTNAME επίσης στον σκληρό σας δίσκο." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Το Writer σας επιτρέπει να αριθμήσετε τις υποσημειώσεις σας ανά σελίδα, κεφάλαιο, έγγραφο: Εργαλεία ▸ Υποσημειώσεις και τελικές σημειώσεις ▸ Καρτέλα υποσημειώσεων ▸ Καταμέτρηση." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Το έγγραφο Writer δεν ξανανοίγει με τον δρομέα κειμένου στην ίδια θέση επεξεργασίας που ήταν όταν το αποθηκεύσατε; Προσθέστε το όνομα ή το επώνυμο στο Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME ▸ Δεδομένα χρήστη ▸ Όνομα/Επώνυμο." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Διαχείριση παραπομπών; Χρησιμοποιήστε επέκταση τρίτων." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Θέλετε να εισάγετε μια τιμή στην ίδια θέση σε πολλά φύλλα; Επιλέξτε τα φύλλα: Κρατήστε πατημένο το πλήκτρο %MOD1 και πατήστε τις καρτέλες τους πριν την εισαγωγή." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Μπορείτε να προσαρμόσετε το μεσαίο πλήκτρο του ποντικιού στο Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME ▸ Προβολή ▸ Μεσαίο πλήκτρο ποντικιού." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Θέλετε να εκτυπώσετε δύο κάθετες σελίδες σε μία οριζόντια (μειώνοντας το Α4 σε Α5); Αρχείο ▸ Εκτύπωση και επιλέξτε 2 στο “Σελίδες ανά φύλλο”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Καθορίστε κείμενα που χρησιμοποιείτε συχνά ως Αυτόματο κείμενο. Θα μπορείτε να τα εισάγετε με το όνομά τους, ή συντόμευση ή γραμμή εργαλείων σε οποιοδήποτε έγγραφο Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 δεν υπολογίζει από αριστερά προς τα δεξιά αλλά ακολουθεί τη σειρά Παρενθέσεις - Εκθέτες - Πολλαπλασιασμός - Διαίρεση - Πρόσθεση - Αφαίρεση." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Πάρτε την τεκμηρίωση του %PRODUCTNAME και ελεύθερα βιβλία οδηγών χρήστη στο:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Χρειάζεστε να παρουσιάσετε μια αναφορά γραμμένη με το Writer; Το Αρχείο ▸ Αποστολή ▸ Διάρθρωση στην παρουσίαση δημιουργεί αυτόματα μια προβολή παρουσίασης από τη διάρθρωση." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Θέλετε να διαχειριστείτε την παρουσίαση των υπερσυνδέσμων σε υπολογιστικό φύλλο; Εισάγετε τους υπερσυνδέσμους με τη συνάρτηση HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Αποεπιλέξτε Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Calc ▸ Προβολή ▸ Εστίαση: “Συγχρονισμός φύλλων”, έτσι ώστε κάθε φύλλο στο Calc να έχει τον δικό του συντελεστή εστίασης." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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 "Εντοπίστε τα κελιά που χρησιμοποιούνται σε έναν τύπο, τα προηγούμενα (Shift+F9) ή τις εξαρτήσεις (Shift+F5) (ή χρησιμοποιήστε Εργαλεία ▸ Ανιχνευτής). Για κάθε κτύπημα προχωράτε ένα περισσότερο βήμα στην αλυσίδα." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Εισάγετε και αριθμήστε τους τύπους σας σε ένα βήμα: πληκτρολογήστε fn και έπειτα F3. Εισάγεται ένα αυτόματο κείμενο με τύπο και αριθμό στοιχισμένα σε πίνακα." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Xρησιμοποιήσετε το Android ή το iPhone για να ελέγξετε από μακριά την παρουσίαση του Impress σας." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Θέλετε να ξέρετε πόσες ημέρες υπάρχουν στον τρέχοντα μήνα; Χρησιμοποιήστε τη συνάρτηση DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Εμφανίζονται οι αριθμοί σας ως ### στο υπολογιστικό σας φύλλο; Η στήλη είναι πολύ στενή για να εμφανίσει όλα τα ψηφία." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Ενεργοποιήστε τους μαζικούς παράλληλους υπολογισμούς των κελιών τύπου μέσα από Εργαλεία ▸ Επιλογές ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Χρησιμοποιήστε το εργαλείο συνδέσμου από τη γραμμή εργαλείων σχεδίασης στο Draw/Impress για να δημιουργήσετε όμορφα διαγράμματα ροής και προαιρετικά αντιγράψτε/επικολλήστε το αντικείμενο στο Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Οι δωρεές σας υποστηρίζουν την παγκόσμια κοινότητά μας." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Θέλετε να προσθέσετε x μήνες σε μια ημερομηνία; Χρησιμοποιήστε =EDATE(ημερομηνία;μήνες)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Για να επιλέξετε συνεχή περιοχή κελιών που περιέχουν δεδομένα και οριοθετούνται από κενή γραμμή ή στήλες χρησιμοποιήστε %MOD1+* (αριθμητικό υποπληκτρολόγιο)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Θέλετε να εξάγετε τύπους σε CSV; Αρχείο ▸ Αποθήκευση ως ▸ Πληκτρολογήστε:Κείμενο CSV, σημειώστε “Επεξεργασία ρυθμίσεων φίλτρου” και σημειώστε “Αποθήκευση τύπων κελιού” στον επόμενο διάλογο." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Η κονσόλα παρουσιαστή είναι ένα σημαντικό γνώρισμα όταν δουλεύετε με το Impress του %PRODUCTNAME. Το έχετε κοιτάξει;" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Μπορείτε να μετατρέψετε εύκολα τα έγγραφά σας σε PDF με ένα πάτημα στο εικονίδιο PDF στη γραμμή εργαλείων." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Θέλετε να επιλέξετε μεγάλη περιοχή κελιών χωρίς κύλιση; Πληκτρολογήστε την αναφορά περιοχής (π.χ. A1:A1000) στο πλαίσιο ονόματος και μετά Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Θέλετε να ξέρετε τις έγκυρες παραμέτρους της γραμμής εντολών; Ξεκινήστε το soffice με --help ή -h ή -?." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Μπορείτε να περιστρέψετε τον προσανατολισμό του πίνακα κελιών με Πίνακας ▸ Ιδιότητες… ▸ Ροή κειμένου ▸ Προσανατολισμός κειμένου." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Στο Draw του %PRODUCTNAME για να αλλάξετε το σημείο 0/0 στους χάρακες, μετακινήστε την τομή των δύο χαράκων στην πάνω αριστερή γωνία στον χώρο εργασίας." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Μετακίνηση στήλης στο Calc μεταξύ δύο άλλων σε ένα βήμα; Πατήστε την κεφαλίδα, έπειτα ένα κελί στη στήλη, κρατήστε το πλήκτρο του ποντικιού και μετακινήστε στον προορισμό με το πλήκτρο %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Μπορείτε να σημειώστε αυτόματα αλφαβητικές καταχωρίσεις ευρετηρίου χρησιμοποιώντας ένα αρχείο συμφωνίας." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Χρησιμοποιήστε Μορφή ▸ Στοίχιση (ή το μενού περιβάλλοντος) για ακριβή τοποθέτηση των αντικειμένων στο Draw/Impress: κεντράρεται στη σελίδα εάν είναι επιλεγμένο ένα αντικείμενο ή δουλεύει στην ομάδα αντίστοιχα." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Μην χρησιμοποιείτε στηλοθέτες για να ξεχωρίζετε στοιχεία σε έγγραφο Writer. Ανάλογα με το τι προσπαθείτε να κάνετε, μπορεί ένας πίνακας χωρίς πλαίσιο να είναι καλύτερη επιλογή." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Το %PRODUCTNAME μπορεί να προσθέτει αυτόματα αριθμημένο υπόμνημα όταν εισάγετε αντικείμενα. Δείτε Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Writer ▸ Αυτόματο υπόμνημα." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Με το %PRODUCTNAME μπορείτε να χρησιμοποιήσετε τον λογαριασμό σας στο Google Mail για να κάνετε συγχώνευση αλληλογραφίας. Συμπληρώστε Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Writer ▸ Συγχώνευση ηλεκτρονικής αλληλογραφίας." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "Θέλετε να ξεκινήσετε να δουλεύετε με μακροεντολές Basic; Ρίξτε μια ματιά στα παραδείγματα στο Εργαλεία ▸ Μακροεντολές ▸ Επεξεργασία μακροεντολών." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Εφαρμόστε τεχνοτροπίες παραγράφου επικεφαλίδας στο Writer με τα πλήκτρα συντομεύσεων: %MOD1+1 για την επικεφαλίδα 1, %MOD1+2 για την επικεφαλίδα 2, κλπ." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Μην χάνεστε σε μεγάλα έγγραφα. Χρησιμοποιήστε τον πλοηγητή (F5) για να βρείτε τον δρόμο σας μέσα από το περιεχόμενο." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Επεξεργασία ▸ Εύρεση και αντικατάσταση σας επιτρέπει να εισάγετε ειδικούς χαρακτήρες απευθείας: δεξιοπατήστε στα πεδία εισαγωγής ή πατήστε Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "Θέλετε να δείτε, χωρίς να εκτυπώσετε, ένα αντικείμενο στο Draw; Σύρτε το σε στρώση για την οποία η σημαία “εκτυπώσιμο” δεν έχει οριστεί (δεξιοπατήστε στην καρτέλα και “Τροποποίηση στρώσης”)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Για εισαγωγή της τρέχουσας ημερομηνίας στο έγγραφό σας, χρησιμοποιήστε Εισαγωγή ▸ Πεδίο ▸ Ημερομηνία." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Έχετε πολλές εικόνες σε έγγραφο Writer; Επιταχύνετε την εμφάνιση απενεργοποιώντας το Προβολή ▸ Εικόνες και διαγράμματα." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "Μετονομάστε τις διαφάνειές σας στο Impress για να βοηθηθείτε στις αλληλεπιδράσεις “Μετάβαση στη σελίδα” και να έχετε μια πιο σαφή περίληψη από Διαφάνεια1, Διαφάνεια2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Ο διάλογος αρίθμησης κεφαλαίων σας επιτρέπει να ορίσετε το κείμενο που θα εμφανιστεί πριν τον αριθμό του κεφαλαίου. Παραδείγματος χάρη, πληκτρολογήστε “Κεφάλαιο ” για να εμφανιστεί “Κεφάλαιο 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Αντιμετάθεση πίνακα Writer; Αντιγράψτε και επικολλήστε στο Calc, αντιμεταθέστε με αντιγραφή/ειδική επικόλληση και έπειτα αντιγραφή/ειδική επικόλληση ▸ Μορφοποιημένο κείμενο σε Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Μπορείτε να υπογράψετε υφιστάμενα αρχεία PDF και να επιβεβαιώσετε επίσης αυτές τις υπογραφές." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Δημιουργείτε συχνά ένα έγγραφο από ένα άλλο; Εξετάστε τη χρήση προτύπου." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Χρησιμοποιήστε Μορφή ▸ Μορφοποίηση υπό όρους ▸ Διαχείριση στο Calc για να βρείτε ποια κελιά έχουν οριστεί με μορφοποίηση υπό όρους." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "Θέλετε την ίδια διάταξη για την εμφάνιση της οθόνης και την εκτύπωση; Σημειώστε Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Calc ▸ Γενικά ▸ Χρήση μετρικών εκτυπωτή για μορφοποίηση κειμένου." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Το Writer σας βοηθά να πάρετε αντίγραφα ασφαλείας: με Αρχείο ▸ Αποθήκευση αντιγράφου δημιουργείτε ένα νέο έγγραφο συνεχίζοντας να εργάζεστε στο αρχικό." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Όταν έχετε δημιουργήσει μια τεχνοτροπία με βάση με μια άλλη, μπορείτε να εισάγετε τιμή ποσοστού ή τιμή στιγμών (π.χ. 110% ή −2pt ή +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "Μετατρέψτε μαζικά τα έγγραφα του MS Office σε μορφή OpenDocument με τον οδηγό μετατροπής εγγράφου στο μενού Αρχείο ▸ Οδηγοί ▸ Μετατροπέας εγγράφου." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Χρειάζεστε να μετακινήσετε έναν πίνακα Writer; Πίνακας ▸ Επιλογή ▸ Πίνακας και εισαγωγή ▸ Πλαίσιο ▸ Πλαίσιο και μετακινήστε όπου θέλετε." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Με Εργαλεία ▸ Αυτόματο κείμενο ▸ Εισαγωγή μπορείτε να επιλέξετε έγγραφο κειμένου Word ή προτύπου που περιέχει καταχωρίσεις αυτόματου κειμένου που θέλετε να εισάγετε." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "Έχετε πρόβλημα επικόλλησης κειμένου από αρχεία PDF ή ιστοσελίδες σε έγγραφα; Δοκιμάστε να επικολλήσετε ως αμορφοποίητο κείμενο (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Στο Calc χρησιμοποιήστε το TRIMMEAN() για να πάρετε το μέσο όρο ενός συνόλου δεδομένων αποκλείοντας την μεγαλύτερη και την μικρότερη τιμή." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Η 4η προαιρετική παράμετρος της συνάρτησης VLOOKUP του Calc δείχνει εάν η πρώτη στήλη των δεδομένων είναι ταξινομημένη. Εάν όχι, εισάγετε FALSE ή μηδέν." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "Δημιουργία κύριου εγγράφου από το τρέχον έγγραφο Writer; Αρχείο ▸ Αποστολή ▸ Δημιουργία κυρίου εγγράφου (δημιουργούνται υποέγγραφα ανάλογα με τη διάρθρωση)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Θέλετε να κεντράρετε κελιά σε τυπωμένη σελίδα στο Calc; Μορφή ▸ Σελίδα, Σελίδα ▸ Ρυθμίσεις διάταξης ▸ Στοίχιση πίνακα." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Δημιουργήστε ένα διάγραμμα με βάση πίνακα του Writer πατώντας στον πίνακα και επιλέγοντας Εισαγωγή ▸ Διάγραμμα." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Για να ορίσετε ποιοι μη εκτυπώσιμοι χαρακτήρες εμφανίζονται επιλέξτε Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME Writer ▸ Βοηθήματα μορφοποίησης." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Θέλετε να μεταβείτε σε συγκεκριμένη σελίδα με βάση τον αριθμό της; Πατήστε την πιο αριστερή καταχώριση της γραμμής κατάστασης ή χρησιμοποιήστε Επεξεργασία ▸ Μετάβαση στη σελίδα… ή πατήστε %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "Το %PRODUCTNAME υποστηρίζει πάνω από 150 γλώσσες." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "Θέλετε να βρείτε τις έντονες λέξεις σε έγγραφο Writer; Επεξεργασία ▸ Εύρεση και αντικατάσταση ▸ Άλλες επιλογές ▸ Γνωρίσματα ▸ Πάχος γραμματοσειράς." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Μπορείτε να ταξινομήσετε τις παραγράφους ή τις γραμμές πίνακα αλφαβητικά ή αριθμητικά με Εργαλεία ▸ Ταξινόμηση." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Για εισαγωγή παραγράφου πριν (μετά) από ενότητα, πατήστε %MOD2+Enter στην αρχή (τέλος) της ενότητας." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "Το %PRODUCTNAME έχει κέντρο προτύπων για τη δημιουργία ωραίων εγγράφων—ψάξτε το." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Υπολογίστε τις αποπληρωμές δανείου με το Calc: π.χ. PMT(2%/12;36;2500) επιτόκιο ανά περίοδο πληρωμής 2%/12, 36 μήνες, ποσό δανείου 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Δεν βρίσκετε αυτό που θέλετε με τη συνάρτηση VLOOKUP στο Calc; Με τις INDEX και MATCH μπορείτε να κάνετε τα πάντα!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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 "Για να αλλάξετε τον αριθμό μιας σελίδας στο Writer, πηγαίνετε στις ιδιότητες της πρώτης παραγράφου και στην καρτέλα ροής κειμένου σημειώστε Αλλαγή ▸ Εισαγωγή και εισάγετε τον αριθμό." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Εκτελέστε το %PRODUCTNAME σε οποιονδήποτε πλοηγητή μέσω του rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Παράξενος κωδικός σφάλματος στο Calc, Err: ακολουθούμενο από αριθμό; Αυτή η σελίδα εξηγεί:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Εκτός από τον πίνακα περιεχομένων, το %PRODUCTNAME μπορεί να δημιουργήσει ευρετήρια αλφαβητικά, παραδειγμάτων, πινάκων, αντικειμένων, βιβλιογραφίας και του χρήστη." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Αδυνατείτε να τροποποιήσετε ή να διαγράψετε μια προσαρμοσμένη τεχνοτροπία κελιού; Σημειώστε όλα τα φύλλα, δεν θα πρέπει να προστατεύεται κανένα." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Θέλετε να ξέρετε εάν ένα κελί αναφέρεται σε τύπους άλλων κελιών; Εργαλεία ▸ Ανιχνευτής ▸ Ίχνος εξαρτήσεων (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Θέλετε να διπλασιάσετε την παραπάνω γραμμή; Πατήστε %MOD1+D ή χρησιμοποιήστε Φύλλο ▸ Συμπλήρωση κελιών ▸ Συμπλήρωση προς τα κάτω." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Για αναζήτηση σε πολλά υπολογιστικά φύλλα, επιλέξτε τα πριν ξεκινήσετε την αναζήτηση." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Η μεταφορά & απόθεση κελιών από το Calc στην κανονική προβολή μιας διαφάνειας δημιουργεί έναν πίνακα· στην προβολή διάρθρωσης, κάθε κελί δημιουργεί μια γραμμή στη διάρθρωση." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "Το %PRODUCTNAME σας βοηθά να εισάγετε δύο ή περισσότερα κενά στο Writer. Σημειώστε Εργαλεία ▸ Αυτόματη διόρθωση ▸ Επιλογές αυτόματης διόρθωσης ▸ Επιλογές ▸ Παράβλεψη διπλών κενών." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Θέλετε ο δρομέας να πάει στο κελί στα δεξιά, μετά την εισαγωγή τιμής στο Calc; Χρησιμοποιήστε το πλήκτρο στηλοθέτη (Tab ) αντί για το Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Νέες εκδόσεις του %PRODUCTNAME παρέχουν νέα γνωρίσματα, διορθώσεις σφαλμάτων και ασφάλειας. Κρατήστε το λογισμικό σας ενημερωμένο!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Ανάπτυξη νέων φίλτρων XSLT και XML;" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Πατήστε Shift+F1 για να δείτε οποιεσδήποτε συμβουλές οθόνης στα πλαίσια διαλόγων, όταν οι \"Εκτεταμένες συμβουλές\" δεν είναι ενεργοποιημένες στο Εργαλεία ▸ Επιλογές ▸ %PRODUCTNAME ▸ Γενικά." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Βοήθεια του %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Περισσότερες πληροφορίες" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Εκτέλεση αυτής της ενέργειας τώρα…" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Συμβουλή της ημέρας: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/el/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/el/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/el/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/el/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-03 05:36+0000\n" "Last-Translator: Dimitris Spingos \n" "Language-Team: Greek \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1561544535.000000\n" @@ -15380,33 +15380,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Μικρά κεφαλαία - Αλλάζει τους επιλεγμένους πεζούς χαρακτήρες σε κεφαλαίους και μειώνει έπειτα το μέγεθός τους." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "εφέ αναβοσβησίματοςγραμματοσειρές που αναβοσβήνουν" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Αναβόσβησμα" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Κάνει τους επιλεγμένους χαρακτήρες να αναβοσβήνουν. Δεν μπορείτε να αλλάξετε τη συχνότητα αναβοσβησίματος." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/en-GB/cui/messages.po libreoffice-7.1.3~rc2/translations/source/en-GB/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/en-GB/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/en-GB/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-12-28 16:36+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 intends to apply as an organisation for Google Summer of Code (GSoC) see:" - -#. SNTbc -#: 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 "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Want to find words containing more than 10 characters? Edit ▸ Find and Replace ▸ Search ▸ [a-z]{10,} ▸ Other Options ▸ check Regular expressions." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "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)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Customise footnote appearance with Tools ▸ Footnotes and Endnotes…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slide show to the needs of your viewers." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "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." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer can insert a blank page between two odd (even) pages that follow. Check “Print automatically inserted blank pages” in the print dialogue box’s %PRODUCTNAME Writer tab." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "You do not want to print all columns? Hide or group the ones you do not need." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "To modify an AutoPlay presentation, open it and after it starts, right click and select Edit in the context menu." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Right-click in the status bar in %PRODUCTNAME Calc and select “Selection count” to display the number of selected cells." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "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." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "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." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "In %PRODUCTNAME Impress, use Insert ▸ Media ▸ Photo Album to create a slide show from a series of pictures with the “Photo Album” feature." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "You can show formulae instead of results with View ▸ Show Formula (or Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Display ▸ Formulae)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME is developed by a friendly community, made up of hundreds of contributors around the world. Join us with your skills beyond coding." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scroll bar to the left." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "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." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Use column or row labels in formulas. For example, if you have two columns, “Time” and “KM”, use =Time/KM to get minutes per kilometre." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Annoyed by the “marching ants” around cells in Calc? Press Escape to stop them; the copied content will remain available for pasting." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Click on the special character icon in the toolbar to get quick access to favourite and recent characters to insert." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "You can use styles to make the tables in your document consistent. Choose one from the predefined per Styles (F11) or via Table ▸ AutoFormat." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Configure use of the %MOD1 key to open hyperlinks? Tools ▸ Options ▸ %PRODUCTNAME ▸ Security ▸ Options ▸ “%MOD1+click required to open hyperlinks”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "To view the calculation of individual elements of a formula, select the respective elements and press F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "You can protect cells with Format ▸ Cells ▸ Protection. To prevent insert, delete, rename, move/copy of sheets use Tools ▸ Protect Sheet." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Want to display only the highest values in a spreadsheet? Select menu Data ▸ AutoFilter, click the drop-down arrow, and choose “Top10”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "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." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "With the Navigator you can select & move up/down headings and the text below the heading, in the Navigator and in the document." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "To quickly get a Math object in Writer type your formula, mark it, and use Insert ▸ Object ▸ Formula to convert the text." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%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." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "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." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Citation management? Use a 3rd party extension." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "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." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "You can customise the middle mouse button using Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Want to print two portrait pages on a landscape one (reducing A4 to A5)? File ▸ Print and select 2 at “Pages per sheet”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "For quick access to your document bookmarks, right-click on the page number of the status bar (lower-left corner of document window)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Select an object in the document background via the Select tool in the Drawing toolbar to surround the object to select." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "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." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Play music throughout a slide show by assigning the sound to the first slide transition without clicking the “Apply to All Slides” button." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 does not calculate from left to right but respects the order Parentheses – Exponents – Multiplication – Division – Addition – Subtraction." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Get %PRODUCTNAME documentation and free user guide books at:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "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." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Need to present a report written with Writer? File ▸ Send ▸ Outline to Presentation automatically creates a slide show from the outline." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Uncheck Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Zoom: “Synchronise sheets” so that each sheet in Calc has its own zoom factor." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "You can set a colour for each tab: right-click the tab or use Sheet ▸ Sheet Tab Colour." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "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." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Insert and number your formulae in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "You can create an illustration index from object names, not only from captions." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Use your Android or iPhone to remotely control your Impress presentation." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Your donations support our worldwide community." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "You want to add x months to a date? Use =EDATE(date;months)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Your date acceptance pattern is inappropriate? Use Tools ▸ Options ▸ Language Settings ▸ Language ▸ Date acceptance patterns to tweak the pattern." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Want to export formulae to CSV? File ▸ Save As ▸ Type:Text CSV, check “Edit filter settings”, and check “Save cell formulae” in the next dialogue box." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Want to know the valid command line parameters? Start soffice with --help or -h or -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "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." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "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." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automatically mark alphabetical index entries using a concordance file." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Use Format ▸ Align (or the context menu) for precise positioning of objects in Draw/Impress: it centres on the page if one object is selected or works on the group respectively." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "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." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "No need to scroll through the list at Tools ▸ Customise ▸ Keyboard to find a shortcut: just type it." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "With %PRODUCTNAME you can use your Google Mail account to do a mail merge. Fill in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Mail Merge Email." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "You want to start working with Basic macros? Take a look at the examples under Tools ▸ Macros ▸ Edit Macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Apply Heading paragraph styles in Writer with shortcut keys: %MOD1+1 applies Heading 1, %MOD1+2 applies Heading 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "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”)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "To insert the current date in your document, use Insert ▸ Field ▸ Date." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Rename your slides in Impress to help you define “Go to page” interactions and to have a summary more explicit than Slide1, Slide2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Chapter numbering dialogue box lets you set text to be displayed before the chapter number. For example, type “Chapter ” to display “Chapter 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transpose a Writer table? Copy and paste in Calc, transpose with copy/paste special then copy/paste special ▸ Formatted text in Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "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)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "To quickly zoom in on range selection, right click on the zoom part of the status bar and choose Optimal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "You can sign existing PDF files and also verify those signatures." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Often create one document from another? Consider using a template." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "To convert a formula into static values you do not need to copy/paste; use Data ▸ Calculate ▸ Formula to Value." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "You can reformat all comments in a document by clicking the down arrow in a comment and choose “Format all Comments”." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Want the same layout for the screen display and printing? Check Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ General ▸ Use printer metrics for text formatting." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer helps you to make backups: with File ▸ Save a Copy you create a new document continuing to work on the original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "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)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "To copy a comment without losing the content of the target cell you should use Paste Special and uncheck everything except “Comments” in dialogue. Use Operations “Add” to not override existing content." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Batch convert your MS Office documents to OpenDocument format by the Document Converter wizard in menu File ▸ Wizards ▸ Document converter." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Do not insert manual breaks to separate two paragraphs. Rather change Indents & Spacing ▸ Spacing ▸ Below paragraph at the style/paragraph properties." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Keep the zeros before a number by using the “leading zeros” cell format option or format the cell as text before entering the number." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Want to return to default after applying a list style? Click Bullets or Numbering On/Off tool on the Formatting toolbar." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Having trouble pasting text from PDF files or webpages into documents? Try to paste as unformatted text (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "The 4th optional parameter of VLOOKUP Calc function indicates whether the first column of data is sorted. If not, enter FALSE or zero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Toolbars are contextual—they open depending on the context. If you do not want that, uncheck them from View ▸ Toolbars." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Create a master document from the current Writer document? File ▸ Send ▸ Create Master Document (sub-documents are created depending of outline)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Want to centre cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Frames can be linked so that the text can flow from one to the other as in desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "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." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME supports over 150 languages." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Uncheck Slide Show ▸ Settings ▸ Presentation always on top if you need another program displays its window to the front of your presentation." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Want to find the words in bold in a Writer document? Edit ▸ Find and Replace ▸ Other options ▸ Attributes ▸ Font weight." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME has a template centre to create good looking documents—check it out." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calculate loan repayments with Calc: e.g. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Cannot find what you want with the VLOOKUP function in Calc? With INDEX and MATCH you can do everything!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "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." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "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." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Run %PRODUCTNAME in any browser via rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "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." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Want to know if a cell is referred in formulae of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "In the replace input field of auto correct options you can use the wildcards .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "To search in several spreadsheets, select them before you start the search." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "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." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "To display the scroll bar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and check Sheet ▸ Right-To-Left." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Drag a formatted object to the Styles and Formatting window. A dialogue box opens, just enter the name of the new style." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Developing new XSLT and XML filters?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Press Shift+F1 to see any available extended tooltips in dialogue boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Help" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "More info" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Run this action now..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tip of the Day: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/en-GB/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-02-02 18:36+0000\n" "Last-Translator: Stuart Swales \n" "Language-Team: English (United Kingdom) \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563713061.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinking fontsflashing fonts" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinking" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Makes the selected characters blink. You cannot change the blink frequency." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/en-ZA/cui/messages.po libreoffice-7.1.3~rc2/translations/source/en-ZA/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/en-ZA/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/en-ZA/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:36+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2479,1071 +2479,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/en-ZA/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 11:57+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinking fonts flashing fonts" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinking" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/eo/cui/messages.po libreoffice-7.1.3~rc2/translations/source/eo/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/eo/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eo/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-01-27 14:04+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME subtenas kvar sekurecajn nivelojn por makrooj (de malalta ĝis tre alta) kaj fidatajn fontojn." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 intencas proponi sin kiel organizaĵon por Google Summer of Code (GSoC). Vidu ĉe:" - -#. SNTbc -#: 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 "Ĉu vi scias, ke vi povas ligi komentojn al teksteroj? Simple uzu la fulmoklavojn %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Ĉu vi bezonas movi almenaŭ unu alineon? Ne necesas tondi kaj alglui: Uzu la fulmoklavojn %MOD1+%MOD2+Sago (Supren/Malsupren)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Por ŝanĝi la bazajn tiparojn por la antaŭdifinita ŝablono aŭ la aktuala dokumento uzu je Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Verkilo ▸ Bazaj tiparoj." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Ĉu vi volas serĉi vortojn kiuj havas pli ol dek literojn? Redakti ▸ Serĉi kaj anstataŭigi ▸ Serĉi ▸ [a-z]{10,} ▸ Aliaj agordoj ▸ marku je Regulaj esprimoj." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Malfermu CSV-dosieron kiel novan folion en la aktuala kalkultabelo per Folio ▸ Folio el dosiero." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Tajpante grase, kursive, aŭ substrekite en Verkilo, vi povas daŭrigi kun la aprioraj atributoj uzante nur la fulmoklavojn %MOD1+Maj+X (forigi rektajn signajn formatojn)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Uzu je %MOD1+%MOD2+Maj+V por alglui la enhavon de la tondujo kiel neformatitan tekton." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Tajlori piednotan aspekton per Iloj ▸ Piednotoj kaj Finnotoj…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Per Lumbilda prezento ▸ Propra lumbilda prezento, reordigu kaj elektu lumbildojn por adapti lumbildan prezenton laŭ la bezonoj de viaj spektontoj." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Ĉu vi volas ŝanĝi literumkontroladon por iu parto de la teksto? Alklaku en la lingva zono de la stata breto, aŭ pli bone, apliku stilon." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Verkilo povas enmeti vakan pagon inter du paraj (malparaj) paĝoj kiuj sekvas. Marku je \"Presi aŭtomate enmetitajn vakajn paĝojn\" en la %PRODUCTNAME-langeto de la presa dialogo." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Ĉu presi ĉiujn kolumnojn? Kaŝu aŭ grupigu tiujn, kiujn vi ne bezonas." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Por modifi Autoplay-prezentaĵon, malfermu ĝin kaj, kiam ĝi estas preta, dekstre alklaku kaj elektu Redakti en la kunteksta menuo." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Ĉu precize pozicii? %MOD2+sagoklavo movas objektojn (formojn, bildojn, formulojn) je unu bildero." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Enkorpigita helpo disponeblas: premu je F1, se vi instalis ĝin. Alie, kontrolu enrete ĉe:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Dekstre alklaku la statan breton en %PRODUCTNAME Tabelilo kaj elektu je 'Elektaĵo' por vidigi la nombron da elektitaj ĉeloj." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Ĉu vi volas havi almenaŭ du kolumnojn por nur parto de paĝo en %PRODUCTNAME-Verkilo? Enmeti ▸ Sekcio, agordi per langeto Kolumnoj, kaj metu tekston en tiu sekcio." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Uzu je Datumoj ▸ Statistikoj por specimeni, priskribaj statistikoj, analizi variancon, korelacii, kaj multe pli en %PRODUCTNAME-Tabelilo." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Vi povas kopii de unu folio al alia sen la Tondejo. Elektu la zonon kopiotan, %MOD1+alklaku la langeton de la cela folio kaj uzu je Folio ▸ Plenigi ĉelojn ▸ Plenigi foliojn." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Vi povas ŝanĝi la aspekton de %PRODUCTNAME ĉe Iloj ▸ Agordaĵoj ▸ Vido ▸ Uzinterfaco." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "En %PRODUCTNAME-Prezentilo, uzu je Enmeti ▸ Aŭdvidaĵo ▸ Albumo de fotoj, por krei bildoserion el serio de bildoj per la funkcio 'Albumo de fotoj'." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Vi povas vidigi formulojn anstataŭ rezultojn per Vido ▸ Vidigi formulon (alternative Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Tabelilo ▸ Vido ▸ Vidigi ▸ Formuloj)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME estas evoluigata de amikeca komunumo, el centoj da kontribuantoj ĉirkaŭ la mondo. Aliĝu al ni kun viaj lertoj pri kodado kaj aliaj aferoj." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Ĉu maldekstramanulo? En Iloj ▸ Agordaĵoj ▸ Lingvaj agordoj ▸ Lingvoj ▸ Azia, kaj marku en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Verkilo ▸ Vido ▸ Mezurilo ▸ Ĝisrandigita dekstren, kiu vidigas la rulumilon maldekstre." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Ĉu viaj ĉapitraj titoloj ĉiam komencigu novan paĝon? Redakti je Titolo1 (alinean stilon) ▸ Teksta fluo ▸ Saltoj, kaj marku je Enmeti ▸ Paĝo ▸ Antaŭ." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "La valoro Dato/horo estas nur nombro da tagoj post elektita tago; en la nombro, la entjera parto prezentas la daton, kaj la frakcia parto estas la horo (pasinta parto de la tago), kie tagmezo estas 0,5." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Maj+%MOD1+For forigas ek de la kursoro ĝis la fino de la aktuala frazo." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Uzu kolumnajn aŭ vicajn etikedojn en formuloj. Ekzemple, se vi havas du kolumnojn, \"tempo\" kaj \"km\", uzu =tempo/km por kalkuli minutojn en unu kilometro." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Ĉu ĝenas vin la marŝantaj formikoj ĉirkaŭ ĉeloj en Tabelilo? Premu je Eskapi por haltigi ilin; la kopiita enhavo restos havebla por alglui." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Ĉu vi volas iĝi %PRODUCTNAME-ambasadoro? Ekzistas atestiloj por programistoj, administrantoj, kaj trejnistoj." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Miksu vertikalan kaj horizontalan orientiĝojn en Tabelilo-kalkultabelo aplikante diversajn stilojn al folioj." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klaku al la bildosimbolo speciala signo en la ilobreto por rapide aliri favorataj kaj lastatempaj signoj enmetotaj." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "En la flanka breto Stiloj, elektu je \"Hierarkia vido\" por vidi la rilaton inter stiloj." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Vi povas uzi stilojn por koherigi la tabelojn en via dokumento. Elektu iun el la antaŭe difinitaj Stiloj (F11) aŭ per Tabelo ▸ Aŭtomate formati." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Ĉu agordu la uzmanieron de la Stir-klavo por sekvi hiperligilojn? Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME ▸ Sekureco ▸ Agordaĵoj ▸ \"MOD1+alklako bezonata post hiperligilo\"." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Se vi volas vidigi la kalkulon de unuopaj elementoj de formulo, elektu la respektivajn elementojn kaj premu F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Vi povas protekti ĉelojn per Formato ▸ Ĉeloj ▸ Ĉelprotektado. Por malebligi enmeti, forigi, renomi, movi/kopii foliojn, uzu je Iloj ▸ Protekti folion." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Por skribi laŭ kurbo, desegnu la linion, duoble alklaku ĝin, tajpu la tekston, Formato ▸ Teksta kadro kaj formo ▸ FontWork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Ĉu vi volas vidigi nur la plej altajn valorojn en kalkultabelo? Elektu menuerojn Datumoj > Aŭtomata filtrilo, alklaku la fallistan sagon, kaj elektu je \"Supraj 10\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Por forigi la paĝnumeron el via enhavolisto, iru al Enmeti ▸ Enhavolisto (aŭ dekstre alklaku kaj Redakti la antaŭe enmetitan enhavoliston). Ĉe la langeto Elementoj, forigu la paĝnumeron (#) el Struktura linio." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Per la Navigilo, vi povas elekti kaj movi supren/malsupren titolojn kaj la tekston sub la titolo, en la Navigilo kaj en la dokumento." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Por rapide akiri matematikan objekton en Verkilo, tajpu vian formulon, marku ĝin, kaj iru al Enmeti ▸ Objekto ▸ Formulo, por konverti la tekston." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Per %PRODUCTNAME estas facile instali novan vortaron: ili disponeblas kiel kromprogramoj." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME havas porteblan version kiu donas al vi moviĝpovon. Eĉ sen la rajtoj de adminstranto ĉe via komputilo, vi povas instali %PRODUCTNAME-porteblan al via diskaparato." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Verkilo ebligas numeri viajn piednotojn en unu paĝo, ĉapitro, dokumento: Iloj ▸ Piednotoj kaj finnotoj ▸ langeto Finnotoj ▸ Numerado." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Ĉu via Verkilo-dokumento ne malfermiĝas kun la teksta kursoro ĉe la sama redakta pozicio, kiun ĝi havis kiam vi konservis ĝin? Aldonu unuan aŭ lastan nomon en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME ▸ Uzulaj datumoj ▸ Unua/Lasta nomo." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Ĉu mastrumi citaĵojn? Uzu kromprogramon de ekstera liveranto." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Ĉu enmeti valoron en la saman lokon en pluraj folioj? Elektu la foliojn: tenu %MOD-klavon kaj alklaku iliajn langetojn antaŭ ol enigi." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Ĉu vi volas kaŝi tekston en dokumento? Elektu la tekston. Uzu je Enmeti ▸ Sekcio, kaj elektu je \"Kaŝi\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Vi povas adapti la mezan musbutonon per Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME ▸ Vido ▸ Meza musbutono." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Ĉu vi volas presi du vertikalajn paĝojn en unu horizontala (redukti A4 al A5)? Dosiero ▸ Presi, kaj elektu je 2 ĉe \"Paĝoj en folio\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Por rapide aliri vian dokumentajn legosignojn, dekstre alklaku la paĝnumeron de la stata breto (malsupra-maldekstra angulo de la dokumenta fenestro)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Elektu objekton en la dokumenta fono per la ilo Elekti en la ilobreto Desegni, porĉirkaŭigi la objekton elektatan." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Difinu ofte uzatajn tekstojn Aŭtomata Teksto. Vi povos enmeti tian laŭ ĝi nomo, fulmoklavo aŭ ilobreto en iu ajn dokumento de Verkilo." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Aŭdigu muzikon tra la tuta prezentaĵo agordante sonon al la unua lumbilda transiro sen alklaki la butonon \"Apliki al ĉiuj lumbildoj\"." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 Tabelilo ne kalkulas de maldekstro dekstren, sed respektas la ordon Krampo – Eksponento – Multipliko – Divido – Adicio – Subtraho." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Aliru dokumentojn de %PRODUCTNAME kaj senpagajn manlibrojn por uzantoj ĉe:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Ĉu vi volas forigi ĉiujn <> kaj konservi la enan tekston? Redakti ▸ Serĉi kaj anstataŭigi: Serĉi = [<>], Anstataŭigi = vaka, kaj marku je \"Regulaj esprimoj\" sub Aliaj agordoj." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Ĉu vi prezentos raporton verkitan per Verkilo? Dosiero ▸ Sendi ▸ Skemo al Prezentilo, aŭtomate kreas prezentaĵon el la skemo." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Ĉu vi volas mastrumi la vidigon de hiperligiloj en kalkultabelo? Enmetu ilin per la funkcio HIPERLIGILO." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Malmarku ĉe Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Tabelilo ▸ Vido ▸ Zomi: \"Sinkronigi foliojn\", por ke ĉiu folio en Tabelilo havu la propran zomfaktoron." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Vi povas agordi koloron por ĉiu langeto: dekstre alklaku la langeton aŭ iru al Folio ▸ Koloro de langeto." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Spuri ĉelojn uzitajn en formulo, antaŭkalkuleroj (Maj+F9) aŭ dependaĵoj (Maj+F5) (aŭ iru al Iloj ▸ Spurilo). Por ĉiu trafo vi iras unu pluan paŝon en la serio." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Enmetu kaj numeru viajn formulojn en unu paŝo: tajpu fn kaj F3. Aŭtomata teksto enmetiĝas kun formulo kaj numero vicigitaj en tabelo." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Vi povas krei ilustritan indekson el objektaj nomoj, ne nur el apudskriboj." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Uzu vian Android- aŭ iPhone-poŝtelefonon por fore regi vian Prezentilo-prezentaĵon." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Ĉu vi volas scii kiom da tagoj estas en la aktuala monato? Uzu la funkcion TAGOJENMONATO(HODIAŬ())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Ĉu viaj numeroj vidiĝas kiel # # # en via kalkultabelo? La kolumno estas tro mallarĝa por montri ĉiujn ciferojn." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Enŝaltu masivajn paralelajn kalkulojn de formulaj ĉeloj per Iloj ▸ Agordaĵoj ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Uzu la Konektilon el la Desegna ilobreto en Desegnilo aŭ Prezentilo por krei plaĉajn stirfluajn diagramojn kaj eble kopii/alglui la objekton en Verkilon." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Viaj donacoj subtenas nian tutmondan komunumon." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Ĉu vi volas aldoni x monatojn al dato? Uzu je =EDATO(dato;monatoj)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Por elekti koneksan ĉelaron, kiu enhavas datumojn, kaj estas ĉirkaŭita de vakaj vicoj kaj kolumnoj, uzu %MOD+* (en numera klavareto)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Ĉu via ŝablono por akcepteblaj datoj ne taŭgas? Iloj ▸ Agordaĵoj ▸ Lingvaj agordoj ▸ Lingvo ▸ Ŝablonoj por akcepteblaj datoj, ebligas adapti la ŝablonon." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Ĉu eksportu formulojn al CSV? Dosiero ▸ Konservi kiel ▸ Tipo:Teksto CSV, marku je \"Redakti filtrajn agordojn\", kaj marku je \"Konservi ĉelajn formulojn\" en la sekva dialogo." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La Prezentilo-konzolo estas bonega eblo kiam vi laboras per %PRODUCTNAME-Prezentilo." #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Por forigi plurajn komentojn, elektu ĉelojn kun komentoj kaj uzu je Folio ▸ Ĉelaj komentoj ▸ Forigi komenton." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Facile konvertu viajn dokumentojn al PDF per unu alklako al la PDF-bildsimbolo en la ilobreto." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Ĉu vi volas elekti grandan ĉelaron sen rulumi? Tajpu la referencon de la ĉelaro (ekzemple, A1:A1000) en la noma kampo kaj Enigi." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Ĉi vi volas scii la validajn komandliniajn parametrojn? Startigu je soofice kun --help aŭ -h aŭ -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Adaptu vian folion aŭ presotajn zonojn per Formato ▸ Paĝo ▸ Folia langeto ▸ Skala reĝimo." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Ĉu vi bezonas nenumeritan eron en listo? Uzu \"Enmeti nenumeritan elementon\" en la ilobreto Buloj kaj numerado." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Vi povas turni la orientiĝon de ĉela tabelo per Tabelo ▸ Atributoj... ▸ Teksta fluo ▸ Teksta orientiĝo." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "En %PRODUCTNAME-Desegnilo, por ŝanĝi la 0/0-punton de la mezuriloj, ŝovu la intersekcon de la du mezuriloj, en la supra maldekstra angulo, en la laborspacon." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Kiel unupaŝe movi kolumnon en Tabelilo inter du aliaj? Alklaku la titolon kaj ĉelon en la kolumo, tenu la musbutonon kaj ŝovu al la celo per %MOD2-klavo." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Aŭtomate marku alfabetajn indekserojn per dosiero de kongruado." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Uzu je Formato ▸ Ĝisrandigi (aŭ la kunteksta menuo) por precize pozicii objektojn en Desegnilo/Prezentilo: ĝi centrigas en la paĝo, se unu objekto estas elektita, aŭ movas la grupon, respektive." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Ne uzu tabojn por apartigi erojn en Verkilo-dokumento. Depende de tio, kion vi provas fari, senbordera tabelo povas esti pli taŭga elekto." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Ne necesas rulumi tra la listo ĉe Iloj ▸ Adapti ▸ Klavaro, por serĉi fulmoklavon: simple tajpi ĝin." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME povas aŭtomate aldoni numeritan titolon kiam vi enmetas objektojn. Vidu en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Verkilo ▸ Aŭtomata apudskribo." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Per %PRODUCTNAME vi povas uzi vian konton ĉe Google Mail por kunfandi retpoŝtojn. Iru al Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Verkilo ▸ Retpoŝta kunfando." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Lasu videblaj kolumnajn titolojn de folio kiam rulumante liniojn per Vido ▸ Fiksi ĉelojn ▸ Fiksi unuan vicon." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Ĉu vi volas eklabori pri makrooj de %PRODUCTNAME-BASIC? Rigardu la ekzemplojn ĉe Iloj ▸ Makrooj ▸ Redakti makroojn." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Apliki titolajn alineajn stilojn en Verkilo per fulmoklavoj: %MOD1+1 aplikas Titolon 1, %MOD+2 aplikas Titolon 2, ktp." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Ne perdiĝu en grandaj dokumentoj. Uzu la Navigilon (F5) por trovi vojon tra la enhavo." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Manueroj Redakti ▸ Serĉi kaj Anstataŭigi, ebligas al vi rekte enmeti specialajn signojn: dekstre alklaku en eniga kampo aŭ premu je Maj+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Ĉu vi bezonas propran enhavon por metadatumaj atributoj? Dosiero ▸ Atributoj ▸ langeto Propraj atributoj, ebligas al vi krei kion vi volas." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Ĉu vi volas vidi, sed ne presi, objekton en Desegnilo? Desegnu ĝin sur tavolo por kiu la flago \"Presebla\" ne estas markita (dekstre alklaku la langeton kaj \"Ŝanĝi tavolon\"." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Por enmeti la aktualan daton en vian dokumenton, iru al Enmeti ▸ Kampo ▸ Dato." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Ĉu vi havas multajn bildojn en via Verkilo-dokumento? Plirapidigu la vidigon malŝaltante Vido ▸ Bildoj kaj diagramoj." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Uzu Folio ▸ Plenigi ĉelojn ▸ Hazarda numero, por generi hazardan serion bazitan sur diversaj distribuaĵoj." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Alinomu viajn lumbildoj en Prezentilo por helpi vin agordi la interagojn \"Iri al paĝo\" kaj por havi resumon pli eksplicitan ol Lumbildo1, Lumbildo2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "La dialogo Ĉapitra numerado ebligas al vi agordi tekston vidigotan antaŭ la ĉapitra numero. Ekzemple, tajpu \"Capitro\" por vidigi \"Ĉapitro 1\"." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Ĉu transponu Verkilo-tabelon? Kopiu kaj algluu en Tabelilo, transponu per kopii/alglui speciale, tiam en Verkilo, kopii/alglui speciale ▸ Formatita teksto." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Por vidigi la ilon \"Vertikala teksto\" en la ilobreto Desegnilo, marku je Iloj ▸ Agordaĵoj ▸ Lingvaj agordoj ▸ Lingvoj ▸ Aprioraj lingvoj ▸ Azia, (kaj videbligu la butonon per dekstra alklako)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Por rapide zomi al amplekselekto, dekstre alklaku en la zoma parto de la stata breto kaj elektu je Optimuma." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Vi povas subskribi ekzistantajn PDF-dosierojn kaj kontroli tiujn subskribojn." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Ĉu vi ofte kreas dokumenton el alia? Konsideru uzi ŝablonon." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Uzu je Formato ▸ Kondiĉa formatado ▸ Administri, en Tabelilo por eltrovi kiuj ĉeloj estas agorditaj kun kondiĉa formatado." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Iloj ▸ Spurilo ▸ marku nevalidajn datumojn, emfazante ĉiujn ĉelojn en la folio kiuj enhavas valorojn ekster la validigaj reguloj." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Enkorpigu tiparon por plibona kunfunkcipovo kun aliaj oficejaj programaroj ĉe Dosiero ▸ Atributoj ▸ Tiparo." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Por konverti formulon en statikajn valorojn, ne necesas kopii/alglui; uzu Datumoj ▸ Kalkuli ▸ Formulo al valoro." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Vi povas reformati ĉiujn komentojn en dokumento, alklakante la malsupran sagon en komento kaj elektante je \"Formati ĉiujn komentojn\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Ĉu vi volas la saman aranĝon por la ekranaspekto kaj por presado? Marku en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME Tabelilo ▸ Ĝenerala ▸ Uzi presilan metrikon por formati dokumenton." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Verkilo helpas al vi fari restaŭrkopiojn: per Dosiero ▸ Konservi kopion, vi kreas novan dokumenton kaj daŭre prilaboras la originan." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Kiam vi jam kreis stilon bazitan sur alia, vi povas enigi elcentan valoron aŭ tiparan grandon (ekzemple 110% aŭ -2pt aŭ +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Por kopii komenton sen perdi la enhavon de la cela ĉelo, uzu je Alglui speciale, kaj malmarku ĉion escepte de \"Komentoj\" en la dialogo. Uzu je Operacioj \"Aldoni\" por ne anstataŭigi ekzistantan enhavon." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Staple konverti viajn MS-Office-dokumentojn al la formato OpenDocument per la konvertila asistanto en la menuo Dosiero ▸ Asistantoj ▸ Dokumentkonvertilo." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Dum vi redaktas ĉelon, vi povas dekstre alklaki kaj enmeti kampojn: Dato, Nomo de folio, Titolo de dokumento, ktp." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Ĉu vi volas movi Verkilo-tabelon? Iru al Tabelo ▸ Elekti ▸ Tabelo, kaj Enmeti ▸ Kadro, kaj movu al kie vi volas." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Per Iloj ▸ Aŭtomata teksto ▸ Aŭtomata teksto ▸ Importi, vi povas elekti Word-dokumenton aŭ ŝablonon kiu enhavas la aŭtomatan tekston importotan." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Ne enmetu manajn saltojn por apartigi du alineojn. Prefere ŝanĝu al Krommarĝenoj kaj interspacoj ▸ Interspacoj ▸ Sub alineo, ĉe la stilo/alineaj atributoj." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Por montri la nulojn antaŭ numero, uzu la ĉelformatan eblon \"antaŭaj nuloj\", aŭ formatu la ĉelon kiel tekston antaŭ ol enigi la numeron." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Ĉu reiri al apriora, aplikinte listan stilon? Alklaku Bulojn aŭ Numeradon ek/for, en la formatada ilobreto." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Forigi unupaŝe ĉiujn viajn presotajn zonojn: elektu ĉiujn foliojn, kaj iru al Formato ▸ Presendaj zonoj ▸ Viŝi." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Aldonu fonajn bildojn al kalkultabeloj per Enmeti ▸ Bildo, aŭ ŝovu fonon el la Galerio, tiam Formato ▸ Aranĝi ▸ Al fono." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Ĉu vi spertas problemon alglui tekston el PDF-dosieroj aŭ retpaĝoj en dokumentojn? Provu alglui kiel neformatitan tekston (%MOD1+%MOD2+Maj+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "En Tabelilo uzu la funkcion MEZUMO.REDUKTITA por liveri la mezumon de datumaro ekskludante la plej altan kaj plej malaltan valorojn." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "La 4-a malnepra parametro, de la Tabelilo-funkcio VSERĈO, indikas ĉu ordigi la unuan kolumnon de datumoj. Se ne, enigu je FALSA aŭ 0." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Ilobretoj estas situaci-dependaj; ili malfermiĝas depende de la enhavo. Se vi ne deziras tion, malmarku ilin en Vido ▸ Ilobretoj." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Ĉu kreu ĉefan dokumenton el la aktuala Verkilo-dokumento? Dosiero ▸ Sendi ▸ Krei ĉefan dokumenton (subdokumentoj estas kreataj depende de skemo)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Ĉu vi volas centrigi ĉelojn en presota paĝo en Tabelilo? Formato ▸ Paĝo, Paĝo ▸ Aranĝa agordaro ▸ Tabela ĝisrandigo." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Eblas ligi kadrojn por ke teksto fluu el unu al alia, kiel en perkomputila eldonado ." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Por krei diagramon bazitan sur Verkilo-tabelo, alklaku en la tabelo kaj elektu je Enmeti ▸ Diagramo." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Agordi eblojn en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME-Verkilo ▸ Formata Asistanto ▸ Vidiga formato, por kiujn nepresendajn signojn vidigi." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Ĉu vi volas salti al specifa paĝo laŭ ties numero? Alklaku la plejmaldekstran statbreteran kampon, aŭ iru al Redakti ▸ Iri al paĝo... aŭ tajpu %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME subtenas pli ol 150 lingvojn." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Malmarku je Prezentaĵo ▸ Agordaĵoj ▸ Prezentaĵo ĉiam supre, se vi bezonas alian programon vidigi sian fenestron antaŭe de via prezentaĵo." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Ĉu vi volas serĉi vortojn en grasa tiparo en dokumento de Verkilo? Redakti ▸ Serĉi kaj anstataŭigi ▸ Aliaj agordoj ▸ Atributoj ▸ Tipara pezo." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Vi povas ordigi alineojn aŭ tabelajn vicojn alfabete aŭ numere per Iloj ▸ Ordigi." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Por enmeti alineon antaŭ (aŭ post) iu sekcio, premu je %MOD2+Enigi ĉe la komenco de la sekcio." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME havas centron por ŝablonoj por krei belaspektajn dokumentojn." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Kalkuli pruntaĵajn repagojn per Tabelilo: ekzemple PAGO(2%/12;36;2500) intereza elcento por pagoperiodo 2%/12, 36 monatoj, pruntaĵo 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Ĉi vi trovis per VSERĈO? Per INDEKSO kaj KONGRUI vi povas fari ĉion!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Ĉu vi volas vidigi kaŝitan kolumnon A? Alklaku ĉelon en kolumno B, premu la maldekstran musbutonon, movu la muson maldekstren, maltenu ĝin. Ŝaltu ĝin per Formato ▸ Kolumnoj ▸ Vidigi." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Por ŝanĝi la numeron de paĝo en Verkilo, iru al la atributoj de la unua alineo kaj, ĉe la langeto Teksta fluo, marku je Salto ▸ Enmeti, kaj enigu la numeron." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Rulu je %PRODUCTNAME en ajna foliumilo per rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Ĉu stranga erarkodo en Tabelilo, Eraro: kaj sekva numero? Ĉi tiu paĝo klarigas." #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Por inkludi alineon kiu ne havas titolon en la enhavtabelo, ŝanĝu je Skemo kaj Numerado, en la alineaj agordoj de skema nivelo." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Krom la enhavolisto, %PRODUCTNAME povas krei indeksojn alfabetajn, ilustraĵajn, tabelajn, objektajn, bibliografiajn, uzulajn." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Ĉu vi ne povas ŝanĝi aŭ forigi propran ĉelstilon? Kontrolu ĉiujn foliojn. Ĉiuj devas esti neprotektitaj." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Ĉu vi bezonas plenigi serion? Elektu la ĉelaron kaj Folio ▸ Plenigi ĉelojn ▸ Plenigi serion, kaj elektu inter Linia, Kreska, Data kaj Aŭtomate plenigi." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Ĉu vi volas scii ĉu iu ĉelo estas menciita en formuloj de aliaj ĉeloj? Iloj ▸ Spurilo ▸ Spuri Dependaĵojn (Maj+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "En la kampo anstataŭigi enigon, de aŭtomataj korektaj agordoj, vi povas uzi la ĵokerojn .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Ĉu vi volas duobligi la linion super la aktuala? Premu je %MOD1+D aŭ Folio ▸Plenigi ĉelojn ▸ Malsupre." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Por serĉi en pluraj folioj, elektu ilin antaŭ ol vi komencas serĉi." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Ŝovi kaj demeti ĉelojn el Tabelilo en la normalan vidon de lumbildo kreas tabelon; en la skeman vidon, ĉiu ĉelo kreas linion en la skemo." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME helpas al vi ne enmeti du aŭ pliajn spacetojn en Verkilo. Kontrolu en Iloj ▸ Agordoj por aŭtomate korekti > Agordaĵoj > Malatenti duopajn spacetojn." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Ĉu la kursoro iru en la ĉelon dekstre, post enigo valoron en Tabelilo? Uzu la tab-klavon anstataŭ la eniga klavo." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Por vidigi la rulumilon maldekstre, enŝaltu en Iloj ▸ Agordaĵoj ▸ Lingvaj agordoj ▸ Lingvoj ▸ Kompleksa teksto, Folio ▸ De dekstro maldekstren." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Ŝovu formatadan objekton al la fenestro Stiloj kaj Formatado. Dialogujo malfermiĝas. Simple enigu la nomon de la nova stilo." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Novaj versioj de %PRODUCTNAME provizas novajn funkciojn, cimoriparojn, kaj sekurecajn flikaĵojn. Ĝisdatigu vian programaron kiam eblas." #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Ĉu vi evoluigas novajn XSLT kaj xml-filtrilojn?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Premu je Maj+F1 por vidi eventualajn pliampleksajn konsiletojn en dialogoj, kiam \"Pliampleksaj konsiletoj\" ne estas aktiva en Iloj ▸ Agordaĵoj ▸ %PRODUCTNAME ▸ Ĝenerala." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME-Helpo" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Pli da informo" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Ruligi ĉi tiun agon nun..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Konsileto de la tago: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Stir" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eo/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-07-05 05:34+0000\n" "Last-Translator: Donald Rogers \n" "Language-Team: Esperanto \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Pulsado" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/es/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/es/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-10 07:36+0000\n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2946,7 +2946,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:101 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_1" msgid "Click to enable or disable the specular light source with highlights." -msgstr "Clic para activar o desactivar la fuente de luz especular con resaltes." +msgstr "Pulse para activar o desactivar la fuente de luz especular con realces." #. bwfDH #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:115 @@ -2958,7 +2958,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:120 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_2" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. uMVDV #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:134 @@ -2970,7 +2970,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:139 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_3" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. 6CBDG #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:153 @@ -2982,7 +2982,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:158 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_4" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. Hf5Du #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:172 @@ -2994,7 +2994,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:177 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_5" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. T7qDZ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:191 @@ -3006,7 +3006,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:196 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_6" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. mSsDD #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:210 @@ -3018,7 +3018,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:215 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_7" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. wY5CR #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:229 @@ -3030,7 +3030,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:234 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_8" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. DwEDc #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:268 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/cui/messages.po libreoffice-7.1.3~rc2/translations/source/es/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-23 11:54+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME admite cuatro niveles de seguridad de macros (desde muy baja hasta muy alta) y de orígenes confiables." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 busca participar como organización en el Google Summer of Code (GSoC). Vea:" - -#. SNTbc -#: 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 "¿Sabía que es posible adjuntar comentarios a fragmentos de texto? Basta con utilizar el atajo %MOD1 + %MOD2 + C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "¿Necesita mover uno o más párrafos? No es necesario cortar y pegar: utilice el atajo de teclado %MOD1 + %MOD2 + ↑/↓." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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 "¿Quiere encontrar las palabras de más de 10 caracteres? Editar ▸ Buscar y reemplazar ▸ Buscar ▸ [a-z]{10,} ▸ Otras opciones ▸ active Expresiones regulares." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Abra un archivo CSV como una nueva hoja en la hoja de cálculo actual a través de Hoja ▸ Insertar hoja desde archivo." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Oprima %MOD1 + %MOD2 + Mayús + V para pegar el contenido del portapapeles como texto sin formato." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalice la apariencia de las notas al pie de página en Herramientas ▸ Notas al pie y finales." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Vaya a Pase de diapositivas ▸ Presentación personalizada para reordenar y escoger diapositivas que mostrar para adaptar la presentación a las necesidades de los espectadores." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "¿Quiere cambiar la corrección ortográfica de alguna parte del texto? Pulse en la zona de idioma de la barra de estado o mejor, aplique un estilo." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer puede insertar una página vacía entre dos páginas impares (o pares) consecutivas. Marque «Imprimir páginas en blanco insertadas automáticamente» en la pestaña «%PRODUCTNAME Writer» del cuadro de diálogo Imprimir." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "¿No quiere imprimir todas las columnas? Oculte o agrupe aquellas que no necesite." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Para modificar una presentación en reproducción automática, ábrala y, una vez iniciada, pulse con el botón secundario del ratón y seleccione Editar en el menú contextual." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "¿Necesita posicionar objetos con precisión? Oprima %MOD2 + ↑, ↓, ← o → para desplazar formas, imágenes o fórmulas un píxel en dirección de la flecha." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "La ayuda integrada está disponible nada más presionar F1, si la ha instalado. De lo contrario, consúltela en línea en:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Pulse con el botón secundario del ratón en la barra de estado de %PRODUCTNAME Calc y seleccione «Recuento de selección» para que aparezca el número de celdas seleccionadas." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Utilice Datos ▸ Estadísticas para realizar muestreos, estadísticas descriptivas, análisis de varianza, correlacciones y mucho más con %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Es posible copiar una hoja en otra sin utilizar el portapapeles. Seleccione el área deseada, %MOD1 + pulse en la pestaña de la hoja de destino y use Hoja ▸ Rellenar celdas ▸ Rellenar hojas." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "En %PRODUCTNAME Impress, utilice Insertar ▸ Multimedia ▸ Álbum fotográfico para crear un pase de diapositivas a partir de una serie de imágenes." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Puede mostrar fórmulas en vez de los resultados con Ver ▸ Mostrar fórmula (o Herramientas ▸ Opciones ▸ %PRODUCTNAME Calc ▸ Ver ▸ Mostrar ▸ Fórmulas)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME es desarrollado por una comunidad amigable, compuesta por cientos de colaboradores en todo el mundo. Únase a nosotros con sus habilidades más allá de la programación." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "¿Le gustaría convertirse en embajador/a de %PRODUCTNAME? Existen programas de certificación para programadores, administradores y capacitadores." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Mezcle orientaciones de página verticales y horizontales en una hoja de cálculo Calc aplicando diferentes estilos de página en las hojas." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Pulse en el icono Carácter especial en la barra de herramientas para obtener acceso rápido a los caracteres favoritos y recientes para insertar." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Elija «Jerárquico» en la lista desplegable de la barra lateral de Estilos para ver la relación entre estilos." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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 "Si desea ver el cálculo de los elementos individuales de una fórmula, seleccione los elementos respectivos y pulse F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "En %PRODUCTNAME es muy fácil instalar un diccionario nuevo, puesto que están disponibles en forma de extensiones." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "Existe una versión portátil de %PRODUCTNAME que le brinda movilidad. Además de dispositivos USB, puede instalar %PRODUCTNAME Portátil en el disco duro del equipo, aunque carezca de permisos administrativos." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer le permite numerar las notas al pie por página, capítulo o documento: Herramientas ▸ Notas al pie y finales ▸ pestaña Notas al pie ▸ Contar." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "¿Necesita gestionar citas? Existen numerosas extensiones de terceros para ello." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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 "Para acceder rápidamente a los marcadores de su documento, pulse con el botón secundario del ratón en el número de página en la barra de estado (en la esquina inferior izquierda de la ventana del documento)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Para seleccionar un objeto en el fondo del documento, sírvase de la herramienta Seleccionar de la barra de herramientas Dibujo." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Defina textos que utiliza a menudo como texto automático. Podrá insertarlos por nombre, atajo o mediante una barra de herramientas en cualquier documento de Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Reproduzca música durante todo un pase de diapositivas asignando el sonido a la transición de la primera diapositiva sin activar «Aplicar a todas las diapositivas»." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 no calcula de izquierda a derecha, sino que sigue el orden paréntesis-exponentes-multiplicación-división-suma-resta." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Obtenga documentación de %PRODUCTNAME y guías de uso gratuitas en:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "¿Quiere gestionar la presentación de los hiperenlaces de una hoja de cálculo? Insértelos con la función HIPERVINCULO." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Defina colores para las pestañas de las hojas de cálculo: pulse con el botón secundario en estas o vaya a Hoja ▸ Color de pestaña de hoja." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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 "Inserte y numere sus fórmulas en un solo paso: escriba fn y luego F3. Se inserta un texto automático con la fórmula y el número alineados en una tabla." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Puede crear un índice de ilustraciones a partir de los nombres de los objetos, no solo desde las leyendas." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Utilice su Android o iPhone para controlar remotamente la presentación de Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "¿Quiere saber cuántos días hay en el mes actual? Utilice la función DIASENMES(HOY())" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "¿Los dígitos aparecen como «###» en la hoja de cálculo? La columna es demasiado estrecha para mostrarlos todos." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "En Herramientas ▸ Opciones ▸ OpenCL podrá activar los cálculos masivos en paralelo de celdas con fórmulas." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Utilice la herramienta Conector de la barra de herramientas Dibujo en Draw/Impress para crear diagramas de flujo agradables y opcionalmente copiar/pegar el objeto en Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Sus donaciones apoyan nuestra comunidad internacional." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "¿Quiere agregar X meses a una fecha? Use =FECHA.MES(FechaInicio; Meses)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Para seleccionar un intervalo contiguo de celdas con datos y delimitado por filas y columnas vacías, oprima %MOD1 + * (en el teclado numérico)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "¿No le resulta adecuada la entrada de fechas? Diríjase a Herramientas ▸ Opciones ▸ Configuración de idiomas ▸ Idioma ▸ Pautas de aceptación de fechas y modifique el modelo." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La consola de presentación es una gran herramienta al trabajar con %PRODUCTNAME Impress. ¿Ya la ha probado?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Convierta fácilmente sus documentos en PDF al instante pulsando en el icono correspondiente de la barra de herramientas." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "¿Quiere seleccionar un intervalo grande de celdas sin desplazarse? Escriba la referencia del intervalo (p. ej., A1:A1000) y oprima Intro." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "¿Desea conocer los parámetros de consola? Inicie «soffice» con «--help», «-h» o «-?»." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Haga encajar la hoja o la zona de impresión en una página con Formato ▸ Página ▸ Pestaña Hoja ▸ Modo de escala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "En %PRODUCTNAME Draw para cambiar el punto 0/0 de las reglas, arrastre la intersección de las dos reglas en la esquina superior izquierda al espacio de trabajo." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Marque automáticamente las entradas del índice alfabético utilizando un archivo de concordancia." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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 "No utilice tabuladores para espaciar elementos en documentos de Writer. En función de lo que desee lograr, una tabla sin bordes puede ser una mejor elección." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "No hace falta desplazarse por la lista en Herramientas ▸ Personalizar ▸ Teclado para encontrar un atajo: basta con teclearlo." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME puede añadir automáticamente pies de objeto numerados al insertarlos. Para ello, vaya a Opciones ▸ %PRODUCTNAME Writer ▸ Leyenda automática." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "¿Quiere empezar a trabajar con macros de Basic? Eche un vistazo a los ejemplos en Herramientas ▸ Macros ▸ Editar macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "No se pierda en documentos extensos. Utilice el navegador (F5) para orientarse entre el contenido." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Editar ▸ Buscar y reemplazar le permite insertar caracteres especiales directamente: pulse con el botón secundario del ratón en los campos u oprima Mayús + %MOD1 + S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "¿Necesita metadatos personalizados? Diríjase a Archivo ▸ Propiedades ▸ pestaña Propiedades personalizadas, donde puede crear las que desee." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Para insertar la fecha actual en el documento, diríjase a Insertar ▸ Campo ▸ Fecha." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "¿Su documento de Writer tiene muchas imágenes? Acelere su visualización desactivando Ver ▸ Imágenes y gráficos." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Utilice Hoja ▸ Rellenar celdas ▸ Número aleatorio para generar una serie de números aleatorios basándose en diversas distribuciones." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Cambie el nombre de sus diapositivas de Impress para ayudarle a definir interacciones en «Ir a la página» y obtener un resumen más explícito que «Diapositiva 1, Diapositiva 2…»." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "El cuadro de diálogo Numeración de capítulos le permite definir texto que se mostrará antes del número de capítulo. Por ejemplo, si escribe «Capítulo » el resultado será «Capítulo 1»." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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 "Para hacer un acercamiento rápido a una selección de intervalo, pulse con el botón secundario del ratón en el apartado Escala de la barra de estado y elija «Óptimo»." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Puede firmar archivos PDF existentes y también verificar las firmas." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "¿A menudo crea documentos a partir de otro? Considere crear una plantilla." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "En Calc, vaya a Formato ▸ Formato condicional ▸ Gestionar para descubrir qué celdas poseen formato condicional." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Herramientas ▸ Detective ▸ Marcar datos no válidos resalta todas las celdas de la hoja que contienen valores que no se ajustan a las reglas de validación." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Aproveche la incrustación de tipos de letra para una mayor interoperatividad con otros paquetes de oficina: vaya a Archivo ▸ Propiedades ▸ Tipo de letra." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Para convertir una fórmula en valores estáticos no hace falta copipegar: utilice Datos ▸ Calcular ▸ Fórmula en valor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Puede volver a dar formato a todos los comentarios de un documento si pulsa en la flecha hacia abajo de un comentario y selecciona «Formatear todos los comentarios»." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "¿Quiere la misma compaginación en pantalla y al imprimir? Vaya a Herramientas ▸ Opciones ▸ %PRODUCTNAME Calc ▸ General ▸ Usar métricas de la impresora para formatear textos." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer le ayuda a hacer copias de respaldo: con Archivo ▸ Guardar copia puede crear un documento nuevo y continuar trabajando en el original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Si creó un estilo a partir de otro, puede definir valores porcentuales o en puntos (p. ej., 110 %, −2 pt o +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Para copiar un comentario sin perder el contenido de la celda de destino, utilice el Pegado especial y, en el cuadro de diálogo, desactive todo excepto «Comentarios». Use la operación «Añadir» para no sobrescribir el contenido existente." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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 "Al editar una celda en su posición, puede pulsar con el botón secundario del ratón e insertar campos tales como Fecha, Nombre de hoja, Título de documento, etcétera." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Elimine todas las zonas de impresión en un solo paso: seleccione todas las hojas y ejecute Formato ▸ Zonas de impresión ▸ Vaciar." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Añada imágenes de fondo para las hojas de cálculo a través de Insertar ▸ Imagen o arrastre una imagen de fondo desde la Galería y seleccione Formato ▸ Posición ▸ Enviar al fondo." +msgstr "Añada imágenes de fondo para las hojas de cálculo a través de Insertar ▸ Imagen o arrastre una imagen de fondo desde la Galería y seleccione Formato ▸ Organizar ▸ Enviar al fondo." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "¿Ha tenido problemas al pegar texto desde archivos PDF o páginas web en sus documentos? Intente pegar como texto sin formato (%MOD1 + %MOD2 + Mayús + V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "En Calc use MEDIA.ACOTADA() para obtener la media de un conjunto de datos excluyendo tanto el mayor valor como el menor." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "El cuarto parámetro opcional de la función BUSCARV en Calc indica si la primera columna de datos está ordenada. Si no es así, introduzca FALSO o cero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Numerosas barra de herramientas son contextuales: se abren en función de lo que realice. Si le molesta este comportamiento, desactívelas en Ver ▸ Barras de herramientas." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "¿Quiere centrar celdas en una página impresa en Calc? Formato ▸ Página, Página ▸ Configuración de disposición ▸ Alineación de la tabla." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Los marcos se pueden vincular para que el texto pueda fluir de uno a otro como en el software de autoedición." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Cree un gráfico a partir de una tabla de Writer pulsando en esta y eligiendo Insertar ▸ Gráfico." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Cambie las distintas opciones en Herramientas ▸ Opciones ▸ %PRODUCTNAME Writer ▸ Ayudas de formato ▸ Mostrar para especificar cuáles caracteres no imprimibles quiere que se visualicen." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME admite más de 150 lenguas." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Para insertar un párrafo antes (o después) de una sección, presione %MOD2 + Intro al principio (o al final) de la sección." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME cuenta con un centro de plantillas para ayudarle a crear documentos de apariencia profesional; échele un vistazo." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcular los reembolsos de préstamos con Calc: por ejemplo, PAGO(2%/12;36;2500) tasa de interés por período de pago 2% / 12, 36 meses, importe del préstamo 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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 "Para cambiar el número de una página en Writer, vaya a las propiedades del primer párrafo y, en la pestaña Flujo del texto, marque Salto ▸ Insertar e inserte el número." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Ejecute %PRODUCTNAME en cualquier navegador mediante rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "¿Ha obtenido un código de error extraño en Calc, «Err:» seguido de un número? Esta página le ofrece la explicación:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Incluya un párrafo que no sea un título en la tabla de contenidos cambiando Esquema y numeración en la configuración del párrafo a un nivel de esquema." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Además de sumarios, %PRODUCTNAME puede crear índices alfabéticos, de ilustraciones, de tablas, de objetos, bibliografías y otros personalizados." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "¿No puede modificar o eliminar un estilo de celda personalizado? Revise todas las hojas: ninguna debe estar protegida." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "¿Necesita llenar una serie? Seleccione el intervalo de celdas y el menú Hoja ▸ Rellenar celdas ▸ Series y escoja entre Lineal, Crecimiento, Fecha y Relleno automático." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "¿Quiere saber si una celda tiene relación con fórmulas de otras celdas? Herramientas ▸ Detective ▸ Rastrear dependencias (Mayús + F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "En el campo Reemplazar de las opciones de corrección automática es posible utilizar los comodines .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "¿Quiere duplicar la fila de encima? Presione %MOD1 + D o utilice Hoja ▸ Rellenar celdas ▸ Rellenar hacia abajo." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Para buscar en varias hojas de cálculo, selecciónelas antes de iniciar la búsqueda." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Arrastrar y soltar celdas de Calc a la vista normal de una diapositiva crea una tabla; en la vista de esquema, cada celda crea una línea en el esquema." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "¿Quiere que el cursor vaya a la celda de la derecha tras insertar un valor en Calc? Utilice la tecla Tab en vez de Intro." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Para mostrar la barra de desplazamiento a la izquierda, active Herramientas ▸ Opciones ▸ Configuración de idiomas ▸ Idiomas ▸ Texto complejo y marque Hoja ▸ De derecha a izquierda." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arrastre un objeto formateado a la ventana Estilos y Formato. Se abre un cuadro de diálogo, solo ingrese el nombre del nuevo estilo." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Las versiones actualizadas de %PRODUCTNAME le ofrecen prestaciones nuevas, correcciones de defectos y mejoras de seguridad. ¡Manténgase al día!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "¿Quiere desarrollar filtros XSLT y XML nuevos?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Presione Mayús + F1 para ver las descripciones emergentes ampliadas en los cuadros de diálogo si no se ha activado la opción «Descripciones emergentes» en Herramientas ▸ Opciones ▸ %PRODUCTNAME ▸ General." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Ayuda de %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Más información" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Ejecutar esta acción ahora…" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Consejo del día: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Ord" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opc" @@ -6034,7 +6028,7 @@ #: 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 "Pulse en el estilo Llamada que se debe aplicar a la llamada seleccionada." +msgstr "Pulse en el estilo de llamada que se debe aplicar a la llamada seleccionada." #. cAZqx #: cui/uiconfig/ui/calloutpage.ui:66 @@ -6196,7 +6190,7 @@ #: cui/uiconfig/ui/calloutpage.ui:324 msgctxt "calloutpage|extended_tip|CalloutPage" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr "Pulse en el estilo Llamada que se debe aplicar a la llamada seleccionada." +msgstr "Pulse en el estilo de llamada que se debe aplicar a la llamada seleccionada." #. vQp3A #: cui/uiconfig/ui/cellalignment.ui:53 @@ -6934,7 +6928,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1188 msgctxt "colorconfigwin|basic" msgid "Basic Syntax Highlighting" -msgstr "Resalte de sintaxis Basic" +msgstr "Coloración de sintaxis Basic" #. yELpi #: cui/uiconfig/ui/colorconfigwin.ui:1222 @@ -6982,7 +6976,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1414 msgctxt "colorconfigwin|sql" msgid "SQL Syntax Highlighting" -msgstr "Resalte de sintaxis SQL" +msgstr "Coloración de sintaxis SQL" #. ERVJA #: cui/uiconfig/ui/colorconfigwin.ui:1448 @@ -8920,7 +8914,7 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:88 msgctxt "eventsconfigpage|extended_tip|delete" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Suprime la asignación de macro o componente del suceso seleccionado." #. Ebcvv #: cui/uiconfig/ui/eventsconfigpage.ui:130 @@ -11915,7 +11909,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:186 msgctxt "macroassignpage|extended_tip|delete" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Suprime la asignación de macro o componente del suceso seleccionado." #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:204 @@ -13185,7 +13179,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:563 msgctxt "numberingpositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "Seleccione el nivel o niveles que desee modificar." #. jRE6s #: cui/uiconfig/ui/numberingpositionpage.ui:576 @@ -15343,7 +15337,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:97 msgctxt "extended_tip|everyweek" msgid "A check will be performed once a week. This is the default setting." -msgstr "Se realizará una comprobación una vez a la semana. Ésta es la configuración predeterminada." +msgstr "Se realizará una comprobación una vez a la semana. Esta es la configuración predeterminada." #. 29exv #: cui/uiconfig/ui/optonlineupdatepage.ui:108 @@ -18197,7 +18191,7 @@ #: cui/uiconfig/ui/posterdialog.ui:211 msgctxt "posterdialog|extended_tip|PosterDialog" msgid "Opens a dialog to determine the number of poster colors." -msgstr "" +msgstr "Abre un cuadro de diálogo para determinar el número de colores de póster." #. YodDB #: cui/uiconfig/ui/qrcodegen.ui:14 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/es/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-13 07:26+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -4267,7 +4267,7 @@ #: dbaccess/uiconfig/ui/relationdialog.ui:320 msgctxt "relationdialog|delaction" msgid "_No action" -msgstr "Si_n acción" +msgstr "_Ninguna acción" #. 3BAEe #: dbaccess/uiconfig/ui/relationdialog.ui:336 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/python.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-04 16:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565287211.000000\n" #. naSFZ @@ -3002,7 +3002,7 @@ "N0467\n" "help.text" msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\"" -msgstr "" +msgstr "\"\"\" Muestra un cuadro de diálogo que contiene un mensaje y devuelve un valor.\"\"\"" #. nUtxt #: python_screen.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-12-17 14:17+0100\n" -"PO-Revision-Date: 2021-01-23 09:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1534393940.000000\n" #. 6Kkin @@ -86,7 +86,7 @@ "par_id3159201\n" "help.text" msgid "Compiles the Basic macro. You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps." -msgstr "Compila la macro Basic. Después de efectuar cambios en una macro o si ésta utiliza pasos únicos o de procedimiento, es necesario compilarla." +msgstr "Compila la macro Basic. Después de efectuar cambios en una macro o si esta utiliza pasos únicos o de procedimiento, es necesario compilarla." #. LLoQJ #: 11020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -7214,7 +7214,7 @@ "par_id3153042\n" "help.text" msgid "Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control." -msgstr "Seleccione «Sí» para permitir que se escriban solamente caracteres válidos en un control numérico, de moneda, de fecha o de tiempo." +msgstr "Seleccione «Sí» para permitir que se escriban solamente caracteres válidos en un control numérico, de moneda, de fecha o de hora." #. VCDfj #: 01170101.xhp @@ -18104,7 +18104,7 @@ "par_id3156215\n" "help.text" msgid "Boolean expressions combined with AND only return the value True if both expressions evaluate to True:" -msgstr "Las expresiones lógicas combinadas con AND sólo devuelven el valor True si ambas se evalúan como True:" +msgstr "Las expresiones booleanas combinadas con AND solo devuelven el valor True si ambas dan como resultado True:" #. EW3Cz #: 03060100.xhp @@ -18266,7 +18266,7 @@ "par_id3149562\n" "help.text" msgid "When testing for equivalence between Boolean expressions, the result is True if both expressions are either True or False." -msgstr "Al comprobar la equivalencia entre expresiones lógicas, el resultado es True si éstas son ambas True o False." +msgstr "Al comprobar la equivalencia entre expresiones booleanas, el resultado es True si estas son ambas True o False." #. XrGXb #: 03060200.xhp @@ -18275,7 +18275,7 @@ "par_id3154319\n" "help.text" msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression." -msgstr "En una comparación entre bits, el operador Eqv sólo activa el bit correspondiente del resultado si éste se encuentra activado o desactivado en ambas expresiones." +msgstr "En una comparación entre bits, el operador Eqv solo activa el bit correspondiente del resultado si este se encuentra activado o desactivado en ambas expresiones." #. FpFjm #: 03060200.xhp @@ -18419,7 +18419,7 @@ "par_id3150440\n" "help.text" msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False." -msgstr "Si se utiliza el operador Imp en expresiones lógicas, sólo se devuelve False si el resultado de la primera expresión es True y el de la segunda es False." +msgstr "Si se utiliza el operador Imp en expresiones booleanas, solo se devuelve False si el resultado de la primera expresión es True y el de la segunda es False." #. d8L7N #: 03060300.xhp @@ -19580,7 +19580,7 @@ "par_id3148550\n" "help.text" msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions." -msgstr "Las funciones numéricas siguientes realizan cálculos. Los operadores matemáticos y lógicos se describen en una sección independiente. Las funciones difieren de los operadores en que éstas pasan argumentos y devuelven un resultado, mientras que los operadores devuelven un resultado al combinar dos expresiones numéricas." +msgstr "Las funciones numéricas siguientes realizan cálculos. Los operadores matemáticos y lógicos se describen en una sección independiente. Las funciones difieren de los operadores en que estas pasan argumentos y devuelven un resultado, mientras que los operadores devuelven un resultado al combinar dos expresiones numéricas." #. 7sD2R #: 03080100.xhp @@ -22262,7 +22262,7 @@ "par_id3153951\n" "help.text" msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed." -msgstr "El ejemplo siguiente permite introducir una fecha de caducidad de un producto y determina si ésta ya ha pasado." +msgstr "El ejemplo siguiente permite introducir una fecha de caducidad de un producto y determina si esta ya ha pasado." #. gDmAx #: 03090101.xhp @@ -41117,7 +41117,7 @@ "N0061\n" "help.text" msgid "With statement" -msgstr "" +msgstr "Instrucción With" #. FFWQn #: fragments.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/scalc/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-12-21 16:36+0000\n" +"PO-Revision-Date: 2021-03-24 20:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561323262.000000\n" #. E9tti @@ -1580,7 +1580,7 @@ "par_id3144772\n" "help.text" msgid "On Tools bar, click" -msgstr "En la barra de Herramientas, pulse" +msgstr "En la barra Herramientas, pulse en" #. KsK5g #: 00000412.xhp @@ -1625,7 +1625,7 @@ "par_id3155097\n" "help.text" msgid "On Tools bar, click" -msgstr "En la barra de Herramientas, pulse" +msgstr "En la barra Herramientas, pulse en" #. TpnTL #: 00000412.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-03-22 18:37+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -7844,7 +7844,7 @@ "par_id3928952\n" "help.text" msgid "INFO(\"Type\")" -msgstr "INFO(\"Texto\")" +msgstr "INFO(\"Tipo\")" #. hf5Jp #: 04060104.xhp @@ -20651,7 +20651,7 @@ "par_id3149141\n" "help.text" msgid "=LEFT(\"output\";3) returns “out”." -msgstr "=IZQUIERDA(\"salida\";3) devuelve “sal”." +msgstr "=IZQUIERDA(\"salida\";3) devuelve «sal»." #. Bb5G5 #: 04060110.xhp @@ -30191,7 +30191,7 @@ "par_id3151272\n" "help.text" msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?" -msgstr "¿Qué cantidad en intereses debe pagar en el segundo año del préstamo hipotecario (o sea, en el periodo 12 a 24?" +msgstr "¿Qué cantidad en intereses debe pagar en el segundo año del préstamo hipotecario (o sea, de los periodos 13 a 24)?" #. AHELF #: 04060119.xhp @@ -65138,7 +65138,7 @@ "par_id360320091039424\n" "help.text" msgid "During crossover, the scaling factor decides about the “speed” of movement." -msgstr "" +msgstr "Durante el cruce, el factor de escala decide la «velocidad» de movimiento." #. HPPHg #: solver_options_algo.xhp @@ -65147,7 +65147,7 @@ "par_id0507200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Ciclos de aprendizaje" #. ED86j #: solver_options_algo.xhp @@ -65300,7 +65300,7 @@ "par_id0503200917103834\n" "help.text" msgid "Defines in what range solutions are considered “similar”." -msgstr "" +msgstr "Define el intervalo para considerar «similares» dos soluciones." #. jKuiG #: solver_options_algo.xhp @@ -65417,7 +65417,7 @@ "par_id0503200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Ciclos de aprendizaje" #. wgKE5 #: solver_options_algo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/schart/01.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/schart/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-08 23:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3380,7 +3380,7 @@ "par_id3159230\n" "help.text" msgid "The options on this tab are only available for a 2D chart, under Format - Axis - Y Axis or X Axis. In this area, you can define the alignment of the number labels on the X or Y axis." -msgstr "Las opciones de esta ficha sólo están disponibles en los gráficos 2D, en Formato - Eje - Eje Y o Eje X. En esta área, puede establecer la alineación de las etiquetas de números en el eje X o Y." +msgstr "Las opciones de esta pestaña solo están disponibles en los gráficos 2D, en Formato ▸ Eje ▸ Eje Y o Eje X. En esta área, puede establecer la alineación de las etiquetas de números en el eje X o Y." #. woFAp #: 05020201.xhp @@ -3605,7 +3605,7 @@ "par_id3159264\n" "help.text" msgid "Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose Insert - Axes and select Y axis." -msgstr "Abre un cuadro de diálogo donde puede editar las propiedades del eje Y secundario. Para insertar un eje Y secundario, diríjase a Insertar ▸ Ejes y seleccioneEje Y." +msgstr "Abre un cuadro de diálogo donde puede editar las propiedades del eje Y secundario. Para insertar un eje Y secundario, diríjase a Insertar ▸ Ejes y seleccione Eje Y." #. WZh2Z #: 05040000.xhp @@ -3668,7 +3668,7 @@ "par_id3149667\n" "help.text" msgid "The Y axis has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the Scaling tab." -msgstr "El eje Y dispone de un diálogo ampliado, y el diálogo del eje X en los gráficos X-Y también tiene una ficha adicional denominada Escala." +msgstr "El eje Y dispone de un diálogo ampliado, y el diálogo del eje X en los gráficos X-Y también tiene una pestaña adicional denominada Escala." #. 5KDFE #: 05040100.xhp @@ -5477,7 +5477,7 @@ "par_id533768\n" "help.text" msgid "Click to enable or disable the specular light source with highlights." -msgstr "Clic para activar o desactivar la fuente de luz especular con resaltes." +msgstr "Pulse para activar o desactivar la fuente de luz especular con realces." #. muQW4 #: three_d_view.xhp @@ -5486,7 +5486,7 @@ "par_id7214270\n" "help.text" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. acKKh #: three_d_view.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-13 07:27+0000\n" +"PO-Revision-Date: 2021-04-02 05:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -382,7 +382,7 @@ "bm_id3153323\n" "help.text" msgid "views; creating database views (Base) queries; creating in design view (Base) designing; queries (Base) design view; queries/views (Base) joining;tables (Base) tables in databases; joining for queries (Base) queries; joining tables (Base) tables in databases; relations (Base) relations; joining tables (Base) queries; deleting table links (Base) criteria of query design (Base) queries; formulating filter conditions (Base) filter conditions;in queries (Base) parameters; queries (Base) queries; parameter queries (Base) SQL; queries (Base) native SQL (Base)" -msgstr "" +msgstr "vistas; crear vistas de base de datos (Base) consultas; crear en vista de diseño (Base) diseñar; consultas (Base) vista de diseño; consultas / vistas (Base) unir;tablas (Base) tablas en bases de datos; unir para realizar consultas (Base) consultas; unir tablas (Base) tablas en bases de datos; relaciones (Base) relaciones; unir tablas (Base) consultas; eliminar enlaces de tablas (Base) criterios de diseño de consultas (Base) consultas; formular condiciones de filtros (Base) condiciones de filtros;en consultas (Base) parámetros; consultas (Base) consultas; consultas paramétricas (Base) SQL; consultas (Base) SQL nativo (Base)" #. fmcBY #: 02010100.xhp @@ -697,7 +697,7 @@ "par_id3154791\n" "help.text" msgid "If you double-click on the line connecting two linked fields or call the menu command Insert - New Relation, you can specify the type of relation in the Relations dialog." -msgstr "" +msgstr "Si pulsa dos veces en la línea que une dos campos enlazados o selecciona la orden del menú Insertar ▸ Relación nueva, podrá especificar el tipo de relación a través del cuadro de diálogo Relaciones." #. rAkmw #: 02010100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-03-17 19:36+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2255,7 +2255,7 @@ "par_id3143274\n" "help.text" msgid "If you click the button on the window edge to show the window, the window will remain visible until you manually hide it again (with the same button)." -msgstr "Si hace clic en el extremo de la ventana para mostrar la ventana, dicha ventana se verá en pantalla hasta que se vuelva a ocultar de forma manual (con el mismo botón)." +msgstr "Si pulsa en el extremo de la ventana para mostrar la ventana, dicha ventana se verá en pantalla hasta que se vuelva a ocultar de forma manual (con el mismo botón)." #. Hj6iN #: 00000005.xhp @@ -3353,7 +3353,7 @@ "par_id3150244\n" "help.text" msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks." -msgstr "Con $[officename] Writer se pueden insertar notas al pie y al final de página en documentos de HTML. Éstas se exportan en forma de meta-tags y los caracteres de las notas en forma de hiperenlaces." +msgstr "Con $[officename] Writer se pueden insertar notas al pie y al final de página en documentos HTML. Estas se exportan en forma de metaetiquetas y los caracteres de las notas finales, en forma de hiperenlaces." #. bJ8s4 #: 00000020.xhp @@ -7016,7 +7016,7 @@ "par_id3145386\n" "help.text" msgid "Choose File - Send - Email Document." -msgstr "" +msgstr "Vaya a Archivo ▸ Enviar ▸ Enviar documento por correo." #. Qg6LH #: 00000401.xhp @@ -7250,7 +7250,7 @@ "par_id3155869\n" "help.text" msgid "Choose File - Exit %PRODUCTNAME." -msgstr "" +msgstr "Vaya a Archivo ▸ Salir de %PRODUCTNAME." #. DjhX3 #: 00000401.xhp @@ -11210,7 +11210,7 @@ "par_id6058839\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. EJCyJ #: 00040501.xhp @@ -11237,7 +11237,7 @@ "par_id2709433\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. pNmAg #: 00040501.xhp @@ -11264,7 +11264,7 @@ "par_id9929502\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. hgCuD #: 00040501.xhp @@ -11291,7 +11291,7 @@ "par_id4886928\n" "help.text" msgid "On Form Controls toolbar or Form Design bar, click" -msgstr "" +msgstr "En la barra Controles de formulario o Diseño de formulario, pulse en" #. YgQWC #: 00040501.xhp @@ -11318,7 +11318,7 @@ "par_id3148828\n" "help.text" msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." -msgstr "" +msgstr "Abra el Navegador de formularios, seleccione el formulario, abra el menú contextual y elija Abrir en modo de diseño." #. mRTG5 #: 00040501.xhp @@ -11327,7 +11327,7 @@ "par_id8177434\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. iGE3k #: 00040501.xhp @@ -11354,7 +11354,7 @@ "par_id3147533\n" "help.text" msgid "On Form Control toolbar, click" -msgstr "" +msgstr "En la barra Control de formulario, pulse en" #. msyNv #: 00040501.xhp @@ -11381,7 +11381,7 @@ "par_id3147244\n" "help.text" msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Vaya a Formato ▸ Organizar ($[officename] Writer y Calc)." #. BJj2z #: 00040501.xhp @@ -11390,7 +11390,7 @@ "par_id3159334\n" "help.text" msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Abra el menú contextual y elija Organizar ($[officename] Impress y Draw)." #. zzpRV #: 00040501.xhp @@ -11399,7 +11399,7 @@ "par_id3154023\n" "help.text" msgid "Choose Shape - Arrange ($[officename] Draw)." -msgstr "" +msgstr "Vaya a Forma ▸ Organizar ($[officename] Draw)." #. gqcDq #: 00040501.xhp @@ -12029,7 +12029,7 @@ "par_id2851649\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. DcsgR #: 00040501.xhp @@ -12038,7 +12038,7 @@ "par_id3151122\n" "help.text" msgid "Icon Anchor" -msgstr "" +msgstr "Icono Ancla" #. s4iPa #: 00040501.xhp @@ -13838,7 +13838,7 @@ "par_id3149578\n" "help.text" msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode." -msgstr "Si arrastra un objeto al borde de una ventana acoplada oculta, ésta se abrirá en modo Mostrar automáticamente." +msgstr "Si arrastra un objeto al borde de una ventana acoplada oculta, esta se abrirá en modo Mostrar automáticamente." #. zxwWn #: 01010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-26 13:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3218,7 +3218,7 @@ "tit\n" "help.text" msgid "Description (File Properties)" -msgstr "" +msgstr "Descripción (propiedades del archivo)" #. LaoBx #: 01100100.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "tipos de letra que parpadean tipos de letra intermitentes" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Intermitente" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Hace que los caracteres seleccionados parpadeen. No puede cambiar la frecuencia del parpadeo." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -20525,7 +20498,7 @@ "tit\n" "help.text" msgid "Indents and Spacing" -msgstr "Sangrías y espacio" +msgstr "Sangrías y espaciado" #. VaNGr #: 05030100.xhp @@ -21083,7 +21056,7 @@ "par_id3151384\n" "help.text" msgid "Aligns the right edge of the text to the tab stop and extends the text to the left of the tab stop." -msgstr "Alinea el borde derecho del texto respecto a la marca de tabulación y extiende el texto hacia la izquierda de ésta." +msgstr "Alinea el borde derecho del texto respecto a la marca de tabulación y extiende el texto hacia la izquierda de esta." #. pEYEz #: 05030300.xhp @@ -21524,7 +21497,7 @@ "par_id3146975\n" "help.text" msgid "You can also apply a shadow effect to borders. For the best results, only apply this effect when all four borders are visible." -msgstr "A los bordes se les puede aplicar también un efecto de sombra. Para obtener los mejores resultados, este efecto sólo se debe aplicar cuando los cuatro bordes estén visibles." +msgstr "A los bordes se les puede aplicar también un efecto de sombra. Para obtener los mejores resultados, este efecto se debe aplicar solo cuando los cuatro bordes estén visibles." #. tF3Am #: 05030500.xhp @@ -21623,7 +21596,7 @@ "par_idN10A3E\n" "help.text" msgid "Merges the border style and the shadow style of the current paragraph with the next paragraph. These styles are only merged if the indent, border, and shadow styles of the next paragraph are the same as the current paragraph. This option is also available for Paragraph Styles." -msgstr "Combina el estilo de borde y el estilo de sombra del párrafo actual con el párrafo siguiente. Estos estilos sólo se combinan si los estilos de sangría, borde y sombra del párrafo siguiente son los mismos que los del párrafo actual. Esta opción también está disponible para los estilos de párrafo." +msgstr "Combina el estilo de borde y el estilo de sombra del párrafo actual con el párrafo siguiente. Estos estilos solo se combinan si los estilos de sangría, borde y sombra del párrafo siguiente son los mismos que los del párrafo actual. Esta opción también está disponible para los estilos de párrafo." #. pXbGD #: 05030500.xhp @@ -22379,7 +22352,7 @@ "bm_id3150620\n" "help.text" msgid "pages;formatting and numberingformatting;pagespaper formatspaper traysprinters;paper trayslayout;pagesbinding spacemargins;pagesgutterchanging;page sizechanging;page marginspage marginsmargins;definingpage size;defining" -msgstr "" +msgstr "páginas;formato y numeraciónformato;páginasformatos de papelbandejas de papelimpresoras;bandejas de papeldisposición;páginasespacio para encuadernaciónmárgenes;páginasmedianilcambiar;tamaño de páginacambiar;márgenes de páginamárgenes de páginamárgenes;definirtamaño de página;definir" #. 2VdNc #: 05040200.xhp @@ -24026,7 +23999,7 @@ "par_id3154613\n" "help.text" msgid "Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin." -msgstr "Alinea horizontalmente los bordes inferiores de los objetos seleccionados. Si sólo hay seleccionado un objeto en Draw o Impress, su borde inferior se alinea con el margen inferior de la página.!" +msgstr "Alinea verticalmente los bordes inferiores de los objetos seleccionados. Si solo hay seleccionado un objeto en Draw o Impress, su borde inferior se alinea con el margen inferior de la página." #. GdEq6 #: 05070600.xhp @@ -24656,7 +24629,7 @@ "par_id3153089\n" "help.text" msgid "Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed." -msgstr "Pone el texto seleccionado en negrita. Si el cursor está en una palabra, ésta se pone en negrita. Si la selección o la palabra ya están en negrita, dicho formato se quita." +msgstr "Pone el texto seleccionado en negrita. Si el cursor está en una palabra, esta se pone en negrita. Si la selección o la palabra ya están en negrita, dicho formato se quita." #. Gwzyy #: 05110100.xhp @@ -25520,7 +25493,7 @@ "par_id3152996\n" "help.text" msgid "The Line tab of the Data Series dialog is only available if you select an XY Chart type." -msgstr "La ficha Línea del diálogo Fila de datos sólo está disponible si se selecciona el tipo de gráfico XY." +msgstr "La pestaña Línea del cuadro de diálogo Serie de datos solo está disponible si se selecciona el tipo de gráfico XY." #. 5Zzm3 #: 05200100.xhp @@ -27338,7 +27311,7 @@ "par_id3148924\n" "help.text" msgid "Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw." -msgstr "Agrega una sombra al objeto seleccionado. Si el objeto ya tiene una, ésta se borra. Si hace clic en este icono cuando no hay ningún objeto seleccionado, la sombra se agrega al siguiente objeto que se dibuja." +msgstr "Agrega una sombra al objeto seleccionado. Si el objeto ya tiene una, esta se borra. Si pulsa en este icono cuando no hay ningún objeto seleccionado, la sombra se agrega al siguiente objeto que se dibuja." #. gjXA8 #: 05210600.xhp @@ -27428,7 +27401,7 @@ "par_id3147226\n" "help.text" msgid "Turns off color transparency. This is the default setting." -msgstr "Desactiva la transparencia de color. Ésta es la configuración predeterminada." +msgstr "Desactiva la transparencia de color. Esta es la configuración predeterminada." #. E6yyt #: 05210700.xhp @@ -28922,7 +28895,7 @@ "hd_id3151330\n" "help.text" msgid "Callout Styles" -msgstr "Campos de opción gráficos" +msgstr "Estilos de llamada" #. eagHb #: 05230500.xhp @@ -28931,7 +28904,7 @@ "par_id3149760\n" "help.text" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr "Pulse en el estilo Llamada que se debe aplicar a la llamada seleccionada." +msgstr "Pulse en el estilo de llamada que se debe aplicar a la llamada seleccionada." #. aVWTp #: 05230500.xhp @@ -29057,7 +29030,7 @@ "tit\n" "help.text" msgid "Vertically" -msgstr "Vertical" +msgstr "Verticalmente" #. 6h8C2 #: 05240100.xhp @@ -29084,7 +29057,7 @@ "tit\n" "help.text" msgid "Horizontally" -msgstr "Horizontal" +msgstr "Horizontalmente" #. gDSQC #: 05240200.xhp @@ -31415,7 +31388,7 @@ "par_id3151211\n" "help.text" msgid "Aligns the contents of the cell to the top and to the bottom cell borders." -msgstr "Alinea el contenido de la celda a los bordes superior e inferior de ésta." +msgstr "Alinea el contenido de la celda a los bordes superior e inferior de esta." #. S43Af #: 05340300.xhp @@ -31901,7 +31874,7 @@ "par_id3149064\n" "help.text" msgid "Drag and drop only works in Edit mode." -msgstr "Arrastrar y colocar sólo funciona en el modo Editar." +msgstr "La técnica de arrastrar y colocar funciona solo en el modo de edición." #. 47b47 #: 05340400.xhp @@ -33179,7 +33152,7 @@ "par_id3155391\n" "help.text" msgid "Specify the light source for the object, as well as the color of the light source and of the ambient light. You can define up to eight different light sources." -msgstr "Especifique la fuente de luz del objeto, así como el color de ésta y el de la luz ambiental. Puede definir un máximo de ocho fuentes de luz distintas." +msgstr "Especifique la fuente de luz del objeto, así como el color de esta y el de la luz ambiental. Puede definir un máximo de ocho fuentes de luz distintas." #. 2uF7R #: 05350400.xhp @@ -37031,7 +37004,7 @@ "par_id3148925\n" "help.text" msgid "Changes the language setting for the paragraph that contains the highlighted word, if the word is found in another dictionary." -msgstr "Cambia la configuración del idioma para el párrafo que contiene la palabra resaltada si ésta se encuentra en otro diccionario." +msgstr "Cambia la configuración del idioma para el párrafo que contiene la palabra resaltada si esta se encuentra en otro diccionario." #. cJB6R #: 06040600.xhp @@ -41171,7 +41144,7 @@ "par_idN10575\n" "help.text" msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size." -msgstr "Solamente puede importar iconos que están en el formato PNG y que están de 16x16 ó 26x26 píxeles en tamaño." +msgstr "Solamente puede importar iconos que estén en el formato PNG y cuyo tamaño sea de 16 × 16 o 24 × 24 píxeles." #. RLa8G #: 06140402.xhp @@ -41198,7 +41171,7 @@ "bm_id3152427\n" "help.text" msgid "customizing; events events; customizing" -msgstr "" +msgstr "personalizar; sucesossucesos; personalizar" #. gvzR4 #: 06140500.xhp @@ -41252,7 +41225,7 @@ "par_id3153662\n" "help.text" msgid "A macro that is saved with a document can only be run when that document is opened." -msgstr "Una macro guardada con un documento sólo puede ejecutarse al abrir éste." +msgstr "Una macro guardada con un documento puede ejecutarse solo al abrir este." #. Ge58b #: 06140500.xhp @@ -41324,7 +41297,7 @@ "par_id3152349\n" "help.text" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Suprime la asignación de macro o componente del suceso seleccionado." #. QTTif #: 06140500.xhp @@ -41378,7 +41351,7 @@ "par_id3152937\n" "help.text" msgid "Opens the XML Filter Settings dialog, where you can create, edit, delete, and test filters to import and to export XML files." -msgstr "" +msgstr "Abre el cuadro de diálogo Configuración de filtros XML, donde es posible crear, editar, eliminar y poner a prueba filtros para importar o exportar archivos XML." #. 23hBt #: 06150000.xhp @@ -51143,7 +51116,7 @@ "par_id3994567\n" "help.text" msgid "The possible settings of the Data tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:" -msgstr "Las opciones de configuración de la ficha Datos disponibles para un control, dependen del control correspondiente. Sólo se mostrarán las opciones disponibles para el control y contexto actuales. Los campos siguientes están disponibles:" +msgstr "Las configuraciones de la pestaña Datos disponibles para un control dependen del control respectivo. Solo se mostrarán las opciones disponibles para el control y el contexto actuales. Los campos siguientes están disponibles:" #. FykLd #: xformsdatatab.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-03-19 13:22+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1328,7 +1328,7 @@ "par_idN11D2E\n" "help.text" msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow." -msgstr "Determina el desplazamiento de un paso largo en una barra de desplazamiento, por ejemplo, al hacer clic entre el control de la barra de desplazamiento y una flecha de ésta." +msgstr "Determina el desplazamiento de un paso largo en una barra de desplazamiento, por ejemplo, al pulsar entre el control de la barra de desplazamiento y una flecha de esta." #. 34PS4 #: 01170000.xhp @@ -3434,7 +3434,7 @@ "par_id3156712\n" "help.text" msgid "The \"Tristate\" property is only defined for database forms, not for HTML forms." -msgstr "" +msgstr "La propiedad «Estado triple» se define únicamente para los formularios de base de datos, no para los HTML." #. jBMd3 #: 01170101.xhp @@ -3605,7 +3605,7 @@ "par_id3150829\n" "help.text" msgid "The characters a-z and A-Z can be entered. Capital characters are not converted to lowercase characters." -msgstr "" +msgstr "Se pueden introducir caracteres entre a-z y A-Z. Las mayúsculas no se convierten en minúsculas." #. MBwus #: 01170101.xhp @@ -3614,7 +3614,7 @@ "par_id3156140\n" "help.text" msgid "The characters A-Z can be entered. If a lowercase letter is entered, it is automatically converted to a capital letter." -msgstr "" +msgstr "Se pueden introducir caracteres entre A-Z. Si se escribe una letra minúscula, se convierte automáticamente en mayúscula." #. REnSG #: 01170101.xhp @@ -3641,7 +3641,7 @@ "par_id3150979\n" "help.text" msgid "Only the characters 0-9 can be entered." -msgstr "" +msgstr "Solamente se pueden introducir los caracteres entre 0-9." #. yDGGq #: 01170101.xhp @@ -3758,7 +3758,7 @@ "par_id3148600\n" "help.text" msgid "The next document is created in the same frame." -msgstr "El documento siguiente se inserta en el mismo frame." +msgstr "El documento siguiente se inserta en el mismo marco." #. oCgYA #: 01170101.xhp @@ -7007,7 +7007,7 @@ "par_idN110C1\n" "help.text" msgid "Enter a formula into the linked cell:" -msgstr "" +msgstr "Introduzca una fórmula en la celda enlazada:" #. 6eiTT #: 01170102.xhp @@ -7097,7 +7097,7 @@ "par_idN1110C\n" "help.text" msgid "Text is copied into the linked cell." -msgstr "" +msgstr "El texto se copia en la celda enlazada." #. EuxYn #: 01170102.xhp @@ -7907,7 +7907,7 @@ "par_id3152933\n" "help.text" msgid "From the table control, the individual columns are always transmitted. The name of the control, the name of the column, and the value of the column are sent. Using the Get method with URL encoding, the transmission is done in the form .=, for example, with the value being dependent on the column." -msgstr "Desde el control de tabla se transmiten siempre las columnas individuales. Se envían el nombre del campo de control, el nombre de la columna y el valor de ésta. Si se utiliza el método Get con codificación de URL, la transmisión se efectúa de la siguiente forma: .=, por ejemplo, siendo el valor dependiente de la columna." +msgstr "Desde el control de tabla se transmiten siempre las columnas individuales. Se envían el nombre del control, el nombre de la columna y el valor de esta. Si se utiliza el método Get con codificación de URL, la transmisión se efectúa de la siguiente forma: .=, por ejemplo, siendo el valor dependiente de la columna." #. GGH2R #: 01170202.xhp @@ -18329,7 +18329,7 @@ "par_id3147396\n" "help.text" msgid "Opens a dialog to determine the number of poster colors. This effect is based on the reduction of the number of colors. It makes photos look like paintings." -msgstr "" +msgstr "Abre un cuadro de diálogo para determinar el número de colores de póster. Este efecto se basa en la reducción del número de colores. Hace que las fotos tengan aspecto de pinturas." #. LjfdE #: 24010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/04.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/04.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-13 19:58+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -104,7 +104,7 @@ "par_id851591272526169\n" "help.text" msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing Command+Option+XAlt+X (default). Type the Unicode hexadecimal notation and press Command+Option+XAlt+X to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted." -msgstr "" +msgstr "Puede introducir en el documento caracteres de Unicode cualesquiera si escribe el punto de código Unicode hexadecimal y presiona a continuación ⌘⌥XAlt + X (atajo predeterminado). Escriba la notación hexadecimal de Unicode y oprima ⌘⌥XAlt +X para alternar entre el carácter Unicode y su notación hexadecimal. No hace falta hacer una selección con antelación, pero si la efectúa, la conversión se aplicará a los caracteres que seleccione. El cambio se produce en los caracteres que estén justo antes del cursor si estos forman un punto hexadecimal Unicode válido. No se convierten los puntos cuyo valor se sitúa en el intervalo comprendido entre U+0000 y U+0020." #. u4AsW #: 01010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/05.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/05.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-25 18:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1549984106.000000\n" #. WPTtk @@ -1400,7 +1400,7 @@ "hd_id561534964266978\n" "help.text" msgid "The Module List" -msgstr "" +msgstr "La lista de módulos" #. QNkEX #: new_help.xhp @@ -1670,7 +1670,7 @@ "hd_id841534888870987\n" "help.text" msgid "Copying Help contents to clipboard" -msgstr "" +msgstr "Copiar el contenido de la Ayuda en el portapapeles" #. YcBZG #: new_help.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -10229,7 +10229,7 @@ "par_id7022003\n" "help.text" msgid "If you click the Page Header or Page Footer area without selecting any object, you see the General tab page for that area." -msgstr "Si hace clic en el área de Encabezado o Pie de página sin seleccionar ningún objeto, verá la pestaña General del área correspondiente." +msgstr "Si pulsa en el área de Cabecera o Pie sin seleccionar ningún objeto, verá la pestaña General del área correspondiente." #. xACk2 #: rep_prop.xhp @@ -10292,7 +10292,7 @@ "par_id7466963\n" "help.text" msgid "If you click the Detail area without selecting any object, you see the General tab page for that area." -msgstr "Si hace clic en el área de Detalle sin seleccionar ningún objeto, verá la pestaña General para esta área." +msgstr "Si pulsa en el área de Detalle sin seleccionar ningún objeto, verá la pestaña General para esta área." #. kmEmG #: rep_prop.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -896,7 +896,7 @@ "par_id3152921\n" "help.text" msgid "Click the button on the edge of the docked window to show or hide the docked window. The AutoHide function allows you to temporarily show a hidden window by clicking on its edge. When you click in the document, the docked window hides again." -msgstr "Pulse en el botón del borde de la ventana acoplada para mostrarla u ocultarla. La función de ocultación automática permite mostrar momentáneamente una ventana oculta haciendo clic en el borde. Cuando se hace clic en el documento, la ventana acoplada se oculta de nuevo." +msgstr "Pulse en el botón del borde de la ventana acoplada para mostrarla u ocultarla. La función de ocultación automática permite mostrar momentáneamente una ventana oculta pulsando en el borde. Cuando se pulsa en el documento, la ventana acoplada se oculta de nuevo." #. ZSCL9 #: background.xhp @@ -4550,7 +4550,7 @@ "par_impress6\n" "help.text" msgid "Draw 8" -msgstr "" +msgstr "Draw 8" #. u7rfv #: convertfilters.xhp @@ -4568,7 +4568,7 @@ "par_impress12\n" "help.text" msgid "Impress 8" -msgstr "" +msgstr "Impress 8" #. QGZqj #: convertfilters.xhp @@ -5495,7 +5495,7 @@ "par_id3151210\n" "help.text" msgid "An inserted drawing object is anchored to the current cell. You can change the anchor between cell and page by selecting the object and clicking the Change Anchor icon Icon." -msgstr "Un objeto de dibujo insertado se ancla a la celda. Puede cambiar el ancla entre la celda y la página si selecciona el objeto y hace clic en el icono Cambiar ancla Icono." +msgstr "Un objeto de dibujo insertado se ancla a la celda. Puede cambiar el ancla entre la celda y la página si selecciona el objeto y pulsa en el icono Cambiar ancla Icono." #. xRQut #: copytable2application.xhp @@ -7493,7 +7493,7 @@ "par_id3152462\n" "help.text" msgid "If you click the Apply Form-Based Filter icon on the Form Filter toolbar, the filter will be applied. You see the Form Navigation toolbar and can browse through the found records." -msgstr "Si hace clic en el icono Aplicar filtro de formularios de la barra de herramientas Filtro de formularios, se aplicará el filtro. Se abre la barra de herramientas Navegación de formularios, que permite examinar los registros encontrados." +msgstr "Si pulsa en el icono Aplicar filtro de formularios de la barra de herramientas Filtro de formularios, se aplicará el filtro. Se abre la barra de herramientas Navegación de formularios, que permite examinar los registros encontrados." #. CdBD5 #: data_search2.xhp @@ -7502,7 +7502,7 @@ "par_id3145273\n" "help.text" msgid "If you click on the Close button on the Form Filter toolbar, the form is displayed without a filter." -msgstr "Si hace clic en el botón Cerrar de la barra de herramientas Filtro de formularios, el formulario se muestra sin filtros." +msgstr "Si pulsa en el botón Cerrar de la barra de herramientas Filtro de formularios, el formulario se muestra sin filtros." #. P5nBh #: data_search2.xhp @@ -8645,7 +8645,7 @@ "par_id4381847\n" "help.text" msgid "If you click Continue, you may see a dialog that asks you to enter your user name and password." -msgstr "Si hace clic en Continuar, puede que ver un diálogo que le pide introducir su nombre de usuario y contraseña." +msgstr "Si pulsa en Continuar, puede que vea un diálogo que le solicitará su nombre de usuario y contraseña." #. sBMvT #: digitalsign_receive.xhp @@ -19571,7 +19571,7 @@ "par_id3150775\n" "help.text" msgid "All documents that are saved in OpenDocument format can be saved with a password. Documents that are saved with a password cannot be opened without the password. The content is secured so that it cannot be read with an external editor. This applies to content, graphics and OLE objects." -msgstr "Todos los documentos guardados con formato XML se pueden guardar con una contraseña. Los documentos guardados con una contraseña no se pueden abrir sin ésta. El contenido se asegura, de forma que no puede leerse con un editor externo. Esto se aplica al contenido, las imágenes y los objetos OLE." +msgstr "Todos los documentos guardados en un formato OpenDocument pueden guardarse con una contraseña. Los documentos guardados con una contraseña no se pueden abrir sin esta. El contenido se protege de forma que no pueda leerse con un editor externo. Esto se aplica al contenido, las imágenes y los objetos OLE." #. i9B3Z #: protection.xhp @@ -20678,7 +20678,7 @@ "par_id3156119\n" "help.text" msgid "Changes in a spreadsheet document are highlighted by a border around the cells; when you point to the cell you can see more detailed information on this change in the Help Tip." -msgstr "Los cambios efectuados en una hoja de cálculo se destacan mediante un borde alrededor de las celdas. Cuando éstas se señalan con el cursor, la información detallada correspondiente a dicha modificación aparecerá en la ventana de la Ayuda emergente." +msgstr "Los cambios efectuados en una hoja de cálculo se destacan mediante un borde alrededor de las celdas. Cuando estas se señalan con el puntero, la información detallada correspondiente a dicha modificación aparecerá en la descripción emergente." #. LAx8Z #: redlining_enter.xhp @@ -25259,7 +25259,7 @@ "par_idN10A44\n" "help.text" msgid "The files that are specified on the Transformation tab page are copied to the local %PRODUCTNAME users directory." -msgstr "Los archivos que se especifican en la ficha Transformación se copian en el directorio de usuarios de %PRODUCTNAME local." +msgstr "Los archivos que se especifican en la pestaña Transformación se copian en el directorio local de usuarios de %PRODUCTNAME." #. 8HBJv #: xsltfilter_create.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-17 19:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -9905,7 +9905,7 @@ "par_id3150449\n" "help.text" msgid "If you insert rows or columns in the middle of a reference area, the reference is always expanded." -msgstr "Si inserta filas o columnas en el centro de un área de referencia, ésta siempre se expande." +msgstr "Si inserta filas o columnas en el centro de un área de referencia, esta siempre se expande." #. 7mH7f #: 01060300.xhp @@ -10022,7 +10022,7 @@ "par_id3150503\n" "help.text" msgid "Displays all the available lists. These lists can be selected for editing." -msgstr "Muestra todas las listas disponibles. Estas listas pueden ser editadas." +msgstr "Muestra todas las listas disponibles. Estas listas pueden seleccionarse para editarlas." #. iLCLL #: 01060400.xhp @@ -10292,7 +10292,7 @@ "par_id3156155\n" "help.text" msgid "Type the text 'Selling price' in cell A5, the text 'Net' in cell A6, and the text 'Value-added tax' in cell A7." -msgstr "Escriba el texto 'Precio de venta' en la celda A5, 'Neto' en la celda A6 e 'IVA' en la celda A7." +msgstr "Escriba el texto «Precio de venta» en la celda A5, «Neto» en la celda A6 e «IVA» en la celda A7." #. FEk8i #: 01060500.xhp @@ -10319,7 +10319,7 @@ "par_id3154760\n" "help.text" msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the Status Bar." -msgstr "Active las iteraciones para calcular las fórmulas correctamente; en caso contrario, en la barra de estado se mostrará el error 'Referencia circular'." +msgstr "Active las iteraciones para calcular las fórmulas correctamente; en caso contrario, en la barra de estado se mostrará el error «Referencia circular»." #. GykKF #: 01060500.xhp @@ -13217,7 +13217,7 @@ "par_id3149398\n" "help.text" msgid "This table is used as a means of replacing the chart colors for the selected data rows. For example, if you selected data row 6 and then click on the color green 8, the old color of the data row is replaced by green 8. The name of the selected color is shown below the color table." -msgstr "Esta tabla se usa para sustituir los colores de las filas de datos seleccionadas en los gráficos. Por ejemplo, si selecciona la fila de datos 6 y hace clic en el color verde 8, el anterior color de la fila de datos se sustituye por el verde 8. El nombre del color seleccionado se muestra debajo de la paleta de colores." +msgstr "Esta tabla se usa para sustituir los colores de las filas de datos seleccionadas en los gráficos. Por ejemplo, si selecciona la fila de datos 6 y pulsa en el color verde 8, el anterior color de la fila de datos se sustituye por el verde 8. El nombre del color seleccionado se muestra debajo de la paleta de colores." #. eLbLr #: 01110100.xhp @@ -16889,7 +16889,7 @@ "par_id7824030\n" "help.text" msgid "A check will be performed once a week. This is the default setting." -msgstr "Se realizará una comprobación una vez a la semana. Ésta es la configuración predeterminada." +msgstr "Se realizará una comprobación una vez a la semana. Esta es la configuración predeterminada." #. bahKS #: online_update.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/simpress/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3137,7 +3137,7 @@ "par_id3153190\n" "help.text" msgid "Inserts a copy of the current slide after the current slide." -msgstr "Inserta una copia de la diapositiva actual a continuación de ésta." +msgstr "Inserta una copia de la diapositiva actual a continuación de esta." #. TiHjB #: 04130000.xhp @@ -5108,7 +5108,7 @@ "par_idN10744\n" "help.text" msgid "Select to advance to the next slide on a mouse click." -msgstr "Seleccione para pasar a la siguiente diapositiva con un clic del ratón." +msgstr "Seleccione para pasar a la siguiente diapositiva con una pulsación del ratón." #. SFpX3 #: 06040000.xhp @@ -8744,7 +8744,7 @@ "par_idN106BA\n" "help.text" msgid "Until next click - the animation is repeated until the next mouse click." -msgstr "Hasta el siguiente clic: la animación se repite hasta que se hace clic con el ratón." +msgstr "Hasta la próxima pulsación: la animación se repite hasta que se pulsa con el ratón." #. 7W7BZ #: effectoptionstiming.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/simpress/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-09-04 05:35+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1534121568.000000\n" #. AiACn @@ -3182,7 +3182,7 @@ "par_id3147511\n" "help.text" msgid "Draws a pyramid with a square base where you drag in the slide. To draw a pyramid with a rectangular base, hold down Shift while you drag. To define a different polygon for the base of the pyramid, open the 3D Effects dialog and click the Geometry tab. In the Segments area, enter the number of sides for the polygon in the box labeled Horizontal, and then click the green checkmark." -msgstr "Dibuja una pirámide de base cuadrada al arrastrar en la diapositiva. Para dibujar una pirámide de base rectangular, mantenga pulsada la tecla Mayús al arrastrar. Para definir un polígono distinto como base de la pirámide, abra el diálogo Efectos 3D y pulse en la ficha Geometría. En el área Segmentos, escriba el número de caras del polígono en el cuadro Horizontal y, a continuación, pulse en la marca de verificación verde." +msgstr "Dibuja una pirámide de base cuadrada al arrastrar en la diapositiva. Para dibujar una pirámide de base rectangular, mantenga oprimida la tecla Mayús al arrastrar. Para definir un polígono distinto como base de la pirámide, abra el cuadro de diálogo Efectos 3D y pulse en la pestaña Geometría. En el apartado Segmentos, escriba el número de caras del polígono en el cuadro Horizontal y, a continuación, pulse en la marca de verificación verde." #. foMAw #: 10090000.xhp @@ -5684,7 +5684,7 @@ "par_id3155443\n" "help.text" msgid "Icon Exit all groups" -msgstr "" +msgstr "Icono Salir de todos los grupos" #. CGmZy #: 13100000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/04.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/simpress/04.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/simpress/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/simpress/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-03-13 12:06+0100\n" -"PO-Revision-Date: 2020-12-21 16:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1513969565.000000\n" #. mYCYv @@ -1589,7 +1589,7 @@ "par_id3155908\n" "help.text" msgid "Select adjacent items or a text passage. Click at the start of a selection, move to the end of the selection, and then hold down Shift while you click." -msgstr "Seleccionar elementos adyacentes o un fragmento de texto. Pulse al principio de una selección, desplácese hasta el final de ésta, y pulse con el ratón mientras mantiene oprimida la tecla Mayús." +msgstr "Seleccionar elementos adyacentes o un fragmento de texto. Pulse al principio de una selección, desplácese hasta el final de esta y pulse con el ratón mientras mantiene oprimida la tecla Mayús." #. EL4xV #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-19 13:22+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5144,7 +5144,7 @@ "par_id3154621\n" "help.text" msgid "When using the align instructions, note that" -msgstr "Al trabajar con las instrucciones align, tenga en cuenta que éstas" +msgstr "Al trabajar con las instrucciones de alineación, tenga en cuenta que estas" #. BmL9t #: 03090700.xhp @@ -6899,7 +6899,7 @@ "par_id3154694\n" "help.text" msgid "The spaces in the examples are required for the correct structure. You may not delete them when making entries in the Commands window." -msgstr "Los espacios de los ejemplos son imprescindibles para la correcta construcción de la fórmula, por lo que no deben omitirse cuando se introduce ésta en el cuadro Órdenes." +msgstr "Los espacios de los ejemplos son imprescindibles para la correcta construcción de la fórmula, por lo que no deben omitirse cuando se introduce esta en el cuadro Órdenes." #. AB9LN #: 03091500.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-22 18:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -716,7 +716,7 @@ "par_id3149490\n" "help.text" msgid "Click the plus sign (+) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator." -msgstr "" +msgstr "Pulse en el signo de suma (+) o la flecha situada junto a una categoría del Navegador para visualizar los elementos de esta. Para ver el número de elementos en una categoría, pose el puntero del ratón sobre esta. Para saltar a un elemento del documento, pulse dos veces sobre el elemento correspondiente en el Navegador." #. WD2Zz #: 02110000.xhp @@ -725,7 +725,7 @@ "par_id3149106\n" "help.text" msgid "To jump to the next or previous item in a document, use the Navigate by box to select the item category, and then click the up or down arrows." -msgstr "" +msgstr "Para saltar al próximo o al anterior elemento de un documento, sírvase del cuadro Navegar por para seleccionar la categoría de elemento y, acto seguido, pulse una de las flechas." #. 87cKG #: 02110000.xhp @@ -743,7 +743,7 @@ "par_id171603114951991\n" "help.text" msgid "Use selection box to choose which type of item should be navigated, when using the Previous and Next buttons." -msgstr "" +msgstr "Utilice el cuadro de selección para elegir por cuál tipo de elemento navegar al utilizar los botones Anterior y Siguiente." #. GVCyP #: 02110000.xhp @@ -1949,7 +1949,7 @@ "par_id3149844\n" "help.text" msgid "If you click this icon in the Navigator or in the lower right of the document window, a toolbar will appear which enables you to choose among the existing targets within a document. You can then use the up and down arrow icons to position the text cursor in the document on the previous or next target." -msgstr "Si hace clic en este símbolo del Navegador o en la parte inferior derecha de la ventana del documento, aparecerá una barra de herramientas que permite elegir entre distintos destinos de un documento. Puede utilizar los símbolos de flecha arriba y abajo para colocar el cursor del texto en el documento en el destino anterior o siguiente." +msgstr "Si pulsa en este icono del Navegador o en la parte inferior derecha de la ventana del documento, aparecerá una barra de herramientas que permite elegir entre distintos destinos de un documento. Puede utilizar los iconos de flecha arriba y abajo para colocar el cursor del texto en el documento en el destino anterior o siguiente." #. 9YmHX #: 02110100.xhp @@ -8015,7 +8015,7 @@ "par_id3147084\n" "help.text" msgid "Select the macro that you want to run when the field is clicked." -msgstr "Seleccione el macro que desea ejecutar cuando le hace clic en el campo." +msgstr "Seleccione la macro que debe ejecutarse cuando se pulsa en el campo." #. DVBiB #: 04090003.xhp @@ -8276,7 +8276,7 @@ "par_id3147455\n" "help.text" msgid "This dialog is shown when you click an Input list field in the document." -msgstr "Este diálogo se muestra cuando se hace clic sobre el campo de Lista de entrada en el documento." +msgstr "Este cuadro de diálogo se muestra cuando se pulsa en un campo de Lista de entrada del documento." #. CXxFZ #: 04090003.xhp @@ -16864,7 +16864,7 @@ "hd_id3154646\n" "help.text" msgid "Footnote area" -msgstr "Área de la nota al pie" +msgstr "Área de notas al pie" #. ZmaA9 #: 05040600.xhp @@ -20248,7 +20248,7 @@ "par_id3149167\n" "help.text" msgid "Allows you to edit the contents of a frame in a document that is read-only (write-protected)." -msgstr "Permite editar el contenido de un marco en un documento que es de sólo lectura (protegido contra escritura)." +msgstr "Permite editar el contenido de un marco en un documento que es de solo lectura (protegido contra escritura)." #. mtDxD #: 05060900.xhp @@ -25549,7 +25549,7 @@ "hd_id3148845\n" "help.text" msgid "Footnote area" -msgstr "Área de la nota al pie" +msgstr "Área de notas al pie" #. vnEDK #: 06080100.xhp @@ -27286,7 +27286,7 @@ "par_idN10559\n" "help.text" msgid "Starts the Mail Merge Wizard to create form letters or send email messages to many recipients." -msgstr "" +msgstr "Inicia el Asistente para combinar correspondencia para crear cartas modelo o enviar mensajes de correo electrónico a muchos destinatarios." #. bXSUB #: mailmerge00.xhp @@ -27547,7 +27547,7 @@ "hd_id6954863\n" "help.text" msgid "Email message" -msgstr "" +msgstr "Mensaje de correo electrónico" #. YA54f #: mailmerge02.xhp @@ -27556,7 +27556,7 @@ "par_idN10561\n" "help.text" msgid "Creates mail merge documents that you can send as an email message or an email attachment." -msgstr "" +msgstr "Crea documentos de combinación de correspondencia que puede enviar como un mensaje de correo electrónico o como un archivo adjunto a un mensaje." #. 8sABv #: mailmerge02.xhp @@ -27565,7 +27565,7 @@ "par_idN10572\n" "help.text" msgid "Next step: Mail Merge Wizard - Addresses" -msgstr "Próximo paso: Asistente para combinar correspondencia: direcciones" +msgstr "Próximo paso: Asistente para combinar correspondencia. Direcciones" #. 44eW3 #: mailmerge02.xhp @@ -27583,7 +27583,7 @@ "tit\n" "help.text" msgid "Mail Merge Wizard - Addresses" -msgstr "Asistente para combinar correspondencia - Direcciones" +msgstr "Asistente para combinar correspondencia. Direcciones" #. AZpRf #: mailmerge03.xhp @@ -27592,7 +27592,7 @@ "par_idN10543\n" "help.text" msgid "Mail Merge Wizard - Addresses" -msgstr "Asistente para combinar correspondencia - Direcciones" +msgstr "Asistente para combinar correspondencia. Direcciones" #. pdX8B #: mailmerge03.xhp @@ -27619,7 +27619,7 @@ "par_idN10556\n" "help.text" msgid "The title of this page is Insert address block for letters and Select address list for email messages." -msgstr "" +msgstr "El título de esta página es Insertar bloque de dirección para las cartas y Elegir lista de direcciones para los mensajes de correo electrónico." #. GEW7x #: mailmerge03.xhp @@ -28330,7 +28330,7 @@ "par_idN10559\n" "help.text" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Introduzca los destinatarios de las copias ocultas de correo electrónico, separados por un punto y coma (;)." #. FHSJ5 #: mm_cusaddlis.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2093,7 +2093,7 @@ "par_id3154263\n" "help.text" msgid "You can choose from the following statistical functions:" -msgstr "" +msgstr "Puede elegir de entre las funciones estadísticas siguientes:" #. AeKzo #: 14020000.xhp @@ -3146,7 +3146,7 @@ "par_id3147511\n" "help.text" msgid "Inserts the current date as a field. The default date format is used, and the date is not automatically updated." -msgstr "Inserta la fecha en forma de campo. Se usa el formato de fecha predeterminado y ésta no se actualiza automáticamente." +msgstr "Inserta la fecha en forma de campo. Se usa el formato de fecha predeterminado y esta no se actualiza automáticamente." #. Nb7FF #: 18030100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-22 18:36+0000\n" +"PO-Revision-Date: 2021-04-26 13:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5180,7 +5180,7 @@ "par_id7540818\n" "help.text" msgid "When you click Replace All, Writer replaces all text that matches your entry." -msgstr "Si hace clic en Reemplazar todo, Writer reemplaza todo el texto que contiene las palabras introducidas." +msgstr "Si pulsa en Reemplazar todo, Writer reemplaza todo el texto que contiene las palabras introducidas." #. yYuiK #: finding.xhp @@ -9509,7 +9509,7 @@ "par_id3153416\n" "help.text" msgid "Follow the scanning instructions." -msgstr "Siga las instrucciones de escaneado." +msgstr "Siga las instrucciones de digitalización." #. FobBn #: insert_tab_innumbering.xhp @@ -10895,7 +10895,7 @@ "par_id3155895\n" "help.text" msgid "Choose Format - Bullets and Numbering, and then click the Customize tab." -msgstr "" +msgstr "Vaya a Formato ▸ Numeración y viñetas y, a continuación, pulse en la pestaña Personalizar." #. UiczS #: numbering_paras.xhp @@ -10931,7 +10931,7 @@ "tit\n" "help.text" msgid "Inserting and Deleting Page Breaks" -msgstr "Insertar y borrar saltos de página" +msgstr "Insertar y eliminar saltos de página" #. jCD3e #: page_break.xhp @@ -11804,7 +11804,7 @@ "par_idN1071D\n" "help.text" msgid "$[officename] uses page styles to specify the orientation of the pages in a document. Page styles define more page properties, as for example header and footer or page margins. You can either change the “Default” page style for the current document, or you can define own page styles and apply those page styles to any parts of your text." -msgstr "$[officename] utiliza estilos de página para especificar la orientación de las páginas de un documento. Los estilos de página definen más propiedades de página como, por ejemplo, el encabezado o pie de página o los márgenes de página. Puede cambiar bien el estilo de página “Predeterminado” del documento actual o definir sus propios estilos de página y aplicarlos a cualquier para del texto." +msgstr "$[officename] utiliza estilos de página para especificar la orientación de las páginas de un documento. Los estilos de página definen más propiedades de la página como, por ejemplo, la cabecera, el pie o los márgenes. Puede cambiar bien el estilo de página «Predeterminado» del documento actual o bien definir sus propios estilos de página y aplicarlos a cualquier parte del texto." #. KWnxa #: pageorientation.xhp @@ -14126,7 +14126,7 @@ "tit\n" "help.text" msgid "Using Regular Expressions in Text Searches" -msgstr "" +msgstr "Utilizar expresiones regulares en las búsquedas de texto" #. BfcDE #: search_regexp.xhp @@ -14234,7 +14234,7 @@ "par_id3149641\n" "help.text" msgid "The regular expression for a single character is a period (.)." -msgstr "" +msgstr "La expresión regular que representa un único carácter es el punto (.)." #. bDZCd #: search_regexp.xhp @@ -14270,7 +14270,7 @@ "par_id0509200916345545\n" "help.text" msgid "The regular expression for a tab character is \\t." -msgstr "" +msgstr "La expresión regular que representa una tabulación es \\t." #. peHPz #: search_regexp.xhp @@ -17564,7 +17564,7 @@ "par_id3150223\n" "help.text" msgid "On the Frame Bar, click the Link Frames iconIcon." -msgstr "" +msgstr "En la barra Marco, pulse en el icono Enlazar marcos Icono." #. vEBwD #: text_frame.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/librelogo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-04 16:36+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551390710.000000\n" #. kypzs @@ -68,7 +68,7 @@ "par_230\n" "help.text" msgid "The LibreLogo toolbar (View - Toolbars - Logo) contains turtle moving, program start, stop, home, clear screen, program editor/syntax highlighting/translating icons and an input bar (command line)." -msgstr "La barra de herramientas de LibreLogo (Ver ▸ Barras de herramientas ▸ Logo) contiene iconos para mover la tortuga, iniciar y detener el programa, ir al inicio, vaciar la pantalla, editar el código, resaltar la sintaxis y traducirla, así como una barra de entrada de datos (línea de órdenes)." +msgstr "La barra de herramientas de LibreLogo (Ver ▸ Barras de herramientas ▸ Logo) contiene iconos para mover la tortuga, iniciar y detener el programa, ir al inicio, vaciar la pantalla, editar el código, colorear la sintaxis y traducirla, así como una barra de entrada de datos (línea de órdenes)." #. UBade #: LibreLogo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/menu.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter/menu.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter/menu.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2020-11-03 13:21+0000\n" +"PO-Revision-Date: 2021-04-23 23:05+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1464549482.000000\n" #. tP5yN @@ -194,7 +194,7 @@ "par_id911601651828340\n" "help.text" msgid "Submenu with additional row, column, and page breaks" -msgstr "" +msgstr "Submenú con saltos adicionales de renglón, de columna y de página" #. t534N #: submenu_more_breaks.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/es/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-02-09 05:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551206337.000000\n" #. P7iNX @@ -2759,7 +2759,7 @@ "par_id3153405\n" "help.text" msgid "This icon represents the Page Wrap option on the Wrap tab page." -msgstr "La función de este símbolo corresponde a la opción Ajuste de página de la ficha Ajuste." +msgstr "La función de este icono corresponde a la opción Ajuste de página de la pestaña Ajuste." #. euDxv #: main0215.xhp @@ -2777,7 +2777,7 @@ "par_id3147799\n" "help.text" msgid "You can also define this setting on the Wrap tab page." -msgstr "Esta configuración también se puede realizar a través de la ficha Ajuste." +msgstr "Esta configuración también se puede realizar a través de la pestaña Ajuste." #. UcRFJ #: main0215.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.1.3~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.1.2~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-07-31 23:14+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1511581803.000000\n" #. XpeLj @@ -203,7 +203,7 @@ "par_id0503200917103834\n" "help.text" msgid "Defines in what range solutions are considered “similar”." -msgstr "Define en qué intervalo las soluciones se consideran «similares»." +msgstr "Define el intervalo para considerar «similares» dos soluciones." #. RUbSm #: Options.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-22 17:36+0000\n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -25826,7 +25826,7 @@ "Label\n" "value.text" msgid "A~rrange" -msgstr "~Posición" +msgstr "Organi~zar" #. GFrfB #: GenericCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/es/sc/messages.po libreoffice-7.1.3~rc2/translations/source/es/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-22 17:36+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -7408,7 +7408,7 @@ #: sc/inc/scfuncs.hrc:1331 msgctxt "SC_OPCODE_MOD" msgid "The number by which the dividend is divided." -msgstr "es el número por el cual desea dividir el número." +msgstr "El número por el cual se divide el dividendo." #. DrEgm #: sc/inc/scfuncs.hrc:1337 @@ -7444,7 +7444,7 @@ #: sc/inc/scfuncs.hrc:1347 msgctxt "SC_OPCODE_SUB_TOTAL" msgid "Function index. Is an index of the possible functions Total, Max, ..." -msgstr "es un número que indica qué función debe ser utilizada." +msgstr "Índice de funciones. Es el índice de las funciones posibles, como Total, Máximo…" #. BxfCA #: sc/inc/scfuncs.hrc:1348 @@ -7474,7 +7474,7 @@ #: sc/inc/scfuncs.hrc:1357 msgctxt "SC_OPCODE_AGGREGATE" msgid "Function index. Is an index of the possible functions Total, Max, ..." -msgstr "es un número que indica qué función debe ser utilizada." +msgstr "Índice de funciones. Es el índice de las funciones posibles, como Total, Máximo…" #. 2FmK3 #: sc/inc/scfuncs.hrc:1358 @@ -8184,7 +8184,7 @@ #: sc/inc/scfuncs.hrc:1599 msgctxt "SC_OPCODE_SUM_X2MY2" msgid "First array where the square of the arguments are totalled." -msgstr "es la primera matriz o área de valores." +msgstr "Primera matriz en que se totaliza el cuadrado de los argumentos." #. YSPPg #: sc/inc/scfuncs.hrc:1600 @@ -8214,7 +8214,7 @@ #: sc/inc/scfuncs.hrc:1609 msgctxt "SC_OPCODE_SUM_X2DY2" msgid "First array where the square of the arguments are totalled." -msgstr "es la primera matriz o área de valores." +msgstr "Primera matriz en que se totaliza el cuadrado de los argumentos." #. Vtggo #: sc/inc/scfuncs.hrc:1610 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/scaddins/messages.po libreoffice-7.1.3~rc2/translations/source/es/scaddins/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/scaddins/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/scaddins/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-17 16:46+0100\n" -"PO-Revision-Date: 2020-12-09 13:36+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1512860287.000000\n" #. i8Y7Z @@ -32,7 +32,7 @@ #: scaddins/inc/analysis.hrc:29 msgctxt "ANALYSIS_Workday" msgid "The start date" -msgstr "Fecha inicial" +msgstr "La fecha de inicio" #. yAENf #: scaddins/inc/analysis.hrc:30 @@ -74,7 +74,7 @@ #: scaddins/inc/analysis.hrc:40 msgctxt "ANALYSIS_Yearfrac" msgid "The start date" -msgstr "Fecha inicial" +msgstr "La fecha de inicio" #. mEZVs #: scaddins/inc/analysis.hrc:41 @@ -86,7 +86,7 @@ #: scaddins/inc/analysis.hrc:42 msgctxt "ANALYSIS_Yearfrac" msgid "The end date" -msgstr "Fecha final" +msgstr "La fecha de finalización" #. rZ6jE #: scaddins/inc/analysis.hrc:43 @@ -116,7 +116,7 @@ #: scaddins/inc/analysis.hrc:51 msgctxt "ANALYSIS_Edate" msgid "The start date" -msgstr "Fecha inicial" +msgstr "La fecha de inicio" #. uYXaX #: scaddins/inc/analysis.hrc:52 @@ -180,7 +180,7 @@ #: scaddins/inc/analysis.hrc:69 msgctxt "ANALYSIS_Eomonth" msgid "The start date" -msgstr "Fecha inicial" +msgstr "La fecha de inicio" #. h3ArQ #: scaddins/inc/analysis.hrc:70 @@ -214,7 +214,7 @@ #: scaddins/inc/analysis.hrc:78 msgctxt "ANALYSIS_Networkdays" msgid "The start date" -msgstr "Fecha inicial" +msgstr "La fecha de inicio" #. GRYzo #: scaddins/inc/analysis.hrc:79 @@ -226,13 +226,13 @@ #: scaddins/inc/analysis.hrc:80 msgctxt "ANALYSIS_Networkdays" msgid "The end date" -msgstr "Fecha final" +msgstr "La fecha de finalización" #. tCSgi #: scaddins/inc/analysis.hrc:81 msgctxt "ANALYSIS_Networkdays" msgid "Holidays" -msgstr "Días libres" +msgstr "Feriados" #. DGoVo #: scaddins/inc/analysis.hrc:82 @@ -256,7 +256,7 @@ #: scaddins/inc/analysis.hrc:89 msgctxt "ANALYSIS_Iseven" msgid "The number" -msgstr "Número" +msgstr "El número" #. itBzA #: scaddins/inc/analysis.hrc:94 @@ -274,7 +274,7 @@ #: scaddins/inc/analysis.hrc:96 msgctxt "ANALYSIS_Isodd" msgid "The number" -msgstr "Número" +msgstr "El número" #. d3oiC #: scaddins/inc/analysis.hrc:101 @@ -1068,7 +1068,7 @@ #: scaddins/inc/analysis.hrc:343 msgctxt "ANALYSIS_Factdouble" msgid "The number" -msgstr "Número" +msgstr "El número" #. 5GCGm #: scaddins/inc/analysis.hrc:348 @@ -1608,7 +1608,7 @@ #: scaddins/inc/analysis.hrc:544 msgctxt "ANALYSIS_Convert" msgid "The number" -msgstr "Número" +msgstr "El número" #. 3C7JC #: scaddins/inc/analysis.hrc:545 @@ -2082,7 +2082,7 @@ #: scaddins/inc/analysis.hrc:647 msgctxt "ANALYSIS_Disc" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. rUAFp #: scaddins/inc/analysis.hrc:648 @@ -2100,7 +2100,7 @@ #: scaddins/inc/analysis.hrc:650 msgctxt "ANALYSIS_Disc" msgid "The basis" -msgstr "Base" +msgstr "La base" #. qPWFW #: scaddins/inc/analysis.hrc:655 @@ -2178,7 +2178,7 @@ #: scaddins/inc/analysis.hrc:667 msgctxt "ANALYSIS_Duration" msgid "The basis" -msgstr "Base" +msgstr "La base" #. bmGm3 #: scaddins/inc/analysis.hrc:672 @@ -2394,7 +2394,7 @@ #: scaddins/inc/analysis.hrc:719 msgctxt "ANALYSIS_Price" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. BhmGj #: scaddins/inc/analysis.hrc:720 @@ -2424,7 +2424,7 @@ #: scaddins/inc/analysis.hrc:724 msgctxt "ANALYSIS_Price" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. Dsfq5 #: scaddins/inc/analysis.hrc:725 @@ -2454,7 +2454,7 @@ #: scaddins/inc/analysis.hrc:729 msgctxt "ANALYSIS_Price" msgid "The basis" -msgstr "Base" +msgstr "La base" #. 9r4fb #: scaddins/inc/analysis.hrc:734 @@ -2472,7 +2472,7 @@ #: scaddins/inc/analysis.hrc:736 msgctxt "ANALYSIS_Pricedisc" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. mxC2p #: scaddins/inc/analysis.hrc:737 @@ -2484,7 +2484,7 @@ #: scaddins/inc/analysis.hrc:738 msgctxt "ANALYSIS_Pricedisc" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. FEqEB #: scaddins/inc/analysis.hrc:739 @@ -2502,7 +2502,7 @@ #: scaddins/inc/analysis.hrc:741 msgctxt "ANALYSIS_Pricedisc" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. AeFr3 #: scaddins/inc/analysis.hrc:742 @@ -2520,7 +2520,7 @@ #: scaddins/inc/analysis.hrc:744 msgctxt "ANALYSIS_Pricedisc" msgid "The basis" -msgstr "Base" +msgstr "La base" #. pChTS #: scaddins/inc/analysis.hrc:749 @@ -2538,7 +2538,7 @@ #: scaddins/inc/analysis.hrc:751 msgctxt "ANALYSIS_Pricemat" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. Uta4a #: scaddins/inc/analysis.hrc:752 @@ -2550,7 +2550,7 @@ #: scaddins/inc/analysis.hrc:753 msgctxt "ANALYSIS_Pricemat" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. 6Wdjy #: scaddins/inc/analysis.hrc:754 @@ -2598,7 +2598,7 @@ #: scaddins/inc/analysis.hrc:761 msgctxt "ANALYSIS_Pricemat" msgid "The basis" -msgstr "Base" +msgstr "La base" #. A64aD #: scaddins/inc/analysis.hrc:766 @@ -2616,7 +2616,7 @@ #: scaddins/inc/analysis.hrc:768 msgctxt "ANALYSIS_Mduration" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. sxNmM #: scaddins/inc/analysis.hrc:769 @@ -2628,7 +2628,7 @@ #: scaddins/inc/analysis.hrc:770 msgctxt "ANALYSIS_Mduration" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. myoEr #: scaddins/inc/analysis.hrc:771 @@ -2676,7 +2676,7 @@ #: scaddins/inc/analysis.hrc:778 msgctxt "ANALYSIS_Mduration" msgid "The basis" -msgstr "Base" +msgstr "La base" #. i2GCb #: scaddins/inc/analysis.hrc:783 @@ -2718,7 +2718,7 @@ #: scaddins/inc/analysis.hrc:793 msgctxt "ANALYSIS_Dollarfr" msgid "Decimal dollar" -msgstr "Número" +msgstr "Moneda decimal" #. EPxfe #: scaddins/inc/analysis.hrc:794 @@ -2748,19 +2748,19 @@ #: scaddins/inc/analysis.hrc:802 msgctxt "ANALYSIS_Dollarde" msgid "Fractional dollar" -msgstr "Número" +msgstr "Moneda fraccionaria" #. do6jV #: scaddins/inc/analysis.hrc:803 msgctxt "ANALYSIS_Dollarde" msgid "The number as a fraction" -msgstr "Número" +msgstr "El número como fracción" #. dcYmK #: scaddins/inc/analysis.hrc:804 msgctxt "ANALYSIS_Dollarde" msgid "Fraction" -msgstr "Separador" +msgstr "Fracción" #. tXcaR #: scaddins/inc/analysis.hrc:805 @@ -2784,7 +2784,7 @@ #: scaddins/inc/analysis.hrc:812 msgctxt "ANALYSIS_Yield" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. SiQRq #: scaddins/inc/analysis.hrc:813 @@ -2796,7 +2796,7 @@ #: scaddins/inc/analysis.hrc:814 msgctxt "ANALYSIS_Yield" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. hcZ2b #: scaddins/inc/analysis.hrc:815 @@ -2826,7 +2826,7 @@ #: scaddins/inc/analysis.hrc:819 msgctxt "ANALYSIS_Yield" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. MA5gf #: scaddins/inc/analysis.hrc:820 @@ -2856,7 +2856,7 @@ #: scaddins/inc/analysis.hrc:824 msgctxt "ANALYSIS_Yield" msgid "The basis" -msgstr "Base" +msgstr "La base" #. gh6Ef #: scaddins/inc/analysis.hrc:829 @@ -2874,7 +2874,7 @@ #: scaddins/inc/analysis.hrc:831 msgctxt "ANALYSIS_Yielddisc" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. LDWxU #: scaddins/inc/analysis.hrc:832 @@ -2886,7 +2886,7 @@ #: scaddins/inc/analysis.hrc:833 msgctxt "ANALYSIS_Yielddisc" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. AgQVB #: scaddins/inc/analysis.hrc:834 @@ -2904,7 +2904,7 @@ #: scaddins/inc/analysis.hrc:836 msgctxt "ANALYSIS_Yielddisc" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. FRLpH #: scaddins/inc/analysis.hrc:837 @@ -2922,7 +2922,7 @@ #: scaddins/inc/analysis.hrc:839 msgctxt "ANALYSIS_Yielddisc" msgid "The basis" -msgstr "Base" +msgstr "La base" #. HH8bA #: scaddins/inc/analysis.hrc:844 @@ -2940,7 +2940,7 @@ #: scaddins/inc/analysis.hrc:846 msgctxt "ANALYSIS_Yieldmat" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. CGPeM #: scaddins/inc/analysis.hrc:847 @@ -2952,7 +2952,7 @@ #: scaddins/inc/analysis.hrc:848 msgctxt "ANALYSIS_Yieldmat" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. 6FaMu #: scaddins/inc/analysis.hrc:849 @@ -3000,7 +3000,7 @@ #: scaddins/inc/analysis.hrc:856 msgctxt "ANALYSIS_Yieldmat" msgid "The basis" -msgstr "Base" +msgstr "La base" #. AYWCF #: scaddins/inc/analysis.hrc:861 @@ -3018,7 +3018,7 @@ #: scaddins/inc/analysis.hrc:863 msgctxt "ANALYSIS_Tbilleq" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. jQEBF #: scaddins/inc/analysis.hrc:864 @@ -3030,7 +3030,7 @@ #: scaddins/inc/analysis.hrc:865 msgctxt "ANALYSIS_Tbilleq" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. HfaRk #: scaddins/inc/analysis.hrc:866 @@ -3060,7 +3060,7 @@ #: scaddins/inc/analysis.hrc:874 msgctxt "ANALYSIS_Tbillprice" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. YZMPq #: scaddins/inc/analysis.hrc:875 @@ -3072,7 +3072,7 @@ #: scaddins/inc/analysis.hrc:876 msgctxt "ANALYSIS_Tbillprice" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. zEx9A #: scaddins/inc/analysis.hrc:877 @@ -3102,7 +3102,7 @@ #: scaddins/inc/analysis.hrc:885 msgctxt "ANALYSIS_Tbillyield" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. YGJqm #: scaddins/inc/analysis.hrc:886 @@ -3114,7 +3114,7 @@ #: scaddins/inc/analysis.hrc:887 msgctxt "ANALYSIS_Tbillyield" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. 5eSCG #: scaddins/inc/analysis.hrc:888 @@ -3144,7 +3144,7 @@ #: scaddins/inc/analysis.hrc:896 msgctxt "ANALYSIS_Oddfprice" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. FCAtj #: scaddins/inc/analysis.hrc:897 @@ -3156,7 +3156,7 @@ #: scaddins/inc/analysis.hrc:898 msgctxt "ANALYSIS_Oddfprice" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. uBtHy #: scaddins/inc/analysis.hrc:899 @@ -3210,7 +3210,7 @@ #: scaddins/inc/analysis.hrc:907 msgctxt "ANALYSIS_Oddfprice" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. ZzgKB #: scaddins/inc/analysis.hrc:908 @@ -3240,7 +3240,7 @@ #: scaddins/inc/analysis.hrc:912 msgctxt "ANALYSIS_Oddfprice" msgid "The basis" -msgstr "Base" +msgstr "La base" #. z5Eww #: scaddins/inc/analysis.hrc:917 @@ -3258,7 +3258,7 @@ #: scaddins/inc/analysis.hrc:919 msgctxt "ANALYSIS_Oddfyield" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. FtBAo #: scaddins/inc/analysis.hrc:920 @@ -3270,7 +3270,7 @@ #: scaddins/inc/analysis.hrc:921 msgctxt "ANALYSIS_Oddfyield" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. EAihU #: scaddins/inc/analysis.hrc:922 @@ -3324,7 +3324,7 @@ #: scaddins/inc/analysis.hrc:930 msgctxt "ANALYSIS_Oddfyield" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. hi8zV #: scaddins/inc/analysis.hrc:931 @@ -3372,7 +3372,7 @@ #: scaddins/inc/analysis.hrc:942 msgctxt "ANALYSIS_Oddlprice" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. rRQsG #: scaddins/inc/analysis.hrc:943 @@ -3384,7 +3384,7 @@ #: scaddins/inc/analysis.hrc:944 msgctxt "ANALYSIS_Oddlprice" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. JFwHq #: scaddins/inc/analysis.hrc:945 @@ -3426,7 +3426,7 @@ #: scaddins/inc/analysis.hrc:951 msgctxt "ANALYSIS_Oddlprice" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. hzzyo #: scaddins/inc/analysis.hrc:952 @@ -3474,7 +3474,7 @@ #: scaddins/inc/analysis.hrc:963 msgctxt "ANALYSIS_Oddlyield" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. rgPDC #: scaddins/inc/analysis.hrc:964 @@ -3486,7 +3486,7 @@ #: scaddins/inc/analysis.hrc:965 msgctxt "ANALYSIS_Oddlyield" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. ipMJJ #: scaddins/inc/analysis.hrc:966 @@ -3528,7 +3528,7 @@ #: scaddins/inc/analysis.hrc:972 msgctxt "ANALYSIS_Oddlyield" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. ZibYN #: scaddins/inc/analysis.hrc:973 @@ -3660,7 +3660,7 @@ #: scaddins/inc/analysis.hrc:1006 msgctxt "ANALYSIS_Intrate" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. rxPUy #: scaddins/inc/analysis.hrc:1007 @@ -3672,7 +3672,7 @@ #: scaddins/inc/analysis.hrc:1008 msgctxt "ANALYSIS_Intrate" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. KYJxC #: scaddins/inc/analysis.hrc:1009 @@ -3690,7 +3690,7 @@ #: scaddins/inc/analysis.hrc:1011 msgctxt "ANALYSIS_Intrate" msgid "Redemption" -msgstr "Devolución" +msgstr "Rescate" #. 7xDcc #: scaddins/inc/analysis.hrc:1012 @@ -3726,7 +3726,7 @@ #: scaddins/inc/analysis.hrc:1021 msgctxt "ANALYSIS_Coupncd" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. YwN3F #: scaddins/inc/analysis.hrc:1022 @@ -3738,7 +3738,7 @@ #: scaddins/inc/analysis.hrc:1023 msgctxt "ANALYSIS_Coupncd" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. 4kfKL #: scaddins/inc/analysis.hrc:1024 @@ -3762,7 +3762,7 @@ #: scaddins/inc/analysis.hrc:1027 msgctxt "ANALYSIS_Coupncd" msgid "The basis" -msgstr "Base" +msgstr "La base" #. xUc5u #: scaddins/inc/analysis.hrc:1032 @@ -3780,7 +3780,7 @@ #: scaddins/inc/analysis.hrc:1034 msgctxt "ANALYSIS_Coupdays" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. DFuYG #: scaddins/inc/analysis.hrc:1035 @@ -3792,7 +3792,7 @@ #: scaddins/inc/analysis.hrc:1036 msgctxt "ANALYSIS_Coupdays" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. k9BFq #: scaddins/inc/analysis.hrc:1037 @@ -3834,7 +3834,7 @@ #: scaddins/inc/analysis.hrc:1047 msgctxt "ANALYSIS_Coupdaysnc" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. oD5EE #: scaddins/inc/analysis.hrc:1048 @@ -3846,7 +3846,7 @@ #: scaddins/inc/analysis.hrc:1049 msgctxt "ANALYSIS_Coupdaysnc" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. QWSfa #: scaddins/inc/analysis.hrc:1050 @@ -3888,7 +3888,7 @@ #: scaddins/inc/analysis.hrc:1060 msgctxt "ANALYSIS_Coupdaybs" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. v7tF8 #: scaddins/inc/analysis.hrc:1061 @@ -3900,7 +3900,7 @@ #: scaddins/inc/analysis.hrc:1062 msgctxt "ANALYSIS_Coupdaybs" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. ZHGGZ #: scaddins/inc/analysis.hrc:1063 @@ -3924,7 +3924,7 @@ #: scaddins/inc/analysis.hrc:1066 msgctxt "ANALYSIS_Coupdaybs" msgid "The basis" -msgstr "Base" +msgstr "La base" #. aCBKW #: scaddins/inc/analysis.hrc:1071 @@ -3942,7 +3942,7 @@ #: scaddins/inc/analysis.hrc:1073 msgctxt "ANALYSIS_Couppcd" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. 5Yh9i #: scaddins/inc/analysis.hrc:1074 @@ -3954,7 +3954,7 @@ #: scaddins/inc/analysis.hrc:1075 msgctxt "ANALYSIS_Couppcd" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. bMH2E #: scaddins/inc/analysis.hrc:1076 @@ -3996,7 +3996,7 @@ #: scaddins/inc/analysis.hrc:1086 msgctxt "ANALYSIS_Coupnum" msgid "The settlement" -msgstr "Liquidación" +msgstr "La liquidación" #. W9xqG #: scaddins/inc/analysis.hrc:1087 @@ -4008,7 +4008,7 @@ #: scaddins/inc/analysis.hrc:1088 msgctxt "ANALYSIS_Coupnum" msgid "The maturity" -msgstr "Vencimiento" +msgstr "El vencimiento" #. t9cVU #: scaddins/inc/analysis.hrc:1089 @@ -4032,7 +4032,7 @@ #: scaddins/inc/analysis.hrc:1092 msgctxt "ANALYSIS_Coupnum" msgid "The basis" -msgstr "Base" +msgstr "La base" #. bJemX #: scaddins/inc/analysis.hrc:1097 @@ -4068,7 +4068,7 @@ #: scaddins/inc/datefunc.hrc:27 msgctxt "DATE_FUNCDESC_DiffWeeks" msgid "Calculates the number of weeks in a specific period" -msgstr "Calcula el número de semanas en un periodo determinado." +msgstr "Calcula el número de semanas en un periodo determinado" #. GzBRZ #: scaddins/inc/datefunc.hrc:28 @@ -4290,7 +4290,7 @@ #: scaddins/inc/pricing.hrc:29 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Spot" -msgstr "" +msgstr "Precio corriente" #. griJk #: scaddins/inc/pricing.hrc:30 @@ -4326,7 +4326,7 @@ #: scaddins/inc/pricing.hrc:35 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Foreign rate" -msgstr "Tasa externa" +msgstr "Tasa extranjera" #. PKubC #: scaddins/inc/pricing.hrc:36 @@ -4338,7 +4338,7 @@ #: scaddins/inc/pricing.hrc:37 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Maturity" -msgstr "" +msgstr "Vencimiento" #. EDrkw #: scaddins/inc/pricing.hrc:38 @@ -4386,7 +4386,7 @@ #: scaddins/inc/pricing.hrc:45 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Rebate" -msgstr "" +msgstr "Reembolso" #. vUB3C #: scaddins/inc/pricing.hrc:46 @@ -4452,7 +4452,7 @@ #: scaddins/inc/pricing.hrc:60 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Spot" -msgstr "" +msgstr "Precio corriente" #. k45Ku #: scaddins/inc/pricing.hrc:61 @@ -4488,7 +4488,7 @@ #: scaddins/inc/pricing.hrc:66 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Foreign rate" -msgstr "Tasa externa" +msgstr "Tasa extranjera" #. nDCzr #: scaddins/inc/pricing.hrc:67 @@ -4500,7 +4500,7 @@ #: scaddins/inc/pricing.hrc:68 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Maturity" -msgstr "" +msgstr "Vencimiento" #. rfjRD #: scaddins/inc/pricing.hrc:69 @@ -4536,13 +4536,13 @@ #: scaddins/inc/pricing.hrc:74 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Foreign/Domestic" -msgstr "" +msgstr "Extranjera/nacional" #. 7R46A #: scaddins/inc/pricing.hrc:75 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "String to define if the option pays one unit of (d)omestic currency (cash or nothing) or (f)oreign currency (asset or nothing)" -msgstr "Cadena para definir si la opció paga una unidad de moneda (d)oméstica (en efectivo o nada) o moneda extranjera (f) (activo o nada)" +msgstr "Cadena para definir si la opción paga una unidad de moneda nacional (d) (en efectivo o nada) o moneda extranjera (f) (activo o nada)" #. Dpp2g #: scaddins/inc/pricing.hrc:76 @@ -4590,7 +4590,7 @@ #: scaddins/inc/pricing.hrc:87 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Spot" -msgstr "" +msgstr "Precio corriente" #. hBkLM #: scaddins/inc/pricing.hrc:88 @@ -4626,7 +4626,7 @@ #: scaddins/inc/pricing.hrc:93 msgctxt "PRICING_FUNCDESC_OptProbHit" msgid "Maturity" -msgstr "" +msgstr "Vencimiento" #. uzAtG #: scaddins/inc/pricing.hrc:94 @@ -4668,7 +4668,7 @@ #: scaddins/inc/pricing.hrc:104 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Spot" -msgstr "" +msgstr "Precio corriente" #. WsfBx #: scaddins/inc/pricing.hrc:105 @@ -4704,7 +4704,7 @@ #: scaddins/inc/pricing.hrc:110 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Maturity" -msgstr "" +msgstr "Vencimiento" #. EbYRY #: scaddins/inc/pricing.hrc:111 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/sd/messages.po libreoffice-7.1.3~rc2/translations/source/es/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-28 17:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563809077.000000\n" #. WDjkB @@ -2573,7 +2573,7 @@ #: sd/inc/strings.hrc:409 msgctxt "STR_CUSTOMANIMATION_REPEAT_UNTIL_NEXT_CLICK" msgid "Until next click" -msgstr "Hasta el siguiente clic" +msgstr "Hasta la próxima pulsación" #. oEQ7B #: sd/inc/strings.hrc:410 @@ -9537,7 +9537,7 @@ #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:273 msgctxt "slidetransitionspanel|extended_tip|rb_mouse_click" msgid "Select to advance to the next slide on a mouse click." -msgstr "Seleccione para pasar a la siguiente diapositiva con un clic del ratón." +msgstr "Seleccione para pasar a la siguiente diapositiva con una pulsación del ratón." #. jVLyu #: sd/uiconfig/simpress/ui/slidetransitionspanel.ui:285 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/svx/messages.po libreoffice-7.1.3~rc2/translations/source/es/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-22 17:36+0000\n" +"PO-Revision-Date: 2021-03-25 16:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -8475,7 +8475,7 @@ #: include/svx/strings.hrc:1520 msgctxt "RID_SUBSETMAP" msgid "Phonetic Extensions" -msgstr "Extensiones fonéticas" +msgstr "Ampliaciones fonéticas" #. C6LwC #: include/svx/strings.hrc:1521 @@ -8799,7 +8799,7 @@ #: include/svx/strings.hrc:1574 msgctxt "RID_SUBSETMAP" msgid "Phonetic Extensions Supplement" -msgstr "Extensiones fonéticas, suplemento" +msgstr "Ampliaciones fonéticas, suplemento" #. XboFE #: include/svx/strings.hrc:1575 @@ -9003,7 +9003,7 @@ #: include/svx/strings.hrc:1608 msgctxt "RID_SUBSETMAP" msgid "Vedic Extensions" -msgstr "Extensiones védicas" +msgstr "Ampliaciones védicas" #. bVNYf #: include/svx/strings.hrc:1609 @@ -9057,7 +9057,7 @@ #: include/svx/strings.hrc:1617 msgctxt "RID_SUBSETMAP" msgid "Meetei Mayek" -msgstr "Meetei mayek" +msgstr "Manipurí" #. ryvor #: include/svx/strings.hrc:1618 @@ -9219,7 +9219,7 @@ #: include/svx/strings.hrc:1644 msgctxt "RID_SUBSETMAP" msgid "Meetei Mayek Extensions" -msgstr "Meetei mayek, ampliación" +msgstr "Ampliaciones del manipurí" #. mFAeA #: include/svx/strings.hrc:1645 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/sw/messages.po libreoffice-7.1.3~rc2/translations/source/es/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-13 07:26+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -675,7 +675,7 @@ #: sw/inc/inspectorproperties.hrc:43 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border Distance" -msgstr "" +msgstr "Distancia al borde inferior" #. rLqgx #: sw/inc/inspectorproperties.hrc:44 @@ -2901,7 +2901,7 @@ #: sw/inc/strings.hrc:145 msgctxt "STR_POOLCOLL_SEND_ADDRESS" msgid "Sender" -msgstr "" +msgstr "Remitente" #. AChE4 #: sw/inc/strings.hrc:146 @@ -4813,7 +4813,7 @@ #: sw/inc/strings.hrc:483 msgctxt "STR_UNDO_SETRUBYATTR" msgid "Ruby Setting" -msgstr "Parámetro de Ruby" +msgstr "Atributo de texto ágata" #. J4AUR #: sw/inc/strings.hrc:484 @@ -8199,7 +8199,7 @@ #: sw/inc/strings.hrc:1115 msgctxt "STR_MAX_FTN_HEIGHT" msgid "Max. footnote area:" -msgstr "Área máxima de nota al pie:" +msgstr "Área máx. de notas al pie:" #. BWqF3 #: sw/inc/strings.hrc:1116 @@ -9825,7 +9825,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:128 msgctxt "addressblockdialog|addressesft" msgid "Address _elements" -msgstr "_Elementos de la dirección" +msgstr "_Elementos de dirección" #. BFZo7 #: sw/uiconfig/swriter/ui/addressblockdialog.ui:173 @@ -23416,7 +23416,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:93 msgctxt "outlinepositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "Seleccione los niveles que quiere modificar." +msgstr "Seleccione el nivel o niveles que desee modificar." #. aBYaM #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:106 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/uui/messages.po libreoffice-7.1.3~rc2/translations/source/es/uui/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/uui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/uui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,29 +4,29 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2019-01-22 05:32+0000\n" +"PO-Revision-Date: 2021-04-26 18:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548135164.000000\n" #. DLY8p #: uui/inc/ids.hrc:33 msgctxt "RID_UUI_ERRHDL" msgid "The operation executed on $(ARG1) was aborted." -msgstr "Se ha interrumpido la operación ejecutada en $(ARG1)." +msgstr "Se interrumpió la operación ejecutada en $(ARG1)." #. Q448y #: uui/inc/ids.hrc:35 msgctxt "RID_UUI_ERRHDL" msgid "Access to $(ARG1) was denied." -msgstr "Se ha denegado el acceso a $(ARG1)." +msgstr "Se denegó el acceso a $(ARG1)." #. w6rpp #: uui/inc/ids.hrc:37 @@ -124,7 +124,7 @@ #: uui/inc/ids.hrc:61 msgctxt "RID_UUI_ERRHDL" msgid "Action impossible: $(ARG1) and $(ARG2) are different devices (drives)." -msgstr "Acción imposible: $(ARG1) y $(ARG2) son dispositivos diferentes (unidades)." +msgstr "Acción imposible: $(ARG1) y $(ARG2) son dispositivos (unidades) diferentes." #. ic2pB #: uui/inc/ids.hrc:63 diff -Nru libreoffice-7.1.2~rc2/translations/source/es/wizards/messages.po libreoffice-7.1.3~rc2/translations/source/es/wizards/messages.po --- libreoffice-7.1.2~rc2/translations/source/es/wizards/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/es/wizards/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-09-02 17:35+0000\n" +"PO-Revision-Date: 2021-04-01 17:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559358133.000000\n" #. gbiMx @@ -272,7 +272,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:75 msgctxt "RID_LETTERWIZARDDIALOG_START_20" msgid "~New sender address:" -msgstr "~Nueva dirección del remitente:" +msgstr "Dirección ~nueva de remitente:" #. uDppM #: wizards/com/sun/star/wizards/common/strings.hrc:76 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/basctl/messages.po libreoffice-7.1.3~rc2/translations/source/et/basctl/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/basctl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/basctl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-26 09:13+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566121562.000000\n" #. fniWp @@ -867,7 +867,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:204 msgctxt "dialogpage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "Võimaldab määrata valitud teegile parooli või olemasolevat muuta." #. sHS7f #: basctl/uiconfig/basicide/ui/dialogpage.ui:216 @@ -891,7 +891,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:261 msgctxt "dialogpage|extended_tip|DialogPage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "Loetleb olemasolevad moodulid ja dialoogid." #. EGyCn #: basctl/uiconfig/basicide/ui/dockingwatch.ui:113 @@ -1023,7 +1023,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:206 msgctxt "libpage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "Võimaldab määrata valitud teegile parooli või olemasolevat muuta." #. bzX6x #: basctl/uiconfig/basicide/ui/libpage.ui:218 @@ -1215,7 +1215,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:209 msgctxt "modulepage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "Võimaldab määrata valitud teegile parooli või olemasolevat muuta." #. EgCDE #: basctl/uiconfig/basicide/ui/modulepage.ui:221 @@ -1239,7 +1239,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:266 msgctxt "modulepage|extended_tip|ModulePage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "Loetleb olemasolevad moodulid ja dialoogid." #. rCNTN #: basctl/uiconfig/basicide/ui/newlibdialog.ui:32 @@ -1257,7 +1257,7 @@ #: basctl/uiconfig/basicide/ui/newlibdialog.ui:133 msgctxt "newlibdialog|extended_tip|NewLibDialog" msgid "Enter a name for the new library or module." -msgstr "" +msgstr "Sisesta uue teegi või mooduli nimi." #. uVgXz #: basctl/uiconfig/basicide/ui/organizedialog.ui:8 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/et/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566121579.000000\n" #. NCRDD @@ -1494,19 +1494,19 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:561 msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "Andmepunktid ja neist eemale liigutatud andmesildid ühendatakse joonega" #. MJdmK #: chart2/uiconfig/ui/dlg_DataLabel.ui:570 msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "Ühendab andmesildid ja andmepunktid vajaduse korral joonega." #. UKVF9 #: chart2/uiconfig/ui/dlg_DataLabel.ui:588 msgctxt "dlg_DataLabel|label3" msgid "Leader Lines" -msgstr "" +msgstr "Pilgujuhid" #. 6bBph #: chart2/uiconfig/ui/dlg_DataLabel.ui:604 @@ -3054,7 +3054,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:312 msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE" msgid "_Light Source" -msgstr "" +msgstr "Valgusallikas" #. WssJA #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:358 @@ -3078,7 +3078,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:395 msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT" msgid "_Ambient Light" -msgstr "" +msgstr "Taustavalgus" #. snUGf #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:439 @@ -3792,19 +3792,19 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:493 msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "Andmepunktid ja neist eemale liigutatud andmesildid ühendatakse joonega" #. BXobT #: chart2/uiconfig/ui/tp_DataLabel.ui:502 msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "Ühendab andmesildid ja andmepunktid vajaduse korral joonega." #. MBFBB #: chart2/uiconfig/ui/tp_DataLabel.ui:520 msgctxt "tp_DataLabel|label3" msgid "Leader Lines" -msgstr "" +msgstr "Pilgujuhid" #. iDheE #: chart2/uiconfig/ui/tp_DataLabel.ui:536 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/cui/messages.po libreoffice-7.1.3~rc2/translations/source/et/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-26 18:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566121498.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME toetab makrode puhul nelja turvataset (madalast väga kõrgeni) ning võimaldab määrata ka alati usaldatavaid allikaid." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 osaleb sageli organisatsioonina Google Summer of Code’il (GSoC). Vaata lähemalt:" - -#. SNTbc -#: 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 "Märkuse lisamiseks saab kasutada klahvikombinatsiooni %MOD1+%MOD2+C. Tekstidokumentides saab märkuse lisada nii kursori asukohta kui ka parajasti valitud tekstile." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Tekstidokumendis lõikude üles- või allapoole liigutamiseks saab kasutada ka klahvikombinatsioone %MOD1+%MOD2+nool üles/alla." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Eelmääratud malli või praeguse dokumendi peamisi fonte saab muuta, valides Tööriistad ▸ Sätted ▸ %PRODUCTNAME Writer ▸ Põhifondid." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Kui soovid tekstist leida kõik sõnad, mis on pikemad kui nt 10 tähte, vali Redigeerimine ▸ Otsi ja asenda ▸ Muud sätted, märgi ruut „Regulaaravaldised” ning sisesta otsitava väljale „[a-z]{10,}” (ilma jutumärkideta)." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Kui soovid praegusesse arvutustabelisse lisada uue lehena näiteks CSV-faili, vali Leht ▸ Lisa leht failist." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Writeris paksu, kaldkirjas ja/või allajoonitud teksti sisestamise lõpetamiseks ja tavavormindusega jätkamiseks piisab klahvkombinatsioonist %MOD1+Shift+X (mis eemaldab märkide otsese vorminduse)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Lõikepuhvri sisu saab asetada ilma vorminduseta, vajutades %MOD1+%MOD2+Shift+V." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Allmärkuste kuvamist saab kohandada, valides Tööriistad ▸ All- ja lõpumärkused." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Valides Slaidiseanss ▸ Kohandatud slaidiseanss, saab slaidiesitlust eri auditooriumide jaoks kohandada, muutes slaidide järjestust või jättes osa neist välja." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Kui soovid muuta mõne tekstiosa õigekirjakontrolli keelt (või selle hoopis välja lülitada), klõpsa olekuriba keelealas või veel parem, rakenda asjakohasele tekstiosale eraldi stiil." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writeril saab lasta kahe järjestikuse paaris- (või paaritu) lehekülje vahele automaatselt tühja lehekülje sisestada. Selleks märgi printimisdialoogis %PRODUCTNAME Writeri kaardil säte „Prinditakse automaatselt lisatud tühjad leheküljed”." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Kui kõiki veerge pole tarvis printida, saab ebavajalikud peita või rühmitada." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Automaatesitusega slaidiseansi redigeerimiseks saab pärast selle käivitumist teha paremklõpsu ja valida kontekstimenüüst Redigeeri." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Objektide (kujundite, piltide, valemite) ülitäpseks liigutamiseks saab kasutada kombinatsiooni %MOD2+nooleklahvid – valitud objekti liigutatakse noolele vastavas suunas ühe piksli võrra." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Kui kohalik abimaterjal on paigaldatud, vajuta selle avamiseks F1. Muul juhul on abimaterjal kättesaadav võrgus:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "%PRODUCTNAME Calcis parajasti valitud lahtrite arvu kuvamiseks tuleb teha paremklõps olekuriba paremal pool (kus vaikimisi näidatakse keskmist ja summat) ning märkida ruut „Valitud”." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Kui soovid Writeris ainult osa leheküljest mitme veeruna vormindada, vali Lisamine ▸ Sektsioon ▸ kaart Veerud ning määra soovitud sätted, seejärel sisesta tekst loodud sektsiooni. Juba olemasolevate tekstilõikude veergudena vormindamiseks võib ka märgistada vastavad lõigud ning valida Vormindus ▸ Veerud." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "%PRODUCTNAME Calcil saab lasta koostada valimeid, kirjeldavat statistikat, dispersioonianalüüsi, korrelatsiooni jpm, valides Andmed ▸ Statistika." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Andmeid saab ühelt lehelt teisele kopeerida ka lõikepuhvrit kasutamata. Selleks märgista kopeeritav vahemik, klõpsa %MOD1-klahvi all hoides sihtlehe kaardisakil ja siis vali Leht ▸ Lahtrite täitmine ▸ Täida lehed." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "%PRODUCTNAME’i välimust saab kohandada – selleks vali Tööriistad ▸ Sätted ▸ %PRODUCTNAME ▸ Vaade ja määra soovitud valikud jaotises Kasutajaliides." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "%PRODUCTNAME Impressis saab pildiseeriast slaidiseansi luua, valides Lisamine ▸ Multimeedium ▸ Fotoalbum." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Arvutustulemuste asemel valemite kuvamiseks vali Vaade ▸ Valemite kuvamine (või Tööriistad ▸ Sätted ▸ %PRODUCTNAME Calc ▸ Vaade ▸ Kuvamine ▸ Valemid)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME’it arendab sõbralik kogukond, mis koosneb sadadest kaastöötajatest üle maailma. Liitu meiega – programmeerimine pole ainus valdkond, milles kaasa saab aidata!" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Püstjoonlaua ja kerimisriba asukohad saab ära vahetada. Selleks tuleb esmalt valida Tööriistad ▸ Sätted ▸ Keelesätted ▸ Keeled, lubada Ida-Aasia keelte tugi ja klõpsata Sobib ning seejärel valida Tööriistad ▸ Sätted ▸ %PRODUCTNAME Writer ▸ Vaade ja märkida sätte „Püstjoonlaud” all ruut „Paremale joondatud”." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Kui soovid, et peatükkide pealkirjad algaksid alati uuelt lehelt, muuda lõigustiili Pealkiri 1 nii, et tekstivoo kaardil piiride jaotises oleks märgitud ruut „Lisatakse” ning valitud „Leheküljepiir” ja asukoht „Lõigu ette”." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Sisemiselt käsitleb Calc kuupäeva- ja kellaajaväärtusi kui teatud arvu päevi alates valitud alguspäevast. Selle arvu täisosa tähistab kuupäeva ja murdosa kellaaega (s.t läbitud osa päevast), seega kell 12 päeval = 0,5." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Delete kustutab teksti alates kursori asukohast kuni sama lause lõpuni." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Valemites saab kasutada ka veeru- ja reapäiseid. Näiteks kui lehel on veerud „Aeg” ja „KM”, saab kilomeetri läbimiseks kuluvate minutite arvutamiseks kasutada valemit =Aeg/KM." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Kui Calcis kopeeritud lahtreid tähistavad „marssivad sipelgad” häirivad, vajuta Esc-klahvi – kopeeritud sisu jääb ikkagi kättesaadavaks." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Soovid saada %PRODUCTNAME’i saadikuks? Võimalik on omandada sertifikaat nii arendaja, süsteemihalduri kui ka koolitajana." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Calci arvutustabelis läbisegi püst- ja rõhtpaigutuse kasutamiseks saab lehtedele määrata erinevad leheküljestiilid." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Tööriistaribal oleva erimärgiikooni (Ω) abil saab kiiresti sisestada erimärkide dialoogis lemmikuks märgitud või seal viimati kasutatud märke." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Stiilidevaheliste seoste nägemiseks vali stiilide külgribal hierarhiline vaade." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Dokumendis leiduvatele tabelitele järjekindla vorminduse määramiseks on hea kasutada stiile. Mõne eelloodud stiili määramiseks vajuta F11 (ja lülita tabelistiilide vaatele) või vali Tabel ▸ Automaatvorminduse stiilid." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Kui soovid, et ei peaks hüperlinkide avamiseks %MOD1-klahvi all hoidma, vali Tööriistad ▸ Sätted ▸ %PRODUCTNAME ▸ Turvalisus ▸ Sätted ja tühjenda märkeruut „Hüperlinkide avamiseks on vajalik %MOD1-klõps”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Kui soovid näha valemi üksikute elementide arvutamist, vali vastavad elemendid ja vajuta F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Lahtreid saab kaitsta, valides Vormindus ▸ Lahtrid ▸ Lahtri kaitse. Tõkestamaks lehtede lisamist, kustutamist, ümbernimetamist, teisaldamist või kopeerimist, vali Tööriistad ▸ Kaitse lehte." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Mööda kõverjoont kirjutamiseks tuleb pärast joone lisamist teha sellel topeltklõps, sisestada soovitud tekst ning valida Vormindus ▸ Tekstikast/kujund ▸ Ilukiri." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Kui soovid arvutustabelis kuvada ainult kõrgeimad väärtused, vali Andmed ▸ Automaatfilter, klõpsa soovitud veeru päises oleval noolel ja vali „10 esimest”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Sisukorrast leheküljenumbrite eemaldamiseks vali Lisamine ▸ Registrid ja sisukorrad ▸ Sisukord, register või bibliograafia (või tee paremklõps olemasoleval sisukorral ja vali Muuda registrit), seejärel mine kirjete kaardile ning kustuta struktuuri realt leheküljenumber (#)." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Writeris saab Navigaatori abil hõlpsasti nii dokumendis liikuda kui ka selle liigendust muuta, liigutades pealkirju koos nende alla kuuluva tekstiga dokumendi struktuuris üles- või allapoole." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Kiire viis Writeri dokumenti matemaatilise valemi sisestamiseks on kirjutada valem (kasutades sama süntaksit nagu Mathis), märgistada see ning siis lasta tekst valemiks teisendada, valides Lisamine ▸ Objekt ▸ Valem." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "%PRODUCTNAME’ile on väga lihtne lisada täiendavate keelte õigekirjakontrolli – tuleb vaid paigaldada vastav laiendus." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME’ist on saadaval ka „kaasaskantav” versioon, mille saab paigaldada näiteks mälupulgale või ka arvutisse, kus sul pole administraatoriõigusi." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writeris saab allmärkusi nummerdada nii lehekülje, peatüki kui ka kogu dokumendi kaupa. Selleks tuleb valida Tööriistad ▸ All- ja lõpumärkused ▸ kaart Allmärkused ▸ Loendamine." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Kui Writeri dokumendid ei avane kohast, kus redigeerimine viimasel salvestamisel pooleli jäi, vali Tööriistad ▸ %PRODUCTNAME ▸ Isikuandmed ja vaata, et täidetud oleks ees- või perekonnanime väli." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Viidete haldamiseks saab kasutada ka kolmandate osapoolte laiendusi." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Kui soovid sama väärtuse sisestada mitmel lehel samasse kohta, vali enne sisestamist soovitud lehed, hoides all %MOD1-klahvi ja klõpsates lehtede kaardisakke." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Writeri dokumendis teatud lõigu peitmiseks märgista see, vali Lisamine ▸ Sektsioon ning märgi avanevas dialoogis ruut „Peidetud”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Hiire keskmise nupu funktsiooni saab määrata, valides Tööriistad ▸ Sätted ▸ %PRODUCTNAME ▸ Vaade ▸ Hiire keskmine nupp." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Kui soovid printida kaks püstpaigutuses lehekülge ühele rõhtpaigutuses paberilehele (muutes A4 seega kaheks A5-ks), siis vali Fail ▸ Prindi ning määra sätte „Lehekülgi lehel” väärtuseks 2." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Dokumendi järjehoidjatele kiiresti ligipääsemiseks tee paremklõps olekuriba leheküljenumbri alal (dokumendiakna all vasakus nurgas)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Dokumendi taustal oleva objekti valimiseks saab kasutada joonistusribal olevat valimistööriista – objekti valimiseks tuleb hiirega selle ümber lohistada." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Sageli kasutatavad laused saab määratleda automaattekstina. Neid saab igas Writeri dokumendis sisestada nime või määratud kiirklahvi järgi, samuti tööriistaribalt." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Kogu slaidiseansile katkestusteta helitausta lisamiseks omista heli esimese slaidi siirdele, klõpsamata seejuures nuppu „Rakenda siire kõigile slaididele”." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 arvuta lihtsalt vasakult paremale, vaid austab tavapärast tehete järjekorda: 1) sulgudes tehe, 2) astendamine, 3) korrutamine-jagamine, 4) liitmine-lahutamine." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "%PRODUCTNAME’i käsiraamatud (inglise, saksa jt keeltes) ja muu abimaterjal on saadaval võrgus:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Kui soovid kogu dokumendist korraga eemaldada nurksulud teksti ümbert, vali Redigeerimine ▸ Otsi ja asenda ▸ Muud sätted, märgi ruut „Regulaaravaldised” ning sisesta otsitava väljale „[<>]” (ilma jutumärkideta), asenduse väli aga jäta tühjaks." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Kui pead tekstidokumenti (nt aruannet) slaidiseansina esitlema, saad valida Fail ▸ Saatmine ▸ Pealkirjad esitlusse. Nii luuakse esitluse struktuur automaatselt." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Kui soovid arvutustabelis hüperlinkide kuvamist hallata, siis saab selleks kasutada funktsiooni HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Calcis saab lubada igale lehele eraldiseisva suurendusteguri. Selleks tuleb valida Tööriistad ▸ Sätted ▸ %PRODUCTNAME Calc ▸ Vaade ja jaotises Suurendus tühjendada märkeruut „Lehtede sünkroonimine”." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Calcis lehe sakile värvi määramiseks tee sellel paremklõps või vali menüüst Leht ▸ Lehe saki värv." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Valemis viidatud lahtreid saab jälitada, valides Tööriistad ▸ Analüüs. Samuti on eelmääratud kiirklahvid nii eelsõltuvuste (Shift+F9) kui ka järelsõltuvuste jaoks (Shift+F5). Iga klahvivajutus viib ahelas järgmise lülini." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Valemite ühe sammuna sisestamiseks ja nummerdamiseks kirjuta fn ja vajuta F3. Seepeale sisestatakse automaattekst, nii et valem ja nummerdus on tabelisse joondatud." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Illustratsioonide registri saab luua ka objektinimede, mitte üksnes pealdiste põhjal." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Impressi esitluse eemalt juhtimiseks saad kasutada oma Android-telefoni või iPhone’i." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Kui näiteks mõnes valemis on vaja teada, mitu päeva on praeguses kuus, saab selleks kasutada funktsiooni =DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Kui arvude asemel kuvatakse arvutustabelis ###, siis tähendab see, et veerg on kõigi numbrikohtade mahutamiseks liiga kitsas." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Väga paljude valemilahtrite samaaegseks arvutamiseks saab sisse lülitada OpenCL-i toe. Selleks vali Tööriistad ▸ Sätted ▸ LibreOffice ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Draw’s ja Impressis saab joonistusribal oleva konnektoritööriista abil luua vooskeeme, mida seejärel saab ka objektina Writerisse kopeerida." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Annetused aitavad meie ülemaailmset kogukonda toetada." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Mingile kuupäevale n kuu lisamiseks saab kasutada valemit =EDATE(kuupäev; lisatavad kuud)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Katkestusteta, andmeid sisaldava ning tühja rea ja veeruga piirneva lahtrivahemiku valimiseks vajuta &MOD1+* (numbriklahvistikul)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Kui kuupäevade tuvastamise muster ei vasta sinu vajadustele, saad valida Tööriistad ▸ Sätted ▸ Keelesätted ▸ Keeled ning kohandada mustrit väljal „Kuupäevade tuvastusmustrid”." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "CSV-failis saab valemid säilitada, märkides salvestamisdialoogis ruudu „Filtri sätete redigeerimine” ja järgmises dialoogis ruudu „Arvutatud väärtuste asemel salvestatakse lahtrivalemid”." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "%PRODUCTNAME Impressi esitluste ajal on Ettekandjakuva väärt abiline." #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Calcis teatud märkuste korraga kustutamiseks märgista lahtrid või vahemik, millest märkused kustutada, ning vali Leht ▸ Lahtrite märkused ▸ Kustuta märkus." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Dokumente saab tööriistaribal oleva PDF-ikooni abil ühe klõpsuga PDF-iks eksportida." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Suure lahtrivahemiku saab valida ka ilma kerimiseta – selleks tuleb nimeväljale sisestada vahemikuviide (nt A1:A1000) ja seejärel Enterit vajutada." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Lubatud käsureaparameetrite teadasaamiseks on võimalik käivitada soffice võtmega --help, -h või -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Lehe või prindivahemiku mahutamiseks kindlale arvule lehekülgedele vali Vormindus ▸ Lehekülg ▸ kaart Leht ▸ Suurendusrežiim." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Numberloendisse nummerdamata elemendi lisamiseks vali nummerduse ja täppide tööriistaribalt „Lisa nummerdamata kirje”." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Tabelilahtrites teksti pööramiseks märgista soovitud lahtrid ja vali Tabel ▸ Omadused ▸ Tekstivoog ▸ Teksti paigutus." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "%PRODUCTNAME Draw’s joonlaudade 0-punktide muutmiseks tuleb lohistada joonlaudade ristumiskohta ülalt vasakult nurgast tööala suunas." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Calcis terve veeru (või rea) teise kohta lohistamiseks klõpsa veeru (rea) päist, siis liiguta kursor mõnele selle veeru (rea) lahtrile ja %MOD2-klahvi all hoides lohista veerg (rida) soovitud asukohta." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Tähestikulise registri kirjed saab märkida automaatselt, kasutades registrifaili (s.t registrisse kaasatavate sõnade nimekirja)." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Objektide täpseks paigutamiseks Impressis/Draw’s vali Vormindus ▸ Objekti joondus (või kasuta kontekstimenüüd). See toimib nii üksiku valitud objekti kui ka rühma puhul." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Writeri dokumendis tabeldusklahviga vahede lisamise asemel võib olla mõistlikum kasutada ääristeta tabelit." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Kui valid Tööriistad ▸ Kohanda ▸ Klaviatuur, siis ei pea soovitud kiirklahvi leidmiseks loendit kerima – piisab, kui vajutada soovitud klahvikombinatsiooni." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME võib objekti lisamisel automaatselt ka nummerdatud pealdise lisada. Neid saab määrata, valides Tööriistad ▸ Sätted ▸ %PRODUCTNAME Writer ▸ Automaatpealdis." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "%PRODUCTNAME’is saab kirjakoostel kasutada ka Gmaili kontot. Selle andmete sisestamiseks vali Tööriistad ▸ Sätted ▸ %PRODUCTNAME Writer ▸ E-post kirjakoostel (vt https://support.google.com/mail/answer/75726?hl=et)." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Lehe kerimisel veerupäiste nähtaval hoidmiseks vali Vaade ▸ Lahtrite külmutamine ▸ Külmuta esimene rida." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Kui soovid hakata töötama BASICu makrodega, võid näidiste uurimiseks valida Tööriistad ▸ Makrod ▸ Redigeeri makrosid." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Writeris piisab pealkirjastiilide rakendamiseks klahvikombinatsioonidest %MOD1+1 (Pealkiri 1), %MOD1+2 (Pealkiri 2) jne." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Mahukates dokumentides vajaliku peatüki leidmiseks saab kasutada Navigaatorit (F5)." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Otsimise ja asendamise dialoogis saab hõlpsasti erimärke sisestada: selleks tuleb emmal-kummal sisestusväljadest kas paremklõps teha või vajutada %MOD1+Shift+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Kui faili metaandmetesse on vaja lisada kohandatud sisu, vali selleks Fail ▸ Omadused ▸ Kohandatud omadused." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Kui soovid Draw’s teatud objekti näha ekraanil, kuid mitte seda printida, paiguta objekt kihile, mille seadistuses on säte „Prinditav” välja lülitatud (selleks tee paremklõps kihi sakil ja vali Muuda kihti)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Dokumenti praeguse kuupäeva lisamiseks vali Lisamine ▸ Väljad ▸ Kuupäev." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Kui Writeri dokument sisaldab palju pilte, saab dokumendis liikumise kiirendamiseks nende kuvamise välja lülitada (Vaade ▸ Pildid ja diagrammid)." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Mitmesuguste jaotustega juhuarvude jadasid saab genereerida, valides Leht ▸ Lahtrite täitmine ▸ Täida juhuarvudega." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Impressis slaididele nime andmine lihtsustab liikumisinteraktsioonide määramist ning muudab kokkuvõtte sisukamaks kui „Slaid 1, Slaid 2” jne." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Peatükkide nummerdamise dialoog võimaldab muu hulgas määrata, kas peatükinumbrile peaks eelnema või järgnema teatud tekst, näiteks „. peatükk”." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Writeri tabelis ridade ja veergude vahetamiseks kopeeri tabel esmalt Calci, seal kopeeri see uuesti ning vali Redigeerimine ▸ Aseta teisiti, märgi ruut „Vahetatakse read ja veerud”. Seejärel kopeeri tabel uuesti ja vali Writeris Redigeerimine ▸ Aseta teisiti ▸ Vormindatud tekst (RTF)." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Standard- või joonistusribale vertikaalteksti tööriista saamiseks tuleb esmalt sisse lülitada Ida-Aasia keelte toetus (Tööriistad ▸ Sätted ▸ Keelesätted ▸ Keeled ▸ Dokumentide vaikimisi keel) ning seejärel tuua vertikaalteksti nupp nähtavale, tehes tööriistaribal paremklõpsu ja valides Nähtavad nupud ▸ Vertikaaltekst." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Valitud vahemiku kiiresti suurendamiseks tee paremklõps olekuribal asuval suurendusteguri näidikul ja vali Optimaalne vaade." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Ka olemasolevaid PDF-faile saab allkirjastada ja nende allkirju verifitseerida." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Kui lood tihti mõne dokumendi alusel uusi dokumente, siis tasub see ehk mallina salvestada." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Selleks, et Calcis näha, millistele lahtritele on määratud tingimuslik vormindus, tuleb valida Vormindus ▸ Tingimuslik vormindamine ▸ Halda." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Valideerimiskriteeriumitele mittevastavate väärtustega lahtrite esiletõstmiseks lehel vali Tööriistad ▸ Analüüs ▸ Märgista vigased andmed." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Kui dokumendis on kasutatud fonte, mida teistes arvutites leiduda ei pruugi, saab parema koostalitluse jaoks fondid dokumenti põimida: vali Fail ▸ Omadused ▸ Fondid." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Kui soovid valemeid staatilisteks väärtusteks muuta, vali Andmed ▸ Arvutamine ▸ Teisenda valem väärtuseks." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Dokumendis kõigi märkuste vorminduse muutmiseks klõpsa mõne märkuse noolenupul ja vali Vorminda kõik märkused." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Kui soovid, et printimise ja ekraanil kuvamise paigutus oleks ühesugune, vali Tööriistad ▸ Sätted ▸ %PRODUCTNAME Calc ▸ Üldine ja märgi ruut „Teksti vormindamisel kasutatakse printeri mõõdustikku”." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Kui valid Fail ▸ Salvesta koopia, luuakse dokumendist uus eksemplar (näiteks varukoopiaks), kuid avatuks jääb algne dokument." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Stiili loomisel, kui see baseerub teisel stiilil, võib kasutada ka suhtelisi väärtusi nii protsentidena kui punktides (nt 110%, −2 pt või +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Kui soovid mõnelt lahtrilt kopeerida märkuse, asendamata sihtlahtri sisu, vali Redigeerimine ▸ Aseta teisiti. Avanevas dialoogis tuleb valikuks märkida üksnes märkused ning tehteks valida liitmine." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "MS Office’i vormingutes dokumendid saab hulgi OpenDocument-vormingusse teisendada, valides Fail ▸ Nõustajad ▸ Dokumentide teisendaja." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Lahtrit kohapeal muutes saab paremklõpsumenüüst lisada väljana kuupäeva, lehe nime või dokumendi tiitli." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Writeri tabeli liigutamiseks vali Tabel ▸ Valimine ▸ Tabel ning siis Lisamine ▸ Paneel ▸ Paneel. Seejärel saad tabeli soovitud kohta liigutada." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Kui soovid Wordi dokumendist või mallist automaatteksti kirjeid importida, vali Tööriistad ▸ Automaattekst ▸ Automaattekst ▸ Impordi." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Lõikude vahele käsitsi tühja rea lisamise asemel on mõistlik määrata automaatselt lisatav vahe lõigu või lõigustiili atribuutides (Taanded ja vahed ▸ Vahed ▸ Lõigu kohal/all)." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Arvu algusnullid saab säilitada, kui määrata lahtrivorminduses algusnullide arv või vormindada lahter enne arvu sisestamist tekstina." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Loendistiili rakendamise järel ilma täppide või nummerduseta jätkamiseks vajuta kaks korda Enterit (või kasuta vormindusribal täpp- või nummerdatud loendi lülitamise ikooni)." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Kõigi trükialade korraga kustutamiseks vali kõik lehed ja seejärel vali Vormindus ▸ Trükialad ▸ Kustuta." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Arvutustabelile taustapildi lisamiseks vali Lisamine ▸ Pilt (või lohista sobiv taust galeriist lehele) ning vali siis Vormindus ▸ Järjestus ▸ Tagaplaanile." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Kui PDF-failist või veebilehtedelt kopeeritud teksti dokumenti asetamisega on raskusi, tasub proovida vormindamata tekstina asetamist (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Calcis saab funktsiooni TRIMMEAN abil leida andmehulga keskmise väärtuse, eirates seejuures suurimaid ja vähimaid väärtusi." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Calci funktsiooni VLOOKUP valikuline 4. parameeter määrab, kas andmete esimene tulp on sorditud. Kui ei ole, sisesta VÄÄR või 0." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Mitmed tööriistaribad on kontekstipõhised, s.t avanevad teatud tüüpi objekti valimisel automaatselt. Soovi korral saab need välja lülitada, valides Vaade ▸ Tööriistaribad." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Parajasti avatud Writeri dokumendist põhidokumendi loomiseks vali Fail ▸ Saatmine ▸ Loo põhidokument. Alamdokumendid luuakse vastavalt dokumendi liigendusele." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Kui soovid Calcis lahtrid printimisel lehe keskele joondada, vali Vormindus ▸ Lehekülg ▸ kaart Lehekülg ▸ Paigutuse sätted ▸ Tabeli joondus." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Paneele saab omavahel linkida, nii et tekstivoog jätkub üle mitme paneeli, nagu küljendustarkvaras." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Diagrammi lisamiseks Writeri tabeli andmete põhjal klõpsa tabelis ja vali Lisamine ▸ Diagramm." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Valides Tööriistad ▸ Sätted ▸ %PRODUCTNAME Writer ▸ Vormindusvahendid, saad määrata, milliseid mitteprinditavaid märke redigeerimise ajal kuvatakse." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Kui soovid liikuda kindlale leheküljele selle numbri järgi, klõpsa kõige vasakpoolsemal olekuriba kirjel või vali Redigeerimine ▸ Mine leheküljele või vajuta %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME toetab enam kui 150 keelt." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Kui on vaja, et mõni teine programm saaks esitluse ajal oma akent näidata, vali Slaidiseanss ▸ Slaidiseansi sätted ja tühjenda märkeruut „Esitlus on alati kõige pealmine”." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Tekstidokumendist paksus kirjas sõnade otsimiseks saad valida Redigeerimine ▸ Otsi ja asenda ▸ Muud sätted ▸ Atribuudid ▸ Paks kiri." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Lõike või tabeliridu saab tähestikulisse või arvulisse järjestusse sortida, valides Tööriistad ▸ Sortimine." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Sektsiooni ette (või järele) lõigu lisamiseks klõpsa selle alguses (või lõpus) ja vajuta %MOD2+Enter." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME’ile on loodud palju malle, mille abil viimistletud dokumente luua." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcis saab arvutada laenu tagasimakseid: nt =PMT(2%/12;36;2500) tähendab 2% intressimäära 12 kuu kohta 36 kuu jooksul, kui laenusumma on 2500 €." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Kui Calci funktsioon VLOOKUP ei leia soovitud tulemusi, siis tasub proovida funktsioone INDEX ja MATCH." #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Kui arvutustabeli veerg A on peidetud, siis üks viis selle taas nähtavale toomiseks on klõpsata mõnda lahtrit veerus B, lohistada hiirega vasakule ning seejärel valida Vormindus ▸ Veerud ▸ Näita." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Writeris leheküljenumbri muutmiseks ava lehe esimese lõigu omadused ja tekstivoo kaardil piiride jaotises märgi ruudud „Lisatakse”, „Leheküljestiiliga” ja „Leheküljenumber” ning sisesta soovitud leheküljenumber." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME’it saab rollApp’i kaudu kasutada ka veebilehitsejas." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Kui saad Calcis veidra veakoodi, „Err:” koos mingi numbriga, siis selle tähenduse leiad siit:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Kui soovid sisukorda kaasata lõigu, ilma et see oleks vormindatud mõne pealkirjastiiliga, saad soovitud liigendustaseme määrata lõigu omaduste dialoogi kaardil „Liigendus ja nummerdus”." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Lisaks automaatsele sisukorrale saab %PRODUCTNAME’iga luua ka tähestikulisi registreid, illustratsioonide, tabelite, objektide ja omamääratud kirjete registreid ning kasutatud kirjanduse (bibliograafia) loendeid." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Kui mõnda kohandatud lahtristiili ei õnnestu muute või kustutada, vaata, et ükski leht kaitstud poleks." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Jada automaatseks täitmiseks saab märgistada lahtrivahemiku ja siis valida menüüst Leht ▸ Lahtrite täitmine ▸ Jadad, kust saab määrata aritmeetilise, geomeetrilise, kuupäevade jada või automaattäitmise." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Kui soovid teada, kas aktiivsele lahtrile viidatakse valemites või teistes lahtrites, vali Tööriistad ▸ Analüüs ▸ Näita järelsõltuvusi (või vajuta Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Automaatkorrektuuri sätete asendamisväljal saab kasutada ka metamärki .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Ülemise rea või lahtri saab duplitseerida, vajutades %MOD1+D või valides Leht ▸ Lahtrite täitmine ▸ Täida alla." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Mitmelt lehelt otsimiseks vali enne otsima hakkamist soovitud lehed." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Lohistades lahtreid Calcist slaidi tavavaatesse luuakse tabel; lohistades liigendusvaatesse saab igast lahtrist rida liigenduses." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME aitab Writeris mitte sisestada kahte või enamat tühikut järjest. Soovi korral saab selle siiski välja lülitada, valides Tööriistad ▸ Automaatkorrektuur ▸ Automaatkorrektuuri sätted ▸ kaart Sätted ning tühjendades märkeruudu „Topelttühikute eiramine”." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Kui soovid Calcis pärast väärtuse sisestamist viia kursori parempoolsele, mitte alumisele lahtrile, kasuta Enteri asemel tabeldusklahvi." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Kerimisriba saab kuvada ka vasakus servas. Selleks tuleb esmalt valida Tööriistad ▸ Sätted ▸ Keelesätted ▸ Keeled ja lubada keerukate kirjasüsteemide tugi ning seejärel valida Leht ▸ Paremalt vasakule." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Teatud teksti- või objektivorminduse põhjal stiili loomiseks piisab, kui vastav tekst või objekt stiilide külgribale lohistada. Avanevas aknas saab uuele stiilile nime anda." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "%PRODUCTNAME’i uued versioonid sisaldavad uusi funktsioone, veaparandusi ja turvauuendusi. Seetõttu on oluline tarkvara uuendada." #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Uute XSLT ja XML-filtrite loomisel saab abi siit:" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Kui laiendatud nõuanded on välja lülitatud (vt Tööriistad ▸ Sätted ▸ %PRODUCTNAME ▸ Üldine), saab dialoogiakendes neid siiski näha, vajutades Shift+F1." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME’i abi" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Lisainfo" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Proovi kohe järele..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tänane näpunäide: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -4665,20 +4659,20 @@ #: cui/uiconfig/ui/additionsdialog.ui:126 msgctxt "additionsdialog|ProgressLabel" msgid "ProgressLabel" -msgstr "" +msgstr "Edenemissilt" #. 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 "" +msgstr "See silt näitab toimingute edenemist (nt laienduste laadimise ajal) või olekut (nt \"ei leitud\")." #. NrZT8 #: cui/uiconfig/ui/additionsdialog.ui:188 #: cui/uiconfig/ui/additionsdialog.ui:189 msgctxt "additionsdialog|searchEntry" msgid "searchEntry" -msgstr "" +msgstr "otsingukirje" #. iamTq #: cui/uiconfig/ui/additionsdialog.ui:212 @@ -4690,7 +4684,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:213 msgctxt "additionsdialog|buttonGear" msgid "Contains commands to modify settings of the additions list such as sorting type or view type." -msgstr "" +msgstr "Sisaldab käske täienduste loendi sätete muutmiseks, nt sortimiseks või vaate vahetamiseks." #. fUE2f #: cui/uiconfig/ui/additionsfragment.ui:16 @@ -4702,7 +4696,7 @@ #: cui/uiconfig/ui/additionsfragment.ui:21 msgctxt "additionsDialog|buttonShowMore" msgid "ButtonShowMore" -msgstr "" +msgstr "Lisanäitamisnupp" #. i9AoG #: cui/uiconfig/ui/additionsfragment.ui:22 @@ -5578,7 +5572,7 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:612 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 "" +msgstr "Vali bittraster, mida soovid kasutada ala täitepildina, või lisa uus bittraster." #. AYRA3 #: cui/uiconfig/ui/borderareatransparencydialog.ui:8 @@ -5632,7 +5626,7 @@ #: cui/uiconfig/ui/borderpage.ui:98 msgctxt "borderpage|userdefft" msgid "Click edge or corner to cycle through three states: set, unchanged, remove." -msgstr "" +msgstr "Klõps serval või nurgal lülitab kolme toimingu vahel: määramine, muutmata jätmine, eemaldamine." #. sRXeg #: cui/uiconfig/ui/borderpage.ui:111 @@ -8206,7 +8200,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:202 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 "" +msgstr "Siia saab sisestada uue sõna, mis sõnastikku lisada. Allolevas loendis on näha valitud kohandatud sõnastiku sisu." #. WWwmQ #: cui/uiconfig/ui/editdictionarydialog.ui:215 @@ -9755,7 +9749,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:120 msgctxt "hangulhanjaconversiondialog|extended_tip|originalword" msgid "Displays the current selection." -msgstr "" +msgstr "Kuvab praeguse valiku." #. P2Lhg #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:133 @@ -11163,7 +11157,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:328 msgctxt "insertfloatingframe|extended_tip|borderon" msgid "Displays the border of the floating frame." -msgstr "" +msgstr "Näitab lahtise paneeli raamjoont." #. P9vwv #: cui/uiconfig/ui/insertfloatingframe.ui:340 @@ -11175,7 +11169,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:350 msgctxt "insertfloatingframe|extended_tip|borderoff" msgid "Hides the border of the floating frame." -msgstr "" +msgstr "Peidab lahtise paneeli raamjoone." #. xBDSb #: cui/uiconfig/ui/insertfloatingframe.ui:371 @@ -15151,7 +15145,7 @@ #: cui/uiconfig/ui/optlingupage.ui:158 msgctxt "lingumodulesedit" msgid "To edit a language module, select it and click Edit." -msgstr "" +msgstr "Keelemooduli redigeerimiseks vali see ja klõpsa \"Muuda\"." #. SBvTc #: cui/uiconfig/ui/optlingupage.ui:226 @@ -15289,7 +15283,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:154 msgctxt "except" msgid "Specifies whether you wish to avoid certain words in your documents." -msgstr "" +msgstr "Võimaldab määrata sõnad, mida soovid dokumentides vältida." #. VJQ4d #: cui/uiconfig/ui/optnewdictionarydialog.ui:178 @@ -17072,20 +17066,20 @@ #: cui/uiconfig/ui/pageformatpage.ui:543 msgctxt "pageformatpage|checkRegisterTrue" msgid "Use page li_ne-spacing" -msgstr "" +msgstr "Range paigutuse kasutamine" #. DtZQG #. xdds #: cui/uiconfig/ui/pageformatpage.ui:547 msgctxt "pageformatpage|checkRegisterTrue" msgid "Enables page line-spacing (register-true) using the selected Reference Style" -msgstr "" +msgstr "Lülitab sisse range paigutuse, s.t ridadele määratakse võrdne kõrgus, kasutades valitud viitestiili." #. p2egb #: cui/uiconfig/ui/pageformatpage.ui:553 msgctxt "extended_tip|checkRegisterTrue" msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "" +msgstr "Märkimisel omandavad kõik lõigustiilid, milles range paigutus sisse on lülitatud, viitestiili reavahe. Need stiilid joondatakse nähtamatu vertikaalse lehejoonestikuga, olenemata nende fondisuurusest, nii et iga rida on sama kõrgusega." #. 46djR #: cui/uiconfig/ui/pageformatpage.ui:567 @@ -17139,7 +17133,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:653 msgctxt "pageformatpage|labelRegisterStyle" msgid "Reference _Style:" -msgstr "Lähtestiil:" +msgstr "Viitestiil:" #. xdECe #: cui/uiconfig/ui/pageformatpage.ui:687 @@ -17331,7 +17325,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:167 msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text" msgid "Indent paragraph automatically according to font size and line spacing." -msgstr "" +msgstr "Märkimisel määratakse lõigu esimese rea taane fondisuuruse ja reavahe põhjal automaatselt." #. L9iw7 #: cui/uiconfig/ui/paraindentspacing.ui:221 @@ -17421,20 +17415,20 @@ #: cui/uiconfig/ui/paraindentspacing.ui:486 msgctxt "paraindentspacing|checkCB_REGISTER" msgid "Activate page li_ne-spacing" -msgstr "" +msgstr "Range paigutus" #. uesRM #. xdds #: cui/uiconfig/ui/paraindentspacing.ui:489 msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text" msgid "Applies page line-spacing (register-true) if set for the Page Style." -msgstr "" +msgstr "Aktiveerib range paigutuse, kui see leheküljestiilis sisse lülitatud on." #. MwL9j #: cui/uiconfig/ui/paraindentspacing.ui:495 msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER" msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "" +msgstr "Kui leheküljestiilis on määratud range paigutuse kasutamine, siis selle ruudu märkimisel joondatakse lõik või lõigustiil nähtamatu vertikaalse lehejoonestikuga, olenemata fondisuurusest, nii et iga rida on sama kõrgusega." #. GxJB6 #: cui/uiconfig/ui/paraindentspacing.ui:513 @@ -18241,7 +18235,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:204 msgctxt "edit border" msgid "The width in dots of the border surrounding the QR code." -msgstr "" +msgstr "QR-koodi ümbritseva äärise jämedus (punktides)." #. vUJPT #: cui/uiconfig/ui/qrcodegen.ui:221 @@ -20935,7 +20929,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:146 msgctxt "ToolbarmodeDialog|radiobutton5" msgid "Tabbed Compact" -msgstr "Kaartidega ja kompaktne" +msgstr "Kaartidega kompaktne" #. yT3UT #: cui/uiconfig/ui/toolbarmodedialog.ui:164 @@ -20947,7 +20941,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:182 msgctxt "ToolbarmodeDialog|radiobutton6" msgid "Groupedbar Compact" -msgstr "Rühmitatud ja kompaktne" +msgstr "Rühmitatud kompaktne" #. iSVgL #: cui/uiconfig/ui/toolbarmodedialog.ui:200 @@ -20959,7 +20953,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:218 msgctxt "ToolbarmodeDialog|radiobutton9" msgid "Contextual Groups" -msgstr "Kontekstitundlik ja rühmitatud" +msgstr "Kontekstitundlik rühmitatud" #. wTDDF #: cui/uiconfig/ui/toolbarmodedialog.ui:236 @@ -21397,7 +21391,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:144 msgctxt "zoomdialog|extended_tip|fitwandh" msgid "Displays the entire page on your screen." -msgstr "" +msgstr "Ekraanil kuvatakse tervet lehekülge." #. P9XGA #: cui/uiconfig/ui/zoomdialog.ui:156 @@ -21409,7 +21403,7 @@ #: 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 "" +msgstr "Kuvatakse dokumendi lehekülge kogu laiuses. Lehekülje ülemine ja alumine äär ei pruugi olla nähtavad." #. qeWB6 #: cui/uiconfig/ui/zoomdialog.ui:178 @@ -21421,7 +21415,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:188 msgctxt "zoomdialog|extended_tip|100pc" msgid "Displays the document at its actual size." -msgstr "" +msgstr "Näitab dokumenti selle tegelikus suuruses." #. DE7hS #: cui/uiconfig/ui/zoomdialog.ui:205 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/et/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566121723.000000\n" #. BiN6g @@ -2524,73 +2524,73 @@ #: dbaccess/inc/templwin.hrc:41 msgctxt "STRARY_SVT_DOCINFO" msgid "Title" -msgstr "" +msgstr "Pealkiri" #. zo57j #: dbaccess/inc/templwin.hrc:42 msgctxt "STRARY_SVT_DOCINFO" msgid "By" -msgstr "" +msgstr "Looja" #. Zh8Ni #: dbaccess/inc/templwin.hrc:43 msgctxt "STRARY_SVT_DOCINFO" msgid "Date" -msgstr "" +msgstr "Kuupäev" #. eHFA4 #: dbaccess/inc/templwin.hrc:44 msgctxt "STRARY_SVT_DOCINFO" msgid "Keywords" -msgstr "" +msgstr "Võtmesõnad" #. eYGnQ #: dbaccess/inc/templwin.hrc:45 msgctxt "STRARY_SVT_DOCINFO" msgid "Description" -msgstr "" +msgstr "Kirjeldus" #. Eg2eG #: dbaccess/inc/templwin.hrc:46 msgctxt "STRARY_SVT_DOCINFO" msgid "Type" -msgstr "" +msgstr "Tüüp" #. hokZy #: dbaccess/inc/templwin.hrc:47 msgctxt "STRARY_SVT_DOCINFO" msgid "Modified on" -msgstr "" +msgstr "Muudetud" #. XMEJb #: dbaccess/inc/templwin.hrc:48 msgctxt "STRARY_SVT_DOCINFO" msgid "Modified by" -msgstr "" +msgstr "Muutja" #. MWkd5 #: dbaccess/inc/templwin.hrc:49 msgctxt "STRARY_SVT_DOCINFO" msgid "Printed on" -msgstr "" +msgstr "Prinditud" #. BBEEC #: dbaccess/inc/templwin.hrc:50 msgctxt "STRARY_SVT_DOCINFO" msgid "Printed by" -msgstr "" +msgstr "Printija" #. VCGe3 #: dbaccess/inc/templwin.hrc:51 msgctxt "STRARY_SVT_DOCINFO" msgid "Subject" -msgstr "" +msgstr "Teema" #. HVYdE #: dbaccess/inc/templwin.hrc:52 msgctxt "STRARY_SVT_DOCINFO" msgid "Size" -msgstr "" +msgstr "Suurus" #. 4KVZn #: dbaccess/uiconfig/ui/admindialog.ui:8 @@ -3359,7 +3359,7 @@ msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" "available in this setup." -msgstr "" +msgstr "Uue andmebaasi loomine pole võimalik, kuna ei HSQLDB ega Firebird pole saadaval." #. DQvKi #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:43 @@ -4781,7 +4781,7 @@ #: dbaccess/uiconfig/ui/taskwindow.ui:109 msgctxt "taskwindow|STR_DESCRIPTION" msgid "Description" -msgstr "" +msgstr "Kirjeldus" #. 8b2nn #: dbaccess/uiconfig/ui/textconnectionsettings.ui:8 @@ -5015,4 +5015,4 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:217 msgctxt "userdetailspage|charsetheader" msgid "Data Conversion" -msgstr "" +msgstr "Andmete teisendus" diff -Nru libreoffice-7.1.2~rc2/translations/source/et/dictionaries/da_DK.po libreoffice-7.1.3~rc2/translations/source/et/dictionaries/da_DK.po --- libreoffice-7.1.2~rc2/translations/source/et/dictionaries/da_DK.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/dictionaries/da_DK.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-27 14:58+0100\n" -"PO-Revision-Date: 2013-05-23 23:16+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" +"Last-Translator: Mihkel Tõnnov \n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369351019.000000\n" #. M5yh2 @@ -39,3 +39,7 @@ "and Center for Sprogteknologi, Københavns Universitet\n" "Hyphenation dictionary Based on the TeX hyphenation tables.\n" msgstr "" +"Stavekontroldeni õigekirjakontrolli sõnastik taani keele jaoks.\n" +"Sõnastik põhineb Taani Keele ja Kirjanduse Seltsi (https://dsl.dk) andmestikul.\n" +"Tesaurus põhineb Taani Keele ja Kirjanduse Seltsi ning Kopenhaageni Ülikooli Keeletehnoloogia Keskuse (https://cst.ku.dk) andmestikul.\n" +"Poolitusreeglid põhinevad TeX-i poolitustabelitel.\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/et/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/et/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-26 09:13+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566122989.000000\n" #. cBx8W @@ -3533,7 +3533,7 @@ #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:178 msgctxt "selecttypepage|extended_tip|macosx" msgid "Select this option if you already use an address book in macOS Address book." -msgstr "" +msgstr "Vali see säte, kui sa juba kasutad macOS-i aadressiraamatut." #. 3EnZE #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:189 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/filter/messages.po libreoffice-7.1.3~rc2/translations/source/et/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566121772.000000\n" #. 5AQgJ @@ -627,7 +627,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:828 msgctxt "pdfgeneralpage|bookmarks" msgid "Export outl_ines" -msgstr "" +msgstr "Liigenduse eksportimine" #. qw9My #: filter/uiconfig/ui/pdfgeneralpage.ui:837 @@ -705,7 +705,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:33 msgctxt "pdflinkspage|export" msgid "Export outlines as named destinations" -msgstr "" +msgstr "Liigendus eksporditakse nimeliste viidetena" #. BDf69 #: filter/uiconfig/ui/pdflinkspage.ui:43 @@ -1263,7 +1263,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:329 msgctxt "pdfuserinterfacepage|allbookmarks" msgid "Show _All" -msgstr "" +msgstr "Kõik tasemed" #. XLd4F #: filter/uiconfig/ui/pdfuserinterfacepage.ui:339 @@ -1275,7 +1275,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:350 msgctxt "pdfuserinterfacepage|visiblebookmark" msgid "_Visible levels:" -msgstr "" +msgstr "Nähtavad tasemed:" #. FqQPa #: filter/uiconfig/ui/pdfuserinterfacepage.ui:364 @@ -1293,7 +1293,7 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:404 msgctxt "pdfuserinterfacepage|label4" msgid "Collapse Outlines" -msgstr "" +msgstr "Kuvatav liigendus" #. ibYBv #: filter/uiconfig/ui/pdfviewpage.ui:52 @@ -1311,7 +1311,7 @@ #: filter/uiconfig/ui/pdfviewpage.ui:73 msgctxt "pdfviewpage|outline" msgid "Outl_ine and page" -msgstr "" +msgstr "Liigendus ja lehekülg" #. JAAHm #: filter/uiconfig/ui/pdfviewpage.ui:83 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/et/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/et/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ 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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565338968.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Kapiteelkiri - muudab valitud väiketähed suurtähtedeks, kuid vähendab nende suurust." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "vilkuvad fondid fondid; vilkumine" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Vilkumine" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Paneb valitud märgid vilkuma. Vilkumissagedust muuta ei saa." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -47876,7 +47849,7 @@ "hd_id3154673\n" "help.text" msgid "Pages" -msgstr "" +msgstr "Leheküljed" #. jXfhZ #: ref_pdf_export_general.xhp @@ -47903,7 +47876,7 @@ "hd_id3147043\n" "help.text" msgid "Selection" -msgstr "" +msgstr "Valik" #. d6rFh #: ref_pdf_export_general.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2020-06-23 11:14+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566165122.000000\n" #. PzSYs @@ -563,7 +563,7 @@ "hd_id3150592\n" "help.text" msgid "Email" -msgstr "" +msgstr "E-post" #. FNyZE #: 01010100.xhp @@ -572,7 +572,7 @@ "par_id3154942\n" "help.text" msgid "Type your email address. For example, my.name@my.provider.com" -msgstr "" +msgstr "Sisesta siia oma e-posti aadress. Näiteks minu.nimi@minu.teenusepakkuja.ee" #. DA4Z7 #: 01010100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/et/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/et/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/et/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563715507.000000\n" #. sZfWF @@ -7349,7 +7349,7 @@ "par_id7374187\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert." -msgstr "" +msgstr "Esitab tüübiloendis valitud väljatüübi jaoks saadaolevad väljad. Välja lisamiseks klõpsa väljal, vali loendist \"Viite sisu\" sobiv vorming ja seejärel klõpsa Lisa." #. ABxYv #: 04090002.xhp @@ -8573,7 +8573,7 @@ "par_id0902200804290272\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "" +msgstr "Esitab tüübiloendis valitud väljatüübi jaoks saadaolevad väljad. Välja lisamiseks klõpsa väljal ja seejärel klõpsa Lisa." #. NDsUM #: 04090004.xhp @@ -8879,7 +8879,7 @@ "par_id7453535\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "" +msgstr "Esitab tüübiloendis valitud väljatüübi jaoks saadaolevad väljad. Välja lisamiseks klõpsa väljal ja seejärel klõpsa Lisa." #. DUaXS #: 04090005.xhp @@ -13100,7 +13100,7 @@ "par_id3154638\n" "help.text" msgid "The Structure line defines how the entries in the index are composed. To change the appearance of an entry you can enter codes or text in the empty boxes on this line. You can also click in an empty box or on a code, and then click a code button." -msgstr "" +msgstr "Struktuuririda määrab, kuidas kirjed registris koostatakse. Kirje välimuse muutmiseks saad sellel real tühjadele väljadele koodid või teksti sisestada. Lisaks saad klõpsata tühjal väljal või koodil ja seejärel klõpsata koodinupul." #. m3Jkx #: 04120221.xhp @@ -13109,7 +13109,7 @@ "par_id3149292\n" "help.text" msgid "Displays the remainder of the Structure line." -msgstr "" +msgstr "Esitab struktuurirea ülejäänud osa." #. 7d4aW #: 04120221.xhp @@ -13118,7 +13118,7 @@ "par_id3147512\n" "help.text" msgid "To delete a code from the Structure line, click the code, and then press the Delete key." -msgstr "" +msgstr "Struktuurirealt koodi kustutamiseks klõpsa koodil ja seejärel vajuta klahvi Delete." #. aqo9k #: 04120221.xhp @@ -13127,7 +13127,7 @@ "par_id3149806\n" "help.text" msgid "To replace a code from the Structure line, click the code, and then click a code button." -msgstr "" +msgstr "Struktuurireal koodi asendamiseks klõpsa koodil ja seejärel klõpsa koodinupul." #. qNe4D #: 04120221.xhp @@ -13136,7 +13136,7 @@ "par_id3154480\n" "help.text" msgid "To add a code to the Structure line, click in an empty box, and then click a code button." -msgstr "" +msgstr "Struktuurireale koodi lisamiseks klõpsa tühjal väljal ja seejärel klõpsa koodinupul." #. p4zE5 #: 04120221.xhp @@ -13721,7 +13721,7 @@ "par_id3147175\n" "help.text" msgid "Lists the available bibliography entries. To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click Insert. Use the Define Bibliography Entry dialog to add new entries." -msgstr "" +msgstr "Esitab saadaolevad bibliokirjed. Struktuurireale kirje lisamiseks vali kirje, klõpsa struktuurirea tühjal väljal ja seejärel klõpsa Lisa. Kasuta uute kirjete lisamiseks dialoogi Bibliokirjete määramine." #. oZZ9e #: 04120227.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-26 18:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566122728.000000\n" #. W5ukN @@ -26346,7 +26346,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "Täiendused..." #. bFKmR #: GenericCommands.xcu @@ -26356,7 +26356,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "Täiendavad laiendused..." #. UqjzD #: GenericCommands.xcu @@ -26366,7 +26366,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "Täiendavad laiendused" #. YpeR4 #: GenericCommands.xcu @@ -26426,7 +26426,7 @@ "Label\n" "value.text" msgid "~Distribution" -msgstr "" +msgstr "Jaotus" #. 2HWrF #: GenericCommands.xcu @@ -26436,7 +26436,7 @@ "TooltipLabel\n" "value.text" msgid "Select at least three objects to distribute" -msgstr "" +msgstr "Jaotamiseks tuleb valida vähemalt kolm objekti" #. zEiFi #: GenericCommands.xcu @@ -26446,7 +26446,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Valiku jaotamine" #. vDkBA #: GenericCommands.xcu @@ -26456,7 +26456,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Left" -msgstr "" +msgstr "Jaota horisontaalselt vasakule" #. gjrG6 #: GenericCommands.xcu @@ -26466,7 +26466,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Left" -msgstr "" +msgstr "Horisontaalselt vasakule" #. BBazW #: GenericCommands.xcu @@ -26476,7 +26476,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "Jaota horisontaalselt keskele" #. SqFTB #: GenericCommands.xcu @@ -26486,7 +26486,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "Horisontaalselt keskele" #. QXntz #: GenericCommands.xcu @@ -26496,7 +26496,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Spacing" -msgstr "" +msgstr "Jaota horisontaalselt vahedega" #. GQEXJ #: GenericCommands.xcu @@ -26506,7 +26506,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Spacing" -msgstr "" +msgstr "Horisontaalselt vahedega" #. Smk23 #: GenericCommands.xcu @@ -26516,7 +26516,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Right" -msgstr "" +msgstr "Jaota horisontaalselt paremale" #. SDkHd #: GenericCommands.xcu @@ -26526,7 +26526,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Right" -msgstr "" +msgstr "Horisontaalselt paremale" #. iJB7y #: GenericCommands.xcu @@ -26536,7 +26536,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Top" -msgstr "" +msgstr "Jaota vertikaalselt üles" #. 9wa7z #: GenericCommands.xcu @@ -26546,7 +26546,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Top" -msgstr "" +msgstr "Vertikaalselt üles" #. FAkxM #: GenericCommands.xcu @@ -26556,7 +26556,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Center" -msgstr "" +msgstr "Jaota vertikaalselt keskele" #. PaLDT #: GenericCommands.xcu @@ -26566,7 +26566,7 @@ "ContextLabel\n" "value.text" msgid "Vertically C~enter" -msgstr "" +msgstr "Vertikaalselt keskele" #. jwLqM #: GenericCommands.xcu @@ -26576,7 +26576,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Spacing" -msgstr "" +msgstr "Jaota vertikaalselt vahedega" #. 2RAqA #: GenericCommands.xcu @@ -26586,7 +26586,7 @@ "ContextLabel\n" "value.text" msgid "Vertically S~pacing" -msgstr "" +msgstr "Vertikaalselt vahedega" #. ELgnZ #: GenericCommands.xcu @@ -26596,7 +26596,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Bottom" -msgstr "" +msgstr "Jaota vertikaalselt alla" #. rankC #: GenericCommands.xcu @@ -26606,7 +26606,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Bottom" -msgstr "" +msgstr "Vertikaalselt alla" #. uaVMn #: ImpressWindowState.xcu @@ -28986,7 +28986,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "Kaartidega ja kompaktne" +msgstr "Kaartidega kompaktne" #. 5CbqL #: ToolbarMode.xcu @@ -28996,7 +28996,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Rühmitatud ja kompaktne" +msgstr "Rühmitatud kompaktne" #. qM7MP #: ToolbarMode.xcu @@ -29026,7 +29026,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontekstitundlik ja rühmitatud" +msgstr "Kontekstitundlik rühmitatud" #. L5JbD #: ToolbarMode.xcu @@ -29076,7 +29076,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "Kaartidega ja kompaktne" +msgstr "Kaartidega kompaktne" #. EfebG #: ToolbarMode.xcu @@ -29086,7 +29086,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Rühmitatud ja kompaktne" +msgstr "Rühmitatud kompaktne" #. is78h #: ToolbarMode.xcu @@ -29106,7 +29106,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontekstitundlik ja rühmitatud" +msgstr "Kontekstitundlik rühmitatud" #. C6x8E #: ToolbarMode.xcu @@ -29146,7 +29146,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "Kaartidega ja kompaktne" +msgstr "Kaartidega kompaktne" #. quFBW #: ToolbarMode.xcu @@ -29156,7 +29156,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Rühmitatud ja kompaktne" +msgstr "Rühmitatud kompaktne" #. tGs79 #: ToolbarMode.xcu @@ -29186,7 +29186,7 @@ "Label\n" "value.text" msgid "Contextual groups" -msgstr "Kontekstitundlik ja rühmitatud" +msgstr "Kontekstitundlik rühmitatud" #. mrACC #: ToolbarMode.xcu @@ -29216,7 +29216,7 @@ "Label\n" "value.text" msgid "Tabbed Compact" -msgstr "Kaartidega ja kompaktne" +msgstr "Kaartidega kompaktne" #. nrNaZ #: ToolbarMode.xcu @@ -29226,7 +29226,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Rühmitatud ja kompaktne" +msgstr "Rühmitatud kompaktne" #. FncB5 #: ToolbarMode.xcu @@ -29936,7 +29936,7 @@ "Label\n" "value.text" msgid "Show outline content visibility button" -msgstr "" +msgstr "Pealkirjale järgneva sisu peitmise nupp" #. 9DzFr #: WriterCommands.xcu @@ -29946,7 +29946,7 @@ "TooltipLabel\n" "value.text" msgid "Show outline content visibility button" -msgstr "" +msgstr "Pealkirjale järgneva sisu peitmise nupp" #. C5mHk #: WriterCommands.xcu @@ -29956,7 +29956,7 @@ "Label\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "Jälitatud kustutamised veeristel" #. 3GVrG #: WriterCommands.xcu @@ -29966,7 +29966,7 @@ "TooltipLabel\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "Jälitatud kustutamised veeristel" #. QFi68 #: WriterCommands.xcu @@ -35216,7 +35216,7 @@ "TooltipLabel\n" "value.text" msgid "Fold or unfold outline content in document" -msgstr "" +msgstr "Lülita pealkirjale järgneva sisu nähtavust" #. qaWQG #: WriterCommands.xcu @@ -35226,7 +35226,7 @@ "Label\n" "value.text" msgid "Inspector Deck" -msgstr "" +msgstr "Stiiliinspektoripaneel" #. joS9f #: WriterFormWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/et/sc/messages.po libreoffice-7.1.3~rc2/translations/source/et/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-26 09:13+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566122065.000000\n" #. kBovX @@ -19955,13 +19955,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:229 msgctxt "conditionalformatdialog|extended_tip|up" msgid "Increase priority of the selected condition." -msgstr "" +msgstr "Suurendab valitud tingimuse prioriteeti." #. ykMES #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:248 msgctxt "conditionalformatdialog|extended_tip|down" msgid "Decrease priority of the selected condition." -msgstr "" +msgstr "Vähendab valitud tingimuse prioriteeti." #. Q6Ag7 #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:273 @@ -20366,7 +20366,7 @@ #: sc/uiconfig/scalc/ui/correlationdialog.ui:283 msgctxt "correlationdialog|extended_tip|CorrelationDialog" msgid "Calculates the correlation of two sets of numeric data." -msgstr "" +msgstr "Arvutab kahe arvulise andmehulga korrelatsiooni." #. XYtja #: sc/uiconfig/scalc/ui/covariancedialog.ui:8 @@ -20414,7 +20414,7 @@ #: sc/uiconfig/scalc/ui/covariancedialog.ui:283 msgctxt "covariancedialog|extended_tip|CovarianceDialog" msgid "Calculates the covariance of two sets of numeric data." -msgstr "" +msgstr "Arvutab kahe arvulise andmehulga kovariatsiooni." #. F22h3 #: sc/uiconfig/scalc/ui/createnamesdialog.ui:8 @@ -22908,13 +22908,13 @@ #: sc/uiconfig/scalc/ui/functionpanel.ui:93 msgctxt "functionpanel|extended_tip|category" msgid "Displays the available functions." -msgstr "" +msgstr "Loetleb saadaolevad funktsioonid." #. V9ATp #: sc/uiconfig/scalc/ui/functionpanel.ui:140 msgctxt "functionpanel|extended_tip|funclist" msgid "Displays the available functions." -msgstr "" +msgstr "Loetleb saadaolevad funktsioonid." #. rmQie #: sc/uiconfig/scalc/ui/functionpanel.ui:174 @@ -27304,7 +27304,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:462 msgctxt "pivotfilterdialog|extended_tip|case" msgid "Distinguishes between uppercase and lowercase letters." -msgstr "" +msgstr "Määrab, et suur- ja väiketähti peetakse erinevateks." #. ECBBQ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:473 @@ -28629,7 +28629,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:343 msgctxt "extended_tip|legacy_cell_selection_cb" msgid "With the option set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column that was added as last to the initial selection. When the option is not set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column where selecting the cell range was started. The same of course applies when extending a selection on rows, with Ctrl + Shift + Left/Right." -msgstr "" +msgstr "Kui see säte on aktiivne, siis valiku laiendamisel (klahvikombinatsiooniga Ctrl+Shift+nool alla/üles) hüpatakse vahemiku lõppu veerus, mis viimasena algsele valikule lisati. Kui see säte ei ole aktiivne, siis hüpatakse valiku laiendamisel vahemiku lõppu veerus, millest vahemiku valimist alustati. Loomulikult kehtib sama ka valiku laiendamisel ridade kaupa (klahvikombinatsiooniga Ctrl+Shift+nool vasakule/paremale)." #. S2fGF #: sc/uiconfig/scalc/ui/scgeneralpage.ui:355 @@ -29697,7 +29697,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:179 msgctxt "solverdlg|extended_tip|min" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Sisesta lahtrivahemik, mida võib muuta." #. gB8JN #: sc/uiconfig/scalc/ui/solverdlg.ui:190 @@ -29709,13 +29709,13 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:204 msgctxt "solverdlg|extended_tip|max" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Sisesta lahtrivahemik, mida võib muuta." #. fqxHx #: sc/uiconfig/scalc/ui/solverdlg.ui:229 msgctxt "solverdlg|extended_tip|changeedit" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Sisesta lahtrivahemik, mida võib muuta." #. qsQDn #: sc/uiconfig/scalc/ui/solverdlg.ui:272 @@ -29733,13 +29733,13 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:321 msgctxt "solverdlg|extended_tip|value" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Sisesta lahtrivahemik, mida võib muuta." #. uzDam #: sc/uiconfig/scalc/ui/solverdlg.ui:346 msgctxt "solverdlg|extended_tip|valueedit" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Sisesta lahtrivahemik, mida võib muuta." #. UWsBu #: sc/uiconfig/scalc/ui/solverdlg.ui:438 @@ -30003,7 +30003,7 @@ #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:121 msgctxt "solveroptionsdialog|extended_tip|engine" msgid "Select a solver engine. The listbox is disabled if only one solver engine is installed." -msgstr "" +msgstr "Vali lahendaja mootor. Loendikast pole kasutatav, kui paigaldatud on ainult üks mootor." #. JVMDt #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:148 @@ -30151,10 +30151,9 @@ #. F9BE3 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:41 -#, fuzzy msgctxt "sortoptionspage|extended_tip|case" msgid "Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies." -msgstr " Kõigepealt sorditakse suurtähtede järgi ja siis väiketähtede järgi. Aasia keeli käsitletakse erireeglite järgi." +msgstr "Kõigepealt sorditakse suurtähtede järgi ja siis väiketähtede järgi. Ida-Aasia keelte korral kehtivad erireeglid." #. fTCGJ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:52 @@ -30213,10 +30212,9 @@ #. gis9V #: sc/uiconfig/scalc/ui/sortoptionspage.ui:154 -#, fuzzy msgctxt "sortoptionspage|extended_tip|copyresult" msgid "Copies the sorted list to the cell range that you specify." -msgstr " Sorteeritud loend kopeeritakse määratavasse lahtrite vahemikku." +msgstr "Sorteeritud loend kopeeritakse määratavasse lahtrite vahemikku." #. WKWmE #: sc/uiconfig/scalc/ui/sortoptionspage.ui:174 @@ -30226,10 +30224,9 @@ #. ABAdF #: sc/uiconfig/scalc/ui/sortoptionspage.ui:175 -#, fuzzy msgctxt "sortoptionspage|extended_tip|outarealb" msgid "Select a named cell range where you want to display the sorted list, or enter a cell range in the input box." -msgstr " Vali nimeline lahtrite vahemik, kus soovid näha sorditud loendit, või sisesta lahtrite vahemik sisestusväljale." +msgstr "Vali nimega lahtrite vahemik, kus soovid näha sorditud loendit, või sisesta lahtrite vahemik sisestusväljale." #. ABGSS #: sc/uiconfig/scalc/ui/sortoptionspage.ui:196 @@ -30239,10 +30236,9 @@ #. kpVh9 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:197 -#, fuzzy msgctxt "sortoptionspage|extended_tip|outareaed" msgid "Enter the cell range where you want to display the sorted list, or select a named range from the list." -msgstr " Sisesta lahtrite vahemik, kus soovid näha sorditud loendit, või vali loendist nimeline vahemik." +msgstr "Sisesta lahtrite vahemik, kus soovid näha sorditud loendit, või vali loendist nimeline vahemik." #. GwzEB #: sc/uiconfig/scalc/ui/sortoptionspage.ui:208 @@ -30252,10 +30248,9 @@ #. aDYdR #: sc/uiconfig/scalc/ui/sortoptionspage.ui:220 -#, fuzzy msgctxt "sortoptionspage|extended_tip|sortuser" msgid "Click here and then select the custom sort order that you want." -msgstr " Klõpsa siin ja vali kohandatud sortimisjärjestus, mida soovid kasutada." +msgstr "Klõpsa siin ja vali kohandatud sortimisjärjestus, mida soovid kasutada." #. iWcGs #: sc/uiconfig/scalc/ui/sortoptionspage.ui:239 @@ -30265,7 +30260,6 @@ #. QagY7 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:240 -#, fuzzy msgctxt "sortoptionspage|extended_tip|sortuserlb" msgid "Select the custom sort order that you want to apply. To define a custom sort order, choose Tools - Options - %PRODUCTNAME Calc - Sort Lists ." msgstr "Vali kohandatud sortimisjärjestus, mida soovid rakendada. Kohandatud sortimisjärjestuse loomiseks vali Tööriistad - Sätted - %PRODUCTNAME Calc - Sortimisloendid." @@ -30309,10 +30303,9 @@ #. bSvKu #: sc/uiconfig/scalc/ui/sortoptionspage.ui:389 -#, fuzzy msgctxt "sortoptionspage|extended_tip|topdown" msgid "Sorts rows by the values in the active columns of the selected range." -msgstr " Read sorditakse valitud vahemiku aktiivsete veergude väärtuste järgi." +msgstr "Read sorditakse valitud vahemiku aktiivsete veergude väärtuste järgi." #. aU8Mg #: sc/uiconfig/scalc/ui/sortoptionspage.ui:400 @@ -30322,10 +30315,9 @@ #. APEaE #: sc/uiconfig/scalc/ui/sortoptionspage.ui:410 -#, fuzzy msgctxt "sortoptionspage|extended_tip|leftright" msgid "Sorts columns by the values in the active rows of the selected range." -msgstr " Veerud sorditakse valitud vahemiku aktiivsete ridade väärtuste järgi." +msgstr "Veerud sorditakse valitud vahemiku aktiivsete ridade väärtuste järgi." #. nbPgX #: sc/uiconfig/scalc/ui/sortoptionspage.ui:427 @@ -30335,10 +30327,9 @@ #. 7AH6P #: sc/uiconfig/scalc/ui/sortoptionspage.ui:442 -#, fuzzy msgctxt "sortoptionspage|extended_tip|SortOptionsPage" msgid "Sets additional sorting options." -msgstr " Määrab täiendavad sortimise sätted." +msgstr "Määrab täiendavad sortimise sätted." #. qAEt6 #: sc/uiconfig/scalc/ui/sorttransformationentry.ui:22 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/starmath/messages.po libreoffice-7.1.3~rc2/translations/source/et/starmath/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/starmath/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/starmath/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566122839.000000\n" #. GrDhX @@ -921,7 +921,7 @@ #: starmath/inc/strings.hrc:115 msgctxt "RID_OPERX_HELP" msgid "General operator" -msgstr "" +msgstr "Üldine operaator" #. EZ2X2 #: starmath/inc/strings.hrc:116 @@ -1695,25 +1695,25 @@ #: starmath/inc/strings.hrc:244 msgctxt "RID_EVALUATEX_HELP" msgid "Evaluate" -msgstr "" +msgstr "Arvutus" #. vfpuY #: starmath/inc/strings.hrc:245 msgctxt "RID_EVALUATE_FROMX_HELP" msgid "Evaluate Subscript Bottom" -msgstr "" +msgstr "Arvutus alaindeksiga" #. Q6G2q #: starmath/inc/strings.hrc:246 msgctxt "RID_EVALUATE_TOX_HELP" msgid "Evaluate Superscript Top" -msgstr "" +msgstr "Arvutus ülaindeksiga" #. 6NGAj #: starmath/inc/strings.hrc:247 msgctxt "RID_EVALUATE_FROMTOX_HELP" msgid "Evaluate Sup/Sub script" -msgstr "" +msgstr "Arvutus üla- ja alaindeksiga" #. wePDA #: starmath/inc/strings.hrc:248 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/svx/messages.po libreoffice-7.1.3~rc2/translations/source/et/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566122814.000000\n" #. 3GkZj @@ -584,13 +584,13 @@ #: include/svx/strings.hrc:119 msgctxt "STR_ObjNameSingulGRAFEMF" msgid "PDF" -msgstr "" +msgstr "PDF" #. tc3Jb #: include/svx/strings.hrc:120 msgctxt "STR_ObjNamePluralGRAFEMF" msgid "PDFs" -msgstr "" +msgstr "PDF-i" #. b3os5 #: include/svx/strings.hrc:121 @@ -6480,7 +6480,7 @@ #: include/svx/strings.hrc:1169 msgctxt "RID_STR_HIDDEN" msgid "Hidden" -msgstr "" +msgstr "Peidetud" #. DnoDH #: include/svx/strings.hrc:1170 @@ -7235,7 +7235,7 @@ #: include/svx/strings.hrc:1295 msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART" msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Kõiki SmartArt-elemente polnud võimalik laadida. Faili salvestamine Microsoft Office 2010 või uuemas versioonis väldiks seda probleemi." #. Bc5Sg #: include/svx/strings.hrc:1296 @@ -7643,7 +7643,7 @@ #: include/svx/strings.hrc:1373 msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION" msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)" -msgstr "" +msgstr "$(CAPACITY) kiB ($(REDUCTION)% väiksem)" #. 8GqWz #: include/svx/strings.hrc:1374 @@ -10074,7 +10074,7 @@ #: include/svx/svxitems.hrc:69 msgctxt "RID_ATTR_NAMES" msgid "Page line-spacing" -msgstr "" +msgstr "Range paigutus" #. t2uX7 #: include/svx/svxitems.hrc:70 @@ -11364,7 +11364,7 @@ #: svx/inc/swframeposstrings.hrc:46 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Page text area top" -msgstr "" +msgstr "Lehekülje tekstiala ülaserv" #. vWEe2 #: svx/inc/swframeposstrings.hrc:47 @@ -12384,7 +12384,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:50 msgctxt "acceptrejectchangesdialog|extended_tip|reject" msgid "Rejects the selected change and removes the highlighting from the change in the document." -msgstr "" +msgstr "Hülgab valitud muudatuse ja eemaldab dokumendis esiletõstu märgistuse." #. CY86f #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:63 @@ -12414,7 +12414,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110 msgctxt "acceptrejectchangesdialog|extended_tip|undo" msgid "Reverse the last Accept or Reject command." -msgstr "" +msgstr "Ennistab eelmise nõustumis- või hülgamiskäsu." #. Jyka9 #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169 @@ -13104,7 +13104,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:506 msgctxt "asianphoneticguidedialog|extended_tip|AsianPhoneticGuideDialog" msgid "Allows you to add comments next to Asian characters to serve as a pronunciation guide." -msgstr "" +msgstr "Võimaldab lisada Ida-Aasia märkide juurde hääldusjuhiseid." #. pCrNF #: svx/uiconfig/ui/cellmenu.ui:12 @@ -13966,6 +13966,9 @@ "You can soon find the report at:\n" "https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" msgstr "" +"Kokkujooksmise raport on edukalt üles laaditud.\n" +"Peatselt on see leitav aadressil\n" +"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" #. DDKL6 #: svx/uiconfig/ui/crashreportdlg.ui:11 @@ -13995,7 +13998,7 @@ #: svx/uiconfig/ui/crashreportdlg.ui:50 msgctxt "crashreportdlg|btn_cancel" msgid "Do _Not Send" -msgstr "" +msgstr "Ä_ra saada" #. afExy #: svx/uiconfig/ui/crashreportdlg.ui:64 @@ -16045,13 +16048,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:112 msgctxt "findreplacedialog|extended_tip|searchterm" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Sisesta tekst või stiil, mida soovid leida, või vali loendist mõni varasem otsing." #. qZujP #: svx/uiconfig/ui/findreplacedialog.ui:128 msgctxt "findreplacedialog|extended_tip|searchlist" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Sisesta tekst või stiil, mida soovid leida, või vali loendist mõni varasem otsing." #. bathy #: svx/uiconfig/ui/findreplacedialog.ui:150 @@ -16069,7 +16072,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:214 msgctxt "findreplacedialog|extended_tip|matchcase" msgid "Distinguishes between uppercase and lowercase characters." -msgstr "" +msgstr "Määrab, et suur- ja väiketähti peetakse erinevateks." #. EP8P3 #: svx/uiconfig/ui/findreplacedialog.ui:226 @@ -16111,7 +16114,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:331 msgctxt "findreplacedialog|label1" msgid "Search For" -msgstr "" +msgstr "Otsitav:" #. YCdJW #: svx/uiconfig/ui/findreplacedialog.ui:391 @@ -16255,7 +16258,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:849 msgctxt "findreplacedialog|includediacritics" msgid "Diacritic-_sensitive" -msgstr "" +msgstr "Diakriitikute eristamine" #. J8Zou #: svx/uiconfig/ui/findreplacedialog.ui:864 @@ -16333,7 +16336,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1025 msgctxt "findreplacedialog|notes" msgid "Comme_nts" -msgstr "" +msgstr "Märkustest" #. z68pk #: svx/uiconfig/ui/findreplacedialog.ui:1034 @@ -17365,7 +17368,7 @@ #: svx/uiconfig/ui/imapdialog.ui:639 msgctxt "imapdialog|extended_tip|ImapDialog" msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots." -msgstr "" +msgstr "Võimaldab dokumendis leiduva pildi või pildirühma teatud aladele, niinimetatud klõpsatavatele piirkondadele omistada URL-e. Hüperpilt ongi ühe või enama klõpsatava piirkonna kogum." #. aHyrG #: svx/uiconfig/ui/imapmenu.ui:12 @@ -18991,7 +18994,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:146 msgctxt "sidebarglow|glow" msgid "Glow" -msgstr "" +msgstr "Sära" #. SABEF #: svx/uiconfig/ui/sidebareffect.ui:182 @@ -19003,7 +19006,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:213 msgctxt "sidebarsoftedge|softedge" msgid "Soft Edge" -msgstr "" +msgstr "Servapehmendus" #. BEqw7 #: svx/uiconfig/ui/sidebarempty.ui:26 @@ -19039,7 +19042,7 @@ #: svx/uiconfig/ui/sidebargallery.ui:354 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME" msgid "New..." -msgstr "" +msgstr "Uus..." #. RfChe #: svx/uiconfig/ui/sidebargallery.ui:373 @@ -19471,7 +19474,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:186 msgctxt "sidebarpossize|transparencylabel" msgid "Transparency:" -msgstr "" +msgstr "Läbipaistvus:" #. nLGDu #: svx/uiconfig/ui/sidebarpossize.ui:196 @@ -19874,7 +19877,7 @@ #: svx/uiconfig/ui/zoommenu.ui:16 msgctxt "zoommenu|extended_tip|page" msgid "Displays the entire page on your screen." -msgstr "" +msgstr "Ekraanil kuvatakse tervet lehekülge." #. gZGXQ #: svx/uiconfig/ui/zoommenu.ui:25 @@ -19886,7 +19889,7 @@ #: svx/uiconfig/ui/zoommenu.ui:29 msgctxt "zoommenu|extended_tip|width" msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible." -msgstr "" +msgstr "Kuvatakse dokumendi lehekülge kogu laiuses. Lehekülje ülemine ja alumine äär ei pruugi olla nähtavad." #. ZQxa5 #: svx/uiconfig/ui/zoommenu.ui:38 @@ -19922,7 +19925,7 @@ #: svx/uiconfig/ui/zoommenu.ui:71 msgctxt "zoommenu|extended_tip|100" msgid "Displays the document at its actual size." -msgstr "" +msgstr "Näitab dokumenti selle tegelikus suuruses." #. DjAKP #: svx/uiconfig/ui/zoommenu.ui:80 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/sw/messages.po libreoffice-7.1.3~rc2/translations/source/et/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-01-25 19:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566165825.000000\n" #. v3oJv @@ -80,7 +80,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:26 msgctxt "STR_NON_INTERACTIVE_FORMS" msgid "An input form is not interactive." -msgstr "" +msgstr "Sisestusvorm pole interaktiivne." #. Z6sHT #: sw/inc/AccessibilityCheckStrings.hrc:27 @@ -98,13 +98,13 @@ #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "" +msgstr "Pealkirjatasemed tuleks järjestikku hoida. %LEVEL_PREV%. pealkirjatasemele ei tohiks järgneda %LEVEL_CURRENT%." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_FONTWORKS" msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text." -msgstr "" +msgstr "Ilukirjaobjekte tuleks dokumentides vältida. Kasuta neid ainult näidiste või muu sisulise tähenduseta teksti jaoks." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 @@ -639,13 +639,13 @@ #: sw/inc/inspectorproperties.hrc:37 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Inner Line Width" -msgstr "" +msgstr "Sisejoone jämedus" #. yrAyD #: sw/inc/inspectorproperties.hrc:38 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Distance" -msgstr "" +msgstr "Joone kaugus" #. jS4tt #: sw/inc/inspectorproperties.hrc:39 @@ -663,7 +663,7 @@ #: sw/inc/inspectorproperties.hrc:41 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outer Line Width" -msgstr "" +msgstr "Välisjoone jämedus" #. c7Qfp #: sw/inc/inspectorproperties.hrc:42 @@ -699,31 +699,31 @@ #: sw/inc/inspectorproperties.hrc:47 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Escapement" -msgstr "" +msgstr "Märk autom. kõrgemal/madalamal" #. sGjrW #: sw/inc/inspectorproperties.hrc:48 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Kerning" -msgstr "" +msgstr "Märkide automaatne koondamine" #. jP3gx #: sw/inc/inspectorproperties.hrc:49 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Style Name" -msgstr "" +msgstr "Märgi autom. stiili nimi" #. BB8yt #: sw/inc/inspectorproperties.hrc:50 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Back Color" -msgstr "" +msgstr "Märgi taustavärv" #. op3aQ #: sw/inc/inspectorproperties.hrc:51 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Back Transparent" -msgstr "" +msgstr "Märgi taust läbipaistev" #. a6CtM #: sw/inc/inspectorproperties.hrc:52 @@ -747,7 +747,7 @@ #: sw/inc/inspectorproperties.hrc:55 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Case Map" -msgstr "" +msgstr "Märgi tähesuurus" #. AxVck #: sw/inc/inspectorproperties.hrc:56 @@ -759,49 +759,49 @@ #: sw/inc/inspectorproperties.hrc:57 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine is On" -msgstr "" +msgstr "Märkide kahes reas kirjutamine (Ida-Aasia)" #. 5kpZt #: sw/inc/inspectorproperties.hrc:58 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Prefix" -msgstr "" +msgstr "Märkide kahes reas kirjutamise algusmärk" #. nq7ZN #: sw/inc/inspectorproperties.hrc:59 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Suffix" -msgstr "" +msgstr "Märkide kahes reas kirjutamise lõpumärk" #. EYEqN #: sw/inc/inspectorproperties.hrc:60 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Contoured" -msgstr "" +msgstr "Märgi kontuur" #. ZBAH9 #: sw/inc/inspectorproperties.hrc:61 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Crossed Out" -msgstr "" +msgstr "Märgi läbikriipsutus" #. gABwu #: sw/inc/inspectorproperties.hrc:62 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height" -msgstr "" +msgstr "Märgi kõrguse erinevus" #. ccULG #: sw/inc/inspectorproperties.hrc:63 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height Asian" -msgstr "" +msgstr "Märgi kõrguse erinevus (Ida-Aasia)" #. LVABm #: sw/inc/inspectorproperties.hrc:64 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height Complex" -msgstr "" +msgstr "Märgi kõrguse erinevus (CTL)" #. B2CTr #: sw/inc/inspectorproperties.hrc:65 @@ -813,13 +813,13 @@ #: sw/inc/inspectorproperties.hrc:66 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement" -msgstr "" +msgstr "Märk kõrgemal/madalamal" #. QikGB #: sw/inc/inspectorproperties.hrc:67 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement Height" -msgstr "" +msgstr "Märgi suhteline fondi suurus" #. t2UDu #: sw/inc/inspectorproperties.hrc:68 @@ -885,37 +885,37 @@ #: sw/inc/inspectorproperties.hrc:78 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch" -msgstr "" +msgstr "Märgi font fiks./muutuva laiusega" #. kHGrk #: sw/inc/inspectorproperties.hrc:79 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch Asian" -msgstr "" +msgstr "Märgi font fiks./muutuva laiusega (Ida-Aasia)" #. KVfXe #: sw/inc/inspectorproperties.hrc:80 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch Complex" -msgstr "" +msgstr "Märgi font fiks./muutuva laiusega (CTL)" #. CQWM3 #: sw/inc/inspectorproperties.hrc:81 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name" -msgstr "" +msgstr "Märgi fondistiili nimi" #. h6gAC #: sw/inc/inspectorproperties.hrc:82 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name Asian" -msgstr "" +msgstr "Märgi fondistiili nimi (Ida-Aasia)" #. Tm4Rb #: sw/inc/inspectorproperties.hrc:83 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Style Name Complex" -msgstr "" +msgstr "Märgi fondistiili nimi (CTL)" #. AQzKB #: sw/inc/inspectorproperties.hrc:84 @@ -939,25 +939,25 @@ #: sw/inc/inspectorproperties.hrc:87 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Hidden" -msgstr "" +msgstr "Märk peidetud" #. TkovG #: sw/inc/inspectorproperties.hrc:88 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Highlight" -msgstr "" +msgstr "Märgi esiletõst" #. T44dN #: sw/inc/inspectorproperties.hrc:89 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Interoperability Grab Bag" -msgstr "" +msgstr "Märgi ühilduvuselemendid" #. EzwnG #: sw/inc/inspectorproperties.hrc:90 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Kerning" -msgstr "" +msgstr "Märkide koondamine" #. CFpCB #: sw/inc/inspectorproperties.hrc:91 @@ -993,25 +993,25 @@ #: sw/inc/inspectorproperties.hrc:96 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char No Hyphenation" -msgstr "" +msgstr "Märkidel poolituskeeld" #. ioDYE #: sw/inc/inspectorproperties.hrc:97 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline" -msgstr "" +msgstr "Märgi ülakriipsutus" #. GBMFT #: sw/inc/inspectorproperties.hrc:98 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Color" -msgstr "" +msgstr "Märgi ülakriipsutuse värv" #. 5y7T3 #: sw/inc/inspectorproperties.hrc:99 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Has Color" -msgstr "" +msgstr "Märgi ülakriipsutuse värvi olemasolu" #. BEeWf #: sw/inc/inspectorproperties.hrc:100 @@ -1035,19 +1035,19 @@ #: sw/inc/inspectorproperties.hrc:103 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height" -msgstr "" +msgstr "Märgi suhteline kõrgus" #. j4w85 #: sw/inc/inspectorproperties.hrc:104 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Asian" -msgstr "" +msgstr "Märgi suhteline kõrgus (Ida-Aasia)" #. C5Ds3 #: sw/inc/inspectorproperties.hrc:105 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Complex" -msgstr "" +msgstr "Märgi suhteline kõrgus (CTL)" #. ABhRa #: sw/inc/inspectorproperties.hrc:106 @@ -1089,19 +1089,19 @@ #: sw/inc/inspectorproperties.hrc:112 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shading Value" -msgstr "" +msgstr "Märgi varjustuse väärtus" #. 9sRCG #: sw/inc/inspectorproperties.hrc:113 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadow Format" -msgstr "" +msgstr "Märgi varju vorming" #. tKjaF #: sw/inc/inspectorproperties.hrc:114 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadowed" -msgstr "" +msgstr "Märgi vari" #. H9st9 #: sw/inc/inspectorproperties.hrc:115 @@ -1137,7 +1137,7 @@ #: sw/inc/inspectorproperties.hrc:120 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Transparence" -msgstr "" +msgstr "Märgi läbipaistvus" #. CAJEC #: sw/inc/inspectorproperties.hrc:121 @@ -1155,7 +1155,7 @@ #: sw/inc/inspectorproperties.hrc:123 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Has Color" -msgstr "" +msgstr "Märgi allakriipsutuse värvi olemasolu" #. QRCs4 #: sw/inc/inspectorproperties.hrc:124 @@ -1179,49 +1179,49 @@ #: sw/inc/inspectorproperties.hrc:127 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Word Mode" -msgstr "" +msgstr "Märkide kriipsutamine sõnade kaupa" #. z8NA6 #: sw/inc/inspectorproperties.hrc:128 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Continuing Previous Tree" -msgstr "" +msgstr "Jätkab eelmist puustruktuuri" #. 4BCE7 #: sw/inc/inspectorproperties.hrc:129 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Display Name" -msgstr "" +msgstr "Kuvatav nimi" #. JXrsY #: sw/inc/inspectorproperties.hrc:130 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index" -msgstr "" +msgstr "Dokumendi register" #. A3nea #: sw/inc/inspectorproperties.hrc:131 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index Mark" -msgstr "" +msgstr "Dokumendi registri tähis" #. XgFaZ #: sw/inc/inspectorproperties.hrc:132 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Char Style Name" -msgstr "" +msgstr "Süvisinitsiaali märgistiili nimi" #. BtV5G #: sw/inc/inspectorproperties.hrc:133 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Format" -msgstr "" +msgstr "Süvisinitsiaali vorming" #. SnMZX #: sw/inc/inspectorproperties.hrc:134 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Whole Word" -msgstr "" +msgstr "Süvisinitsiaalina terve sõna" #. LXhoV #: sw/inc/inspectorproperties.hrc:135 @@ -1233,91 +1233,91 @@ #: sw/inc/inspectorproperties.hrc:136 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Background" -msgstr "" +msgstr "Täite taust" #. TvMCc #: sw/inc/inspectorproperties.hrc:137 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap" -msgstr "" +msgstr "Täite bittraster" #. GWWrC #: sw/inc/inspectorproperties.hrc:138 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Logical Size" -msgstr "" +msgstr "Täite bittrastri loogiline suurus" #. r2Aif #: sw/inc/inspectorproperties.hrc:139 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Mode" -msgstr "" +msgstr "Täite bittrastri režiim" #. FZtcW #: sw/inc/inspectorproperties.hrc:140 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Name" -msgstr "" +msgstr "Täite bittrastri nimi" #. C4jU5 #: sw/inc/inspectorproperties.hrc:141 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset X" -msgstr "" +msgstr "Täite bittrastri X-nihe" #. w2UVD #: sw/inc/inspectorproperties.hrc:142 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset Y" -msgstr "" +msgstr "Täite bittrastri Y-nihe" #. ZTKw7 #: sw/inc/inspectorproperties.hrc:143 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset X" -msgstr "" +msgstr "Täite bittrastri asukoha X-nihe" #. BVBvB #: sw/inc/inspectorproperties.hrc:144 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset Y" -msgstr "" +msgstr "Täite bittrastri asukoha Y-nihe" #. CzVxv #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "" +msgstr "Täite bittrastri ristküliku punkt" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "" +msgstr "Täite bittrastri X-suurus" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "" +msgstr "Täite bittrastri Y-suurus" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "" +msgstr "Täite bittrastri venitamine" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Tile" -msgstr "" +msgstr "Täite bittrastri paanimine" #. 6iSjs #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "" +msgstr "Täite bittrastri URL" #. Fd28G #: sw/inc/inspectorproperties.hrc:151 @@ -1371,19 +1371,19 @@ #: sw/inc/inspectorproperties.hrc:159 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence" -msgstr "" +msgstr "Täite läbipaistvus" #. H9v5s #: sw/inc/inspectorproperties.hrc:160 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient" -msgstr "" +msgstr "Täite läbipaistvusüleminek" #. pZH4P #: sw/inc/inspectorproperties.hrc:161 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient Name" -msgstr "" +msgstr "Täite läbipaistvusülemineku nimi" #. WqmBo #: sw/inc/inspectorproperties.hrc:162 @@ -1431,13 +1431,13 @@ #: sw/inc/inspectorproperties.hrc:169 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Auto Update" -msgstr "" +msgstr "On automaatselt uuendatav" #. DYXxe #: sw/inc/inspectorproperties.hrc:170 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Physical" -msgstr "" +msgstr "On füüsiline" #. AdAo8 #: sw/inc/inspectorproperties.hrc:171 @@ -1455,7 +1455,7 @@ #: sw/inc/inspectorproperties.hrc:173 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Auto Format" -msgstr "" +msgstr "Loendi automaatvormindus" #. fBeTS #: sw/inc/inspectorproperties.hrc:174 @@ -1467,19 +1467,19 @@ #: sw/inc/inspectorproperties.hrc:175 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Label String" -msgstr "" +msgstr "Loendi sildisõne" #. n9DQD #: sw/inc/inspectorproperties.hrc:176 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Nested Text Content" -msgstr "" +msgstr "Pesastatud tekstisisu" #. AzBDm #: sw/inc/inspectorproperties.hrc:177 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering is Number" -msgstr "" +msgstr "Nummerdus on arvuline" #. WsqfF #: sw/inc/inspectorproperties.hrc:178 @@ -1491,25 +1491,25 @@ #: sw/inc/inspectorproperties.hrc:179 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Rules" -msgstr "" +msgstr "Nummerdusreeglid" #. nTMoh #: sw/inc/inspectorproperties.hrc:180 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Start Value" -msgstr "" +msgstr "Nummerduse algväärtus" #. KYbBB #: sw/inc/inspectorproperties.hrc:181 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Style Name" -msgstr "" +msgstr "Nummerdusstiili nimi" #. zrVDM #: sw/inc/inspectorproperties.hrc:182 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Content Visible" -msgstr "" +msgstr "Pealkirjale järgnev sisu nähtav" #. NNuo4 #: sw/inc/inspectorproperties.hrc:183 @@ -1521,13 +1521,13 @@ #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Desc Name" -msgstr "" +msgstr "Leheküljepiiri leheküljestiil" #. wLGct #: sw/inc/inspectorproperties.hrc:185 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Number Offset" -msgstr "" +msgstr "Leheküljenumbri nihe" #. ryHzy #: sw/inc/inspectorproperties.hrc:186 @@ -1545,13 +1545,13 @@ #: sw/inc/inspectorproperties.hrc:188 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Adjust" -msgstr "" +msgstr "Lõigu joondus" #. SyTxG #: sw/inc/inspectorproperties.hrc:189 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Auto Style Name" -msgstr "" +msgstr "Lõigu autom. stiili nimi" #. WHaym #: sw/inc/inspectorproperties.hrc:190 @@ -1587,7 +1587,7 @@ #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Transparent" -msgstr "" +msgstr "Lõigu taust läbipaistev" #. TuYLo #: sw/inc/inspectorproperties.hrc:196 @@ -1599,31 +1599,31 @@ #: sw/inc/inspectorproperties.hrc:197 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin Relative" -msgstr "" +msgstr "Lõigu alaveeris suhteline" #. rCWLX #: sw/inc/inspectorproperties.hrc:198 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Chapter Numbering Level" -msgstr "" +msgstr "Lõigu peatükinummerduse tase" #. GLxXC #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Conditional Style Name" -msgstr "" +msgstr "Lõigu tingimusliku stiili nimi" #. AFGoP #: sw/inc/inspectorproperties.hrc:200 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Context Margin" -msgstr "" +msgstr "Lõiguvahet ei lisata sama stiiliga lõikude vahele" #. dpsFJ #: sw/inc/inspectorproperties.hrc:201 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Expand Single Word" -msgstr "" +msgstr "Lõigu viimase sõna laiendamine" #. iD2DL #: sw/inc/inspectorproperties.hrc:202 @@ -1635,25 +1635,25 @@ #: sw/inc/inspectorproperties.hrc:203 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent Relative" -msgstr "" +msgstr "Lõigu esimese rea taane suhteline" #. z47wS #: sw/inc/inspectorproperties.hrc:204 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Hyphens" -msgstr "" +msgstr "Lõigus järjest poolitusega lõppevaid ridu" #. nFxKY #: sw/inc/inspectorproperties.hrc:205 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Leading Chars" -msgstr "" +msgstr "Lõigus poolitusel rea lõppu jäetavaid märke" #. agdzD #: sw/inc/inspectorproperties.hrc:206 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Trailing Chars" -msgstr "" +msgstr "Lõigus poolitusel rea algusse jäetavaid märke" #. hj7Fp #: sw/inc/inspectorproperties.hrc:207 @@ -1665,37 +1665,37 @@ #: sw/inc/inspectorproperties.hrc:208 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "" +msgstr "Lõigu ühilduvuselemendid" #. fCGA4 #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Auto First Line Indent" -msgstr "" +msgstr "Lõigul on autom. esimese rea taane" #. Q68Bx #: sw/inc/inspectorproperties.hrc:210 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Character Distance" -msgstr "" +msgstr "Lõigus lisatakse vahe Ida-Aasia ja muu teksti vahele" #. FGVAd #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "" +msgstr "Lõigu äärised ühendatakse järgmisega" #. tBy9h #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Forbidden Rules" -msgstr "" +msgstr "Lõigus rakendatakse keelatud märkide loendit (Ida-Aasia)" #. yZZSA #: sw/inc/inspectorproperties.hrc:213 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hanging Punctuation" -msgstr "" +msgstr "Lõigus lubatakse tekstialast väljas kirjavahemärke (Ida-Aasia)" #. dDgrE #: sw/inc/inspectorproperties.hrc:214 @@ -1707,7 +1707,7 @@ #: sw/inc/inspectorproperties.hrc:215 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Numbering Restart" -msgstr "" +msgstr "Lõigust taasalustatakse nummerdust" #. Mnm2C #: sw/inc/inspectorproperties.hrc:216 @@ -1719,7 +1719,7 @@ #: sw/inc/inspectorproperties.hrc:217 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Last Line Adjust" -msgstr "" +msgstr "Lõigu viimase rea joondus" #. 6CaHh #: sw/inc/inspectorproperties.hrc:218 @@ -1731,19 +1731,19 @@ #: sw/inc/inspectorproperties.hrc:219 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin Relative" -msgstr "" +msgstr "Lõigu vasakveeris suhteline" #. G43XB #: sw/inc/inspectorproperties.hrc:220 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Count" -msgstr "" +msgstr "Lõigu read nummerdatakse" #. EjnTM #: sw/inc/inspectorproperties.hrc:221 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Start Value" -msgstr "" +msgstr "Lõigu reanummerduse algväärtus" #. eo9RR #: sw/inc/inspectorproperties.hrc:222 @@ -1755,7 +1755,7 @@ #: sw/inc/inspectorproperties.hrc:223 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Orphans" -msgstr "" +msgstr "Lõigu orbread" #. FmuG6 #: sw/inc/inspectorproperties.hrc:224 @@ -1773,19 +1773,19 @@ #: sw/inc/inspectorproperties.hrc:226 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin Relative" -msgstr "" +msgstr "Lõigu paremveeris suhteline" #. FC9mA #: sw/inc/inspectorproperties.hrc:227 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Shadow Format" -msgstr "" +msgstr "Lõigu varju vorming" #. VXwD2 #: sw/inc/inspectorproperties.hrc:228 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Split" -msgstr "" +msgstr "Lõigu ridu võib eraldada" #. gXoCF #: sw/inc/inspectorproperties.hrc:229 @@ -1797,7 +1797,7 @@ #: sw/inc/inspectorproperties.hrc:230 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Tab Stops" -msgstr "" +msgstr "Lõigu tabelduskohad" #. reW9Y #: sw/inc/inspectorproperties.hrc:231 @@ -1809,31 +1809,31 @@ #: sw/inc/inspectorproperties.hrc:232 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "" +msgstr "Lõigu ülaveeris suhteline" #. pUjFj #: sw/inc/inspectorproperties.hrc:233 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para User Defined Attributes" -msgstr "" +msgstr "Lõigu kasutajamääratud omadused" #. WvA9C #: sw/inc/inspectorproperties.hrc:234 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Vertical Alignment" -msgstr "" +msgstr "Lõigu vertikaalne joondus" #. u8Jc6 #: sw/inc/inspectorproperties.hrc:235 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Widows" -msgstr "" +msgstr "Lõigu leskread" #. cdw2Q #: sw/inc/inspectorproperties.hrc:236 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Reference Mark" -msgstr "" +msgstr "Viitetähis" #. NDEck #: sw/inc/inspectorproperties.hrc:237 @@ -1857,7 +1857,7 @@ #: sw/inc/inspectorproperties.hrc:240 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Adjust" -msgstr "" +msgstr "Foneetilise teksti joondus" #. 3WwCU #: sw/inc/inspectorproperties.hrc:241 @@ -1869,13 +1869,13 @@ #: sw/inc/inspectorproperties.hrc:242 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby is Above" -msgstr "" +msgstr "Foneetiline tekst üleval" #. w8jgs #: sw/inc/inspectorproperties.hrc:243 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Position" -msgstr "" +msgstr "Foneetilise teksti paigutus" #. ZREEa #: sw/inc/inspectorproperties.hrc:244 @@ -1893,43 +1893,43 @@ #: sw/inc/inspectorproperties.hrc:246 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Style Interop Grab Bag" -msgstr "" +msgstr "Stiili ühilduvuselemendid" #. PV65u #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Field" -msgstr "" +msgstr "Tekstiväli" #. a6k8F #: sw/inc/inspectorproperties.hrc:248 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Frame" -msgstr "" +msgstr "Tekstipaneel" #. CNyuR #: sw/inc/inspectorproperties.hrc:249 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Paragraph" -msgstr "" +msgstr "Tekstilõik" #. nTTEM #: sw/inc/inspectorproperties.hrc:250 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Section" -msgstr "" +msgstr "Tekstisektsioon" #. VCADG #: sw/inc/inspectorproperties.hrc:251 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Table" -msgstr "" +msgstr "Tekstitabel" #. hDjMA #: sw/inc/inspectorproperties.hrc:252 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text User Defined Attributes" -msgstr "" +msgstr "Teksti kasutajamääratud omadused" #. ZG6rS #: sw/inc/inspectorproperties.hrc:253 @@ -1959,7 +1959,7 @@ #: sw/inc/inspectorproperties.hrc:257 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Writing Mode" -msgstr "" +msgstr "Kirjutamisrežiim" #. QBR3s #: sw/inc/mmaddressblockpage.hrc:27 @@ -8138,13 +8138,13 @@ #: sw/inc/strings.hrc:1105 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "" +msgstr "Range paigutus" #. Cui3U #: sw/inc/strings.hrc:1106 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "" +msgstr "Mitte range paigutus" #. 4RL9X #: sw/inc/strings.hrc:1107 @@ -12594,10 +12594,9 @@ #. hsw2F #: sw/uiconfig/swriter/ui/dropcapspage.ui:154 -#, fuzzy msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS" msgid "Enter the number of characters to convert to drop caps." -msgstr "Sisesta süvisinitsiaalideks muudetavate märkide arv. " +msgstr "Sisesta süvisinitsiaalideks muudetavate märkide arv." #. mTJvq #: sw/uiconfig/swriter/ui/dropcapspage.ui:173 @@ -13775,10 +13774,9 @@ #. vXdjr #: sw/uiconfig/swriter/ui/findentrydialog.ui:151 -#, fuzzy msgctxt "findentrydialog|extended_tip|findin" msgid "Restricts the search to one data field." -msgstr "Piirab otsingu ühe andmeväljaga. " +msgstr "Piirab otsingu ühe andmeväljaga." #. LA7X8 #: sw/uiconfig/swriter/ui/findentrydialog.ui:170 @@ -13838,7 +13836,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:302 msgctxt "flddbpage|label2" msgid "Database S_election" -msgstr "" +msgstr "Andmebaasi valimine" #. JeBVb #: sw/uiconfig/swriter/ui/flddbpage.ui:328 @@ -13886,13 +13884,13 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:440 msgctxt "flddbpage|extended_tip|format" msgid "Lists the available user-defined formats." -msgstr "" +msgstr "Loetleb saadaolevad kasutaja määratud vormingud." #. mY32p #: sw/uiconfig/swriter/ui/flddbpage.ui:460 msgctxt "flddbpage|extended_tip|numformat" msgid "Lists the available user-defined formats." -msgstr "" +msgstr "Loetleb saadaolevad kasutaja määratud vormingud." #. LFxBU #: sw/uiconfig/swriter/ui/flddbpage.ui:484 @@ -13922,7 +13920,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:169 msgctxt "flddocinfopage|label2" msgid "_Select" -msgstr "" +msgstr "Valik" #. oGvBL #: sw/uiconfig/swriter/ui/flddocinfopage.ui:237 @@ -13934,7 +13932,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:251 msgctxt "flddocinfopage|fixed" msgid "Fi_xed content" -msgstr "" +msgstr "Fikseeritud sisu" #. BojDo #: sw/uiconfig/swriter/ui/flddocinfopage.ui:260 @@ -13946,7 +13944,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:278 msgctxt "flddocinfopage|label3" msgid "_Format" -msgstr "" +msgstr "Vorming" #. BmH6G #: sw/uiconfig/swriter/ui/flddocumentpage.ui:103 @@ -13970,7 +13968,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:190 msgctxt "flddocumentpage|label2" msgid "_Select" -msgstr "" +msgstr "Valik" #. xtXnr #: sw/uiconfig/swriter/ui/flddocumentpage.ui:267 @@ -13982,13 +13980,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:327 msgctxt "flddocumentpage|label3" msgid "_Format" -msgstr "" +msgstr "Vorming" #. k7KnK #: sw/uiconfig/swriter/ui/flddocumentpage.ui:343 msgctxt "flddocumentpage|fixed" msgid "Fi_xed content" -msgstr "" +msgstr "Fikseeritud sisu" #. TjKiH #: sw/uiconfig/swriter/ui/flddocumentpage.ui:352 @@ -14000,7 +13998,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:371 msgctxt "flddocumentpage|levelft" msgid "_Level" -msgstr "" +msgstr "_Tase" #. VX38D #: sw/uiconfig/swriter/ui/flddocumentpage.ui:389 @@ -14054,7 +14052,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:167 msgctxt "fldfuncpage|label4" msgid "_Select" -msgstr "" +msgstr "Valik" #. b3UqC #: sw/uiconfig/swriter/ui/fldfuncpage.ui:229 @@ -14066,7 +14064,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:242 msgctxt "fldfuncpage|label2" msgid "_Format" -msgstr "" +msgstr "Vorming" #. CGoTS #: sw/uiconfig/swriter/ui/fldfuncpage.ui:267 @@ -14234,13 +14232,13 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:329 msgctxt "fldrefpage|extended_tip|selecttip" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert." -msgstr "" +msgstr "Esitab tüübiloendis valitud väljatüübi jaoks saadaolevad väljad. Välja lisamiseks klõpsa väljal, vali loendist \"Viite sisu\" sobiv vorming ja seejärel klõpsa \"Lisa\"." #. BFEfh #: sw/uiconfig/swriter/ui/fldrefpage.ui:374 msgctxt "fldrefpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert." -msgstr "" +msgstr "Esitab tüübiloendis valitud väljatüübi jaoks saadaolevad väljad. Välja lisamiseks klõpsa väljal, vali loendist \"Viite sisu\" sobiv vorming ja seejärel klõpsa \"Lisa\"." #. AXSpR #: sw/uiconfig/swriter/ui/fldrefpage.ui:393 @@ -14300,7 +14298,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:214 msgctxt "fldvarpage|label2" msgid "_Select" -msgstr "" +msgstr "Valik" #. ZuuQf #: sw/uiconfig/swriter/ui/fldvarpage.ui:306 @@ -14318,7 +14316,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:371 msgctxt "fldvarpage|label3" msgid "_Format" -msgstr "" +msgstr "Vorming" #. qPpKb #: sw/uiconfig/swriter/ui/fldvarpage.ui:388 @@ -14342,7 +14340,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:445 msgctxt "fldvarpage|separatorft" msgid "Se_parator" -msgstr "" +msgstr "Eraldaja" #. wrAG3 #: sw/uiconfig/swriter/ui/fldvarpage.ui:460 @@ -17205,10 +17203,9 @@ #. XDgLr #: sw/uiconfig/swriter/ui/insertfootnote.ui:243 -#, fuzzy msgctxt "insertfootnote|extended_tip|choosecharacter" msgid "Inserts a special character as a footnote or endnote anchor." -msgstr "Määrab all- või lõpumärkuse ankruks erimärgi ." +msgstr "Määrab all- või lõpumärkuse ankruks erimärgi." #. g3wcX #: sw/uiconfig/swriter/ui/insertfootnote.ui:260 @@ -17448,7 +17445,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:248 msgctxt "inserttable|lbwarning" msgid "Warning : Large tables may adversely affect performance and compatibility" -msgstr "" +msgstr "Hoiatus: suured tabelid võivad põhjustada jõudlus- ja ühilduvusprobleeme." #. M2tGB #: sw/uiconfig/swriter/ui/inserttable.ui:264 @@ -18090,7 +18087,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:239 msgctxt "extended_tip|serverauthentication" msgid "Opens the Server Authentication dialog where you can specify the server authentication settings for secure email." -msgstr "" +msgstr "Avab serveri autentimisviisi dialoogi, kus saab määrata serveri autentimise sätted turvalise e-posti jaoks." #. AqgAF #: sw/uiconfig/swriter/ui/mailconfigpage.ui:263 @@ -18120,7 +18117,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:313 msgctxt "extended_tip|secure" msgid "When available, uses a secure connection to send emails." -msgstr "" +msgstr "Võimaluse korral kasutatakse e-kirjade saatmiseks turvalist ühendust." #. U82eq #: sw/uiconfig/swriter/ui/mailconfigpage.ui:332 @@ -18144,7 +18141,7 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:384 msgctxt "extended_tip|MailConfigPage" msgid "Specifies the user information and server settings for when you send form letters as email messages." -msgstr "" +msgstr "Määrab kasutaja andmed ja serveri sätted tüüpkirjade saatmisel e-postiga." #. RyDB6 #: sw/uiconfig/swriter/ui/mailmerge.ui:16 @@ -19164,7 +19161,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:140 msgctxt "mmresultemaildialog|extended_tip|mailto" msgid "Select the database field that contains the email address of the recipient." -msgstr "" +msgstr "Vali andmebaasi väli, mis sisaldab saajate e-postiaadresse." #. H6VrM #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:151 @@ -19974,7 +19971,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189 msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT" msgid "Outline Content Visibility" -msgstr "" +msgstr "Pealkirjale järgneva sisu nähtavus" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209 @@ -20058,7 +20055,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:375 msgctxt "navigatorpanel|spinbutton|tooltip_text" msgid "Go to Page" -msgstr "" +msgstr "Mine leheküljele" #. avLGA #: sw/uiconfig/swriter/ui/navigatorpanel.ui:382 @@ -20148,7 +20145,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:553 msgctxt "navigatorpanel|extended_tip|listbox" msgid "Shows or hides the Navigator list." -msgstr "" +msgstr "Peidab või kuvab Navigaatori loendi." #. ijAjg #: sw/uiconfig/swriter/ui/navigatorpanel.ui:576 @@ -23415,7 +23412,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:93 msgctxt "outlinepositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "Vali tase(med), mida soovid muuta." #. aBYaM #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:106 @@ -24883,7 +24880,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:511 msgctxt "extended tips | country" msgid "Type the country name" -msgstr "" +msgstr "Sisesta siia riigi nimi." #. y652V #: sw/uiconfig/swriter/ui/privateuserpage.ui:529 @@ -26003,7 +26000,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:188 msgctxt "sortdialog|extended_tip|up1" msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)." -msgstr "" +msgstr "Sordib kasvavas järjekorras (nt 1, 2, 3 või a, b, c)" #. yVqST #: sw/uiconfig/swriter/ui/sortdialog.ui:199 @@ -26015,7 +26012,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:213 msgctxt "sortdialog|extended_tip|down1" msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)." -msgstr "" +msgstr "Sordib kahanevas järjekorras (nt 9, 8, 7 või y, x, ü)" #. P9D2w #: sw/uiconfig/swriter/ui/sortdialog.ui:236 @@ -26027,7 +26024,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:249 msgctxt "sortdialog|extended_tip|up2" msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)." -msgstr "" +msgstr "Sordib kasvavas järjekorras (nt 1, 2, 3 või a, b, c)" #. haL8p #: sw/uiconfig/swriter/ui/sortdialog.ui:260 @@ -26039,7 +26036,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:274 msgctxt "sortdialog|extended_tip|down2" msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)." -msgstr "" +msgstr "Sordib kahanevas järjekorras (nt 9, 8, 7 või y, x, ü)" #. PHxUv #: sw/uiconfig/swriter/ui/sortdialog.ui:297 @@ -26051,7 +26048,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:310 msgctxt "sortdialog|extended_tip|up3" msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)." -msgstr "" +msgstr "Sordib kasvavas järjekorras (nt 1, 2, 3 või a, b, c)" #. zsggE #: sw/uiconfig/swriter/ui/sortdialog.ui:321 @@ -26063,7 +26060,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:335 msgctxt "sortdialog|extended_tip|down3" msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)." -msgstr "" +msgstr "Sordib kahanevas järjekorras (nt 9, 8, 7 või y, x, ü)" #. 3yLB6 #: sw/uiconfig/swriter/ui/sortdialog.ui:352 @@ -26129,7 +26126,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:496 msgctxt "sortdialog|extended_tip|typelb1" msgid "Select the sorting option that you want to use." -msgstr "" +msgstr "Vali kasutatavad sortimissätted." #. FxBUC #: sw/uiconfig/swriter/ui/sortdialog.ui:518 @@ -26141,7 +26138,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:519 msgctxt "sortdialog|extended_tip|typelb2" msgid "Select the sorting option that you want to use." -msgstr "" +msgstr "Vali kasutatavad sortimissätted." #. 9D3Mg #: sw/uiconfig/swriter/ui/sortdialog.ui:540 @@ -26153,7 +26150,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:541 msgctxt "sortdialog|extended_tip|typelb3" msgid "Select the sorting option that you want to use." -msgstr "" +msgstr "Vali kasutatavad sortimissätted." #. m3EJC #: sw/uiconfig/swriter/ui/sortdialog.ui:561 @@ -26243,7 +26240,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:847 msgctxt "sortdialog|extended_tip|langlb" msgid "Select the language that defines the sorting rules." -msgstr "" +msgstr "Vali keel, mille sortimisreegleid kasutada." #. gEcoc #: sw/uiconfig/swriter/ui/sortdialog.ui:858 @@ -26261,7 +26258,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:893 msgctxt "sortdialog|extended_tip|matchcase" msgid "Distinguishes between uppercase and lowercase letters when you sort a table. For Asian languages special handling applies." -msgstr "" +msgstr "Eristab tabeli sortimisel suur- ja väiketähti. Ida-Aasia keelte korral kehtivad erireeglid." #. Adw2Y #: sw/uiconfig/swriter/ui/sortdialog.ui:904 @@ -27671,7 +27668,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:238 msgctxt "tocentriespage|extended_tip|token" msgid "Displays the remainder of the Structure line." -msgstr "" +msgstr "Esitab struktuurirea ülejäänud osa." #. 6JdC4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:265 @@ -27803,7 +27800,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:539 msgctxt "tocentriespage|extended_tip|authfield" msgid "To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click Insert." -msgstr "" +msgstr "Struktuurireale kirje lisamiseks vali kirje, klõpsa struktuurirea tühjal väljal ja seejärel klõpsa Lisa." #. D6uWP #: sw/uiconfig/swriter/ui/tocentriespage.ui:558 @@ -28193,7 +28190,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:155 msgctxt "tocindexpage|extended_tip|type" msgid "Select the type of index that you want to insert or edit." -msgstr "" +msgstr "Vali lisatava või muudetava registri tüüp." #. 2M95E #: sw/uiconfig/swriter/ui/tocindexpage.ui:166 @@ -28301,7 +28298,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:437 msgctxt "tocindexpage|extended_tip|fromframes" msgid "Includes frames in the index." -msgstr "" +msgstr "Kaasab paneelid registrisse." #. Bab7X #: sw/uiconfig/swriter/ui/tocindexpage.ui:448 @@ -29040,7 +29037,7 @@ #: sw/uiconfig/swriter/ui/watermarkdialog.ui:250 msgctxt "watermarkdialog|extended_tip|FontBox" msgid "Select the font from the list." -msgstr "" +msgstr "Vali loendist font." #. aYVKV #: sw/uiconfig/swriter/ui/watermarkdialog.ui:285 @@ -29247,10 +29244,9 @@ #. 4pAFL #: sw/uiconfig/swriter/ui/wrappage.ui:210 -#, fuzzy msgctxt "wrappage|extended_tip|optimal" msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped." -msgstr "Mähib teksti automaatselt kas objekti äärisest vasakule, paremale või kõigile neljale küljele. Kui vahemaa objekti ja leheküljeveerise vahel on väiksem kui 2 cm, siis teksti ei mähita. " +msgstr "Mähib teksti automaatselt kas objekti äärisest vasakule, paremale või kõigile neljale küljele. Kui vahemaa objekti ja leheküljeveerise vahel on väiksem kui 2 cm, siis teksti ei mähita." #. FezRV #: sw/uiconfig/swriter/ui/wrappage.ui:227 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/vcl/messages.po libreoffice-7.1.3~rc2/translations/source/et/vcl/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/vcl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/vcl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-26 09:13+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" "Language-Team: Estonian \n" "Language: et\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566122224.000000\n" #. k5jTM @@ -2113,7 +2113,7 @@ #: vcl/uiconfig/ui/printdialog.ui:573 msgctxt "printdialog|extended_tip|pagerange" msgid "To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12." -msgstr "" +msgstr "Lehekülgede vahemiku printimiseks sisesta nt 3-6. Üksikute lehekülgede printimiseks sisesta nt 7,9,11. Vahemike ja üksiklehekülgede kombineerimiseks sisesta nt 3-6,8,10,12." #. Z5kiB #: vcl/uiconfig/ui/printdialog.ui:584 diff -Nru libreoffice-7.1.2~rc2/translations/source/et/xmlsecurity/messages.po libreoffice-7.1.3~rc2/translations/source/et/xmlsecurity/messages.po --- libreoffice-7.1.2~rc2/translations/source/et/xmlsecurity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/et/xmlsecurity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-09 17:34+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Mihkel Tõnnov \n" -"Language-Team: Estonian \n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566123195.000000\n" #. EyJrF @@ -436,7 +436,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:259 msgctxt "digitalsignaturesdialog|extended_tip|remove" msgid "Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF." -msgstr "" +msgstr "Eemaldab valitud allkirja loendist. PDF-i puhul eemaldab ka kõik järgnevad allkirjad." #. yQ9ju #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:271 @@ -490,7 +490,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:498 msgctxt "digitalsignaturesdialog|extended_tip|adescompliant" msgid "Prefers creating XAdES signatures for ODF and OOXML, PAdES signatures for PDF." -msgstr "" +msgstr "Määrab, et ODF-i ja OOXML-i jaoks tuleks eelistada XAdES- ning PDF-i jaoks PAdES-allkirjade loomist." #. znY8A #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:525 @@ -746,7 +746,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:264 msgctxt "selectcertificatedialog|extended_tip|description" msgid "Type a purpose for the signature." -msgstr "" +msgstr "Sisesta allkirja otstarve." #. snAQh #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:299 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/eu/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-03 13:12+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559371396.000000\n" #. NCRDD @@ -4380,7 +4380,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:114 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 "Datu-serieen datuak datoz hautatutako barrutiko elkarren alboko errenkadetatik. Sakabanatze-diagrametan, lehen datu-serieak serie guztietarako X balioak dituzte. Gainerako datu-serieak Y balio gisa erabiliko dira, balio bana serie bakoitzerako." +msgstr "Datu-serieen datuak datoz hautatutako barrutiko elkarren ondoko errenkadetatik. Sakabanatze-diagrametan, lehen datu-serieak serie guztietarako X balioak dituzte. Gainerako datu-serieak Y balio gisa erabiliko dira, balio bana serie bakoitzerako." #. wSDqF #: chart2/uiconfig/ui/tp_RangeChooser.ui:125 @@ -4392,7 +4392,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:135 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 "Datu-serieen datuak datoz hautatutako barrutiko elkarren alboko zutabeetatik. Sakabanatze-diagrametan, lehen datu-zutabeak serie guztietarako X balioak dituzte. Gainerako datu-zutabeak Y balio gisa erabiliko dira, balio bana serie bakoitzerako." +msgstr "Datu-serieen datuak datoz hautatutako barrutiko elkarren ondoko zutabeetatik. Sakabanatze-diagrametan, lehen datu-zutabeak serie guztietarako X balioak dituzte. Gainerako datu-zutabeak Y balio gisa erabiliko dira, balio bana serie bakoitzerako." #. CExLY #: chart2/uiconfig/ui/tp_RangeChooser.ui:146 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/connectivity/messages.po libreoffice-7.1.3~rc2/translations/source/eu/connectivity/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/connectivity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/connectivity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-03-10 13:36+0100\n" -"PO-Revision-Date: 2020-03-14 17:15+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1555139001.000000\n" #. 9LXDp @@ -394,7 +394,7 @@ "\n" "The specified value \"$value$ is longer than the number of digits allowed." msgstr "" -"'$columnname$' zutabea \"Dezimala\" motakoa bezala definitu da, gehienezko luzera $precision$ karaktereekin ($scale$ dezimalekin).\n" +"'$columnname$' zutabea \"Dezimala\" motakoa bezala definitu da, gehieneko luzera $precision$ karaktereekin ($scale$ dezimalekin).\n" "\n" "Zehaztutako \"$value$\" balioa baimendutako digitu kopurua baino luzeagoa da." diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/cui/messages.po libreoffice-7.1.3~rc2/translations/source/eu/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565776659.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME aplikazioak makroen 4 segurtasun-maila (baxutik oso altura) eta iturburu fidagarriak onartzen ditu." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 erakundeak Google Summer of Code (GSoC) deialdian parte hartzeko asmoa du, ikusi:" - -#. SNTbc -#: 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 "Ba al zenekien iruzkinak erantsi ahal dizkiezula testu-zatiei? Erabili %MOD1+%MOD2+C lasterbidea horretarako." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Paragrafo bat edo gehiago lekuz aldatu nahi al dituzu? Ez dago zertan moztu eta itsatsi beharrik: Erabili %MOD1+%MOD2+gezia (gora/behera) lasterbidea." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Aldatu txantiloi aurredefinituaren edo uneko dokumentuaren oinarrizko letra-tipoak 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Writer ▸ Oinarrizko letra-tipoak' erabilita." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "10 karaktere baino gehiago dituzten hitzak aurkitu nahi dituzu? Erabili 'Editatu ▸ Bilatu eta ordeztu ▸ Bilatu ▸ [a-z]{10,}' eta 'Beste aukera batzuk' atalean markatu 'Adierazpen erregularrak'." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Ireki CSV fitxategiak uneko kalkulu-orriko orri berriak bailiran 'Orria ▸ Orria fitxategitik' erabilita." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Writerren letra lodia, etzana edo azpimarratua idazten ari bazara, atributu lehenetsiekin jarraitu dezakezu %MOD1+⇧+X (kendu karaktere-formatu zuzenak) lasterbidea erabilita." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Erabili %MOD1+%MOD2+Shift+V arbeleko edukiak formaturik gabeko testu gisa itsasteko." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Pertsonalizatu oin-oharren itxura 'Tresnak ▸ Oin-oharrak eta amaiera-oharrak…' erabilita." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Aldatu zure diapositiben ordena eta aukeratu zein erakutsi nahi duzun, diapositiba-aurkezpena zure ikusleen beharretara egokitzeko, 'Diapositiba-aurkezpena ▸ Diapositiba-aurkezpen pertsonalizatua' erabilita." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Testuaren atalen baten ortografiaren egiaztatzea aldatu nahi duzu? Egin klik egoera-barrako hizkuntzaren zonan, edo hobeto, aplikatu estilo bat." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Eraiki zure 2D formak Draw erabilita. Hautatu bi objektu edo gehiago eta arakatu egin daitezkeen aldake guztiak 'Forma ▸ Konbinatu', 'Forma ▸ Batu', 'Forma ▸ Zatitu' eta 'Forma ▸ Ebaki' aukeren bidez." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Ez dituzu zutabe guztiak inprimatu nahi? Ezkutatu edo taldekatu behar ez dituzunak." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Erreprodukzio automatikoko aurkezpen bat aldatzeko, ireki eta ondoren, hasten denean, egin eskuineko klik eta hautatu 'Editatu' testuinguru-menuan." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Objektuak doitasunez kokatzeko premia duzu? %MOD2+↑,↓,← edo → erabilita objektuak (formak, irudiak, formulak) pixelez pixel mugitu daitezke." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Integratutako laguntza kontsultatzeko, hura instalatu baduzu, sakatu F1. Bestela, begiratu linean hemen:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Egin eskuineko klik egoera-barran %PRODUCTNAME Calc aplikazioan eta hautatu 'Hautapenaren zenbaketa' hautatutako gelaxka kopurua bistaratzeko." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Bi zutabe edo gehiago izan nahi al dituzu %PRODUCTNAME Writer orrialde bateko zati batean? Erabili 'Txertatu > Sekzioa', joan 'Aukerak' atalera eta ezarri 'Zutabeak', eta idatzi testua sekzio horretan." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Erabili 'Datuak ▸ Estatistikak' laginketarako, estatistika deskribatzaileak eskuratzeko, bariantza edo korrelazioa analizatzeko eta beste hainbat kalkulutarako %PRODUCTNAME Calc aplikazioan." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Orri batetik beste batera kopiatu dezakezu arbela erabili gabe. Hautatu kopiatuko den area, %MOD1+klik helburuko orriaren fitxan eta 'Orria ▸ Bete gelaxkak ▸ Bete orriak'." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "%PRODUCTNAME suitearen itxura aldatu dezakezu 'Tresnak ▸ Ikusi ▸ Erabiltzaile-interfazea' erabilita." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "%PRODUCTNAME Impressen, erabili 'Txertatu ▸ Multimedia ▸ Argazki-albuma' diapositiba-aurkezpen bat sortzeko 'Argazki-albuma' aukerako irudi sorta batekin." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Formulak erakutsi ditzakezu emaitzen ordez, 'Ikusi ▸ Erakutsi formula' erabilita (edo 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Calc ▸ Ikusi ▸ Erakutsi ▸ Formulak' erabilita)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME komunitate lagunkoi batek garatzen du. Mundu osoko ehunka kolaboratzailez osatuta dago komunitatea. Egin bat gurekin, kodea idazteaz gain beste hainbat zeregin daude." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Ezkertia al zara? Gaitu 'Tresnak ▸ Aukerak ▸ Hizkuntza-ezarpenak ▸ Hizkuntzak ▸ Asiarra' eta markatu 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Writer ▸ Ikusi ▸ Erregela ▸ Eskuinean lerrokatuta', korritze-barra ezkerraldean bistaratzeko." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Kapituluen tituluak beti orrialde batean hasi daitezen nahi al duzu? Editatu '1. izenburua (paragrafo-estiloa) ▸ Testu-fluxua ▸ Jauziak' eta markatu 'Txertatu ▸ Orrialdea ▸ Aurretik'." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Dataren/orduaren balioa hautatutako zero egun batetik igaro den egun kopurua besterik ez da; zenbakian, zati osoak data adierazten du, eta zatikiak ordua (egun baten zatia), eta 0.5 eguerdia da." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "⇧+%MOD1+Del lasterbideak kurtsorea dagoen tokitik hasi eta uneko esaldiaren amaieraraino ezabatzen du." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Erabili zutabeen edo errenkaden etiketak formuletan. Adibidez, 'Ordua' eta 'Km' diren bi zutabe badituzu, erabili '=Ordua/Km' abiadura (kilometroak orduko) kalkulatzeko." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Calc aplikazioak gelaxken inguruan erakusten dituen 'inurri ibiltariek' gogaitzen zaituzte? Sakatu Esc haiek gelditzeko; kopiatutako edukia itsasteko erabilgarri geratuko da." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "%PRODUCTNAME enbaxadore bihurtu nahi duzu? Garatzaileentzako, administratzaileentzako eta prestatzaileentzako ziurtagiriak daude." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Nahastu orientazio bertikalak eta horizontalak Calc kalkulu-orri batean orri bakoitzari estilo desberdina aplikatuta." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Egin klik tresna-barran karaktere berezietarako dagoen ikonoan zure karaktere gogokoenak eta azken aldian erabilitakoak txertatu nahi badituzu." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Estiloen arteko erlazioak ikusi nahi badituzu, aukeratu 'Bista hierarkikoa' estiloen alboko barran." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Estiloak erabili daitezke dokumentuko taulek itxura koherentea izan dezaten. Aukeratu horietako bat aurrefefinituen artean 'Estiloak' (F11) edo 'Taula ▸ Autoformatua' erabilita." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "%MOD1 tekla konfiguratu nahi duzu hiperestekak irekitzeko? Erabili 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME ▸ Segurtasuna ▸ Aukerak ▸ %MOD1+klik derrigorrezkoa hiperestekak irekitzeko'" #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Formula baten banakako elementuen kalkulua bistaratu nahi baduzu, hautatu elementuak eta sakatu F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Gelaxkak babestu ditzakezu 'Formatua ▸ Gelaxkak ▸ Babesa' erabilita. Orriak txertatzea, ezabatzea, izenez aldatzea edo mugitzea/kopiatzea eragozteko, erabili 'Tresnak ▸ Babestu orria'." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Kurba batean idatzi nahi al duzu? Marraztu lerroa, egin klik bikoitza, idatzi testua eta erabili 'Formatua ▸ Testu-koadroa eta forma ▸ FontWork'." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Kalkulu-orri bateko baliorik handienak soilik bistaratu nahi dituzu? Hautatu 'Datuak ▸ Iragazki automatikoa' menua, egin klik goitibeherako gezian eta aukeratu 'Lehen 10ak'." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Aurkibidetik orrialde-zenbakia kentzeko, joan 'Txertatu ▸ Aurkibidea' aukerara (edo egin eskuineko klik eta editatu dagoeneko txertatutako indizea). 'Sarrerak' fitxan, ezabatu orrialde-zenbakia (#) 'Egitura' lerrotik." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Nabigatzailearekin goiburukoak eta goiburukoen azpiko testua hautatu eta gora/behera mugitu ditzakezu, bai nabigatzailean bai dokumentuan." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Math objektu bat Writerren txertatzeko, idatzi formula, markatu formula hori eta erabili 'Txertatu ▸ Objektua ▸ Formula' testua bihurtzeko." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "%PRODUCTNAME aplikazioan erraza da hiztegi berria instalatzea, hedapen eran eskuratu baitaitezke." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME suiteak mugikortasuna erraztuko dizun bertsio eramangarri bat dauka. Ordenagailuan administratzaile-eskubideak ez izan arren, %PRODUCTNAME Portable disko gogorrean instalatu dezakezu." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writerrek ahalbidetzen dizu oin-oharrak orrialdeko, kapituluko eta dokumentuko zenbakitzea. Horretarako, erabili 'Tresnak ▸ Oin-oharrak eta amaiera-oharrak ▸ Oin-oharrak ▸ Zenbaketa'." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Zure Writer dokumentua irekitzen duzunean, testu-kurtsorea ez al dago gorde zenuenean zegoen edizio-toki berean? Gehitu izena edo abizena 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME ▸ Erabiltzaile-datuak ▸ Izena/abizena' atalean." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Aipuen kudeaketa? Erabili hirugarren baten hedapena." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Balio bat hainbat orritako toki berean txertatu nahi al duzu? Hautatu orriak: eutsi sakatuta %MOD1 tekla eta egin klik orrien fitxetan balioa sartu baino lehen." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Dokumentu bateko testu-zati bat ezkutatu nahi duzu? Hautatu testua, joan 'Txertatu > Sekzioa' atalera eta hautatu 'Ezkutatu'." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Saguaren erdiko botoia pertsonalizatu dezakezu 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME ▸ Ikusi ▸ Saguaren erdiko botoia' erabilita." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Bi orrialde bertikal orrialde horizontal bakarrean inprimatu nahi al dituzu, orrialdeen A4 tamaina A5 tamainara murriztuta? Erabili 'Fitxategia ▸ Inprimatu' eta hautatu '2' aukera 'Orrialdeak orriko' atalean." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Zure dokumentuen laster-marketara azkar iristeko, egin eskuineko klik egoera-barrako orrialde-zenbakian (dokumentu-leihoaren beheko ezkerreko izkinan)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Hautatu dokumentuaren atzeko planoko objektu bat 'Marrazkia' tresna-barrako 'Hautatu' tresnaren hautatu nahi den objektua inguratuta." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definitu sarritan erabiltzen dituzun testuak autotestu gisa. Horiek txertatzeko, beren izena, lasterbide bat edo tresna-barra bat erabili ahal izango duzu edozein Writer dokumentutan." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Diapositiba-aurkezpen batean musika erreproduzitzeko, esleitu soinua lehen diapositiba-trantsizioari baina ez egin klik 'Aplikatu diapositiba guztiei' botoian." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 aplikazioak ez du kalkulatzen ezkerretik eskuinera, baina honako ordena errespetatzen du: Parentesiak - Berredurak - Biderketa - Zatiketa - Batuketa - Kenketa." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Eskuratu %PRODUCTNAME dokumentazioa eta erabiltzaile-eskuliburu libreak hemen:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Kendu nahi al dituzu <> guztiak aldi berean eta barruko testua mantendu? Erabili 'Editatu ▸ Bilatu eta ordeztu', 'Bilatu' = [<>], 'Ordeztu' = zuriunea eta markatu 'Adierazpen erregularrak' aukera 'Beste aukera batzuk' atalean." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Writerrekin idatzitako txosten bat aurkeztu behar al duzu? Erabili 'Fitxategia ▸ Bidali ▸ Eskema aurkezpenera' diapositiba-aurkezpen bat sortzeko." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Kalkulu-orri bateko hiperesteken aurkezpena kudeatu nahi duzu? Txertatu hiperestekak HYPERLINK funtzioa erabilita." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Calc kalkulu-orri bateko orri bakoitzak bere zoom-faktorea izan dezan nahi baduzu, kendu marka 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Calc ▸ Ikusi ▸ Zooma ▸ Sinkronizatu orriak' aukerari." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Kolore desberdina ezarri diezaiokezu fitxa bakoitzari. Egin eskuineko klik fitxan edo erabili 'Orria ▸ Orriaren fitxa-kolorea'." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Bilatu formula batean erabilitako gelaxken aztarna, aurrekoak (⇧+F9) edo mendekoak (⇧+F5) (edo erabili 'Tresnak ▸ Detektibea'). Tiro bakoitzeko, urrats bat gehiago egiten da katean." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Txertatu eta zenbakitu zure formulak urrats bakarrean: idatzi fn, ondoren F3. Autotestu bat txertatuko da, taula batean lerrokatuta, formula batekin eta zenbaki batekin." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Ilustrazioen indize bat sortu dezakezu objektuen izenetatik abiatuta, ez soilik epigrafeak erabilita." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Erabili zure Android edo iPhone telefonoa zure Impress aurkezpena urrunetik kontrolatzeko." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Uneko hilabeteak zenbat egun dituen ezagutu nahi duzu? Erabili DAYSINMONTH(TODAY()) funtzioa." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Zure zenbakiak ### ikur gisa bistaratzen dira zure kalkulu-orrian? Zutabea estuegia da digitu guztiak erakusteko." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Gaitu formulak dituzten gelaxken kalkulu paralelo masiboak 'Tresnak ▸ Aukerak ▸ OpenCL' erabilita." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Erabili Draw/Impress aplikazioetako 'Marrazkia' tresna-barrako 'Lotura-marra' tresna fluxu-diagrama politak sortzeko eta, aukeran, objektua kopiatu eta Writerren itsasteko." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Zure dohaitzek mundu osoan dugun komunitateari laguntzen diote." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "X hilabete gehitu nahi dizkiozu data bati? Erabili =EDATE(data;hilabeteak)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Datuak dituzten eta errenkada zein zutabe hutsekin inguratuta dauden gelaxka-barruti jarraiak hautatzeko, erabili %MOD1+* (zenbakizko teklatua)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Zure data-eredua ez da egokia? Erabili 'Tresnak ▸ Aukerak ▸ Hizkuntza-ezarpenak ▸ Hizkuntza ▸ Data-ereduak' eredua doitzeko." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Formulak CSV formatura esportatu nahi al dituzu? Erabili 'Fitxategia ▸ Gorde honela', hautatu 'Testuzko CSVa' fitxategi motan, markatu 'Editatu iragazki-ezarpenak' eta markatu 'Gorde gelaxka-formulak' hurrengo elkarrizketa-koadroan." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Aurkezle-kontsola eginbide bikaina da %PRODUCTNAME Impressekin aurkezpenak egiteko. Probatu al duzu?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Iruzkin anitz ezabatzeko, hautatu iruzkinak dituzten gelaxkak eta erabili 'Orria ▸ Gelaxka-iruzkinak ▸ Ezabatu iruzkina'." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Bihurtu zure dokumentuak modu errazean PDF formatura klik bakarrarekin, tresna-barrako PDF ikonoan sakatuta." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Gelaxka-barruti bat hautatu nahi duzu orrian beherantz korritu behar izan gabe? Idatzi barrutiaren erreferentzia (adib. A1:A1000) izen-koadroan eta sakatu ⏎." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Komando-lerroko baliozko parametroak ezagutu nahi dituzu? Abiarazi soffice --help edo -h edo -? parametroekin." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Doitu zure orria edo inprimatze-barrutia orrialde bati, 'Formatua ▸ Orrialdea ▸ Orri-fitxa ▸ Eskalatze-modua' erabilita." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Zenbakirik gabeko elementu bat behar duzu zerrenda batean? Erabili 'Buletak eta zenbakitzea' tresna-barrako 'Txertatu zenbaki gabeko sarrera' aukera." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Tauletako gelaxken orientazioa biratu dezakezu 'Taula ▸ Propietateak... ▸ Testu-fluxua ▸ Testu-orientazioa' erabilita." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "%PRODUCTNAME Draw aplikazioan, erregelen 0/0 puntua aldatzeko, arrastatu goiko ezkerreko izkinan dagoen bi erregelen ebakigunea laneko espaziora." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Zutabe bat tokiz aldatu nahi duzu Calc aplikazioan eta beste bi zutaberen artean kokatu? Egin klik zutabearen goiburukoan, eutsi saguaren botoiari sakatuta eta eraman helburura %MOD2 tekla erabilita." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Markatu automatikoki indize alfabetikoen sarrerak konkordantzia-fitxategi bat erabilita." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Erabili 'Formatua ▸ Lerrokatu' (edo laster-menua) objektuak zehaztasunez kokatzeko Draw/Impress aplikazioetan. Objektu bakarra hautatu bada, orrialdean zentratuko du, eta multzo bat hautatu bada, multzo osoa lerrokatzen du." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Ez erabili tabulazioak elementuak ordenatzeko Writer dokumentu batean. Zer egin nahi duzun, beharbada hobe da ertzik gabeko taula bat erabiltzea." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Ez da beharrezkoa 'Tresnak ▸ Pertsonalizatu ▸ Teklatua' ataleko zerrendan goitik behera aritzea lasterbide bat aurkitzeko, idatzi lasterbidea eta kitto." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME aplikazioak automatikoki gehitu dezake zenbakidun epigrafe bat objektuak txertatzen direnean. Ikusi 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Writer ▸ Autoepigrafea'." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "%PRODUCTNAME produktuetan zure Google Mail kontua erabili dezakezu posta konbinatzeko. Bete 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Writer ▸ Posta-konbinazioaren helbidea' aukera." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Mantendu orri bateko zutabeen goiburukoak ikusgai beti lerroak korritzen dituzunean, horretarako erabili 'Ikusi ▸ Finkatu gelaxkak ▸ Finkatu lehen errenkada'." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Basic makroekin lanean hasi nahi duzu? Begiratu 'Tresnak ▸ Makroak ▸ Editatu makroak' atalean ageri diren adibideak." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Writerren izenburuen paragrafo-estiloak aplikatzeko, erabili lasterbideak: %MOD1+1 lasterbideak 1. izenburua aplikatzen du, %MOD1+2 lasterbideak 2. izenburua, etab." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Ez galdu dokumentu handietan. Erabili nabigatzailea (F5) edukiak arakatzeko." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "'Editatu ▸ Bilatu eta ordeztu' aukerarekin karaktere bereziak zuzenean txertatu daitezke: egin eskuineko klik sarrera-eremuetan edo sakatu ⇧+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Eduki pertsonalizatuak behar al dituzu metadatu-propietateak betetzeko? Erabili 'Fitxategia ▸ Propietateak ▸ Propietate pertsonalizatuak' fitxa haiek sortzeko." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Objektu bat ikusi nahi duzu, baina ez inprimatu, Draw aplikazioan? Marraztu ezazu 'Inprimagarria' bandera ezarri gabe duen geruza batean (egin eskuineko klik taulan eta hautatu 'Aldatu geruza')." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Uneko data zure dokumentuan txertatzeko, erabili 'Txertatu ▸ Eremua ▸ Data'." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Zure Writer dokumentuak irudi asko ditu? Azkartu bistaratzea 'Ikusi ▸ Irudiak eta diagramak' aukera desgaituta." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Erabili 'Orria ▸ Bete gelaxkak ▸ Ausazko zenbakia' aukera ausazko serieak sortzeko hainbat banaketatan oinarrituta." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Aldatu zure diapositiben izenak Impressen, 'Joan orrialdera' ekintzak hobeto definitu nahi badituzu eta '1. diapositiba', '2. diapositiba' eta abar baino esplizituagoa den laburpen bat eduki nahi baduzu." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Kapituluen zenbakitzearen elkarrizketa-koadroan, kapitulu-zenbakiaren aurretik testu bat bistaratu daiteke. Adibidez, ikusi nahi baduzu 'Kapitulua: 1', idatzi 'Kapitulua: '." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Writer taula bat trukatu nahi al duzu? Kopiatu eta itsatsi taula Calc-en, trukatu taula kopiatu/itsatsi berezia erabilita, eta ondoren eraman berriro Writerrera eta kopiatu/itsatsi berezia ▸ 'Formatudun testua'." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Marrazketako tresna-barran 'Testu bertikala' tresna eduki nahi baduzu, markatu 'Tresnak ▸ Aukerak ▸ Hizkuntza-ezarpenak ▸ Hizkuntza ▸ Hizkuntza lehenetsiak ▸ Asiarra' (eta jarri botoia ikusgai eskuineko klik eginda)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Hautatutako barrutian zoom azkarra egiteko, egin eskuineko klik egoera-barraren zoom atalean eta aukeratu 'Optimoa'." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "PDF fitxategiak sinatu ditzakezu eta sinadurak egiaztatu." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Sarritan dokumentu batetik abiatuta beste bat sortzen al duzu? Beharbada txantiloi bat erabili beharko zenuke." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Calc aplikazioan, erabili 'Formatua ▸ Baldintzapekoa ▸ Kudeatu' aukera baldintzapeko formatuarekin definitu diren gelaxkak aurkitzeko." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "'Tresnak ▸ Detektibea ▸ Markatu baliogabeko datuak' aukerak balioztatze-erregelak betetzen ez dituzten balioak dauzkaten gelaxka guztiak nabarmentzen ditu." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Erabili letra-tipoen kapsulatzea ('Fitxategia ▸ Propietateak ▸ Letra-tipoa' atala) beste bulegotika-suite batzuekin bateragarritasuna handiagoa izan dadin." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Formula bat balio estatiko bihurtzeko ez da beharrezkoa kopiatzea/itsastea; erabili 'Datuak ▸ Kalkulatu ▸ Formula baliora'." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Dokumentu bateko iruzkin guztien formatua aldatu dezakezu, horretarako sakatu iruzkin baten goitibeherako gezia eta aukeratu 'Formateatu iruzkin guztiak'." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Diseinu bera izan nahi al duzu informazioa pantailan bistaratzeko eta inprimatzeko orduan? Markatu 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Calc ▸ Orokorra ▸ ErabiliErabili inprimagailuaren metrikak testuari formatua emateko'." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writerrek babeskopiak egiten laguntzen dizu: 'Fitxategia ▸ Gorde kopia' aukeraren bidez dokumentu berria sortuko duzu jatorrizkoan lanean jarraitzen duzun bitartean." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Estilo batean oinarritutako beste estilo bat sortu baduzu, ehunekoen balio bat edo puntuen balio bat sartu dezakezu (adib. 110% edo -2pt edo +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Iruzkin bat helburuko gelaxkaren edukia galdu gabe kopiatzeko, 'Itsatsi berezia' aukera erabili behar duzu eta elkarrizketa-koadroan marka kendu behar diozu guztiari, 'Iruzkinak' aukerari salbu. Erabili 'Gehitu' eragiketa lehendik dagoen edukia ez gainidazteko." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Zure MS Office dokumentuak sortaka bihurtu ditzakezu OpenDocument formatura 'Fitxategia ▸ Morroiak ▸ Dokumentu-bihurtzailea' menuko dokumentu-bihurtzailea erabilita." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Gelaxka bat bere tokian editatzean, eskuineko klik egin dezakezu eta eremuak txertatu ditzakezu, adibidez data, orri-izena, dokumentu-izenburua, etab." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Writerreko taula bat lekuz aldatu nahi duzu? Egin ezazu 'Taula ▸ Hautatu ▸ Taula' eta 'Txertatu ▸ Markoa ▸ Markoa' erabilita." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "'Tresnak ▸ Autotestua ▸ Autotestua > Inportatu' erabilita, inportatu nahi dituzun autotestu-sarrerak dituen Word dokumentu bat edo txantiloi bat hautatu dezakezu." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Ez txertatu eskuzko jauziak bi paragrafo banatzeko. Horren ordez, aldatu 'Koskak eta tarteak ▸ Tartea ▸ Paragrafoaren azpian' estiloaren/paragrafoaren propietateetan." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Mantendu zenbaki baten aurreko zeroak gelaxkei formatua emateko aukeren artean dagoen 'ezkerreko zeroak' erabilita, edo zenbakia sartu baino lehen gelaxkari testu formatua emanda." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Lehenetsira itzuli nahi duzu zerrenda-estilo bat aplikatu ondoren? Sakatu 'Formatua' tresna-barrako 'Buletak' edo 'Aktibatu/desaktibatu zenbakitzea'." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Ezabatu zure inprimatze-area guztiak urrats bakarrean: hautatu orri guztiak eta erabili 'Formatua ▸ Inprimatze-barrutiak ▸ Garbitu'." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Gehitu atzeko planoko irudiak kalkulu-orriei 'Txertatu ▸ Irudia' erabilita edo galeriatik atzeko plano bat arrastatuta eta ondoren 'Formatua ▸ Antolatu ▸ Atzeko planora' aukera aplikatuta." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Arazoak dituzu PDF fitxategietako edo webguneetako testua dokumentuetan itsastean? Saiatu formaturik gabeko testu modura itsasten (%MOD1+%MOD2+⇧+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Calc aplikazioan, erabili TRIMMEAN() datu multzo baten batez bestekoa, baliorik altuena eta baxuena kenduta, lortzeko." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Calc aplikazioko VLOOKUP funtzioaren laugarren aukerako parametroak adierazten du datuen lehen zutabea ordenatuta dagoen ala ez. Ez badago, sartu FALSE edo zero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Tresna-barrak testuinguruaren arabera irekitzen dira. Portaera hori nahi ez baduzu, kendu marka tresna-barrei 'Ikusi ▸ Tresna-barrak' aukeran." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Dokumentu maisu bat sortu nahi al duzu uneko Writer dokumentua baliatuta? Erabili 'Fitxategia ▸ Bidali ▸ Sortu dokumentu maisua' (azpidokumentuak eskemaren arabera sortzen dira)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Calc aplikaziotik inprimatutako orrialde batean gelaxkak zentratu nahi al dituzu? Erabili 'Formatua ▸ Orrialdea, Orrialdea ▸ Diseinu-ezarpenak ▸ Taularen lerrokatzea'." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Markoak estekatu egin daitezke, testua batetik bestera jariatu dadin maketazio-aplikazioetan bezala." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Sortu diagrama bat Writer taula batetik abiatuta, horretarako egin klik taulan eta aukeratu 'Txertatu ▸ Diagrama'." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Inprimagarriak ez diren zein karaktere bistaratuko diren zehaztu nahi baduzu, erabili 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME Writer ▸ Formateatzeko laguntza ▸ Bistaratu' ataleko aukerak." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Orrialde zehatz batera joan nahi al duzu bere zenbakiaren arabera? Egin klik egoera-barraren ezker muturrean dagoen sarreran edo erabili 'Editatu ▸ Joan orrialdera…' edo sakatu %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME 150 hizkuntza baino gehiagotan erabil daiteke." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Beste programaren bat zure aurkezpenaren aurrean bistaratu dadin behar baduzu, kendu marka 'Diapositiba-aurkezpena ▸ Ezarpenak ▸ Aurkezpena beti gainean' aukerari." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Writer dokumentu batean letra lodiz dauden hitzak aurkitu nahi al dituzu? Erabili 'Editatu ▸ Bilatu eta ordeztu ▸ Beste aukera batzuk ▸ Atributuak ▸ Letra-lodiera'." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Paragrafoak edo taula-errenkadak alfabetikoki edo zenbakien arabera ordenatu ditzakezu 'Tresnak ▸ Ordenatu' erabilita." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Paragrafo bat sekzio baten aurretik/atzetik txertatzeko, sakatu %MOD2+⏎ sekzioaren hasieran/amaieran." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME aplikazioak txantiloien gune bat du itxura ona duten dokumentuak sortzeko, bota iezaiozu begirada bat." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Kalkulatu maileguen amortizazioak Clac erabilita: adibidez, PMT(2%/12;36;2500) interes-tasa amortizazio-epealdiko 2%/12, 36 hilabete, maileguaren kantitatea 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Ez al duzu nahi duzuna aurkitzen VLOOKUP funtzioa erabilita Calc-en? INDEX eta MATCH funtzioekin nahi duzuna egin dezakezu!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Ezkutuan dagoen A zutabea erakutsi nahi al duzu? Egin klik B zutabeko gelaxka batean, sakatu saguaren ezkerreko botoia, eraman sagua ezkerrerantz, eta askatu. Ondoren, aktibatu zutabea 'Formatua ▸ Zutabeak ▸ Erakutsi' erabilita." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Writerren orrialde baten zenbakia aldatzeko, joan lehen paragrafoaren propietateetara, 'Testu-fluxua' fitxan markatu 'Jauziak ▸ Txertatu' eta sartu zenbakia." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Exekutatu %PRODUCTNAME edozein nabigatzailetan rollApp bidez." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Calc aplikazioan errore-kode bitxia daukazu? Err: letrak eta zenbaki bat? Honako orriak azalpena emango dizu:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Aurkibidean izenburua ez den paragrafo bat sartzeko, aldatu paragrafo-ezarpenen 'Eskema eta zenbakitzea' aukera eskema-mailara." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Aurkibideez gain, %PRODUCTNAME aplikazioak indize alfabetikoak, ilustrazioenak, taulenak, objektuenak, bibliografikoak eta erabiltzaileak definitutakoak sortu ditzake." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Ezin duzu aldatu edo ezabatu gelaxka-estilo pertsonalizatu bat? Aztertu orri guztiak, batek ere ez du babestuta egon behar." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Serie bat bete behar al duzu? Hautatu gelaxka-barrutia, joan 'Orria ▸ Bete gelaxkak ▸ Bete serieak' atalera eta aukeratu 'Lineala', 'Hazkundea', 'Data' edo 'Betetze automatikoa'." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Gelaxka bat beste gelaxka batzuetan erreferentziatuta dagoen jakin nahi duzu? Erabili 'Tresnak ▸ Detektibea ▸ Jarraitu mendekoen aztarnari' (⇧+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Ordezkapenen sarrerarako eremuan edo zuzenketa automatikoko aukeretan .* komodinak erabili daitezke." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Gaineko lerroa bikoiztu nahi al duzu? Sakatu %MOD1+D edo erabili 'Orria ▸ Bete gelaxkak ▸ Bete beherantz'." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Bilaketak kalkulu-orri anitzetan egiteko, hautatu orriak bilaketa hasi baino lehen." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Calc aplikazioko gelaxkak diapositiba baten ikuspegi normalean jaregiten badira, taula bat sortzen da; eskemaren ikuspegian, gelaxka bakoitzak marra bat sortzen du." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME Writerrek bi zuriune edo gehiago jarraian sartzea eragozten du. Markatu 'Tresnak ▸ Autozuzenketa ▸ Autozuzenketaren aukerak ▸ Aukerak ▸ Ez ikusi egin zuriune bikoitzei'." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Calc aplikazioan balio bat sartu ondoren, kurtsorea gelaxkaren eskuinaldera joan dadin nahi duzu? Erabili tabuladorearen tekla, Enter erabili ordez." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Korritze-barra ezkerrean bistaratzeko, gaitu 'Tresnak ▸ Aukerak ▸ Hizkuntza-ezarpenak ▸ Hizkuntzak ▸ Testu konplexua' eta markatu 'Orria ▸ Eskuinetik ezkerrera'." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arrastatu formatua duen objektu bat 'Estiloak eta formatua' leihora. Elkarrizketa-koadro bat irekiko da, sartu bertan estilo berriaren izena." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "%PRODUCTNAME bertsio berriek eginbide berriak, akatsen konponketak eta segurtasun-adabakiak dakartzate. Eguneratu maiz, seguruago egoteko!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "XSLT eta XML iragazki berriak garatzen ari al zara?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Sakatu ⇧+F1 elkarrizketa-koadroetan dauden aholku luze erabilgarriak ikusteko, \"Aholku luzeak\" ez dagoenean gaituta 'Tresnak ▸ Aukerak ▸ %PRODUCTNAME ▸ Orokorra' atalean." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME laguntza" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Informazio gehiago" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Exekutatu ekintza hau orain..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Eguneko aholkua: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "⇧" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -12975,7 +12969,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:703 msgctxt "numberingoptionspage|allsame" msgid "_Consecutive numbering" -msgstr "_Ondoz ondoko zenbakitzea" +msgstr "Elkarren _ondoko zenbakitzea" #. 48AhR #: cui/uiconfig/ui/numberingoptionspage.ui:713 @@ -13597,7 +13591,7 @@ #: cui/uiconfig/ui/optasianpage.ui:135 msgctxt "optasianpage|punctcompression" msgid "_Compress punctuation only" -msgstr "K_onprimitu puntuazioa soilik" +msgstr "K_onprimatu puntuazioa soilik" #. 8FYbX #: cui/uiconfig/ui/optasianpage.ui:145 @@ -13609,7 +13603,7 @@ #: cui/uiconfig/ui/optasianpage.ui:157 msgctxt "optasianpage|punctkanacompression" msgid "Compress punctuation and Japanese Kana" -msgstr "Konprimitu puntuazioa eta Kana japoniarra" +msgstr "Konprimatu puntuazioa eta Kana japoniarra" #. k2K9z #: cui/uiconfig/ui/optasianpage.ui:167 @@ -20561,7 +20555,7 @@ #: cui/uiconfig/ui/textflowpage.ui:105 msgctxt "textflowpage|extended_tip|spinMaxNum" msgid "Enter the maximum number of consecutive lines that can be hyphenated." -msgstr "Sartu zatitu daitezkeen elkarren segidako gehienezko lerro kopurua." +msgstr "Sartu zatitu daitezkeen elkarren ondoko gehieneko lerro kopurua." #. zBD7h #: cui/uiconfig/ui/textflowpage.ui:125 @@ -21299,7 +21293,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:226 msgctxt "wordcompletionpage|extended_tip|maxentries" msgid "Enter the maximum number of words that you want to store in the Word Completion list." -msgstr "Sartu hitz-osaketaren zerrendan gorde nahi duzun gehienezko hitz kopurua." +msgstr "Sartu hitz-osaketaren zerrendan gorde nahi duzun gehieneko hitz kopurua." #. SzABn #: cui/uiconfig/ui/wordcompletionpage.ui:239 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-12-17 14:17+0100\n" -"PO-Revision-Date: 2020-02-01 14:36+0000\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559714057.000000\n" #. 6Kkin @@ -1184,7 +1184,7 @@ "par_id3153575\n" "help.text" msgid "Adds a button that allows a user to select from a number of options. Grouped option buttons must have consecutive tab indices. They are commonly encircled by a group box. If you have two groups of option buttons, you must insert a tab index between the tab indices of the two groups on the group frame." -msgstr "Botoi bat gehitzen du eta erabiltzaileari hainbat aukera eskaintzen dizkio. Elkartutako aukera-botoiek elkarren segidako tabulazio-indizeak eduki behar dituzte. Eskuarki talde-lauki batez inguratuta egoten dira. Aukera-botoien bi talde badituzu, bi taldeen tabulazio-indizeen artean tabulazio-indizea txertatu behar duzu talde-markoan." +msgstr "Botoi bat gehitzen du eta erabiltzaileari hainbat aukera eskaintzen dizkio. Elkartutako aukera-botoiek elkarren ondoko tabulazio-indizeak eduki behar dituzte. Eskuarki talde-lauki batez inguratuta egoten dira. Aukera-botoien bi talde badituzu, bi taldeen tabulazio-indizeen artean tabulazio-indizea txertatu behar duzu talde-markoan." #. DaRgN #: 20000000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-22 12:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563086466.000000\n" #. yzYVt @@ -905,7 +905,7 @@ "par_id3145233\n" "help.text" msgid "57 Device I/O error" -msgstr "57 Gailuaren Sko/Iko errorea " +msgstr "57 Gailuaren S/I errorea " #. JViEn #: 00000003.xhp @@ -6566,7 +6566,7 @@ "par_id3150745\n" "help.text" msgid "Specify the maximum number of characters that the user can enter." -msgstr "Erabiltzaileak sar dezakeen gehienezko karaktere kopurua zehazten du." +msgstr "Erabiltzaileak sar dezakeen gehieneko karaktere kopurua zehazten du." #. fWJry #: 01170101.xhp @@ -6827,7 +6827,7 @@ "par_id3145167\n" "help.text" msgid "Specify the maximum value of a progress bar control." -msgstr "Aurrerapen-barraren kontrolaren gehienezko balioa zehazten du." +msgstr "Aurrerapen-barraren kontrolaren gehieneko balioa zehazten du." #. 7Euj4 #: 01170101.xhp @@ -7025,7 +7025,7 @@ "par_id3148877\n" "help.text" msgid "Specify the maximum value of a scrollbar control." -msgstr "Korritze-barraren kontrolaren gehienezko balioa zehazten du." +msgstr "Korritze-barraren kontrolaren gehieneko balioa zehazten du." #. WhdNX #: 01170101.xhp @@ -7340,7 +7340,7 @@ "par_id3155401\n" "help.text" msgid "Specify the maximum time value for a time control." -msgstr "Ordu-kontrolentzako gehienezko ordu-balioa zehazten du." +msgstr "Ordu-kontrolentzako gehieneko ordu-balioa zehazten du." #. wgnhh #: 01170101.xhp @@ -7439,7 +7439,7 @@ "par_id3163823\n" "help.text" msgid "Specify the maximum value for the current control." -msgstr "Uneko kontrolak eduki dezakeen gehienezko balioa zehazten du." +msgstr "Uneko kontrolak eduki dezakeen gehieneko balioa zehazten du." #. moAtf #: 01170101.xhp @@ -10031,7 +10031,7 @@ "par_id3155132\n" "help.text" msgid "pathname: 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 "BideIzena: Irekiko den fitxategiaren izena eta bide-izena. Ez dagoen fitxategi bat irakurtzen saiatzen bazara (Access = Read), errore-mezua agertuko da. Ez dagoen fitxategi batean idazten saiatzen bazara (Access = Write), fitxategi berria sortuko da." +msgstr "pathname: Irekiko den fitxategiaren izena eta bide-izena. Ez dagoen fitxategi bat irakurtzen saiatzen bazara (Access = Read), errore-mezua agertuko da. Ez dagoen fitxategi batean idazten saiatzen bazara (Access = Write), fitxategi berria sortuko da." #. XqfP8 #: 03020103.xhp @@ -10040,7 +10040,7 @@ "par_id3149262\n" "help.text" msgid "mode: 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 "Modua: Fitxategi modua zehazten duen gako-hitza. Baliozko balioak hauek dira: Append (erantsi fitxategi sekuentzialari), Binary (datuak byten bidez eskuratu daitezke Get eta Put erabiliz), Input (datu-kanala irakurtzeko irekitzen du), Output (datu-kanala idazteko irekitzen du) eta Random (fitxategi erlatiboak editatzen ditu)." +msgstr "mode: Fitxategi modua zehazten duen gako-hitza. Baliozko balioak hauek dira: Append (erantsi fitxategi sekuentzialari), Binary (datuak byten bidez eskuratu daitezke Get eta Put erabiliz), Input (datu-kanala irakurtzeko irekitzen du), Output (datu-kanala idazteko irekitzen du) eta Random (fitxategi erlatiboak editatzen ditu)." #. 3983q #: 03020103.xhp @@ -10049,7 +10049,7 @@ "par_id3154014\n" "help.text" msgid "io: Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)." -msgstr "" +msgstr "io: Atzitze-mota definitzen duen gako-hitza. Baliozko balioak: Read (irakurtzeko soilik), Write (irakurtzeko soilik), Read Write (biak)." #. kzzkr #: 03020103.xhp @@ -10058,7 +10058,7 @@ "par_id3150011\n" "help.text" msgid "locking: 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 "Babesa: Fitxategi bat irekitakoan, haren segurtasun-egoera zehazten duen gako-hitza. Baliozko balioak: Shared (fitxategia beste aplikazio batzuen bidez ireki daiteke), Lock Read (fitxategia irakurketaren kontra babestuta dago), Lock Write (fitxategia idazketaren kontra babestuta dago), Lock Read Write (fitxategi-atzipena ukatzen du)." +msgstr "locking: Fitxategi bat irekitakoan, haren segurtasun-egoera zehazten duen gako-hitza. Baliozko balioak: Shared (fitxategia beste aplikazio batzuen bidez ireki daiteke), Lock Read (fitxategia irakurketaren kontra babestuta dago), Lock Write (fitxategia idazketaren kontra babestuta dago), Lock Read Write (fitxategi-atzipena ukatzen du)." #. D2D4q #: 03020103.xhp @@ -10067,7 +10067,7 @@ "par_id3153190\n" "help.text" msgid "filenum: 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 "" +msgstr "filenum: 0 eta 511 arteko edozein osoko adierazpen, libre dagoen datu-kanal baten zenbakia adierazteko. Ondoren, datu-kanalaren bidez komandoak pasatu ahal izango dira fitxategia atzitzeko. FreeFile funtzioak berehala zehaztu behar du fitxategi-zenbakia, Open instrukzioaren aurretik." #. LgCLi #: 03020103.xhp @@ -10076,7 +10076,7 @@ "par_id3151115\n" "help.text" msgid "recLen: For Random access files, set the length of the records." -msgstr "" +msgstr "recLen: Fitxategien Random atzitzerako, ezarri erregistroen luzera." #. mvgxB #: 03020103.xhp @@ -10085,7 +10085,7 @@ "par_id3153418\n" "help.text" msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears." -msgstr "Open instrukzioaren bidez irekitako fitxategien edukia bakarrik alda dezakezu. Lehendik irekita dagoen fitxategia irekitzen saiatzen bazara, errore-mezua agertuko da." +msgstr "Open instrukzioaren bidez irekitako fitxategien edukia soilik aldatu daiteke. Lehendik irekita dagoen fitxategia irekitzen saiatzean, errore-mezu bat agertuko da." #. xPMgs #: 03020103.xhp @@ -10409,7 +10409,7 @@ "par_id3150440\n" "help.text" msgid "Input #fileNum {,|;} var1 [, var2 [, ...]]" -msgstr "" +msgstr "Input #fileNum {,|;} var1 [, var2 [, ...]]" #. EUrQA #: 03020202.xhp @@ -10418,7 +10418,7 @@ "par_id3145749\n" "help.text" msgid "fileNum: 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 "" +msgstr "fileNum: Irakurri nahi diren datuak dituen fitxategiaren zenbakia. Fitxzategia Open instrukzioarekin ireki behar da, INPUT gako-hitza erabilita." #. kJyKM #: 03020202.xhp @@ -10427,7 +10427,7 @@ "par_id3150011\n" "help.text" msgid "var: A numeric or string variable that you assign the values read from the opened file to." -msgstr "" +msgstr "var: Zenbakizko edo testuzko aldagai bat, irekitako fitxategiaren balioak horri esleituko zaizkio." #. 23Pzt #: 03020202.xhp @@ -10490,7 +10490,7 @@ "tit\n" "help.text" msgid "Line Input# Statement" -msgstr "" +msgstr "Line Input# instrukzioa" #. CCEuD #: 03020203.xhp @@ -10508,7 +10508,7 @@ "hd_id3153361\n" "help.text" msgid "Line Input# Statement" -msgstr "" +msgstr "Line Input# instrukzioa" #. 5FZ8D #: 03020203.xhp @@ -10517,7 +10517,7 @@ "par_id3156280\n" "help.text" msgid "Reads a line from a sequential file into a variable." -msgstr "" +msgstr "Fitxategi sekuentzial bateko lerro bat irakurtzen du eta aldagai batean sartzen du." #. enCkE #: 03020203.xhp @@ -10526,7 +10526,7 @@ "par_id971587473488701\n" "help.text" msgid "Line Input Statement diagram" -msgstr "" +msgstr "Line Input instrukzioaren diagrama" #. wrpF7 #: 03020203.xhp @@ -10535,7 +10535,7 @@ "par_id3161832\n" "help.text" msgid "fileNum: 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 "" +msgstr "fileNum:: Irakurri nahi den informazioa duen fitxategiaren zenbakia. Fitxategia Open instrukzioaren bidez aurrez ireki behar da, INPUT gako-hitza erabiliz." #. qAR2M #: 03020203.xhp @@ -10544,7 +10544,7 @@ "par_id3151119\n" "help.text" msgid "variable: The name of the variable that stores the result." -msgstr "" +msgstr "variable: Emaitza biltegiratzen duen aldagaiaren izena." #. foxtA #: 03020203.xhp @@ -10598,7 +10598,7 @@ "par_id461596463969009\n" "help.text" msgid "Use Print# statement to print data to a sequential text file. Use Write# statement to write data to a sequential text file with delimiting characters." -msgstr "" +msgstr "Erabili Print# instrukzioa datuak testu-fitxategi sekuentzial batean inprimatzeko. Erabili Write# instrukzioa datuak karaktere mugatzaileak dituen testu-fitxategi sekuentzial batean idazteko." #. 9HgEG #: 03020204.xhp @@ -10607,7 +10607,7 @@ "par_id971587473488701\n" "help.text" msgid "Put Statement diagram" -msgstr "" +msgstr "Put instrukzioaren diagrama" #. RBpeh #: 03020204.xhp @@ -30452,7 +30452,7 @@ "par_id761588867124078\n" "help.text" msgid "Lbound and Ubound functions" -msgstr "" +msgstr "Lbound eta Ubound funtzioak" #. y97EV #: 03110000.xhp @@ -33863,7 +33863,7 @@ "par_id3153126\n" "help.text" msgid "Start: Optional numeric expression that marks the position from the left in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the last character of the string. The maximum allowed value is 65535." -msgstr "Hasiera: zehaztutako azpikatearen bilaketa katearen ezkerretik hasita zein kokagunetan hasiko den zehazten duen zenbakizko aukerazko adierazpena. Parametro hori ez badago, bilaketa katearen azken karakteretik hasiko da. Gehienezko balioa 65535 izan daiteke." +msgstr "Hasiera: zehaztutako azpikatearen bilaketa katearen ezkerretik hasita zein kokagunetan hasiko den zehazten duen zenbakizko aukerazko adierazpena. Parametro hori ez badago, bilaketa katearen azken karakteretik hasiko da. Gehieneko balioa 65535 izan daiteke." #. ZEauB #: 03120411.xhp @@ -39173,7 +39173,7 @@ "N0003\n" "help.text" msgid "Resets error information and indicates what to execute next." -msgstr "" +msgstr "Errore-informazioa berrezartzen du eta ondoren zer exekutatuko den adierazten du." #. FhZm3 #: Resume.xhp @@ -39191,7 +39191,7 @@ "par_id481586090298901\n" "help.text" msgid "0: Resets error information and re-executes the instruction that caused the error. 0 is optional." -msgstr "" +msgstr "0: Errore-informazioa berrezartzen du eta errorea eragin duen instrukzioa berriro exekutatzen du. 0 aukerakoa da." #. fakJ2 #: Resume.xhp @@ -39218,7 +39218,7 @@ "par_id441586333320983\n" "help.text" msgid "Error information is built with Erl, Err and Error$ functions." -msgstr "" +msgstr "Errore-informazioa Erl, Err eta Error$ funtzioekin eraikitzen da." #. PoXod #: Resume.xhp @@ -39227,7 +39227,7 @@ "par_id741586333516110\n" "help.text" msgid "Erl: Module line number where error occurs." -msgstr "" +msgstr "Erl: Errorea gertatu den lerro-zenbakia moduluan." #. aX9ZN #: Resume.xhp @@ -39236,7 +39236,7 @@ "par_id81586333580520\n" "help.text" msgid "Err: Error number." -msgstr "" +msgstr "Err: Errore-zenbakia." #. ctA2t #: Resume.xhp @@ -39245,7 +39245,7 @@ "par_id721586333586263\n" "help.text" msgid "Error[$]: Error description." -msgstr "" +msgstr "Error[$]: Errorearen deskribapena." #. fDJgb #: Resume.xhp @@ -39263,7 +39263,7 @@ "hd_id441586092960246\n" "help.text" msgid "Examples:" -msgstr "" +msgstr "Adibideak:" #. 4dyMX #: Resume.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563601210.000000\n" #. sZfWF @@ -17645,7 +17645,7 @@ "par_id3150036\n" "help.text" msgid "Returns the number of individual ranges that belong to a multiple range. A range can consist of contiguous cells or a single cell." -msgstr "Barruti anizkoitz batean zenbat barruti dauden ematen du.. Barruti bat ondoz ondoko gelaxken barrutia edo gelaxka bakarra izan daiteke." +msgstr "Barruti anizkoitz batean zenbat barruti dauden ematen du.. Barruti bat elkarren ondoko gelaxken barrutia edo gelaxka bakarra izan daiteke." #. cvDFN #: 04060109.xhp @@ -18338,7 +18338,7 @@ "par_id3149984\n" "help.text" msgid "Vertical search with reference to adjacent cells to the right. This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by Index. If the Sorted parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact SearchCriterion is not found, the last value that is smaller than the criterion will be returned. If Sorted is set to FALSE or zero, an exact match must be found, otherwise the error Error: Value Not Available will be the result. Thus with a value of zero the data does not need to be sorted in ascending order." -msgstr "Bilaketa bertikala eskuineko ondoz ondoko gelaxken erreferentziarekin. Balio jakin bat matrizearen lehen zutabean badagoen begiratzen du funtzio honek. Orduan funtzioak balioa itzultzen du indizeak izendatutako zutabeko errenkada berean. Ordenatua parametroa ez bada zehazten edo TRUE (egiazkoa) ezartzen bada, datuak goranzko ordenan ordenatu behar direla ulertzen da. Kasu horretan, Bilaketa-irizpidea ez bada aurkitzen, hurrengo balioa itzuliko da. Ordenatua FALSE (faltsua) edo zero bada, zehatz-mehatz bat datorrena aurkitu behar da, eta bestela errore hau emango du: Errorea: balioa ez dago eskuragarri. Hortaz, zero balioarekin ez dago datuak gorantz ordenatu beharrik." +msgstr "Bilaketa bertikala eskuineko elkarren ondoko gelaxken erreferentziarekin. Balio jakin bat matrizearen lehen zutabean badagoen begiratzen du funtzio honek. Orduan funtzioak balioa itzultzen du indizeak izendatutako zutabeko errenkada berean. Ordenatua parametroa ez bada zehazten edo TRUE (egiazkoa) ezartzen bada, datuak goranzko ordenan ordenatu behar direla ulertzen da. Kasu horretan, Bilaketa-irizpidea ez bada aurkitzen, hurrengo balioa itzuliko da. Ordenatua FALSE (faltsua) edo zero bada, zehatz-mehatz bat datorrena aurkitu behar da, eta bestela errore hau emango du: Errorea: balioa ez dago eskuragarri. Hortaz, zero balioarekin ez dago datuak gorantz ordenatu beharrik." #. 8FhyJ #: 04060109.xhp @@ -18806,7 +18806,7 @@ "par_id3153389\n" "help.text" msgid "Returns the contents of a cell either from a one-row or one-column range. Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to VLOOKUP and HLOOKUP, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results." -msgstr "Gelaxka baten edukia ematen du errenkada bateko nahiz zutabe bateko barruti batetik edo matrize batetik. Nahi izanez gero, esleitutako balioa (indize berekoa) beste errenkada eta zutabe baten emango da. VLOOKUP eta HLOOKUP funtzioetan ez bezala, bilaketa eta emaitza bektoreak kokagune desberdinetan egon daitezke; ez dute zertan ondoz ondokoak izan. Gainera, LOOKUP funtzioaren bilaketa-bektoreak ordenatuta egon behar du, bestela bilaketak ez baitu emaitza erabilgarririk emango." +msgstr "Gelaxka baten edukia ematen du errenkada bateko nahiz zutabe bateko barruti batetik edo matrize batetik. Nahi izanez gero, esleitutako balioa (indize berekoa) beste errenkada eta zutabe baten emango da. VLOOKUP eta HLOOKUP funtzioetan ez bezala, bilaketa eta emaitza bektoreak kokagune desberdinetan egon daitezke; ez dute zertan elkarren ondokoak izan. Gainera, LOOKUP funtzioaren bilaketa-bektoreak ordenatuta egon behar du, bestela bilaketak ez baitu emaitza erabilgarririk emango." #. 3jevg #: 04060109.xhp @@ -45104,7 +45104,7 @@ "par_idN109D1\n" "help.text" msgid "Enter the maximum number of pages to be printed horizontally across." -msgstr "Sar ezazu horizontalean luzetara inprimatzeko gehienezko orrialde kopurua." +msgstr "Sar ezazu horizontalean luzetara inprimatzeko gehieneko orrialde kopurua." #. JpChS #: 05070500.xhp @@ -45122,7 +45122,7 @@ "par_idN109EB\n" "help.text" msgid "Enter the maximum number of pages to be printed vertically stacked." -msgstr "Sar ezazu bertikalean pilatuta inprimatzeko gehienezko orrialde kopurua." +msgstr "Sar ezazu bertikalean pilatuta inprimatzeko gehieneko orrialde kopurua." #. RmjkY #: 05070500.xhp @@ -45158,7 +45158,7 @@ "par_id3144507\n" "help.text" msgid "Enter the maximum number of pages to be printed." -msgstr "Sar ezazu inprimatzeko gehienezko orrialde kopurua." +msgstr "Sar ezazu inprimatzeko gehieneko orrialde kopurua." #. fBFBx #: 05080000.xhp @@ -58464,7 +58464,6 @@ #. MNort #: func_forecastetspiadd.xhp -#, fuzzy msgctxt "" "func_forecastetspiadd.xhp\n" "par_id0603201617141750\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-02-17 12:22+0100\n" -"PO-Revision-Date: 2020-04-05 21:16+0000\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556007671.000000\n" #. NQkD7 @@ -563,7 +563,7 @@ "par_id3154847\n" "help.text" msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns." -msgstr "Kurtsorea kokatutako datu-barrutia hautatzen du. Barruti bat datuak dituen ondoz ondoko gelaxken multzoa da, hutsik dauden errenkada eta zutabeek mugatzen dutenea." +msgstr "Kurtsorea kokatutako datu-barrutia hautatzen du. Barruti bat datuak dituen elkarren ondoko gelaxken multzoa da, hutsik dauden errenkada eta zutabeek mugatzen dutenea." #. 9Ae2w #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/scalc/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562054410.000000\n" #. NXy6S @@ -1373,7 +1373,7 @@ "hd_id3150769\n" "help.text" msgid "Automatically Filling in Data Based on Adjacent Cells" -msgstr "Ondoz ondoko gelaxketan oinarritutako datuak automatikoki betetzea" +msgstr "Elkarren ondoko gelaxketan oinarritutako datuak automatikoki betetzea" #. C6vL5 #: calc_series.xhp @@ -1445,7 +1445,7 @@ "par_idN106EE\n" "help.text" msgid "To quickly create a list of consecutive days, enter Monday in a cell, and drag the fill handle." -msgstr "Ondoz ondoko egunen zerrenda bat sortzeko berehala, idatzi Astelehena gelaxka batean, eta arrastatu betetze-heldulekua." +msgstr "Elkarren ondoko egunen zerrenda bat sortzeko berehala, idatzi Astelehena gelaxka batean, eta arrastatu betetze-heldulekua." #. a2oGa #: calc_series.xhp @@ -1877,7 +1877,7 @@ "par_id633869\n" "help.text" msgid "See Automatically Filling in Data Based on Adjacent Cells." -msgstr "Ikusi Ondoz ondoko gelaxketan oinarritutako datuak automatikoki betetzea." +msgstr "Ikusi Elkarren ondoko gelaxketan oinarritutako datuak automatikoki betetzea." #. 5GQRe #: cell_protect.xhp @@ -3389,7 +3389,7 @@ "par_id3150538\n" "help.text" msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed." -msgstr "Helburu-barrutiko gelaxka-erreferentziak elkarren segidako errenkadetan txertatzen dira. Gelaxka horiek automatikoki ordenatu eta ezkutatzen dira, eta, hautatutako funtzioa oinarri hartuta, azken emaitza bakarrik erakusten da." +msgstr "Helburu-barrutiko gelaxka-erreferentziak elkarren ondoko errenkadetan txertatzen dira. Gelaxka horiek automatikoki ordenatu eta ezkutatzen dira, eta, hautatutako funtzioa oinarri hartuta, azken emaitza bakarrik erakusten da." #. UubEm #: consolidate.xhp @@ -11291,7 +11291,7 @@ "par_id3159154\n" "help.text" msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items." -msgstr "Ordenatze-zerrendak erabiliz, gelaxka batean informazio jakin bat idatz dezakezu eta gero arrastatu, ondoz ondoko elementuen zerrenda batekin betetzeko." +msgstr "Ordenatze-zerrendak erabiliz, gelaxka batean informazio jakin bat idatz dezakezu eta gero arrastatu, elkarren ondoko elementuen zerrenda batekin betetzeko." #. BEsCh #: sorted_list.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-02-16 07:36+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" #. ugSgG #: 02000000.xhp @@ -2092,7 +2092,7 @@ "par_id3150333\n" "help.text" msgid "LIKE 'g?ve'" -msgstr "" +msgstr "LIKE 'bain?'" #. T7ZhS #: 02010100.xhp @@ -2182,7 +2182,7 @@ "par_id3150572\n" "help.text" msgid "Outer Join Escape Sequence: {oj outer-join}" -msgstr "" +msgstr "Outer Join ihes-sekuentzia: {oj outer-join}" #. VnKGf #: 02010100.xhp @@ -2245,7 +2245,7 @@ "par_id31537342\n" "help.text" msgid "SQL Escape syntax #1 - may be obsolete" -msgstr "" +msgstr "SQL ihes-sintaxia #1 - zaharkituta egon daiteke" #. AzkWz #: 02010100.xhp @@ -2254,7 +2254,7 @@ "par_id31537343\n" "help.text" msgid "SQL Escape syntax #2" -msgstr "" +msgstr "SQL ihes-sintaxia #2" #. UJ6VA #: 02010100.xhp @@ -2299,7 +2299,7 @@ "par_id3149539\n" "help.text" msgid "Example: select {d '1999-12-31'} from world.years" -msgstr "" +msgstr "Adibidea: select {d '1999-12-31'} from mundua.urteak" #. WJ4YB #: 02010100.xhp @@ -2308,7 +2308,7 @@ "par_id3149540\n" "help.text" msgid "Example: select * from mytable where years='1999-12-31'" -msgstr "" +msgstr "Adibidea: select * from niretaula where urteak='1999-12-31'" #. CZdA4 #: 02010100.xhp @@ -2488,7 +2488,7 @@ "par_id191120151905518123\n" "help.text" msgid "In the simplest case, where the user enters a value which is matched for equality, the parameter name with its preceding colon is simply entered in the Criterion row. In SQL mode this should be typed as WHERE \"Field\" = :Parameter_name" -msgstr "" +msgstr "Kasurik sinpleenean, erabiltzaileak berdintasunerako probatzen duen balioa sartzen duenean, parametro-izena, aurreko bi puntuak barne, 'Irizpidea' errenkadan sartzen da. SQL moduan honela idatzi daiteke: WHERE \"Eremua\" = :Parametro-izena" #. DZCXm #: 02010100.xhp @@ -2605,7 +2605,7 @@ "par_id3149632\n" "help.text" msgid "By clicking the Run SQL command directly icon in the SQL view, you can formulate a query that is not processed by $[officename] and sent directly to the database engine." -msgstr "" +msgstr "SQL ikuspegiko Exekutatu SQL komandoa zuzenean ikonoan klik eginez, $[officename] aplikazioak prozesatzen ez duen kontsulta bat formulatu daiteke eta zuzenean datu-basearen motorrari bidali." #. fKBDD #: 02010101.xhp @@ -2659,7 +2659,7 @@ "par_id3153924\n" "help.text" msgid "Specifies two different tables that you want to join." -msgstr "" +msgstr "Elkartu nahi diren bi taula desberdin zehazten ditu." #. X6wkD #: 02010101.xhp @@ -2704,7 +2704,7 @@ "par_id3152482\n" "help.text" msgid "Specifies the join type of the selected join. Some databases support only a subset of the various possible types." -msgstr "" +msgstr "Hautatutako elkartzearen mota zehazten du.Zenbait datu-basek balizko mota anitzen azpimultzo bat soilik onartzen dute." #. ngfse #: 02010101.xhp @@ -2713,7 +2713,7 @@ "hd_id3155334\n" "help.text" msgid "Inner Join" -msgstr "" +msgstr "Barneko elkartzea" #. 356Dv #: 02010101.xhp @@ -2722,7 +2722,7 @@ "par_id3155936\n" "help.text" msgid "In an inner join, the results table contains only those records for which the content of the linked fields is the same. In $[officename] SQL this type of link is created by a corresponding WHERE clause." -msgstr "" +msgstr "Barneko elkartze batean, emaitzen taulak gordetzen dituen erregistroak estekatutako eremuetan eduki bera dutenak dira. $[officename] SQL lengoaian, mota horretako esteka WHERE klausula batekin sortzen da." #. XYKGT #: 02010101.xhp @@ -2731,16 +2731,17 @@ "hd_id3156372\n" "help.text" msgid "Left Join" -msgstr "" +msgstr "Ezkerreko elkartzea" #. dRFux #: 02010101.xhp +#, fuzzy msgctxt "" "02010101.xhp\n" "par_id3166450\n" "help.text" msgid "In a left join, the results table contains all records of the queried fields from the left table and only those records of the queried fields from the right table for which the content of the linked fields is the same. In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command." -msgstr "" +msgstr "Ezkerreko elkartzeetan, emaitzen taulak honakoa izango du: ezkerreko taularen kasuan, kontsultatutako eremuen erregistro guztiak, eta eskuineko taularen kasuan, elkartutako eremuetarako eduki bera duten kontsultatutako eremuen erregistroak soilik. $[officename] SQLn, esteka mota hori LEFT OUTER JOIN komandoari dagokio." #. DxGWD #: 02010101.xhp @@ -2749,7 +2750,7 @@ "hd_id3155607\n" "help.text" msgid "Right Join" -msgstr "" +msgstr "Eskuineko elkartzea" #. 9eD8R #: 02010101.xhp @@ -2758,7 +2759,7 @@ "par_id3150647\n" "help.text" msgid "In a right join, the results table contains all records of the queried fields from the right table and only those records of the queried fields from the left table for which the content of the linked fields is the same. In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command." -msgstr "" +msgstr "Eskuineko elkartzeetan, emaitzen taulak honakoa izango du: eskuineko taularen kasuan, kontsultatutako eremuen erregistro guztiak, eta ezkerreko taularen kasuan, elkartutako eremuetarako eduki bera duten kontsultatutako eremuen erregistroak soilik. $[officename] SQLn, esteka mota hori RIGHT OUTER JOIN komandoari dagokio." #. wcFAd #: 02010101.xhp @@ -2767,7 +2768,7 @@ "hd_id3158215\n" "help.text" msgid "Full Join" -msgstr "" +msgstr "Elkartze osoa" #. wAFid #: 02010101.xhp @@ -2776,7 +2777,7 @@ "par_id3163665\n" "help.text" msgid "In a full join, the results table contains all records of the queried fields from the left and right tables. In the SQL of $[officename] this type of link corresponds to the FULL OUTER JOIN command." -msgstr "" +msgstr "Elkartze osoetan, emaitzen taulak kontsultatutako eremuen erregistro guztiak izango du, bai eskuineko taulakoak bai ezkerreko taulakoak. $[officename] SQLn, esteka mota hori FULL OUTER JOIN komandoari dagokio." #. gYRyC #: 02010101.xhp @@ -2785,7 +2786,7 @@ "hd_id0305200912031976\n" "help.text" msgid "Natural" -msgstr "" +msgstr "Naturala" #. 44FEn #: 02010101.xhp @@ -2794,7 +2795,7 @@ "par_id0305200912031977\n" "help.text" msgid "In a natural join, the keyword NATURAL in inserted into the SQL statement that defines the relation. The relation joins all columns that have the same column name in both tables. The resulting joined table contains only one column for each pair of equally named columns." -msgstr "" +msgstr "Elkartze naturaletan, NATURAL gako-hitza txertatzen da erlazioa definitzen duen SQL instrukzioan. Erlazioak bi tauletan zutabe-izen bera duten zutabe guztiak elkartzen ditu. Elkartutako taulak zutabe bakarra izango du izen bera duten zutabe-bikote bakoitzeko." #. pK6MV #: 04000000.xhp @@ -2803,7 +2804,7 @@ "tit\n" "help.text" msgid "Forms" -msgstr "" +msgstr "Inprimakiak" #. AXYAE #: 04000000.xhp @@ -2812,7 +2813,7 @@ "hd_id3150476\n" "help.text" msgid "Forms" -msgstr "" +msgstr "Inprimakiak" #. EJGgk #: 04000000.xhp @@ -2821,7 +2822,7 @@ "bm_id3156136\n" "help.text" msgid "forms; general information (Base)" -msgstr "" +msgstr "inprimakiak; informazio orokorra (Base)" #. d9y84 #: 04000000.xhp @@ -2830,7 +2831,7 @@ "par_id3156136\n" "help.text" msgid "Forms can be used to enter or to edit existing database contents easily." -msgstr "" +msgstr "Inprimakiak erabili daitezke datu-baseen edukiak modu errazean sartu edo editatzeko." #. pjGfo #: 04000000.xhp @@ -2839,7 +2840,7 @@ "hd_id3157910\n" "help.text" msgid "FormWizard" -msgstr "" +msgstr "Inprimaki-morroia" #. GDZow #: 04000000.xhp @@ -2848,7 +2849,7 @@ "hd_id3156003\n" "help.text" msgid "Form Controls" -msgstr "" +msgstr "Inprimaki-kontrolak" #. CyFwA #: 04000000.xhp @@ -2857,7 +2858,7 @@ "par_id3156156\n" "help.text" msgid "The Form Controls toolbar provides the tools required to create a form in a text, table, drawing, or presentation document." -msgstr "" +msgstr "'Inprimaki-kontrolak' tresna-barrak testu-, taula-, marrazki- edo aurkezpen-dokumentu batean inprimaki bat sortzeko tresnak eskaintzen ditu." #. itCcM #: 04000000.xhp @@ -2866,7 +2867,7 @@ "hd_id3155388\n" "help.text" msgid "Form in Design Mode" -msgstr "" +msgstr "Inprimakia diseinu moduan" #. jwRmr #: 04000000.xhp @@ -2875,7 +2876,7 @@ "par_id3150504\n" "help.text" msgid "In design mode, the form is designed and the properties of the form and the controls contained in it are defined." -msgstr "" +msgstr "Diseinu moduan, inprimakia diseinatu egiten da eta inprimakiaren propietateak eta kontrolak zehazten dira." #. bWakN #: 04000000.xhp @@ -2884,7 +2885,7 @@ "hd_id3149784\n" "help.text" msgid "Sorting and Filtering Data" -msgstr "" +msgstr "Datuak ordenatu eta iragaztea" #. 9s5BM #: 04000000.xhp @@ -2893,7 +2894,7 @@ "par_id3151384\n" "help.text" msgid "You will find the sorting and filter functions in the toolbar when you open a form in user mode." -msgstr "" +msgstr "Inprimaki bat erabiltzaile moduan irekitzean, tresna-barran ordenatze- eta iragazte-funtzioak agertuko dira." #. Dv2ku #: 04000000.xhp @@ -2902,7 +2903,7 @@ "hd_id3148944\n" "help.text" msgid "Subforms" -msgstr "" +msgstr "Azpinprimakiak" #. CmENz #: 04030000.xhp @@ -2911,7 +2912,7 @@ "tit\n" "help.text" msgid "Form Design" -msgstr "" +msgstr "Inprimaki-diseinua" #. 9uFK3 #: 04030000.xhp @@ -2920,7 +2921,7 @@ "bm_id3148668\n" "help.text" msgid "forms; designing (Base)" -msgstr "" +msgstr "inprimakiak; diseinatzea (Base)" #. P4Yuk #: 04030000.xhp @@ -2929,7 +2930,7 @@ "hd_id3148668\n" "help.text" msgid "Form Design" -msgstr "" +msgstr "Inprimaki-diseinua" #. FC52Y #: 04030000.xhp @@ -2938,7 +2939,7 @@ "par_id3154230\n" "help.text" msgid "Any $[officename] document can be expanded into a form. Simply add one or more form controls." -msgstr "" +msgstr "$[officename] dokumentu guztiak inprimaki bihurtu daitezke. Horretarako, gehitu inprimaki-kontrol bat edo gehiago." #. Pp5mg #: 04030000.xhp @@ -2947,7 +2948,7 @@ "par_id3145382\n" "help.text" msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the functions needed to edit a form. More functions can be found in the Form Design bar and More Controls bar." -msgstr "" +msgstr "Ireki inprimaki-kontrolen tresna-barra. Inprimaki-kontrolen tresna-barrak inprimakiak editatzeko behar diren funtzioak ditu. Funtzio gehiago daude Inprimaki-diseinua barran eta Kontrol gehiago barran." #. 8SrEX #: 04030000.xhp @@ -2956,7 +2957,7 @@ "par_id3153146\n" "help.text" msgid "In form design mode you can include controls, apply properties to them, define Form properties, and define subforms." -msgstr "" +msgstr "Inprimakiak diseinatzeko moduan, kontrolak gehitu, propietateak aplikatu, eta inprimaki-propietateak eta azpinprimakiak definitu daitezke." #. A95sK #: 04030000.xhp @@ -2965,7 +2966,7 @@ "par_id3154924\n" "help.text" msgid "The Form Navigator iconIcon on the Form Design bar opens the Form Navigator." -msgstr "" +msgstr "'Inprimaki-diseinua' barrako Inprimaki-nabigatzailea ikonoakIkonoa inprimaki-nabigatzailea irekitzen du." #. 5wdwF #: 04030000.xhp @@ -2974,7 +2975,7 @@ "par_id3153968\n" "help.text" msgid "The Open in Design Mode iconIcon allows you to save a form document so that it always opens in form design mode." -msgstr "" +msgstr "Ireki diseinu moduan ikonoarenIkonoa bidez, inprimaki-dokumentuak gorde daitezke eta beti editatzeko moduan irekiko dira." #. 4AXt6 #: 04030000.xhp @@ -2983,7 +2984,7 @@ "par_id3154948\n" "help.text" msgid "If there is an error when assigning properties to the objects contained in the form (for example, when assigning a non-existent database table to an object), a corresponding error message appears. This error message may contain a More button. If you click on More, a dialog displaying more information about the current problem appears." -msgstr "" +msgstr "Errorea gertatzen bada inprimakiko objektuei propietateak esleitzean (adibidez, lehendik ez dagoen datu-base bateko taula bat objektu bati esleitzean), errore-mezu bat agertuko da. Errore-mezu horrek Gehiago botoia eduki dezake. Gehiago botoia sakatzen bada, elkarrizketa-koadro bat irekiko da eta uneko erroreari buruzko informazioa erakutsiko du." #. cLmBi #: main.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/sdraw.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-12-03 12:49+0000\n" +"PO-Revision-Date: 2021-04-13 17:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1558248219.000000\n" #. dHbww @@ -167,7 +167,7 @@ "par_idN105B6\n" "help.text" msgid "Switch to the master view." -msgstr "Aldatu ikuspegi maisura." +msgstr "Aldatu maisu-ikuspegira." #. nstgU #: main0103.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-06 16:27+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562054310.000000\n" #. 3B8ZN @@ -788,7 +788,7 @@ "par_id291525000873676\n" "help.text" msgid "An EPUB publication is delivered as a single file and is an unencrypted zipped archive containing a website. It includes HTML files, images, CSS style sheets, and other assets such as metadata, multimedia and interactivity." -msgstr "EPUB argitalpen bat fitxategi bakar modura banatzen da eta barruan webgune bat duen zifratu gabeko fitxategi konprimitua da. HTML fitxategiak, irudiak, CSS estilo-orriak, metadatuak, multimedia-elementuak eta elkarrekintzetarako elementuak ditu." +msgstr "EPUB argitalpen bat fitxategi bakar modura banatzen da eta barruan webgune bat duen zifratu gabeko fitxategi konprimatua da. HTML fitxategiak, irudiak, CSS estilo-orriak, metadatuak, multimedia-elementuak eta elkarrekintzetarako elementuak ditu." #. SZipe #: 00000002.xhp @@ -1472,7 +1472,7 @@ "par_idN1074C\n" "help.text" msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the Page Up or Page Down key." -msgstr "Onartutako gehienezko edo gutxieneko balioa ezartzeko, egin klik uneko balioan eta ondoren sakatu Page Up edo Page Down tekla." +msgstr "Onartutako gehieneko edo gutxieneko balioa ezartzeko, egin klik uneko balioan eta ondoren sakatu Page Up edo Page Down tekla." #. EDSDr #: 00000004.xhp @@ -4379,7 +4379,7 @@ "par_id3149649\n" "help.text" msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:" -msgstr "OpenDocument fitxategi-formatuko dokumentuak XML fitxategiak dituzten zip artxibo konprimitu gisa gordetzen dira. XML fitxategi horiek ikusteko, deskonprimitzeko programa batekin ireki dezakezu OpenDocument fitxategia. Fitxategi eta direktorio hauek egoten dira OpenDocument fitxategietan:" +msgstr "OpenDocument fitxategi-formatuko dokumentuak XML fitxategiak dituzten zip artxibo konprimatu gisa gordetzen dira. XML fitxategi horiek ikusteko, deskonprimitzeko programa batekin ireki dezakezu OpenDocument fitxategia. Fitxategi eta direktorio hauek egoten dira OpenDocument fitxategietan:" #. gxFHu #: 00000021.xhp @@ -4451,7 +4451,7 @@ "par_id3153368\n" "help.text" msgid "Additional files and folders can be contained in the packed file format." -msgstr "Fitxategi-formatu konprimituan fitxategi eta karpeta gehiago egon daitezke." +msgstr "Fitxategi-formatu konprimatuan fitxategi eta karpeta gehiago egon daitezke." #. XTjqF #: 00000021.xhp @@ -4865,7 +4865,7 @@ "par_id993159201\n" "help.text" msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics." -msgstr "Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimitutako irudiak onartzen baditu inprimagailuak." +msgstr "Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimatutako irudiak onartzen baditu inprimagailuak." #. EZteg #: 00000200.xhp @@ -5441,7 +5441,7 @@ "par_id3153827\n" "help.text" msgid "Combines consecutive delimiters and removes blank data fields." -msgstr "Ondoz ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu." +msgstr "Elkarren ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu." #. kzXfC #: 00000208.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-02-06 09:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-19 10:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563601251.000000\n" #. 3u8hR @@ -3803,7 +3803,7 @@ "par_id541526903668055\n" "help.text" msgid "Number of contiguous ranges in a column with same formula." -msgstr "Zutabe batean, formula bera duten ondoz ondoko barrutien kopurua." +msgstr "Zutabe batean, formula bera duten elkarren ondoko barrutien kopurua." #. LU85G #: 01100400.xhp @@ -9338,7 +9338,7 @@ "par_id3150603\n" "help.text" msgid "In a Master document, you can switch the Navigator between normal view and master view." -msgstr "Dokumentu maisu batean, Nabigatzailea ikuspegi normalaren eta ikuspegi maisuaren artean alda daiteke." +msgstr "Dokumentu maisu batean, Nabigatzailea ikuspegi normalaren eta maisu-ikuspegiaren artean alda daiteke." #. hXrHA #: 02110000.xhp @@ -9356,7 +9356,7 @@ "par_id3150789\n" "help.text" msgid "The master view in the Navigator displays the following icons:" -msgstr "Nabigatzaileko ikuspegi maisuak ondorengo ikonoak bistaratzen ditu:" +msgstr "Nabigatzaileko maisu-ikuspegiak ondorengo ikonoak bistaratzen ditu:" #. BfM3B #: 02110000.xhp @@ -9365,7 +9365,7 @@ "hd_id3152542\n" "help.text" msgid "Toggle Master View" -msgstr "Txandakatu maisuaren ikuspegia" +msgstr "Txandakatu maisu-ikuspegia" #. JmECn #: 02110000.xhp @@ -9374,7 +9374,7 @@ "par_id3153394\n" "help.text" msgid "Switches between master view and normal view." -msgstr "Maisuaren ikuspegitik ikuspegi normalera aldatzen da, eta alderantziz." +msgstr "Maisu-ikuspegitik ikuspegi normalera aldatzen da, eta alderantziz." #. W32iU #: 02110000.xhp @@ -9392,7 +9392,7 @@ "par_id3159233\n" "help.text" msgid "Toggle Master View" -msgstr "Txandakatu maisuaren ikuspegia" +msgstr "Txandakatu maisu-ikuspegia" #. 4NntD #: 02110000.xhp @@ -9581,7 +9581,7 @@ "par_id3153969\n" "help.text" msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator." -msgstr "Dokumentu maisuan fitxategiak txertatzeko mahaigainetik fitxategi bat arrastatu eta Nabigatzailearen ikuspegi maisura jaregin." +msgstr "Dokumentu maisuan fitxategiak txertatzeko, arrastatu fitxategi bat mahaigainetik eta jaregin nabigatzailearen ikuspegi maisuan." #. 7ibA3 #: 02110000.xhp @@ -9842,7 +9842,7 @@ "par_id271603459179173\n" "help.text" msgid "This command can be used with external file links to sections (place cursor outside of the section), master documents,sheets linked with Sheet - Insert Sheet from File or Sheet - Link to External Data, Function WEBSERVICE, images and OLE objects (when inserted with a link to an external file)." -msgstr "" +msgstr "Komando hau estekatuta dauden kanpo-fitxategietan erabili daiteke, estekak honako elementuetan daudenean: sekzioak (kokatu kurtsorea sekziotik kanpo), dokumentu maisuak, Orria - Txertatu orria fitxategitik edo Orria - Estekatu kanpoko datuekin erabilita estekatutako kalkulu-orriak, WEBSERVICE funtzioak, irudiak eta OLE objektuak (kanpo-fitxategi baterako esteka txertatuta dutenean)." #. g3wLZ #: 02180000.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Maiuskula txikiak - Hautatutako minuskulak maiuskula bihurtzen ditu eta haien tamaina txikitzen du." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "letra-tipo keinukariak dirdira egiten duten letra-tipoak" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Keinukaria" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Hautatutako karaktereek keinuka egin dezaten ahalbidetzen du. Ezin da aldatu keinuen maiztasuna." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -20165,7 +20138,7 @@ "par_id3145171\n" "help.text" msgid "Enter the percentage of the font width by which to horizontally stretch or compress the selected text." -msgstr "Sartu hautatutako testuaren letra-tipoa zein ehunekotan tiratu edo konprimituko den, horizontalean." +msgstr "Sartu hautatutako testuaren letra-tipoa zein ehunekotan tiratu edo konprimatuko den, horizontalean." #. CH5Cb #: 05020500.xhp @@ -20201,7 +20174,7 @@ "par_id3146974\n" "help.text" msgid "Specifies the spacing between the characters of the selected text. Enter the amount by which you want to expand or condense the text in the spin button." -msgstr "Hautatutako testuaren karaktereen arteko tartea zehazten du. Sartu kopurua biratze-botoian, testua zenbat zabaldu edo konprimitu nahi duzun adierazteko." +msgstr "Hautatutako testuaren karaktereen arteko tartea zehazten du. Sartu kopurua biratze-botoian, testua zenbat zabaldu edo konprimatu nahi duzun adierazteko." #. wSGzU #: 05020500.xhp @@ -21632,7 +21605,7 @@ "par_idN109BA\n" "help.text" msgid "Merge adjacent line styles" -msgstr "Fusionatu ondoz ondoko marra-estiloak" +msgstr "Fusionatu elkarren ondoko marra-estiloak" #. xBTmG #: 05030500.xhp @@ -22550,7 +22523,7 @@ "par_id91601733418064\n" "help.text" msgid "Text direction only appears if Asian or Complex text layout is set in %PRODUCTNAME - PreferencesTools - Options - Language Setting - Languages." -msgstr "" +msgstr "Testu-norabida agertzeko, Asiarra edo Testu-diseinu konplexua aukerak ezarrita egon behar du %PRODUCTNAME - HobespenakTresnak - Aukerak - Hizkuntza-ezarpenak - Hizkuntzak hobespenean." #. MR8zP #: 05040200.xhp @@ -28742,7 +28715,7 @@ "bm_id3149988\n" "help.text" msgid "slanting draw objectsdraw objects; slantingareas; slantingshapes; control pointsdraw objects; control points" -msgstr "" +msgstr "marrazki-objektuak inklinatzeamarrazki-objektuak; inklinatzeaareak; inklinatzeaformak; kontrol-puntuakmarrazki-objektuak; kontrol-puntuak" #. DxadW #: 05230400.xhp @@ -36428,7 +36401,7 @@ "par_id3154173\n" "help.text" msgid "You can also include frames, graphics, and OLE objects in an AutoCorrect entry, so long as they are anchored as characters in the text. Select the frame, graphic or OLE object and at least one text character in front of and behind the object. Open this dialog, type a name for this AutoCorrect entry in the Replace box, and then click New." -msgstr "Autozuzenketa sarrera batean markoak, grafikoak eta OLE objektuak ere txerta daitezke, betiere karaktere gisa ainguratuta badaude testuan. Hautatu marko, grafiko edo OLE objektu bat eta objektuaren aurreko edo atzeko testu-karaktere bat gutxienez. Ireki elkarrizketa-koadro hau, idatzi zuzenketa automatiko honen sarreraren izena Ordeztu koadroan eta ondoren egin klik Berria aukeran. " +msgstr "Autozuzenketa-sarrera batean markoak, grafikoak eta OLE objektuak ere txerta daitezke, betiere karaktere gisa ainguratuta badaude testuan. Hautatu marko, grafiko edo OLE objektu bat eta objektuaren aurreko edo atzeko testu-karaktere bat gutxienez. Ireki elkarrizketa-koadro hau, idatzi zuzenketa automatiko honen sarreraren izena Ordeztu koadroan eta ondoren egin klik Berria aukeran. " #. zG2eL #: 06040200.xhp @@ -37211,7 +37184,7 @@ "par_id3159414\n" "help.text" msgid "Enter the maximum number of words that you want to store in the Word Completion list." -msgstr "Sartu hitz-osaketaren zerrendan gorde nahi duzun gehienezko hitz kopurua." +msgstr "Sartu hitz-osaketaren zerrendan gorde nahi duzun gehieneko hitz kopurua." #. aXmEc #: 06040600.xhp @@ -38300,7 +38273,7 @@ "hd_id3155852\n" "help.text" msgid "Consecutive numbering" -msgstr "Ondoz ondoko zenbakitzea" +msgstr "Elkarren ondoko zenbakitzea" #. 4ssXo #: 06050500.xhp @@ -40271,7 +40244,7 @@ "par_id531603928029282\n" "help.text" msgid "To assign or modify a shortcut key: select a command in the Function list, select the key combination to be assigned in the Shortcut Keys list, then click Modify." -msgstr "" +msgstr "Lasterbide bat esleitu edo aldatzeko, hautatu komando bat Funtzioa zerrendan, hautatu esleituko den tekla-konbinazioa Laster-teklak zerrendan eta egin klik Aldatu aukeran." #. BXkQm #: 06140200.xhp @@ -40280,7 +40253,7 @@ "par_id341603930297058\n" "help.text" msgid "If the selected function already has a shortcut key, it is displayed in the Keys list. It is possible to assign the same function to more than one key." -msgstr "" +msgstr "Hautatutako funtzioak dagoeneko laster-tekla bat badu, Teklak zerrendan bistaratuko da. Posible da funtzio berak laster-tekla bat baino gehiago izan dezan." #. Fi6Jn #: 06140200.xhp @@ -40307,7 +40280,7 @@ "par_id3149811\n" "help.text" msgid "Lists the shortcut keys and the associated commands." -msgstr "" +msgstr "Laster-teklak eta haiei esleitutako komandoak zerrendatzen ditu." #. GWDEX #: 06140200.xhp @@ -40361,7 +40334,7 @@ "par_id3159148\n" "help.text" msgid "Lists functions that can be assigned to a shortcut key." -msgstr "" +msgstr "Laster-tekla bati esleitu dakizkiokeen funtzioak zerrendatzen ditu." #. Gfzcs #: 06140200.xhp @@ -40514,7 +40487,7 @@ "par_id261603929349350\n" "help.text" msgid "Shortcut Keys in %PRODUCTNAME" -msgstr "" +msgstr "%PRODUCTNAME suiteko laster-teklak" #. fybrb #: 06140300.xhp @@ -40523,7 +40496,7 @@ "tit\n" "help.text" msgid "Context Menus (Customizing)" -msgstr "" +msgstr "Laster-menuak (pertsonalizazioa)" #. PGanB #: 06140300.xhp @@ -40568,7 +40541,7 @@ "par_id621514299131013\n" "help.text" msgid "Choose Tools - Customize - Context Menus tab." -msgstr "" +msgstr "Aukeratu Tresnak - Personalizatu - Laster-menuak fitxa." #. dTLGx #: 06140300.xhp @@ -40658,7 +40631,7 @@ "par_id921514303969718\n" "help.text" msgid "Select the Context Menu where the customization is to be applied." -msgstr "" +msgstr "Hautatu pertsonalizazioa aplikatuko zaion laster-menua." #. DLGB3 #: 06140300.xhp @@ -40712,7 +40685,7 @@ "hd_id381604852428742\n" "help.text" msgid "Customize" -msgstr "" +msgstr "Pertsonalizatu" #. ASEww #: 06140300.xhp @@ -43331,7 +43304,7 @@ "par_id651526423393786\n" "help.text" msgid "The signature line displays an horizontal line, a location mark, the name, title and email of signer." -msgstr "" +msgstr "Sinadura-marrak marra horizontal bat, kokagune-marka bat eta sinatzailearen izena, izenburua eta posta-helbidea bistaratzen ditu." #. auwte #: addsignatureline.xhp @@ -43385,7 +43358,7 @@ "par_id111526467993387\n" "help.text" 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 "" +msgstr "Txertatu sinatzailearen posta elektronikoko helbidea. Helbide hori ez da bistaratuko sinadura-marraren kutxa grafikoan, baina sinadura digitalean erabiliko da." #. EpDAG #: addsignatureline.xhp @@ -43448,7 +43421,7 @@ "tit\n" "help.text" msgid "Certificate Paths" -msgstr "" +msgstr "Ziurtagirien bide-izenak" #. FBox6 #: certificatepath.xhp @@ -43457,7 +43430,7 @@ "bm_id211594767045571\n" "help.text" msgid "digital signatures;certificate path certificate path" -msgstr "" +msgstr "sinadura digitalak;ziurtagirien bide-izena ziurtagirien bide-izena" #. MhnU5 #: certificatepath.xhp @@ -43475,7 +43448,7 @@ "par_id841594763815175\n" "help.text" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Hautatu edo gehitu sare-segurtasuneko zerbitzuen ziurtagiriaren direktorio zuzena sinadura digitaletarako." #. vCwDA #: certificatepath.xhp @@ -43484,7 +43457,7 @@ "hd_id511594765946403\n" "help.text" msgid "Available Certificate Paths" -msgstr "" +msgstr "Erabilgarri dauden ziurtagirien bide-izenak" #. NK4GB #: certificatepath.xhp @@ -43493,7 +43466,7 @@ "par_id981594766097073\n" "help.text" msgid "Shows the list of Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Sinadura digitaletarako erabiliko diren sare-segurtasuneko zerbitzuen ziurtagirien direktorioen zerrenda erakusten du." #. DABZF #: certificatepath.xhp @@ -43502,7 +43475,7 @@ "hd_id741594764591263\n" "help.text" msgid "Select NSS path" -msgstr "" +msgstr "Hautatu NSS bide-izena" #. 8gaEP #: certificatepath.xhp @@ -43511,7 +43484,7 @@ "par_id851594766090600\n" "help.text" msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list." -msgstr "" +msgstr "Fitxategiak aukeratzeko elkarrizketa-koadro bat irekitzen du, sare-segurtasuneko zerbitzuen ziurtagirien direktorio berri bat gehitzeko zerrendari." #. ViF5g #: digitalsignatures.xhp @@ -44582,7 +44555,7 @@ "tit\n" "help.text" msgid "Snap Guides" -msgstr "" +msgstr "Doitze-gidak" #. c8J5E #: guides.xhp @@ -44600,7 +44573,7 @@ "par_idN10562\n" "help.text" msgid "Snap Guides" -msgstr "" +msgstr "Doitze-gidak" #. XeU3j #: guides.xhp @@ -44609,7 +44582,7 @@ "par_id3146313\n" "help.text" msgid "Specifies the display options for snap guides." -msgstr "" +msgstr "Doitze-giden bistaratze-aukerak zehazten ditu." #. R26xc #: guides.xhp @@ -44618,7 +44591,7 @@ "par_idN1057B\n" "help.text" msgid "Display Snap Guides" -msgstr "" +msgstr "Bistaratu doitze-gidak" #. jQwEy #: guides.xhp @@ -44627,7 +44600,7 @@ "par_idN1057F\n" "help.text" msgid "Displays or hides snap guides that you can use to align objects on a page." -msgstr "" +msgstr "Orrialde batean objektuak lerrokatzeko erabiliko diren doitze-gidak bistaratzen edo ezkutatzen ditu." #. Wpp35 #: guides.xhp @@ -44636,7 +44609,7 @@ "par_idN105C6\n" "help.text" msgid "Snap Guides to Front" -msgstr "" +msgstr "Orrialde batean objektuak lerrokatzeko erabili nahi dituzun doitze-lerroak bistaratzen edo ezkutatzen ditu." #. euVcC #: guides.xhp @@ -44645,7 +44618,7 @@ "par_idN105CA\n" "help.text" msgid "Displays the snap guides in front of the objects on the pageslidepage." -msgstr "" +msgstr "Doirtze-gidak bistaratzen ditu objektuen aurrean, orrialdeandiapositibanorrialdean." #. FELMB #: image_compression.xhp @@ -44654,7 +44627,7 @@ "tit\n" "help.text" msgid "Compress Image" -msgstr "Konprimitu irudia" +msgstr "Konprimatu irudia" #. xfK5C #: image_compression.xhp @@ -44798,7 +44771,7 @@ "par_id761534716504198\n" "help.text" msgid "Check to change the dimensions of the compressed image." -msgstr "Markatu konprimitutako irudiaren dimentsioak aldatzeko." +msgstr "Markatu konprimatutako irudiaren dimentsioak aldatzeko." #. 3eHCf #: image_compression.xhp @@ -47597,7 +47570,7 @@ "bm_id761574111929927\n" "help.text" msgid "PDF export;digital signaturePDF export;sign PDF documentPDF export;time stamp" -msgstr "" +msgstr "PDF esportazioa;sinadura digitalaPDF esportazioa;PDF dokumentua sinatzeaPDF esportazioa;denbora-zigilua" #. ChX9A #: ref_pdf_export_digital_signature.xhp @@ -48146,7 +48119,7 @@ "hd_id2796411\n" "help.text" msgid "Archive (PDF/A, ISO 19005)" -msgstr "" +msgstr "Artxiboa (PDF/A, ISO 19005)" #. ELsXa #: ref_pdf_export_general.xhp @@ -48155,7 +48128,7 @@ "par_id5016327\n" "help.text" msgid "Converts to the PDF/A-1b, PDF/A-2b, or PDF/A-3b format. All fonts used in the source document are embedded in the generated PDF file, and PDF tags are written. The primary purpose is to create an electronic document whose appearance is device and application independent, making it suitable for long term preservation." -msgstr "" +msgstr "PDF/A-1b, PDF/A-2b edo PDF/A-3b formatuetara bihurtzen du. Iturburuko dokumentuan erabilitako letra-tipo guztiak kapsulatuko dira sortutako PDF fitxategian eta PDF etiketak idatziko dira. Funtzio honen helburu nagusia da edozein gailu eta aplikaziorekiko independentea den itxura izango duen dokumentu elektroniko bat sortzea, eta horrela, denbora luzez gordetzeko egokia izango den dokumentua sortzea." #. RyRdK #: ref_pdf_export_general.xhp @@ -48164,7 +48137,7 @@ "par_id301602634061241\n" "help.text" msgid "PDF/A-2b is recommended for most users, because it allows for layers and transparency with shapes and images. It also compresses better (JPEG 2000) than PDF/A-1b, usually producing smaller files. PDF/A-3b is identical to PDF/A-2b, but also accepts embedding of other file formats." -msgstr "" +msgstr "PDF/A-2b espezifikazioa da erabiltzaile gehienentzat gomendatzen dena, geruzak eta gardentasuna ahalbidetzen baititu forma eta irudietan. Konpresio hobea ere badu (JPEG 2000) PDF/A-1b espezifikazioarekin alderatuta, eta horri esker fitxategi txikiagoak sortzen ditu. PDF/A-3b eta PDF/A-2b berdinak dira, baina lehenak beste fitxategi-formatu batzuk kapsulatzea onartzen du." #. UTPZ7 #: ref_pdf_export_general.xhp @@ -48272,7 +48245,7 @@ "hd_id671602451425200\n" "help.text" msgid "Structure" -msgstr "" +msgstr "Egitura" #. FWYXV #: ref_pdf_export_general.xhp @@ -48281,7 +48254,7 @@ "par_id51602451783950\n" "help.text" msgid "Sets options for diverse features such as bookmarks, comments, page layout." -msgstr "" +msgstr "Laster-marketarako, iruzkinetarako, orrialde-diseinurako eta beste hainbat eginbidetarako aukerak ezartzen ditu." #. ZbwvD #: ref_pdf_export_general.xhp @@ -48290,7 +48263,7 @@ "hd_id8257087\n" "help.text" msgid "Export outlines" -msgstr "" +msgstr "Esportatu eskemak" #. 72zLQ #: ref_pdf_export_general.xhp @@ -48299,7 +48272,7 @@ "par_id3479415\n" "help.text" 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 "" +msgstr "Hautatu hau Writer dokumentuetako laster-markak PDFaren laster-marka gisa esportatzeko. Laster-markak sortzeko, eskema-paragrafoak erabiltzen dira (Tresnak - Kapitulu-zenbakitzea), bai eta iturburu-dokumentuan hiperestekak esleitu zaizkien aurkibide-sarrerak ere." #. iTBMB #: ref_pdf_export_general.xhp @@ -48308,7 +48281,7 @@ "par_id71603283849925\n" "help.text" msgid "Only paragraphs with Outline level 1 - 10 will be exported. The name of the Paragraph Style is irrelevant. For example, the default version of Paragraph Style Title is not exported when its Outline level is Text Body. To see a paragraph’s Outline level, choose Format - Paragraph - Outline & Numbering tab." -msgstr "" +msgstr "1 - 10 arteko eskema-maila duten paragrafoak soilik esportatuko dira. Paragrafo-estiloaren izenari ez zaio kasurik egingo. Adibidez, Izenburua paragrafo-estiloaren bertsio lehenetsia ez da esportatuko bere eskema-maila Testu-gorputza bada. Paragrafo baten eskema-maila ikusteko, aukeratu Formatua - Paragrafoa - Eskema eta zenbakitzea fitxa." #. PejFz #: ref_pdf_export_general.xhp @@ -48515,7 +48488,7 @@ "hd_id7464217\n" "help.text" msgid "Outlines and page" -msgstr "" +msgstr "Eskemak eta orrialdea" #. 8e4Tz #: ref_pdf_export_initial_view.xhp @@ -48794,7 +48767,7 @@ "par_id9302346\n" "help.text" msgid "Specify how to export outlines and hyperlinks in your document." -msgstr "" +msgstr "Zehaztu dokumentuko eskemak eta hiperestekak nola esportatuko diren." #. CDBGh #: ref_pdf_export_links.xhp @@ -48812,7 +48785,7 @@ "hd_id8296151\n" "help.text" msgid "Export outlines as named destinations" -msgstr "" +msgstr "Esportatu eskemak izendatutako helburu gisa" #. YmVwd #: ref_pdf_export_links.xhp @@ -49208,7 +49181,7 @@ "tit\n" "help.text" msgid "Universal Accessibility (PDF Export)" -msgstr "" +msgstr "Irisgarritasun unibertsala (PDF esportazioa)" #. 9h83z #: ref_pdf_export_universal_accessibility.xhp @@ -49217,7 +49190,7 @@ "bm_id791603045631184\n" "help.text" msgid "PDF export;Universal Accessibility" -msgstr "" +msgstr "PDF esportazioa;irisgarritasun unibertsala" #. EJegu #: ref_pdf_export_universal_accessibility.xhp @@ -49226,7 +49199,7 @@ "hd_id711602623643384\n" "help.text" msgid "Universal Accessibility (PDF/UA)" -msgstr "" +msgstr "Irisgarritasun unibertsala (PDF/UA)" #. 5iM7L #: ref_pdf_export_universal_accessibility.xhp @@ -49244,7 +49217,7 @@ "par_id891603046173838\n" "help.text" msgid "then choose Universal Accessibility (PDF/UA)." -msgstr "" +msgstr "ondoren, aukeratu Irisgarritasun unibertsala (PDF/UA)." #. zBYd6 #: ref_pdf_export_universal_accessibility.xhp @@ -49253,7 +49226,7 @@ "par_id151603044639549\n" "help.text" msgid "The specification defines the required structure and formatting of a document and PDF features that are better suited for accessibility. This specification can also be used to produce documents that achieve W3C's Web Content Accessibility Guidelines 2.0 (WCAG 2.0)." -msgstr "" +msgstr "Espezifikazioak definitzen du dokumentuaren irisgarritasun hoberako egokienak diren egitura eta formatua. Espezifikazio hau W3C partzuergoaren Web Content Accessibility Guidelines 2.0 (WCAG 2.0) gidalerroak betetzen dituzten dokumentuak sortzeko ere erabili daiteke." #. V8cE4 #: ref_pdf_export_universal_accessibility.xhp @@ -49262,7 +49235,7 @@ "par_id701603046818148\n" "help.text" msgid "The present implementation (January 2020) checks the following:" -msgstr "" +msgstr "Uneko inplementazioak (2020ko urtarrila) honakoak egiaztatzen ditu:" #. 2EEdB #: ref_pdf_export_universal_accessibility.xhp @@ -49334,7 +49307,7 @@ "par_id71603043022999\n" "help.text" msgid "No blinking text." -msgstr "Testu keinukaririk ez." +msgstr "Testu keinukaririk ez dagoela." #. NojG4 #: ref_pdf_export_universal_accessibility.xhp @@ -49361,7 +49334,7 @@ "par_id281603043041040\n" "help.text" msgid "Text does not convey additional meaning with (direct) formatting." -msgstr "" +msgstr "Testuak ez dituela esanahi gehigarriak formatu (zuzenarekin)." #. V7hAY #: ref_pdf_export_universal_accessibility.xhp @@ -49649,7 +49622,7 @@ "par_id3150756\n" "help.text" msgid "Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an email sending window with the PDF as an attachment." -msgstr "" +msgstr "'Esportatu PDF gisa' elkarrizketa-koadroa erakusten du, uneko dokumentua PDF formatura esportatzen du eta, gero, mezu elektronikoak bidaltzeko leiho bat irekitzen du, PDF fitxategia eranskin gisa bidaltzeko." #. wTQMX #: securitywarning.xhp @@ -50063,7 +50036,7 @@ "tit\n" "help.text" msgid "Time Stamp Authorities for Digital Signatures" -msgstr "" +msgstr "Denbora Zigilatzeko Agintzaritzak sinadura digitaletarako" #. HgFt5 #: timestampauth.xhp @@ -50072,7 +50045,7 @@ "bm_id371597437796483\n" "help.text" msgid "time stamp;digital signature digital signature;time stamp time stamp authority TSA time stamp for PDF digital signature" -msgstr "" +msgstr "denbora-zigilua;sinadura digitala sinadura digitala;denbora-zigilua denbora zigilatzeko agintaritza TSA PDF sinadura digitalerako denbora-zigilual" #. QwKC7 #: timestampauth.xhp @@ -50081,7 +50054,7 @@ "hd_id901597433114069\n" "help.text" msgid "Time Stamp Authority" -msgstr "" +msgstr "Denbora Zigilatzeko Agintaritza" #. L47NV #: timestampauth.xhp @@ -50090,7 +50063,7 @@ "par_id961597433114070\n" "help.text" msgid "Time Stamp Authorities (TSA) issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export." -msgstr "" +msgstr "Denbora Zigilatzeko Agintaritzek (TSA) digitalki sinatutako denbora-zigiluak sortzen dituzte (RFC 3161), aukeran, sinatutako PDF baten esportazioan erabili daitezkeenak." #. jcBGy #: timestampauth.xhp @@ -50099,7 +50072,7 @@ "par_id571597434502189\n" "help.text" msgid "Adding a trusted timestamp to an electronic signature provides a digital seal of data integrity and a trusted date and time of when the transaction took place. Recipients of documents with a trusted timestamp can verify when the document was digitally or electronically signed, as well as verify that the document was not altered after the date the timestamp vouches for." -msgstr "" +msgstr "Denbora-zigilu fidagarri bat gehitzen denean sinadura elektroniko bati, datuen osotasuna bermatzen duen zigilu digital bat eta transakzioaren data eta ordu fidagarria ematen da. Denbora-zigilu fidagarria duten dokumentuak jasotzen dituztenek dokumentua digitalki edo elektronikoki noiz sinatu zen egiaztatu dezakete, eta denbora-zigiluak esandako dataren ondoren dokumentua ez dela aldatu ere egiaztatu dezakete." #. HP6fQ #: timestampauth.xhp @@ -50108,7 +50081,7 @@ "par_id721597436315261\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Security - TSAs" -msgstr "" +msgstr "Aukeratu %PRODUCTNAME - HobespenakTresnak - Aukerak - %PRODUCTNAME - Segurtasuna - TSAk" #. n27rF #: timestampauth.xhp @@ -50117,7 +50090,7 @@ "hd_id281597438357127\n" "help.text" msgid "List of Time Stamp Authorities" -msgstr "" +msgstr "Denbora Zigilatzeko Agintaritzen zerrenda" #. Msech #: timestampauth.xhp @@ -50126,7 +50099,7 @@ "par_id701597438367251\n" "help.text" msgid "Display the list of existing TSAs." -msgstr "" +msgstr "Bistaratu instalatuta dauden TSA erakundeen zerrenda." #. 2TESq #: timestampauth.xhp @@ -50135,7 +50108,7 @@ "par_idN106871\n" "help.text" msgid "Add" -msgstr "" +msgstr "Gehitu" #. vZdyd #: timestampauth.xhp @@ -50144,7 +50117,7 @@ "par_idN1068B1\n" "help.text" msgid "Opens the Name dialog to enter a new Time Stamping Authority URL." -msgstr "" +msgstr "'Izena' elkarrizketa-koadroa irekitzen du Denbora Zigilatzeko Agintaritza berri baten URLa sartzeko." #. stnAc #: timestampauth.xhp @@ -50153,7 +50126,7 @@ "hd_id251597435168013\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Ezabatu" #. PPq6D #: timestampauth.xhp @@ -50162,7 +50135,7 @@ "par_id381597435161810\n" "help.text" msgid "Deletes the selected entry in the list. Deletion is immediate and does not display a confirmation dialog." -msgstr "" +msgstr "Zerrendan hautatutako sarrera ezabatzen du. Ezabatzea berehalakoa da eta ez du berresteko elkarrizketa-koadrorik irekitzen." #. m3D8J #: webhtml.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/06.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/06.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/06.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/06.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-03 12:49+0000\n" +"PO-Revision-Date: 2021-04-06 16:27+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1536301319.000000\n" #. EUcrc @@ -464,7 +464,7 @@ "par_id431534783734366\n" "help.text" msgid "Compress Image Dialog" -msgstr "'Konprimitu irudia' elkarrizketa-koadroa" +msgstr "'Konprimatu irudia' elkarrizketa-koadroa" #. AW8Pn #: youtubevideos.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/autopi.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-01-09 18:36+0000\n" +"PO-Revision-Date: 2021-04-06 16:27+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563085973.000000\n" #. hCAzG @@ -212,7 +212,7 @@ "par_id3149669\n" "help.text" msgid "According to your selections, the wizard creates a new document template and saves it on your hard disk. $[officename] creates a new document based on the existing templates with the \"Untitled X\" name (X stands for the consecutive numbering) and displays it on the work area." -msgstr "Zure hautapenen arabera, morroiak txantiloi berri bat sortzen du eta disko gogorrean gordetzen du. $[officename](e)k dokumentu berri bat sortzen du lehendik dauden txantiloietan oinarrituta \"Untitled X\" izenarekin (X ondoz ondoko zenbakitzea adierazten du) eta laneko arean bistaratzen du." +msgstr "Zure hautapenen arabera, morroiak txantiloi berri bat sortzen du eta disko gogorrean gordetzen du. $[officename](e)k dokumentu berri bat sortzen du lehendik dauden txantiloietan oinarrituta \"Untitled X\" izenarekin (X ikurrak elkarren ondoko zenbakitzea adierazten du) eta laneko arean bistaratzen du." #. k2a98 #: 01010000.xhp @@ -5504,7 +5504,7 @@ "par_id4653767\n" "help.text" msgid "The files are exported as PNG files. PNG files are compressed without loss of data, and can contain more than 256 colors." -msgstr "Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimituak dira, eta 256 kolore baino gehiago izan ditzakete." +msgstr "Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimatuak dira, eta 256 kolore baino gehiago izan ditzakete." #. P79eu #: 01110300.xhp @@ -5531,7 +5531,7 @@ "hd_id3154306\n" "help.text" msgid "JPG - Compressed file format" -msgstr "JPG - Fitxategi-formatu konprimitua" +msgstr "JPG - Fitxategi-formatu konprimatua" #. RArrL #: 01110300.xhp @@ -5540,7 +5540,7 @@ "par_id3153665\n" "help.text" msgid "The files are exported as JPEG files. JPEG files are compressed, with adjustable compression and can contain more than 256 colors." -msgstr "Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimituak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete." +msgstr "Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimatuak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete." #. GBfMf #: 01110300.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2020-12-23 01:36+0000\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563085513.000000\n" #. fUPBC @@ -3875,7 +3875,7 @@ "par_idN10595\n" "help.text" msgid "Maximum number of records" -msgstr "Erregistroen gehienezko kopurua" +msgstr "Erregistroen gehieneko kopurua" #. AUVCH #: dabapropadd.xhp @@ -3884,7 +3884,7 @@ "par_idN106F3\n" "help.text" msgid "Enter the maximum number of records that you want to load when you access the LDAP server." -msgstr "Idatzi LDAP zerbitzarian sartzean kargatzea nahi duzun erregistroen gehienezko kopurua." +msgstr "Idatzi LDAP zerbitzarian sartzean kargatzea nahi duzun erregistroen gehieneko kopurua." #. K5mtr #: dabapropadd.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-18 08:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561194957.000000\n" #. iharT @@ -14585,7 +14585,7 @@ "par_id3155537\n" "help.text" msgid "Press Enter to execute the selected hyperlink." -msgstr "Sakatu 'Enter' hautatutako hiperesteka exekutatzeko." +msgstr "Sakatu ⏎ hautatutako hiperesteka exekutatzeko." #. 3G77H #: keyboard.xhp @@ -14594,7 +14594,7 @@ "par_id3154912\n" "help.text" msgid "Press Backspace above the Enter key to return to the previous help page." -msgstr "Sakatu 'Enter' teklaren gaineko 'Backspace' tekla, aurreko laguntza-orrialdera itzultzeko." +msgstr "Sakatu ⏎ teklaren gaineko ⌫ tekla, aurreko laguntza-orrialdera itzultzeko." #. DGCD3 #: keyboard.xhp @@ -15647,7 +15647,7 @@ "par_id3791924\n" "help.text" msgid "Install the language pack. Unpack tar.gz file and install the packages according to standard practice on your platform." -msgstr "Instalatu hizkuntza-paketea. Deskonprimitu tar.gz fitxategia eta instalatu paketeak zure plataforman erabiltzen duzun prozedura estandarra jarraituz." +msgstr "Instalatu hizkuntza-paketea. Deskonprimatu tar.gz fitxategia eta instalatu paketeak zure plataforman erabiltzen duzun prozedura estandarra jarraituz." #. 8fo6o #: language_select.xhp @@ -18671,7 +18671,7 @@ "par_id3147335\n" "help.text" msgid "Under Margins you can define the maximum or minimum possible value for the page margins (left, right, top, and bottom). Click into the respective control, then press the Page Up or Page Down key. The preview displays a dashed line around the printable range." -msgstr "Marjinak eremuan, orrialde-marjinentzako (ezkerra, eskuina, goia eta behea) gehienezko eta gutxieneko balioak zehaztu ditzakezu. Horretarako, egin klik dagokion biratze-koadroan eta sakatu Page Up (Orrialdea gora) edo Page Down (Orrialdea bera) tekla. Aurrebistak marra eten bat bistaratuko du area inprimagarrian." +msgstr "Marjinak eremuan, orrialde-marjinentzako (ezkerra, eskuina, goia eta behea) gehieneko eta gutxieneko balioak zehaztu ditzakezu. Horretarako, egin klik dagokion biratze-koadroan eta sakatu Page Up (Orrialdea gora) edo Page Down (Orrialdea bera) tekla. Aurrebistak marra eten bat bistaratuko du area inprimagarrian." #. PsXtZ #: pageformat_max.xhp @@ -21812,7 +21812,7 @@ "bm_id3154285\n" "help.text" msgid "modifying, see changingchanging, see also editing and replacingdefault templates; changingdefault templates; creatingdefaults;documentscustom templatesupdating; templatesediting;templatestemplates;editing and savingsaving;templatesresetting;templates" -msgstr "" +msgstr "eraldatzea, ikusi aldatzeaaldatzea, ikusi editatzea eta ordezteatxantiloi lehenetsiak; aldatzeatxantiloi lehenetsiak; sortzealehenespenak;dokumentuaktxantiloi pertsonalizatuakeguneratzea; txantiloiakeditatzea;txantiloiaktxantiloiak;editatzea eta gordetzeagordetzea;txantiloiakberrezartzea;txantiloiak" #. fZ8SR #: standard_template.xhp @@ -22055,7 +22055,7 @@ "par_id3146918\n" "help.text" msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the User Paths directory specified for Templates in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths. It is often easier to save a document with File - Templates - Save As Template, because it automatically places the template in the appropriate directory." -msgstr "" +msgstr "Edozein dokumentu gorde daiteke txantiloi gisa, gordetzeko elkarrizketa-koadroan \"Txantiloia\" fitxategi mota hautatuta. Txantiloi-kudeatzailean txantiloia atzitzeko, gorde txantiloia %PRODUCTNAME - HobespenakTresnak - Aukerak - %PRODUCTNAME - Bide -izenak hobespenean Txantiloiak elementurako zehaztu den Erabiltzailearen bide-izenak direktorioan. Sarritan errazagoa da dokumentu bat Fitxategia - Txantiloiak - Gorde txantiloi gisa aukera erabilita gordetzea, horrela txantiloia automatikoki kokatuko baita direktorio egokian." #. 4VMWF #: standard_template.xhp @@ -23054,7 +23054,7 @@ "par_id0820200802626414\n" "help.text" msgid "You can remove an item from the Recent Documents list by clicking the button in the upper-right corner of the icon. The document itself is not deleted. You can remove all items on the Recent Documents list by pressing the Recent Documents dropdown button and selecting Clear Recent Documents." -msgstr "" +msgstr "Elementu bat Azken dokumentuak zerrendatik kentzeko, egin klik ikonoaren goiko eskuineko izkinako botoian. Dokumentua bera ez da ezabatuko. Azken dokumentuak zerrendako elementuak kentzeko, sakatu Azken dokumentuak goitibeherako botoia eta aukeratu Garbitu azken dokumentuak." #. fALjn #: startcenter.xhp @@ -23081,7 +23081,7 @@ "par_id0820200802626412\n" "help.text" msgid "Click the down arrow after the Templates button to open a menu where you can select a filter to display templates by application type or open the Template Manager dialog." -msgstr "" +msgstr "Egin klik Txantiloiak botoiaren ondoan dagoen beherako gezian txantiloiak aplikazio motaren arabera bistaratuko dituen iragazki bat hautatzeko edo txantiloi-kudeatzailea elkarrizketa-koadroa irekitzeko." #. PcEEX #: startcenter.xhp @@ -24261,6 +24261,8 @@ "help.text" msgid " Switching Between Insert Mode and Overwrite Mode " msgstr "" +" \n" +"Txertatu eta gainidatzi moduen artean txandakatzea " #. qhFEZ #: textmode_change.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-15 09:36+0000\n" +"PO-Revision-Date: 2021-04-06 16:27+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -14189,7 +14189,7 @@ "hd_id3155419\n" "help.text" msgid "Compress only punctuation" -msgstr "Konprimitu puntuazioa bakarrik" +msgstr "Konprimatu puntuazioa bakarrik" #. G3GEF #: 01150100.xhp @@ -14207,7 +14207,7 @@ "hd_id3151245\n" "help.text" msgid "Compress punctuation and Japanese Kana" -msgstr "Konprimitu puntuazioa eta Kana japoniarra" +msgstr "Konprimatu puntuazioa eta Kana japoniarra" #. kUcVR #: 01150100.xhp @@ -17276,7 +17276,7 @@ "par_idN1054E\n" "help.text" msgid "On the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge Email tab page, click the Server Authentication button to specify the server security settings." -msgstr "" +msgstr "%PRODUCTNAME - HobespenakTresnak - Aukerak - %PRODUCTNAME Writer - Posta-konbinazioaren helbidea fitxa-orrian, egin klik Zerbitzariaren autentifikazioa botoian zerbitzari-segurtasunaren ezarpenak zehazteko." #. QEP5M #: serverauthentication.xhp @@ -17501,7 +17501,7 @@ "par_idN10557\n" "help.text" msgid "When you enter settings on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge Email tab page, you can click the Test Settings button to test your settings." -msgstr "" +msgstr "%PRODUCTNAME - HobespenakTresnak - Aukerak - %PRODUCTNAME Writer - posta-konbinazioaren helbidea fitxa-orrian ezarpenak sartzen direnean, Probatu ezarpenak botoia sakatu daiteke ezarpenak probatzeko." #. 4AK5G #: testaccount.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/simpress/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-05-09 20:16+0000\n" +"PO-Revision-Date: 2021-04-13 17:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1558946414.000000\n" #. mu9aV @@ -1859,7 +1859,7 @@ "bm_id3153142\n" "help.text" msgid "master views" -msgstr "maisuaren ikuspegiak" +msgstr "maisu-ikuspegiak" #. cFABL #: 03150000.xhp @@ -1877,7 +1877,7 @@ "par_id3150011\n" "help.text" msgid "Switches to one of several master views, where you can add elements that you want to appear on all of the slides in your show." -msgstr "Bista maisuetako batera aldatzen da, aurkezpenaren diapositiba guztietan agertuko diren elementuak gehitu ahal izateko." +msgstr "Maisu-ikuspegietako batera aldatzen da, aurkezpenaren diapositiba guztietan agertuko diren elementuak gehitu ahal izateko." #. h4RwT #: 03150100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/guide.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/simpress/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/simpress/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-07 07:36+0000\n" +"PO-Revision-Date: 2021-04-13 17:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1555928226.000000\n" #. S83CC @@ -662,7 +662,7 @@ "par_id4524674\n" "help.text" msgid "If the Custom Animation Panel is visible, the motion paths of all effects of the current slide are drawn as a transparent overlay on the slide. All paths are visible all the time, therefore animations with consecutive paths can be created easily." -msgstr "Animazio pertsonalizatuaren panela ikusgai badago, uneko diapositibako efektu guztien ibilbideak gainjarritako irudi garden gisa marraztuko dira diapositiban. Ibilbide guztiak ikusgai daude denbora guztian eta, beraz, elkarren segidako ibilbideak dauzkaten animazioak erraz sor daitezke." +msgstr "Animazio pertsonalizatuaren panela ikusgai badago, uneko diapositibako efektu guztien ibilbideak gainjarritako irudi garden gisa marraztuko dira diapositiban. Ibilbide guztiak ikusgai daude denbora guztian eta, beraz, elkarren ondoko ibilbideak dauzkaten animazioak erraz sor daitezke." #. teBif #: animated_objects.xhp @@ -1229,7 +1229,7 @@ "par_idN10837\n" "help.text" msgid "Choose View - Normal to close the master view." -msgstr "Aukeratu Ikusi - Normala ikuspegi maisua ixteko." +msgstr "Aukeratu Ikusi - Normala maisu-ikuspegia ixteko." #. PUrYC #: background.xhp @@ -1382,7 +1382,7 @@ "par_id8403576\n" "help.text" msgid "To edit a master slide, choose View - Master Slide. Click the Close Master View icon on the Master View toolbar, or choose View - Normal, to leave the master slide." -msgstr "Diapositiba maisu bat editatzeko, aukeratu Ikusi - Diapositiba maisua. Sakatu 'Itxi maisuaren ikuspegia' ikonoa 'Maisuaren ikuspegia' tresna-barran, edo aukeratu Ikusi - Normala diapositiba maisua uzteko." +msgstr "Diapositiba maisu bat editatzeko, aukeratu Ikusi - Diapositiba maisua. Sakatu 'Itxi maisu-ikuspegia' ikonoa 'Maisu-ikuspegia' tresna-barran, edo aukeratu Ikusi - Normala diapositiba maisua uzteko." #. GPe9V #: footer.xhp @@ -1391,7 +1391,7 @@ "par_id5641651\n" "help.text" msgid "To edit a master notes, choose View - Master Notes. Click the Close Master View icon on the Master View toolbar, or choose View - Normal, to leave the master notes." -msgstr "Oharren maisu bat editatzeko, aukeratu Ikusi - Maisua – Oharren maisua. Oharren maisutik irteteko, egin klik 'Maisuaren ikuspegia' tresna-barrako 'Itxi maisuaren ikuspegia' ikonoan, edo aukeratu Ikusi - Normala." +msgstr "Oharren maisu bat editatzeko, aukeratu Ikusi - Maisua – Oharren maisua. Oharren maisutik irteteko, egin klik 'Maisu-ikuspegia' tresna-barrako 'Itxi maisu-ikuspegia' ikonoan, edo aukeratu Ikusi - Normala." #. aGtFB #: footer.xhp @@ -1427,7 +1427,7 @@ "par_id8217413\n" "help.text" msgid "When you switch to the master view, you can move those areas to any position on the master. Also, you can enter additional text into them, resize them, and select their contents to apply text formatting. For example, you can change the font size or color." -msgstr "Ikuspegi maisura aldatzen zarenean, area horiek maisuko edozein lekutara alda ditzakezu. Testu gehiago sar dezakezu, eta area horien tamaina aldatu. Area horien edukia hauta dezakezu, eta testu-formatuak aplikatu. Adibidez, letra-tipoaren tamaina edo kolorea alda dezakezu." +msgstr "Maisu-ikuspegira aldatzen zarenean, area horiek maisuko edozein lekutara alda ditzakezu. Testu gehiago sar dezakezu, eta area horien tamaina aldatu. Area horien edukia hauta dezakezu, eta testu-formatuak aplikatu. Adibidez, letra-tipoaren tamaina edo kolorea alda dezakezu." #. KjNAg #: footer.xhp @@ -3146,7 +3146,7 @@ "par_id3150210\n" "help.text" msgid "Bézier curve segments and straight line segments can be joined to form more complex Bézier curves. Three different transitions can be applied to join adjacent segments:" -msgstr "Bézier kurben segmentuak eta marra zuzenen segmentuak elkartu daitezke Bézier kurba konplexuagoak osatzeko. Hiru trantsizio desberdin aplika daitezke elkarren segidako segmentuak elkartzeko." +msgstr "Bézier kurben segmentuak eta marra zuzenen segmentuak elkartu daitezke Bézier kurba konplexuagoak osatzeko. Hiru trantsizio desberdin aplika daitezke elkarren ondoko segmentuak elkartzeko." #. fiDsk #: line_draw.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-16 07:36+0000\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548161696.000000\n" #. QmNGE @@ -266,7 +266,7 @@ "bm_id3147340\n" "help.text" msgid "views; maximum sizemaximum formula sizeformulas; maximum size" -msgstr "ikuspegiak; gehienezko tamainaformulen gehienezko tamainaformulak; gehienezko tamaina" +msgstr "ikuspegiak; gehieneko tamainaformulen gehieneko tamainaformulak; gehieneko tamaina" #. Nq3Ci #: 03060000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562054326.000000\n" #. sZfWF @@ -491,7 +491,7 @@ "par_id3149286\n" "help.text" msgid "Copies the headings and a number of subsequent paragraphs in the active document to a new AutoAbstract text document. An AutoAbstract is useful for obtaining an overview of long documents. You can specify the number of outline levels as well as the number of paragraphs displayed therein. All levels and paragraphs under the respective settings are hidden." -msgstr "Dokumentu aktiboko izenburuak eta elkarren segidako paragrafo batzuk autolaburpeneko testu-dokumentu berri batean kopiatzen ditu. Autolaburpena erabilgarria da dokumentu luzeen ikuspegi orokorra lortzeko. Kapitulu-maila eta hor bistaratutako paragrafo kopuru batzuk zehaztu ditzakezu. Ezarpen horietako mailak eta paragrafoak ezkutatuta daude." +msgstr "Dokumentu aktiboko izenburuak eta elkarren ondoko paragrafo batzuk autolaburpeneko testu-dokumentu berri batean kopiatzen ditu. Autolaburpena erabilgarria da dokumentu luzeen ikuspegi orokorra lortzeko. Kapitulu-maila eta hor bistaratutako paragrafo kopuru batzuk zehaztu ditzakezu. Ezarpen horietako mailak eta paragrafoak ezkutatuta daude." #. Hi8kE #: 01160300.xhp @@ -527,7 +527,7 @@ "par_id3155892\n" "help.text" msgid "Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading. All of the paragraphs up to the maximum defined are included until the next paragraph with a Heading Style is reached." -msgstr "Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren segidako gehienezko paragrafo kopurua zehazten du. Definitutako gehienezko kopurua bitarteko paragrafo guztiak sartzen dira Izenburua estiloko paragrafora iritsi arte." +msgstr "Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren ondoko gehieneko paragrafo kopurua zehazten du. Definitutako gehieneko kopurua bitarteko paragrafo guztiak sartzen dira izenburu-estiloko paragrafora iritsi arte." #. UafWg #: 01160400.xhp @@ -626,7 +626,7 @@ "par_id3149801\n" "help.text" msgid "Consecutive numbers are added to the file name if more than one HTML document is created. The titles of the HTML pages are created from the topmost chapter heading." -msgstr "Fitxategi-izenari elkarren segidako zenbakiak gehitzen zaizkio HTML dokumentu bat baino gehiago sortzen badira. HTML orrien tituluak goi-goiko kapitulu-izenburutik sortzen dira." +msgstr "Fitxategi-izenari elkarren ondoko zenbakiak gehitzen zaizkio HTML dokumentu bat baino gehiago sortzen badira. HTML orrien tituluak goi-goiko kapitulu-izenburutik sortzen dira." #. nFA6X #: 01160500.xhp @@ -1319,7 +1319,7 @@ "hd_id3149176\n" "help.text" msgid "Toggle Master View" -msgstr "Txandakatu ikuspegi maisua" +msgstr "Txandakatu maisu-ikuspegia" #. wbAFo #: 02110000.xhp @@ -1328,7 +1328,7 @@ "par_id3155917\n" "help.text" msgid "Switches between master view and normal view if a master document is open. Switches between master view and normal view if a master document is open." -msgstr "Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago. Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago." +msgstr "Maisu-ikuspegiaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago. Maisu-ikuspegiaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago." #. BeyBx #: 02110000.xhp @@ -1337,7 +1337,7 @@ "par_id3150689\n" "help.text" msgid "Icon Toggle Master View" -msgstr "Txandakatu ikuspegi maisua ikonoa" +msgstr "Txandakatu maisu-ikuspegia ikonoa" #. 9STbB #: 02110000.xhp @@ -1346,7 +1346,7 @@ "par_id3149568\n" "help.text" msgid "Toggle Master View" -msgstr "Txandakatu ikuspegi maisua" +msgstr "Txandakatu maisu-ikuspegia" #. 7kk6X #: 02110000.xhp @@ -1877,7 +1877,7 @@ "par_id501603882441409\n" "help.text" msgid "Set Navigator’s mode of outline tracking. This feature applies only to outline entries under Headings in the Content View frame of Navigator. To see, enable, or change the mode, right-click on Headings or an item under Headings and choose Outline Tracking. The selected mode is applied to the entire document." -msgstr "" +msgstr "Ezarri nabigatzailearen modua eskemaren segimenduaren moduan. Eginbide hori nabigatzaileko eduki-bistako Izenburuak ataleko sarrerei soilik aplikatzen zaizkie. Modua ikusi, gaitu edo aldatzeko, egin eskuineko klik Izenburuak aukeran edo horren azpan dagoen elementu batean eta aukeratu Eskemaren segimendua. Hautatutako modua dokumentu osoari aplikatuko zaio." #. XxJB2 #: 02110000.xhp @@ -4766,7 +4766,7 @@ "par_id3145420\n" "help.text" msgid "Type a name for the new section. By default, $[officename] automatically assigns the name \"Section X\" to new sections, where X is a consecutive number." -msgstr "Idatzi sekzio berriaren izena. Lehenespenez, $[officename] aplikazioak \"X sekzioa\" izena esleitzen die sekzio berriei. X ondoz ondoko zenbakia da." +msgstr "Idatzi sekzio berriaren izena. Lehenespenez, $[officename] aplikazioak \"X sekzioa\" izena esleitzen die sekzio berriei. X elkarren ondoko zenbakia da." #. hCR5y #: 04020100.xhp @@ -6791,7 +6791,7 @@ "par_id3151370\n" "help.text" msgid "Inserts the current date. You can insert the date as a fixed field - Date (fixed) - that does not change, or as a dynamic field - Date - that it is updated automatically. To manually update the Date field, press F9." -msgstr "" +msgstr "Uneko data txertatzen du. Aldatzen ez den eremu finko gisa txertatu daiteke - Date (fixed) - edo automatikoki eguneratzen den eremu dinamiko gisa - Date -. Date eremua eskuz eguneratzeko, sakatu F9." #. DtBK4 #: 04090001.xhp @@ -6863,7 +6863,7 @@ "par_id3146341\n" "help.text" msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "" +msgstr "Erabiltzaile-datuak dituzten eremuak txertatzen ditu. Bistaratuko diren erabiltzaile-datuak aldatzeko, aukeratu %PRODUCTNAME - HobespenakTresnak - Aukerak - $[officename] - Erabiltzaile-datuak." #. WxVLH #: 04090001.xhp @@ -6917,7 +6917,7 @@ "par_id3154340\n" "help.text" msgid "Inserts the current time. You can insert the time as a fixed field - Time (fixed) - that does not change, or as a dynamic field - Time - that it is updated automatically. To manually update the Time field, press F9." -msgstr "" +msgstr "Uneko ordua txertatzen du. Aldatzen ez den eremu finko gisa txertatu daiteke - Time (fixed) - edo automatikoki eguneratzen den eremu dinamiko gisa - Time -. Time eremua eskuz eguneratzeko, sakatu F9." #. 2FEpZ #: 04090001.xhp @@ -6980,7 +6980,7 @@ "par_id3150138\n" "help.text" msgid "When you click \"Additional formats\", the Number Format dialog opens, where you can define a custom format. " -msgstr "" +msgstr "'Formatu gehigarriak' klikatzean, Zenbaki-formatua elkarrizketa-koadroa irekitzen da eta bertan formatu pertsonalizatu bat definitu daiteke . " #. ECQSr #: 04090001.xhp @@ -6989,7 +6989,7 @@ "par_id3154867\n" "help.text" msgid "If you choose \"Chapter number without separator\" for a chapter field, the separators that are specified for chapter number in Tools - Chapter numbering are not displayed." -msgstr "" +msgstr "'Kapitulu-zenbakia bereizlerik gabe' aukeratzen bada kapitulu-eremu baterako, Tresnak - Kapitulu-zenbakitzea aukeran kapitulu-zenbakietarako zehaztu diren bereizleak ez dira bistaratuko." #. EfteG #: 04090001.xhp @@ -8402,7 +8402,7 @@ "par_id3147490\n" "help.text" msgid "Inserts the comments as entered in the Description tab page of the File - Properties dialog." -msgstr "" +msgstr "Iruzkinak txertatzen ditu Fitxategia - Propietateak elkarrizketa-koadroko Deskribapena fitxan ezarri den moduan." #. fZJ33 #: 04090004.xhp @@ -8438,7 +8438,7 @@ "par_id3154784\n" "help.text" msgid "Inserts the contents of the properties found on the Custom Properties tab of the File - Properties dialog. (Only shown if Custom properties are added.)" -msgstr "" +msgstr "Fitxategia - Propietateak elkarrizketa-koadroan dagoen Propietate pertsonalizatuak fitxako propietateetako edukia txertatzen du." #. GZvq9 #: 04090004.xhp @@ -8528,7 +8528,7 @@ "par_id3146942\n" "help.text" msgid "Inserts the subject as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Gaia txertatzen du Fitxategia - Propietateak elkarrizketa-koadroko Deskribapena fitxan ezarri den moduan." #. BeCQj #: 04090004.xhp @@ -9275,7 +9275,7 @@ "par_id3155861\n" "help.text" msgid "You can use the \"Next record\" field to insert the contents of consecutive records between the mail merge fields in a document." -msgstr "\"Hurrengo erregistroa\" eremua erabil dezakezu elkarren segidako erregistroen edukia txertatzeko dokumentuko posta-konbinazioko eremuen artean." +msgstr "\"Hurrengo erregistroa\" eremua erabil dezakezu elkarren ondoko erregistroen edukia txertatzeko dokumentuko posta-konbinazioko eremuen artean." #. B3Coy #: 04090006.xhp @@ -12200,7 +12200,7 @@ "par_id3145825\n" "help.text" msgid "Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\"." -msgstr "Elkarren segidako orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira." +msgstr "Elkarren ondoko orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira." #. 9NZbj #: 04120212.xhp @@ -14027,7 +14027,7 @@ "par_id771599006446118\n" "help.text" msgid "The default filter for creating or opening concordance files is *.sdi. However, the file format of the concordance file is plain text." -msgstr "" +msgstr "Konkordantzia-fitxategia sortzeko iragazki lehenetsia *.sdi da. Hala ere, konkordantzia-fitxategiaren formatua testu soila da." #. cFHDU #: 04120250.xhp @@ -14090,7 +14090,7 @@ "par_id91599005949275\n" "help.text" msgid "Term" -msgstr "" +msgstr "Terminoa" #. zMi8V #: 04120250.xhp @@ -14099,7 +14099,7 @@ "par_id461599005949276\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Esanahia" #. e7Npc #: 04120250.xhp @@ -15656,7 +15656,7 @@ "par_id3153536\n" "help.text" msgid "Enter the maximum number of consecutive lines that can be hyphenated." -msgstr "Sartu zatitu daitezkeen elkarren segidako gehienezko lerro kopurua." +msgstr "Sartu zatitu daitezkeen elkarren ondoko gehieneko lerro kopurua." #. RQLep #: 05030200.xhp @@ -17447,7 +17447,7 @@ "par_id3151308\n" "help.text" msgid "Enter the maximum number of lines that you want on a page." -msgstr "Sartu orrialdean agertzea nahi duzun gehienezko lerro kopurua." +msgstr "Sartu orrialdean agertzea nahi duzun gehieneko lerro kopurua." #. xGFdw #: 05040800.xhp @@ -17465,7 +17465,7 @@ "par_id3153674\n" "help.text" msgid "Enter the maximum number of characters that you want on a line." -msgstr "Sartu lerro batean agertzea nahi duzun gehienezko karaktere kopurua." +msgstr "Sartu lerro batean agertzea nahi duzun gehieneko karaktere kopurua." #. 3cicV #: 05040800.xhp @@ -17474,7 +17474,7 @@ "hd_id3149684\n" "help.text" msgid "Max. base text size" -msgstr "Oinarri-testuaren gehienezko tamaina" +msgstr "Oinarri-testuaren gehieneko tamaina" #. XLF6W #: 05040800.xhp @@ -17483,7 +17483,7 @@ "par_id3154193\n" "help.text" msgid "Enter the maximum base text size. A large value results in less characters per line." -msgstr "Sartu oinarri-testuaren gehienezko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira." +msgstr "Sartu oinarri-testuaren gehieneko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira." #. 2B276 #: 05040800.xhp @@ -17492,7 +17492,7 @@ "hd_id3155182\n" "help.text" msgid "Max. Ruby text size" -msgstr "Ruby testuaren gehienezko tamaina" +msgstr "Ruby testuaren gehieneko tamaina" #. D9iLL #: 05040800.xhp @@ -24242,7 +24242,7 @@ "par_id3147401\n" "help.text" msgid "Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph." -msgstr "Elkarren segidako bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe." +msgstr "Elkarren ondoko bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe." #. Eop64 #: 05200000.xhp @@ -24251,7 +24251,7 @@ "par_id3146325\n" "help.text" msgid "If you choose this command when the cursor is in the middle of three consecutive tables, you are prompted to select the table that you want to merge with." -msgstr "Komando hori kurtsorea elkarren segidako hiru taulen erdian dagoenean hautatzen baduzu, batu nahi duzun taula hautatzeko eskatuko zaizu." +msgstr "Komando hori kurtsorea elkarren ondoko hiru taulen erdian dagoenean hautatzen baduzu, batu nahi duzun taula hautatzeko eskatuko zaizu." #. F9Yb9 #: 06030000.xhp @@ -28449,13 +28449,12 @@ #. TVxhR #: mm_cusgrelin.xhp -#, fuzzy msgctxt "" "mm_cusgrelin.xhp\n" "par_idN10540\n" "help.text" msgid "Specify the salutation layout for mail merge or email merge documents. The name of this dialog is different for female recipients and male recipients." -msgstr "Zehaztu posta-konbinazioko edo posta elektronikoa konbinatzeko dokumentuen agurraren diseinua. Elkarrizketa-koadro horren izena ezberdina da emakumezko edo gizonezko hartzaileentzat." +msgstr "Zehaztu posta konbinatzeko edo posta elektronikoa konbinatzeko dokumentuen agurraren diseinua. Elkarrizketa-koadro horren izena ezberdina da emakumezko edo gizonezko hartzaileentzat." #. 2wy4R #: mm_cusgrelin.xhp @@ -30372,7 +30371,7 @@ "par_id681604492926867\n" "help.text" msgid "When mouse pointer image changes to hand pointer, the following commands are possible:" -msgstr "" +msgstr "Sagu-erakuslearen irudia esku-erakuslera aldatzen denean, honako komandoak erabili daitezke:" #. BnPmu #: outlinecontent_visibility.xhp @@ -30399,7 +30398,7 @@ "hd_id101604365425000\n" "help.text" msgid "Arrows in left margin" -msgstr "" +msgstr "Geziak ezkerreko marjinan" #. CVGFc #: outlinecontent_visibility.xhp @@ -30489,7 +30488,7 @@ "par_id981604412273516\n" "help.text" msgid "Set Paragraph Outline Level" -msgstr "" +msgstr "Ezarri paragrafoen eskema-maila" #. By4tx #: outlinecontent_visibility.xhp @@ -30498,7 +30497,7 @@ "par_id31604412603892\n" "help.text" msgid "Modify Outline Levels for Headings" -msgstr "" +msgstr "Aldatu izenburuen eskema-mailak" #. GFNAq #: outlinecontent_visibility.xhp @@ -30507,7 +30506,7 @@ "par_id401603926410184\n" "help.text" msgid "Adding a Button to a Toolbar" -msgstr "" +msgstr "Tresna-barra bati botoi bat gehitzea" #. UEKDH #: outlinecontent_visibility.xhp @@ -30516,7 +30515,7 @@ "par_id271604411886782\n" "help.text" msgid "Customizing a Context Menu" -msgstr "" +msgstr "Laster-menu bat pertsonalizatzea" #. ucbYZ #: outlinecontent_visibility.xhp @@ -30525,7 +30524,7 @@ "par_id251603931664784\n" "help.text" msgid "Making a Shortcut Key" -msgstr "" +msgstr "Lasterbideen gako bat sortzea" #. KadxR #: selection_mode.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562402745.000000\n" #. XAt2Y @@ -9581,7 +9581,7 @@ "bm_id3150495\n" "help.text" msgid "numbering; combining merging;numbered lists joining;numbered lists lists;combining numbered lists paragraphs;numbering non-consecutive" -msgstr "zenbakitzea; konbinatzea konbinatzea;zerrenda zenbakidunak bateratzea;zerrenda zenbakidunak zerrendak;zerrenda zenbakidunak konbinatzea paragrafoak;elkarren segidakoak ez direnak zenbakitzea" +msgstr "zenbakitzea; konbinatzea konbinatzea;zerrenda zenbakidunak bateratzea;zerrenda zenbakidunak zerrendak;zerrenda zenbakidunak konbinatzea paragrafoak;elkarren ondokoak ez direnak zenbakitzea" #. aUM78 #: join_numbered_lists.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/nlpsolver/src/locale.po libreoffice-7.1.3~rc2/translations/source/eu/nlpsolver/src/locale.po --- libreoffice-7.1.2~rc2/translations/source/eu/nlpsolver/src/locale.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/nlpsolver/src/locale.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-08-21 21:37+0200\n" -"PO-Revision-Date: 2019-12-17 11:21+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1511688456.000000\n" #. sv3GB @@ -266,7 +266,7 @@ "NLPSolverStatusDialog.Message.StopIteration\n" "property.text" msgid "Maximum iterations reached." -msgstr "Gehienezko iterazio-kopurua osatu da." +msgstr "Gehieneko iterazio-kopurua osatu da." #. LgEvY #: NLPSolverStatusDialog_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-21 08:58+0000\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -10134,7 +10134,7 @@ "Label\n" "value.text" msgid "Close Master View" -msgstr "Itxi maisuaren ikuspegia" +msgstr "Itxi maisu-ikuspegia" #. wAtyn #: DrawImpressCommands.xcu @@ -12074,7 +12074,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Maisuaren ikuspegia" +msgstr "Maisu-ikuspegia" #. Bcmob #: DrawWindowState.xcu @@ -12564,7 +12564,7 @@ "Label\n" "value.text" msgid "Compress" -msgstr "Konprimitu" +msgstr "Konprimatu" #. Li8rn #: Effects.xcu @@ -19024,7 +19024,7 @@ "Label\n" "value.text" msgid "Compress Image" -msgstr "Konprimitu irudia" +msgstr "Konprimatu irudia" #. AdsrC #: GenericCommands.xcu @@ -27336,7 +27336,7 @@ "UIName\n" "value.text" msgid "Master View" -msgstr "Maisuaren ikuspegia" +msgstr "Maisu-ikuspegia" #. XgwBZ #: ImpressWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/sc/messages.po libreoffice-7.1.3~rc2/translations/source/eu/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -17682,7 +17682,7 @@ #: sc/inc/strings.hrc:244 msgctxt "STRID_CALC_MAX" msgid "Maximum" -msgstr "Gehienezkoa" +msgstr "Gehienekoa" #. Q5r5c #: sc/inc/strings.hrc:245 @@ -17779,7 +17779,7 @@ #: sc/inc/strings.hrc:261 msgctxt "STR_RNG_PARAMETER_MAXIMUM" msgid "Maximum" -msgstr "Gehienezkoa" +msgstr "Gehienekoa" #. RPYEG #: sc/inc/strings.hrc:262 @@ -19505,7 +19505,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:321 msgctxt "conditionalentry|Label_maximum" msgid "Maximum" -msgstr "Gehienezkoa" +msgstr "Gehienekoa" #. JcTKF #: sc/uiconfig/scalc/ui/conditionalentry.ui:344 @@ -26072,7 +26072,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:381 msgctxt "extended_tip|minchange" msgid "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop." -msgstr "Iterazio-urratsen bi emaitzen arteko diferentzia zehazten du. Iterazioaren emaitza aldaketa-balioaren gutxienekoa baino txikiagoa bada, iterazioa gelditu egingo da." +msgstr "Elkarren ondoko iterazio-urratsen bi emaitzen arteko diferentzia zehazten du. Iterazioaren emaitza aldaketa-balioaren gutxienekoa baino txikiagoa bada, iterazioa gelditu egingo da." #. UoUqA #: sc/uiconfig/scalc/ui/optcalculatepage.ui:407 @@ -29144,13 +29144,13 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:570 msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEWIDTH" msgid "Enter the maximum number of pages to be printed horizontally across." -msgstr "Sar ezazu horizontalean luzetara inprimatzeko gehienezko orrialde kopurua." +msgstr "Sar ezazu horizontalean luzetara inprimatzeko gehieneko orrialde kopurua." #. Tpcb3 #: sc/uiconfig/scalc/ui/sheetprintpage.ui:592 msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEHEIGHT" msgid "Enter the maximum number of pages to be printed vertically stacked." -msgstr "Sar ezazu bertikalean pilatuta inprimatzeko gehienezko orrialde kopurua." +msgstr "Sar ezazu bertikalean pilatuta inprimatzeko gehieneko orrialde kopurua." #. SeMBt #: sc/uiconfig/scalc/ui/sheetprintpage.ui:617 @@ -29162,7 +29162,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:637 msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGENUM" msgid "Enter the maximum number of pages to be printed." -msgstr "Sar ezazu inprimatzeko gehienezko orrialde kopurua." +msgstr "Sar ezazu inprimatzeko gehieneko orrialde kopurua." #. CvyP8 #: sc/uiconfig/scalc/ui/sheetprintpage.ui:665 @@ -30380,7 +30380,7 @@ #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:50 msgctxt "splitcolumnentry|max_num_columns" msgid "Maximum Number of Columns" -msgstr "Gehienezko zutabe kopurua" +msgstr "Gehieneko zutabe kopurua" #. 9SeDn #: sc/uiconfig/scalc/ui/splitcolumnentry.ui:91 @@ -31358,7 +31358,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:357 msgctxt "textimportcsv|extended_tip|mergedelimiters" msgid "Combines consecutive delimiters and removes blank data fields." -msgstr "Ondoz ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu." +msgstr "Elkarren ondoko mugatzaileak konbinatu eta hutsik dauden eremuak kentzen ditu." #. fZFyK #: sc/uiconfig/scalc/ui/textimportcsv.ui:369 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/sd/messages.po libreoffice-7.1.3~rc2/translations/source/eu/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-10 19:35+0000\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562394047.000000\n" #. WDjkB @@ -5402,7 +5402,7 @@ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:288 msgctxt "definecustomslideshow|extended_tip|add" msgid "Adds an existing slide to the bottom of the Selected slides list. You need to select a slide in the Existing slides list before you can use this button." -msgstr "Lehendik dagoen diapositiba bat gehitzen du Hautatutako diapositibak zerrendaren amaierara. Lehendik dauden diapositibak zerrendako diapositiba bat hautatu behar duzu botoi hau erabili ahal izan baino lehen." +msgstr "Lehendik dagoen diapositiba bat gehitzen du Hautatutako diapositibak zerrendaren amaierara. 'Lehendik dauden diapositibak' zerrendako diapositiba bat hautatu behar duzu botoi hau erabili ahal izan baino lehen." #. nrzGP #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:300 @@ -8781,7 +8781,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1057 msgctxt "publishingdialog|extended_tip|pngRadiobutton" msgid "The files are exported as PNG files. PNG files are compressed without loss of data, and can contain more than 256 colors." -msgstr "Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimituak dira, eta 256 kolore baino gehiago izan ditzakete." +msgstr "Fitxategiak PNG fitxategi gisa esportatzen dira. PNG fitxategiak galerarik gabe konprimatuak dira, eta 256 kolore baino gehiago izan ditzakete." #. Ei2dJ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1069 @@ -8805,7 +8805,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1101 msgctxt "publishingdialog|extended_tip|jpgRadiobutton" msgid "The files are exported as JPEG files. JPEG files are compressed, with adjustable compression and can contain more than 256 colors." -msgstr "Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimituak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete." +msgstr "Fitxategiak JPEG fitxategi gisa esportatzen dira. JPEG fitxategiak konprimatuak dira, konpresioa doitu daiteke, eta 256 kolore baino gehiago izan ditzakete." #. Sahg3 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1122 @@ -9237,13 +9237,13 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:271 msgctxt "sidebarslidebackground|masterslidebutton" msgid "Master View" -msgstr "Ikuspegi maisua" +msgstr "Maisu-ikuspegia" #. EVfaj #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:284 msgctxt "sidebarslidebackground|closemasterslide" msgid "Close Master View" -msgstr "Itxi maisuaren ikuspegia" +msgstr "Itxi maisu-ikuspegia" #. SzLMK #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:315 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/eu/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-12-16 10:55+0000\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" -"Language-Team: Basque \n" +"Language-Team: Basque \n" "Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559627054.000000\n" #. bHbFE @@ -2123,7 +2123,7 @@ #: sfx2/inc/doctempl.hrc:27 msgctxt "TEMPLATE_LONG_NAMES_ARY" msgid "My Templates" -msgstr "Txantiloiak" +msgstr "Nire txantiloiak" #. 5aNp8 #: sfx2/inc/doctempl.hrc:28 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/eu/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-31 16:37+0000\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559371101.000000\n" #. fLdeV @@ -5297,7 +5297,7 @@ #: svtools/uiconfig/ui/graphicexport.ui:910 msgctxt "graphicexport|extended_tip|level2rb" msgid "Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics." -msgstr "Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimitutako irudiak onartzen baditu inprimagailuak." +msgstr "Hautatu 2. maila, koloretako bit-mapak, paleta-irudiak eta konprimatutako irudiak onartzen baditu inprimagailuak." #. JUuBZ #: svtools/uiconfig/ui/graphicexport.ui:927 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/svx/messages.po libreoffice-7.1.3~rc2/translations/source/eu/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-07 18:36+0000\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559371103.000000\n" #. 3GkZj @@ -13692,7 +13692,7 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:36 msgctxt "compressgraphicdialog|CompressGraphicDialog" msgid "Compress Image" -msgstr "Konprimitu irudia" +msgstr "Konprimatu irudia" #. eGiUL #: svx/uiconfig/ui/compressgraphicdialog.ui:134 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/sw/messages.po libreoffice-7.1.3~rc2/translations/source/eu/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562394087.000000\n" #. v3oJv @@ -7137,7 +7137,7 @@ #: sw/inc/strings.hrc:898 msgctxt "STR_DROPDOWN" msgid "Input list" -msgstr "Sarrerako zerrenda" +msgstr "Sarrera-zerrenda" #. 7BWSk #. range references @@ -7885,7 +7885,7 @@ #: sw/inc/strings.hrc:1061 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "Orrialde bakarre ikuspegia" +msgstr "Orrialde bakarreko ikuspegia" #. 57ju6 #: sw/inc/strings.hrc:1062 @@ -9782,7 +9782,7 @@ #: sw/uiconfig/swriter/ui/abstractdialog.ui:189 msgctxt "abstractdialog|extended_tip|paras" msgid "Specify the maximum number of consecutive paragraphs to be included in the AutoAbstract document after each heading." -msgstr "Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren segidako gehienezko paragrafo kopurua zehazten du." +msgstr "Izenburu bakoitzaren atzetik autolaburpenaren dokumentuan sartu beharreko elkarren ondoko gehieneko paragrafo kopurua zehazten du." #. G6YVz #: sw/uiconfig/swriter/ui/abstractdialog.ui:206 @@ -12662,13 +12662,13 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59 msgctxt "dropdownfielddialog|extended_tip|next" msgid "Closes the current Input list and displays the next, if available." -msgstr "Uneko Sarrera-zerrenda ixten du eta hurrengoa bistaratzen du, baldin badago." +msgstr "Uneko sarrera-zerrenda ixten du eta hurrengoa bistaratzen du, baldin badago." #. Ct7px #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:84 msgctxt "dropdownfielddialog|extended_tip|edit" msgid "Displays the Edit Fields: Functions dialog, where you can edit the Input list." -msgstr "Editatu eremuak: funtzioak elkarrizketa-koadroa bistaratzen da, eta hor Sarrera-zerrenda edita dezakezu." +msgstr "'Editatu eremuak: funtzioak' elkarrizketa-koadroa bistaratzen da, eta hor sarrera-zerrenda editatu daiteke." #. k3yMJ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:219 @@ -14190,7 +14190,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:693 msgctxt "fldfuncpage|extended_tip|listname" msgid "Enter a unique name for the Input list." -msgstr "Sartu izen esklusiboa Sarrera-zerrendarentzat." +msgstr "Sartu izen esklusiboa sarrera-zerrendarentzat." #. knXRc #: sw/uiconfig/swriter/ui/fldrefpage.ui:107 @@ -18612,7 +18612,7 @@ #: sw/uiconfig/swriter/ui/mergetabledialog.ui:159 msgctxt "mergetabledialog|extended_tip|MergeTableDialog" msgid "Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph." -msgstr "Elkarren segidako bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe." +msgstr "Elkarren ondoko bi taula taula batean konbinatzen ditu. Taulek elkarren ondoan egon behar dute, paragrafo huts baten bidez bereiztu gabe." #. M7mkx #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:64 @@ -20040,13 +20040,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:265 msgctxt "navigatorpanel|contenttoggle|tooltip_text" msgid "Toggle Master View" -msgstr "Txandakatu maisuaren ikuspegia" +msgstr "Txandakatu maisu-ikuspegia" #. bavit #: sw/uiconfig/swriter/ui/navigatorpanel.ui:269 msgctxt "navigatorpanel|extended_tip|contenttoggle" msgid "Switches between master view and normal view if a master document is open." -msgstr "Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago." +msgstr "Maisu-ikuspegiaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago." #. aVJn7 #: sw/uiconfig/swriter/ui/navigatorpanel.ui:375 @@ -20220,13 +20220,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:778 msgctxt "navigatorpanel|globaltoggle|tooltip_text" msgid "Toggle Master View" -msgstr "Txandakatu ikuspegi maisua" +msgstr "Txandakatu maisu-ikuspegia" #. AoCVA #: sw/uiconfig/swriter/ui/navigatorpanel.ui:782 msgctxt "navigatorpanel|extended_tip|globaltoggle" msgid "Switches between master view and normal view if a master document is open." -msgstr "Ikuspegi maisuaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago." +msgstr "Maisu-ikuspegiaren eta ikuspegi normalaren artean txandakatzen da dokumentu maisua irekita badago." #. HS3W2 #: sw/uiconfig/swriter/ui/navigatorpanel.ui:805 @@ -27371,7 +27371,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:245 msgctxt "textgridpage|extended_tip|spinNF_CHARSPERLINE" msgid "Enter the maximum number of characters that you want on a line." -msgstr "Sartu lerro batean agertzea nahi duzun gehienezko karaktere kopurua." +msgstr "Sartu lerro batean agertzea nahi duzun gehieneko karaktere kopurua." #. YoUGQ #: sw/uiconfig/swriter/ui/textgridpage.ui:272 @@ -27383,7 +27383,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:291 msgctxt "textgridpage|extended_tip|spinNF_LINESPERPAGE" msgid "Enter the maximum number of lines that you want on a page." -msgstr "Sartu orrialdean agertzea nahi duzun gehienezko lerro kopurua." +msgstr "Sartu orrialdean agertzea nahi duzun gehieneko lerro kopurua." #. VKRDD #: sw/uiconfig/swriter/ui/textgridpage.ui:346 @@ -27413,7 +27413,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:412 msgctxt "textgridpage|extended_tip|spinMF_TEXTSIZE" msgid "Enter the maximum base text size. A large value results in less characters per line." -msgstr "Sartu oinarri-testuaren gehienezko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira." +msgstr "Sartu oinarri-testuaren gehieneko tamaina. Balio handia sartzen bada, lerroko karaktere gutxiago egongo dira." #. xFWMV #: sw/uiconfig/swriter/ui/textgridpage.ui:436 @@ -28541,7 +28541,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1033 msgctxt "tocindexpage|extended_tip|usedash" msgid "Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\"." -msgstr "Elkarren segidako orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira." +msgstr "Elkarren ondoko orrialdeetan agertzen diren indize-sarrera berdinak sarrera bakarrarekin ordezten ditu eta sarrera agertzen den orrialde-barrutia erakusten du. Adibidez, \"Ikusi 10, Ikusi 11, Ikusi 12\" sarrerak \"Ikusi 10-12\" gisa konbinatzen dira." #. GfaT4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1044 diff -Nru libreoffice-7.1.2~rc2/translations/source/eu/vcl/messages.po libreoffice-7.1.3~rc2/translations/source/eu/vcl/messages.po --- libreoffice-7.1.2~rc2/translations/source/eu/vcl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/eu/vcl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-08 19:36+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Asier Sarasua Garmendia \n" "Language-Team: Basque \n" "Language: eu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562394089.000000\n" #. k5jTM @@ -1051,7 +1051,7 @@ #: vcl/inc/strings.hrc:122 msgctxt "SV_EDIT_WARNING_STR" msgid "The inserted text exceeded the maximum length of this text field. The text was truncated." -msgstr "Txertatutako testua testu-eremuaren gehienezko luzera gainditzen du. Testua trunkatu egin da." +msgstr "Txertatutako testua testu-eremuaren gehieneko luzera gainditzen du. Testua trunkatu egin da." #. Dk4vc #: vcl/inc/strings.hrc:124 diff -Nru libreoffice-7.1.2~rc2/translations/source/fa/cui/messages.po libreoffice-7.1.3~rc2/translations/source/fa/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/fa/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fa/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-02-26 00:36+0000\n" "Last-Translator: Hossein \n" "Language-Team: Persian \n" @@ -2505,1071 +2505,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/cui/messages.po libreoffice-7.1.3~rc2/translations/source/fi/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/fi/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-20 20:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564954460.000000\n" #. GyY9M @@ -2460,1071 +2460,1065 @@ 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 +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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: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:109 +#: cui/inc/tipoftheday.hrc:108 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:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 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:115 +#: cui/inc/tipoftheday.hrc:114 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:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 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:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 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:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 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:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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:137 +#: cui/inc/tipoftheday.hrc:136 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:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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 "Poistaaksesi sivunumeron sisällysluettelosta, valitse Lisää ▸ Sisällysluettelo ja hakemisto (tai napsauta hiiren oikealla painikkeella ja valitse Muokkaa hakemistoa). Poista sivunumero (#) Merkinnät-välilehden Rakenne-riviltä." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 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:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 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:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 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:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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:164 +#: cui/inc/tipoftheday.hrc:163 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:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 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:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 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:174 +#: cui/inc/tipoftheday.hrc:173 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:175 +#: cui/inc/tipoftheday.hrc:174 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:176 +#: cui/inc/tipoftheday.hrc:175 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:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Lahjoituksesi tukevat maailmanlaajuista yhteisöämme." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 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:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 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:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 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:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 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:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 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:207 +#: cui/inc/tipoftheday.hrc:206 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:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 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:215 +#: cui/inc/tipoftheday.hrc:214 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:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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:235 +#: cui/inc/tipoftheday.hrc:234 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:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 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:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME tukee yli 150 kieltä." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 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:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 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:255 +#: cui/inc/tipoftheday.hrc:254 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:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 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:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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 "Raahaa muotoiltu objekti Tyylit ja muotoilu - ikkunaan. Valintaikkuna aukeaa ja voit nimetä uuden tyylin." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 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:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Kehitätkö uusia XSLT- ja XML-suodattimia?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Paina vaihtonäppäin + F1 saadaksesi näkyviin valintaikkunan mahdolliset laajennetut työkaluvihjeet tai ota käyttöön \"laajennetut vihjeet\" Työkalut ▸ Asetukset ▸ %PRODUCTNAME ▸ Yleistä." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME-ohje" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Lisätietoja" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Suorita tämä toiminto nyt..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Päivän vinkki %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Komento" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Optio" @@ -15895,7 +15889,6 @@ #. hA5Di #: cui/uiconfig/ui/optsavepage.ui:431 -#, fuzzy msgctxt "optsavepage|doctype" msgid "Master document" msgstr "Perusasiakirja" @@ -17034,7 +17027,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:339 msgctxt "pageformatpage|labelInner" msgid "I_nner:" -msgstr "Sisempi:" +msgstr "Sisä:" #. 7FFiR #: cui/uiconfig/ui/pageformatpage.ui:377 @@ -17046,7 +17039,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:391 msgctxt "pageformatpage|labelOuter" msgid "O_uter:" -msgstr "Ulompi:" +msgstr "Ulko:" #. tGMLA #: cui/uiconfig/ui/pageformatpage.ui:424 @@ -18258,7 +18251,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:221 msgctxt "qrcodegen|ErrorCorrection" msgid "Low" -msgstr "Alhainen" +msgstr "Matala" #. GeYR9 #: cui/uiconfig/ui/qrcodegen.ui:234 diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/editeng/messages.po libreoffice-7.1.3~rc2/translations/source/fi/editeng/messages.po --- libreoffice-7.1.2~rc2/translations/source/fi/editeng/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/editeng/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-10-14 19:36+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1517138300.000000\n" #. BHYB4 @@ -1124,7 +1124,6 @@ #. H7bna #: include/editeng/editrids.hrc:210 -#, fuzzy msgctxt "RID_SVXITEMS_BORDER_NONE" msgid "No border" msgstr "Ei reunusta" diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/sbasic/python.po libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/sbasic/python.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/sbasic/python.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-11-06 12:35+0000\n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" #. naSFZ #: main0000.xhp @@ -1993,7 +1993,7 @@ "N0496\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. AQA8b #: python_listener.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-11-06 12:35+0000\n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" "Last-Translator: Tuomas Hietala \n" -"Language-Team: Finnish \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1540152935.000000\n" #. yzYVt @@ -581,7 +581,7 @@ "hd_id061420171139089682\n" "help.text" msgid "Syntax:" -msgstr "" +msgstr "Syntaksi:" #. GePPP #: 00000003.xhp @@ -590,7 +590,7 @@ "hd_id061420171139087480\n" "help.text" msgid "Return value:" -msgstr "" +msgstr "Paluuarvo:" #. WADQ4 #: 00000003.xhp @@ -599,7 +599,7 @@ "hd_id061420171139084157\n" "help.text" msgid "Parameters:" -msgstr "" +msgstr "Parametrit:" #. EFSA4 #: 00000003.xhp @@ -608,7 +608,7 @@ "hd_id061420171139088233\n" "help.text" msgid "Example:" -msgstr "" +msgstr "Esimerkki:" #. TV2YL #: 00000003.xhp @@ -671,7 +671,7 @@ "hd_id3152869\n" "help.text" msgid "Error codes:" -msgstr "" +msgstr "Virhekoodit:" #. FZz2o #: 00000003.xhp @@ -2768,7 +2768,7 @@ "par_id3151114\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. BG6rr #: 01020300.xhp @@ -2804,7 +2804,7 @@ "par_id3156284\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. TwrZp #: 01020300.xhp @@ -2831,7 +2831,7 @@ "bas_id961584288948497\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. meaRY #: 01020300.xhp @@ -2840,7 +2840,7 @@ "bas_id921584288951588\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. 257BA #: 01020300.xhp @@ -2894,7 +2894,7 @@ "bas_id81584367761978\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. WF4ND #: 01020300.xhp @@ -2930,7 +2930,7 @@ "bas_id111584366809406\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' tähän tulee koodiasi" #. EHCCS #: 01020300.xhp @@ -39034,7 +39034,7 @@ "N0079\n" "help.text" msgid "' your code goes here …" -msgstr "" +msgstr "' tähän tulee koodiasi …" #. wEaa3 #: ErrVBA.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-11-06 12:35+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "vilkkuvat fontitvälkkyvät fontit" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Vilkkuva" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Valitut merkit tehdään vilkkuviksi. Vilkkumistaajuus ei ole säädettävissä." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/swriter/menu.po libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.1.2~rc2/translations/source/fi/helpcontent2/source/text/swriter/menu.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/helpcontent2/source/text/swriter/menu.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2016-05-08 03:44+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" +"Last-Translator: Tuomas Hietala \n" +"Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1462679072.000000\n" #. tP5yN @@ -50,7 +50,7 @@ "par_id03042016113613789\n" "help.text" msgid "Footnote" -msgstr "" +msgstr "Alaviite" #. DiRbq #: insert_footnote_endnote.xhp @@ -68,7 +68,7 @@ "hd_id030420161138377837\n" "help.text" msgid "Endnote" -msgstr "" +msgstr "Loppuviite" #. bjm2B #: insert_footnote_endnote.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/sc/messages.po libreoffice-7.1.3~rc2/translations/source/fi/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/fi/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-13 07:26+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -16073,7 +16073,7 @@ #: sc/inc/scfuncs.hrc:4039 msgctxt "SC_OPCODE_WEBSERVICE" msgid "Get some web-content from a URI." -msgstr "" +msgstr "Hanki web-sisältöä URI-osoitteesta." #. isBQw #: sc/inc/scfuncs.hrc:4040 @@ -18126,6 +18126,7 @@ #. QFEjs #: sc/inc/strings.hrc:322 +#, fuzzy msgctxt "STR_LINEST_RAW_OUTPUT_TITLE" msgid "LINEST raw output" msgstr "LINEST-raakatulostus" @@ -18319,7 +18320,7 @@ #: sc/inc/strings.hrc:358 msgctxt "STR_ENABLE_CONTENT" msgid "Allow updating" -msgstr "" +msgstr "Salli päivittäminen" #. w5Gd7 #. Insert image dialog @@ -28633,7 +28634,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:376 msgctxt "scgeneralpage|enter_paste_mode_cb" msgid "Press Enter to paste and clear clipboard" -msgstr "" +msgstr "Liitä ja tyhjennä leikepöytä painamalla Enter" #. LFenu #: sc/uiconfig/scalc/ui/scgeneralpage.ui:392 @@ -31123,7 +31124,7 @@ #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:73 msgctxt "subtotalgrppage|select_all_columns_button" msgid "Select all columns" -msgstr "" +msgstr "Valitse kaikki sarakkeet" #. 42zT3 #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:106 diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/fi/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/fi/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-18 21:36+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564951602.000000\n" #. fLdeV @@ -1296,7 +1296,7 @@ #: include/svtools/strings.hrc:265 msgctxt "STR_WARNING_JAVANOTFOUND_MAC" msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "%PRODUCTNAME vaatii Oraclen Java Development Kitin (JDK) macOS 10.10:llä tai uudemmalla tämän toiminnon suorittamiseen. Asenna ne ja käynnistä %PRODUCTNAME uudelleen. %FAQLINK" #. 76BEm #: include/svtools/strings.hrc:266 diff -Nru libreoffice-7.1.2~rc2/translations/source/fi/svx/messages.po libreoffice-7.1.3~rc2/translations/source/fi/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/fi/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fi/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-13 07:26+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Tuomas Hietala \n" "Language-Team: Finnish \n" "Language: fi\n" @@ -13972,6 +13972,9 @@ "You can soon find the report at:\n" "https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" msgstr "" +"Kaatumisilmoituksen lähettäminen onnistui.\n" +"Ilmoitus löytyy pian osoitteesta:\n" +"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" #. DDKL6 #: svx/uiconfig/ui/crashreportdlg.ui:11 @@ -14001,7 +14004,7 @@ #: svx/uiconfig/ui/crashreportdlg.ui:50 msgctxt "crashreportdlg|btn_cancel" msgid "Do _Not Send" -msgstr "" +msgstr "Älä lähetä" #. afExy #: svx/uiconfig/ui/crashreportdlg.ui:64 @@ -16807,7 +16810,7 @@ #: svx/uiconfig/ui/fontworkgallerydialog.ui:91 msgctxt "fontworkgallerydialog|label1" msgid "Select a Fontwork style:" -msgstr "Valitse Fonttipaja-tyyli:" +msgstr "Valitse fonttipajatyyli:" #. CVMKf #: svx/uiconfig/ui/fontworkspacingdialog.ui:14 diff -Nru libreoffice-7.1.2~rc2/translations/source/fr/cui/messages.po libreoffice-7.1.3~rc2/translations/source/fr/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/fr/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fr/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-12-21 18:23+0000\n" "Last-Translator: Jean-Baptiste Faure \n" "Language-Team: French \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME prend en charge quatre niveaux de sécurité des macros (de faible à très élevé) et des sources fiables." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 a l'intention de s'inscrire en tant qu'organisation pour Google Summer of Code (GSoC) voir :" - -#. SNTbc -#: 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 "Saviez-vous que vous pouvez associer un commentaire à une portion de texte ? Il suffit d'utiliser le raccourci clavier %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Vous avez besoin de déplacer un ou plusieurs paragraphes ? Pas besoin de couper-coller : utilisez le raccourci clavier %MOD1+%MOD2+Flèche (haut/bas)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Pour changer les polices par défaut pour le modèle prédéfini ou le document courant, allez à Outils ▸ Options ▸ %PRODUCTNAME Writer ▸ Polices standard." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Vous voulez trouver les mots qui ont plus de 10 caractères ? Édition ▸ Chercher & remplacer ▸ Rechercher ▸ [a-z]{10,} ▸ Autres options ▸ cocher Expressions régulières" #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Pour ouvrir un fichier CSV comme nouvelle feuille dans le classeur courant : Feuille ▸ Insérer une feuille à partir d'un fichier." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Si vous avez saisi en gras, italique ou souligné dans Writer, vous pouvez continuer avec les attributs par défaut juste en utilisant le raccourci clavier %MOD1+Maj+X (Supprimer les formats de caractère directs)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Utilisez %MOD1+%MOD2+Maj+V pour coller le contenu du presse-papier en texte non formaté." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personnalisez l'apparence des notes de pied-de-page avec Outils ▸ Note de bas de page/de fin…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Avec Diaporama ▸ Diaporama personnalisé, vous pouvez réorganiser et choisir les diapositives pour adapter un diaporama aux besoins de vos spectateurs." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Vous souhaitez modifier la vérification orthographique d'une partie du texte ? Cliquez dans la zone de langue de la barre d'état ou mieux, appliquez un style." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer peut insérer une page blanche entre deux pages impaires (paires) qui se suivent. Cochez « Imprimer les pages blanches insérées automatiquement » dans l'onglet %PRODUCTNAME Writer du dialogue d'impression." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Vous ne voulez pas imprimer toutes les colonnes ? Cachez ou regroupez celles dont vous n'avez pas besoin." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Pour modifier une présentation à démarrage automatique, ouvrez-la et après son démarrage, cliquez avec le bouton droit de la souris et sélectionnez Modifier dans le menu contextuel." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Avez-vous besoin d'un positionnement précis ? Les touches %MOD2+flèche déplacent un objet (formes, images, formules) par pas d'un pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "L'aide embarquée est disponible en appuyant sur la touche F1, si vous l'avez installée. Sinon voyez en ligne à :" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Faites un clic droit dans la barre de statut de %PRODUCTNAME Calc et sélectionnez « Compte de la sélection » pour afficher le nombre de cellules sélectionnées." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Vous souhaitez avoir deux colonnes ou plus pour une partie seulement d'une page %PRODUCTNAME Writer ? Insertion ▸ Section, onglet Colonnes, et placez le texte dans cette section." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Utilisez Données ▸ Statistiques dans %PRODUCTNAME Calc pour l'échantillonnage, les statistiques descriptives, l'analyse de variance, la corrélation et bien d'autres choses encore." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Vous pouvez copier d'une feuille vers une autre sans passer par le presse-papier. Sélectionnez la zone à copier, %MOD1+clic sur l'onglet de la feuille cible puis menu Feuille ▸ Remplir les cellules ▸ Remplir les feuilles." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Vous pouvez changer l'apparence de %PRODUCTNAME via le menu Outils ▸ Options ▸ %PRODUCTNAME ▸ Affichage." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Dans %PRODUCTNAME Impress, utilisez Insertion ▸ Média ▸ Album photo pour créer un diaporama à partir d'une série d'images en utilisant la fonctionnalité « Album photo »." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Vous pouvez afficher les formules plutôt que leurs résultats avec le menu Affichage ▸ Afficher la formule (ou Outils ▸ Options ▸ %PRODUCTNAME Calc ▸ Affichage ▸ Afficher ▸ Formules)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME est développé par une communauté amicale, composée de centaines de contributeurs à travers le monde. Rejoignez-nous avec vos compétences, sans restriction au codage seul." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Gaucher ? Activez Outils ▸ Options ▸ Paramètres linguistiques ▸ Langues ▸ Asiatique et cochez Outils ▸ Options ▸ %PRODUCTNAME Writer ▸ Affichage ▸ Règle verticale ▸ Alignée à droite, qui affiche la barre de défilement à gauche." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Vous voulez que vos titres de chapitre commencent toujours une nouvelle page ? Éditez Titre 1 (style de paragraphe) ▸ Enchaînements ▸ Sauts et cochez Insérer ▸ Page ▸ Avant." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "La valeur de date & heure est juste un nombre de jours depuis une date origine ; dans ce nombre la partie entière représente la date et la partie fractionnaire est l'heure (temps écoulé dans un jour), avec 0,5 qui représente midi." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Maj+%MOD1+Suppr efface le texte depuis le curseur jusqu'à la fin de la phrase courante." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Vous pouvez utiliser des étiquettes de ligne ou de colonne dans des formules. Par exemple, si vous avez deux colonnes, « Temps » et « Km », utilisez =Temps/Km pour obtenir des minutes par kilomètre." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Ennuyé par les « fourmis qui marchent » autour des cellules copiées dans Calc ? Appuyez sur Échap pour les arrêter ; le contenu copié restera disponible pour être collé." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Vous voulez devenir un ambassadeur %PRODUCTNAME ? Il existe des certifications pour les développeurs, les administrateurs et les formateurs." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Mélangez les orientations portrait et paysage dans une feuille de calcul Calc en appliquant différents styles de page sur les feuilles." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Cliquez sur l'icône des caractères spéciaux dans la barre d'outils pour accéder rapidement aux caractères favoris et aux caractères récents à insérer." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Choisissez la vue « Hiérarchie » pour les styles dans la barre latérale pour voir les relations entre styles." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Vous pouvez utiliser des styles pour rendre homogènes les tableaux dans vos documents. Choisissez un des styles prédéfinis (F11) ou via Tableau ▸ Styles d'AutoFormat." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Configurer l'utilisation de la touche %MOD1 pour ouvrir les hyperliens ? Outils ▸ Options ▸ %PRODUCTNAME ▸ Sécurité ▸ Options ▸ « %MOD1+clic requis pour ouvrir les hyperliens »." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Vous souhaitez visualiser le calcul des éléments individuels d'une formule, sélectionnez les éléments correspondants et appuyez sur F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Vous pouvez protéger des cellules avec Format ▸ Cellules ▸ Protection de cellule. Pour empêcher insertion, suppression, renommage,déplacement / copie de feuilles, utilisez Outils ▸ Protéger la feuille." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Écrire le long d'une courbe dans Writer ? Dessinez la ligne, double-clic, saisissez le texte, Format ▸ Zone de texte et forme ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Vous voulez afficher seulement les plus grandes valeurs dans un classeur ? Sélectionnez menu Données ▸ Autofiltre, cliquez sur la flèche de la liste déroulante et choisissez « Top 10 »." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Pour supprimer le numéro de page de votre table des matières, allez à Insertion ▸ Table des matières et index (ou cliquez avec le bouton droit de la souris et modifiez l'index précédemment inséré). Dans l'onglet Entrées, supprimez le numéro de page (#) de la ligne Structure et formatage." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Avec le Navigateur, vous pouvez sélectionner et déplacer les titres vers le haut/bas et le texte sous le titre, dans le Navigateur et dans le document." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Pour obtenir rapidement une formule mathématique dans Writer, tapez votre formule, sélectionnez-la et utilisez Insertion ▸ Objet ▸ Formule pour convertir le texte." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Avec %PRODUCTNAME il est vraiment facile d'installer un nouveau dictionnaire : ils sont fournis sous forme d'extensions." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME a une version portable qui vous donne de la mobilité. Même sans droits d'administrateur sur votre ordinateur, vous pouvez installer %PRODUCTNAME Portable sur votre disque dur." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer vous permet de numéroter vos notes de bas de page par page, chapitre ou document : Outils ▸ Notes de bas de page / de fin... ▸ Onglet Notes de bas de page ▸ Comptage." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Votre document Writer ne se rouvre pas avec le curseur de texte à la même position d'édition qu'au moment où vous l'avez enregistré ? Ajoutez votre prénom ou votre nom dans Outils ▸ Options ▸ %PRODUCTNAME ▸ Données d'identité ▸ Prénom/Nom." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Gestion des citations ? Utilisez une extension tierce." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Vous souhaitez insérer une valeur au même endroit sur plusieurs feuilles ? Sélectionnez les feuilles : maintenez la touche %MOD1 enfoncée et cliquez sur leurs onglets avant de saisir la valeur." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Vous voulez cacher du texte dans un document ? Sélectionnez le texte. Insertion ▸ Section puis sélectionnez «Masquer»." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Vous pouvez personnaliser le bouton du milieu de la souris par Outils ▸ Options ▸ %PRODUCTNAME ▸ Affichage ▸ Souris ▸ Bouton du milieu." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Vous souhaitez imprimer deux pages en format portrait sur une page en format paysage (en réduisant le format A4 à A5) ? Fichier ▸ Imprimez et sélectionnez 2 à « Pages par feuille »." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Pour accéder rapidement à vos signets de document, cliquez avec le bouton droit de la souris sur le numéro de page de la barre d'état (coin inférieur gauche de la fenêtre du document)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Sélectionnez un objet dans l'arrière-plan du document à l'aide de l'outil Sélectionner de la barre d'outils Dessin pour entourer l'objet à sélectionner." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Définissez les textes que vous utilisez souvent comme AutoTexte (texte automatique). Vous pourrez les insérer en utilisant leur nom, un raccourci ou une barre d'outils dans n'importe quel document Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Faites jouer de la musique tout au long d'un diaporama en attribuant le son à la première transition de diapositive sans cliquer sur le bouton « Appliquer à toutes les diapositives »." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 ne calcule pas de gauche à droite mais respecte l'ordre Parenthèses – Exposants – Multiplication – Division – Addition – Soustraction." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Obtenez la documentation de %PRODUCTNAME et des guides d'utilisation gratuits sur :" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Vous souhaitez supprimer tous les <> en une fois et conserver le texte à l'intérieur ? Édition ▸ Rechercher & remplacer : Rechercher = [<>], Remplacer = vide et cochez « Expressions régulières » sous Autres options." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Besoin de présenter un rapport écrit avec Writer ? Fichier ▸ Envoyer ▸ Plan vers présentation crée automatiquement un diaporama à partir du plan." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Vous souhaitez gérer la présentation des hyperliens dans un tableur ? Insérez-les avec la fonction HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Décocher Outils ▸ Options ▸ %PRODUCTNAME Calc ▸ Affichage ▸ Zoom : « Synchroniser les feuilles » pour que chaque feuille dans Calc ait son propre facteur de zoom." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Vous pouvez assigner une couleur à chaque onglet : faites un clic droit sur l'onglet ou utilisez Feuille ▸ Couleur de l'onglet." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Repérez les cellules utilisées dans une formule, les antécédents (Maj+F9) ou les dépendants (Maj+F5) (ou bien utilisez Outils ▸ Audit). À chaque appui vous allez un pas plus loin dans la chaîne de dépendance." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Insérez et numérotez vos formules en une seule étape : tapez nf (Numérotation de Formule) puis F3. Un texte automatique est inséré avec une formule et un nombre alignés dans un tableau." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Vous pouvez créer un index des illustrations à partir des noms des objets, pas seulement à partir des légendes." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Utilisez votre Android ou iPhone pour contrôler à distance votre présentation Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Vous voulez savoir combien de jours il y a dans le mois en cours ? Utilisez la fonction JOURSDANSMOIS(AUJOURDHUI())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Vos nombres sont affichés comme ### dans votre tableur ? La colonne est trop étroite pour afficher tous les chiffres." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Autorisez des calculs parallèles massifs de cellules de formule via Outils ▸ Options ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Utilisez l'outil Connecteur de la barre d'outils Dessin dans Draw / Impress pour créer de jolis organigrammes et éventuellement copier&coller l'objet dans Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Vos dons soutiennent notre communauté mondiale." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Vous voulez ajouter x mois à une date ? Utilisez =MOIS.DECALER(date;mois)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Pour sélectionner une plage contigüe de cellules contenant des données et délimitée par des lignes et des colonnes vides, utilisez %MOD1+* (pavé numérique)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Votre format d'acceptation des dates est inapproprié ? Utilisez les outils ▸ Options ▸ Paramètres linguistiques ▸ Langue ▸ Formats de date acceptés pour modifier le format." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vous voulez exporter les formules en CSV ? Fichier ▸ Enregistrer sous ▸ Type : Texte CSV, cochez \"Éditer les paramètres du filtre\" et cochez \"Enregistrer les formules de cellule\" dans le dialogue suivant." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La console de présentation est une excellente fonction lorsque vous travaillez avec %PRODUCTNAME Impress. Avez-vous essayé ?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Pour supprimer plusieurs commentaires, sélectionnez les cellules avec des commentaires puis utilisez Feuilles ▸ Commentaires de cellule ▸ Supprimer le commentaire." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Convertissez facilement vos documents au format PDF en un seul clic en cliquant sur l'icône PDF dans la barre d'outils." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Vous voulez sélectionner une grande plage de cellules sans faire défiler ? Saisissez le référence de la plage (ex : A1:A1000) dans la zone de nom et appuyez sur Entrée." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vous voulez connaître les paramètres de ligne de commande valides ? Démarrez soffice avec les options --help ou -h ou -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Adaptez votre feuille ou vos plages d'impression à une page avec Format ▸ Page ▸ Onglet Feuille ▸ Mode de mise à l'échelle." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Vous avez besoin d'une entrée non numérotée dans une liste ? Utilisez \"Insérer une entrée sans numéro\" dans la barre d'outils « Puces et numérotation »." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Vous pouvez faire pivoter l'orientation des cellules d'un tableau avec Tableau ▸ Propriétés... ▸ Enchaînements ▸ Orientation du texte." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Dans %PRODUCTNAME Draw pour changer le point 0/0 des règles, faites glisser l'intersection des deux règles dans le coin supérieur gauche dans l'espace de travail." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Déplacer une colonne dans Calc entre deux autres colonnes en une seule étape ? Cliquez sur l'entête puis sur une cellule dans la colonne, gardez le bouton de la souris enfoncé et déplacez vous jusqu'à la cible avec la touche %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Vous pouvez marquer automatiquement des entrées de l'index alphabétique à l'aide d'un fichier de concordance." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Utilisez Forme ▸ Aligner (ou le menu contextuel) pour positionner précisément des objets dans Draw/Impress : cela positionne l'objet par rapport à la page si un seul objet est sélectionné ou agit relativement au groupe sélectionné." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "N'utilisez pas de tabulation pour espacer les éléments d'un document Writer. En fonction de ce que vous essayez de faire, un tableau sans bordure peut être un meilleur choix." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Pas besoin de faire défiler la liste sur Outils ▸ Personnaliser ▸ Clavier pour trouver un raccourci : il suffit de le taper." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME peut ajouter automatiquement légende numérotée quand vous insérez des objets. Voir Outils ▸ Options ▸ %PRODUCTNAME Writer ▸ Légende automatique" #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Avec %PRODUCTNAME vous pouvez utiliser votre compte Google Mail pour faire un publipostage. Renseignez Outils ▸ Options ▸%PRODUCTNAME Writer ▸ Courriel de publipostage." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Avec Affichage ▸ Fixer les cellules ▸ Fixer la première ligne, vous pouvez garder les entêtes de colonne d'une feuille de calcul visibles tout en faisant défiler les lignes." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Vous voulez commencer à travailler avec les macros Basic ? Consultez les exemples sous Outils ▸ Macros ▸ Éditer les macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Appliquez les styles de titres dans Writer avec des touches de raccourci : %MOD1+1 applique le style Titre 1, %MOD1+2 applique le Titre 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Ne soyez pas perdu dans les longs documents. Utilisez le Navigateur (F5) pour trouver votre chemin dans le contenu." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Édition ▸ Rechercher & remplacer vous permet d'insérer directement des caractères spéciaux : clic droit dans les champs de saisie ou appuyez sur Maj+%MOD1+S" #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Vous avez besoin d'un contenu personnalisé pour les propriétés de métadonnées ? Fichier ▸ Propriétés ▸ onglet Propriétés personnalisées vous permet de créer les propriétés que vous voulez." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vous voulez voir mais pas imprimer un objet dans Draw ? Dessiner le dans une couche dont l'attribut « Imprimable » est désactivé (clic droit sur l'onglet puis « Modifier la couche »)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Pour insérer la date actuelle dans votre document, utilisez Insertion ▸ Champ ▸ Date." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Vous avez de nombreuses images dans votre document Writer ? Accélérez l'affichage en désactivant Affichage ▸ Images et diagrammes." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Utilisez Feuille ▸ Remplir les cellules ▸ Remplir de nombres aléatoires pour générer une série aléatoire basée sur diverses distributions." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Renommez vos diapos dans Impress pour vous aider à définir les interactions « Aller à la page » et pour avoir un sommaire plus explicite que Diapo1, Diapo2 …" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "La boîte de dialogue de numérotation des chapitres vous permet de définir le texte à afficher avant le numéro du chapitre. Par exemple, saisissez « Chapitre » pour afficher « Chapitre 1 »." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transposer un tableau Writer ? Copier-coller dans Calc, transposer avec copier/coller spécial puis copier/coller spécial ▸ Texte formaté dans Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Pour obtenir l'outil « Texte vertical » dans la barre d'outils Dessin, cochez Outils ▸ Options ▸ Paramètres linguistiques ▸ Langues ▸ Langues par défaut des documents ▸ Asiatique (et rendez le bouton visible avec un clic droit)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Pour zoomer rapidement sur la sélection d'une plage, cliquez avec le bouton droit de la souris sur la partie zoom de la barre d'état et choisissez Optimal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Vous pouvez signer des fichiers PDF existants et aussi vérifier ces signatures." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Vous créez souvent un document à partir d'un autre ? Envisagez d'utiliser un modèle." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Dans Calc utilisez Format ▸ Conditionnel ▸ Gérer pour savoir quelles cellules ont été définies avec le formatage conditionnel." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Outils ▸ Audit ▸ Marquer les données incorrectes met en évidence toutes les cellules de la feuille qui contiennent des valeurs en dehors des règles de validation." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Utilisez l'incorporation de polices pour une plus grande interopérabilité avec d'autres suites bureautiques via Fichier ▸ Propriétés ▸ Police." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Pour convertir une formule en valeurs statiques, vous n'avez pas besoin de faire un copier/coller ; utilisez Données ▸ Calculer ▸ Formule en valeur." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Vous pouvez reformater tous les commentaires dans un document en cliquant sur la flèche vers le bas dans un commentaire et en choisissant « Formater tous les commentaires »." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Vous voulez la même mise en page pour l'affichage à l'écran et l'impression ? Vérifiez Outils ▸ Options ▸ %PRODUCTNAME Calc ▸ Général ▸ Utiliser les mesures de l'imprimante pour le formatage du texte." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer vous aide à faire des sauvegardes : avec Fichier ▸ Enregistrer une copie, vous créez un nouveau document tout en continuant à travailler sur l'original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Lorsque vous avez créé un style basé sur un autre, vous pouvez entrer une valeur en pourcentage ou une valeur en points (par exemple 110% ou -2pt ou +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Pour copier un commentaire sans perdre le contenu de la cellule cible, vous devez utiliser l'option Collage spécial et décocher tout ce qui n'est pas « Commentaires » dans la boîte de dialogue. Sélectionnez « Additionner » sous « Opérations » pour ne pas écraser le contenu existant." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Convertissez par lots vos documents MS Office au format OpenDocument grâce à l'assistant de conversion de documents dans le menu Fichier ▸ Assistants ▸ Convertisseur de documents." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Lorsque vous modifiez une cellule en place, vous pouvez cliquer avec le bouton droit de la souris et insérer des champs : Date, Nom de la feuille, Titre du document, etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Besoin de déplacer un tableau Writer ? Tableau ▸ Sélectionner ▸ Tableau puis Insertion ▸ Cadre ▸ Cadre enfin déplacez le où vous voulez." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Avec Outils ▸ AutoTexte ▸ AutoTexte ▸ Importer, vous pouvez sélectionner un document Word ou un modèle contenant les entrées AutoTexte que vous souhaitez importer." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "N'insérez pas de sauts manuels pour séparer deux paragraphes. Modifiez plutôt les paramètres dans les propriétés du style/ du paragraphe Retraits et espacements ▸ Espacement ▸ Sous le paragraphe ." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Gardez les zéros avant un nombre en utilisant l'option de format de cellule « zéros non significatifs » ou formatez la cellule comme du texte avant de saisir le nombre." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vous voulez revenir aux valeurs par défaut après avoir appliqué un style de liste ? Cliquez sur l'outil Puces ou l'outil Numérotation dans la barre d'outils de formatage." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Supprimez toutes vos zones d'impression en une seule étape : sélectionnez toutes les feuilles, puis Format ▸ Zones d'impression ▸ Effacer." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Ajoutez des images d'arrière-plan aux feuilles de calcul via Insertion ▸ Image ou faites glisser un arrière-plan depuis la Galerie, puis Format ▸ Positionner ▸ À l'arrière-plan." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Vous avez des difficultés à coller du texte de fichiers PDF ou de pages web dans des documents ? Essayez de coller en tant que texte non formaté (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Dans Calc, utilisez MOYENNE.REDUITE() pour obtenir la moyenne d'un ensemble de données excluant les valeurs la plus élevée et la plus basse." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Le 4ème paramètre optionnel de la fonction RECHERCHEV de Calc indique si la première colonne de données est triée. Si ce n'est pas le cas, entrez FAUX ou zéro." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Les barres d'outils sont contextuelles — elles s'ouvrent en fonction du contexte. Si vous ne le souhaitez pas, décochez-les dans Affichage ▸ Barres d'outils." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Créer un document maître à partir du document Writer actuel ? Fichier ▸ Envoyer ▸ Créer un document maître (les sous-documents sont créés en fonction du plan)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Vous voulez centrer des cellules sur une page imprimée dans Calc ? Format ▸ Page, Page ▸ Paramètres de mise en page ▸ Alignement du tableau." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Les cadres peuvent être liés de façon à ce que le texte puisse passer de l'un à l'autre, comme en publication assistée par ordinateur." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Créez un graphique basé sur un tableau Writer en cliquant dans le tableau et en choisissant Insérer > Diagramme." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Sélectionnez les options dans Outils ▸ Options ▸ %PRODUCTNAME Writer ▸ Aides au formatage ▸ Formatage de l'affichage pour spécifier quels caractères non imprimables sont affichés." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Vous voulez aller directement à une page particulière en indiquant son numéro ? Cliquez sur l'entrée la plus à gauche de la barre d'état ou utilisez Édition ▸ Aller à la page... ou appuyez sur Ctrl+Maj+F5." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME prend en charge plus de 150 langues." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Décochez Diaporama ▸ Paramètres du diaporama ▸ Présentation toujours au premier plan si vous avez besoin qu'un autre programme affiche sa fenêtre devant votre présentation." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Vous voulez trouver les mots en gras dans un document Writer ? Édition ▸ Rechercher & Remplacer ▸ Autres options ▸ Attributs ▸ Graisse." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Vous pouvez trier des paragraphes ou des lignes de tableau alphabétiquement ou numériquement avec Outils ▸ Trier." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Pour insérer un paragraphe avant (après) une section, appuyez sur %MOD2+Entrée au début (fin) de la section." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME dispose d'un dépôt de modèles pour créer de beaux documents —essayez le." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calculer les remboursements de prêt avec Calc : ex. VPM(2%/12;36;2500) taux d'intérêt par période de paiement 2%/12, 36 mois, montant du prêt 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Vous ne pouvez pas trouver ce que vous voulez avec RECHERCHEV ? Avec INDEX et EQUIV, vous pouvez tout faire !" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Vous voulez afficher la colonne cachée A ? Cliquez sur une cellule de la colonne B, appuyez sur le bouton gauche de la souris, déplacez la souris vers la gauche, relâchez. Activez-la ensuite via Format ▸ Colonnes ▸ Afficher." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Pour changer le numéro d'une page dans Writer, allez dans les propriétés du premier paragraphe et dans l'onglet Enchaînements cochez Saut ▸ Insérer et entrez le numéro." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Utilisez %PRODUCTNAME dans n'importe navigateur via rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Code d'erreur étrange dans Calc, Err: suivi d'un nombre ? Cette page donne l'explication :" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Pour inclure un paragraphe qui n'est pas un titre dans la table des matières, changez le niveau de plan dans les paramètres du paragraphe, onglet Plan et Numérotation." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "En plus de la table des matières, %PRODUCTNAME peut créer des index alphabétiques, des illustrations, des tableaux, des objets, une bibliographie, ou définis par l'utilisateur." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Impossible de modifier ou de supprimer un style de cellule personnalisé ? Vérifiez toutes les feuilles, aucune ne doit être protégée." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Vous avez besoin de remplir une série ? Sélectionnez la plage de cellules, puis Feuille ▸ Remplir les cellules ▸ Remplir la série et choisissez entre Arithmétique, Géométrique, Date et Remplir automatiquement." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Vous voulez savoir si une cellule est référencée dans les formules d'autres cellules ? Outils ▸ Audit ▸ Repérer les dépendants (Maj+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Dans le champ de saisie de remplacement des options de correction automatique, vous pouvez utiliser les caractères génériques .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Vous voulez dupliquer la ligne du dessus ? Appuyez sur %MOD1+D ou utilisez Feuille > Remplir les cellules > Remplir vers le bas." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Pour rechercher dans plusieurs feuilles de calcul, sélectionnez les avant de lancer la recherche." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Glisser-déposer des cellules de Calc dans la vue normale d'une diapositive crée un tableau ; dans la vue Plan, chaque cellule crée une ligne dans le plan et donc une diapo." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME vous aide à ne pas saisir 2 espaces successifs ou plus dans Writer. Sélectionnez Outils ▸ AutoCorrection ▸ Options d'AutoCorrection ▸ Options ▸ Ignorer les espaces doubles." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Vous voulez que le curseur aille dans la cellule à droite, après avoir entré une valeur dans Calc ? Utilisez la touche Tabulation au lieu de Entrée." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Pour afficher la barre de défilement à gauche, activez Outils ▸ Options ▸ Paramètres linguistiques ▸ Langues ▸ Texte complexe puis cochez Feuille ▸ De droite à gauche." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Faites glisser un objet formaté dans la fenêtre Styles et formatage. Une boîte de dialogue s'ouvre, entrez simplement le nom du nouveau style." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Les nouvelles versions de %PRODUCTNAME offrent des nouvelles fonctionnalités, des corrections de bogues et des correctifs de sécurité. Gardez votre logiciel à jour !" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Développement de nouveaux filtres XSLT et XML ?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Appuyez sur Maj+F1 pour voir toutes les infoballons disponibles dans les boîtes de dialogue, lorsque « Infoballons » n'est pas activé dans Outils ▸ Options ▸ %PRODUCTNAME ▸ Général." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Aide de %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Plus d'informations" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Exécuter cette action maintenant..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Astuce du jour : %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-02-21 17:36+0000\n" -"Last-Translator: Jean-Baptiste Faure \n" +"PO-Revision-Date: 2021-04-22 12:37+0000\n" +"Last-Translator: Jeanmi2403 \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562340649.000000\n" @@ -3885,7 +3885,7 @@ "hd_id3147394\n" "help.text" msgid "Import a Library" -msgstr "Importer un bibliothèque" +msgstr "Importer une bibliothèque" #. KiUmc #: 01030400.xhp @@ -10502,7 +10502,7 @@ "bm_id3153361\n" "help.text" msgid "Line Input statement" -msgstr "Line, instruction" +msgstr "Line Input, instruction" #. DBAiv #: 03020203.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-03-04 16:36+0000\n" +"PO-Revision-Date: 2021-04-13 17:37+0000\n" "Last-Translator: sophie \n" "Language-Team: French \n" "Language: fr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565208174.000000\n" #. sZfWF @@ -36671,7 +36671,7 @@ "par_id2953814\n" "help.text" msgid "Returns the (1-alpha) confidence interval for a Student's t distribution." -msgstr "Renvoie un intervalle de confiance (alpha 1) pour une distribution d'étudiants." +msgstr "Renvoie un intervalle de confiance (alpha 1) pour une loi de Student." #. khHBF #: 04060183.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-29 20:36+0000\n" "Last-Translator: serval2412 \n" "Language-Team: French \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562148554.000000\n" @@ -15380,33 +15380,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Petites capitales - Modifie les caractères minuscules sélectionnés en caractères majuscules et réduit leur taille." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "Polices clignotantesPolices clignotantes" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Clignotant" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Fait clignoter les caractères sélectionnés. Vous ne pouvez pas modifier la fréquence de clignotement" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/fr/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fr/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-02-25 18:36+0000\n" -"Last-Translator: Jean-Baptiste Faure \n" +"PO-Revision-Date: 2021-04-22 12:37+0000\n" +"Last-Translator: Jeanmi2403 \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559305809.000000\n" #. Edm6o @@ -8168,7 +8168,7 @@ "par_id3159152\n" "help.text" msgid "The Before submitting event occurs before the form data is sent. Returning True approves the submission, False stops it." -msgstr "L'événement Avant l'envoie se produit avant que les données du formulaire soient envoyées. Renvoyer True approuve l'envoie, False l'arrête." +msgstr "L'événement Avant l'envoi se produit avant que les données du formulaire soient envoyées. Renvoyer True approuve l'envoie, False l'arrête." #. uF4JK #: 01170202.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/fur/cui/messages.po libreoffice-7.1.3~rc2/translations/source/fur/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/fur/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fur/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-01-15 16:36+0000\n" "Last-Translator: tmtfx \n" "Language-Team: Friulian \n" @@ -2456,1073 +2456,1067 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME al supuarte cuatri nivei di sigurece pes macro (di bas a une vore alt) e sorzints atendibilis." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 al à intenzion di candidâsi tant che organizazion par Google Summer of Code (GSoC), viôt:" - -#. SNTbc -#: 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 "Savevistu che tu puedis zontâ coments a porzions di test? Al baste doprâ la scurte %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Covential spostâ un o plui paragrafs? Nol covente taiâ e tacâ: dopre la scurte di tastiere %MOD1+%MOD2+Frece (Sù/Jù)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Cambie i caratars di base pal model predefinît o pal document atuâl vie Struments ▸ Opzions ▸ %PRODUCTNAME Writer ▸ Caratars di base." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Desideristu cjatâ lis peraulis che a contegnin plui di 10 caratars? Modifiche ▸ Cjate e sostituìs ▸ Cîr ▸ [a-z]{10,} ▸ Altris opzions ▸ segne Espressions regolârs." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Vierç un file CSV, come gnûf sfuei intal sfuei di calcul atuâl, midiant Sfuei ▸ Sfuei dal file." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Scrivint in neret, corsîf o sotlineât in Writer tu puedis continuâ cui atribûts predefinîts doprant dome la scurte %MOD1+Maiusc+X (gjave i formâts di caratar direts)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Dopre %MOD1+%MOD2+Maiusc+V par tacâ i contignûts des notis tant che test no formatât." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalize l'aspiet de note da pît de pagjine cun Struments ▸ Note da pît de pagjine e Notis finâls…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Cun Presentazion ▸ Presentazion personalizade, torne ordene e sielç lis diapositivis par adatâ une presentazion aes bisugnis dai tiei spetadôrs." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Vûstu cambiâ il control ortografic par cualchi part dal test? Fâs clic inte zone de lenghe te sbare di stât o miôr, apliche un stîl." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer al pues inserî une pagjine vueide tra dôs pagjinis dispar (pâr) che si seguissin. Segne “Stampe pagjinis vueidis inseridis in automatic” inte schede dal dialic di stampe di %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Vûstu evitâ di stampâ dutis lis colonis? Plate o met dongje chês che no ti coventin." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Par modificâ une presentazion in riproduzion automatiche, vierzile e dopo vêle fate partî fâs clic diestri e selezione Modifiche tal menù contestuâl." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Covential posizionâ ogjets cun precision? %MOD2+↑, ↓, ← o → par spostâ i ogjets (formis, figuris, formulis) di un pixel ae volte." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Il jutori incorporât al è disponibil fracant il tast F1, se tu lu âs instalât. In câs contrari controle in rêt su:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "In %PRODUCTNAME Calc, fâs clic diestri te sbare di stât e selezione “Conte des selezions” par visualizâ il numar di celis selezionadis." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Desideristu vê dôs o plui colonis par dome une part di une pagjine di %PRODUCTNAME Writer? Inserìs ▸ Sezion, stabilìssilis cu la schede Colonis e met il test in chê sezion." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Dopre Dâts ▸ Statistichis par campionament, statistichis descritivis, analisis di variazion, corelazion e tant altri cun %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Tu puedis copiâ di un sfuei in chel altri cence doprâ lis notis. Selezione la aree di copiâ, %MOD1+clic te schede dal sfuei di destinazion e dopre Sfuei ▸ Jemple celis ▸ Jemple sfueis." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 #, fuzzy msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Tu puedis cambiâ l'aspiet di %PRODUCTNAME vie Struments ▸ Opzions ▸ Viodude ▸ Interface utent." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "In %PRODUCTNAME Impress, dopre Inserìs ▸ Multimedia ▸ Album fotografic par creâ une presentazion cun diapositivis partint di une serie di imagjins cu la funzionalitât “Album fotografic”." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 #, fuzzy 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 "Tu puedis mostrâ lis formulis al puest dai risultâts cun Visualize ▸ Mostre formule (o Struments ▸ Opzions ▸ %PRODUCTNAME Calc ▸ Viodude ▸ Mostre ▸ Formulis)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME al è svilupât di une comunitât ben disponude, fate di centenârs di colaboradôrs ator pal mont. Zontiti a nô e condivît lis tôs competencis ancje chês che no centrin cu la programazion." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Çampin? Abilite Struments ▸ Opzions ▸ Impostazions lenghe ▸ Lenghis ▸ Asiatiche e controle Struments ▸ Opzions ▸ %PRODUCTNAME Writer ▸ Viodude ▸ Rie ▸ Inlineât-a-drete, che al mostre lis sbaris di scoriment a çampe." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Vûstu che i titui dai cjapitui a scomencedin simpri une pagjine? Modifiche Intestazion1 (stîl paragraf) ▸ Flus dal test ▸ Interuzions e controle Inserìs ▸ Pagjine ▸ Prime." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Il valôr date/ore al è dome un numar di dîs partint di une zornade zero; intal numar, la part interie e rapresente la date e la part frazionarie e je il timp (la part passade di une zornade), cun 0.5 che al rapresente misdì." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Maiusc+%MOD1+Canc al scancele dal cursôr ae fin de frase atuâl." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Dopre etichetis di colone o di rie tes formulis. Par esempli, se tu âs dôs colonis, “Timp” e “KM”, dopre =Timp/KM par otignî i minûts par chilometri." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Sêstu infastidît des “furmiutis che a cjaminin” tor atôr des celis in Calc? Frache ESC par fermâlis; il contignût copiât al restarà disponibil par jessi tacât." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Vûstu deventâ un Ambassadôr di %PRODUCTNAME? A esistin certificazions par svilupadôrs, aministradôrs e formadôrs." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Misclice i orientaments de pagjine par verticâl e par orizontâl intun sfuei di calcul Calc aplicant diferents stîi di pagjine tai sfueis." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Fâs clic te icone dal caratar speciâl inte sbare dai struments par otignî un acès rapit ai caratars preferîts e resints di inserî." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Sielç “Viodude gjerarchiche” inte sbare laterâl dai stîi par viodi la relazion tra i stîi." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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 "Configurâ l'ûs dal tast %MOD1 par vierzi i colegaments ipertestuâi? Struments ▸ Opzions ▸ %PRODUCTNAME ▸ Sigurece ▸ Opzions ▸ “%MOD1+clic necessari par vierzi i colegaments ipertestuâi”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Se tu desideris viodi il calcul dai elements individuâi di une formule, selezione i relatîfs elements e frache F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Tu puedis protezi lis celis cun Formât ▸ Celis ▸ Protezion. Par impedî di inserî, eliminâ, cambiâ non, spostâ/copiâ i sfueis dopre Struments ▸ Protêç sfuei." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Scrivi suntune curve? Dissegne la linie, dopli clic, scrîf il test, Formât ▸ Ricuadri test e Forme ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Desideristu visualizâ dome i valôrs plui alts intun sfuei di calcul? Selezione il menù Dâts ▸ AutoFiltre, fâs clic su la frece par parâ jù e sielç “Prins 10”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Par gjavâ il numar di pagjine de tô tabele dai contignûts va su Inserìs ▸ Tabele dai Contignûts (o clic diestri e Modifiche l'indiç inserît in precedence). Intes schede des Vôs elimine il numar di pagjine (#) de rie Struture." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Cul Navigadôr tu puedis selezionâ e spostâ sù o jù lis intestazions e il test sot de intestazion, tal Navigadôr e intal document." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Par otignî subite un ogjet matematic in Writer scrîf la formule, segnile e dopre Inserìs ▸ Ogjet ▸ Formule par convertî il test." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Cun %PRODUCTNAME al è une vore facil instalâ un gnûf dizionari: a son disponibii tant che estensions." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME al à une version portatil che ti permet mobilitât. Tu puedis instalâ %PRODUCTNAME Portatil tal to disc fis dal computer ancje cence dirits di aministradôr." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer ti permet di numerâ lis notis da pît de pagjine par ogni pagjine, cjapitul, document: Struments ▸ Notis da pît de pagjine e Notis finâls ▸ Schede notis da pît de pagjine ▸ Conte." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Il to document di Writer no si torne a vierzi cul cursôr di test ae stesse posizion di cuant che tu lu âs salvât? Zonte il Non o il Cognon in Struments ▸ Opzions ▸ %PRODUCTNAME ▸ Dâts utent ▸ Non/Cognon." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Gjestion des citazions? Dopre une estension di tiercis parts." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Vûstu inserî un valôr tal stes puest su plui sfueis? Selezione i sfueis: ten fracât il tast %MOD1 e fâs clic su lis lôr schedis prime di inserî il valôr." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Vûstu platâ un pôc di test intun document? Selezione il test. Inserìs ▸ Sezion, e selezione “Plate”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Tu puedis personalizâ il boton centrâl dal mouse vie Struments ▸ Opzions ▸ %PRODUCTNAME ▸ Viodude ▸ Boton centrâl mouse." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Vûstu stampâ dôs pagjinis verticâls suntune orizontâl (ridusint un A4 a A5)? File ▸ Stampe e selezione 2 su “Pagjinis par sfuei”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Par vê un acès rapit ai tiei segnelibris di document, fâs clic diestri sul numar di pagjine de sbare di stât (angul in bas a çampe dal barcon dal document)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Par meti un ôr tor ator di un ogjet intal fonts dal document, selezionilu midiant il strument Selezione inte sbare dai struments di Dissen." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definìs i tescj che tu dopris dispès tant che Test automatic. Tu podarâs inserîju doprant il lôr non, la scurte o la sbare dai struments in cualsisei document Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Riprodûs musiche dilunc dute une presentazion, assegnant il sun ae prime transizion di diapositive cence vê di fâ clic sul boton “Apliche a dutis lis diapositivis”." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 nol calcole di çampe a drete ma al rispiete l'ordin parentesis – esponents – moltiplicazion – division – adizion – sotrazion." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Oten la documentazion di %PRODUCTNAME e la vuide utent gratuite su:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Vûstu tirâ vie ducj i <> intune volte sole, tignint il test jenfri? Modifiche ▸ Cjate e sostituìs: Cîr = [<>], Sostituìs = vueit e segne “Espressions regolârs” sot di Altris opzions." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Scugnistu presentâ un rapuart scrit cun Writer? File ▸ Invie ▸ Bute jù come presentazion al cree in automatic une presentazion partint dal aboç." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Vûstu gjestî la presentazion di colegaments ipertestuâi intun sfuei di calcul? Inserìssiju cu la funzion COLEGAMENT." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Gjave il segn a Struments ▸ Opzions ▸ %PRODUCTNAME Calc ▸ Viodude ▸ Ingrandiment: “Sincronize sfueis”, cussì che ogni sfuei in Calc al vedi il so nivel di ingrandiment." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Tu puedis stabilî un colôr par ogni schede: clic diestri ae schede o dopre Sfuei ▸ Colôr de schede dal sfuei." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Va daûr des celis dopradis intune formule, lis precedentis (Maiusc+F9) o lis dipendentis (Maiusc+F5) (opûr dopre Struments ▸ Detective). Ogni clic ti mande indenant di un pas te cjadene." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Inserìs e numere lis tôs formulis intun colp: scrîf fn e dopo F3. Al ven inserît un test automatic cun formule e numar inlineâts intune tabele." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Tu puedis creâ un indiç di ilustrazion dai nons dai ogjets, no dome des didascaliis." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Dopre il to telefon Android o iPhone par controlâ di rimot la tô presentazion Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "I numars a vegnin mostrâts tant che ### tal to sfuei di calcul? La colone e je masse strete par visualizâ dutis lis cifris." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Abilite i calcui paralêi massîfs des celis cu lis formulis vie Struments ▸ Opzions ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Dopre il strument Conetôr te sbare dai struments di Dissen in Draw/Impress par creâ diagrams di flus biei e, in maniere facoltative, copiâ e incolâ l'ogjet in Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Lis tôs donazions a prudelâ la nestre comunitât mondiâl." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Par selezionâ un interval contigui di celis che a contegnin dâts e delimitât di riis e colonis vueidis, dopre %MOD1+* (tastierin numeric)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Il model di acetazion de date nol è chel just? Dopre Struments ▸ Opzions ▸ Impostazions de lenghe ▸ Lenghe ▸ Modei di acetazion de date par justâ il model." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vûstu espuartâ formulis in CSV? File ▸ Salve come ▸ Gjenar:Test CSV, segne “Modifiche impostazions filtri”, e segne “Salve formulis des cellis” intal dialic sucessîf." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La console di presentazion al è un grant strument cuant che si lavore cun %PRODUCTNAME Impress. Le âstu provade?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Par eliminâ plui coments, selezione lis celis cui coments e dopre Sfueis ▸ Coments des celis ▸ Elimine coment." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Convertìs in mût sempliç i tiei documents in PDF cuntun clic fasint clic su la icone PDF inte sbare dai struments." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Vûstu selezionâ une grande schirie di celis cence scori in sù o in jù? Scrîf l'interval di riferiment (p.e. A1:A1000) intal ricuadri dal non e frache Invie." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vûstu cognossi i parametris valits a rie di comant? Invie soffice cun -help o -h o -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Adate il to sfuei o la aree di stampe a une pagjine cun Formât ▸ Pagjine ▸ schede Sfuei ▸ Modalitât scjaladure." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Covential un element no numerât intune liste? Dopre “Inserìs vôs no numerade” inte sbare dai struments dai ponts e numerazion." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Tu puedis voltâ l'orientament de tabele des celis cun Tabele ▸ Proprietâts… ▸ Flus dal test ▸ Orientament dal test." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "In %PRODUCTNAME Draw par cambiâ il pont 0/0 des riis di misurazion, strissine la intersezion des dôs riis, intal angul in alt a çampe, jenfri il spazi di lavôr." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Sposte une colone in Calc tra altris dôs intun colp? Fâs clic su la intestazion, dopo une cele inte colone, ten il boton dal mouse e sposte te destinazion cul tast %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Segne in automatic lis vôs de tabele alfabetiche doprant un file di concuardance." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Dopre Formât ▸ Inlinee (o il menù contestuâl) par plaçâ in mût precîs i ogjets in Draw/Impress: il comant al centre te pagjine un ogjet, opûr un grup di ogjets, daûr de selezion fate." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "No sta doprâ lis schedis par spaziâ i elements suntun document Writer. In base a ce che tu stâs cirint di fâ, une tabele cence ôrs e pues sei une sielte miôr." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Nol covente scori dilunc la liste in Struments ▸ Personalize ▸ Tastiere par cjatâ une scurte: al baste scrivile." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME al pues zontâ in automatic une didascalie numerade cuant che tu inserissis ogjets. Viôt Struments ▸ Opzions ▸ %PRODUCTNAME Writer ▸ Didascalie automatiche." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Cun %PRODUCTNAME tu puedis doprâ il to account di Google Mail par eseguî une stampe in serie. Jemple i dâts in Struments ▸ Opzions ▸ %PRODUCTNAME Writer ▸ Stampe in serie Email." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Ten visibilis lis intestazions di colone di un sfuei cuant che si scor lis riis, a mieç di Visualize ▸ Inglace Celis ▸ Inglace prime rie." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Vûstu tacâ a lavorâ cu lis macros di Basic? Bute un voli ai esemplis sot di Struments ▸ Macros ▸ Modifiche macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Apliche i stîi dal paragraf di intestazion in Writer cui tascj scurte: %MOD1+1 al apliche la Intestazion 1, %MOD1+2 al apliche la Intestazion 2 e vie indenant." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "No sta pierditi intai documents grancj. Dopre il navigadôr (F5) par orientâti tal contignût." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Modifiche ▸ Cjate e sostituìs ti permet di inserî caratars speciâi in mût diret: fâs clic cul boton diestri dal mouse tai cjamps di inseriment opûr frache Maiusc+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Ti coventino contignûts personalizâts pes proprietâts dai metadâts? la schede File ▸ Proprietâts ▸ Proprietâts personalizadis ti permet di creâ ce che tu vûs." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vûstu viodi, ma no stampâ, un ogjet in Draw? Dissegnilu suntun strât che nol à ative la opzion “Stampabil” (clic diestri su la schede e “Modifiche strât”)" #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Par inserî la date atuâl tal to document, dopre Inserìs ▸ Cjamp ▸ Date." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Âstu tantis imagjins tal to document di Writer? Sveltìs la visualizazion disabilitant Visualize ▸ Imagjins e grafics." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Dopre Sfuei ▸ Jemple Celis ▸ Numar casuâl par gjenerâ une serie di numars casuâi basade su variis distribuzions." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Cambie il non des tôs diapositivis in Impress par judâti a definî lis interazions “Va ae pagjine” e par vê un somari plui esplicit di Diapositive1, Diapositive2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Il dialic di numerazion dai cjapitui ti permet di stabilî il test di visualizâ prime dal numar di cjapitul. Par esempli, scrîf “Cjapitul” par visualizâ “Cjapitul 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Vûstu trasponi une tabele di Writer? Copie e tache in Calc, trasponi cun copie/tache speciâl daspò copie/tache speciâl ▸ Test formatât in Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Par vê il strument “Test verticâl” inte sbare dai struments di dissen, segne Struments ▸ Opzions ▸ Impostazions lenghe ▸ Lenghis ▸ Lenghis predefinidis ▸ Asiatiche (e rint visibil il boton cul clic diestri dal mouse)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Par ingrandî subite suntune aree selezionade, fâs clic diestri su la part relative al ingrandiment te sbare di stât e sielç Otimâl." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Tu puedis firmâ i file PDF esistents e verificâ lis lôr firmis." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Creistu dispès un document partint di un altri? Considere la idee di doprâ un model." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "In Calc dopre Formât ▸ Formatazion condizionâl ▸ Gjestìs par cjatâ fûr cualis celis a son stadis definidis cu la formatazion condizionâl." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Struments ▸ Detective ▸ Segne dâts no valits al evidenzie dutis lis celis intal sfuei che a contegnin valôrs che a stan fûr des regulis di validazion." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Dopre la incorporazion dai caratars par vê une interoperabilitât miorade cu lis altris suite par ufici: va su File ▸ Proprietâts ▸ Caratar." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Par convertî une formule in valôrs statics no ti covente fâ copie/tache; dopre Dâts ▸ Calcole ▸ Formule in valôr." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Tu puedis tornâ a formatâ ducj i coments intun document fasint clic su pe frece jù intun coment e sielzint “Formate ducj i coments”." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Vûstu la stesse impagjinazion pe visualizazion su schermi e pe stampe? Controle Struments ▸ Opzions ▸ %PRODUCTNAME Calc ▸ Gjenerâl ▸ Dopre metrichis di stampe pe formatazion dal test." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer ti jude a fâ i backup: cun File ▸ Salve une copie tu creis un gnûf document continuant a lavorâ su chel origjinâl." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Cuant che tu âs creât un stîl partint di un altri, tu puedi inserî un valôr percentuâl o un pont (p.e. 110% o -2pt o +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Par copiâ un coment cence pierdi il contignût de cele di destinazion tu âs di doprâ Tache speciâl e, tal dialic, disativâ dut infûr di “Coments”. Dopre Operazions “Zonte” par no sorescrivi il contignût esistent." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Convertìs in tasse i tiei documents MS Office intal formât OpenDocument cul convertidôr di documents che tu cjatis tal menù File ▸ Proceduris vuidadis ▸ Convertidôr documents." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Cuant che tu modifichis une cele te so posizion, tu puedis fâ clic diestri e Inserìs cjamps come Date, Non dal sfuei, Titul dal document e vie indenant." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Covential spostâ une tabele di Writer? Tabele ▸ Selezione ▸ Tabele e Inserìs ▸ Curnîs ▸ Curnîs e sposte dulà che tu vûs." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Cun Struments ▸ Test automatic ▸ Test automatic ▸ Impuarte tu puedis selezionâ un document Word o un model che al conten lis vôs dal test automatic che tu desideris impuartâ." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "No sta inserî a man lis interuzions par separâ doi paragrafs. Impen cambie Indentazions e spaziadure ▸ Spaziadure ▸ Sot dal paragraf su lis proprietâts dal stîl/paragraf." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Ten i zeros iniziâi di un numar doprant la opzion di formât de cele “zeros iniziâls” opûr formate la cele come test prime di inserî il numar." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vûstu tornâ ai valôrs predefinîts dopo vê aplicât un stîl di liste? Fâs clic te sbare dai struments de formatazion su Ative/disative liste numerade o pontade." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Elimine dutis lis tôs areis di stampe intun colp sôl: selezione ducj i sfueis, daspò Formât ▸ Intervai di stampe ▸ Nete." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Zonte imagjins di fonts ai sfueis di calcul vie Inserìs ▸ Imagjin opûr strissine un fonts de Galarie, daspò Formât ▸ Juste ▸ Al fonts." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Fastidis a tacâ il test dai file PDF o des pagjinis web intai documents? Prove a tacâ tant che test no formatât (%MOD1+%MOD2+Maiusc+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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 "Lis sbaris dai struments a son contestuâls: si vierzin in base al contest. Se no si vûl chest compuartament, disativilu di Visualize ▸ Sbaris dai struments." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Creâ un document paron partint dal document Writer atuâl? File ▸ Invie ▸ Cree document paron (i sot-documents a vegnin creâts in base al scheme)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Vûstu centrâ in Calc lis celis intune pagjine stampade? Formât ▸ Pagjine, Pagjine ▸ Impostazions di disposizion ▸ Inlineament tabele." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Lis curnîs a puedin sei colegadis tra di lôr cussì che il test al pues scori di une curnîs a chê altre tant che tal desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Cree un grafic a partî di une tabele di Writer fasint clic inte tabele e sielzint Inserìs ▸ Grafic." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Selezione opzions in Struments ▸ Opzions ▸ %PRODUCTNAME Writer ▸ Jutoris di formatazion ▸ Visualize par specificâ cuâi caratars di no stampâ a àn di sei visualizâts." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Vûstu saltâ a une pagjine particolâr cul so numar? Fâs clic te vôs plui a çampe de sbare di stât o dopre Modifiche ▸ Va ae pagjine… o frache %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME al supuarte plui di 150 lenghis." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Disative Presentazion ▸ Impostazions ▸ Presentazion simpri denant se ti covente che un altri program al mostri il so barcon denant de tô presentazion." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Vûstu cjatâ intun document di Writer lis peraulis in neret? Modifiche ▸ Cjate e sostituìs ▸ Altris opzions ▸ Atribûts ▸ Spessôr dal caratar." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Tu puedis ordenâ i paragrafs o lis riis de tabele in maniere alfabetiche o numeriche cun Struments ▸ Ordene." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Par inserî un paragraf prime (dopo) di une sezion, frache %MOD2+Invie al inizi (fin) de sezion." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME al à un centri dai modei par judâti a creâ biei documents e professionâi — bute un voli." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcole i rimbors di un prestit cun Calc: par esempli RATE(2%/12;36;2500) tas di interès par periodi di paiament 2%/12, 36 mês, totâl dal prestit 2.500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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 "Vûstu mostrâ la colone platade A? Fâs clic suntune cele inte colone B, frache il boton dal mouse di çampe, sposte il mouse a çampe e mole. Dopo tu le ativis vie Formât ▸ Colonis ▸ Mostre." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Par cambiâ il numar di une pagjine in Writer, va tes proprietâts dal prin paragraf e te schede Flus di test e ative Interuzions ▸ Inserìs e scrîf il numar." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Eseguìs %PRODUCTNAME intun cualsisei navigadôr midiant rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Strani codiç di erôr in Calc, Er: cun daûr un numar? Cheste pagjine lu spieghe:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Inclût te tabele/indiç gjenerâl un paragraf che nol è un titul cambiant la Struture e numerazion intes impostazion dal paragraf a un nivel di struture." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Salvant lis tabelis dai contignûts, %PRODUCTNAME al pues creâ tabelis alfabetichis, di ilustrazions, di tabelis, di ogjets, di bibliografiis e personalizadis." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "No rivistu a modificâ o eliminâ un stîl di cele personalizât? Controle ducj i sfueis, nissun di chescj al à di sei protet." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Âstu bisugne di jemplâ une serie? Selezione l'interval des celis e Sfuei ▸ Jemple celis ▸ Jemple seriis e sielç tra Lineâr, Incressiment, Date e Jemplament automatic." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Vûstu cognossi se une cele e ven clamade in formulis di altris celis? Struments ▸ Detective ▸ Cjate fûr dipendents (Maiusc+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Intal cjamp di imission des opzions di corezion automatiche tu puedis doprâ lis matis .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Vûstu dopleâ lis riis parsore? Frache %MOD1+D o dopre Sfuei ▸ Jemple celis ▸ Jemple jù." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Par cirî in plui sfueis di calcul, selezioniju prime di tacâ la ricercje." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Strissinant e molant celis di Calc intune viodude normâl di une diapositive al cree une tabele; jenfri de visualizazion de struture, ogni cele e cree une rie inte struture." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME ti jude a no inserî doi o plui spazis in Writer. Controle Struments ▸ Corezion automatiche ▸ Opzions corezion automatiche ▸ Opzions ▸ Ignore doplis spazis." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Vûstu che il cursôr al ledi inte cele a diestre, dopo vê inserît un valôr in Calc? Dopre il tast Tab invezit di Invie." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Par mostrâ la sbare di scoriment a çampe, abilite Struments ▸ Opzions ▸ Impostazions lenghe ▸ Lenghis ▸ Test complès e segne Sfuei ▸ Di-diestre-a-çampe." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Strissine un ogjiet formatât tal barcon Stîi e formatazion. Si vierzarà un ricuadri di dialic dulà che si varà di inserî dome il non dal gnûf stîl." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Lis gnovis versions di %PRODUCTNAME a dan gnovis funzionalitâts, a comedin erôrs e a repecin falis di sigurece. Ten inzornât il program!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Stâstu disvilupant gnûfs filtris XSLT e XML?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Frache Maiusc+F1 par viodi cualsisei sugjeriment complet disponibil tai ricuadris di dialic, cuant che “Sugjeriments complets” nol è ativât in Struments ▸ Opzions ▸ %PRODUCTNAME ▸ Gjenerâl." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Jutori di %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Plui informazions" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Eseguìs cheste azion cumò..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Consei dal dì: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/fy/cui/messages.po libreoffice-7.1.3~rc2/translations/source/fy/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/fy/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/fy/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-23 11:54+0000\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frisian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563478856.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME stipet fjouwer makro befeiliging nivo's (fan leech ta hiel heech) en fertroude boarnen." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 wol fan tapassing wêze as in organisaasje foar Google Summer of COde (GSoC) sjoch:" - -#. SNTbc -#: 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 "Wisten jo dat jo notysjes oan parten fan tekst taheakje kinne? Brûk de fluchtoets %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Moatte jo ien of mear alinea's ferpleatse? Knippe en pakke is net nedich: brûk de fluchtoets %MOD1+%MOD2+pylk (omheech/omleech)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Feroarje de basis lettertypen foar de Foardefiniearre sjabloan of it aktive dokumint fia Ark ▸ Opsjes ▸ %PRODUCTNAME Writer ▸ Basis lettertypen." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Wolle jo wurden sykje dy't mear dan 10 karakters befetsje? Bewurkje ▸ Sykje en ferfange ▸ Sykje ▸ [a-z]{10,} ▸ Oare opsjes ▸ selektearje reguliere útdrukkingen." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Brûk Blêd ▸ Blêd út triem ynfoegje om in CSV triem as nij blêd yn de aktive rekkenblêd te iepenjen." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "As jo fet, skeanprinte of ûnderstreke yn Writer type, kinne jo trochgean mei de standert attributen mei allinne de fluchtoets %MOD1+Shift+X (Rjochtreekse teken opmaak wiskje)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Brûk %MOD1+%MOD2+Shift+V om de ynhâld fan it klamboerd te plakken as net opmakke tekst." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Fuotnoat uterlik oanpasse mei Ark ▸ fuot- en einnoaten…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Mei Presintaasje ▸ Oanpaste presintaasje kinne jo de dia's op 'e nij oarderje en kieze nei de need fan de sjoggers." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Wolle jo staveringshifker foar in part fan de tekst feroarje? Klik yn de taal sône fan de tastânbalke of better, pas in styl ta." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer kin in lege side ynfoegje tusken twa ûneven (even) siden. Selektearje\"Automatysk ynfoege lege siden printsje\" op de ljepper %PRODUCTNAME Writer yn it dialoochskerm Printsje" #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Jo wolle net alle kolommen printsje? Ferbergje of groepearje dyjinge dy 't jo net nedich ha." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Om in AutoPlay presintaasje te feroarjen, iepenje jo dizze en klikke jo mei de rjochter mûsknop en selektearje jo Bewurkje yn it kontekst menu." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Ha jo in presise lokaasje nedich? %MOD2+pylktoetsen ferpleatse objekten (foarmen, ôfbyldingen, formulen) mei en piksel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Ynboude help is beskikber troch op F1 te klikken, as jo it ynstallearre ha. Oars kinne jo it op de webstee besjen:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Rjochts klik yn de tastânbalke yn %PRODUCTNAME Calc en selektearje \"Seleksje telling\" om it ta selektearre sellen sjen te litten." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Wolle jo twa of mear kolommen ha foar gewoan in part fan in %PRODUCTNAME Writer side? Ynfoegje ▸ Seksje, ynstelle mei kolommen tab, en set tekst yn dy seksje." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Brûk Gegevens ▸ Statistiken foar stekproeven, beskriuwende statistiken, fariaasje analyze, korrelaasje en noch in soad yn %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Jo kinne fan it iene blêd nei it oare kopiearje sûnder it klamboerd. Selektearje it te kopiearjen gebiet, %MOD1+ klik op de ljepper fan it doelblêd en brûk Blêd ▸ Sellen folje ▸ Blêden." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Jo kinne it uterlik fan %PRODUCTNAME feroarje yn Ark ▸ Opsjes ▸ Byld ▸Brûkers ynterfaasje." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Yn %PRODUCTNAME Impress, brûk Ynfoegje ▸ Media ▸ Fotoalbum om in dia presintaasje te meitsjen fan in searje foto's mei de funksje \"Fotoalbum\" oanmeitsje." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Jo kinne formulen werjaan ynplak fan resultaten mei Byld ▸ Formule sjen litte (of Ark ▸ Opsjes ▸ %PRODUCTNAME Calc ▸ Byld ▸ Werjefte ▸Formulen)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME is ûntwikkele troch in freonlik mienskip, dy bestiet út hûnderten dy't bydragen leverje oer de hiele wrâld. Doch mei mei jo feardichheden, oars dan kodearjen." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Linkshandige? Skeakelje Ark ▸ Opsjes ▸ Taal ynstellingen ▸ Talen ▸ Aziatyske yn en finkje Ark ▸ Opsjes ▸ %PRODUCTNAME Writer ▸ Byld ▸ Werjefte ▸ Rjochts rjochte oan,wat de skowbalke links werjout." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Wolle jo dat haadstik titels altyd in side begjinne? Bewurkje Kop1 (alinea styl) ▸ Tekst ferrin ▸ Rigeleinen en skeakel ynfoegje ▸ Side ▸ Derfoar." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datum/tiid wearde is mar in tal dagen fan ôf in selektearre startdei; yn it getal stiet in hiele diel foar de datum en it fraksjoniele part foar de tiid (ferrûne part fan de dei), mei 0,5 foar de middei." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del wisket dan it rinnerke oan it ein fan de hjoeddeiske sin." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Brûk kolom of rige labels yn formulen. As jo bygelyks twa kolommen ha, 'Tiid' en 'KM', brûke jo =Tiid/KM om minuten de kilometer te krijen." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Yrritearre troch de \"marsjearjende mieren\" rûn sellen yn Calc? Drup Escape om har ophâlde te litten; de kopiearre ynhâld bliuwt beskikber foar it plakken." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Wolle jo in ambassadeur wurde fan %PRODUCTNAME? Der binne sertifiseatringen foar ûntwikkelders, behearders en trainers." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Miks portret en lânskip oriïntaasjes yn in Calc rekkenblêd troch ferskillende side opmaak stilen op blêd ta te passen." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klik op it spesjale teken ikoan yn de arkbalke om flugge tagong te krijen foar it ynfoegjen fan jo favorite en koartlyn brûkte tekens." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Selektearje \"hierargysker\" yn de sydbalke stilen om de relaasje tusken stilen te besjen." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Jo kinne stilen brûke om jo tabellen yn jo dokumint konsistint te meitsjen. Kies ien fan de foardefinearre stilen (F11) of mei Tabel ▸ AutoYndieling stilen." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Brûkme fan de %MOD1 kaai om ferwizingen te iepenjen? Ark ▸ Opsjes ▸ %PRODUCTNAME ▸ Befeiliging ▸ Opsjes ▸ '%MOD1+klik fereaske om ferwizingen te iepenjen'." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Wolle jo de berekkening fan aparte eleminten fan in formule besjen, selektearje de respektive eleminten en druk op F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Jo kinne sellen befeiligje mei Opmaak ▸ Sellen ▸ Sel befeiliging om ynfoegje, wiskjen, omneame, ferpleatse / kopiearje fan blêden foar te kommen." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Lâns in bôge skriuwe? Tekenje en line, dûbel klik, fier de tekst yn, Yndieling ▸ tekst fak en foarm ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Wolle jo allinne de heechste wearden sjen litte yn in rekkenblêd? Selektearje menu Gegevens ▸ AutoFilter, klik op de dellûk pylk en kies ‘Top10’." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Om de side nûmer te wiskjen fan jo ynhâldsopjefte gean nei Ynfoegje ▸ Ynhâldsopjefte (of rjochts klik en bewurkje de earder ynfoege yndeks). Yn de ynfier ljepper wiskje it side nûmer (#) fan de opdrachtline." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Mei de Navigator kinne koppen omheech/omleech, en de tekst ûnder de kop, yn de navigator en yn it dokumint selektearje en ferpleatse." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Om fluch in wiskundich objekt yn Writer te setten, fiere jo jo formule yn, markearje dizze en brûke jo Ynfoegje ▸ Objekt ▸ Formule om de tekst om te setten." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Mei %PRODUCTNAME it is hiel ienfâldich om in nije biblioteek te ynstallearjen: se wurde as tafoeging krigen." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME hat in draachbere ferzje as jo draachber wêze wolle. Sels sûnder behearsrjochten op jo kompjûter kinne jo %PRODUCTNAME draachber op jo fêste skiif ynstallearjen." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Mei Writer kinne jo fuotnoaten per side, haadstik of dokumint nûmerje: Ark ▸ Fuot- en einnoaten, Ljepper Fuotnoat ▸ Telling." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Jo Writer dokumint is net op 'e nij iepene mei de test rinnerke op itselde plak as it bewarre is? Foarnamme en namme taheakje yn Ark ▸ Opsjes ▸ %PRODUCTNAME ▸ Brûkers gegevens ▸Earste/Lêste namme moat ynfolle wurde." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Sitaat behear? Brûk in tafoegingen fan tredden." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Wolle jo yn meardere blêden op it selde plak in wearde ynfoegje? Selektearje de blêden: hâld %MOD1 toets yndrukt en klik op har ljeppers foardat jo se ynfiere." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Wolle jo wat tekst ferbergje yn in dokumint? Selektearje de tekst. Ynfoegje ▸ Seksje, en selektearje \"Ferbergje\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Jo kinne de middelste mûs knop oanpasse mei Ark ▸ Opsjes ▸ %PRODUCTNAME ▸ Byld ▸ Middelste mûsknop." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Wolle jo twa steande siden printsje yn in lizzende (Ferlytset fan a4 nei a5)? Triem ▸ Printsje en selektearje 2 by ‘Siden it blêd’." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Foar flugge tagong ta jo blêdwizers yn it dokumint,rjochts klik op de side nûmer yn de tastânbalke (legere linker hoeke fan it dokumint finster)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Selektearje in objekt op de eftergrûn fan it dokumint mei de Seleksje ark yn de teken arkbalke om de te selektearjende objekt te markearjen." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Teksten dy't jo faaks brûke as AutoTekst oantsjutte. Jo kinne se ynfoegje op namme, fluchkeppeling of arkbalke yn elk Writer dokumint." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Muzyk yn in diafoarstelling ôfspylje, troch it lûd ta te wizen oan de earste dia oergong sûnder op de knop \"Tapasse op alle dia's\" te klikken." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 berekkenet net fan links nei rjochts,mar respektearret de folchoarder Heakjes - Eksponinten - Fermannichfâldigje - Diele - Optelle - Oflûke." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Krij %PRODUCTNAME dokumintaasje en fergees hantliedingen by:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Wolle jo alle <> yn ien kear wiskje en alle tekst der binnen hâlde? Bewurkje ▸ Sykje en Ferfange: Sykje = [<>], Ferfang = leech en selektearje \"Algemiene útdrukkingen\" by Oare opsjes." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Moatte jo in rapport yntsjinje dat skreaun is mei Writer? Triem ▸ Ferstjoere ▸ Oersicht nei Presintaasje makket automatysk in diafoarstelling fan it oersicht." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Wolle jo de presintaasje fan ferwizingen yn in rekkenblêd beheare? Set se dan mei de FERWIZING funksje." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Set karfakje Ark ▸ Opsjes ▸ %PRODUCTNAME Calc ▸ Byld ▸ ynzoomen: \"Syngronisearje rekkenblêden\" út, sadat elk blêd yn Calc in eigen zoom nivo hat." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Jo kinne in kleur foar elke ljepper ynstelle: rjochts klik op de ljepper of brûk Blêd ▸ Ljepper kleur." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Folgje sellen dy't brûkt wurde yn in formule, foargongers (Shift+F9) of ôfhinklikens (Shift+F5) (of brûk Ark ▸ Detektive). By elke hit gean jo ien stap fierder yn de keten." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Foegje jo formulen yn en nûmerje se yn ien stap: typ fn en dan F3. In AutoTekst wurdt ynfoege mei formule en nûmer rjochte yn in tabel." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Jo kinne in yllustraasje yndeks meitsje fan objekt nammen, net allinne fan byskriften." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Brûk jo Android of iPhone om jo Impress presintaasje op ôfstân te betsjinjen." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Wolle jo witte hoefolle dagen der yn de aktive moanne sitte? Brûk de DAGENYNMOANNE(HJOED()) funksje." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Jo nûmers wurde werjûn as ### yn jo rekkenblêd? De kolom is te smel om alle sifers sjen te litten." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Skeakelje grute parallelle berekkeningen fan formule sellen yn fia Ark ▸ Opsjes ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Brûk it helpmiddel Ferbining op de Arkbalke Tekenje yn Draw/Impress om moaie stream diagrammen te meitsjen en as opsje it objekt yn Writer te kopiearjen/plakke." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Jo donaasjes stypje ús wrâldwide mienskip." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Wolle jo X moannen oan in datum taheakje? Brûk =SELDE.DEI(datum;moannen)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "As jo in neistlizzend sellen berik mei gegevens selektearje wolle dat wurdt beheind troch in lege rige en kolommen, brûke jo %MOD1+* (numeryk toetseboerd)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Jo akseptaasje patroan foar de datum is net geskikt? Ark ▸ Opsjes ▸ Taal ynstellingen ▸ Talen ▸ Datum oanfaardingspatroanen meitsje it mooglik om it patroan te feroarjen." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Wolle jo formulen eksportearje nei CSV? Triem ▸ Bewarje as ▸ Triem type: Tekst CSV, Selektearje \"Filter ynstellingen bewurkje\" en set \"De formulen fan in sel bewarje\" ynplak fan útrekkende wearde oan yn it folgjende dialoochskerm." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Presintaasje console is in geweldige funksje by it presintearjen mei %PRODUCTNAME Impress. Ha jo it al sjoen?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Om meardere oantekens te wiskjen, selektearje jo sellen mei notysjes en brûke jo Blêd ▸ sel oantekens ▸ Oantekening wiskje." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Dokuminten ienfâldich nei PDF oersette, mei ien klik troch op it PDF ikoan op de arkbalke te klikken." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Wolle jo in grut tal sellen selektearje sûnder te skowen? Fier it berik referinsje (bgl A1:A1000) yn it fak Namme en druk dernei op Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Wolle jo de jildige parameters fan de opdrachtrigel witte? Start soffice mei --help of -h of -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Pas jo wurkblêd of print berikken oan op in side mei Yndieling ▸ Side ▸ Blêd ▸ Skaal modus." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Jo ha in net nûmere item yn in list nedich? Brûk \"Item sûnder nûmer ynfoegje\" op de arkbalke nûmering en opsommingstekens." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Jo kinne de tabel oriïntaasje fan sellen rotearje nei Tabel ▸ Eigenskippen..., ljepper Tekst ferrin ▸ Tekst oriïntaasje." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Sleep yn %PRODUCTNAME Draw, om in 0 punt fan de linialen oan te passen, de krusing fan de twa linialen yn de linkerboppehoek nei de wurkromte." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Ferpleats in kolom yn Calc tusken twa oaren yn ien stap? Klik op de kop en dan op in sel yn de kolom en sleep, mei de %MOD2 toets yndrukt, de kolom nei it doel." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automatyske alfabetyske yndeks ynfier markearje mei help fan in konkordânsje triem." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Brûk Yndieling ▸ Rjochtsje (of it kontekst menu) foar in presise posisjonearre fan objekten yn Draw/Impress: it sintrearret op de side as in objekt selektearre is of wurket op de groep." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Brûk gjin ljeppers om items yn in Writer dokumint te setten. Ofhinklik fan wat jo besykje te dwaan, kin in rânleaze tabel in bettere kar wêze." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Jo hoege net troch de list te skowen by Ark ▸ Oanpasse, ljepper Toetseboerd om in fluchtoets te sykjen: Fier dizze gewoan yn." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME kin automatysk in nûmere byskrift taheakje as jo objekten ynfoegje. Sjoch Ark ▸ Opsjes ▸ %PRODUCTNAME Writer ▸ Automatysk byskrift." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Mei %PRODUCTNAME kinne jo jo Google Mail akkount brûke om in standertbrief ta te passen. Folje Ark ▸ Opsjes ▸ %PRODUCTNAME Writer ▸ Standertbrief e-post yn." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Hâld kolom koppen fan in blêd sichtber wannear jo linen skowe mei Byld ▸ Sellen fêstsette ▸ Earste rige fêstsette." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Jo wolle úteinsette mei wurkjen mei Basis makro's? Besjoch de foarbylden ûnder Ark ▸ Makro's ▸ Makro's bewurkje." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Pas alinea opmaak stilen foar koppen yn Writer ta mei fluchtoetsen: %MOD1+1 past Kop 1 ta, %MOD1+2 past Kop 2 ta, ensfh." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Reitsje net ferdwaald yn grutte dokuminten. Brûk de Navigator (F5) om jo wei nei de ynhâld te finen." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Mei Sykje en ferfange kinne jo spesjale tekens rjochtstreekst ynfoegje: klik mei rjochts yn it sykfjild of druk op Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Oanpaste ynhâld nedich foar meta gegevens eigenskippen? Triem ▸ Eigenskippen ▸ ljepper Oanpaste eigenskippen kinne jo oanmeitsje wat jo wolle." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Wolle jo in objekt yn Draw sjen, mar net printsje? Tekenje it op in laach wêrfoar de flagge \"Te printsjen\" net ynsteld is (rjochts klikke op de ljepper en kies \"Laach oanpasse\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Foar it ynfoegjen fan de hjoeddeiske datum, brûk Ynfoegje ▸ Fjild ▸ Datum." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Ha jo in soad ôfbyldingen yn jo Writer dokumint? Meitsje de werjefte dan flugger mei Byld ▸ Ofbyldingen en diagrammen útskeakelje" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Brûk Blêd ▸ Sellen folje ▸ Samar in nûmer, om in rige te generearjen fan samar wat nûmers basearre op ferskate distribúsjes." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Jo dia's yn Impress omneame om te helpen de \"Gean nei side\" ynteraksjes fêst te stellen en in gearfetting te krijen dy better is dan Dia1, Dia2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Mei it doaloochskerm Haadstik nûmering kinne jo ynstelle dat de tekst foar it haadstik nûmer komme moat. As foarbyld \"Haadstik\" om \"Haadstik 1\" wer te jaan." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "In tabel yn Writer transponearje? Kopiearje yn Calc, Transponearje mei kopiearje/plakke spesjaal dan kopiearje/plakke spesjaal ▸ Net opmakke tekst yn Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Om mei ‘Fertikale tekst’ te wurkjen yn de Tekenje arkbalke, sette jo yn Ark ▸ Opsjes ▸ Taal ynstellingen ▸ Talen ▸ Standert talen foar dokuminten oan (en meitsje dizze knop sichtber mei rjochts klik)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Om fluch yn te zoomen op berik seleksje, klikke jo mei rjochts op it zoom persintaazje fan de tastânballke en kieze jo Optimale werjefte." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Jo kinne de besteande PDF triemmen ûndertekenje en ek dy ûndertekeningen neigean." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Faak in dokumint fan in oare meitsje? Tink der oer nei om sjabloanen te brûken." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Brûk Styl ▸ Opmaak mei betingst ▸ Behear yn Calc om te efterheljen hokker sellen oantsjut binne as opmaak mei betingst." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Ark ▸ Detective ▸ Unjildige gegevens markearje, markearret alle sellen yn it blêd dy de wearden befetsje dy bûten de jildigens regels falle." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Brûk it ynsluten fan lettertypen foar bettere ynteroperabiliteit mei oare kantoar pakketten fia Triem ▸ Eigenskippen ▸ Lettertype." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Om in formule om te setten yn statyske wearden is plakke en kopiearje is net nedich; Brûk Gegevens ▸ Berekkenje ▸ Formule nei wearde." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Jo kinne alle oantekens yn in dokumint op 'e nij opmeitsje troch op de pylk omleech yn in oantekening te klikken en \"Alle oantekeningen opmeitsje\" te selektearjen." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Wolle jo deselde yndieling foar it werjaan op it skerm as it printsjen? Selektearje Ark ▸ Opsjes ▸ %PRODUCTNAME Calc ▸ Algemien ▸ Printer ôfmjittingen foar tekst yndieling brûke." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer helpt jo by it meitsjen fan reservekopyen: Mei Triem ▸ Kopy bewarje meitsje jo in nij dokumint oan en bliuwe jo wurkje yn it orizjineel." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "As jo in styl oanmeitsje op basis fan in oar, kinne jo in prosintuele wearde of in punt wearde ynfiere (bgl: 110% of -2pt of +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Om in taljochting te kopiearjen sûnder de ynhâld fan de doel sel te ferliezen, moatte jo Plakke spesjaal brûke en alles útsette, útsein \"Taljochtingen\" yn it dialoochskerm. Brûk bewurkingen 'Optelle' om in besteande ynhâld net te oerskriuwen." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Batch konvertearje jo Ms Office dokuminten nei OpenDocument yndieling mei it omsetprogramma yn menu Triem ▸ Assistinten ▸ Omsetprogramma foar dokuminten" #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "As jo in sel op syn plak bewurkje, kinne jo der op klikke en kieze foar fjilden ynfoegje: Datum, Blêd namme, Dokumint titel, ensfh." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Moatte jo in Writer tabel ferpleatse? Tabel ▸ Selektearje ▸ Tabel en ynfoegje ▸ Ramt ▸ Ramt en ferpleats in wêr't jo wolle." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Mei Ark ▸ AutoTekst ▸ AutoTekst ▸ ymportearje kinne jo in Word dokumint of in sjabloan selektearje mei de AutoTekst ynfier dy't jo ymportearje wolle." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Foegje gjin hânmjittige ein yn om twa alinea's fan inoar te skieden. Feroarje ynplak dêrfan Ynspring en ôfstannen ▸ Ofstan ▸ Under alinea, by de eigenskippen fan it styl / de alinea." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Hâld de nullen foar in getal troch de opmaak opsje \"Foarrin nullen\" te brûken of troch de sel as tekst te meitsjen foar it ynfieren fan it getal." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Wolle jo werom gean nei de standert ynstelling neidat jo in list styl tapast ha? Klik op de list mei opsommingstekens of nûmere list wikselje om de arkbalke Yndieling." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Wiskje al jo print gebieten yn ien kear: selektearje alle blêden, en dan Yndieling ▸ Print berikken ▸ Wiskje." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Eftergrûn ôfbyldingen taheakje oan rekkenblêden mei Ynfoegje ▸ Ofbylding of sleep in eftergrûn fanút de galerij en dan Yndieling ▸ Skikke ▸ Nei eftergrûn." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Ha jo swierrigens mei it plakken fan tekst fan PDF triemmen of websteeën yn dokuminten? Besykje te plakken as platte tekst (%MOD1+%MOD2+shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Brûk yn Calc TRIMMEAN() om in trochsneed fan in gegevens set werom te jaan mei útsûndering fan de heechste en leechste wearden." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "De 4de opsjonele parameter fan de funksje FERT.SYKJE fan Calc jout oan of de earste kolom mei gegevens sortearre is. As dat sa is, fiere jo UNWIER of nul yn." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Arkbalken binne kontekstueel—se iepenje ôfhinklik fan de ynhâld. As jo dat net wolle, set se út yn Byld ▸ Arkbalken." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "In haad dokumint fan it aktive Writer dokumint oanmeitsje? Triem ▸ Stjoere ▸ Haad dokumint oanmeitsje (sub dokuminten wurde makke ôfhinklik fan it oersicht)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Wolle jo sellen sintraal rjochtsje op in printe side yn Calc? Yndieling ▸ Side, ljepper Side ▸ yndielingsynstellingen ▸ Tabel rjochtings." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Ramten kinne keppele wurde, sadat de tekst fan de iene nei de iene floeie kin, lykas by desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Meitsje in diagram op basis fan in Writer tabel troch yn de tabel te klikken en ynfoegje ▸ Diagram te kiezen." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Selektearje opsjes yn Ark ▸ Opsjes ▸ %PRODUCTNAME Writer ▸ Opmaak helpmiddels ▸ Opmaak werjaan, om op te jaan hokker net te printsjen tekens werjûn wurde." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Wolle jo nei in beskaat side nûmer springe? Klik op de meast linkse ynfier op de tastânbalke of brûk Bewurkje ▸ Gean nei side... of druk op CTRL+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME stipet mear as 150 talen." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Set finkje by Presintaasje ▸ Presintaasje ynstellingen ▸ Presintaasje stees op 'e foargrûn út, as jo in oar programma nedich ha dy't it finster oer jo presintaasje set." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Wolle jo de fette wurden yn in Writer dokumint sykje? Bewurkje ▸ Sykje en ferfange ▸ Oare opsjes ▸ Attributen ▸ Teken tsjokte." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Jo kinne alinea's of tabel rigen alfabetysk of numeryk sortearje mei Ark ▸ Sortearje." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Om in alinea foar (nei) in seksje yn te foegjen, druk %MOD2+Enter oan it begjin (ein) fan de seksje." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME hat in sjabloan sintrum om moai eagjende dokuminten te meitsje - besykje it ris." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Berekken mei Calc werombetellingen fan liningen: Bygl. PMT(2%/12;36;2500) rinte persintaazje de betellings perioade 2%/12, 36 moanne, it liende bedrach 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Kin net fine wat jo wolle mei de VLOOKUP funksje yn Calc? Mei INDEX en MATCH kinne jo alles dwaan!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Wolle jo de ferburgen kolom A sjen litte? Klik op de sel yn kolom B, druk op de linker mûs knop, beweech de mûs nei links, lit los. Meitsje de kolom dan sichtber mei Yndieling ▸ Kolommen ▸ Sjen litte." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Om it nûmer fan in side yn Writer feroarje wolle, gean jo nei de eigenskippen fan de earste alinea en selektearje jo, op de ljepper Tekst ferrin, it karfakje Ynfoegje ûnder rigeleinen oan en fiere jo it nûmer yn." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME útfiere yn elke sneuper fia rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Frjemde flater koade yn Calc, FlaterL folge troch in sifer? Dizze side jout mear ynformaasje:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Foegje in alinea ta dy gjin titel is yn de ynhâldsopjefte troch Oersicht en Nûmering yn de alinea ynstellingen te feroarjen nei in oersicht nivo." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Neist de ynhâldsopjefte kin %PRODUCTNAME ek alfabetysk, yllustraasje, tabellen, objekten, bibliografy en troch brûkers sels yndeksen meitsje." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Kinne jo in oanpaste sel syl profyl net feroarje of wiskje? Kontrolearje alle blêden, der mei net ien befeilige wêze." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Moatte jo in searje ynfolje? Selektearje it selberik en Blêd ▸ Sellen folje ▸ Searjes folje en kies tusken lineêr, Ekspotinsjeels, Datum en Autofolje." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Wolle jo witte of in sel ferwiist wurd yn formulen fan oare sellen? Ark ▸ Detektive▸ Ofhinklikens opspoare (Shift_F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Yn it fjild ferfangen fan AutoKorreksje kinne jo de jokertekens brûke. *" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Wolle jo de boppensteande regel duplisearje? Druk op %MOD1+D of brûk Blêd ▸ Sellen folje ▸ Omleech." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Om yn ferskate rekkenblêden te sykjen, selektearje jo dissen foardat jo úteinsetten mei sykjen." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "It slepen fan sellen fan Calc nei in normale werjefte fan in dia makket in tabel, yn de oersicht werjefte makket elke sel in regel yn it oersicht." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME helpt jo om gjin twa of mear spaasjes yn te fieren yn Writer. Skeakelje Ark▸ AutoKorreksje ▸ Opsjes foar AutoKorreksje ▸ Opsjes ▸ Dûbele spaasjes negearje yn." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Wolle jo dat it rinnerke nei de sel rjochts giet, neidat jo in wearde yn Calc ynfierd ha? Brûk de Tab toets ynplak fan Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Om de skowbalke links wer te jaan, Skeakelje jo Ark ▸ Opsjes ▸ Taal ynstellingen ▸ Talen ▸ Komplekse tekst yndieling yn en selektearje jo Blêd ▸ Fan rjochts nei links." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Sleep in opmakke objekt nei it stilen en opmaak paniel fan de sydbalke. Der wurd in dialooch finster makke, fier de namme fan it nije opmaak profyl yn." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nije ferzjes fan %PRODUCTNAME ferskaft nije funksjes, brek reparaasjes en befeiliging fernijingen. Hâld jo software bywurke!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Nije XSLT en XML filters ûntwikkelje?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Druk op Shift+F1 om de beskikbere útwreide arktippen yn dialoochskermen te sjen, as \"Utwreide tips\" net ynskeakele is yn Ark ▸ Opsjes ▸ %PRODUCTNAME ▸ Algemien" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Help foar %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Mear ynformaasje" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Dizze aksje no útfiere..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tip dan de dei: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/ga/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ga/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ga/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ga/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-08-15 22:35+0000\n" "Last-Translator: Seanán Ó Coistín \n" "Language-Team: Irish \n" @@ -2457,1071 +2457,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/gd/cui/messages.po libreoffice-7.1.3~rc2/translations/source/gd/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/gd/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gd/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2019-08-21 12:42+0000\n" "Last-Translator: Michael Bauer \n" "Language-Team: LANGUAGE \n" @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Socraich rudan a sgrìobhas tu gu tric mar theacsa fèin-obrachail. ’S urrainn dhut an uairsin a chur a-steach le ainm, ath-ghoirid no on bhàr-inneal ann an sgrìobhainn Writer sam bith." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "’S urrainn dhut clàr-amais dhealbhan a chruthachadh de ainmean oibseactan cuideachd, chan e dìreach caipseanan." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "A bharrachd air clàr-innse, ’s urrainn dha %PRODUCTNAME diofar clàran-amais a chruthachadh a bhios stèidhichte air dealbhan, clàran, oibseactan, clàr leabhraichean, òrdugh na h-aibideil no deifinisean a’ chleachdaiche." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/cui/messages.po libreoffice-7.1.3~rc2/translations/source/gl/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/gl/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-10 07:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562229287.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "O %PRODUCTNAME admite 4 niveis de seguranza para as macros (desde baixo a moi alto) e fontes de confianza" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "O %PRODUCTNAME pretende participar como organización no Google Summer of Code (GSoC); vexa:" - -#. SNTbc -#: 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 "Sabía que pode anexar comentarios a fragmentos de texto? Simplmente emprege o atallo %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Precisa move un ou máis parágrafos? Non precisa cortar e pegar: Empregue o atallo de teclado %MOD1+%MOD2+Frecha (Arriba/Abaixo)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Cambie os tipos de letra básicos do modelo predefinido ou do documento actual con Ferramentas ▸ Opcións ▸ Writer do %PRODUCTNAME ▸ Fontes básicas." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Desexa atopar palabras que conteñan máis de 10 caracteres? Editar ▸ Atopar e substituír ▸ Buscar ▸ [a-z]{10,} ▸ Outras opcións ▸ marque Expresións regulares" #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Abra un ficheiro CSV como folla nova na folla de cálculo actual mediante Folla ▸ Folla dun ficheiro." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Ao escribir en grosa, cursiva ou subliñado no Writer pode continuar cos atributos predeterminados con só o atallo %MOD1+Shift+X (retirar fomatos directos de carácter)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Empregue %MOD1+%MOD2+Maiús+V para pegar o contido do portapapeis como texto sen formatar." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalice a aparencia das notas a rodapé con Ferramentas ▸ Notas a rodapé e notas finais…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Con Presentación de diapositivas ▸ Presentación de diapositivas personalizada pode reordenar e escoller diapositivas que se axeiten ás necesidades do público." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Desexa cambiar a comprobación ortográfica dunha parte do texto? Prema na zona de idioma na barra de tarefas ou, mellor, aplique un estilo." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "O Writer pode inserir unha páxina en branco entre dúas páxinas impares (pares) seguintes. Marque «Imprimir as páxinas en branco inseridas automaticamente» na lapela Writer do %PRODUCTNAME da caixa de diálogo de impresión." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Non desexa imprimir todas as columnas? Agoche ou agrupe as que non precise." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Para modificar a presentación automática, ábraa e, cando se inicie, prema co botón dereito do rato e seleccione Editar no menú de contexto." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Colocación de algo con precisión? %MOD2+teclas de frecha moven os obxectos (formas, imaxes, fórmulas) un píxel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "A axuda incorporada está dispoñíbel ao premer F1, se estiver instalada. Se non, consúltea na rede en:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Prema na barra de estado co botón dereito do rato no Calc do %PRODUCTNAME e seleccione «Conta da selección» para mostrar o número de celas seleccionadas." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Desexa ter dúas ou máis columnas só nunha parte dunha páxina do Writer do %PRODUCTNAME? Inserir ▸ Section, lapela Columnas e coloque texto nesa sección." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Empregue Datos ▸ Estatísticas para mostraxe, estatísticas descritivas, análises de varianza, correlación e moito máis no Calc do %PRODUCTNAME." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Pode copiar dunha folla a outra sen o portapapeis. Seleccione a zona que desexa copiar, prema a lapela da folla de destino mantendo %MOD1 premido e empregue Folla ▸ Encher celas ▸ Encher celas." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Pode cambiar a aparencia do %PRODUCTNAME mediante Ferramentas ▸ Opcións ▸ Ver ▸ Interface de usuario." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "No Impress do %PRODUCTNAME, empregue Inserir ▸ Media ▸ Álbum de fotos para crear unha presentación de diapositivas a partir dunha serie de imaxes coa funcionalidade «Álbum de fotos»." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Pode mostrar fórmulas no canto de resultados con Ver ▸ Mostrar fórmula (ou Ferramentas ▸ Opcións ▸ Calc do %PRODUCTNAME ▸ Ver ▸ Mostrar ▸ Fórmulas)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "O %PRODUCTNAME está a ser desenvolvido por unha comunidade agradábel composta por centos de voluntarios de todo o mundo. Faga parte desta comunidade cos seus coñecementos de programación." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "É manicho ou manicha? Active Ferramentas ▸ Opcións ▸ Configuración dos idiomas ▸ Idiomas ▸ Asiáticos e marque Ferramentas ▸ Opcións ▸ Writer do %PRODUCTNAME ▸ Ver ▸ Regra ▸ Aliñada á dereita, co que a barra de desprazamento se mostra á esquerda." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Desexa que os títulos de capítulo comecen sempre nunha páxina nova? Edite o estilo de parágrafo Título1 ▸ Fluxo de texto ▸ Quebras e marque Inserir ▸ Páxina ▸ Antes." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Os valores de data e hora son tan só un número de días a partir dun día cero escollido; no número, a parte enteira representa a data e a parte fraccionaria é a hora (parte decorrida do día), sendo 0,5 o mediodía." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." -msgstr "Maiús+%MOD1+Supr elimina desde o cursor até ao fin da sentencia actual." +msgstr "Maiús+%MOD1+Supr elimina desde o cursor até o fin da sentencia actual." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Empregue as etiquetas de columna ou fila nas fórmulas. Se, por exemplo, tiver dúas columnas, «Tempo» e «KM», empregue =Tempo/KM para obter os quilómetros por minuto." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Amolan esas «formiguiñas en marcha» arredor das celas do Calc? Prema Esc para detelas; o contido copiado continúa dispoñíbel para pegar." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Desexa exercer de Embaixador/a do %PRODUCTNAME? Existen certificacións para desenvolvedores, administradores e docentes." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Mesture orientacións verticais e horizontais nunha folla de cálculo do Calc aplicando estilos de páxina diferentes ás follas." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Prema na icona de caracteres especiais da barra de ferramentas para ter acceso rápido aos caracters favoritos e recentes que inserir." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Escolla «Vista xerárquica» na barra lateral Estilos para ver a relación entre estilos." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Pode empregar estilos para conseguir que as táboas do documento teñan consistencia. Escolla un dos estilos predefinidos (F11) ou mediante Táboa ▸ Formato automático." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Configurar o uso da tecla %MOD1 para abrir hiperligazóns? Ferramentas > Opcións > %PRODUCTNAME > Seguranza > Opcións > «%MOD1+clic para abrir as hiperligazóns»." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Desexaría ver o cálculo de elementos individuais dunha fórmula? Seleccione os elementos respectivos e prema F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Pode protexer celas mediante ▸ Formato ▸ Celas ▸ Protección. Para evitar inserir, eliminar, renomear, mover/copiar follas, empregue Ferramentas ▸ Protexer folla." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Escribir seguindo unha curva? Debuxe a liña, prema dúas veces nela, escriba o texto e vaia a Formato ▸ Caixa de texto e formato ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Desexa mostrar só os valores maiores dunha folla de cálculo? Seleccione o menú Datos ▸ Filtro automático, prema na frecha despregábel e escolla «10 maiores»." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Para retirar o número de páxina dun índice vaia a Inserir ▸ Índice (ou prema co botón dereito e Editar o índice inserido anteriormente). Na lapela Entradas elimine o número de páxina (#) da liña Estrutura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Co Navegador pode seleccionar e subir ou baixar títulos e o texto por baixo dos títulos, no Navegador e no documento." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Para obter un obxecto do Math rapidamente no Writer, escriba a fórmula, márquea e empregue Inserir ▸ Obxecto ▸ Fórmula para converter o texto." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Co %PRODUCTNAME é moi doado instalar dicionarios novos: están dispoñíbeis como extensións." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "O %PRODUCTNAME ten unha versión portátil que permite a mobilidade. Mesmo sen dereitos de administración nun computador pódese instalar o %PRODUCTNAME Portable no disco duro." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "O Writer permite numerar as notas a rodapé por páxina, capítulo ou documento: Ferramentas ▸ Notas a rodapé e notas finais ▸ lapela Notas a rodapé ▸ Conta." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Un documento do Writer non se abre co cursor na mesma posición de edición que cando se gardou? Engada o Nome ou Apelidos en Ferramentas ▸ Opcións ▸ %PRODUCTNAME ▸ Datos de usuario ▸ Nome/Apelidos." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Xestión de citas? Empregue unha extensión de terceiros." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Desexa inserir un valor no mesmo lugar de varias follas? Seleccione as follas, manteña premida a tecla %MOD1 e prema as lapelas antes de o introducir." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Desexa agochar texto dun documento? Seleccioen o texto. Inserir ▸ Sección e seleccione «Agochar»." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Pode personalizar o botón central do rato mediante Ferramentas ▸ Opcións ▸ %PRODUCTNAME ▸ Ver ▸ Botón central do rato." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Desexa imprimir dúas páxinas en vertical nunha apaisada (reducir de A4 a A5)? Ficheiro ▸ Imprimir e seleccione 2 en «Páxinas por folla»." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Para un acceso rápido aos marcadores do documento prema co botón dereito no número de páxina da barra de estado (recanto inferior esquerdo da xanela do documento)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Seleccione un obxecto do fondo do documento mediante a ferramenta Seleccionar da barra de ferramentas Debuxo para arrodear o obxecto e seleccióneo." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Inclúa textos que use con frecuencia como textos automáticos. Poderáos inserir chamándoos cun nome, atallo ou barra de ferramentas desde calquera documento do Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Reproduza música durante unha presentación de diapositivas asignándolle o son á primeira transición de diapositivas sen premer no botón «Aplicar a todas as diapositivas»." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "O Calc o %PRODUCTNAME non calcula da esquerda para a dereita, senón que respecta a orde Parénteses - Expoñentes - Multiplicación - División - Suma - Subtracción." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Obteña documentación sobre o %PRODUCTNAME e guías de usuario gratuítas en:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Desexa eliminar todos os <> de vez e manter o texto do interior? Editar ▸ Atopar e substituír: Buscar = [<>], Substituír= en branco e marque «Expresións regulares» en Outras Opcións." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Precisa presentar un informe escrito co Writer? Ficheiro ▸ Enviar ▸ Esquema para presentación crea automaticamente unha presentación de diapositivas a partir do esquema." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Desexa xestionar a presentación das hiperligazóns dunha folla de cálculo? Insíraas coa función HIPERLIGAZÓN." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Desmarque Ferramentas ▸ Opcións ▸ Calc do %PRODUCTNAME ▸ Ver ▸ Ampliación: «Sincronizar follas» para que cada folla do Calc teña o seu propio factor de ampliación." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Pode indicar unha cor para cada lapela: prema na lapela co botón dereito do rato ou empregue Folla ▸ Cor da lapela da folla." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Rastrexe as celas que se usan nunha fórmula, precedentes (Maiús+F9) ou dependentes (Maiús+F5) (ou empregue Ferramentas ▸ Detective. Con cada acerto séguese un paso máis na cadea." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Insira e numere as súas fórmulas nun paso: escriba fn seguido de F3. Insírese un texto automático cunha fórmula e número aliñados nunha táboa." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Pode crear un índice de ilustracións a partir dos nomes dos obxectos, non só das lendas." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Use o seu Android ou iPhone para controlar remotamente unha presentación do Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Desexa saber cantos días hai no mes actual? Empregue a función DÍASPORMES(HOXE())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Os números aparecen como ### na folla de cálculo? A columna é estreita de máis para mostrar todos os díxitos." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Active cálculos paralelos masivos de celas de fórmulas mediante Ferramentas ▸ Opcións ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Empregue a ferramenta Conector da barra de ferramentas Debuxo do Draw/Impress para crear diagramas de fluxo atractivos e opcionalmente copiar/pegar o obxecto no Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "As súas doazóns axudan a nosa comunidade internacional." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Desexa engadirlle x meses a unha data? Use = DATAM(data;meses)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Para seleccionar un intervalo de celas contiguas que conteñan datos e estean limitadas por filas e columnas baleiras, empregue %MOD1+* (no teclado numérico)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "O seu patrón de aceptación de datas non é o axeitado? Empregue Ferramentas ▸ Opcións ▸ Configuración dos idiomas ▸ Idioma ▸ Patróns de aceptación de datas e aí pode axustar o patrón desexado." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Desexa exportar fórmulas a un ficheiro CSV? Ficheiro ▸ Gardar como ▸ Tipo:Texto en CSV, marque «Editar configuración do filtro» e marque «Gardar as fórmulas das celas» na caixa de diálogo que segue." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "A consola de presentación é unha gran funcionalidade cando se traballa co Impress do %PRODUCTNAME. Xa a probou?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Para eliminar varios comentarios seleccione as celas con comentarios e empregue Folla > Comentarios de cela > Eliminar comentario." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Converta os documentos facilmente a PDF cun clic premendo na icona de PDF da barra de tarefas." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Desexa seleccionar un intervalo de celas grande sen desprazarse? Escriba a referencia do intervalo (p.ex. A1:A1000) na caixa de nomes e prema Intro." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Desexa coñecer os parámetros válidos para a liña de ordes? Inicie o soffice con --help ou -h ou -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Axuste as follas ou intervalos de impresión a unha páxina mediante Formato ▸ Páxina ▸ lapela Folla ▸ Modo de escala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Precisa dun elemento sen numeración nunha lista? Empregue «Inserir entrada sen numerar» na barra de ferramentas Viñetas e numeración." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Pode xirar a orientación das celas dunha táboa mediante Táboa ▸ Propiedades... ▸ Fluxo do texto ▸ Orientación do texto." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "No Draw do %PRODUCTNAME, para cambiar a orixe das regras (punto 0;0), arrastre a inserción das dúas regras da esquina superior esquerda para a área de traballo." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Mover unha columna do Calc entre outras dúas nun só paso? Prema na cabeceira e despois nunha cela da columna, manteña premido o botón do rato e mova para o destino coa tecla %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Marque automaticamente as entradas do índice alfabético empregando un ficheiro de concordancias." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Empregue Formato ▸ Aliñar (ou o menú de contexto) para a colocación precisa de obxectos en Draw/Impress: centra na páxina se se selecciona un obxecto ou funciona sobre o grupo respectivamente." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Non empregue tabuladores para separar elementos nun documento do Writer. Dependendo do que pretenda facer pode que unha táboa sen bordos sexa unha escolla mellor." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Non é preciso desprazar toda a lista que hai en Ferramentas ▸ Personalizar ▸ Teclado para atopar un teclado: abonda con escribilo." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "O %PRODUCTNAME pode engadir automaticamente unha lenda numerada ao inserir obxectos. Vexa Ferramentas ▸ Opcións ▸ Writer do %PRODUCTNAME ▸ Lendas automáticas." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Co %PRODUCTNAME pode empregar a súa conta do Google Mail para realizar unha combinación de correspondencia. Encha os datos en Ferramentas ▸ Opcións ▸ Writer do %PRODUCTNAME ▸ Combinación de correspondencia" #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Manteña visíbeis as cabeceiras dunha folla ao desprazar as liñas mediante Ver ▸ Conxelar celas ▸ Conxelar a primeira fila." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Desexa comezar a traballar con macros en Basic? Bótelle unha ollada aos modelos que hai en Ferramentas ▸ Macros ▸ Editar macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Aplique os estilos de parágrafo Título no Writer con teclas de atallo: %MOD1+1 aplica Título 1, %Mod1+2 aplica Título 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Non se perda en documentos grandes. Empregue o Navegador (F5) para se orientar no documento." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Editar ▸ Atopar e substituír permite inserir caracteres especiais directamente: prema co botón dereito nos campos de entrada ou prema Maiús+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Precisa de contido personalizado para as propiedades dos metadatos? Ficheiro ▸ Propiedades ▸ a lapela Propiedades personalizadas permite crear o que vostede desexe." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Desexa ver, mais non imprimir, un obxecto no Draw? Debúxeo nunha capa cuxa opción «Imprimíbel» estea desactivada (prema co botón dereito na lapela e «Modificar capa»)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Para inserir a data actual no documento empregue Inserir ▸ Campo ▸ Data." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Ten moitas imaxes no seu documento de Writer? Acelere a presentación desactivando Ver > Imaxes e gráficas." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Empregue Folla ▸ Axustar celas ▸ Número aleatorio para xerar unha serie aleatoria baseada en diversas distribucións." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Renomee as diapositivas do Impress para que axuden a definir as interaccións «Ir á páxina» e para ter un resumo máis explícito que Diapositiva1, Diapositiva2,…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "A caixa de diálogo de numeración de capítulos permite indicar que texto se desexa mostrar antes do número de capítulo. Escriba, por exemplo, «Capítulo» para mostrar «Capítulo 1»" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transpoñer unha táboa do Writer? Cópiea e péguea no Calc, transpóñaa con copiar/pegar especial e despois copiar/pegar especial ▸ Texto formatado no Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Para ter a ferramenta «Texto vertical» na barra de ferramentas Debuxo marque Ferramentas ▸ Opcións ▸ Configuración dos idiomas ▸ Idiomas ▸ Idiomas predeterminados ▸ Asiáticos (e torne o botón visíbel premendo co botón dereito do rato)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Para ampliar rapidamente nun intervalo seleccionado prema co botón dereito na parte de ampliación da barra de estado e escolla Vista óptima." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Pode asinar ficheiros PDF existentes e verificar esas sinaturas." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Crea documentos a partir doutros con frecuencia? Considere a posibilidade de utilizar un modelo." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Use Formato ▸ Formato condicional ▸ Xestionar en Calc para descobrir que celas contan xa con formato condicional." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Ferramentas ▸ Detective ▸ Marcar datos incorrectos realza todas as celas da folla que conteñan valores que non cumpran coas regras de validación" #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Incorpore os tipos de letra para mellorar a interoperabilidade con outras suites informáticas en Ficheiro ▸ Propiedades ▸ Tipo de letra." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Para converter unha fórmula en valores estáticos non é preciso copiar/pegar; empregue Datos ▸ Calcular ▸ Converter de fórmula a valor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Pode mudar o formato de todos os comentarios dun documento premendo na frecha para abaixo dun comentario e escollendo «Formatar todos os comentarios»." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Desexa a mesma disposición para a pantalla e a impresión? Marque Ferramentas ▸ Opcións ▸ Calc do %PRODUCTNAME ▸ Xeral ▸ Utilizar as métricas da impresora para formatar textos." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "O Writer axuda a crear copias de seguranza: con Ficheiro ▸ Gardar unha copia créase un documento novo mais continúase a traballar co orixinal." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Ao crear un estilo baseado noutro pódese introducir un valor porcentual ou en puntos (por exemplo 110% or −2pt ou +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Para copiar un comentario sen perder o contido da cela de destino empregue Pegar especial e desmarque todo agás «Comentarios» na caixa de diálogo. Empregue as operacións de «Engadir» para non substituír o contido existente." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Converta un lote de documentos do Office da Microsoft ao formato OpenDocument co asistente de conversión de documentos que hai en Ficheiros ▸ Asistentes ▸ Conversor de documentos." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Ao editar unha cela no sitio pode premer co botón dereito do rato e inserir campos: Data, nome da folla, título do documento, etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Precisa mover unha táboa do Writer? Táboa ▸ Seleccionar ▸ Táboa e Inserir ▸ Marco ▸ Marco e móvaa a onde queira." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Con Ferramentas ▸ Texto automático ▸ Texto automático ▸ Importar pode seleccionar un documento ou modelo do Word que conteña as entradas de texto automático que desexe importar." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Non insira quebras manuais para separar dous parágrafos. No canto diso, cambie Sangrados e espazamento ▸ Espazamento ▸ Baixo o parágrafo nas propiedades do estilo ou do parágrafo." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Manteña os ceros á esquerda dun número empregando a opción de formato de cela «ceros á esquerda» ou formate a cela como texto antes de introducir o número." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Desexa retornar ao predeterminado despois de aplicar un estilo de lista? Prema na ferramenta Viñetas e numeración da barra de formato." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Elimine todas as áreas de impresión nun só paso: seleccione todas as follas e, a seguir, Formato ▸ Imprimir intervalos ▸ Limpar." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Engada imaxes de fondo ás follas de cálculo mediante Inserir ▸ Imaxe ou arrastre un fondo desde a Galería e, a seguir, Formato ▸ Dispoñer ▸ No fondo." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Ten problemas ao pegar nos documentos texto de ficheiros en PDF ou de páxinas web? Tente pegar como texto sen formato (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "No Calc use MEDIARECORTADA() para obter a media dun conxunto de datos excluíndo os valores maior e menor." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "O 4º parámetro optativo da función PROCV do Calc indica se a primeira columna de datos está ordenada. De non ser así, introduza FALSO ou 0." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "As barras de ferramentas están contextualizadas—ábrense dependendo do contexto. Se non o quere así, retire esta opción en Ver ▸ Barras de ferramentas." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Desexa crear un documento principal a partir do documento actual do Writer? Ficheiro ▸ Enviar ▸ Crear documento principal (os subdocumentos créanse dependendo do esquema)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Desexa centrar as celas do Calc nunha páxina impresa? Formato ▸ Páxina, Páxina ▸ Configuración da disposición ▸ Aliñamento da táboa." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "É posíbel ligar os marcos para que que o texto flúa dun a outro tal e como se fai nos programas de maquetación." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Cree unha gráfica baseada nunha táboa do Writer premendo na táboa e escollendo Inserir ▸ Gráfica." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Seleccione opcións en Ferramentas ▸ Opcións ▸ Writer do %PRODUCTNAME ▸ Recursos de formato ▸ Mostrar formato para indicar que caracteres non imprimíbeis desexe mostrar." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Desexa ir para unha páxina en concreto polo seu número? Prema a entrada da esquerda de todo da barra de estado ou empregue Editar ▸ Ir a páxina... ou prema %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "O %PRODUCTNAME admite máis de 150 idiomas." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Desmarque Presentación de diapositivas ▸ Configuración ▸ Presentación sempre en primeiro plano se desexa que outro programa mostre a súa xanela diante da presentación." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Desexa atopar as palabras en grosa dun documento do Writer? Editar ▸ Atopar e substituír ▸ Outras opcións ▸ Atributos ▸ Grosor do tipo de letra." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Pode ordenar parágrafos ou filas de táboas alfabeticamente ou numericamente mediante Ferramentas ▸ Ordenar." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Para inserir un parágrafo antes (despois) dunha sección, prema %MOD2+Intro no comezo (final) da sección." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "O %PRODUCTNAME dispón dun centro de modelos para crear documentos con boa presentación—próbeo." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcule pagamentos de empréstimos no Calc: p.ex. PGTO(2%/12;36;2500) taxa de xuros %/12, 36 meses, empréstimo de 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Non atopa o que desexa coa función PROCV no Calc? Con ÍNDICE e CORRESP pódeo facer todo!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Desexa mostrar a columna oculta A? Prema nunha cela da columna B, prema o botón esquerdo do rato, mova o rato para a esquerda e solte. A seguir, fágaa visíbel con Formato ▸ Columnas ▸ Mostrar." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Para cambiar o número dunha páxina no Writer vaia ás propiedades do primeiro parágrafo e, na lapela Fluxo do texto, marque Quebrar ▸ Inserir e introduza o número." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Execute o %PRODUCTNAME en calquera navegador mediante rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Código de erro estraño no Calc, Err: seguido dun número? Esta páxina explícao:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Inclúa un parágrafo que non sexa un título nun índice cambiando Esquema e numeración na configuración do parágrafo a un nivel de esquema." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Alén do índice, co %PRODUCTNAME pode crear índices alfabéticos, de ilustracións, de táboas, de obxectos, biliográficos e definidos polo usuario." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Non pode modificar ou eliminar un estilo de cela personalizado? Comprobe todas as follas: ningunha debería estar protexida" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Precisa encher unha serie? Seleccione o intervalo de celas e Folla ▸ Encher celas ▸ Encher celas e escolla entre linear, crecente, data e recheo automático." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Desexa saber se se fai referencia a unha célula nas fórmulas doutras celas? Ferramentas ▸ Detective ▸ Rastrexar dependentes (Maiús+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "No campo de entrada de substitución das opcións de corrección automática pódense empregar comodíns .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Desexa duplicar a liña de arriba? Prema %MOD1+D ou empregue Folla ▸ Encher celas ▸ Encher para abaixo." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Para buscar en varias follas de cálculo, seleccióneas antes de iniciar a busca." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Arrastrando e soltando celas do Calc na vista normal dunha diapositiva créase unha táboa; na vista de esquema cada cela crea unha liña no esquema." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "O %PRODUCTNAME axuda a non introducir dous ou máis espazos no Writer. Marque Ferramentas ▸ Corrección automática ▸ Opcións de corrección automática ▸ Opcións ▸ Ignorar espazos duplos." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Desexa que o cursor vaia á cela da dereita logo de introducir un valor no Calc? Empregue a tecla Tab no canto de Intro." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Para mostrar a barra de ferramentas á esquerda, active Ferramentas ▸ Opcións ▸ Configuración dos idiomas ▸ Idiomas ▸ Texto complexo e marque Folla ▸ Dereita a esquerda." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arrastre un obxecto con formato para a xanela Estilos e formato. Aparece unha caixa de diálogo na que simplemente hai que escribir o nome do novo estilo." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "As versións novas do %PRODUCTNAME traen funcionalidades novas, correccións de erros e parches de seguranza. Manteña o seu software actualizado!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Quere desenvolver filtros XSLT e XML novos?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Prema Maiús+F1 para ver calquera suxestión estendida nas caixas de diálogo se «Suxestións estendidas» non estiver activada en Ferramentas ▸ Opcións ▸ %PRODUCTNAME ▸ Xeral." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Axuda do %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Máis información" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Executar esta acción agora..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Suxestión do día: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Orde" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opc" @@ -20459,13 +20453,13 @@ #: cui/uiconfig/ui/textattrtabpage.ui:310 msgctxt "textattrtabpage|label6" msgid "_Top:" -msgstr "_Parte superior:" +msgstr "S_uperior:" #. avsGr #: cui/uiconfig/ui/textattrtabpage.ui:324 msgctxt "textattrtabpage|label7" msgid "_Bottom:" -msgstr "_Parte inferior:" +msgstr "_Inferior:" #. qhk2Q #: cui/uiconfig/ui/textattrtabpage.ui:344 @@ -20495,7 +20489,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:418 msgctxt "textattrtabpage|label2" msgid "Spacing to Borders" -msgstr "Espazamento até aos bordes" +msgstr "Espazamento até os bordes" #. gMHiC #: cui/uiconfig/ui/textattrtabpage.ui:470 @@ -21401,7 +21395,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:156 msgctxt "zoomdialog|fitw" msgid "Fit width" -msgstr "Axustar a largura" +msgstr "Axustar largura" #. ANMvA #: cui/uiconfig/ui/zoomdialog.ui:166 @@ -21461,7 +21455,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:308 msgctxt "zoomdialog|extended_tip|automatic" msgid "The automatic view layout displays pages side by side, as many as the zoom factor allows." -msgstr " O lado automático de esquema view exhibe páxinas a banda, como moitos como o factor de zoom permite." +msgstr "A disposición de vista automática mostra as páxinas unha a carón da outra, tanto como permita o factor de ampliación." #. DBVGM #: cui/uiconfig/ui/zoomdialog.ui:320 diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/scalc/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-19 13:22+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2021-03-24 20:37+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -2606,7 +2606,7 @@ "par_id3145384\n" "help.text" msgid "Choose Sheet - Link to External Data. The External Data dialog appears." -msgstr "Escolla Folla - Ligar a datos externos. Aparece a caixa de diálogo Datos externos." +msgstr "Escolla Folla - Ligar a datos externos. Aparece a caixa de diálogo Datos externos." #. EQzxX #: cellreferences_url.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ 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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-03 16:37+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565277872.000000\n" #. 3u8hR @@ -2642,7 +2642,7 @@ "bm_id381513636896997\n" "help.text" msgid "remote file; savesave; remote file" -msgstr "" +msgstr "ficheiro remoto; gardargardar; ficheiro remoto" #. qfF6G #: 01060001.xhp @@ -2651,7 +2651,7 @@ "hd_id151513629025611\n" "help.text" msgid "Save Remote..." -msgstr "" +msgstr "Gardar remoto..." #. TL55A #: 01060001.xhp @@ -2660,7 +2660,7 @@ "par_id771513629025613\n" "help.text" msgid "Saves a document located in a remote file service." -msgstr "" +msgstr "Garda un documento situado nun servizo de ficheiros remoto." #. 8GEre #: 01060001.xhp @@ -2669,7 +2669,7 @@ "par_id611513629210220\n" "help.text" msgid "Choose File - Save Remote... ." -msgstr "" +msgstr "Escolla Ficheiro - Gardar remoto...." #. 2FysC #: 01060001.xhp @@ -2678,7 +2678,7 @@ "par_id431513629862558\n" "help.text" msgid "Long-click on the Save icon and select Save Remote File... ." -msgstr "" +msgstr "Prema prolongadamente na icona Gardar e seleccione Gardar ficheiro remoto...." #. jpc76 #: 01060001.xhp @@ -2687,7 +2687,7 @@ "par_id531513630220632\n" "help.text" msgid "A remote file server is a web service that stores documents with or without checkin, checkout, version controls and backups." -msgstr "" +msgstr "Un servidor de ficheiros remoto é un servizo web que almacena documentos con ou sen rexistro de entrada e de saída, control de versión e copias de seguranza." #. xuXaK #: 01060001.xhp @@ -2696,7 +2696,7 @@ "par_id951513629981585\n" "help.text" msgid "Opening and saving files in remote servers" -msgstr "" +msgstr "Abrir e gardar ficheiros en servidores remotos" #. qU9Ae #: 01060002.xhp @@ -2705,7 +2705,7 @@ "tit\n" "help.text" msgid "Save a Copy" -msgstr "" +msgstr "Gardar unha copia" #. akvrn #: 01060002.xhp @@ -2714,7 +2714,7 @@ "bm_id241513636774794\n" "help.text" msgid "save; save a copysave a copy" -msgstr "" +msgstr "gardar; gardar unha copiagardar unha copia" #. AVSHN #: 01060002.xhp @@ -2723,7 +2723,7 @@ "par_id391513471676787\n" "help.text" msgid "Save a Copy" -msgstr "" +msgstr "Gardar unha copia" #. rkA6p #: 01060002.xhp @@ -2732,7 +2732,7 @@ "par_id1001513471674465\n" "help.text" msgid "Saves a copy of the actual document with another name or location." -msgstr "" +msgstr "Garda unha copia do documento actual con outro nome ou noutro lugar." #. QnPgR #: 01060002.xhp @@ -2741,7 +2741,7 @@ "par_id701513472080716\n" "help.text" msgid "Choose File - Save a Copy." -msgstr "" +msgstr "Escolla Ficheiro - Gardar unha copia." #. Eq5QD #: 01060002.xhp @@ -2750,7 +2750,7 @@ "par_id881513473450156\n" "help.text" msgid "Creates another file with same contents of the current file. The current file is kept open for editing." -msgstr "" +msgstr "Crea outro ficheiro co mesmo contido que o ficheiro actual. O ficheiro actual mantense aberto para ser editado." #. WiBP9 #: 01060002.xhp @@ -2813,7 +2813,7 @@ "par_id3146856\n" "help.text" msgid "Saves the current document in a different location, or with a different file name or file type." -msgstr "" +msgstr "Garda o documento actual nun lugar diferente ou cun nome ou tipo de ficheiro diferente." #. JxRcN #: 01070000.xhp @@ -2822,7 +2822,7 @@ "par_id251543697768103\n" "help.text" msgid "%PRODUCTNAME uses the native file picker dialog of the window manager of your operating system for the Save as command." -msgstr "" +msgstr "O %PRODUCTNAME emprega a caixa de diálogo para escoller ficheiros nativo do xestor de xanelas do sistema operativo coa orde Gardar como." #. JDKKZ #: 01070000.xhp @@ -2831,7 +2831,7 @@ "par_id3147654\n" "help.text" msgid "To save a document as a template, use the command File - Templates - Save As Template." -msgstr "" +msgstr "Para gardar un documento como modelo, empregue a orde Ficheiro - Modelos - Gardar como modelo." #. Y565Y #: 01070000.xhp @@ -2849,7 +2849,7 @@ "par_id3153626\n" "help.text" msgid "Enter a file name or a path for the file. You can also enter a URL" -msgstr "" +msgstr "Introduza un nome de ficheiro ou ruta para o ficheiro. Tamén pode introducir un URL" #. Ce7Fv #: 01070000.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr " fontes palpebrar chiscando fontes " - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Intermitente" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr " Fai que os caracteres seleccionados palpebrar. Non pode cambiar a frecuencia de palpebrar." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -39776,7 +39749,7 @@ "par_id991514298399076\n" "help.text" msgid "Lets you customize %PRODUCTNAME menus for all modules." -msgstr "" +msgstr "Permite personalizar os menús do %PRODUCTNAME para todos os módulos." #. Mw7Ez #: 06140100.xhp @@ -39785,7 +39758,7 @@ "par_id3146873\n" "help.text" msgid "You can add new commands, modify existing commands, or rearrange the menu items. You can also add commands executed by macros and apply all kind of styles directly from the menu." -msgstr "" +msgstr "Pódense engadir ordes novas, modificar as existentes ou reorganizar os elementos do menú. Tamén é posíbel engadir ordes executadas por macros e aplicar todo tipo de estilos directamente desde o menú." #. 5Pqu2 #: 06140100.xhp @@ -39794,7 +39767,7 @@ "par_id621514299131013\n" "help.text" msgid "Choose Tools - Customize - Menus tab." -msgstr "" +msgstr "Escolla a lapela Ferramentas - Personalizar - Menús." #. nzad5 #: 06140100.xhp @@ -40550,7 +40523,7 @@ "par_id991514298399076\n" "help.text" msgid "Lets you customize %PRODUCTNAME context menus for all modules." -msgstr "" +msgstr "Permite personalizar os menús do %PRODUCTNAME para todos os módulos." #. 6sEqB #: 06140300.xhp @@ -40559,7 +40532,7 @@ "par_id3146873\n" "help.text" msgid "You can add new commands, modify existing commands, or rearrange the context menu items. You can also add commands executed by macros and apply all kind of styles directly from the context menu." -msgstr "" +msgstr "Pódense engadir ordes novas, modificar as existentes ou reorganizar os elementos do menú. Tamén é posíbel engadir ordes executadas por macros e aplicar todo tipo de estilos directamente desde o menú." #. bSfPs #: 06140300.xhp @@ -40568,7 +40541,7 @@ "par_id621514299131013\n" "help.text" msgid "Choose Tools - Customize - Context Menus tab." -msgstr "" +msgstr "Escolla a lapela Ferramentas - Personalizar - Menús." #. dTLGx #: 06140300.xhp @@ -40811,7 +40784,7 @@ "par_id3150279\n" "help.text" msgid "Lets you customize $[officename] toolbars." -msgstr "" +msgstr "Permite personalizar as barras de ferramentas do $[officename]." #. E7v4c #: 06140400.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-18 19:24+0000\n" -"Last-Translator: Xosé \n" +"PO-Revision-Date: 2021-03-24 20:36+0000\n" +"Last-Translator: serval2412 \n" "Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" @@ -59,7 +59,7 @@ "par_id3144436\n" "help.text" msgid "%PRODUCTNAME includes many sample documents and ready-to-use templates. You can access these by choosing File - New - Templates, or press Shift+CommandCtrl+N." -msgstr "O %PRODUCTNAME inclúe moitos documentos de exemplo e modelos preparados para seren usados. Pode acceder a eles escollendo Ficheiro - Novo - Modelos ou premendo Maiús.+OrdeCtrl+N." +msgstr "O %PRODUCTNAME inclúe moitos documentos de exemplo e modelos preparados para seren usados. Pode acceder a eles escollendo Ficheiro - Novo - Modelos ou premendo Maiús.+OrdeCtrl+N." #. KeJcK #: aaa_start.xhp @@ -77,7 +77,7 @@ "par_id0820200803563860\n" "help.text" msgid "Click the Browse online templates button in the dialog to select and download more templates." -msgstr "" +msgstr "Prema no botón Explorar modelos na rede na caixa de diálogo para seleccionar e descargar máis modelos." #. f8yqt #: aaa_start.xhp @@ -104,7 +104,7 @@ "par_id401607339239056\n" "help.text" msgid "Working with Templates" -msgstr "" +msgstr "Traballar con modelos" #. AJDDG #: aaa_start.xhp @@ -230,7 +230,7 @@ "par_id3145071\n" "help.text" msgid "The user interface is scalable through your Window Manageroperating system settings. The default font size for dialogs is 12pt, corresponding to a scale of 100%. You can also change the font size for dialogs in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - View. The zoom factor of a document can be changed in View - Zoom, or by double-clicking the zoom factor displayed in the Status Bar." -msgstr "" +msgstr "Pódese axustar o tamaño da interface de usuario nas opcións do xestor de xanelasdo sistema operativo. O tamaño de letra predeterminado para as caixas de diálogo é de 12pt, o que corresponde a unha ampliación do 100%. Tamén pode cambiar o tamaño da letra das caixas de diálogo en %PRODUCTNAME - PreferenciasFerramentas - Opcións - %PRODUCTNAME - Ver. Pódese cambiar o factor de ampliación dun documento en Ver - Ampliación ou premendo dúas veces no factor de ampliación que se mostra na barra de estado." #. FWJVf #: accessibility.xhp @@ -257,7 +257,7 @@ "par_id3150084\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Application Colors" -msgstr "" +msgstr "%PRODUCTNAME - PreferenciasFerramentas - Opcións - %PRODUCTNAME - Cores da aplicación" #. EGCtG #: accessibility.xhp @@ -320,7 +320,7 @@ "par_id3154823\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - General, and check Extended tips." -msgstr "" +msgstr "Choose %PRODUCTNAME - PreferenciasFerramentas - Opcións - %PRODUCTNAME - Xeral e marque Suxestións estendidas." #. Efdny #: active_help_on_off.xhp @@ -419,7 +419,7 @@ "par_id3150771\n" "help.text" msgid "Click the Start button on the Windows taskbar. Choose Settings." -msgstr "" +msgstr "Prema no botón Inicio da barra de tarefas Xanela. Escolla Configuración." #. u7g6Z #: activex.xhp @@ -428,7 +428,7 @@ "par_idN106E8\n" "help.text" msgid "In Settings, click Apps." -msgstr "" +msgstr "Na Configuración, prema en Aplicacións." #. 3UNE4 #: activex.xhp @@ -437,7 +437,7 @@ "par_id3156155\n" "help.text" msgid "In the Apps & features list, click %PRODUCTNAME, then click Change." -msgstr "" +msgstr "Na lista Aplicacións e funcionalidades prema en %PRODUCTNAME e despois prema en Cambiar." #. CaXPY #: activex.xhp @@ -572,7 +572,7 @@ "par_id3143267\n" "help.text" msgid "$[officename] supports some assistive technology tools like screen magnification software, screen readers, and on-screen keyboards." -msgstr "" +msgstr "O $[officename] admite algunhas ferramentas de tecnoloxía de accesibilidade como ampliadores, lectores de pantalla e teclados na pantalla." #. vXVSF #: assistive.xhp @@ -581,7 +581,7 @@ "par_id8847010\n" "help.text" msgid "A current list of supported assistive tools can be found on the Wiki at https://wiki.documentfoundation.org/Accessibility." -msgstr "" +msgstr "Pode atopar unha lista actualizada de ferramentas de accesibilidade compatíbeis na wiki en https://wiki.documentfoundation.org/Accessibility." #. vENZ6 #: assistive.xhp @@ -644,7 +644,7 @@ "par_id3155430\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - $[officename] - Application Colors" -msgstr "" +msgstr "%PRODUCTNAME - PreferenciasFerramentas - Opcións - $[officename] - Cores da aplicación" #. MxYao #: assistive.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2020-07-08 12:12+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548202426.000000\n" #. PzSYs @@ -1679,7 +1679,7 @@ "par_id3153527\n" "help.text" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "" +msgstr "Indica as propiedades da corrección ortográfica, o dicionario de sinónimos e o guionizador." #. u8YqG #: 01010400.xhp @@ -1706,7 +1706,7 @@ "par_id3153663\n" "help.text" msgid "A language module can contain one, two or three submodules: Spelling, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the Edit button to open the Edit Modules dialog." -msgstr "" +msgstr "Un módulo de idioma pode conter un, dous ou tres submódulos: corrección ortográfica, guionización e dicionario de sinónimos. Cada submódulo pode estar dispoñíbel en un ou máis idiomas. Se preme diante do nome do módulo activará todos os submódulos dispoñíbeis simultaneamente. Se retira unha marca de selección, desactivará todos os submódulos dispoñíbeis simultaneamente. Se desexa activar ou desactivar submódulos individuais, prema no botón Editar para abrir a caixa de diálogo Editar módulos." #. oeBAY #: 01010400.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -874,7 +874,7 @@ "Label\n" "value.text" msgid "Zoom In" -msgstr "Máis zoom" +msgstr "Máis ampliación" #. HNcyc #: CalcCommands.xcu @@ -884,7 +884,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "Menos zoom" +msgstr "Menos ampliación" #. H46Pa #: CalcCommands.xcu @@ -2734,7 +2734,7 @@ "Label\n" "value.text" msgid "~Define Name..." -msgstr "~Definir o nome…" +msgstr "~Definir nome…" #. G9xH2 #: CalcCommands.xcu @@ -11954,7 +11954,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. AkJdM #: DrawWindowState.xcu @@ -12344,7 +12344,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. aihBG #: Effects.xcu @@ -12594,7 +12594,7 @@ "Label\n" "value.text" msgid "Fade in and Zoom" -msgstr "Intensificar e aplicar zoom" +msgstr "Intensificar e ampliar" #. 26GwM #: Effects.xcu @@ -13174,7 +13174,7 @@ "Label\n" "value.text" msgid "Fade out and Zoom" -msgstr "Esvaecer e aplicar zoom" +msgstr "Esvaecer e ampliar" #. qzyys #: Effects.xcu @@ -13294,7 +13294,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. ipZZC #: Effects.xcu @@ -17804,7 +17804,7 @@ "Label\n" "value.text" msgid "~Zoom" -msgstr "~Zoom" +msgstr "~Ampliación" #. RZ28W #: GenericCommands.xcu @@ -17814,7 +17814,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "~Zoom..." +msgstr "~Ampliación..." #. xTbFE #: GenericCommands.xcu @@ -18544,7 +18544,7 @@ "Label\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. cG9KB #: GenericCommands.xcu @@ -18564,7 +18564,7 @@ "Label\n" "value.text" msgid "Zoom In" -msgstr "Máis zoom" +msgstr "Máis ampliación" #. W9gHw #: GenericCommands.xcu @@ -18584,7 +18584,7 @@ "Label\n" "value.text" msgid "Zoom Out" -msgstr "Menos zoom" +msgstr "Menos ampliación" #. BY3gD #: GenericCommands.xcu @@ -20556,7 +20556,7 @@ "Label\n" "value.text" msgid "Object Zoom" -msgstr "Zoom de obxecto" +msgstr "Ampliación de obxecto" #. kpKCn #: GenericCommands.xcu @@ -22486,7 +22486,7 @@ "Label\n" "value.text" msgid "Zoom Next" -msgstr "Seguinte presentación" +msgstr "Presentación seguinte" #. Q9cMm #: GenericCommands.xcu @@ -27266,7 +27266,7 @@ "UIName\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. pvbBN #: ImpressWindowState.xcu @@ -29426,7 +29426,7 @@ "Label\n" "value.text" msgid "Preview Zoom" -msgstr "Visualizar zoom" +msgstr "Ampliación da previsualización" #. BAjyc #: WriterCommands.xcu @@ -29576,7 +29576,7 @@ "Label\n" "value.text" msgid "Update Index" -msgstr "Actualizar o índice" +msgstr "Actualizar índice" #. bQdcg #: WriterCommands.xcu @@ -29596,7 +29596,7 @@ "PopupLabel\n" "value.text" msgid "Update index" -msgstr "Actualizar o índice" +msgstr "Actualizar índice" #. 3sfQu #: WriterCommands.xcu @@ -29646,7 +29646,7 @@ "Label\n" "value.text" msgid "Reject and Move to Next" -msgstr "Rexeitar e avanzar para a seguinte" +msgstr "Rexeitar e avanzar para o seguinte" #. riKrf #: WriterCommands.xcu @@ -29726,7 +29726,7 @@ "Label\n" "value.text" msgid "Accept and Move to Next" -msgstr "Aceptar e mover para a seguinte" +msgstr "Aceptar e mover para o seguinte" #. ueUPj #: WriterCommands.xcu @@ -30696,7 +30696,7 @@ "Label\n" "value.text" msgid "Create Master ~Document" -msgstr "Crear ~documento mestre" +msgstr "Crear ~documento principal" #. K4a3d #: WriterCommands.xcu @@ -31446,7 +31446,7 @@ "Label\n" "value.text" msgid "Two Pages Preview" -msgstr "Visualización de dúas páxinas" +msgstr "Vista de dúas páxinas" #. G7JBA #: WriterCommands.xcu @@ -31456,7 +31456,7 @@ "Label\n" "value.text" msgid "Single Page Preview" -msgstr "Visualización de páxina simple" +msgstr "Vista de unha páxina" #. APPcq #: WriterCommands.xcu @@ -31476,7 +31476,7 @@ "Label\n" "value.text" msgid "Multiple Pages Preview" -msgstr "Visualización de varias páxinas" +msgstr "Vista de varias páxinas" #. HRuMm #: WriterCommands.xcu @@ -33916,7 +33916,7 @@ "Label\n" "value.text" msgid "Book Preview" -msgstr "Visualizar libro" +msgstr "Ver como libro" #. pk7kQ #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2020-11-02 14:42+0000\n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" "Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547506509.000000\n" #. HhMVS @@ -1774,7 +1774,7 @@ "Text\n" "value.text" msgid "Zoom" -msgstr "Zoom" +msgstr "Ampliación" #. Qpp7t #: PresenterScreen.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/sc/messages.po libreoffice-7.1.3~rc2/translations/source/gl/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/gl/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-16 06:39+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562229906.000000\n" #. kBovX @@ -14485,7 +14485,7 @@ #: sc/inc/scfuncs.hrc:3528 msgctxt "SC_OPCODE_ASC" msgid "The text to convert." -msgstr "O texto a converter." +msgstr "O texto que hai que converter." #. 7pcC8 #: sc/inc/scfuncs.hrc:3534 @@ -20987,7 +20987,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:330 msgctxt "datafieldoptionsdialog|label2" msgid "Display Options" -msgstr "Opcións de visualizacións" +msgstr "Opcións de visualización" #. Q34EM #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:363 @@ -28922,7 +28922,7 @@ #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:130 msgctxt "sharedocumentdlg|warning" msgid "Note: Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities." -msgstr "Nota: Os cambios nos atributos de formato como tipos de letra, cores e formato dos números non se gardarán e algunhas funcionalidades como a edición de gráficas e o debuxo de obxectos non estarán dispoñíbeis no modo compartido. Desactive o modo compartido para ter acceso exclusivo a eses cambios e funcionalidades." +msgstr "Nota: Os cambios nos atributos de formato, como tipos de letra, cores e formato dos números non se gardarán e algunhas funcionalidades como a edición de gráficas e o debuxo de obxectos non estarán dispoñíbeis no modo compartido. Desactive o modo compartido para ter acceso exclusivo a eses cambios e funcionalidades." #. dQz77 #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:201 @@ -28970,7 +28970,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:88 msgctxt "sheetprintpage|extended_tip|radioBTN_TOPDOWN" msgid "Prints vertically from the left column to the bottom of the sheet." -msgstr "Imprime verticalmente desde a columna esquerda até á parte inferior da folla." +msgstr "Imprime verticalmente desde a columna esquerda até a parte inferior da folla." #. a2f9m #: sc/uiconfig/scalc/ui/sheetprintpage.ui:99 @@ -28982,7 +28982,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:112 msgctxt "sheetprintpage|extended_tip|radioBTN_LEFTRIGHT" msgid "Prints horizontally from the top row of the sheet to the right column." -msgstr "Imprime horizontalmente desde a fila superior da folla até á columna dereita." +msgstr "Imprime horizontalmente desde a fila superior da folla até a columna dereita." #. Zmz6D #: sc/uiconfig/scalc/ui/sheetprintpage.ui:123 @@ -30098,7 +30098,7 @@ #: sc/uiconfig/scalc/ui/sortkey.ui:55 msgctxt "sortkey|extended_tip|up" msgid "Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options." -msgstr "Ordena a selección desde o valor máis baixo até ao máis alto. As ordes de ordenación veñen definidas pola configuración rexional. Pode definir as regras de ordenación en Datos - Ordenar - Opcións." +msgstr "Ordena a selección desde o valor máis baixo até o máis alto. As ordes de ordenación veñen definidas pola configuración rexional. Pode definir as regras de ordenación en Datos - Ordenar - Opcións." #. TfqAv #: sc/uiconfig/scalc/ui/sortkey.ui:66 @@ -30110,7 +30110,7 @@ #: sc/uiconfig/scalc/ui/sortkey.ui:76 msgctxt "sortkey|extended_tip|down" msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options." -msgstr "Ordena a selección desde o valor máis baixo até ao máis alto. As ordes de ordenación veñen definidas pola configuración rexional. Pode definir as regras de ordenación en Datos - Ordenar - Opcións." +msgstr "Ordena a selección desde o valor máis baixo até o máis alto. As ordes de ordenación veñen definidas pola configuración rexional. Pode definir as regras de ordenación en Datos - Ordenar - Opcións." #. Svy7B #: sc/uiconfig/scalc/ui/sortkey.ui:93 diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/starmath/messages.po libreoffice-7.1.3~rc2/translations/source/gl/starmath/messages.po --- libreoffice-7.1.2~rc2/translations/source/gl/starmath/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/starmath/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-10 07:36+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -3555,13 +3555,13 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:1722 msgctxt "spacingdialog|10label3" msgid "_Top:" -msgstr "_Parte superior:" +msgstr "S_uperior:" #. GCrvm #: starmath/uiconfig/smath/ui/spacingdialog.ui:1735 msgctxt "spacingdialog|10label4" msgid "_Bottom:" -msgstr "_Parte inferior:" +msgstr "_Inferior:" #. FzdXL #: starmath/uiconfig/smath/ui/spacingdialog.ui:1766 diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/svx/messages.po libreoffice-7.1.3~rc2/translations/source/gl/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/gl/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-10 07:36+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Xosé \n" "Language-Team: Galician \n" "Language: gl\n" @@ -13152,7 +13152,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:118 msgctxt "chineseconversiondialog|extended_tip|tosimplified" msgid "Converts traditional Chinese text characters to simplified Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted." -msgstr " Converte caracteres de texto chinés tradicional para caracteres de texto en chinés simplificado. Prema Aceptar para converter o texto seleccionado. Se ningún texto é seleccionado, todo o documento se converter." +msgstr "Converte caracteres de texto chinés tradicional para caracteres de texto en chinés simplificado. Prema en Aceptar para converter o texto seleccionado. De non haber texto seleccionado, convértese todo o documento." #. aDmx8 #: svx/uiconfig/ui/chineseconversiondialog.ui:129 @@ -13164,7 +13164,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:139 msgctxt "chineseconversiondialog|extended_tip|totraditional" msgid "Converts simplified Chinese text characters to traditional Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted." -msgstr " Converte caracteres de texto Chinés simplificada a caracteres tradicionais chineses texto. Prema Aceptar para converter o texto seleccionado. Se ningún texto é seleccionado, todo o documento se converter." +msgstr "Converte caracteres de texto chineses simplificados a caracteres de texto chineses tradicionais. Prema en Aceptar para converter o texto seleccionado. De non haber ningún texto seleccionado, convértese todo o texto." #. dKQjR #: svx/uiconfig/ui/chineseconversiondialog.ui:156 diff -Nru libreoffice-7.1.2~rc2/translations/source/gl/sw/messages.po libreoffice-7.1.3~rc2/translations/source/gl/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/gl/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gl/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2020-12-16 10:55+0000\n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" "Last-Translator: Xosé \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562578065.000000\n" #. v3oJv @@ -9770,7 +9770,7 @@ #: sw/uiconfig/swriter/ui/abstractdialog.ui:149 msgctxt "abstractdialog|label4" msgid "The abstract contains the selected number of paragraphs from the included outline levels." -msgstr "O extracto contén o número de parágrafos seleccionados a partir dos niveis do esquema incluídos." +msgstr "O extracto contén o número de parágrafos seleccionados a partir dos niveis de esquema incluídos." #. zeoic #: sw/uiconfig/swriter/ui/abstractdialog.ui:171 @@ -18906,7 +18906,7 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:359 msgctxt "mmlayoutpage|label7" msgid "_Zoom" -msgstr "_Zoom" +msgstr "_Ampliación" #. kF4Eb #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:374 @@ -26309,13 +26309,13 @@ #: sw/uiconfig/swriter/ui/spellmenu.ui:113 msgctxt "spellmenu|accept" msgid "Accept Change" -msgstr "Aceptar o cambio" +msgstr "Aceptar cambio" #. xuAu5 #: sw/uiconfig/swriter/ui/spellmenu.ui:121 msgctxt "spellmenu|reject" msgid "Reject Change" -msgstr "Rexeitar o cambio" +msgstr "Rexeitar cambio" #. bFB4S #: sw/uiconfig/swriter/ui/spellmenu.ui:129 @@ -27761,7 +27761,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:444 msgctxt "tocentriespage|entryoutlinelevelft" msgid "Evaluate up to level:" -msgstr "Avaliar até ao nivel:" +msgstr "Avaliar até o nivel:" #. 5RNAC #: sw/uiconfig/swriter/ui/tocentriespage.ui:465 @@ -28235,7 +28235,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:282 msgctxt "tocindexpage|levelft" msgid "Evaluate up to level:" -msgstr "Avaliar até ao nivel:" +msgstr "Avaliar até o nivel:" #. zaoBB #: sw/uiconfig/swriter/ui/tocindexpage.ui:301 @@ -29267,13 +29267,13 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:304 msgctxt "wrappage|label6" msgid "_Top:" -msgstr "_Parte superior:" +msgstr "S_uperior:" #. NQ77D #: sw/uiconfig/swriter/ui/wrappage.ui:318 msgctxt "wrappage|label7" msgid "_Bottom:" -msgstr "_Parte inferior:" +msgstr "_Inferior:" #. AXBwG #: sw/uiconfig/swriter/ui/wrappage.ui:338 diff -Nru libreoffice-7.1.2~rc2/translations/source/gu/cui/messages.po libreoffice-7.1.3~rc2/translations/source/gu/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/gu/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gu/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2470,1071 +2470,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gu/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinking fontsflashing fonts" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Bindings" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/cui/messages.po libreoffice-7.1.3~rc2/translations/source/gug/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/gug/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-09-01 16:20+0000\n" "Last-Translator: Giovanni Caligaris \n" "Language-Team: Guarani (Paraguayan) \n" @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME ija irundy tenda tekoresã guasúva (ikarapeveva ha ijyvatevéva) ha mba'e ypy jeroviava." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Ikatu remoheñòi ta'ãnga rysỳi mba'e rerakuèra guive, ndaha'èi jehaipỳgui añònte." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Eipuru ne Android térã iPhone rehecha hagua mombyry guive impress mba'echauka" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Ne me'ẽrei oipytyõ ñande rekoha tetãitaguápe" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "¿Rembojoapysépa X jasy peteĩ arangépe? Eipuru = ARANGE.JASY(ArangeÑepyrũ; Jasykuéra)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "¿Eikuaase rechapyrã mba'eokarupa? eñepyrũ «soffice» con «--help», «-h» o «-?»." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Ikatu remoĩ ndereraguapy umi PDF marandu'atýpe ha avei ehechajey teraguapykuéra" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Eipuru %PRODUCTNAME oimeraẽ kundahárape rollApp rupive" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Jejavy ayvu ojekuaa'ỹva Calc, Err ohóva peteĩ papapy rapykuéri? Ko kuatiarogue omyesakẽka ndéve:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Avei mba'ekuaa aty,%PRODUCTNAME ikatuva ojejapo techaukaha achegety, jehechakuaava mba'erenda, arandu ambue aranduka oñembohekova. " #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sbasic/python.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-04 16:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565287211.000000\n" #. naSFZ @@ -3002,7 +3002,7 @@ "N0467\n" "help.text" msgid "\"\"\" Displays a dialog box containing a message and returns a value.\"\"\"" -msgstr "" +msgstr "\"\"\" Muestra un cuadro de diálogo que contiene un mensaje y devuelve un valor.\"\"\"" #. nUtxt #: python_screen.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-12-17 14:17+0100\n" -"PO-Revision-Date: 2021-01-23 09:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1534393940.000000\n" #. 6Kkin @@ -86,7 +86,7 @@ "par_id3159201\n" "help.text" msgid "Compiles the Basic macro. You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps." -msgstr "Compila la macro Basic. Después de efectuar cambios en una macro o si ésta utiliza pasos únicos o de procedimiento, es necesario compilarla." +msgstr "Compila la macro Basic. Después de efectuar cambios en una macro o si esta utiliza pasos únicos o de procedimiento, es necesario compilarla." #. LLoQJ #: 11020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -7214,7 +7214,7 @@ "par_id3153042\n" "help.text" msgid "Select \"Yes\" to only allow valid characters to be entered in a numerical, currency, date, or time control." -msgstr "Seleccione «Sí» para permitir que se escriban solamente caracteres válidos en un control numérico, de moneda, de fecha o de tiempo." +msgstr "Seleccione «Sí» para permitir que se escriban solamente caracteres válidos en un control numérico, de moneda, de fecha o de hora." #. VCDfj #: 01170101.xhp @@ -18104,7 +18104,7 @@ "par_id3156215\n" "help.text" msgid "Boolean expressions combined with AND only return the value True if both expressions evaluate to True:" -msgstr "Las expresiones lógicas combinadas con AND sólo devuelven el valor True si ambas se evalúan como True:" +msgstr "Las expresiones booleanas combinadas con AND solo devuelven el valor True si ambas dan como resultado True:" #. EW3Cz #: 03060100.xhp @@ -18266,7 +18266,7 @@ "par_id3149562\n" "help.text" msgid "When testing for equivalence between Boolean expressions, the result is True if both expressions are either True or False." -msgstr "Al comprobar la equivalencia entre expresiones lógicas, el resultado es True si éstas son ambas True o False." +msgstr "Al comprobar la equivalencia entre expresiones booleanas, el resultado es True si estas son ambas True o False." #. XrGXb #: 03060200.xhp @@ -18275,7 +18275,7 @@ "par_id3154319\n" "help.text" msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression." -msgstr "En una comparación entre bits, el operador Eqv sólo activa el bit correspondiente del resultado si éste se encuentra activado o desactivado en ambas expresiones." +msgstr "En una comparación entre bits, el operador Eqv solo activa el bit correspondiente del resultado si este se encuentra activado o desactivado en ambas expresiones." #. FpFjm #: 03060200.xhp @@ -18419,7 +18419,7 @@ "par_id3150440\n" "help.text" msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False." -msgstr "Si se utiliza el operador Imp en expresiones lógicas, sólo se devuelve False si el resultado de la primera expresión es True y el de la segunda es False." +msgstr "Si se utiliza el operador Imp en expresiones booleanas, solo se devuelve False si el resultado de la primera expresión es True y el de la segunda es False." #. d8L7N #: 03060300.xhp @@ -19580,7 +19580,7 @@ "par_id3148550\n" "help.text" msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions." -msgstr "Las funciones numéricas siguientes realizan cálculos. Los operadores matemáticos y lógicos se describen en una sección independiente. Las funciones difieren de los operadores en que éstas pasan argumentos y devuelven un resultado, mientras que los operadores devuelven un resultado al combinar dos expresiones numéricas." +msgstr "Las funciones numéricas siguientes realizan cálculos. Los operadores matemáticos y lógicos se describen en una sección independiente. Las funciones difieren de los operadores en que estas pasan argumentos y devuelven un resultado, mientras que los operadores devuelven un resultado al combinar dos expresiones numéricas." #. 7sD2R #: 03080100.xhp @@ -22262,7 +22262,7 @@ "par_id3153951\n" "help.text" msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed." -msgstr "El ejemplo siguiente permite introducir una fecha de caducidad de un producto y determina si ésta ya ha pasado." +msgstr "El ejemplo siguiente permite introducir una fecha de caducidad de un producto y determina si esta ya ha pasado." #. gDmAx #: 03090101.xhp @@ -41117,7 +41117,7 @@ "N0061\n" "help.text" msgid "With statement" -msgstr "" +msgstr "Instrucción With" #. FFWQn #: fragments.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/00.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/scalc/00.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/scalc/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-12-21 16:36+0000\n" +"PO-Revision-Date: 2021-03-24 20:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561323262.000000\n" #. E9tti @@ -1580,7 +1580,7 @@ "par_id3144772\n" "help.text" msgid "On Tools bar, click" -msgstr "En la barra de Herramientas, pulse" +msgstr "En la barra Herramientas, pulse en" #. KsK5g #: 00000412.xhp @@ -1625,7 +1625,7 @@ "par_id3155097\n" "help.text" msgid "On Tools bar, click" -msgstr "En la barra de Herramientas, pulse" +msgstr "En la barra Herramientas, pulse en" #. TpnTL #: 00000412.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-03-22 18:37+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -7844,7 +7844,7 @@ "par_id3928952\n" "help.text" msgid "INFO(\"Type\")" -msgstr "INFO(\"Texto\")" +msgstr "INFO(\"Tipo\")" #. hf5Jp #: 04060104.xhp @@ -20651,7 +20651,7 @@ "par_id3149141\n" "help.text" msgid "=LEFT(\"output\";3) returns “out”." -msgstr "=IZQUIERDA(\"salida\";3) devuelve “sal”." +msgstr "=IZQUIERDA(\"salida\";3) devuelve «sal»." #. Bb5G5 #: 04060110.xhp @@ -30191,7 +30191,7 @@ "par_id3151272\n" "help.text" msgid "How much interest must you pay in the second year of the mortgage (thus from periods 13 to 24)?" -msgstr "¿Qué cantidad en intereses debe pagar en el segundo año del préstamo hipotecario (o sea, en el periodo 12 a 24?" +msgstr "¿Qué cantidad en intereses debe pagar en el segundo año del préstamo hipotecario (o sea, de los periodos 13 a 24)?" #. AHELF #: 04060119.xhp @@ -65138,7 +65138,7 @@ "par_id360320091039424\n" "help.text" msgid "During crossover, the scaling factor decides about the “speed” of movement." -msgstr "" +msgstr "Durante el cruce, el factor de escala decide la «velocidad» de movimiento." #. HPPHg #: solver_options_algo.xhp @@ -65147,7 +65147,7 @@ "par_id0507200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Ciclos de aprendizaje" #. ED86j #: solver_options_algo.xhp @@ -65300,7 +65300,7 @@ "par_id0503200917103834\n" "help.text" msgid "Defines in what range solutions are considered “similar”." -msgstr "" +msgstr "Define el intervalo para considerar «similares» dos soluciones." #. jKuiG #: solver_options_algo.xhp @@ -65417,7 +65417,7 @@ "par_id0503200917103771\n" "help.text" msgid "Learning Cycles" -msgstr "" +msgstr "Ciclos de aprendizaje" #. wgKE5 #: solver_options_algo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/schart/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-08 23:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3380,7 +3380,7 @@ "par_id3159230\n" "help.text" msgid "The options on this tab are only available for a 2D chart, under Format - Axis - Y Axis or X Axis. In this area, you can define the alignment of the number labels on the X or Y axis." -msgstr "Las opciones de esta ficha sólo están disponibles en los gráficos 2D, en Formato - Eje - Eje Y o Eje X. En esta área, puede establecer la alineación de las etiquetas de números en el eje X o Y." +msgstr "Las opciones de esta pestaña solo están disponibles en los gráficos 2D, en Formato ▸ Eje ▸ Eje Y o Eje X. En esta área, puede establecer la alineación de las etiquetas de números en el eje X o Y." #. woFAp #: 05020201.xhp @@ -3605,7 +3605,7 @@ "par_id3159264\n" "help.text" msgid "Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose Insert - Axes and select Y axis." -msgstr "Abre un cuadro de diálogo donde puede editar las propiedades del eje Y secundario. Para insertar un eje Y secundario, diríjase a Insertar ▸ Ejes y seleccioneEje Y." +msgstr "Abre un cuadro de diálogo donde puede editar las propiedades del eje Y secundario. Para insertar un eje Y secundario, diríjase a Insertar ▸ Ejes y seleccione Eje Y." #. WZh2Z #: 05040000.xhp @@ -3668,7 +3668,7 @@ "par_id3149667\n" "help.text" msgid "The Y axis has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the Scaling tab." -msgstr "El eje Y dispone de un diálogo ampliado, y el diálogo del eje X en los gráficos X-Y también tiene una ficha adicional denominada Escala." +msgstr "El eje Y dispone de un diálogo ampliado, y el diálogo del eje X en los gráficos X-Y también tiene una pestaña adicional denominada Escala." #. 5KDFE #: 05040100.xhp @@ -5477,7 +5477,7 @@ "par_id533768\n" "help.text" msgid "Click to enable or disable the specular light source with highlights." -msgstr "Clic para activar o desactivar la fuente de luz especular con resaltes." +msgstr "Pulse para activar o desactivar la fuente de luz especular con realces." #. muQW4 #: three_d_view.xhp @@ -5486,7 +5486,7 @@ "par_id7214270\n" "help.text" msgid "Click to enable or disable the uniform light source." -msgstr "Clic para activar o desactivar la fuente de luz uniforme." +msgstr "Pulse para activar o desactivar la fuente de luz uniforme." #. acKKh #: three_d_view.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-13 07:27+0000\n" +"PO-Revision-Date: 2021-04-02 05:36+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -382,7 +382,7 @@ "bm_id3153323\n" "help.text" msgid "views; creating database views (Base) queries; creating in design view (Base) designing; queries (Base) design view; queries/views (Base) joining;tables (Base) tables in databases; joining for queries (Base) queries; joining tables (Base) tables in databases; relations (Base) relations; joining tables (Base) queries; deleting table links (Base) criteria of query design (Base) queries; formulating filter conditions (Base) filter conditions;in queries (Base) parameters; queries (Base) queries; parameter queries (Base) SQL; queries (Base) native SQL (Base)" -msgstr "" +msgstr "vistas; crear vistas de base de datos (Base) consultas; crear en vista de diseño (Base) diseñar; consultas (Base) vista de diseño; consultas / vistas (Base) unir;tablas (Base) tablas en bases de datos; unir para realizar consultas (Base) consultas; unir tablas (Base) tablas en bases de datos; relaciones (Base) relaciones; unir tablas (Base) consultas; eliminar enlaces de tablas (Base) criterios de diseño de consultas (Base) consultas; formular condiciones de filtros (Base) condiciones de filtros;en consultas (Base) parámetros; consultas (Base) consultas; consultas paramétricas (Base) SQL; consultas (Base) SQL nativo (Base)" #. fmcBY #: 02010100.xhp @@ -697,7 +697,7 @@ "par_id3154791\n" "help.text" msgid "If you double-click on the line connecting two linked fields or call the menu command Insert - New Relation, you can specify the type of relation in the Relations dialog." -msgstr "" +msgstr "Si pulsa dos veces en la línea que une dos campos enlazados o selecciona la orden del menú Insertar ▸ Relación nueva, podrá especificar el tipo de relación a través del cuadro de diálogo Relaciones." #. rAkmw #: 02010100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-03-17 19:36+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2255,7 +2255,7 @@ "par_id3143274\n" "help.text" msgid "If you click the button on the window edge to show the window, the window will remain visible until you manually hide it again (with the same button)." -msgstr "Si hace clic en el extremo de la ventana para mostrar la ventana, dicha ventana se verá en pantalla hasta que se vuelva a ocultar de forma manual (con el mismo botón)." +msgstr "Si pulsa en el extremo de la ventana para mostrar la ventana, dicha ventana se verá en pantalla hasta que se vuelva a ocultar de forma manual (con el mismo botón)." #. Hj6iN #: 00000005.xhp @@ -3353,7 +3353,7 @@ "par_id3150244\n" "help.text" msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks." -msgstr "Con $[officename] Writer se pueden insertar notas al pie y al final de página en documentos de HTML. Éstas se exportan en forma de meta-tags y los caracteres de las notas en forma de hiperenlaces." +msgstr "Con $[officename] Writer se pueden insertar notas al pie y al final de página en documentos HTML. Estas se exportan en forma de metaetiquetas y los caracteres de las notas finales, en forma de hiperenlaces." #. bJ8s4 #: 00000020.xhp @@ -7016,7 +7016,7 @@ "par_id3145386\n" "help.text" msgid "Choose File - Send - Email Document." -msgstr "" +msgstr "Vaya a Archivo ▸ Enviar ▸ Enviar documento por correo." #. Qg6LH #: 00000401.xhp @@ -7250,7 +7250,7 @@ "par_id3155869\n" "help.text" msgid "Choose File - Exit %PRODUCTNAME." -msgstr "" +msgstr "Vaya a Archivo ▸ Salir de %PRODUCTNAME." #. DjhX3 #: 00000401.xhp @@ -11210,7 +11210,7 @@ "par_id6058839\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. EJCyJ #: 00040501.xhp @@ -11237,7 +11237,7 @@ "par_id2709433\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. pNmAg #: 00040501.xhp @@ -11264,7 +11264,7 @@ "par_id9929502\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. hgCuD #: 00040501.xhp @@ -11291,7 +11291,7 @@ "par_id4886928\n" "help.text" msgid "On Form Controls toolbar or Form Design bar, click" -msgstr "" +msgstr "En la barra Controles de formulario o Diseño de formulario, pulse en" #. YgQWC #: 00040501.xhp @@ -11318,7 +11318,7 @@ "par_id3148828\n" "help.text" msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." -msgstr "" +msgstr "Abra el Navegador de formularios, seleccione el formulario, abra el menú contextual y elija Abrir en modo de diseño." #. mRTG5 #: 00040501.xhp @@ -11327,7 +11327,7 @@ "par_id8177434\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. iGE3k #: 00040501.xhp @@ -11354,7 +11354,7 @@ "par_id3147533\n" "help.text" msgid "On Form Control toolbar, click" -msgstr "" +msgstr "En la barra Control de formulario, pulse en" #. msyNv #: 00040501.xhp @@ -11381,7 +11381,7 @@ "par_id3147244\n" "help.text" msgid "Choose Format - Arrange ($[officename] Writer, $[officename] Calc)." -msgstr "" +msgstr "Vaya a Formato ▸ Organizar ($[officename] Writer y Calc)." #. BJj2z #: 00040501.xhp @@ -11390,7 +11390,7 @@ "par_id3159334\n" "help.text" msgid "Open context menu - choose Arrange ($[officename] Impress, $[officename] Draw)." -msgstr "" +msgstr "Abra el menú contextual y elija Organizar ($[officename] Impress y Draw)." #. zzpRV #: 00040501.xhp @@ -11399,7 +11399,7 @@ "par_id3154023\n" "help.text" msgid "Choose Shape - Arrange ($[officename] Draw)." -msgstr "" +msgstr "Vaya a Forma ▸ Organizar ($[officename] Draw)." #. gqcDq #: 00040501.xhp @@ -12029,7 +12029,7 @@ "par_id2851649\n" "help.text" msgid "On Form Design bar, click" -msgstr "" +msgstr "En la barra Diseño de formulario, pulse en" #. DcsgR #: 00040501.xhp @@ -12038,7 +12038,7 @@ "par_id3151122\n" "help.text" msgid "Icon Anchor" -msgstr "" +msgstr "Icono Ancla" #. s4iPa #: 00040501.xhp @@ -13838,7 +13838,7 @@ "par_id3149578\n" "help.text" msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode." -msgstr "Si arrastra un objeto al borde de una ventana acoplada oculta, ésta se abrirá en modo Mostrar automáticamente." +msgstr "Si arrastra un objeto al borde de una ventana acoplada oculta, esta se abrirá en modo Mostrar automáticamente." #. zxwWn #: 01010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-26 13:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3218,7 +3218,7 @@ "tit\n" "help.text" msgid "Description (File Properties)" -msgstr "" +msgstr "Descripción (propiedades del archivo)" #. LaoBx #: 01100100.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "tipos de letra que parpadean tipos de letra intermitentes" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Intermitente" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Hace que los caracteres seleccionados parpadeen. No puede cambiar la frecuencia del parpadeo." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -20525,7 +20498,7 @@ "tit\n" "help.text" msgid "Indents and Spacing" -msgstr "Sangrías y espacio" +msgstr "Sangrías y espaciado" #. VaNGr #: 05030100.xhp @@ -21083,7 +21056,7 @@ "par_id3151384\n" "help.text" msgid "Aligns the right edge of the text to the tab stop and extends the text to the left of the tab stop." -msgstr "Alinea el borde derecho del texto respecto a la marca de tabulación y extiende el texto hacia la izquierda de ésta." +msgstr "Alinea el borde derecho del texto respecto a la marca de tabulación y extiende el texto hacia la izquierda de esta." #. pEYEz #: 05030300.xhp @@ -21524,7 +21497,7 @@ "par_id3146975\n" "help.text" msgid "You can also apply a shadow effect to borders. For the best results, only apply this effect when all four borders are visible." -msgstr "A los bordes se les puede aplicar también un efecto de sombra. Para obtener los mejores resultados, este efecto sólo se debe aplicar cuando los cuatro bordes estén visibles." +msgstr "A los bordes se les puede aplicar también un efecto de sombra. Para obtener los mejores resultados, este efecto se debe aplicar solo cuando los cuatro bordes estén visibles." #. tF3Am #: 05030500.xhp @@ -21623,7 +21596,7 @@ "par_idN10A3E\n" "help.text" msgid "Merges the border style and the shadow style of the current paragraph with the next paragraph. These styles are only merged if the indent, border, and shadow styles of the next paragraph are the same as the current paragraph. This option is also available for Paragraph Styles." -msgstr "Combina el estilo de borde y el estilo de sombra del párrafo actual con el párrafo siguiente. Estos estilos sólo se combinan si los estilos de sangría, borde y sombra del párrafo siguiente son los mismos que los del párrafo actual. Esta opción también está disponible para los estilos de párrafo." +msgstr "Combina el estilo de borde y el estilo de sombra del párrafo actual con el párrafo siguiente. Estos estilos solo se combinan si los estilos de sangría, borde y sombra del párrafo siguiente son los mismos que los del párrafo actual. Esta opción también está disponible para los estilos de párrafo." #. pXbGD #: 05030500.xhp @@ -22379,7 +22352,7 @@ "bm_id3150620\n" "help.text" msgid "pages;formatting and numberingformatting;pagespaper formatspaper traysprinters;paper trayslayout;pagesbinding spacemargins;pagesgutterchanging;page sizechanging;page marginspage marginsmargins;definingpage size;defining" -msgstr "" +msgstr "páginas;formato y numeraciónformato;páginasformatos de papelbandejas de papelimpresoras;bandejas de papeldisposición;páginasespacio para encuadernaciónmárgenes;páginasmedianilcambiar;tamaño de páginacambiar;márgenes de páginamárgenes de páginamárgenes;definirtamaño de página;definir" #. 2VdNc #: 05040200.xhp @@ -24026,7 +23999,7 @@ "par_id3154613\n" "help.text" msgid "Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin." -msgstr "Alinea horizontalmente los bordes inferiores de los objetos seleccionados. Si sólo hay seleccionado un objeto en Draw o Impress, su borde inferior se alinea con el margen inferior de la página.!" +msgstr "Alinea verticalmente los bordes inferiores de los objetos seleccionados. Si solo hay seleccionado un objeto en Draw o Impress, su borde inferior se alinea con el margen inferior de la página." #. GdEq6 #: 05070600.xhp @@ -24656,7 +24629,7 @@ "par_id3153089\n" "help.text" msgid "Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed." -msgstr "Pone el texto seleccionado en negrita. Si el cursor está en una palabra, ésta se pone en negrita. Si la selección o la palabra ya están en negrita, dicho formato se quita." +msgstr "Pone el texto seleccionado en negrita. Si el cursor está en una palabra, esta se pone en negrita. Si la selección o la palabra ya están en negrita, dicho formato se quita." #. Gwzyy #: 05110100.xhp @@ -25520,7 +25493,7 @@ "par_id3152996\n" "help.text" msgid "The Line tab of the Data Series dialog is only available if you select an XY Chart type." -msgstr "La ficha Línea del diálogo Fila de datos sólo está disponible si se selecciona el tipo de gráfico XY." +msgstr "La pestaña Línea del cuadro de diálogo Serie de datos solo está disponible si se selecciona el tipo de gráfico XY." #. 5Zzm3 #: 05200100.xhp @@ -27338,7 +27311,7 @@ "par_id3148924\n" "help.text" msgid "Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw." -msgstr "Agrega una sombra al objeto seleccionado. Si el objeto ya tiene una, ésta se borra. Si hace clic en este icono cuando no hay ningún objeto seleccionado, la sombra se agrega al siguiente objeto que se dibuja." +msgstr "Agrega una sombra al objeto seleccionado. Si el objeto ya tiene una, esta se borra. Si pulsa en este icono cuando no hay ningún objeto seleccionado, la sombra se agrega al siguiente objeto que se dibuja." #. gjXA8 #: 05210600.xhp @@ -27428,7 +27401,7 @@ "par_id3147226\n" "help.text" msgid "Turns off color transparency. This is the default setting." -msgstr "Desactiva la transparencia de color. Ésta es la configuración predeterminada." +msgstr "Desactiva la transparencia de color. Esta es la configuración predeterminada." #. E6yyt #: 05210700.xhp @@ -28922,7 +28895,7 @@ "hd_id3151330\n" "help.text" msgid "Callout Styles" -msgstr "Campos de opción gráficos" +msgstr "Estilos de llamada" #. eagHb #: 05230500.xhp @@ -28931,7 +28904,7 @@ "par_id3149760\n" "help.text" msgid "Click the Callout style that you want to apply to the selected callout." -msgstr "Pulse en el estilo Llamada que se debe aplicar a la llamada seleccionada." +msgstr "Pulse en el estilo de llamada que se debe aplicar a la llamada seleccionada." #. aVWTp #: 05230500.xhp @@ -29057,7 +29030,7 @@ "tit\n" "help.text" msgid "Vertically" -msgstr "Vertical" +msgstr "Verticalmente" #. 6h8C2 #: 05240100.xhp @@ -29084,7 +29057,7 @@ "tit\n" "help.text" msgid "Horizontally" -msgstr "Horizontal" +msgstr "Horizontalmente" #. gDSQC #: 05240200.xhp @@ -31415,7 +31388,7 @@ "par_id3151211\n" "help.text" msgid "Aligns the contents of the cell to the top and to the bottom cell borders." -msgstr "Alinea el contenido de la celda a los bordes superior e inferior de ésta." +msgstr "Alinea el contenido de la celda a los bordes superior e inferior de esta." #. S43Af #: 05340300.xhp @@ -31901,7 +31874,7 @@ "par_id3149064\n" "help.text" msgid "Drag and drop only works in Edit mode." -msgstr "Arrastrar y colocar sólo funciona en el modo Editar." +msgstr "La técnica de arrastrar y colocar funciona solo en el modo de edición." #. 47b47 #: 05340400.xhp @@ -33179,7 +33152,7 @@ "par_id3155391\n" "help.text" msgid "Specify the light source for the object, as well as the color of the light source and of the ambient light. You can define up to eight different light sources." -msgstr "Especifique la fuente de luz del objeto, así como el color de ésta y el de la luz ambiental. Puede definir un máximo de ocho fuentes de luz distintas." +msgstr "Especifique la fuente de luz del objeto, así como el color de esta y el de la luz ambiental. Puede definir un máximo de ocho fuentes de luz distintas." #. 2uF7R #: 05350400.xhp @@ -37031,7 +37004,7 @@ "par_id3148925\n" "help.text" msgid "Changes the language setting for the paragraph that contains the highlighted word, if the word is found in another dictionary." -msgstr "Cambia la configuración del idioma para el párrafo que contiene la palabra resaltada si ésta se encuentra en otro diccionario." +msgstr "Cambia la configuración del idioma para el párrafo que contiene la palabra resaltada si esta se encuentra en otro diccionario." #. cJB6R #: 06040600.xhp @@ -41171,7 +41144,7 @@ "par_idN10575\n" "help.text" msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size." -msgstr "Solamente puede importar iconos que están en el formato PNG y que están de 16x16 ó 26x26 píxeles en tamaño." +msgstr "Solamente puede importar iconos que estén en el formato PNG y cuyo tamaño sea de 16 × 16 o 24 × 24 píxeles." #. RLa8G #: 06140402.xhp @@ -41198,7 +41171,7 @@ "bm_id3152427\n" "help.text" msgid "customizing; events events; customizing" -msgstr "" +msgstr "personalizar; sucesossucesos; personalizar" #. gvzR4 #: 06140500.xhp @@ -41252,7 +41225,7 @@ "par_id3153662\n" "help.text" msgid "A macro that is saved with a document can only be run when that document is opened." -msgstr "Una macro guardada con un documento sólo puede ejecutarse al abrir éste." +msgstr "Una macro guardada con un documento puede ejecutarse solo al abrir este." #. Ge58b #: 06140500.xhp @@ -41324,7 +41297,7 @@ "par_id3152349\n" "help.text" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Suprime la asignación de macro o componente del suceso seleccionado." #. QTTif #: 06140500.xhp @@ -41378,7 +41351,7 @@ "par_id3152937\n" "help.text" msgid "Opens the XML Filter Settings dialog, where you can create, edit, delete, and test filters to import and to export XML files." -msgstr "" +msgstr "Abre el cuadro de diálogo Configuración de filtros XML, donde es posible crear, editar, eliminar y poner a prueba filtros para importar o exportar archivos XML." #. 23hBt #: 06150000.xhp @@ -51143,7 +51116,7 @@ "par_id3994567\n" "help.text" msgid "The possible settings of the Data tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:" -msgstr "Las opciones de configuración de la ficha Datos disponibles para un control, dependen del control correspondiente. Sólo se mostrarán las opciones disponibles para el control y contexto actuales. Los campos siguientes están disponibles:" +msgstr "Las configuraciones de la pestaña Datos disponibles para un control dependen del control respectivo. Solo se mostrarán las opciones disponibles para el control y el contexto actuales. Los campos siguientes están disponibles:" #. FykLd #: xformsdatatab.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-03-19 13:22+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -1328,7 +1328,7 @@ "par_idN11D2E\n" "help.text" msgid "Specifies the amount that a large step scrolls a scrollbar, for example, when you click between the scrollbar thumb and a scrollbar arrow." -msgstr "Determina el desplazamiento de un paso largo en una barra de desplazamiento, por ejemplo, al hacer clic entre el control de la barra de desplazamiento y una flecha de ésta." +msgstr "Determina el desplazamiento de un paso largo en una barra de desplazamiento, por ejemplo, al pulsar entre el control de la barra de desplazamiento y una flecha de esta." #. 34PS4 #: 01170000.xhp @@ -3434,7 +3434,7 @@ "par_id3156712\n" "help.text" msgid "The \"Tristate\" property is only defined for database forms, not for HTML forms." -msgstr "" +msgstr "La propiedad «Estado triple» se define únicamente para los formularios de base de datos, no para los HTML." #. jBMd3 #: 01170101.xhp @@ -3605,7 +3605,7 @@ "par_id3150829\n" "help.text" msgid "The characters a-z and A-Z can be entered. Capital characters are not converted to lowercase characters." -msgstr "" +msgstr "Se pueden introducir caracteres entre a-z y A-Z. Las mayúsculas no se convierten en minúsculas." #. MBwus #: 01170101.xhp @@ -3614,7 +3614,7 @@ "par_id3156140\n" "help.text" msgid "The characters A-Z can be entered. If a lowercase letter is entered, it is automatically converted to a capital letter." -msgstr "" +msgstr "Se pueden introducir caracteres entre A-Z. Si se escribe una letra minúscula, se convierte automáticamente en mayúscula." #. REnSG #: 01170101.xhp @@ -3641,7 +3641,7 @@ "par_id3150979\n" "help.text" msgid "Only the characters 0-9 can be entered." -msgstr "" +msgstr "Solamente se pueden introducir los caracteres entre 0-9." #. yDGGq #: 01170101.xhp @@ -3758,7 +3758,7 @@ "par_id3148600\n" "help.text" msgid "The next document is created in the same frame." -msgstr "El documento siguiente se inserta en el mismo frame." +msgstr "El documento siguiente se inserta en el mismo marco." #. oCgYA #: 01170101.xhp @@ -7007,7 +7007,7 @@ "par_idN110C1\n" "help.text" msgid "Enter a formula into the linked cell:" -msgstr "" +msgstr "Introduzca una fórmula en la celda enlazada:" #. 6eiTT #: 01170102.xhp @@ -7097,7 +7097,7 @@ "par_idN1110C\n" "help.text" msgid "Text is copied into the linked cell." -msgstr "" +msgstr "El texto se copia en la celda enlazada." #. EuxYn #: 01170102.xhp @@ -7907,7 +7907,7 @@ "par_id3152933\n" "help.text" msgid "From the table control, the individual columns are always transmitted. The name of the control, the name of the column, and the value of the column are sent. Using the Get method with URL encoding, the transmission is done in the form .=, for example, with the value being dependent on the column." -msgstr "Desde el control de tabla se transmiten siempre las columnas individuales. Se envían el nombre del campo de control, el nombre de la columna y el valor de ésta. Si se utiliza el método Get con codificación de URL, la transmisión se efectúa de la siguiente forma: .=, por ejemplo, siendo el valor dependiente de la columna." +msgstr "Desde el control de tabla se transmiten siempre las columnas individuales. Se envían el nombre del control, el nombre de la columna y el valor de esta. Si se utiliza el método Get con codificación de URL, la transmisión se efectúa de la siguiente forma: .=, por ejemplo, siendo el valor dependiente de la columna." #. GGH2R #: 01170202.xhp @@ -18329,7 +18329,7 @@ "par_id3147396\n" "help.text" msgid "Opens a dialog to determine the number of poster colors. This effect is based on the reduction of the number of colors. It makes photos look like paintings." -msgstr "" +msgstr "Abre un cuadro de diálogo para determinar el número de colores de póster. Este efecto se basa en la reducción del número de colores. Hace que las fotos tengan aspecto de pinturas." #. LjfdE #: 24010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/04.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/04.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-13 19:58+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -104,7 +104,7 @@ "par_id851591272526169\n" "help.text" msgid "You can enter arbitrary Unicode characters in the document typing the Unicode hexadecimal code point and then pressing Command+Option+XAlt+X (default). Type the Unicode hexadecimal notation and press Command+Option+XAlt+X to toggle between the Unicode character and its hexadecimal notation. Selection is not necessary but the conversion will apply to the selected characters. Toggling occurs on the characters prior to the cursor position when these characters form a valid Unicode hexadecimal point. Hexadecimal code points with value in the range U+0000 to U+0020 are not converted." -msgstr "" +msgstr "Puede introducir en el documento caracteres de Unicode cualesquiera si escribe el punto de código Unicode hexadecimal y presiona a continuación ⌘⌥XAlt + X (atajo predeterminado). Escriba la notación hexadecimal de Unicode y oprima ⌘⌥XAlt +X para alternar entre el carácter Unicode y su notación hexadecimal. No hace falta hacer una selección con antelación, pero si la efectúa, la conversión se aplicará a los caracteres que seleccione. El cambio se produce en los caracteres que estén justo antes del cursor si estos forman un punto hexadecimal Unicode válido. No se convierten los puntos cuyo valor se sitúa en el intervalo comprendido entre U+0000 y U+0020." #. u4AsW #: 01010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/05.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/05.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-25 18:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1549984106.000000\n" #. WPTtk @@ -1400,7 +1400,7 @@ "hd_id561534964266978\n" "help.text" msgid "The Module List" -msgstr "" +msgstr "La lista de módulos" #. QNkEX #: new_help.xhp @@ -1670,7 +1670,7 @@ "hd_id841534888870987\n" "help.text" msgid "Copying Help contents to clipboard" -msgstr "" +msgstr "Copiar el contenido de la Ayuda en el portapapeles" #. YcBZG #: new_help.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -10229,7 +10229,7 @@ "par_id7022003\n" "help.text" msgid "If you click the Page Header or Page Footer area without selecting any object, you see the General tab page for that area." -msgstr "Si hace clic en el área de Encabezado o Pie de página sin seleccionar ningún objeto, verá la pestaña General del área correspondiente." +msgstr "Si pulsa en el área de Cabecera o Pie sin seleccionar ningún objeto, verá la pestaña General del área correspondiente." #. xACk2 #: rep_prop.xhp @@ -10292,7 +10292,7 @@ "par_id7466963\n" "help.text" msgid "If you click the Detail area without selecting any object, you see the General tab page for that area." -msgstr "Si hace clic en el área de Detalle sin seleccionar ningún objeto, verá la pestaña General para esta área." +msgstr "Si pulsa en el área de Detalle sin seleccionar ningún objeto, verá la pestaña General para esta área." #. kmEmG #: rep_prop.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -896,7 +896,7 @@ "par_id3152921\n" "help.text" msgid "Click the button on the edge of the docked window to show or hide the docked window. The AutoHide function allows you to temporarily show a hidden window by clicking on its edge. When you click in the document, the docked window hides again." -msgstr "Pulse en el botón del borde de la ventana acoplada para mostrarla u ocultarla. La función de ocultación automática permite mostrar momentáneamente una ventana oculta haciendo clic en el borde. Cuando se hace clic en el documento, la ventana acoplada se oculta de nuevo." +msgstr "Pulse en el botón del borde de la ventana acoplada para mostrarla u ocultarla. La función de ocultación automática permite mostrar momentáneamente una ventana oculta pulsando en el borde. Cuando se pulsa en el documento, la ventana acoplada se oculta de nuevo." #. ZSCL9 #: background.xhp @@ -4550,7 +4550,7 @@ "par_impress6\n" "help.text" msgid "Draw 8" -msgstr "" +msgstr "Draw 8" #. u7rfv #: convertfilters.xhp @@ -4568,7 +4568,7 @@ "par_impress12\n" "help.text" msgid "Impress 8" -msgstr "" +msgstr "Impress 8" #. QGZqj #: convertfilters.xhp @@ -5495,7 +5495,7 @@ "par_id3151210\n" "help.text" msgid "An inserted drawing object is anchored to the current cell. You can change the anchor between cell and page by selecting the object and clicking the Change Anchor icon Icon." -msgstr "Un objeto de dibujo insertado se ancla a la celda. Puede cambiar el ancla entre la celda y la página si selecciona el objeto y hace clic en el icono Cambiar ancla Icono." +msgstr "Un objeto de dibujo insertado se ancla a la celda. Puede cambiar el ancla entre la celda y la página si selecciona el objeto y pulsa en el icono Cambiar ancla Icono." #. xRQut #: copytable2application.xhp @@ -7493,7 +7493,7 @@ "par_id3152462\n" "help.text" msgid "If you click the Apply Form-Based Filter icon on the Form Filter toolbar, the filter will be applied. You see the Form Navigation toolbar and can browse through the found records." -msgstr "Si hace clic en el icono Aplicar filtro de formularios de la barra de herramientas Filtro de formularios, se aplicará el filtro. Se abre la barra de herramientas Navegación de formularios, que permite examinar los registros encontrados." +msgstr "Si pulsa en el icono Aplicar filtro de formularios de la barra de herramientas Filtro de formularios, se aplicará el filtro. Se abre la barra de herramientas Navegación de formularios, que permite examinar los registros encontrados." #. CdBD5 #: data_search2.xhp @@ -7502,7 +7502,7 @@ "par_id3145273\n" "help.text" msgid "If you click on the Close button on the Form Filter toolbar, the form is displayed without a filter." -msgstr "Si hace clic en el botón Cerrar de la barra de herramientas Filtro de formularios, el formulario se muestra sin filtros." +msgstr "Si pulsa en el botón Cerrar de la barra de herramientas Filtro de formularios, el formulario se muestra sin filtros." #. P5nBh #: data_search2.xhp @@ -8645,7 +8645,7 @@ "par_id4381847\n" "help.text" msgid "If you click Continue, you may see a dialog that asks you to enter your user name and password." -msgstr "Si hace clic en Continuar, puede que ver un diálogo que le pide introducir su nombre de usuario y contraseña." +msgstr "Si pulsa en Continuar, puede que vea un diálogo que le solicitará su nombre de usuario y contraseña." #. sBMvT #: digitalsign_receive.xhp @@ -19571,7 +19571,7 @@ "par_id3150775\n" "help.text" msgid "All documents that are saved in OpenDocument format can be saved with a password. Documents that are saved with a password cannot be opened without the password. The content is secured so that it cannot be read with an external editor. This applies to content, graphics and OLE objects." -msgstr "Todos los documentos guardados con formato XML se pueden guardar con una contraseña. Los documentos guardados con una contraseña no se pueden abrir sin ésta. El contenido se asegura, de forma que no puede leerse con un editor externo. Esto se aplica al contenido, las imágenes y los objetos OLE." +msgstr "Todos los documentos guardados en un formato OpenDocument pueden guardarse con una contraseña. Los documentos guardados con una contraseña no se pueden abrir sin esta. El contenido se protege de forma que no pueda leerse con un editor externo. Esto se aplica al contenido, las imágenes y los objetos OLE." #. i9B3Z #: protection.xhp @@ -20678,7 +20678,7 @@ "par_id3156119\n" "help.text" msgid "Changes in a spreadsheet document are highlighted by a border around the cells; when you point to the cell you can see more detailed information on this change in the Help Tip." -msgstr "Los cambios efectuados en una hoja de cálculo se destacan mediante un borde alrededor de las celdas. Cuando éstas se señalan con el cursor, la información detallada correspondiente a dicha modificación aparecerá en la ventana de la Ayuda emergente." +msgstr "Los cambios efectuados en una hoja de cálculo se destacan mediante un borde alrededor de las celdas. Cuando estas se señalan con el puntero, la información detallada correspondiente a dicha modificación aparecerá en la descripción emergente." #. LAx8Z #: redlining_enter.xhp @@ -25259,7 +25259,7 @@ "par_idN10A44\n" "help.text" msgid "The files that are specified on the Transformation tab page are copied to the local %PRODUCTNAME users directory." -msgstr "Los archivos que se especifican en la ficha Transformación se copian en el directorio de usuarios de %PRODUCTNAME local." +msgstr "Los archivos que se especifican en la pestaña Transformación se copian en el directorio local de usuarios de %PRODUCTNAME." #. 8HBJv #: xsltfilter_create.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-17 19:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -9905,7 +9905,7 @@ "par_id3150449\n" "help.text" msgid "If you insert rows or columns in the middle of a reference area, the reference is always expanded." -msgstr "Si inserta filas o columnas en el centro de un área de referencia, ésta siempre se expande." +msgstr "Si inserta filas o columnas en el centro de un área de referencia, esta siempre se expande." #. 7mH7f #: 01060300.xhp @@ -10022,7 +10022,7 @@ "par_id3150503\n" "help.text" msgid "Displays all the available lists. These lists can be selected for editing." -msgstr "Muestra todas las listas disponibles. Estas listas pueden ser editadas." +msgstr "Muestra todas las listas disponibles. Estas listas pueden seleccionarse para editarlas." #. iLCLL #: 01060400.xhp @@ -10292,7 +10292,7 @@ "par_id3156155\n" "help.text" msgid "Type the text 'Selling price' in cell A5, the text 'Net' in cell A6, and the text 'Value-added tax' in cell A7." -msgstr "Escriba el texto 'Precio de venta' en la celda A5, 'Neto' en la celda A6 e 'IVA' en la celda A7." +msgstr "Escriba el texto «Precio de venta» en la celda A5, «Neto» en la celda A6 e «IVA» en la celda A7." #. FEk8i #: 01060500.xhp @@ -10319,7 +10319,7 @@ "par_id3154760\n" "help.text" msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the Status Bar." -msgstr "Active las iteraciones para calcular las fórmulas correctamente; en caso contrario, en la barra de estado se mostrará el error 'Referencia circular'." +msgstr "Active las iteraciones para calcular las fórmulas correctamente; en caso contrario, en la barra de estado se mostrará el error «Referencia circular»." #. GykKF #: 01060500.xhp @@ -13217,7 +13217,7 @@ "par_id3149398\n" "help.text" msgid "This table is used as a means of replacing the chart colors for the selected data rows. For example, if you selected data row 6 and then click on the color green 8, the old color of the data row is replaced by green 8. The name of the selected color is shown below the color table." -msgstr "Esta tabla se usa para sustituir los colores de las filas de datos seleccionadas en los gráficos. Por ejemplo, si selecciona la fila de datos 6 y hace clic en el color verde 8, el anterior color de la fila de datos se sustituye por el verde 8. El nombre del color seleccionado se muestra debajo de la paleta de colores." +msgstr "Esta tabla se usa para sustituir los colores de las filas de datos seleccionadas en los gráficos. Por ejemplo, si selecciona la fila de datos 6 y pulsa en el color verde 8, el anterior color de la fila de datos se sustituye por el verde 8. El nombre del color seleccionado se muestra debajo de la paleta de colores." #. eLbLr #: 01110100.xhp @@ -16889,7 +16889,7 @@ "par_id7824030\n" "help.text" msgid "A check will be performed once a week. This is the default setting." -msgstr "Se realizará una comprobación una vez a la semana. Ésta es la configuración predeterminada." +msgstr "Se realizará una comprobación una vez a la semana. Esta es la configuración predeterminada." #. bahKS #: online_update.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/simpress/01.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/simpress/01.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/simpress/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/simpress/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -3137,7 +3137,7 @@ "par_id3153190\n" "help.text" msgid "Inserts a copy of the current slide after the current slide." -msgstr "Inserta una copia de la diapositiva actual a continuación de ésta." +msgstr "Inserta una copia de la diapositiva actual a continuación de esta." #. TiHjB #: 04130000.xhp @@ -5108,7 +5108,7 @@ "par_idN10744\n" "help.text" msgid "Select to advance to the next slide on a mouse click." -msgstr "Seleccione para pasar a la siguiente diapositiva con un clic del ratón." +msgstr "Seleccione para pasar a la siguiente diapositiva con una pulsación del ratón." #. SFpX3 #: 06040000.xhp @@ -8744,7 +8744,7 @@ "par_idN106BA\n" "help.text" msgid "Until next click - the animation is repeated until the next mouse click." -msgstr "Hasta el siguiente clic: la animación se repite hasta que se hace clic con el ratón." +msgstr "Hasta la próxima pulsación: la animación se repite hasta que se pulsa con el ratón." #. 7W7BZ #: effectoptionstiming.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/simpress/02.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/simpress/02.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/simpress/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/simpress/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-09-04 05:35+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1534121568.000000\n" #. AiACn @@ -3182,7 +3182,7 @@ "par_id3147511\n" "help.text" msgid "Draws a pyramid with a square base where you drag in the slide. To draw a pyramid with a rectangular base, hold down Shift while you drag. To define a different polygon for the base of the pyramid, open the 3D Effects dialog and click the Geometry tab. In the Segments area, enter the number of sides for the polygon in the box labeled Horizontal, and then click the green checkmark." -msgstr "Dibuja una pirámide de base cuadrada al arrastrar en la diapositiva. Para dibujar una pirámide de base rectangular, mantenga pulsada la tecla Mayús al arrastrar. Para definir un polígono distinto como base de la pirámide, abra el diálogo Efectos 3D y pulse en la ficha Geometría. En el área Segmentos, escriba el número de caras del polígono en el cuadro Horizontal y, a continuación, pulse en la marca de verificación verde." +msgstr "Dibuja una pirámide de base cuadrada al arrastrar en la diapositiva. Para dibujar una pirámide de base rectangular, mantenga oprimida la tecla Mayús al arrastrar. Para definir un polígono distinto como base de la pirámide, abra el cuadro de diálogo Efectos 3D y pulse en la pestaña Geometría. En el apartado Segmentos, escriba el número de caras del polígono en el cuadro Horizontal y, a continuación, pulse en la marca de verificación verde." #. foMAw #: 10090000.xhp @@ -5684,7 +5684,7 @@ "par_id3155443\n" "help.text" msgid "Icon Exit all groups" -msgstr "" +msgstr "Icono Salir de todos los grupos" #. CGmZy #: 13100000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/simpress/04.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/simpress/04.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/simpress/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/simpress/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-03-13 12:06+0100\n" -"PO-Revision-Date: 2020-12-21 16:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1513969565.000000\n" #. mYCYv @@ -1589,7 +1589,7 @@ "par_id3155908\n" "help.text" msgid "Select adjacent items or a text passage. Click at the start of a selection, move to the end of the selection, and then hold down Shift while you click." -msgstr "Seleccionar elementos adyacentes o un fragmento de texto. Pulse al principio de una selección, desplácese hasta el final de ésta, y pulse con el ratón mientras mantiene oprimida la tecla Mayús." +msgstr "Seleccionar elementos adyacentes o un fragmento de texto. Pulse al principio de una selección, desplácese hasta el final de esta y pulse con el ratón mientras mantiene oprimida la tecla Mayús." #. EL4xV #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-19 13:22+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5144,7 +5144,7 @@ "par_id3154621\n" "help.text" msgid "When using the align instructions, note that" -msgstr "Al trabajar con las instrucciones align, tenga en cuenta que éstas" +msgstr "Al trabajar con las instrucciones de alineación, tenga en cuenta que estas" #. BmL9t #: 03090700.xhp @@ -6899,7 +6899,7 @@ "par_id3154694\n" "help.text" msgid "The spaces in the examples are required for the correct structure. You may not delete them when making entries in the Commands window." -msgstr "Los espacios de los ejemplos son imprescindibles para la correcta construcción de la fórmula, por lo que no deben omitirse cuando se introduce ésta en el cuadro Órdenes." +msgstr "Los espacios de los ejemplos son imprescindibles para la correcta construcción de la fórmula, por lo que no deben omitirse cuando se introduce esta en el cuadro Órdenes." #. AB9LN #: 03091500.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-22 18:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -716,7 +716,7 @@ "par_id3149490\n" "help.text" msgid "Click the plus sign (+) (or arrow) next to a category in the Navigator to view the items in the category. To view the number of items in a category, rest your mouse pointer over the category in the Navigator. To jump to an item in the document, double-click the item in the Navigator." -msgstr "" +msgstr "Pulse en el signo de suma (+) o la flecha situada junto a una categoría del Navegador para visualizar los elementos de esta. Para ver el número de elementos en una categoría, pose el puntero del ratón sobre esta. Para saltar a un elemento del documento, pulse dos veces sobre el elemento correspondiente en el Navegador." #. WD2Zz #: 02110000.xhp @@ -725,7 +725,7 @@ "par_id3149106\n" "help.text" msgid "To jump to the next or previous item in a document, use the Navigate by box to select the item category, and then click the up or down arrows." -msgstr "" +msgstr "Para saltar al próximo o al anterior elemento de un documento, sírvase del cuadro Navegar por para seleccionar la categoría de elemento y, acto seguido, pulse una de las flechas." #. 87cKG #: 02110000.xhp @@ -743,7 +743,7 @@ "par_id171603114951991\n" "help.text" msgid "Use selection box to choose which type of item should be navigated, when using the Previous and Next buttons." -msgstr "" +msgstr "Utilice el cuadro de selección para elegir por cuál tipo de elemento navegar al utilizar los botones Anterior y Siguiente." #. GVCyP #: 02110000.xhp @@ -1949,7 +1949,7 @@ "par_id3149844\n" "help.text" msgid "If you click this icon in the Navigator or in the lower right of the document window, a toolbar will appear which enables you to choose among the existing targets within a document. You can then use the up and down arrow icons to position the text cursor in the document on the previous or next target." -msgstr "Si hace clic en este símbolo del Navegador o en la parte inferior derecha de la ventana del documento, aparecerá una barra de herramientas que permite elegir entre distintos destinos de un documento. Puede utilizar los símbolos de flecha arriba y abajo para colocar el cursor del texto en el documento en el destino anterior o siguiente." +msgstr "Si pulsa en este icono del Navegador o en la parte inferior derecha de la ventana del documento, aparecerá una barra de herramientas que permite elegir entre distintos destinos de un documento. Puede utilizar los iconos de flecha arriba y abajo para colocar el cursor del texto en el documento en el destino anterior o siguiente." #. 9YmHX #: 02110100.xhp @@ -8015,7 +8015,7 @@ "par_id3147084\n" "help.text" msgid "Select the macro that you want to run when the field is clicked." -msgstr "Seleccione el macro que desea ejecutar cuando le hace clic en el campo." +msgstr "Seleccione la macro que debe ejecutarse cuando se pulsa en el campo." #. DVBiB #: 04090003.xhp @@ -8276,7 +8276,7 @@ "par_id3147455\n" "help.text" msgid "This dialog is shown when you click an Input list field in the document." -msgstr "Este diálogo se muestra cuando se hace clic sobre el campo de Lista de entrada en el documento." +msgstr "Este cuadro de diálogo se muestra cuando se pulsa en un campo de Lista de entrada del documento." #. CXxFZ #: 04090003.xhp @@ -16864,7 +16864,7 @@ "hd_id3154646\n" "help.text" msgid "Footnote area" -msgstr "Área de la nota al pie" +msgstr "Área de notas al pie" #. ZmaA9 #: 05040600.xhp @@ -20248,7 +20248,7 @@ "par_id3149167\n" "help.text" msgid "Allows you to edit the contents of a frame in a document that is read-only (write-protected)." -msgstr "Permite editar el contenido de un marco en un documento que es de sólo lectura (protegido contra escritura)." +msgstr "Permite editar el contenido de un marco en un documento que es de solo lectura (protegido contra escritura)." #. mtDxD #: 05060900.xhp @@ -25549,7 +25549,7 @@ "hd_id3148845\n" "help.text" msgid "Footnote area" -msgstr "Área de la nota al pie" +msgstr "Área de notas al pie" #. vnEDK #: 06080100.xhp @@ -27286,7 +27286,7 @@ "par_idN10559\n" "help.text" msgid "Starts the Mail Merge Wizard to create form letters or send email messages to many recipients." -msgstr "" +msgstr "Inicia el Asistente para combinar correspondencia para crear cartas modelo o enviar mensajes de correo electrónico a muchos destinatarios." #. bXSUB #: mailmerge00.xhp @@ -27547,7 +27547,7 @@ "hd_id6954863\n" "help.text" msgid "Email message" -msgstr "" +msgstr "Mensaje de correo electrónico" #. YA54f #: mailmerge02.xhp @@ -27556,7 +27556,7 @@ "par_idN10561\n" "help.text" msgid "Creates mail merge documents that you can send as an email message or an email attachment." -msgstr "" +msgstr "Crea documentos de combinación de correspondencia que puede enviar como un mensaje de correo electrónico o como un archivo adjunto a un mensaje." #. 8sABv #: mailmerge02.xhp @@ -27565,7 +27565,7 @@ "par_idN10572\n" "help.text" msgid "Next step: Mail Merge Wizard - Addresses" -msgstr "Próximo paso: Asistente para combinar correspondencia: direcciones" +msgstr "Próximo paso: Asistente para combinar correspondencia. Direcciones" #. 44eW3 #: mailmerge02.xhp @@ -27583,7 +27583,7 @@ "tit\n" "help.text" msgid "Mail Merge Wizard - Addresses" -msgstr "Asistente para combinar correspondencia - Direcciones" +msgstr "Asistente para combinar correspondencia. Direcciones" #. AZpRf #: mailmerge03.xhp @@ -27592,7 +27592,7 @@ "par_idN10543\n" "help.text" msgid "Mail Merge Wizard - Addresses" -msgstr "Asistente para combinar correspondencia - Direcciones" +msgstr "Asistente para combinar correspondencia. Direcciones" #. pdX8B #: mailmerge03.xhp @@ -27619,7 +27619,7 @@ "par_idN10556\n" "help.text" msgid "The title of this page is Insert address block for letters and Select address list for email messages." -msgstr "" +msgstr "El título de esta página es Insertar bloque de dirección para las cartas y Elegir lista de direcciones para los mensajes de correo electrónico." #. GEW7x #: mailmerge03.xhp @@ -28330,7 +28330,7 @@ "par_idN10559\n" "help.text" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Introduzca los destinatarios de las copias ocultas de correo electrónico, separados por un punto y coma (;)." #. FHSJ5 #: mm_cusaddlis.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -2093,7 +2093,7 @@ "par_id3154263\n" "help.text" msgid "You can choose from the following statistical functions:" -msgstr "" +msgstr "Puede elegir de entre las funciones estadísticas siguientes:" #. AeKzo #: 14020000.xhp @@ -3146,7 +3146,7 @@ "par_id3147511\n" "help.text" msgid "Inserts the current date as a field. The default date format is used, and the date is not automatically updated." -msgstr "Inserta la fecha en forma de campo. Se usa el formato de fecha predeterminado y ésta no se actualiza automáticamente." +msgstr "Inserta la fecha en forma de campo. Se usa el formato de fecha predeterminado y esta no se actualiza automáticamente." #. Nb7FF #: 18030100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-22 18:36+0000\n" +"PO-Revision-Date: 2021-04-26 13:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -5180,7 +5180,7 @@ "par_id7540818\n" "help.text" msgid "When you click Replace All, Writer replaces all text that matches your entry." -msgstr "Si hace clic en Reemplazar todo, Writer reemplaza todo el texto que contiene las palabras introducidas." +msgstr "Si pulsa en Reemplazar todo, Writer reemplaza todo el texto que contiene las palabras introducidas." #. yYuiK #: finding.xhp @@ -9509,7 +9509,7 @@ "par_id3153416\n" "help.text" msgid "Follow the scanning instructions." -msgstr "Siga las instrucciones de escaneado." +msgstr "Siga las instrucciones de digitalización." #. FobBn #: insert_tab_innumbering.xhp @@ -10895,7 +10895,7 @@ "par_id3155895\n" "help.text" msgid "Choose Format - Bullets and Numbering, and then click the Customize tab." -msgstr "" +msgstr "Vaya a Formato ▸ Numeración y viñetas y, a continuación, pulse en la pestaña Personalizar." #. UiczS #: numbering_paras.xhp @@ -10931,7 +10931,7 @@ "tit\n" "help.text" msgid "Inserting and Deleting Page Breaks" -msgstr "Insertar y borrar saltos de página" +msgstr "Insertar y eliminar saltos de página" #. jCD3e #: page_break.xhp @@ -11804,7 +11804,7 @@ "par_idN1071D\n" "help.text" msgid "$[officename] uses page styles to specify the orientation of the pages in a document. Page styles define more page properties, as for example header and footer or page margins. You can either change the “Default” page style for the current document, or you can define own page styles and apply those page styles to any parts of your text." -msgstr "$[officename] utiliza estilos de página para especificar la orientación de las páginas de un documento. Los estilos de página definen más propiedades de página como, por ejemplo, el encabezado o pie de página o los márgenes de página. Puede cambiar bien el estilo de página “Predeterminado” del documento actual o definir sus propios estilos de página y aplicarlos a cualquier para del texto." +msgstr "$[officename] utiliza estilos de página para especificar la orientación de las páginas de un documento. Los estilos de página definen más propiedades de la página como, por ejemplo, la cabecera, el pie o los márgenes. Puede cambiar bien el estilo de página «Predeterminado» del documento actual o bien definir sus propios estilos de página y aplicarlos a cualquier parte del texto." #. KWnxa #: pageorientation.xhp @@ -14126,7 +14126,7 @@ "tit\n" "help.text" msgid "Using Regular Expressions in Text Searches" -msgstr "" +msgstr "Utilizar expresiones regulares en las búsquedas de texto" #. BfcDE #: search_regexp.xhp @@ -14234,7 +14234,7 @@ "par_id3149641\n" "help.text" msgid "The regular expression for a single character is a period (.)." -msgstr "" +msgstr "La expresión regular que representa un único carácter es el punto (.)." #. bDZCd #: search_regexp.xhp @@ -14270,7 +14270,7 @@ "par_id0509200916345545\n" "help.text" msgid "The regular expression for a tab character is \\t." -msgstr "" +msgstr "La expresión regular que representa una tabulación es \\t." #. peHPz #: search_regexp.xhp @@ -17564,7 +17564,7 @@ "par_id3150223\n" "help.text" msgid "On the Frame Bar, click the Link Frames iconIcon." -msgstr "" +msgstr "En la barra Marco, pulse en el icono Enlazar marcos Icono." #. vEBwD #: text_frame.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/librelogo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-03-04 16:36+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551390710.000000\n" #. kypzs @@ -68,7 +68,7 @@ "par_230\n" "help.text" msgid "The LibreLogo toolbar (View - Toolbars - Logo) contains turtle moving, program start, stop, home, clear screen, program editor/syntax highlighting/translating icons and an input bar (command line)." -msgstr "La barra de herramientas de LibreLogo (Ver ▸ Barras de herramientas ▸ Logo) contiene iconos para mover la tortuga, iniciar y detener el programa, ir al inicio, vaciar la pantalla, editar el código, resaltar la sintaxis y traducirla, así como una barra de entrada de datos (línea de órdenes)." +msgstr "La barra de herramientas de LibreLogo (Ver ▸ Barras de herramientas ▸ Logo) contiene iconos para mover la tortuga, iniciar y detener el programa, ir al inicio, vaciar la pantalla, editar el código, colorear la sintaxis y traducirla, así como una barra de entrada de datos (línea de órdenes)." #. UBade #: LibreLogo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/menu.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter/menu.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter/menu.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2020-11-03 13:21+0000\n" +"PO-Revision-Date: 2021-04-23 23:05+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1464549482.000000\n" #. tP5yN @@ -194,7 +194,7 @@ "par_id911601651828340\n" "help.text" msgid "Submenu with additional row, column, and page breaks" -msgstr "" +msgstr "Submenú con saltos adicionales de renglón, de columna y de página" #. t534N #: submenu_more_breaks.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/gug/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/gug/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-02-09 05:36+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language: es\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551206337.000000\n" #. P7iNX @@ -2759,7 +2759,7 @@ "par_id3153405\n" "help.text" msgid "This icon represents the Page Wrap option on the Wrap tab page." -msgstr "La función de este símbolo corresponde a la opción Ajuste de página de la ficha Ajuste." +msgstr "La función de este icono corresponde a la opción Ajuste de página de la pestaña Ajuste." #. euDxv #: main0215.xhp @@ -2777,7 +2777,7 @@ "par_id3147799\n" "help.text" msgid "You can also define this setting on the Wrap tab page." -msgstr "Esta configuración también se puede realizar a través de la ficha Ajuste." +msgstr "Esta configuración también se puede realizar a través de la pestaña Ajuste." #. UcRFJ #: main0215.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/he/cui/messages.po libreoffice-7.1.3~rc2/translations/source/he/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/he/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/he/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-16 10:09+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565698564.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME תומך בארבע רמות אבטחה לביצוע פקודות מאקרו (מנמוך לגבוה מאוד) ובקרת מקורות מהימנים." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "ל-%PRODUCTNAME יש גרסה ניידת המעניקה לך את היכולת לעבוד מכל מחשב. תוכלו להתקין את %PRODUCTNAME Portable לכונן הקשיח גם ללא גישת מנהל במחשב שלכם." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "רוצים לנהל את דרך הצגת ההיפר-קישורים בגיליון האלקטרוני? הכניסו אותם באמצעות פונקציית HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "רוצה לדעת את הפרמטרים החוקיים של שורת הפקודה? התחל את soffice עם ‭ --help וא -h וא -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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 "חלונית מספור הפרקים מאפשרת לקבוע טקסט להצגה לפני מספר הפרק. לדוגמה, הקלדת הביטוי „פרק” תציג „פרק 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "מלבד מפתח תוכן עניינים, %PRODUCTNAME יכול ליצור מפתחות לאיורים, טבלאות, אובייקטים, ביבליוגרפיה ואינדקסים שהוגדרו על ידי המשתמש ולסדרם בצורת מיון אלפביתית." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/he/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/he/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/he/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "\\blinking fonts\\\\flashing fonts\\" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinking" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/he/swext/mediawiki/help.po libreoffice-7.1.3~rc2/translations/source/he/swext/mediawiki/help.po --- libreoffice-7.1.2~rc2/translations/source/he/swext/mediawiki/help.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/he/swext/mediawiki/help.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: 1\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew \n" "Language: he\n" @@ -419,7 +419,7 @@ "par_id9046601\n" "help.text" msgid "If you have enabled the master password feature on the Security tab page of the Tools - Options - %PRODUCTNAME dialog, then the software can store your password and automatically insert the data where necessary. Enable the Save password checkbox to store your password." -msgstr "" +msgstr "אם הפעלת את תכונת ססמת ההורה בעמוד לשונית אבטחה תחת החלונית כלים - אפשרויות - %PRODUCTNAME אז התכנית תוכל לאחסן את הססמה שלך ולהוסיף אוטומטית את הנתונים איפה שיש צורך. יש להפעיל את תיבת הסימון שמירת ססמה כדי לאחסן את הססמה שלך." #. TpaPN #: wikiformats.xhp @@ -604,13 +604,12 @@ #. w8BUf #: wikiformats.xhp -#, fuzzy msgctxt "" "wikiformats.xhp\n" "par_id3037202\n" "help.text" msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored." -msgstr "טבלאות פשוטות נתמכות היטב. כותרות הטבלאות מתורגמות לכותרות של טבלאות בסגנון ויקי. עם זאת, עיצוב מותאם אישית של מסגרות של טבלאות, של רוחב העמודות וצבע הרקע אינם מועברים." +msgstr "טבלאות פשוטות נתמכות היטב. כותרות הטבלאות מתורגמות לכותרות של טבלאות בסגנון ויקי בהתאמה. עם זאת, עיצוב מותאם אישית של מסגרות של טבלאות, של רוחב העמודות וצבע הרקע אינם מועברים." #. DF3o9 #: wikiformats.xhp @@ -701,7 +700,7 @@ "par_id1743827\n" "help.text" msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload." -msgstr "" +msgstr "בחלונית שליחה למדיה־ויקי, יש לציין את הגדרות ההלאה הנוכחית שלך לוויקי." #. KmSsg #: wikisend.xhp @@ -710,17 +709,16 @@ "par_id664082\n" "help.text" msgid "Select the MediaWiki server where you want to publish your document. Click Add to add a new server to the list." -msgstr "" +msgstr "נא לבחור את שרת המדיה־ויקי אליו ברצונך לפרסם את המסמך. יש ללחוץ על הוספה כדי להוסיף שרת חדש לרשימה." #. D9EhE #: wikisend.xhp -#, fuzzy msgctxt "" "wikisend.xhp\n" "par_id2794885\n" "help.text" msgid "Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry." -msgstr "נא להזין את שם הערך בוויקי. זוהי הכותרת העליונה של הערך שלך בוויקי. עבור ערך חדש, השם חייב להיות ייחודי לוויקי זה. אם השם שיוזן כבר קיים, ההעלאה שלך תשכתב על ערך הוויקי הקיים." +msgstr "נא למלא את שם הערך בוויקי. זוהי הכותרת העליונה של הערך שלך בוויקי. עבור ערך חדש, השם חייב להיות ייחודי לוויקי זה. אם השם שיוזן כבר קיים, ההעלאה שלך תשכתב על ערך הוויקי הקיים." #. ACh6X #: wikisend.xhp @@ -778,7 +776,6 @@ #. 44myu #: wikisettings.xhp -#, fuzzy msgctxt "" "wikisettings.xhp\n" "par_id300607\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/he/wizards/messages.po libreoffice-7.1.3~rc2/translations/source/he/wizards/messages.po --- libreoffice-7.1.2~rc2/translations/source/he/wizards/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/he/wizards/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-02-14 10:28+0000\n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" "Last-Translator: Yaron Shahrabani \n" -"Language-Team: Hebrew \n" +"Language-Team: Hebrew \n" "Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565531865.000000\n" #. gbiMx @@ -1280,7 +1280,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:261 msgctxt "RID_AGENDAWIZARDDIALOG_START_40" msgid "Page design:" -msgstr "תכנון עמוד:" +msgstr "עיצוב עמוד:" #. jy3wH #: wizards/com/sun/star/wizards/common/strings.hrc:262 diff -Nru libreoffice-7.1.2~rc2/translations/source/hi/cui/messages.po libreoffice-7.1.3~rc2/translations/source/hi/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/hi/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hi/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:38+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2477,1071 +2477,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hi/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:00+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "बाइंडिंग्स" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/basctl/messages.po libreoffice-7.1.3~rc2/translations/source/hr/basctl/messages.po --- libreoffice-7.1.2~rc2/translations/source/hr/basctl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/basctl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-03-02 10:15+0000\n" -"Last-Translator: Mihovil Stanić \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562147386.000000\n" #. fniWp @@ -591,13 +591,13 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:52 msgctxt "basicmacrodialog|extended_tip|ok" msgid "Runs or saves the current macro." -msgstr "" +msgstr "Pokreće ili sprema trenutnu makronaredbu." #. 6SWBt #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:161 msgctxt "basicmacrodialog|extended_tip|macros" msgid "Lists the macros that are contained in the module selected in the Macro from list." -msgstr "" +msgstr "Navodi makronaredbe sadržane u modulu odabranom na popisu Makronaredbe." #. 5TRqv #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:174 @@ -609,7 +609,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:243 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 "" +msgstr "Navodi knjižnice i module u kojima možete otvoriti ili spremiti svoje makronaredbe. Da biste spremili makronaredbu s određenim dokumentom, otvorite dokument, a zatim otvorite ovaj dijaloški okvir." #. Mfysc #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:261 @@ -627,7 +627,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:319 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 "" +msgstr "Prikazuje naziv odabrane makronaredbe. Da biste stvorili ili promijenili ime makronaredbe, ovdje unesite ime." #. BpDb6 #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:330 @@ -645,7 +645,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:360 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 "" +msgstr "Otvara dijaloški okvir Prilagodi gdje odabranu makronaredbu možete dodijeliti naredbi izbornika, alatnoj traci ili događaju." #. dxu7W #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:372 @@ -657,7 +657,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:379 msgctxt "basicmacrodialog|extended_tip|edit" msgid "Starts the %PRODUCTNAME Basic editor and opens the selected macro or dialog for editing." -msgstr "" +msgstr "Pokreće %PRODUCTNAME Basic uređivač i otvara odabranu makronaredbu ili dijaloški okvir za uređivanje." #. 9Uhec #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391 @@ -669,7 +669,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:398 msgctxt "basicmacrodialog|extended_tip|delete" msgid "Creates a new macro, creates a new module or deletes the selected macro or selected module." -msgstr "" +msgstr "Stvara novu makronaredbu, stvara novi modul ili briše odabranu makronaredbu ili odabrani modul." #. XkqFC #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:410 @@ -693,7 +693,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:436 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 "" +msgstr "Otvara dijaloški okvir Makroorganizator, gdje možete dodavati, uređivati ili brisati postojeće makro module, dijaloške okvire i knjižnice." #. wAJj2 #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:448 @@ -705,7 +705,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:455 msgctxt "basicmacrodialog|extended_tip|newlibrary" msgid "Saves the recorded macro in a new library." -msgstr "" +msgstr "Sprema snimljenu makronaredbu u novu knjižnicu." #. 2xdsE #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:467 @@ -723,7 +723,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:522 msgctxt "basicmacrodialog|extended_tip|BasicMacroDialog" msgid "Opens a dialog to organize macros." -msgstr "" +msgstr "Otvara dijaloški okvir za organiziranje makronaredbi." #. MDBgX #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:12 @@ -735,7 +735,7 @@ #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:15 msgctxt "breakpointmenus|extended_tip|manage" msgid "Specifies the options for breakpoints." -msgstr "" +msgstr "Određuje opcije za točke prekida." #. faXzj #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:28 @@ -747,7 +747,7 @@ #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:32 msgctxt "breakpointmenus|extended_tip|active" msgid "Activates or deactivates the current breakpoint." -msgstr "" +msgstr "Aktivira ili deaktivira trenutnu točku prekida." #. FhiYE #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:47 @@ -759,7 +759,7 @@ #: basctl/uiconfig/basicide/ui/breakpointmenus.ui:51 msgctxt "breakpointmenus|extended_tip|properties" msgid "Specifies the options for breakpoints." -msgstr "" +msgstr "Određuje mogućnosti točke prekida." #. G55tN #: basctl/uiconfig/basicide/ui/defaultlanguage.ui:30 @@ -825,13 +825,13 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:95 msgctxt "dialogpage|extended_tip|library" msgid "Deletes the selected element or elements after confirmation." -msgstr "" +msgstr "Briše odabrani element ili elemente nakon potvrde." #. jAkNt #: basctl/uiconfig/basicide/ui/dialogpage.ui:129 msgctxt "dialogpage|extended_tip|edit" msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library." -msgstr "" +msgstr "Otvara %PRODUCTNAME Basic uređivač tako da možete izmijeniti odabranu knjižnicu." #. n9VLU #: basctl/uiconfig/basicide/ui/dialogpage.ui:141 @@ -843,7 +843,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:148 msgctxt "dialogpage|extended_tip|newmodule" msgid "Opens the editor and creates a new module." -msgstr "" +msgstr "Otvara uređivač i stvara novi modul." #. kBzSW #: basctl/uiconfig/basicide/ui/dialogpage.ui:161 @@ -855,7 +855,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:184 msgctxt "dialogpage|extended_tip|delete" msgid "Deletes the selected element or elements without requiring confirmation." -msgstr "" +msgstr "Briše odabrani element ili elemente bez potrebe za potvrdom." #. k64f4 #: basctl/uiconfig/basicide/ui/dialogpage.ui:197 @@ -867,7 +867,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:204 msgctxt "dialogpage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "Dodjeljuje ili uređuje lozinku za odabranu knjižnicu." #. sHS7f #: basctl/uiconfig/basicide/ui/dialogpage.ui:216 @@ -879,7 +879,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:223 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 "" +msgstr "Pronađite %PRODUCTNAME osnovnu knjižnicu koju želite dodati na trenutni popis, a zatim kliknite Otvori." #. ubE5G #: basctl/uiconfig/basicide/ui/dialogpage.ui:235 @@ -891,7 +891,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:261 msgctxt "dialogpage|extended_tip|DialogPage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "Popisi postojećih modula ili dijaloških okvira." #. EGyCn #: basctl/uiconfig/basicide/ui/dockingwatch.ui:113 @@ -957,7 +957,7 @@ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:127 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 "" +msgstr "Dodaje odabranu knjižnicu kao datoteku samo za čitanje. Knjižnica se ponovo učitava svaki put kad pokrenete %PRODUCTNAME." #. B9N7w #: basctl/uiconfig/basicide/ui/importlibdialog.ui:138 @@ -969,7 +969,7 @@ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:147 msgctxt "importlibdialog|extended_tip|replace" msgid "Replaces a library that has the same name with the current library." -msgstr "" +msgstr "Zamjenjuje knjižnicu koja ima isto ime kao trenutačna knjižnica." #. GGb7Q #: basctl/uiconfig/basicide/ui/importlibdialog.ui:164 @@ -981,7 +981,7 @@ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:279 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 "" +msgstr "Unesite ime ili put do knjižnice koju želite dodati. S popisa možete odabrati i biblioteku." #. XdZ7e #: basctl/uiconfig/basicide/ui/libpage.ui:44 @@ -993,7 +993,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:61 msgctxt "libpage|extended_tip|location" msgid "Select the application or the document containing the macro libraries that you want to organize." -msgstr "" +msgstr "Odaberite aplikaciju ili dokument koji sadrži knjižnice makronaredbi koje želite organizirati." #. C4mjh #: basctl/uiconfig/basicide/ui/libpage.ui:89 @@ -1005,13 +1005,13 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:153 msgctxt "libpage|extended_tip|library" msgid "Deletes the selected element or elements after confirmation." -msgstr "" +msgstr "Briše odabrani element ili elemente nakon potvrde." #. ARGtS #: basctl/uiconfig/basicide/ui/libpage.ui:187 msgctxt "libpage|extended_tip|edit" msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library." -msgstr "" +msgstr "Otvara %PRODUCTNAME osnovni uređivač tako da možete izmijeniti odabranu knjižnicu." #. AjENj #: basctl/uiconfig/basicide/ui/libpage.ui:199 @@ -1023,7 +1023,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:206 msgctxt "libpage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "Dodjeljuje ili uređuje lozinku za odabranu knjižnicu." #. bzX6x #: basctl/uiconfig/basicide/ui/libpage.ui:218 @@ -1035,7 +1035,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:225 msgctxt "libpage|extended_tip|new" msgid "Creates a new library." -msgstr "" +msgstr "Stvara novu knjižnicu." #. EBVPe #: basctl/uiconfig/basicide/ui/libpage.ui:238 @@ -1047,7 +1047,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:245 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 "" +msgstr "Pronađite %PRODUCTNAME osnovnu biblioteku koju želite dodati na trenutni popis, a zatim kliknite Otvori." #. GhHRH #: basctl/uiconfig/basicide/ui/libpage.ui:258 @@ -1059,13 +1059,13 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:281 msgctxt "libpage|extended_tip|delete" msgid "Deletes the selected element or elements without requiring confirmation." -msgstr "" +msgstr "Briše odabrani element ili elemente bez potrebe za potvrdom." #. dfZKj #: basctl/uiconfig/basicide/ui/libpage.ui:307 msgctxt "libpage|extended_tip|LibPage" msgid "Select the application or the document containing the macro libraries that you want to organize." -msgstr "" +msgstr "Odaberite aplikaciju ili dokument koji sadrži knjižnice makronaredbi koje želite organizirati." #. zrJTt #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16 @@ -1077,13 +1077,13 @@ #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:40 msgctxt "managebreakpoints|extended_tip|new" msgid "Creates a breakpoint on the line number specified." -msgstr "" +msgstr "Stvara točku prekida na navedenom broju linije." #. CCDEi #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:60 msgctxt "managebreakpoints|extended_tip|delete" msgid "Deletes the selected breakpoint." -msgstr "" +msgstr "Briše odabranu točku prekida." #. PcuyN #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:147 @@ -1095,19 +1095,19 @@ #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:156 msgctxt "managebreakpoints|extended_tip|active" msgid "Activates or deactivates the current breakpoint." -msgstr "" +msgstr "Aktivira ili deaktivira trenutačnu točku prekida." #. MUMSv #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:221 msgctxt "managebreakpoints|extended_tip|entries" msgid "Enter the line number for a new breakpoint, then click New." -msgstr "" +msgstr "Unesite broj retka za novu točku prekida, a zatim kliknite Novo." #. RVBS5 #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:250 msgctxt "managebreakpoints|extended_tip|pass" msgid "Specify the number of loops to perform before the breakpoint takes effect." -msgstr "" +msgstr "Navedite broj petlji koje treba izvesti prije nego što točka prekida stupi na snagu." #. VDCwR #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:263 @@ -1125,7 +1125,7 @@ #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:313 msgctxt "managebreakpoints|extended_tip|ManageBreakpointsDialog" msgid "Specifies the options for breakpoints." -msgstr "" +msgstr "Određuje opcije za točke prekida." #. M2Sx2 #: basctl/uiconfig/basicide/ui/managelanguages.ui:16 @@ -1167,13 +1167,13 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:95 msgctxt "modulepage|extended_tip|library" msgid "Lists the existing macro libraries for the current application and any open documents." -msgstr "" +msgstr "Navodi postojeće biblioteke makronaredbi za trenutnu aplikaciju i sve otvorene dokumente." #. hBRpM #: basctl/uiconfig/basicide/ui/modulepage.ui:129 msgctxt "modulepage|extended_tip|edit" msgid "Opens the %PRODUCTNAME Basic editor so that you can modify the selected library." -msgstr "" +msgstr "Otvara %PRODUCTNAME osnovni uređivač tako da možete izmijeniti odabranu knjižnicu." #. KjBGM #: basctl/uiconfig/basicide/ui/modulepage.ui:141 @@ -1185,7 +1185,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:148 msgctxt "modulepage|extended_tip|newmodule" msgid "Opens the editor and creates a new module." -msgstr "" +msgstr "Otvara uređivač i stvara novi modul." #. RakoP #: basctl/uiconfig/basicide/ui/modulepage.ui:161 @@ -1197,13 +1197,13 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:168 msgctxt "modulepage|extended_tip|newdialog" msgid "Lets you manage the macro libraries." -msgstr "" +msgstr "Omogućuje upravljanje makro knjižnice." #. LeigB #: basctl/uiconfig/basicide/ui/modulepage.ui:189 msgctxt "modulepage|extended_tip|delete" msgid "Creates a new macro, or deletes the selected macro." -msgstr "" +msgstr "Stvara novu ili briše odabranu makronaredbu." #. 5FC8g #: basctl/uiconfig/basicide/ui/modulepage.ui:202 @@ -1215,7 +1215,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:209 msgctxt "modulepage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "Dodjeljuje ili uređuje lozinku za odabranu knjižnicu." #. EgCDE #: basctl/uiconfig/basicide/ui/modulepage.ui:221 @@ -1227,7 +1227,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:228 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 "" +msgstr "Pronađite %PRODUCTNAME osnovnu biblioteku koju želite dodati na trenutni popis, a zatim kliknite Otvori." #. GAYBh #: basctl/uiconfig/basicide/ui/modulepage.ui:240 @@ -1239,13 +1239,13 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:266 msgctxt "modulepage|extended_tip|ModulePage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "Navodi postojeće module ili dijaloške okvire." #. rCNTN #: basctl/uiconfig/basicide/ui/newlibdialog.ui:32 msgctxt "newlibdialog|extended_tip|ok" msgid "Runs or saves the current macro." -msgstr "" +msgstr "Pokreće ili sprema trenutačnu makronaredbu." #. Skwd5 #: basctl/uiconfig/basicide/ui/newlibdialog.ui:92 @@ -1257,7 +1257,7 @@ #: basctl/uiconfig/basicide/ui/newlibdialog.ui:133 msgctxt "newlibdialog|extended_tip|NewLibDialog" msgid "Enter a name for the new library or module." -msgstr "" +msgstr "Unesite naziv nove knjižnice ili modula." #. uVgXz #: basctl/uiconfig/basicide/ui/organizedialog.ui:8 @@ -1287,16 +1287,16 @@ #: basctl/uiconfig/basicide/ui/sortmenu.ui:12 msgctxt "sortmenu|macrosort" msgid "_Sorting" -msgstr "" +msgstr "_Razvrstavanje" #. GCbAJ #: basctl/uiconfig/basicide/ui/sortmenu.ui:22 msgctxt "sortmenu|alphabetically" msgid "_Alphabetically" -msgstr "" +msgstr "_Abecedno" #. PBmML #: basctl/uiconfig/basicide/ui/sortmenu.ui:32 msgctxt "sortmenu|properorder" msgid "_Proper order" -msgstr "" +msgstr "_Ispravan poredak" diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/cui/messages.po libreoffice-7.1.3~rc2/translations/source/hr/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/hr/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2020-11-19 20:35+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566194989.000000\n" #. GyY9M @@ -1136,7 +1136,7 @@ #: cui/inc/strings.hrc:212 msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR" msgid "Password length limit of %1 reached" -msgstr "" +msgstr "Dosegnut limit duljine lozinke od %1 znakova." #. Fko49 #: cui/inc/strings.hrc:214 @@ -1755,13 +1755,13 @@ #: 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 "" +msgstr "Transliteriraj na staromađarski ako je tekst pisan zdesna nalijevo" #. CNtDd #: cui/inc/strings.hrc:335 msgctxt "RID_SVXSTR_ANGLE_QUOTES" msgid "Replace << and >> with angle quotes" -msgstr "" +msgstr "Zamijeni znakove << te >> ukošenim navodnim znakovima" #. Rc6Zg #: cui/inc/strings.hrc:336 @@ -2020,13 +2020,13 @@ #: cui/inc/strings.hrc:386 msgctxt "RID_SVXSTR_COMMANDLABEL" msgid "Label" -msgstr "" +msgstr "Oznaka" #. GceL6 #: cui/inc/strings.hrc:387 msgctxt "RID_SVXSTR_COMMANDLABEL" msgid "Command" -msgstr "" +msgstr "Naredba" #. dRqYc #: cui/inc/strings.hrc:388 @@ -2038,19 +2038,19 @@ #: 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 "" +msgstr "Poveznica ili tekst predugački su postavljenu razinu ispravljanja pogrešaka. Skratite tekst ili spustite razinu ispravljanja pogrešaka." #. AD8QJ #: cui/inc/strings.hrc:391 msgctxt "RID_SVXSTR_DELETEUSERCOLOR1" msgid "You can only delete user-defined colors" -msgstr "" +msgstr "Možete obrisati samo korisnički postavljene boje" #. 4LWGV #: cui/inc/strings.hrc:392 msgctxt "RID_SVXSTR_DELETEUSERCOLOR2" msgid "Please select the color to delete" -msgstr "" +msgstr "Odaberite boju za brisanje" #. FjQQ5 #: cui/inc/strings.hrc:394 @@ -2111,13 +2111,13 @@ #: 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 "" +msgstr "Za ispis bilješaka sa slajdova, idite na Datoteka ▸ Ispis ▸ (kartica) Impress i označite Bilješke u Dokument ▸ Tip dokumenta." #. TWjA5 #: 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 "" +msgstr "Za oporavak %PRODUCTNAMEa ili privremeno pokretanje s novim korisničkim profilom koristite Pomoć ▸ Ponovno pokretanje u sigurnom načinu rada." #. Hv5Ff #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html @@ -2137,7 +2137,7 @@ #: 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 "" +msgstr "Istražite deset različitih funkcija u statusnoj traci na dnu dokumenta. Postavite pokazivač miša na svako polje za prikaz objašnjenja. Ako statusna traka nije vidljiva, idite na Pregled ▸ Statusna traka." #. 7JRpP #: cui/inc/tipoftheday.hrc:55 @@ -2149,13 +2149,13 @@ #: cui/inc/tipoftheday.hrc:56 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create fillable form documents (even PDFs) with %PRODUCTNAME." -msgstr "" +msgstr "Stvorite obrazac dokumenta koji se može ispuniti (uključujući i dokument PDF) sa %PRODUCTNAMEom." #. BSUoN #: 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 "" +msgstr "Ne možete vidjeti sav tekst u ćeliji? Proširite redak unosa u alatnoj traci formule i koristite klizač." #. 3JyGD #: cui/inc/tipoftheday.hrc:58 @@ -2173,31 +2173,31 @@ #: 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 "" +msgstr "Drugi set ikona možete izabrati u izborniku Alati ▸ Mogućnosti ▸ %PRODUCTNAME ▸ Pregled ▸ Korisničko sučelje ▸ Stil ikona." #. RejqP #: 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 "" +msgstr "Decimalan broj možete prikazati kao razlomak (0,125 = 1/8): Oblikovanje ▸ Ćelija, Broj ▸ Razlomak." #. VxuFm #: 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 "" +msgstr "Za uklanjanje poveznica, ali zadržavanje njezina teksta, kliknite desnom tipkom miža na poveznicu i odaberite „Obriši poveznicu”." #. FeNXF #: 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 "" +msgstr "Za brisanje nekoliko poveznica odjednom, označite tekst s poveznicama i kliknite na njih desnom tipkom miša i odaberite ”Obriši poveznicu”." #. VnFnz #: 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 "" +msgstr "Za uvećanje odabira tako da ispunjava cijeli prozor koristite / (znak za podjeljeno) na numeričkoj tipkovnici." #. xfHwX #: cui/inc/tipoftheday.hrc:65 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME podržava četiri razine sigurnosti makro naredbi (od niske do vrlo visoke) te pouzdane izvore." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 se namjerava prijaviti kao organizacija za Google Summer of Code (GSoC), pogledajte:" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Ne želite ispisati sve stupce? Sakrijte ili grupirajte one koje ne trebate." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME je razvijan od strane prijateljske zajednice, koju sačinjava stotina suradnika širem svijeta. Pridružite nam se s vještinama koje nadilaze pisanje koda." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Želite postati ambasadorom za %PRODUCTNAME? Postoje certifikati za razvijatelje, aministratore i podučavatelje." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Miješanje uspravnih i položenih formata u Calc dokumentu je moguće primjenom različitih stilova stranica na list." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME postoji i u portabilnoj inačici što vam pruža mobilnost. Čak i bez administratorskih prava na računalu možete instalirati %PRODUCTNAME Portable na svoje računalo." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definirajte najčešće korištene izraze kao Automatski tekst. Moći ćete ih umetati po njihovom nazivu, kratici ili alatnoj traci u svakom Writer dokumentu." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "%PRODUCTNAME dokumentacija i besplatni korisnički priručnici su dostupni na:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Želite upravljati izgeldom poveznica u proračunskoj tablici? Umetnite ih koristeći funkciju POVEZNICA." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Moguće je stvoriti indeks ilustracija i iz imena objekata, ne samo opisa." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Koristite vaš Android ili iPhone za daljinjsko upravljanje vašom Impress prezentacijom." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Koristite alat Spojnica iz alatne trake za crtanje u programima Draw/Impress, za stvaranje lijepih dijagrama toka. Ako želite, objekt možete i kopirati/umetnuti u Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Vaše donacije podupiru našu zajednicu širom svijeta." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Želite dodati x mjeseci datumu? Koristite funkciju =EDATE(početni datum;mjeseci)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konzola prezentera je odlična opcija pri radu s %PRODUCTNAME Impress. Jeste li ju isprobali?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Pretvorite vaše dokumente u PDF na jednostavan način. Kliknite na PDF ikonu u alatnog traci." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Želite li znati ispravne parametre naredbenog retka? Pokrenite soffice s argumentima --help ili -h ili -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automatski označi unose u abecednom indeksu koristeći datoteku za usklađivanje." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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 "Da biste brzo povećali prikaz odabranih ćelija, desnom tipkom miša kliknite na mjesto za zumiranje na traci stanja i odaberite „Optimalni prikaz”." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Možete potpisati postojeće PDF datoteke i provjeriti postojeće potpise." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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 "Želite li se vratiti na zadano nakon primjene stila za popis? Na alatnoj traci Oblikovanje, uključite/isključite Predznaci ili Numeriranje." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "U programu Calc: TRIMMEAN() se koristi za dobivanje srednje vrijednosti skupine podataka, isključujući najvišu i najnižu vrijednost." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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 "Okviri se mogu povezati, tako da se tekst prvog okvira prelama u drugi, kao u programima za stolno izdavaštvo." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME podržava preko150 jezika." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Izračunajte povrat zajma s programom Calc: npr. PMT(2%/12;36;2500) kamatna stopa po razdoblju plaćanja 2% godišnje, 36 mjeseci, iznos pozajmice 2500kn." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Pokreni %PRODUCTNAME u bilo kojem pregledniku putem rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Pojavio se nepoznati kod greške u programu Calc, “Err: “ s brojem brojem u nastavku? Ova stranica nudi pojašnjenje:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Osim tablice sadržaja, %PRODUCTNAME može stvoriti indekse po abecedi, ilustracijama, tablicama, objektima, bibliografiji i korisnički definiranim poljem." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME pomoć" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Daljnje informacije" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/dictionaries/ko_KR.po libreoffice-7.1.3~rc2/translations/source/hr/dictionaries/ko_KR.po --- libreoffice-7.1.2~rc2/translations/source/hr/dictionaries/ko_KR.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/dictionaries/ko_KR.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,14 +4,16 @@ "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-11-03 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" #. DbXEb #: description.xml @@ -20,4 +22,4 @@ "dispname\n" "description.text" msgid "Korean spellcheck dictionary" -msgstr "" +msgstr "Korejski rječnik za provjeru pravopisa" diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-07-19 13:35+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Ispisujem" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-11-18 15:35+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565194753.000000\n" #. W5ukN @@ -35286,7 +35286,7 @@ "UIName\n" "value.text" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. BD7cT #: WriterFormWindowState.xcu @@ -35776,7 +35776,7 @@ "UIName\n" "value.text" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. r2AwY #: WriterGlobalWindowState.xcu @@ -36286,7 +36286,7 @@ "UIName\n" "value.text" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. W7jfJ #: WriterReportWindowState.xcu @@ -36756,7 +36756,7 @@ "UIName\n" "value.text" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. aERay #: WriterWebWindowState.xcu @@ -37196,7 +37196,7 @@ "UIName\n" "value.text" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. pFAxR #: WriterWindowState.xcu @@ -37786,7 +37786,7 @@ "UIName\n" "value.text" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. nFkDe #: XFormsWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2020-08-18 11:35+0000\n" -"Last-Translator: Mihovil Stanić \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563403376.000000\n" #. HhMVS @@ -1624,7 +1624,7 @@ "Name\n" "value.text" msgid "Email (96 DPI): minimize document size for sharing" -msgstr "" +msgstr "E-pošta (96 DPI): minimizira veličinu dokumenta za dijeljenje" #. mzFCD #: PresentationMinimizer.xcu @@ -1734,7 +1734,7 @@ "Text\n" "value.text" msgid "Restart" -msgstr "" +msgstr "Ponovno pokreni" #. zYCFa #: PresenterScreen.xcu @@ -1744,7 +1744,7 @@ "Text\n" "value.text" msgid "Exchange" -msgstr "" +msgstr "Razmjena" #. hAAEf #: PresenterScreen.xcu @@ -1754,7 +1754,7 @@ "Text\n" "value.text" msgid "Help" -msgstr "" +msgstr "Pomoć" #. AqwYo #: PresenterScreen.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/readlicense_oo/docs.po libreoffice-7.1.3~rc2/translations/source/hr/readlicense_oo/docs.po --- libreoffice-7.1.2~rc2/translations/source/hr/readlicense_oo/docs.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/readlicense_oo/docs.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-03-14 17:15+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563323471.000000\n" #. q6Gg3 @@ -230,7 +230,7 @@ "s256we\n" "readmeitem.text" msgid "GTK version 3.20 or higher;" -msgstr "" +msgstr "GTK inačice 3.20 ili više;" #. nA9h9 #: readme.xrm @@ -392,7 +392,7 @@ "rpminstall5\n" "readmeitem.text" msgid "For Fedora-based systems: sudo dnf install *.rpm" -msgstr "" +msgstr "Za sustave temeljene na Fedori: sudo dnf install *.rpm" #. BwvxR #: readme.xrm diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/svx/messages.po libreoffice-7.1.3~rc2/translations/source/hr/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/hr/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-19 20:36+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563541940.000000\n" #. 3GkZj @@ -368,13 +368,13 @@ #: include/svx/strings.hrc:83 msgctxt "STR_ObjNameSingulTEXT" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. MdV7N #: include/svx/strings.hrc:84 msgctxt "STR_ObjNamePluralTEXT" msgid "Text Frame" -msgstr "Okvir teksta" +msgstr "Tekstni okvir" #. 3Pvnw #: include/svx/strings.hrc:85 diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/sw/messages.po libreoffice-7.1.3~rc2/translations/source/hr/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/hr/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,47 +4,48 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2020-11-19 20:36+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563542002.000000\n" #. v3oJv #: sw/inc/AccessibilityCheckStrings.hrc:16 msgctxt "STR_NO_ALT" msgid "No alt text for graphic '%OBJECT_NAME%'" -msgstr "" +msgstr "Slika ili grafika '%OBJECT_NAME%' nema zamjenskoga teksta." #. 3CdQr #: sw/inc/AccessibilityCheckStrings.hrc:17 msgctxt "STR_TABLE_MERGE_SPLIT" msgid "Table '%OBJECT_NAME%' contains merges or splits" -msgstr "" +msgstr "Tablica „%OBJECT_NAME%” sadržava spajanja ili razdvajanja ćelija." #. idEDM #: sw/inc/AccessibilityCheckStrings.hrc:18 +#, fuzzy msgctxt "STR_FAKE_NUMBERING" msgid "Fake numbering '%NUMBERING%'" -msgstr "" +msgstr "Lažno obrojčavanje '%NUMBERING%'" #. zE4PU #: sw/inc/AccessibilityCheckStrings.hrc:19 msgctxt "STR_HYPERLINK_TEXT_IS_LINK" msgid "Hyperlink text is the same as the link address '%LINK%'" -msgstr "" +msgstr "Tekst poveznice jednak je samoj internetskoj adresi '%LINK%'" #. xYUv3 #: sw/inc/AccessibilityCheckStrings.hrc:20 msgctxt "STR_TEXT_CONTRAST" msgid "Text contrast is too low." -msgstr "" +msgstr "Kontrast teksta je premalen." #. m5DEP #: sw/inc/AccessibilityCheckStrings.hrc:21 @@ -56,49 +57,49 @@ #: sw/inc/AccessibilityCheckStrings.hrc:22 msgctxt "STR_AVOID_FOOTNOTES" msgid "Avoid footnotes." -msgstr "" +msgstr "Izbjegavaj fusnote." #. sg2MT #: sw/inc/AccessibilityCheckStrings.hrc:23 msgctxt "STR_AVOID_ENDNOTES" msgid "Avoid endnotes." -msgstr "" +msgstr "Izbjegavaj završne bilješke." #. qhNEG #: sw/inc/AccessibilityCheckStrings.hrc:24 msgctxt "STR_HEADINGS_NOT_IN_ORDER" msgid "Headings not in order." -msgstr "" +msgstr "Zaglavlja ne dolaze redom." #. Ryz5w #: sw/inc/AccessibilityCheckStrings.hrc:25 msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING" msgid "The text formatting conveys additional meaning." -msgstr "" +msgstr "Oblikovanje teksta prenosi dodatnu obavijest." #. MXVBm #: sw/inc/AccessibilityCheckStrings.hrc:26 msgctxt "STR_NON_INTERACTIVE_FORMS" msgid "An input form is not interactive." -msgstr "" +msgstr "Obrazac unosa nije interaktivan." #. Z6sHT #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_FLOATING_TEXT" msgid "Avoid floating text." -msgstr "" +msgstr "Izbjegavaj plutajući tekst." #. 77aXx #: sw/inc/AccessibilityCheckStrings.hrc:28 msgctxt "STR_HEADING_IN_TABLE" msgid "Tables must not contain headings." -msgstr "" +msgstr "Tablice ne smiju sadržavati zaglavlja." #. LxJKy #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "" +msgstr "Zadrži redoslijed razina poglavlja. Poglavlje razine %LEVEL_CURRENT% ne može doći poslije %LEVEL_PREV%." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 @@ -110,19 +111,19 @@ #: sw/inc/AccessibilityCheckStrings.hrc:32 msgctxt "STR_DOCUMENT_DEFAULT_LANGUAGE" msgid "Document default language is not set" -msgstr "" +msgstr "Zadani jezik dokumenta nije postavljen" #. CgEBJ #: sw/inc/AccessibilityCheckStrings.hrc:33 msgctxt "STR_STYLE_NO_LANGUAGE" msgid "Style '%STYLE_NAME%' has no language set" -msgstr "" +msgstr "Stil '%STYLE_NAME%' nema postavljen jezik" #. FG4Vn #: sw/inc/AccessibilityCheckStrings.hrc:34 msgctxt "STR_DOCUMENT_TITLE" msgid "Document title is not set" -msgstr "" +msgstr "Nije postavljen naslov dokumenta" #. DdjvG #: sw/inc/app.hrc:29 @@ -2149,7 +2150,7 @@ #: sw/inc/pageformatpanel.hrc:29 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Normal (%1)" -msgstr "" +msgstr "Uobičajeno (%1)" #. DjCNK #: sw/inc/pageformatpanel.hrc:30 @@ -2189,7 +2190,7 @@ #: sw/inc/pageformatpanel.hrc:45 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Normal (%1)" -msgstr "" +msgstr "Uobičajeno (%1)" #. oJfxD #: sw/inc/pageformatpanel.hrc:46 @@ -2208,7 +2209,7 @@ #: sw/inc/strings.hrc:27 msgctxt "STR_POOLCHR_STANDARD" msgid "Default Character Style" -msgstr "" +msgstr "Zadani stil znaka" #. iVg2a #: sw/inc/strings.hrc:28 @@ -2415,7 +2416,7 @@ #: sw/inc/strings.hrc:64 msgctxt "STR_POOLCOLL_STANDARD" msgid "Default Paragraph Style" -msgstr "" +msgstr "Zadani stil odlomka" #. AGD4Q #: sw/inc/strings.hrc:65 @@ -2463,7 +2464,7 @@ #: sw/inc/strings.hrc:72 msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE" msgid "List" -msgstr "" +msgstr "Popis" #. ffDqU #: sw/inc/strings.hrc:73 @@ -2667,121 +2668,121 @@ #: sw/inc/strings.hrc:106 msgctxt "STR_POOLCOLL_BULLET_LEVEL1S" msgid "List 1 Start" -msgstr "" +msgstr "Popis 1 početak" #. baq6K #: sw/inc/strings.hrc:107 msgctxt "STR_POOLCOLL_BULLET_LEVEL1" msgid "List 1" -msgstr "" +msgstr "Popis 1" #. TiBqs #: sw/inc/strings.hrc:108 msgctxt "STR_POOLCOLL_BULLET_LEVEL1E" msgid "List 1 End" -msgstr "" +msgstr "Popis 1 završetak" #. VvvEa #: sw/inc/strings.hrc:109 msgctxt "STR_POOLCOLL_BULLET_NONUM1" msgid "List 1 Cont." -msgstr "" +msgstr "Popis 1 nastavak" #. 9ACKm #: sw/inc/strings.hrc:110 msgctxt "STR_POOLCOLL_BULLET_LEVEL2S" msgid "List 2 Start" -msgstr "" +msgstr "Popis 2 početak" #. ABCWg #: sw/inc/strings.hrc:111 msgctxt "STR_POOLCOLL_BULLET_LEVEL2" msgid "List 2" -msgstr "" +msgstr "Popis 2" #. R9iEV #: sw/inc/strings.hrc:112 msgctxt "STR_POOLCOLL_BULLET_LEVEL2E" msgid "List 2 End" -msgstr "" +msgstr "Popis 2 završetak" #. XTGpX #: sw/inc/strings.hrc:113 msgctxt "STR_POOLCOLL_BULLET_NONUM2" msgid "List 2 Cont." -msgstr "" +msgstr "Popis 2 nastavak" #. n97tD #: sw/inc/strings.hrc:114 msgctxt "STR_POOLCOLL_BULLET_LEVEL3S" msgid "List 3 Start" -msgstr "" +msgstr "Popis 3 početak" #. JBTGo #: sw/inc/strings.hrc:115 msgctxt "STR_POOLCOLL_BULLET_LEVEL3" msgid "List 3" -msgstr "" +msgstr "Popis 3" #. B9RA4 #: sw/inc/strings.hrc:116 msgctxt "STR_POOLCOLL_BULLET_LEVEL3E" msgid "List 3 End" -msgstr "" +msgstr "Popis 3 završetak" #. ZB29x #: sw/inc/strings.hrc:117 msgctxt "STR_POOLCOLL_BULLET_NONUM3" msgid "List 3 Cont." -msgstr "" +msgstr "Popis 3 nastavak" #. zFXDk #: sw/inc/strings.hrc:118 msgctxt "STR_POOLCOLL_BULLET_LEVEL4S" msgid "List 4 Start" -msgstr "" +msgstr "Popis 4 početak" #. 34JZ2 #: sw/inc/strings.hrc:119 msgctxt "STR_POOLCOLL_BULLET_LEVEL4" msgid "List 4" -msgstr "" +msgstr "Popis 4" #. 3T3WD #: sw/inc/strings.hrc:120 msgctxt "STR_POOLCOLL_BULLET_LEVEL4E" msgid "List 4 End" -msgstr "" +msgstr "Popis 4 završetak" #. buakQ #: sw/inc/strings.hrc:121 msgctxt "STR_POOLCOLL_BULLET_NONUM4" msgid "List 4 Cont." -msgstr "" +msgstr "Popis 4 nastavak" #. vGaiE #: sw/inc/strings.hrc:122 msgctxt "STR_POOLCOLL_BULLET_LEVEL5S" msgid "List 5 Start" -msgstr "" +msgstr "Popis 5 početak" #. B4dDL #: sw/inc/strings.hrc:123 msgctxt "STR_POOLCOLL_BULLET_LEVEL5" msgid "List 5" -msgstr "" +msgstr "Popis 5" #. HTfse #: sw/inc/strings.hrc:124 msgctxt "STR_POOLCOLL_BULLET_LEVEL5E" msgid "List 5 End" -msgstr "" +msgstr "Popis 5 završetak" #. dAYD6 #: sw/inc/strings.hrc:125 msgctxt "STR_POOLCOLL_BULLET_NONUM5" msgid "List 5 Cont." -msgstr "" +msgstr "Popis 5 nastavak" #. DB3VN #: sw/inc/strings.hrc:126 @@ -3136,7 +3137,7 @@ #: sw/inc/strings.hrc:185 msgctxt "STR_POOLCOLL_DOC_APPENDIX" msgid "Appendix" -msgstr "" +msgstr "Dodatak" #. xiVb7 #: sw/inc/strings.hrc:186 @@ -3173,7 +3174,7 @@ #: sw/inc/strings.hrc:192 msgctxt "STR_POOLPAGE_STANDARD" msgid "Default Page Style" -msgstr "" +msgstr "Zadani stil stranice" #. JwhRA #: sw/inc/strings.hrc:193 @@ -3330,7 +3331,7 @@ #: sw/inc/strings.hrc:224 msgctxt "STR_TABSTYLE_DEFAULT" msgid "Default Table Style" -msgstr "" +msgstr "Zadani stil tablice" #. fCbrD #: sw/inc/strings.hrc:226 @@ -4288,7 +4289,7 @@ #: sw/inc/strings.hrc:393 msgctxt "STR_HYPH_MISSING" msgid "Missing hyphenation data" -msgstr "" +msgstr "Nedostaju pravila za rastavljanje riječi" #. TEP66 #: sw/inc/strings.hrc:394 @@ -5221,9 +5222,9 @@ msgctxt "STR_CHAPTERS" msgid "chapter" msgid_plural "chapters" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "Poglavlje" +msgstr[1] "Poglavlja" +msgstr[2] "Poglavlja" #. 2JCL2 #: sw/inc/strings.hrc:551 @@ -5631,7 +5632,7 @@ #: sw/inc/strings.hrc:623 msgctxt "STR_PRINTOPTUI_PRINTALLPAGES" msgid "~All Pages" -msgstr "" +msgstr "~Sve stranice" #. ZDRM2 #: sw/inc/strings.hrc:624 @@ -5739,13 +5740,13 @@ #: sw/inc/strings.hrc:643 msgctxt "STR_OUTLINE_TRACKING_DEFAULT" msgid "Default" -msgstr "" +msgstr "Zadano" #. HGDgJ #: sw/inc/strings.hrc:644 msgctxt "STR_OUTLINE_TRACKING_FOCUS" msgid "Focus" -msgstr "" +msgstr "Fokus" #. BYRpF #: sw/inc/strings.hrc:645 @@ -10191,7 +10192,7 @@ #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:202 msgctxt "assignstylesdialog|left|tooltip_text" msgid "Promote level" -msgstr "" +msgstr "Unaprijedi za razinu" #. szu9U #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:206 @@ -10209,7 +10210,7 @@ #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:222 msgctxt "assignstylesdialog|right|tooltip_text" msgid "Demote level" -msgstr "" +msgstr "Degradiraj za razinu" #. 6aqvE #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:226 @@ -14431,13 +14432,13 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:36 msgctxt "floatingnavigation|ST_TBL" msgid "Table" -msgstr "" +msgstr "Tablica" #. U7SsY #: sw/uiconfig/swriter/ui/floatingnavigation.ui:50 msgctxt "floatingnavigation|ST_FRM" msgid "Text Frame" -msgstr "" +msgstr "Tekstni okvir" #. EmyjV #: sw/uiconfig/swriter/ui/floatingnavigation.ui:64 diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/uui/messages.po libreoffice-7.1.3~rc2/translations/source/hr/uui/messages.po --- libreoffice-7.1.2~rc2/translations/source/hr/uui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/uui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2019-07-19 13:13+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563542024.000000\n" #. DLY8p @@ -888,7 +888,7 @@ #: uui/uiconfig/ui/filterselect.ui:137 msgctxt "filterselect|extended_tip|filters" msgid "Select the import filter for the file that you want to open." -msgstr "" +msgstr "Odaberite filtar za uvoz datoteke koju želite otvoriti." #. 8o9Bq #: uui/uiconfig/ui/logindialog.ui:8 @@ -1036,13 +1036,13 @@ #: uui/uiconfig/ui/masterpassworddlg.ui:110 msgctxt "masterpassworddlg|extended_tip|password" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "Unesite lozinku. Lozinke razlikuju velika i mala slova." #. Twvfe #: uui/uiconfig/ui/masterpassworddlg.ui:139 msgctxt "extended_tip|MasterPasswordDialog" msgid "Enter the master password to continue." -msgstr "" +msgstr "Za nastavak unesite glavnu lozinku." #. qAMT2 #: uui/uiconfig/ui/password.ui:8 @@ -1054,13 +1054,13 @@ #: uui/uiconfig/ui/password.ui:120 msgctxt "password|extended_tip|newpassEntry" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "Unesite lozinku. Lozinka razlikuje velika i mala slova." #. QbKd2 #: uui/uiconfig/ui/password.ui:139 msgctxt "password|extended_tip|confirmpassEntry" msgid "Re-enter the password." -msgstr "" +msgstr "Ponovo unesite lozinku." #. ioiyr #: uui/uiconfig/ui/setmasterpassworddlg.ui:8 @@ -1084,7 +1084,7 @@ #: uui/uiconfig/ui/setmasterpassworddlg.ui:122 msgctxt "extended_tip|password1" msgid "Enter the master password." -msgstr "" +msgstr "Unesite glavnu lozinku." #. yaAhh #: uui/uiconfig/ui/setmasterpassworddlg.ui:136 @@ -1096,7 +1096,7 @@ #: uui/uiconfig/ui/setmasterpassworddlg.ui:157 msgctxt "extended_tip|password2" msgid "Enter the master password again." -msgstr "" +msgstr "Ponovno unesite glavnu lozinku." #. aNzdJ #: uui/uiconfig/ui/setmasterpassworddlg.ui:172 @@ -1108,7 +1108,7 @@ #: uui/uiconfig/ui/setmasterpassworddlg.ui:202 msgctxt "setmasterpassworddlg|extended_tip|SetMasterPasswordDialog" msgid "Assign a master password to protect the access to a saved password." -msgstr "" +msgstr "Dodijelite glavnu lozinku kako biste zaštitili pristup spremljenoj lozinci." #. dAeLu #: uui/uiconfig/ui/simplenameclash.ui:8 diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/wizards/source/resources.po libreoffice-7.1.3~rc2/translations/source/hr/wizards/source/resources.po --- libreoffice-7.1.2~rc2/translations/source/hr/wizards/source/resources.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/wizards/source/resources.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-03-14 17:15+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563542121.000000\n" #. 8UKfi @@ -4289,7 +4289,7 @@ "CorrespondenceFields_17\n" "property.text" msgid "Email" -msgstr "" +msgstr "Elektronička pošta" #. w7uK5 #: resources_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/hr/xmlsecurity/messages.po libreoffice-7.1.3~rc2/translations/source/hr/xmlsecurity/messages.po --- libreoffice-7.1.2~rc2/translations/source/hr/xmlsecurity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hr/xmlsecurity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-19 20:35+0000\n" -"Last-Translator: Milo Ivir \n" -"Language-Team: Croatian \n" +"PO-Revision-Date: 2021-04-14 10:37+0000\n" +"Last-Translator: Kruno \n" +"Language-Team: Croatian \n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563304702.000000\n" #. EyJrF @@ -244,19 +244,19 @@ #: xmlsecurity/uiconfig/ui/certdetails.ui:73 msgctxt "extended_tip|tablecontainer" msgid "The Details page of the View Certificate dialog displays detailed information about the certificate." -msgstr "" +msgstr "Stranica Detalji u dijaloškom okviru Pregled certifikata prikazuje detaljne informacije o certifikatu." #. xcuF8 #: xmlsecurity/uiconfig/ui/certdetails.ui:101 msgctxt "extended_tip|valuedetails" msgid "Use the value list box to view values and copy them to the clipboard." -msgstr "" +msgstr "Upotrijebite okvir s popisom vrijednosti da biste pogledali vrijednosti i kopirali ih u međuspremnik." #. JXgjT #: xmlsecurity/uiconfig/ui/certdetails.ui:115 msgctxt "extended_tip|CertDetails" msgid "The Details page of the View Certificate dialog displays detailed information about the certificate." -msgstr "" +msgstr "Stranica Detalji u dijaloškom okviru Pregled certifikata prikazuje detaljne informacije o certifikatu." #. UWBqm #: xmlsecurity/uiconfig/ui/certgeneral.ui:33 @@ -268,7 +268,7 @@ #: xmlsecurity/uiconfig/ui/certgeneral.ui:46 msgctxt "extended_tip|box1" msgid "The General page of the View Certificate dialog displays basic information about the certificate." -msgstr "" +msgstr "Stranica Općenito u dijaloškom okviru Prikaz certifikata prikazuje osnovne informacije o certifikatu." #. WzmFd #: xmlsecurity/uiconfig/ui/certgeneral.ui:75 @@ -322,7 +322,7 @@ #: xmlsecurity/uiconfig/ui/certpage.ui:93 msgctxt "extended_tip|signatures" msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate." -msgstr "" +msgstr "Stranica s putanjom certifikata u dijaloškom okviru Pregled certifikata prikazuje mjesto i status certifikata." #. BC28t #: xmlsecurity/uiconfig/ui/certpage.ui:123 @@ -334,7 +334,7 @@ #: xmlsecurity/uiconfig/ui/certpage.ui:149 msgctxt "extended_tip|status" msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate." -msgstr "" +msgstr "Stranica putanje certifikata u dijaloškom okviru Pregled certifikata prikazuje mjesto i status certifikata." #. Cvs6c #: xmlsecurity/uiconfig/ui/certpage.ui:171 @@ -352,7 +352,7 @@ #: xmlsecurity/uiconfig/ui/certpage.ui:193 msgctxt "extended_tip|CertPage" msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate." -msgstr "" +msgstr "Stranica putanje certifikata u dijaloškom okviru Pregled certifikata prikazuje mjesto i status certifikata." #. mWRAG #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:26 @@ -400,7 +400,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:196 msgctxt "digitalsignaturesdialog|extended_tip|signatures" msgid "Lists the digital signatures for the current document." -msgstr "" +msgstr "Popisi digitalnih potpisa za trenutačni dokument." #. GAMdr #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:216 @@ -412,7 +412,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:222 msgctxt "digitalsignaturesdialog|extended_tip|view" msgid "Opens the View Certificate dialog." -msgstr "" +msgstr "Otvara dijaloški okvir Pregled certifikata." #. uM8mn #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:234 @@ -424,7 +424,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:241 msgctxt "digitalsignaturesdialog|extended_tip|sign" msgid "Opens the Select Certificate dialog." -msgstr "" +msgstr "Otvara dijaloški okvir Odabir certifikata." #. hFd4m #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:253 @@ -436,7 +436,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:259 msgctxt "digitalsignaturesdialog|extended_tip|remove" msgid "Removes the selected signature from the list. Removes all subsequent signatures as well, in case of PDF." -msgstr "" +msgstr "Uklanja odabrani potpis s popisa. U sličaju PDF-a uklanja i sve naredne potpise." #. yQ9ju #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:271 @@ -472,13 +472,13 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426 msgctxt "digitalsignaturesdialog|oldsignatureft" msgid "At least one signature has problems: the document is only partially signed." -msgstr "Barem jedan potpis nije u redu: dokument je samo djelomično potpisan." +msgstr "Pojavio se problem s barem jednim potpisom: dokument je potpisan samo djelomično." #. wn85z #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439 msgctxt "digitalsignaturesdialog|notvalidatedft" msgid "At least one signature has problems: the certificate could not be validated." -msgstr "Barem jedan potpis nije u redu: nije bilo moguće provjeriti certifikat." +msgstr "Pojavio se problem s barem jednim potpisom: potvrda se ne može provjeriti." #. DFTZB #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:488 @@ -490,13 +490,13 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:498 msgctxt "digitalsignaturesdialog|extended_tip|adescompliant" msgid "Prefers creating XAdES signatures for ODF and OOXML, PAdES signatures for PDF." -msgstr "" +msgstr "Preferira stvaranje XAdES potpisa za ODF i OOXML, PAdES potpise za PDF." #. znY8A #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:525 msgctxt "digitalsignaturesdialog|extended_tip|DigitalSignaturesDialog" msgid "Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates." -msgstr "" +msgstr "Dodaje i uklanja digitalni potpis u i iz vašeg dokumenta. Dijaloški okvir možete koristiti i za pregled certifikata." #. 2qiqv #: xmlsecurity/uiconfig/ui/macrosecuritydialog.ui:8 @@ -532,7 +532,7 @@ #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:31 msgctxt "extended_tip|low" msgid "A macro can be set to auto-start, and it can perform potentially damaging actions, as for example delete or rename files. This setting is not recommended when you open documents from other authors." -msgstr "" +msgstr "Makronaredbu je moguće postaviti na automatsko pokretanje i može izvoditi potencijalno štetne radnje, na primjer brisanje ili preimenovanje datoteka. Ova se postavka ne preporučuje kada otvarate dokumente drugih autora." #. F9QCX #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:42 @@ -548,7 +548,7 @@ #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:54 msgctxt "extended_tip|med" msgid "Trusted sources can be set on the Trusted Sources tab page. Signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run. All other macros require your confirmation." -msgstr "" +msgstr "Pouzdani izvori mogu se postaviti na stranici kartice Pouzdani izvori. Dopušteno je pokretanje potpisanih makronaredbi iz pouzdanog izvora. Osim toga, dopušteno je pokretanje bilo koje makronaredbe s pouzdanog mjesta datoteke. Za sve ostale makronaredbe potrebna je vaša potvrda." #. 2DyAP #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:65 @@ -566,7 +566,7 @@ #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:78 msgctxt "extended_tip|high" msgid "Trusted sources can be set on the Trusted Sources tab page. Only signed macros from a trusted source are allowed to run. In addition, any macro from a trusted file location is allowed to run." -msgstr "" +msgstr "Pouzdani izvori mogu se postaviti na stranici kartice Pouzdani izvori. Izvršiti se smiju samo potpisane makronaredbe iz pouzdanog izvora. Osim toga, dopušteno je pokretanje bilo koje makronaredbe s pouzdanog mjesta datoteke." #. SDdW5 #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:89 @@ -584,7 +584,7 @@ #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:102 msgctxt "extended_tip|vhigh" msgid "Trusted file locations can be set on the Trusted Sources tab page. Any macro from a trusted file location is allowed to run." -msgstr "" +msgstr "Lokacije pouzdanih datoteka mogu se postaviti na stranici Pouzdani izvori. Dopušteno je pokretanje bilo koje makronaredbe s lokacije Pouzdani izvori." #. 5kj8c #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:68 @@ -596,13 +596,13 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:75 msgctxt "extended_tip|viewcert" msgid "Opens the View Certificate dialog for the selected certificate." -msgstr "" +msgstr "Otvara dijaloški okvir Pregled certifikata za odabrani certifikat." #. WADee #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:94 msgctxt "extended_tip|removecert" msgid "Removes the selected certificate from the list of trusted certificates." -msgstr "" +msgstr "Uklanja odabrani certifikat s popisa pouzdanih certifikata." #. Y7LGC #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:134 @@ -626,7 +626,7 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:171 msgctxt "extended_tip|certificates" msgid "Lists the trusted certificates." -msgstr "" +msgstr "Prikazuje pouzdane certifikate." #. xWF8D #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:206 @@ -650,19 +650,19 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:275 msgctxt "extended_tip|addfile" msgid "Opens a folder selection dialog. Select a folder from which all macros are allowed to execute." -msgstr "" +msgstr "Otvara dijaloški okvir za odabir mape. Odaberite mapu iz koje je dopušteno izvršavanje svih makronaredbi." #. jSg2w #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:294 msgctxt "extended_tip|removefile" msgid "Removes the selected folder from the list of trusted file locations." -msgstr "" +msgstr "Uklanja odabranu mapu s popisa lokacija pouzdanih datoteka." #. yZBo6 #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:345 msgctxt "extended_tip|locations" msgid "Document macros are only executed if they have been opened from one of the following locations." -msgstr "" +msgstr "Makronaredbe dokumenata izvršavaju se samo ako su otvorene s jednog od sljedećih mjesta." #. irXcj #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:383 @@ -722,7 +722,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:210 msgctxt "selectcertificatedialog|extended_tip|signatures" msgid "Select the certificate that you want to digitally sign the current document with." -msgstr "" +msgstr "Odaberite certifikat kojim želite digitalno potpisati trenutni dokument." #. uwjMQ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:223 @@ -734,7 +734,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:230 msgctxt "selectcertificatedialog|extended_tip|viewcert" msgid "Opens the View Certificate dialog where you can examine the selected certificate." -msgstr "" +msgstr "Otvara dijaloški okvir Pregled certifikata u kojem možete pregledati odabrani certifikat." #. dbgmP #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:248 @@ -746,13 +746,13 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:264 msgctxt "selectcertificatedialog|extended_tip|description" msgid "Type a purpose for the signature." -msgstr "" +msgstr "Upišite svrhu potpisa." #. snAQh #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:299 msgctxt "selectcertificatedialog|extended_tip|SelectCertificateDialog" msgid "Select the certificate that you want to digitally sign the current document with." -msgstr "" +msgstr "Odaberite certifikat kojim želite digitalno potpisati trenutačni dokument." #. nBkSy #: xmlsecurity/uiconfig/ui/viewcertdialog.ui:8 diff -Nru libreoffice-7.1.2~rc2/translations/source/hsb/cui/messages.po libreoffice-7.1.3~rc2/translations/source/hsb/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/hsb/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hsb/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-08-24 12:35+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME štyri makrowe wěstotne runiny (wot niskeje do jara wysokeje) a dowěry hódne žórła." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 chce so jako organizacija za Google Summer of Code (GSoC) zamołwić, hlejće:" - -#. SNTbc -#: 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 "Scé wědźał, zo móžeće k tekstowym dźělam komentary připowěsnyć? Wužiwajće prosće tastowu skrótšenku %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Dyrbiće jedyn wotstawk abo wjace přesunyć? Njejtrjebaće kopěrować: Wužiwajće tastowu skrótšenku %MOD1+%MOD2+šipk (horje/dele)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Změnće zakładne pisma za předdefinowanu předłohu abo aktualny dokument z „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Zakładne pisma“." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Chceće słowa namakać, kotrež wjace hač 10 znamješkow wobsahuja? „Wobdźěłać ▸ Pytać a wuměnić ▸ [a-z]{10} ▸ Dalše nastajenja ▸ Regularny wurazy“." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Wočińće w Calc CSV-dataju jako nowu tabelu w aktualnym tabelowym dokumenće přez „Tabela ▸ Tabela z dataje zasadźić“." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Zo byšće we Writer tučny, kursiwny abo podšmórnjeny tekst pisał, móžeće ze standardnymi atributami pokročować, hdyž prosće tastowu skrótšenku %MOD1+Umsch+X (direktne znamješkowe formaty wotstronić) wužiwaće." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Wužiwajće %MOD1+%MOD2+Umsch+V, zo byšće wobsah z mjezyskłada jako njeformatowany tekst zasadźił." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Přiměrće napohlad nóžkow z „Nastroje ▸ Nóžki a kónčne nóžki…“" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Wužiwajće „Prezentacija ▸ Swójska prezentacija“, zo byšće folije přesortěrował a wubrał a prezentaciju potrjebam swojich wobhladowarjow přiměrił." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Chceće za tekstowy dźěl prawopis kontrolować? Klikńće do rěčneho kašćika statusoweje lajsty (Hornjoserbšćina) abo lěpje, nałožće předłohu." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer móže mjez dwěmaj njerunymaj (runymaj) stronomaj prózdnu stronu zasadźić, kotrež slěduja. Zmóžńće nastajenje „Awtomatisce zasadźene prózdne strony ćišćeć“ w rajtarku %PRODUCTNAME Writer ćišćerskeho dialoga." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Nochceće wšě špalty ćišćeć? Schowajće abo zeskupće te, kotrež njetrjebaće." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Zo byšće prezentaciju změnił, kotraž so awtomatisce wothrawa, wočińće ju a hdyž startuje, klikńće z prawej tastu a wubjerće Wobdźěłać w kontekstowym meniju. " #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Dyrbiće dokładnje pozicioněrować? %MOD2+šipkowe tasty objekty (twary, wobrazy, formle) wo jedyn piksel přesuwaja." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Tłóčće F1, zo byšće zatwarjenu pomoc wužiwał, jeli sće ju instalował. Wobhladajće sej hewak pomoc online na:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Klikńće z prawej tastu naprawo w statusowej lajsće %PRODUCTNAME Calc do wobłuka z tekstom „Přerěz; Suma:“ a wubjerće „Ličba wubranych celow“, zo byšće ličbu wubranych celow pokazał." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Chceće dwě špalće abo wjace za jenož dźěl strony %PRODUCTNAME Writer měć? Wužiwajće „Zasadźić ▸ Wotrězk ▸ Špalty“, nastajće ličbu špaltow, klikńće potom na „Zasadźić“, zo byšće wotrězk zasadźił a pisajće tekst do wotrězka." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Wužiwajće „Daty ▸ Statistika“ za dźělne proby, wopisowacu statistiku, wariancowu analyzu, korelaciju a wjele wjace w %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Móžeće wot jedneje tabele do druheje kopěrować, bjeztoho zo byšće mjezyskład wužiwał. Wubjerće wobwod, kotryž ma so kopěrować, klikńće ze stłóčenej tastu %MOD1 na rajtark ciloweje tabele a wužiwajće „Tabela ▸ Cele wupjelnić ▸ Tabele wupjelnić“." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Móžeće z „Nastroje ▸ Nastajenja ▸ Napohlad“ napohlad %PRODUCTNAME změnić." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Wužiwajće w %PRODUCTNAME Impress „Zasadźić ▸ Medije ▸ Fotoalbum“, zo byšće z funkciju „Fotoalbum“ prezentaciju ze serije wobrazow wutworił." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Móžeće formle město wuslědkow pokazać. Wužiwajće „Napohlad ▸ Formulu pokazać“ (abo „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Calc ▸ Napohlad ▸ Pokazać ▸ Formle“)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME so wot přećelneho zhromadźenstwa wuwiwa, kotrež ze stow wuwiwarjow na cyłym swěće wobsteji. Přinošujće swoje kmanosće, bjeztoho zo byšće programował." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Sće lěwicar? Zmóžńće „Nastroje ▸ Nastajenja ▸ Rěčne nastajenja ▸ Rěče ▸ Aziske“ a aktiwizujće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Napohlad ▸ Napohlad ▸ Naprawo wusměrjeny, zo byšće suwansku lajstu nalěwo zwobraznił." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Chceće, zo titule swojich kapitlow přeco stronu započinaja? Wužiwajće „Předłohi ▸ Předłohu rjadować (abo tłóčće F11) ▸ Wotstawkowe předłohi ▸ Nadpismo ▸ Nadpismo1 ▸ (klikńće z prawej tastu) ▸ Změnić ▸ Tekstowy běh ▸ Łamanja ▸ Zasadźić ▸ Strona ▸ Před“." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datumowa abo časowa hódnota je jenož ličba dnjow wot wubraneho dnja nul; w ličbje cyłoličbny dźěl datum a łamkowy dźěl čas (zańdźeny dźěl dnja) reprezentuje; 0.5 připołdnjo reprezentuje." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Umsch+%MOD1+Entf wot kursora do kónca aktualneje sady zhaša." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Wužiwajće špaltowe a linkowe popisy we formlach. Jeli na přikład dwě špalće maće, „Čas“ a „KM“, wužiwajće „=Čas/KM“, zo byšće mjeńšiny na kilometer dóstał." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "„Pochodowace mrowički“ wokoło celow w Calc wam myla? Tłóčće tastu Esc, zo byšće je zastajił; kopěrowany wobsah je za zasadźenje dale k dispoziciji." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Chceće wulkopósłanc %PRODUCTNAME być? Su dopušćenja za wuwiwarjow, administratorow a trenarjow." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Nałožće rozdźělne předłohi strony na tabele, zo byšće wysoki a prěčny format w tabelowym dokumenće měšał." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klikńće na symbol wosebiteho znamješka w symbolowej lajsće, zo byšće najhusćišo wužite a najnowše znamješka spěšnje zasadźił." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Wubjerće „Hierarchisce“ w bóčnicy předłohow, zo byšće poćah mjez předłohami widźał." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Móžeće předłohi wužiwać, zo byšće tabele w swojim dokumenće konsistentne činił. Wubjerće jednu z předdefinowanych předłohow přez „Předłohi (abo tasta F11) ▸ Tabelowe předłohi“ abo přez „Tabela ▸ Předłohi awtomatiskeho formata“" #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Chceće wužiwanje tasty %MOD1 konfigurować, zo byšće hyperwotkazy wočinił? Wužiwajće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME ▸ Wěstota ▸ Nastajenja ▸ ‚Klikńće ze stłóčenej %MOD1-tastu, zo byšće hyperwotkazy wočinił‘“." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Chceće sej wobličenje jednotliwych elementow formle wobhladać? Wubjerće wotpowědne elementy a tłóčće F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Móžeće cele z „Format ▸ Cele ▸ Celowy škit“ škitać. Zo byšće zasadźenju, zhašanju, přemjenowanju, přesuwanju resp. kopěrowanju tabelow zadźěwał, wužiwajće „Nastroje ▸ Tabelu škitać“." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Chceće we Writer podłu křiwicy pisać? Ćehńće liniju, klikńće dwójce, pisajće tekst a wužiwajće „Format ▸ Tekstowe polo a twar ▸ Fontwork“." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Chceće w Calc najwyše hódnoty w tabeli pokazać? Wubjerće meni „Daty ▸ Awtomatiski filter“, klikńće na wuběranski šipk a wubjerće „Najwjetše 10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Zo byšće we Writer ličbu strony ze swojeho zapisa wobsaha wotstronił, wužiwajće „Zasadźić ▸ Zapis wobsaha a hesłar ▸ Zapis wobsaha, hesłar a literarny zapis“ (abo klikńće z prawej tastu a wobdźěłajće do toho zasadźeny zapis). W rajtarku „Zapiski“ klikńće na symbol „#“ w lince „Struktura“." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Z Nawigatorom móžeće nadpisma a tekst pod nadpismom wubrać a horje resp. dele přesunyć, w Nawigatorje kaž tež w dokumenće." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Zo byšće spěšnje objekt math we Writer dóstał, zapisajće swoju formlu, markěrujće ju a wužiwajće potom „Zasadźić ▸ Objekt ▸ Formla“, zo byšće tekst konwertował." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Z %PRODUCTNAME je jara lochko, nowy słownik instalować: Słowniki so jako rozšěrjenja k dispoziciji stajeja." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME za wašu mobilnosć tež jako portabelna wersija eksistuje. Móžeće samo bjez prawow administratora na swojim ličaku %PRODUCTNAME Portable tež na swojej krutej tačeli instalować." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Z Writer móžeće swoje nóžki na stronu, kapitl a dokument čisłować: Wužiwajće „Nastroje ▸ Nóžki a kónčne nóžki ▸ Nóžki ▸Čisłowanje“." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Wočinjeće zaso swój dokument Writer a tekstowy kursor na samsnej wobdźěłowanskej poziciji njeje,hdźež je był, hdyž sće jón składował? Přidajće předmjeno abo swójbne mjeno w „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME ▸ Wužiwarske daty ▸ Předmjeno/swójbne mjeno/iniciale“." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Citatowe rjadowanje? Wužiwajće rozšěrjenje třećeho poskićowarja." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Chceće w Calc hódnotu na samsnym městnje we wjacorych tabelach zasadźić? Wubjerće tabele, dźeržće tastu %MOD1 stłóčenu a klikńće na jich rajtarki, prjedy hač hódnotu zapodawaće." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Chceće tekst w dokumenće schować? Wubjerće tekst a wužiwajće „Zasadźić ▸ Wotrězk“ a wubjerće „Schować ▸ Schować“." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Móžeće srjedźnu tastu myški/kolesko myški přiměrić. Wužiwajće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME ▸ Napohlad ▸ Myška ▸ Srjedźna tasta“." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Chceće dwě strnje we wysokim formaće na jednu stronu w prěčnym formaće ćišćeć (a format wot A4 do A5 pomjeńšić)? Wužiwajće „Dataja ▸ Ćišćeć ▸ Powšitkowne ▸ wuhotowanje strony“ a wubjerće „2“ pola „Strony na łopjeno“." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Za spěšny přistup k swojim dokumentowym zapołožkam, klikńće z prawej tastu na čisło strony w statuslowej lajsće (w delnim lěwym róžku dokumentoweho wokna)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Wubjerće objekt w dokumentowym pozadku a wužiwajće nastroj Wubrać w symbolowej lajsce Rysowanka, zo byšće objekt wobmjezował." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definujće teksty, kotrež husto jako awtomatiski tekst wužiwaće. Móžeće je přez jich mjeno, tastowu skrótšenku abo symbolowu lajstu w dokumenće Writer zasadźić." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Připokazajće přechadej prěnjeje folije zynk, bjeztoho zo byšće na tłóčatko „Na wšě folije nałožić“ kliknył, zo byšće hudźbu z prezentaciju wothrawał." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 wotlěwa doprawa njeliči, ale dźiwa na porjad „Spinki - Eksponenty - Multiplikacija - Diwizija - Adicija - Subtrakcija“." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Dóstanjeće so k dokumentaciji %PRODUCTNAME a darmotnym přiručkam na:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Chceće wšě „<“ a „>“ naraz wotstronić a tekst w nich wobchować? Dźiće k Wobdźěłać ▸ Pytać a wuměnić: Pytać = [<>], Wuměnić = (prózdne wostajić) a wubjerće „Regularne wurazy“ pod „Dalše nastajenja“." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Dyrbiće pisomnu rozprawu z Writer prezentować? Wubjerće „Dataja ▸ Pósłać ▸ Rozrjad do prezentacije“, zo by so prezentacija awtomatisce z rozrjada wutworiła." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Chceće zwobraznjenje hyperwotkazow w tabelowej kalkulaciji rjadować? Zasadźće je ze Zasadźić ▸ Hyperwotkaz..." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Znjemóžńće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Calc ▸ Napohlad ▸ Měritko: ‚Tabele synchronizować‘“, zo by kóžda tabela swójsku skalowanski faktor w Calc měła." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Móžeće za kóždy rajtark barbu postajić: Klikńće z prawej tastu na rajtark abo wužiwajće „Tabela ▸ Rajtarkowa barba tabele...“ w Calc." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Slědujće celam we formli, slědej k předchadnikej (Umsch+F9) abo naslědnikej (Umsch+F5) (abo wubjerće „Nastroje ▸ Detektiw“). Za kóždu namakanku dźiće dalši krok w rjećazku." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Zasadźće a čisłujće swoje formle w jednym kroku: Tłóčće FN a potom F3. Awtomatiski tekst so z formlu a čisłom zasadźi, wuměrjeny w tabeli." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Móžeće zapis wobrazow tež z objektowych mjenow załožić, nic jenož z popisow." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Wužiwajće swój telefon Android abo swój iPhone, zo byšće swoju prezentaciju Impress wodźił." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Chceće wědźeć, kelko dnjow aktualny měsac ma? Wužiwajće funkciju DNYWMĚSACU(DŹENSA())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Waše ličby so jako ### w swojim tabelowym dokumenće pokazuja? Špalta je přewuska, zo by wšě cyfry pokazała." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Zmóžńće přez „Nastroje ▸ Nastajenja ▸ OpenCL“ wjele paralelnych wobličenjow formlowych celow." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Wužiwajće nastroj Zwjazowak z rysowanskeje symboloweje lajsty w Draw/Impress, zo byšće rjane běžate diagramy wutworił a objekt po přeću do Writer kopěrował." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Waše dary naše swětodaloke zhromadźenstwo podpěruja." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Chceće k datumej x měsacow aděrować? Wužiwajće =EDATUM(spočatny datum;měsacy)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Wužiwajće %MOD1+* (na numeriskej tastaturje), zo byšće susodny wobłuk celow wubrał, kotrež daty wobsahuja a su přez prózdne linki a špalty wobmjezowane." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Waš muster za spóznawanje datuma je njepřihódny? Wužiwajće „Nastroje ▸ Nastajenja ▸ Rěčne nastajenja ▸ Rěče ▸ Mustry za spóznawanje datuma“, zo byšće muster přiměrił." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Chceće formle do CSV-dataje eksportować? Wužiwajće „Dataja ▸ Składować jako ▸ Dateityp: Tekst CSV“, zmóžnće „Filtrowe nastajenja wobdźěłać“ a „Celowe formle město wuličenych hódnotow składować“ w přichodnym dialogu." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konsola Presenter je wulkotna funkcija, hdyž z %PRODUCTNAME Impress dźěłaće. Sće ju hižo wupruwował?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Zo byšće w Calc wjacore komentary zhašał, wubjerće cele z komentarami a wužiwajće „Tabela ▸ Celowe komentary ▸ Komentar zhašeć“." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Klikńće na symbol PDF w symbolowej lajsće, zo byšće swoje dokumenty z jednym kliknjenjom lochko do PDF konwertował." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Chceće wulki celowy wobłuk bjez kulenja wubrać? Zapodajće wobłukowy poćah (na př. A1:A1000) do mjenoweho pola a tłóčće potom Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Chceće so z płaćiwymi parametrami přikazoweje linki zeznać? Startujće soffice z --help, -h abo -?." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Wužiwajće w Calc „Format ▸ Strona ▸ Tabela ▸ Měritko ▸ Skalowanski modus“, zo byšće tabelu abo ćišćerske wobłuki stronje přiměrił." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Trjebaće nječisłowany zapisk w lisćinje? Wužiwajće „Nječisłowany zapisk zasadźić“ w symbolowej lajsće „Naličenske znamješka a čisłowanje“ we Writer." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Móžeće wusmerjenje tabelowych celow we Writer rotěrować. Wužiwajće „Tabela ▸ Kajkosće… ▸ Tekstowy běh ▸ Tekstowe wusměrjenje“." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Ćehńće w %PRODUCTNAME Draw prěčišćo dweju linealow w hornim lěwym róžku do dźěłoweje płoniny, zo byšće dypk 0/0 linealow změnił." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Chceće špaltu w Calc mjez dwěmaj druhimaj w jednym kroku přesunyć? Klikńće na hłowu, potom do cele w špalće, dźeržće tastu myški stłóčenu a přesuńće do cile z tastu %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Markěrujće awtomatisce wšě zapiski alfabetiskeho hesłarja z pomocu konkordancneje dataje." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Wužiwajće „Format ▸ Wusměrić“ (abo kontekstowy meni), zo byšće objekty w Draw/Impress dokładnje pozicioněrował: Wusměrjeja so na stronje, jeli so jedyn objekt wuběra resp. na skupinu wuskutkuje." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Njewužiwajće tabulatory w dokumenće Writer, zo byšće zapiski z prózdnym rumom dźělił. Po tym, štož pospytujeće činić, móže tabela bjez ramikow lěpša wólba być." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Njetrjebaće lisćinu „Nastroje > Přiměrić > Tastatura“ přepytować, zo byšće tastowu skrótšenku namakał: Zapodajće jón prosće." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME móže čisłowany popis awtomatisce přidać, hdyž objekty zasadźeće. Hlejće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Awtomatiske popisanje." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Z %PRODUCTNAME móžeće swoje konto Google Mail wužiwać, zo byšće serijowe mejlki rozpósłał. Wupjelńće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Serijowa e-mejl“." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Wubjerće „Napohlad ▸ Cele fiksować ▸ Prěnju linku fiksować“, zo byšće špaltowe hłowy tabele widźomne dźeržał, hdyž linki kuleće." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Chceće z makrami Basic %PRODUCTNAME dźěłać? Pohladajće do přikładow pod „Nastroje ▸ Makra ▸ Makra wobdźěłać“." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Nałožće wotstawkowe předłohi za nadpisma we Writer z tastowymi skrótšenkami: Tłóčće %MOD1+1 za nadpismo 1, %MOD1+2 za nadpismo 2 atd." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Njepozhubjejće so we wulkich dokumentach. Wužiwajće Nawigator (F5), zo byšće swój puć přez wobsah namakał." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Wužiwajće „Wobdźěłać ▸ Pytać a wuměnić“, zo byšće wosebite znamješka direktnje zasadźił: Klikńće z prawej tastu do zapodawanskich polow abo tłóčće Umsch+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Trjebaće swójski wobsah za kajkosće metadatow? Wužiwajće „Dataja ▸ Kajkosće ▸ rajtark Swójske kajkosće“, zo byšće wutworił, štož chceće." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Chceće objekt w Draw widźeć, ale nic ćišćeć? Ćehńće jón do woršty, za kotruž marka „Ćišćomny“ nastajena njeje (klikńće z prawej tastu pod stronu na rajtark a wubjerće „Worštu změnić“)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Wužiwajće „Zasadźić ▸ Polo ▸ Datum“, zo byšće aktualny datum do swojeho dokumenta zasadźił." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Maće wjele wobrazow w dokumenće Writer? Znjemóžńće „Napohlad ▸ Wobrazy a diagramy“, zo byšće zwobraznjenje pospěšił." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Wubjerće „Tabela ▸ Cele wupjelnić ▸ Z připadnymi ličbami wupjelnić“, zo byšće připadny rjad na zakładźe wšelakich rozdźělenjow wutworił." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Přemjenujće swoje folije w Impress, zo byšće interakcije kaž „K foliji“ definował a zo byšće bóle zrozumliwe zjeće jako foliju 1, foliju 2 atd. měł…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Kapitlowe čisłowanje wam zmóžnja, tekst před kapitlowym čisłom zasadźić. Zapodajće na přikład „Kapitl“, zo byšće „Kapitl 1“ pokazał" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Chceće tabelu Writer transponować? Kopěrujće ju a zsadźće ju do Calc. Zo byšće ju transponował, kopěrujće ju w Calc a wubjerće „Wobdźěłać – Wobsah zasadźić – Wobsah zasadźić… – Kašćik ‚Transponować‘“. Kopěrujće ju potom do tabele Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Zo byšće we Writer symbol funkcije „Padoruny tekst“ w rysowanskej lajsće zwobraznił, zmóžńće nastajenje „Nastroje ▸ Nastajenja ▸ Rěčne nastajenja ▸ Rěče ▸ Standardne rěče za dokumenty ▸ Aziske“ (a čińće jón widźomny z kliknjenjom z prawej tastu na lajstu a potom na „Widźomne tłóčatka“." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Zo byšće wobłukowy wuběr powjetšił, klikńće z prawej tastu na skalowanski kašćik statusoweje lajsty a wubjerće „Optimalny napohlad“." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Móžeće eksistowace PDF-dataje signować a tute signatury přepruwować." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Wutworjeće husto jedyn dokument z druheho? Wužiwajće da předłohu." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Wužiwajće „Format ▸ Wuměnjeny ▸ Rjadować…“ w Calc, zo byšće wuslědźił, kotre cele su z wuměnjenym formatowanjom definowane." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Zo byšće wšě cele w tabeli wuzběhnył, kotrež hódnoty zwonka prawodłiw płaćiwosće wobsahuja, wužiwajće „Nastroje ▸Detektiw ▸ Njepłaćiwy daty woznamjenić“." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Wužiwajće „Dataja ▸ Kajkosće ▸ Pismo“, zo byšće pismowe zasadźenje za wjetšu kompatibelnosć z druhimi běrowymi paketami wužiwał." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Zo byšće formlu do statiskich hódnotow konwertował, njetrjebaće kopěrować; wužiwajće „Daty ▸ Wuličić ▸ Formla do hótnoty“." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Klikńće šipk dele w komentarje a wubjerće „Wšě komentary formatować…“, zo byšće we Writer wšě komentary znowa formatował." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Chceće samsne wuhotowanje za wobrazowku a ćišć? Zmóžńće „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Calc ▸ Powšitkowne ▸ Ćišćersku metriku za tekstowe formatowanje wužiwać“." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer wam pomha, zawěsćenja wutworić: Z „Dataja ▸ Kopiju składować…“ móžeće nowy dokument wutworić a na originalu dale dźěłać." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Jeli sće předłohu na zakładźe druheje wutworił, móžeće procentowu sadźbu abo dypkowu hódnotu zapodać (na př. 110 % abo -2 pt abo +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Zo byšće w Calc komentar kopěrował, bjeztoho zo byšće wobsah ciloweje cele zhubił, kopěrujće komentar do ciloweje cele, klikńće z prawej tastu na „Wobsah zasadźić ▸ Wobsah zasadźić…“ a znjemóžnće wšě zapiski nimo „Komentary“ w dialogu. Zmóžńće tam pod „Operacije“ zapisk „Přidać“." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Konwertujće z masami swoje dokumenty MS Office do formata OpenDocument z asistentom „Dokumentowy konwerter“ w meniju „Dataja ▸ Asistenty ▸ Dokumentowy konwerter…“." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Hdyž runje celu wobdźěłujeće, móžeće z prawej tastu kliknyć a pola zasadźić: datum, tabelowe mjeno, dokumentowy titul atd." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Dyrbiće tabelu Writer přesunyć? Wužiwajće z menija Tabela ▸ Wubrać a potom z menija Zasadźić ▸ Wobłuk ▸ Wobłuk… a přesuńće ju, hdźež chceće." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Wužiwajće „Nastroje ▸ Awtomatiski tekst ▸ Awtomatiski tekst (tłóčatko) ▸ Importować“, zo byšće dokument Word wubrał abo předłohu, kotraž zapiski awtomatiskeho teksta wobsahuje, kotrež chceće importować." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Njezasadźejće manuelne łamanja, zo byšće dwaj wotstawkaj dźělił. Wužiwajće město toho „Format (abo Wotstawk z kontekstoweho menija) ▸ Wotstawk ▸ Zasunjenja a wotstup ▸ Wotstup ▸ Pod wotstawkom“." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Wobchowajće nule před ličbu z pomocu nastajenja celoweho formata ‚Zawodne nule‘ abo formatujće celu jako tekst, prjedy hač ličbu zapodawaće." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Sće lisćinowu předłohu wužił a chceće so k standardej wróćić? Klikńće na symbol „Naličensku lisćinu přepinać“ abo symbol „Čisłowanu lisćinu přepinać“ na symbolowej lajsće Formatowanje." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Zhašejće wšě swoje ćišćerske wobłuki w Calc z jednym wotmachom: Wubjerće wšě tabele a wužiwajće potom „Format ▸ Ćišćerske wobłuki ▸ Zhašeć." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Wubjerće w Calc „Zasadźić ▸ Wobraz“ abo ćehńće pozadkowy wobraz z galerije a potom „Format ▸ Rjadować ▸ Do pozadka“, zo byšće tabelam pozadkowe wobrazy přidał." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Maće problemy při zasadźowanju teksta z PDF-datajow abo webstronow do dokumentow? Spytajće jón jako njeformatowany tekst zasadźić (%MOD1+%MOD2+Umsch+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Wužiwajće funkciju =PŘITŘIHPŘERĚZK() w Calc, zo byšće přerězk datoweho rjada bjez najwyšeje a najnišeje hódnoty wuličił." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Opcionalny štwórty parameter funkcije Calc WPOKAZ podawa, hač prěnja datowa špalta je sortěrowana. Jeli nic, zapodajće FALSE abo 0." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Symbolowe lajsty so na wěsty kontekst poćahuja, wočinjeja so we wotwisnosći wot konteksta. Jeli to nochceće, znjemóžńće je w „Napohlad ▸ Symbolowe lajsty“." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Chceće globalny dokument z aktualneho dokumenta Writer wutworić? Wužiwajće „Dataja ▸ Pósłać ▸ Globalny dokument wutworić“ (poddokumenty so po rozrjedźe wutworjeja)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Chceće cele na ćišćowej stronje w Calc centrować? Wužiwajće „Format ▸ Strona... ▸ Strona ▸ Wuhotowanske nastajenja ▸ Tabelowe wusměrjenje“." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Wobłuki dadźa so zwjazać, zo by móhł tekst wot jednoho do druheho běžeć, kaž w desktopowym publikowanju." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Klikńće do tabele a wubjerće „Zasadźić ▸ Diagram“, zo byšće we Writer diagram na zakładźe tabele wutworił." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Wubjerće nastajenja w „Nastroje ▸ Nastajenja ▸ %PRODUCTNAME Writer ▸ Formatowanske pomocki ▸ Formatowanje pokazać“, zo byšće wubrał, kotre njećišćomne znamješka maja so pokazać." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Chceće we Writer k wěstej stronje skočić? Klikńće cyle nalěwo deleka w statusowej lajsće na př. na zapisk „Strona 1 z 1“, zo by dialog „K stronje přeńć“ wočinił, abo wužiwajće „Wobdźěłać ▸ K stronje přeńć… abo tłóčće %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME wjace hač 150 rěčow podpěruje." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Znjemóžńće „Prezentacija ▸ Nastajenja prezentacije ▸ Nastajenja ▸ Prezentacija přeco w prědku“, jeli chceće, zo druhi program ma swoje wokno w prědku wašeje prezentacije pokazać." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Chceće tučnje napisane słowa w dokumenće Writer namakać? Wubjerće „Wobdźěłać ▸ Pytać a wuměnić... ▸ Dalše nastajenja ▸ Atributy ▸ Pismowa waha“." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Móžeće wotstawki abo tabelowe linki alfabetisce abo numerisce přez „Nastroje ▸ Sortěrować“ sortěrować." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Zo byšće wotstawk před abo za wotrězkom zasadźił, tłóčće %MOD2+Enter na spočatku resp. na kóncu wotrězka." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME ma zarjadnistwo předłohow, zo by derje wupadace dokumenty wutworił - wupruwujće jo." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Wuličće wróćopłaćenja požčonkow z Calc: na př. =RMZ(2%/12;36;2500) za danjowu sadźbu na periodu 2%/12, 36 měsacow a požčonku 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Njemóžeće z funkciju VLOOKUP w Calc namakać, štož pytaće? Z INDEX a MATCH móžeće wšitko činić!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Chceće schowanu špaltu A pokazać? Klikńće na celu w špalće B, tłóčće lěwu tastu myški, pohibujće myšku dolěwa a pušće tastu. Wubjerće potom „Format ▸ Špalty ▸ Pokazać“." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Zo byšće čisło strony we Writer změnił, wubjerće „Format ▸ Wotstawk...“ a potom na rajtark „Tekstowy běh ▸ Łamanja ▸ Zasadźić“ a zapodajće čisło." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Wuwjedźće %PRODUCTNAME přez rollApp we wobhladowaku." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Dźiwny zmylkowy kod w Calc. Zmylk slědowany přez ličbu? Tuta strona da wujasnjenje:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Zo byšće wotstawk zasadźił, kotryž titul w zapisu wobsaha njeje, wubjerće Format ▸ Wotstawk ▸ Rozrjad a čisłowanje a potom rozrjadowu runinu." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Nimo zapisa wobsaha móže %PRODUCTNAME hesłarje, zapisy wobrazow, zapisy tabelow, zapisy objektow, literarne zapisy a swójske zapisy wutworić. " #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Njemóžeće swójsku celowu předłohu změnić abo zhašeć? Přepruwujće wšě tabele, hač žana škitana njeje." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Chceće wědźeć, hač cela we formlach druhich celow w Calc wustupuje? Wužiwajće Nastroje > Detektiw > Naslědniki slědować (Umsch+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "W zapodawanskim polu „Z“ nastajenjow awtomatiskeje korektury, móžeće zastupowacej symbolej .* wužiwać." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Chceće linku horjeka podwojić? Tłóčće %MOD1+D abo wužiwajće „Tabela ▸ Cele wupjelnić ▸ Deleka“." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Zo byšće we wjacorych tabelach pytał, wubjerće je, prjedy hač pytanje započnjeće." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Přesuńće cele z Calc do normalneho napohlada folije, zo byšće tabelu wutworił; hdyž do rozrjadoweho napohlada ćehnjeće, kóžda cela linku w rozrjedźe wutwori." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME wam pomha, dwě mjezoće abo wjace mjezotow wobeńć. Wubjerće „Nastroje ▸ Awtomatiska korektura ▸ Nastajenja awtomatiskeje korektury ▸ Nastajenja ▸ Dwójne mjezoty ignorować“." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Chceće kursor do cele naprawo stajić, po tym zo sće hódnotu w Calc zapodał? Wužiwajće tabulatorowu tastu město zapodawanskeje tasty." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Zo by so suwanska lajsta w Calc nalěwo pokazała, zmóžńće „Nastroje ▸ Nastajenja ▸ Rěčne nastajenja ▸ Rěče ▸ Kompleksne tekstowe wuhotowanje a zmóžnće potom w meniju „Tabela ▸ Wotprawa dolěwa“." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Ćehńće formatowany objekt do wokna Předłohi. Dialogowe polo so wočini a zapodajće prosće mjeno noweje předłohi." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nowe wersije %PRODUCTNAME nowe funkcije, zmylkowe porjedźenja a wěstotne wuporjedźenja k dispoziciji stajeja. Dźeržće swoju softwaru na běžnym!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Wuwiwaće nowe XSLT- a XML-filtry?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Pomoc %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Dalše informacije" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Strg" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/hsb/sw/messages.po libreoffice-7.1.3~rc2/translations/source/hsb/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/hsb/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hsb/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Michael Wolf \n" "Language-Team: Upper Sorbian \n" "Language: hsb\n" @@ -27715,7 +27715,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:340 msgctxt "tocentriespage|extended_tip|fillchar" msgid "Select the tab leader that you want use." -msgstr "" +msgstr "Wubjerće tabulatorowe pjelnjenske znamješko, kotrež chceće wužiwać." #. FfEDW #: sw/uiconfig/swriter/ui/tocentriespage.ui:353 @@ -27727,7 +27727,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:375 msgctxt "tocentriespage|extended_tip|tabstoppos" msgid "Enter the distance to leave between the left page margin and the tab stop." -msgstr "" +msgstr "Zapodajće wotstup, kotryž so ma mjez lěwej kromu strony a tabulatorom wostać." #. okgoX #: sw/uiconfig/swriter/ui/tocentriespage.ui:386 @@ -27739,7 +27739,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:395 msgctxt "tocentriespage|extended_tip|alignright" msgid "Aligns the tab stop to the right page margin." -msgstr "" +msgstr "Wusměrja tabulator na prawej kromje strony." #. btD2T #: sw/uiconfig/swriter/ui/tocentriespage.ui:408 @@ -27769,7 +27769,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:431 msgctxt "tocentriespage|extended_tip|chapterentry" msgid "Select the chapter information that you want to include in the index entry." -msgstr "" +msgstr "Wubjerće kapitlowe informacije, kotrež chceće do indeksoweho zapiska zapřijał." #. ZnXeV #: sw/uiconfig/swriter/ui/tocentriespage.ui:444 @@ -27781,7 +27781,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:465 msgctxt "tocentriespage|extended_tip|entryoutlinelevel" msgid "Enter the maximum hierarchy level down to which objects are shown in the generated index." -msgstr "" +msgstr "Zapodajće maksimalnu hierarchijowu runinu hač do objektow, kotrež so we wutworjenym indeksu pokazuja." #. qtbWw #: sw/uiconfig/swriter/ui/tocentriespage.ui:478 @@ -27805,13 +27805,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:500 msgctxt "tocentriespage|extended_tip|numberformat" msgid "Only visible when you click the E# button in the Structure line. Select to show the chapter number with or without separator." -msgstr "" +msgstr "Jenož widźomny, hdyž na tłóčatko E# w strukturnej lince klikaće. Wubjerće to, zo byšće kapitlowe čisło z dźělatkom abo bjez dźělatka." #. Kty7u #: sw/uiconfig/swriter/ui/tocentriespage.ui:539 msgctxt "tocentriespage|extended_tip|authfield" msgid "To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click Insert." -msgstr "" +msgstr "Zo byšće strukturnej lince zapisk přidał, klikńće na zapisk, potom do prózdneho kašćika w strukturnej lince a potom na Zasadźić." #. D6uWP #: sw/uiconfig/swriter/ui/tocentriespage.ui:558 @@ -27823,7 +27823,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:565 msgctxt "tocentriespage|extended_tip|insert" msgid "Adds the reference code for the selected bibliography entry to the Structure line. Select an entry in the list, click in an empty box, and then click this button." -msgstr "" +msgstr "Přidawa referencny kod za wubrany literarny zapisk do strukturneje linki. Wubjerće zapisk w lisćinje, klikńće do prózdneho kašćika a potom na tute tłóčatko." #. Lc2kd #: sw/uiconfig/swriter/ui/tocentriespage.ui:577 @@ -27835,7 +27835,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:584 msgctxt "tocentriespage|extended_tip|remove" msgid "Removes the selected reference code from the Structure line." -msgstr "" +msgstr "Wotstronja wubrany referencny kod ze strukturneje linki." #. UprDZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:596 @@ -27847,7 +27847,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:603 msgctxt "tocentriespage|extended_tip|chapterno" msgid "Inserts the chapter number. To assign chapter numbering to a heading style, choose Tools - Chapter Numbering." -msgstr "" +msgstr "Zasadźuje kapitlowe čisło. Zo byšće nadpismowej předłoze kapitlowe čisłowanje připokazał, wubjerće Nastroje - Čisłowanje kapitlow." #. vQAWr #: sw/uiconfig/swriter/ui/tocentriespage.ui:615 diff -Nru libreoffice-7.1.2~rc2/translations/source/hu/cui/messages.po libreoffice-7.1.3~rc2/translations/source/hu/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/hu/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hu/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-07 22:21+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" @@ -2457,1071 +2457,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "A %PRODUCTNAME négy makróbiztonsági szintet (alacsonytól nagyon magasig), és megbízható forrásokat támogat." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "A %PRODUCTNAME szervezetként kíván regisztrálni a Google Summer of Code (GSoC)-ra, lásd:" - -#. SNTbc -#: 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 "Tudta, hogy a szöveg egyes részeihez megjegyzéseket fűzhet? Használja a % MOD1+%MOD2+H billentyűkombinációt." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Egy vagy több bekezdést át szeretne helyezni? Nincs szükség kivágásra és beillesztésre: Használja a %MOD1 + %MOD2 + (fel / le) nyíl billentyűparancsot." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Módosítsa az előre definiált sablon vagy az aktuális dokumentum betűtípusát az Eszközök ▸ Beállítások ▸ % PRODUCTNAME Writer ▸ Alapvető betűkészletek lapon." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Szeretné a több, mint 10 karakterből álló szavakat megtalálni? Válassza a Szerkesztés ▸ Keresés és csere menüpontot, a Keresés mezőbe írja be ezt: [a-z] {10,} és jelölje be az Egyéb lehetőségek ▸ Reguláris kifejezések négyzetet." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Nyisson meg egy CSV fájlt új lapként az aktuális munkafüzetben a Munkalap ▸ Munkalap beszúrása fájlból menüponttal." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Félkövér, dőlt vagy aláhúzott szöveg gépelése után a Writer programban folytathatja az alapértelmezett attribútumok használatát a %MOD1 + Shift + X billentyűkombinációval (ez eltávolítja a közvetlen karakterformázásokat)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "A %MOD1 + %MOD2 + Shift + V billentyűkombinációval a vágólap tartalmát formázatlan szövegként tudja beilleszteni." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Szabja testre a lábjegyzetek megjelenését az Eszközök ▸ Lábjegyzetek és végjegyzetek segítségével." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "A Diavetítés ▸ Egyéni diavetítés funkcióval átrendezheti és kiválogathatja a diáit, hogy egy diavetítés megfeleljen a nézők igényeinek." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Meg akarja változtatni a szöveg helyesírásának ellenőrzéséhez használt nyelvet? Kattintson az állapotsor nyelvi területére, vagy alkalmazzon stílust." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writerben beilleszthet egy üres oldalt két egymást követő páros (vagy páratlan) oldal közé. Jelölje be az „Automatikusan beszúrt üres oldalak nyomtatása” négyzetet a nyomtatási ablak %PRODUCTNAME Writer lapján." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Nem szeretne minden oszlopot kinyomtatni? Rejtse el vagy csoportosítsa azokat, amelyekre nincs szükség." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Egy automatikusan lejátszott bemutató módosításához nyissa meg azt, majd ha elindult kattintson a jobb egérgombra, és válassza a Szerkesztés lehetőséget a helyi menüben." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Pontosan kell pozicionálni? A %MOD2 + nyíl gombokkal az objektumokat (alakzatokat, képeket, képleteket) egy-egy képpontonként lehet mozgatni." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "A beágyazott súgó az F1 megnyomásával érhető el telepítés után. Ha nincs telepítve, keresse online a következő címen:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Kattintson a jobb gombbal az állapotsoron a %PRODUCTNAME Calc alkalmazásban, és válassza a Kijelöltek száma elemet a kiválasztott cellák számának megjelenítéséhez." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Szeretne két vagy több hasábot egy %PRODUCTNAME Writer oldalon? Válassza a Beszúrás ▸ Szakasz menüpontot, állítsa be a Hasábok fülön, majd illessze be a szöveget." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Használja az Adatok ▸ Statisztika funkciót mintavétel, leíró statisztikák, varianciaanalízis, korreláció és még sok minden mást készítéséhez a %PRODUCTNAME Calc programban." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Másoljon az egyik lapról a másikra a vágólap használata nélkül. Jelölje ki a másolni kívánt területet, %MOD1 + kattintson a céllap fülére, és használja a Munkalap ▸ Cellák kitöltése ▸ Munkalapok kitöltése menüpontot." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "A %PRODUCTNAME kinézetét az Eszközök ▸ Beállítások ▸ Nézet ▸ Felhasználói felület segítségével módosíthatja." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "A %PRODUCTNAME Impress alkalmazásban használja a Beszúrás ▸ Média ▸ Fotóalbum elemet diavetítés létrehozásához képek sorozatából." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Jelenítse meg eredmények helyett a képleteket a Nézet ▸ Képlet megjelenítése (vagy az Eszközök ▸ Beállítások ▸ %PRODUCTNAME Calc ▸ Nézet ▸ Megjelenítés ▸ Képletek) segítségével." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "A %PRODUCTNAME fejlesztését egy barátságos közösség végzi, akik közreműködők százaiból áll a világ minden tájáról. Csatlakozzon hozzánk, és nem csak akkor, ha programozó." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Balkezes? Állítsa be az Eszközök ▸ Beállítások ▸ Nyelvi beállítások ▸ Nyelvek ▸ Ázsiai lehetőséget, majd az Eszközök ▸ Beállítások ▸% PRODUCTNAME Writer ▸ Nézet ▸ Vonalzó ▸ Jobbra igazított lehetőséget, amely balra helyezi a görgetősávot." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Szeretné, hogy a fejezetcímek mindig új oldalt kezdjenek? Szerkessze a Címsor 1-et (bekezdésstílust) és a Szövegbeosztás ▸ Törések lapon állítsa be a Beszúrás ▸ Oldal ▸ Előtte lehetőséget." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "A dátum / idő értéke egy szám a választott nulla nap után; a számban az egész rész a dátumot képviseli, a tört az időt (a napból eltelt részt), a 0.5 pedig délt jelent." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "A Shift+%MOD1+Del billentyűkombináció törli az adott mondatot a kurzortól a végéig." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Használjon oszlop- vagy sorcímkéket a képletekben. Például, ha két oszlopa van, az „Idő” és a „KM”, akkor használja az =Idő/KM képletet, hogy kilométerenként perceket kapjon." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Zavarja a \"hangyák menetelése\" Calcban a cellák körül? Az Escape billentyű megnyomásával kikapcsolhatja; a kimásolt tartalom így is beilleszthető marad." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Szeretne %PRODUCTNAME nagykövet lenni? Fejlesztői, üzemeltetői és oktatói tanúsítványok is elérhetőek." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Keverje az álló és fekvő elrendezéseket a Calc táblázatokban azáltal, hogy különböző oldalstílusokat állít be a munkalapokon." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Kattintson a speciális karakter ikonra az eszköztáron, hogy gyorsan beilleszthesse a kedvenc és legutóbb használt speciális karaktereket." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "A stílusok közötti kapcsolat megtekintéséhez válassza a Hierarchikus nézet elemet a Stílusok oldalsávban." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Stílusok segítségével egységesítheti a dokumentumban található táblázatokat. Válasszon egyet az előre definiált stílusok közül (F11) vagy a Táblázat > Automatikus formázási stílusok segítségével." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Konfigurálja a %MOD1 billentyű használatát hiperhivatkozások megnyitásához az Eszközök ▸ Beállítások ▸ %PRODUCTNAME ▸ Biztonság ▸ Beállítások ▸ „%MOD1 + kattintás szükséges hiperhivatkozások megnyitásához” bejelölésével." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Ha meg szeretné tekinteni a képlet egyes elemeinek kiszámítását, válassza ki a megfelelő elemeket, és nyomja meg az F9 billentyűt." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "A cellákat a Formátum ▸ Cellák ▸ Cellavédelem segítségével védheti. A lapok beillesztésének, törlésének, átnevezésének, áthelyezésének / másolásának megakadályozásához használja az Eszközök ▸ Munkalapvédelem lehetőséget." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Szeretné, hogy a szöveg egy görbe vonalát kövesse? Rajzolja meg a vonalat, kattintson duplán, gépelje be a szöveget, majd válassza a Formátum ▸ Szövegdoboz és alakzat ▸ Betűbűvész menüpontot." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Csak a legmagasabb értékeket szeretné megjeleníteni egy táblázatban? Válassza az Adatok ▸ Automatikus szűrő menüpontot, kattintson a nyílra és a listából válassza ki az Első 10 opciót." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Az oldalszám eltávolításához a tartalomjegyzékből lépjen a Beszúrás ▸ Tartalomjegyzék menüpontba (vagy kattintson a jobb gombbal, és szerkessze az előzőleg beillesztett tartalomjegyzéket). A Bejegyzések lapon törölje az oldalszámot (#) a Struktúra sorból." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "A Navigátor segítségével kijelölheti és mozgathatja a címsorokat és a címsor alatti szöveget a Navigátorban és a dokumentumban egyaránt." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Matematikai objektum gyors elkészítéséhez a Writerbe írja be a képletet, jelölje ki, és használja a Beszúrás ▸ Objektum ▸ Képlet menüpontot a szöveg konvertálásához." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "A %PRODUCTNAME segítségével nagyon egyszerű egy új szótárat telepíteni, mert kiegészítőként lehet hozzáadni a programhoz." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "A %PRODUCTNAME rendelkezik egy hordozható verzióval is, amely mobilitást biztosít. Még olyan számítógépekre is telepítheti a %PRODUCTNAME hordozható változatát, amin nincsenek rendszergazdai jogai." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writerben meg lehet számozni lábjegyzeteket oldal, fejezet, vagy dokumentum alapján is: Eszközök ▸ Lábjegyzetek és végjegyzetek ▸ Lábjegyzetek fül ▸ Számolás." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "A Writer dokumentum nem nyílik meg újra a szöveg kurzorral ugyanabban a szerkesztési helyzetben, mint ahol elmentéskor volt? Adja hozzá vezetéknévét és keresztnevét az Eszközök ▸ Beállítások ▸ %PRODUCTNAME ▸ Felhasználói adatai ▸ Vezetéknév / utónév rovatban." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Idézetek kezeléséhez használjon harmadik féltől érkező kiterjesztéseket." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Egy munkafüzet több munkalapján is ugyanoda szeretne beírni egy értéket? Jelölje ki a munkalapokat: tartsa nyomva a %MOD1 billentyűt, mikor a munkalapfülekre kattint." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "El szeretne rejteni szöveget egy dokumentumban? Jelölje ki, majd válassza a Beszúrás ▸ Szakasz menüpontot, és az Elrejtés négyzetet." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "A középső egérgomb működését is beállíthatja az Eszközök ▸ Beállítások ▸% PRODUCTNAME ▸ Nézet ▸ Középső egérgomb menüpontban." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Két álló oldalt szeretne kinyomtatni egy fekvő oldalra (A4-et csökkentve A5-re)? Fájl ▸ Nyomtatás, és válassza a 2-t az „Oldalak laponként” pontban." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Egy dokumentum könyvjelzőinek gyors eléréséhez kattintson a jobb egérgombbal az állapotsorban az oldalszámra (a dokumentum ablakának bal alsó sarka)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Válasszon ki egy objektumot a dokumentum hátterében a Rajzolás eszköztáron lévő Kiválasztás eszközzel, úgy hogy körülrajzolja a kiválasztandó objektumot." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Állítsa be a gyakran használt szövegeket Szövegblokként. Beillesztheti őket név szerint, gyorsbillentyűvel vagy az eszköztárról bármelyik Writer dokumentumban." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Játsszon zenét az egész diavetítés alatt során azzal, hogy a hangot az első diaátmenethez rendeli anélkül, hogy rákattintana az „Alkalmazás az összes diára” gombra." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "A % PRODUCTNAME Calc nem számol balról jobbra, de tiszteletben tartja a sorrendet: Zárójelek – Hatványok – Szorzás – Osztás – Összeadás – Kivonás." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Szerezze be a %PRODUCTNAME dokumentációt és az ingyenes, felhasználóknak készült könyveket itt:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Szeretne eltávolítani az összes <> jelet úgy, hogy köztük a szöveg megmarad? Szerkesztés ▸ Keresés és csere; Keresés = [<>], Csere mezőt hagyja üresen, és jelölje be az Egyéb beállítások alatt a „Reguláris kifejezések” elemet." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Prezentálnia kell egy Writerrel írt jelentést? A Fájl ▸ Küldés ▸ Vázlatból bemutató funkció automatikusan létrehozza a diavetítést a vázlatból." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "A hiperhivatkozások megjelenését szeretné kezelni a táblázatban? Szúrja be azokat a HIPERHIVATKOZÁS függvénnyel." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Törölje a jelölést az Eszközök ▸ Beállítások ▸ % PRODUCTNAME Calc ▸ Nézet ▸ Nagyítás alatt a „Munkalapok szinkronizálása” négyzetről, így a Calc minden munkalapjának külön nagyítást állíthat be." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Minden munkalapfülhöz mást színt tud beállítani, ha jobb egérgombbal rákattint, majd a Fül színe... lehetőséget választja." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Nyomon követheti a képletekben használt cellákat, előzményeket (Shift + F9) vagy függőségeket (Shift + F5) (vagy használja az Eszközök ▸ Detektívet). Minden egyes találat után lépjen még egy lépéssel tovább a láncban." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Szúrja be és számozza meg a képleteket egy lépésben: írja be az fn, majd az F3 billentyűt. A szövegblokk beillesztésre kerül, egy képletet és számot egy táblázatba igazítva." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Tárgymutatót készíthet az illusztrációk nevéből is, nem csak a feliratokból." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Használja az androidos vagy iPhone telefonját, hogy távolról vezérelje az Impress bemutatóját." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Meg akarja tudni, hogy hány nap van a jelenlegi hónapban? Használja a DAYSINMONTH(MA()) függvényt." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "### formában jelennek meg a számok a munkafüzetben? Túl keskeny az oszlop minden számjegy megjelenítéséhez." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Engedélyezze a képletek tömeges, párhuzamos számítását az Eszközök ▸ Beállítások ▸ OpenCL bekapcsolásával." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Használja a Draw vagy Impress Rajz eszköztárán található Összekötők eszközt, hogy szép folyamatábrákat hozzon létre, és utána igény szerint bemásolja/beillessze az objektumot a Writerbe." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "A felajánlásai a világszintű közösségünket támogatják." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Hozzá akar adni x hónapot egy dátumhoz? Használja ezt: =EDATE(kezdő dátum;hónapok)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Az adatokat tartalmazó, egymást követő, üres sorokkal és oszlopokkal határolt cellák kiválasztásához használja a %MOD1 + * (numerikus billentyűzet) billentyűkombinációt." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "A dátumelfogadási minta nem megfelelő? Használja az Eszközök ▸ Beállítások ▸ Nyelvi beállítások ▸ Nyelv ▸ Elfogadott dátummintázatok listát a minta módosításához." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Szeretne képleteket exportálni a CSV-be? Fájl ▸ Mentés másként ▸ Típus: Strukturált szöveg CSV, jelölje be a „Szűrő beállításainak módosítása” elemet, és a következő párbeszédpanelen jelölje be a „Cellaképletek mentése” elemet." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Az előadói konzol egy nagyszerű funkció, ha a %PRODUCTNAME Impress-szel dolgozik. Kipróbálta már?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Több megjegyzés egyidejű törléséhez jelölje ki a megjegyzéseket tartalmazó cellákat, és válassza a Munkalap ▸ Cellamegjegyzések ▸ Megjegyzés törlése opciót." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Alakítsa át a dokumentumait PDF-be egyetlen kattintással, a PDF ikonra kattintva az eszköztáron." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Görgetés nélkül szeretne kijelölni egy nagyobb cellatartományt? Gépelje be a név mezőbe a cellatartomány hivatkozását (például A1:A1000), és nyomja meg az Entert." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Tudni szeretné az érvényes parancssori paramétereket? Indítja az soffice programok a --help, -h vagy -? kapcsolók egyikével." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Illessze a munkalapot vagy a nyomtatási tartományt egy oldalra a Formátum ▸ Oldal ▸ Munkalap lap ▸ Méretezési mód segítségével." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Számozás nélküli elemre van szüksége egy listában? Használja a „Számozatlan bejegyzés beszúrása” ikont a Felsorolás és számozás eszköztáron." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "A cellák tájolását elforgathatja a Táblázat ▸ Tulajdonságok… ▸ Szövegbeosztás ▸ Szövegirány segítségével." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Ha módosítani akarja a vonalzók 0/0 pontját a %PRODUCTNAME Drawban, akkor húzza a két vonalzó kereszteződését a munkaterület bal felső sarkába." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Szeretne a Calcban egy oszlopot két másik közé helyezni egy lépésben? Kattintson a fejlécére majd egy cellára az oszlopban, tartsa lenyomva az egérgombot és a %MOD2 billentyűt, majd húzza a célra." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automatikusan megjelölheti a betűvel jelölt tartalomjegyzék-bejegyzéseket egy szómutatófájl segítségével." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Használja a Formátum ▸ Igazítást (vagy a helyi menüt) az objektumok pontos elhelyezéséhez a Draw-ban / Impressben: az oldal közepére helyezi, ha egy objektumot választ, vagy egy csoporton belül kerül a megfelelő helyre." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Ne használja a tabulátort elemek elkülönítésére Writer dokumentumban. Attól függően, hogy mit szeretne, egy szegélyek nélküli táblázat jobb megoldás lehet." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Egy billentyűkombináció megtalálásához nem kell görgetnie a listát az Eszközök ▸ Testreszabás ▸ Billentyűzet segítségével, hanem egyszerűen csak írja be." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Az objektumok beszúrásakor a % PRODUCTNAME automatikusan hozzáadhat egy számozott feliratot is. Lásd: Eszközök ▸ Beállítások ▸% PRODUCTNAME Writer ▸ Automatikus felirat." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "A % PRODUCTNAME használatával a Google Mail-fiókját is használhatja körlevelezésre. Töltse ki az Eszközök ▸ Beállítások ▸% PRODUCTNAME Writer ▸ Körlevél e-mailben fület adataival." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Tartsa láthatóan a lapon lévő oszlopfejléceket görgetésekor a Nézet ▸ Cellák rögzítése ▸ Az első sor rögzítése segítségével." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "El szeretné kezdeni a Basic makrók használatát? Vessen egy pillantást az Eszközök ▸ Makró ▸ Makró szerkesztése pontban található példákra." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Címsor bekezdésstílusok alkalmazása Writerben gyorsbillentyűk segítségével: %MOD1 + 1 az 1. címsorra vonatkozik, a %MOD1 + 2 a 2. címsorra stb." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Hogy ne vesszen el a nagy méretű dokumentumokban, használja a Navigátort (F5), amelynek segítségével könnyen kiigazodhat a tartalmakban." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "A Szerkesztés ▸ Keresés és csere lehetővé teszi a speciális karakterek beszúrását közvetlenül: kattintson a jobb gombbal a beviteli mezőkbe, vagy nyomja meg a Shift + %MOD1 + S billentyűkombinációt." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Szüksége van egyedi metaadat-tulajdonságokra? A Fájl ▸ Tulajdonságok ▸ Egyéni tulajdonságok fül segítségével bármit elkészítheti, amit szeretne." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Szeretne egy elemet látni Draw-ban, de nem tenné nyomtathatóvá? Rajzolja meg egy olyan rétegre, ahol a Nyomtathatóság nincs beállítva (kattintson a jobb egérgombbal, majd válassza a Réteg módosítása parancsot)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Az aktuális dátum dokumentumba szúrásához használja a Beszúrás ▸ Mező ▸ Dátum lehetőséget." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Sok kép van egy Writer dokumentumban? Gyorsítsa fel a betöltést a Nézet ▸ Képek és diagramok megjelenítésének kikapcsolásával." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Használja a Munkalap ▸ Cellák kitöltése ▸ Kitöltés véletlen számmal funkciót egy véletlen sorozat előállításához különféle eloszlások alapján." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Nevezze át a diákat az Impress-ben, hogy könnyebb legyen az „Ugrás az oldalra” használata, mert informatívabban vannak elnevezve, mint a Dia1, Dia2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "A Fejezetszámozás ablakban beállíthatja a fejezet száma mellett megjelenítendő szöveget is. Például írja be a „. fejezet” elemet az „1. Fejezet” megjelenítéséhez" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transzponálna egy Writer táblázatot? Másolja ki, illessze be Calcban, transzponálja az Irányított beillesztés segítségével, majd illessze be Writerben az Irányított beillesztés Formázott szöveg opciója segítségével." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "A „Függőleges szöveg” eszköz megjelenítéséhez a Rajz eszköztáron jelölje be az Eszközök ▸ Beállítások ▸ Nyelvi beállítások ▸ Nyelvek ▸ Alapértelmezett nyelvek ▸ Ázsiai menüpontot (és a gombot a jobb egérgombbal tegye láthatóvá)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Egy kijelölés gyors nagyításához kattintson a jobb gombbal az állapotsor nagyítás részére, és válassza az „Optimális nézet” lehetőséget." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Aláírhatja a meglévő PDF-fájlokat és ellenőrizheti az aláírásukat." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Gyakran készít dokumentumokat más dokumentumok alapján? Érdemes lehet sablont használnia." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Használja a Formátum ▸ Feltételes ▸ Kezelés funkciót a Calcban, hogy megtudja, mely cellákon lett alkalmazva feltételes formázás." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Az Eszközök ▸ Detektív ▸ Érvénytelen adatok kiemelése funkció a lap összes celláját kiemeli, amelyek az érvényesítési szabályokat megsértő értékeket tartalmaznak." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Használja a betűkészletek beágyazását a más szoftverekkel való jobb kompatibilitás érdekében a Fájl ▸ Tulajdonságok ▸ Betűkészletek pontban." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Egy képlet statikus értékekké konvertálásához nem kell másolnia és beillesztenie; egyszerűen csak használja az Adatok ▸ Számolás ▸ Képlet értékké alakítása menüpontot." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "A dokumentum összes megjegyzését újraformázhatja, ha a megjegyzésen található lefelé mutató nyílra kattint, és kiválasztja a „Minden megjegyzés formázása” lehetőséget." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Ugyanazt az elrendezést szeretné a képernyőn megjelenítéshez és a nyomtatáshoz? Jelölje be az Eszközök ▸ Beállítások ▸ %PRODUCTNAME Calc ▸ Általános ▸ \"A nyomtató mérettáblázatának használata a szövegformázáshoz\" négyzetet." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "A Writer segít a biztonsági mentések készítésében: A Fájl ▸ Másolat mentésével létrehozhat egy új dokumentumot, miközben továbbra is az eredeti példányán dolgozhat tovább." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Amikor egy stílus alapján hoz létre egy másikat, megadhat egy százalékos értéket vagy egy pontértéket (például 110% vagy −2pt vagy + 5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Ha másolni szeretne egy megjegyzést anélkül, hogy elveszítené a célcellát, akkor használja a Speciális beillesztés menüpontot, és törölje az összes jelölőnégyzetet, kivéve a párbeszédpanel „Megjegyzések” pontját. Használja a „Hozzáadás” műveletet, hogy ne írja felül a meglévő tartalmat." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Konvertálja az MS Office dokumentumait OpenDocument formátumba a Dokumentumátalakító tündér segítségével a Fájl ▸ Tündérek ▸ Dokumentumátalakító menüben." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "A cella szerkesztésekor jobb egérgombbal kattintva beilleszthet mezőket: Dátum, Munkalapnév, Dokumentum címe stb." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Áthelyezne egy Writer táblázatot? Válassza a Táblázat ▸ Kijelölés ▸ Táblázat; majd a Beszúrás ▸ Keret ▸ Keret menüpontot, és mozgassa oda, ahová kívánja." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Az Eszközök ▸ Szövegblokk ▸ Szövegblokk ▸ Importálás segítségével kiválaszthat egy Word dokumentumot vagy sablont, amely tartalmazza az importálni kívánt Szövegblokk bejegyzéseket." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Ne szúrjon be üres sorokat két bekezdés elválasztására. Inkább módosítsa a Formátum ▸ Bekezdés ▸ Behúzás és térköz ▸ Bekezdés alatt beállítással." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Tartsa meg a nullákat egy szám előtt a „Vezető nullák” cellaformátum opcióval, vagy formázza a cellát szöveges formátumúként, mielőtt megadná a számot." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vissza szeretne térni a listastílus alkalmazása után az alapértelmezett szövegstílushoz? Kattintson a Formázás eszköztár Felsorolás és számozás ikonjára, hogy kikapcsolja." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Törölje az összes nyomtatási területet egy lépésben: jelölje ki az összes lapot, majd válassza a Formázás ▸ Nyomtatási tartományok ▸ Törlés lehetőséget." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Adjon háttérképet a táblázathoz a Beszúrás ▸ Kép segítségével, vagy húzzon egy hátteret a Galériából, majd válassza a Formátum ▸ Elrendezés ▸ Háttérbe menüpontot." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Problémája van a szöveg beillesztésével PDF fájlokból vagy weboldalakról? Próbálja formázatlan szövegként beilleszteni a %MOD1 +%MOD2 + Shift+V billentyűkombinációval." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "A Calcban használja a RÉSZÁTLAG() függvényt, hogy visszaadja annak az adathalmaznak az átlagát, amely nem tartalmazza a legnagyobb és a legkisebb értéket." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Az FKERES 4., nem kötelező paramétere azt jelzi, hogy az első adatoszlop rendezett-e. Ha nem, írja be, hogy HAMIS vagy 0." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Az eszköztárak kontextusfüggők, azaz a kontextustól függően jelennek meg vagy tűnnek el. Ha nem akarja látni az ilyen eszköztárakat, akkor törölje a jelölést a Nézet ▸ Eszköztárak menüből." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Hozzon létre fődokumentumot az aktuális Writer dokumentumból a Fájl ▸ Küldés ▸ Fődokumentum létrehozása menüponttal (az aldokumentumok a vázlatszintek alapján jönnek létre)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Középre szeretné rendezni a cellákat egy nyomtatott oldalon a Calcban? Válassza a Formátum ▸ Oldal ▸ Elrendezés beállításai ▸ Táblázat igazítása menüpontot." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "A keretek összekapcsolhatóak, így a szöveg átfolyhat az egyikből a másikba, mint a kiadványszerkesztő programokban." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Készítsen Writer táblázatból diagramot a táblázatra kattintva, majd a Beszúrás menü Diagram pontját választva." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Használja az Eszközök ▸ Beállítások ▸% PRODUCTNAME Writer ▸ Formázási segédletek ▸ Megjelenítés szakasz beállításait a nem nyomtatható karakterek megjelenítéséhez a dokumentumban." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Szeretne egy adott számú oldalra ugrani a dokumentumban? Kattintson az állapotsor bal szélső elemére, vagy használja a Szerkesztés ▸ Ugrás oldalra… lehetőséget, vagy nyomja meg a %MOD1+G kombinációt." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "A %PRODUCTNAME több mint 150 nyelvet támogat." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Törölje a Diavetítés ▸ Diavetítés beállításai ▸ Bemutató mindig felül négyzetet, ha egy másik program ablakát szeretné a bemutató előtt megjeleníteni." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Meg szeretné keresni a félkövérrel formázott szavakat egy Writer dokumentumban? Szerkesztés ▸ Keresés és csere ▸ Egyéb beállítások ▸ Attribútumok ▸ Betűvastagság." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "A bekezdéseket vagy a táblázatsorokat betűrendben vagy numerikusan is rendezheti az Eszközök ▸ Rendezés menüpontban." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Ahhoz, hogy beillesszen egy bekezdést egy szakasz elé vagy mögé, nyomja meg a %MOD2+Enter kombinációt a szakasz elején vagy végén." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "A %PRODUCTNAME rendelkezik előre elkészített sablonokkal, hogy esztétikus dokumentumokat lehessen készíteni. Nézze meg őket!" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Számítsa ki a hiteltörlesztést a Calc-kal: például RÉSZLET(2%/12;36;2500), fizetési periódusra vonatkozó kamatláb: 2%/12, 36 hónap, a hitel összege: 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Nem talál valamit Calcban az FKERES függvény használatával? Használja az INDEX és HOL.VAN függvényt!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Szeretné megjeleníteni a rejtett A oszlopot? Kattintson egy cellába a B oszlopban, nyomja meg a bal egérgombot, mozgassa az egeret balra, engedje fel. Ezután kapcsolja be a megjelenítést a Formátum ▸ Oszlopok ▸ Megjelenítés menüponttal." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Oldalszám megváltoztatásához a Writerben: nyissa meg az első bekezdés tulajdonságait, a Szövegbeosztás fülön a Törés részben válassza az oldal beszúrását, majd írja be a számot." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Futtassa a %PRODUCTNAME csomagot bármelyik böngészőben a rollApp segítségével." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Furcsa hiba a Calcban? Err: amelyet egy szám követ? Ez a lap magyarázatot ad:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Elhelyezhet egy nem címsor formátumú bekezdést a tartalomjegyzékbe a bekezdés beállításaiban a Vázlatszintek és számozás részben egy vázlatszint beállításával." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "A tartalomjegyzék mellett a %PRODUCTNAME ábécérend szerinti, illusztrációkat, táblázatokat, objektumokat, bibliográfiai tárgymutatókat és felhasználó által megadott jegyzékeket is létre tud hozni." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Nem tud módosítani vagy törölni egy egyéni cellastílust? Nézze meg az összes munkalapot, egyik se legyen írásvédett." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Szeretne egy sor adatot előállítani? Válassza ki a cellatartományt, majd a Munkalap ▸ Cellák kitöltése ▸ Sorozatok menüpontot, végül válasszon a Számtani sorozat, Mértani sorozat, Dátumsorozat és Automatikus kitöltés lehetőségekből." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Szeretné tudni, hogy egy cellára más cellák képleteiben hivatkoznak-e? Használja az Eszközök ▸ Detektív ▸ Függőségek felderítése (Shift+F5) menüpontot." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Az automatikus javítás beviteli mezőjében használhatja ezeket a helyettesítő karaktereket is: .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Szeretné megismételni az előző sort? Nyomja meg a %MOD1+D kombinációt, vagy használja a Munkalap ▸ Cellák kitöltése ▸ Le menüpontot." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Ha egyszerre több munkalapon is keresne, jelölje ki őket a keresés indítása előtt." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Húzzon cellákat a Calcból a diák normál nézetébe egy táblázat létrehozásához; vagy a vázlat nézetbe, ahol minden cella létrehoz egy sort a vázlatban." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "A %PRODUCTNAME segít abban, hogy ne írjon be két vagy több szóközt a Writerbe. Jelölje be az Eszközök ▸ Automatikus javítás ▸ Automatikus javítás beállításai ▸ Beállítások ▸ Dupla szóközök figyelmen kívül hagyása négyzetet." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Szeretné, ha a kurzor a jobb oldali cellába lépne, miután megadta az értéket a Calcban? Az Enter helyett használja a Tab billentyűt." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "A görgetősáv bal oldalon történő megjelenítéséhez engedélyezze az Eszközök ▸ Beállítások ▸ Nyelvi beállítások ▸ Nyelvek ▸ Összetett szöveg lehetőséget, és válassza a Munkalap ▸ Jobbról balra menüpontot." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Húzzon egy formázott objektumot a Stílusok és formázás ablakra. Egy párbeszédablak fog kinyílni, csak adja meg az új stílus nevét." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "A %PRODUCTNAME új verziói új funkciókat, hibajavításokat és biztonsági javításokat kínálnak. Tartsa naprakészen a szoftvert!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Új XSLT és XML szűrőket fejleszt?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Nyomja meg a Shift+F1 kombinációt a részletes súgó tippjeinek megjelenítéséhez a párbeszédablakokban, ha a „Részletes tippek” nincs bekapcsolva az Eszközök ▸ Beállítások ▸ %PRODUCTNAME ▸ Általános lapon." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Súgó" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "További információ" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Művelet futtatása most..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Nap tippje: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hu/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:01+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: Hungarian \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "villogó betűkészletekvillanó betűkészletek" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Villogó" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "A kiválasztott karaktert villogóvá teszi. A villogás gyakoriságát nem lehet változtatni." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/hu/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/hu/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/hu/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/hu/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-05 15:36+0000\n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" "Last-Translator: Gábor Kelemen \n" "Language-Team: Hungarian \n" "Language: hu\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1555539232.000000\n" #. HhMVS @@ -1334,7 +1334,7 @@ "STR_DELETE_MASTER_PAGES\n" "value.text" msgid "Delete unused ~master slides" -msgstr "~Nem használt diaablonok törlése" +msgstr "~Nem használt diasablonok törlése" #. nyEoz #: PresentationMinimizer.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/id/basctl/messages.po libreoffice-7.1.3~rc2/translations/source/id/basctl/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/basctl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/basctl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-03-24 09:16+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556766984.000000\n" #. fniWp @@ -975,7 +975,7 @@ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:164 msgctxt "importlibdialog|label1" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. 7ZFMZ #: basctl/uiconfig/basicide/ui/importlibdialog.ui:279 @@ -1107,7 +1107,7 @@ #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:250 msgctxt "managebreakpoints|extended_tip|pass" msgid "Specify the number of loops to perform before the breakpoint takes effect." -msgstr "" +msgstr "Nyatakan banyaknya pengulangan yang akan dilakukan sebelum titik jeda berdampak." #. VDCwR #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:263 @@ -1287,16 +1287,16 @@ #: basctl/uiconfig/basicide/ui/sortmenu.ui:12 msgctxt "sortmenu|macrosort" msgid "_Sorting" -msgstr "" +msgstr "Peng_urutan" #. GCbAJ #: basctl/uiconfig/basicide/ui/sortmenu.ui:22 msgctxt "sortmenu|alphabetically" msgid "_Alphabetically" -msgstr "" +msgstr "Secara _Alfabetis" #. PBmML #: basctl/uiconfig/basicide/ui/sortmenu.ui:32 msgctxt "sortmenu|properorder" msgid "_Proper order" -msgstr "" +msgstr "Urutan yang te_pat" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/connectivity/messages.po libreoffice-7.1.3~rc2/translations/source/id/connectivity/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/connectivity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/connectivity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-03-10 13:36+0100\n" -"PO-Revision-Date: 2020-03-11 17:15+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-11 06:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1543751768.000000\n" #. 9LXDp @@ -106,7 +106,7 @@ #: connectivity/inc/strings.hrc:41 msgctxt "STR_INVALID_BOOKMARK" msgid "Invalid bookmark value" -msgstr "Nilai penanda buku tidak sah" +msgstr "Nilai markah tidak sah" #. VXSEP #: connectivity/inc/strings.hrc:42 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/cui/messages.po libreoffice-7.1.3~rc2/translations/source/id/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-02-02 18:36+0000\n" -"Last-Translator: Andik Nur Achmad \n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564987944.000000\n" #. GyY9M @@ -128,7 +128,7 @@ #: cui/inc/strings.hrc:30 msgctxt "RID_SVXSTR_KEY_TEMPLATE_PATH" msgid "Templates" -msgstr "Palet" +msgstr "Cetakan" #. mNj9y #: cui/inc/strings.hrc:31 @@ -176,7 +176,7 @@ #: cui/inc/strings.hrc:38 msgctxt "RID_SVXSTR_KEY_FAVORITES_DIR" msgid "Folder Bookmarks" -msgstr "Folder Penanda Buku" +msgstr "Folder Markah" #. AJkga #: cui/inc/strings.hrc:39 @@ -2092,7 +2092,7 @@ #: cui/inc/strings.hrc:401 msgctxt "RID_SVXSTR_UI_APPLYALL" msgid "Apply to %MODULE" -msgstr "" +msgstr "Terapkan ke %MODULE" #. mpS3V #: cui/inc/tipoftheday.hrc:48 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME mendukung empat tingkat keamanan makro (dari rendah ke sangat tinggi) dan sumber terpercaya." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 bermaksud mengajukan sebagai organisasi untuk Google Summer of Code (GSoC) lihat:" - -#. SNTbc -#: 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 "Tahukah Anda bahwa Anda dapat melampirkan komentar ke bagian teks? Cukup gunakan pintasan %MOD1 + %MOD2 + C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Perlu memindahkan satu atau beberapa paragraf? Tidak perlu memotong dan menempel: Gunakan pintasan keyboard %MOD1 + %MOD2 + Panah (Atas / Bawah)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Ubah fonta dasar untuk templat yang telah ditentukan atau dokumen saat ini melalui menu Perkakas ▸ Opsi ▸ %PRODUCTNAME Writer ▸ Fonta dasar." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Ingin menemukan kata yang berisi lebih dari 10 karakter? Sunting ▸ Cari dan Ganti ▸ Cari ▸ [a-z]{10,} ▸ Opsi Lainnya ▸ centang Ekspresi reguler." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Buka berkas CSV sebagai lembar baru di spreadsheet saat ini melalui menu Lembar ▸ Lembar dari berkas." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Mengetik dengan huruf tebal, miring, atau bergaris bawah di Writer Anda dapat melanjutkannya dengan atribut baku hanya dengan menggunakan pintasan %MOD1 + Shift + X (menghapus format karakter langsung)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Gunakan %MOD1 + %MOD2 + Shift + V untuk menempelkan konten papan klip sebagai teks yang tidak terformat." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Kustomisasi tampilan catatan kaki dengan menu Perkakas ▸ Catatan Kaki dan Catatan Akhir…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Dengan menu Pertunjukan Salindia ▸ Pertunjukan Salindia Kustom, susun ulang dan pilih salindia yang sesuai dengan tampilan salindia dan kebutuhan pemirsa Anda." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Ingin mengubah pemeriksaan ejaan untuk sebagian teks? Klik dalam zona bahasa dari bilah status, atau lebih baik, terapkan suatu gaya." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer dapat menyisipkan halaman kosong di antara dua halaman ganjil (genap) yang mengikuti. Cek menu “Cetak halaman kosong yang dimasukkan secara otomatis” di tab dialog %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Anda tidak ingin mencetak semua kolom? Sembunyikan atau kelompokkan yang tidak Anda perlukan." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Untuk mengubah suatu presentasi Bermain Sendiri, bukalah dan setelah itu mulai, klik kanan dan pilih Sunting dalam menu konteks." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Perlu posisi yang tepat? %MOD2 + panah Tombol memindahkan objek (bentuk, gambar, rumus) dengan satu piksel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Tersedia bantuan tertanam dengan menekan F1, jika Anda telah memasangnya. Atau periksa secara daring di:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Klik kanan pada bilah status di %PRODUCTNAME Calc dan pilih \"Hitung yang terpilih\" untuk menampilkan jumlah sel yang dipilih." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Ingin punya dua kolom atau lebih hanya untuk sebagian dari halaman %PRODUCTNAME Writer? Sisip ▸ Seksi, atur dengan tab Kolom, dan letakkan teks pada seksi itu." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Gunakan menu Data ▸ Statistik untuk pengambilan sampel, statistik deskriptif, analisis varian, korelasi, dan banyak lagi dalam %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Anda dapat menyalin dari satu lembar ke lembar lainnya tanpa papan klip. Pilih area yang akan disalin, %MOD1 + klik tab lembar target dan gunakan Lembar ▸ Isi Sel ▸ Isi Lembar." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Anda dapat mengubah tampilan %PRODUCTNAME melalui menu Perkakas ▸ Opsi ▸ Tampilan ▸ Antarmuka Pengguna." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "Di %PRODUCTNAME Impress, gunakan menu Sisipkan ▸ Media ▸ Album Foto untuk membuat rangkaian salindia dari serangkaian gambar dengan fitur \"Album Foto\"." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Anda dapat menampilkan rumus alih-alih hasil melalui menu Tampilan ▸ Tampilkan Formula (atau Alat ▸ Opsi ▸ %PRODUCTNAME Calc ▸ Tampilan ▸ Tampilkan ▸ Rumus)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME dikembangkan oleh komunitas yang ramah, terdiri dari ratusan kontributor di seluruh dunia. Bergabunglah dengan kami dengan keahlian Anda diluar coding." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Seorang yang kidal? Aktifkan menu Alat ▸ Opsi ▸ Pengaturan Bahasa ▸ Bahasa ▸ Bahasa Asia dan cek menu Alat ▸ Opsi ▸ %PRODUCTNAME Writer ▸ Lihat ▸ Penggaris ▸ Rata-Kanan, yang menampilkan bilah gulir ke kiri." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Ingin judul bab Anda selalu berada di awal halaman? Edit Tajuk1 (gaya paragraf) ▸ Aliran Teks ▸ Jeda dan cek Sisipkan ▸ Halaman ▸ Sebelum." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Nilai tanggal/waktu merupakan sebuah angka yang terhitung sejak hari ke nol yang terpilih; dalam bilangan, bagian integer mewakili tanggal, dan bagian pecahan adalah waktu (bagian yang berlalu sehari), dengan 0,5 mewakili siang." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift + %MOD1 + Del menghapus dari kursor ke akhir kalimat saat ini." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Gunakan label kolom atau baris dalam formula. Misalnya, jika Anda memiliki dua kolom, \"Waktu\" dan \"KM\", gunakan = Waktu/KM untuk mendapatkan menit per kilometer." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Terganggu oleh \"semut berbaris\" di sekitar sel di Calc? Tekan escape untuk menghentikan mereka; konten yang disalin akan tetap tersedia untuk ditempelkan." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Ingin menjadi Duta %PRODUCTNAME? Kami menyediakan sertifikasi untuk para pengembang, admin, dan trainer." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Gabungkan halaman berorientasi tegak dan bentang di lembar kerja Calc dengan cara menerapkan gaya halaman berbeda pada lembar kerja." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klik ikon karakter khusus pada bilah alat untuk mendapat akses cepat ke karakter favorit dan yang baru saja digunakan untuk disisipkan." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Pilih \"Tampilan Hirarkis\" di bilah sisi Gaya untuk melihat hubungan antara gaya." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Anda dapat memakai gaya untuk membuat tabel-tabel dalam dokumen Anda konsisten. Pilih satu dari terpradefinis per Gaya (F11) atau melalui Tabel ▸ AutoFormat." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Konfigurasikan penggunaan tombol %MOD1 untuk membuka Pranala? Alat ▸ Opsi ▸ %PRODUCTNAME ▸ Keamanan ▸ Opsi ▸ “%MOD1 + klik diperlukan untuk membuka pranala”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Anda ingin melihat perhitungan masing-masing elemen rumus, pilih masing-masing elemen kemudian tekan F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Anda dapat melindungi sel melalui menu Format ▸ Sel ▸ Proteksi. Untuk mencegah penyisipan, penghapusan, perubahan nama, pemindahan/penyalinan lembar menggunakan menu Alat ▸ Lindungi Sheet." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Menulis sepanjang kurva? Gambar garis, klik dua kali, ketik teks, Format ▸ Kotak Teks dan Bentuk ▸ Seni Fonta." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Ingin menampilkan nilai tertinggi dalam spreadsheet saja? Pilih menu Data ▸ Filter Otomatis, klik panah drop-down, dan pilih \"Top10\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Untuk menghapus nomor halaman dari daftar isi Anda, masuk ke menu Sisipkan ▸ Daftar Isi (atau klik kanan dan Edit indeks yang sebelumnya disisipkan). Di tab Entri, hapus nomor halaman (#) dari garis Struktur." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Dengan Navigator, Anda dapat memilih & memindah naik/turun tajuk dan teks di bawah tajuk, dalam Navigator dan dalam dokumen." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Untuk mendapatkan objek matematika dengan cepat di Writer, ketik rumus Anda, tandai, dan gunakan Sisipkan ▸ Objek ▸ Formula untuk mengonversi teks." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Memasang kamus baru di %PRODUCTNAME sangatlah mudah, karena kamus terserbut telah tersedia dalam bentuk ekstensi." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME memiliki versi portabel yang memberi Anda mobilitas. Bahkan tanpa hak administrator di komputer, Anda dapat memasang %PRODUCTNAME Portable ke hard drive Anda juga." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer memungkinkan Anda menghitung jumlah catatan kaki Anda per halaman, bab, dokumen: Alat ▸ Catatan Kaki dan Catatan Akhir ▸ tab Catatan Kaki ▸ Menghitung." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Dokumen Writer Anda tidak dibuka kembali dengan kursor teks pada posisi penyuntingan yang sama ketika Anda menyimpannya? Tambahkan nama depan atau nama belakang pada Perkakas ▸ Opsi ▸ %PRODUCTNAME ▸ Data Pengguna ▸ Nama depan/belakang." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Manajemen kutipan? Gunakan ekstensi pihak ke-3." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Ingin memasukkan nilai pada tempat yang sama di beberapa lembar? Pilih lembar: tahan tombol %MOD1 dan klik tab mereka sebelum masuk." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Ingin menyembunyikan beberapa teks dalam dokumen? Pilih teks. Sisipkan ▸ Bagian, kemudian pilih \"Sembunyikan\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Anda dapat menyesuaikan tombol tengah tetikus apada menu Alat ▸ Opsi ▸ %PRODUCTNAME ▸ Lihat ▸ Tombol Tengah Tetikus." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Ingin mencetak dua halaman tegak pada sebuah halaman lanskap (mengurangi A4 menjadi A5)? Berkas ▸ Cetak dan pilih 2 pada “Halaman per lembar”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Untuk akses cepat ke markah buku dokumen Anda, klik kanan nomor halaman pada bilah status (sudut kiri bawah jendela dokumen)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Pilih suatu objek dalam latar belakang dokumen melalui alat Pilih dalam bilah alat Menggambar untuk mengelilingi objek yang dipilih." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Tentukan teks yang sering Anda gunakan untuk AutoText. Anda akan dapat menyisipkannya dengan nama, pintasan, atau bilah alat pada dokumen Writer manapun." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Mainkan musik di seluruh tayangan slide dengan menetapkan suara ke transisi salindia pertama tanpa mengklik tombol \"Terapkan ke Semua Slide\"." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 tidak menghitung dari kiri ke kanan tetapi mematuhi urutan kurung - Eksponen - Perkalian - Pembagian - Tambahan - Pengurangan." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Dapatkan dokumentasi %PRODUCTNAME dan buku panduan pengguna gratis di:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Ingin menghapus semua <> sekaligus dan mempertahankan teks di dalamnya? Sunting ▸ Cari dan Ganti: Cari = [<>], Ganti = kosong dan centang \"Ekspresi reguler\" di bawah Opsi lain." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Perlu menyajikan laporan yang ditulis dengan Writer? File ▸ Kirim ▸ Garis Besar ke Presentasi secara otomatis membuat tayangan salindia dari garis besar." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Ingin mengelola presentasi pranala pada spreadsheet? Sisipkan mereka dengan fungsi HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Hapus centang Alat ▸ Opsi ▸ %PRODUCTNAME Calc ▸ Lihat ▸ Perbesaran: “Sinkronkan lembar” sehingga setiap lembar di Calc memiliki faktor perbesaran sendiri." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Anda dapat mengatur warna untuk setiap tab: klik kanan tab atau gunakan Lembar ▸ Tab Lembar Warna." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Periksa sel yang digunakan dalam rumus, preseden (Shift + F9) atau ketergantungan (Shift + F5) (atau gunakan menu Alat ▸ Detektif). Untuk setiap temuan Anda maju selakah demi selangkah lagi dalam rantai." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Sisipkan dan beri nomor formula Anda dalam satu langkah: ketik fn lalu F3. Teks Otomatis disisipkan dengan rumus dan angka yang disejajarkan dalam sebuah tabel." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Anda dapat membuat indeks ilustrasi dari nama objek, tidak hanya dari keterangan." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Gunakan Android atau iPhone Anda untuk mengendalikan jarak jauh presentasi Impress Anda." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Ingin tahu ada berapa hari di bulan ini? Gunakan fungsi DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Nomor Anda ditampilkan sebagai ### di lembar kerja Anda? Kolom terlalu sempit untuk menampilkan semua digit." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Aktifkan perhitungan paralel masif dari sel rumus melalui menu Alat ▸ Opsi ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Gunakan alat Konektor dari bilah alat Menggambar dalam Draw/Impress untuk membuat diagram alur yang bagus dan opsional salin/tempel objek ke dalam Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Donasi anda mendukung komunitas kami di seluruh dunia." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Anda ingin menambahkan x bulan ke sebuah tanggal? Gunakan =EDATE(tanggal;bulan)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Untuk memilih rentang sel yang berdekatan serta berisi data dan dibatasi oleh baris dan kolom kosong gunakan %MOD1 + * (tombol angka)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Pola penerimaan tanggal Anda tidak tepat? Gunakan Alat ▸ Opsi ▸ Pengaturan Bahasa ▸ Bahasa ▸ Pola penerimaan tanggal untuk mengubah pola." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Ingin mengekspor rumus ke CSV? Berkas ▸ Simpan Sebagai ▸ Ketik: Teks CSV, centang “Edit pengaturan filter”, dan centang “Simpan rumus sel” di dialog berikutnya." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konsol penyaji adalah sebuah fitur hebat ketika bekerja dengan %PRODUCTNAME Impress. Apakah Anda telah memeriksanya?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Untuk menghapus banyak komentar, pilih sel dengan komentar dan gunakan menu Lembar ▸ Komentar Sel ▸ Hapus Komentar." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Konversi dokumen Anda menjadi PDF dengan mudah dengan satu klik dengan mengklik ikon PDF di bilah alat." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Ingin memilih suatu rentang besar sel tanpa menggulir? Ketikkan acuan rentang (mis. A1:A1000) dalam kotak nama lalu Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Ingin tahu parameter baris perintah yang valid? Mulai soffice dengan --help atau -h atau -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Sesuaikan lembar Anda atau rentang cetak ke halaman melalui menu Format ▸ Halaman ▸ Tab Lembar ▸ Mode Penskalaan." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Perlu item yang tidak bernomor dalam daftar? Gunakan \"Sisipkan Entri Tidak Bernomor\" dalam bilah alat Bulatan dan Penomoran." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Anda dapat memutar orientasi tabel sel melalui menu Tabel ▸ Properti ... ▸ Alur Teks ▸ Orientasi teks." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Dalam %PRODUCTNAME Draw untuk mengganti titk 0/0 penggaris, seret persimpangan dua penggaris di sudut kiri atas ke ruang kerja." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Memindahkan kolom dalam Calc di antara dua lainnya dalam satu langkah? Klik tajuk lalu sel di kolom, tahan tombol tetikus dan pindahkan ke target dengan tombol %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Secara otomatis menandai entri indeks alfabet menggunakan berkas konkordansi." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Gunakan Format ▸ Perataan (atau menu konteks) untuk pemosisian objek yang akuran di Draw/Impress: objek akan ditengahkan pada halaman jika hanya satu objek saja yang dipilih atau objek berada dalam masing-masing grup." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Jangan gunakan tab untuk membuat jarak item pada dokumen Writer. Bergantung pada apa yang Anda coba lakukan, tabel tanpa batas bisa menjadi pilihan yang lebih baik." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Tidak perlu menelusuri daftar di Alat ▸ Kustomisasi ▸ Papan Tik untuk menemukan jalan pintas: cukup ketik itu." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME dapat secara otomatis menambahkan teks bernomor ketika Anda memasukkan objek. Lihat Alat ▸ Opsi ▸ %PRODUCTNAME Writer ▸ Kapsi Otomatis." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Dengan %PRODUCTNAME Anda dapat menggunakan akun Google Mail Anda untuk melakukan penggabungan surat. Isi melalui menu Alat ▸ Opsi ▸ %PRODUCTNAME Writer ▸ Mail Merge Surel." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Pertahankan tajuk kolom dari lembaran agar terlihat saat menggulirkan garis melalui Tampilan ▸ Bekukan Sel ▸ Bekukan Baris Pertama." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Anda ingin mulai bekerja dengan macro Basic? Lihatlah contoh di bawah Alat ▸ Makro ▸ Edit Makro." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Terapkan gaya paragraf Tajuk di Writer dengan tombol pintas: %MOD1 + 1 berlaku Tajuk 1, %MOD1 + 2 berlaku Tajuk 2, dll." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Jangan tersesat dalam dokumen besar. Gunakan Navigator (F5) untuk menemukan jalan Anda melalui konten." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Sunting ▸ Cari dan Ganti memungkinkan Anda menyisipkan karakter khusus secara langsung: klik kanan dalam ruas masukan atau tekan Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Perlu konten khusus untuk properti metadata? Berkas ▸ Properti ▸ tab Properti Kustom memungkinkan Anda membuat apa yang Anda inginkan." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Ingin melihat, tetapi tidak mencetak, objek di Draw? Gambarlah pada layer yang tidak ditandai sebagai \"Printable\" (klik kanan pada tab dan \"Modifkasi Layer\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Untuk menyisipkan tanggal saat ini di dokumen Anda, gunakan Sisipkan ▸ Bidang ▸ Tanggal." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Punya banyak gambar di dokumen Writer Anda? Percepat tampilan dengan menonaktifkan Tampilan ▸ Gambar dan bagan." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Gunakan Lembar ▸ Isi Sel ▸ Nomor Acak untuk menghasilkan seri acak berdasarkan berbagai distribusi." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Ganti nama salindia Anda di Impress untuk membantu Anda menentukan interaksi \"Lihat halaman\" dan memiliki ringkasan yang lebih eksplisit daripada Salindia1, Salindia2 …" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Dialog penomoran bab memungkinkan Anda mengatur teks yang akan ditampilkan sebelum nomor bab. Misalnya, ketik \"Bab\" untuk menampilkan \"Bab 1\"" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Men-transpose sebuah tabel Writer? Salin dan tempel dalam Calc, transpose dengan salin/tempel khusus lalu salin/tempel khusus ▸ Teks terformat dalam Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Untuk mendapatkan alat \"Teks Vertikal\" di bilah alat Draw, periksa Alat ▸ Opsi ▸ Pengaturan Bahasa ▸ Bahasa ▸ Bahasa default ▸ Asia (dan buat tombolnya terlihat dengan klik kanan)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Untuk memperbesar secara cepat pada pilihan rentang, klik kanan pada bagian zum dari bilah status dan pilih Optimal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Anda dapat menandatangani berkas PDF yang ada dan juga memverifikasi tanda tangan itu." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Sering membuat satu dokumen dari yang lain? Pertimbangkan memakai sebuah templat." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Gunakan Format ▸ Pemformatan Bersyarat ▸ Kelola di Calc untuk mengetahui sel mana yang telah ditentukan dengan pemformatan bersyarat." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Alat ▸ Detektif ▸ Tandai Data Tidak Valid untuk menyoroti semua sel di lembar yang berisi nilai di luar aturan validasi." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Gunakan penyematan font untuk interoperabilitas yang lebih besar dengan aplikasi perkantoran lainnya di Berkas ▸ Properti ▸ Fonta." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Untuk mengonversi rumus menjadi nilai statis, Anda tidak perlu menyalin/menempel; gunakan Data ▸ Hitung ▸ Formula untuk Nilai." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Anda dapat memformat ulang semua komentar di dokumen dengan mengeklik panah bawah di komentar dan memilih \"Format semua Komentar\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Ingin tata letak yang sama untuk tampilan layar dan pencetakan? Cek menu Alat ▸ Opsi ▸ %PRODUCTNAME Calc ▸ Umum ▸ Gunakan metrik pencetak untuk pemformatan teks." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer membantu Anda membuat cadangan: dengan Berkas ▸ Simpan Salinan Anda membuat dokumen baru yang terus bekerja pada dokumen asli." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Ketika Anda telah membuat Gaya berdasarkan yang lain, Anda dapat memasukkan nilai persentase atau nilai poin (mis. 110% atau pt2pt atau + 5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Untuk menyalin komentar tanpa kehilangan konten sel target Anda harus menggunakan Tempel Spesial dan hapus centang semuanya kecuali \"Komentar\" dalam dialog. Gunakan Operasi “Tambah” agar tidak menimpa konten yang ada." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Konversi dokumen MS Office Anda secara massal ke format OpenDocument melalui Wisaya Konversi Dokumen di menu Berkas ▸ Wisaya ▸ Konversi Dokumen" #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Ketika menyunting sel di tempatnya, Anda dapat mengklik kanan dan Sisip ruas: Tanggal, Nama sheet, Judul dokumen, dan sebagainya." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Ingin memindahkan tabel Writer? Tabel ▸ Pilih ▸ Tabel dan Sisip ▸ Bingkai ▸ Bingkai dan pindahkan ke tempat yang Anda inginkan." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Melalui Perkakas ▸ TeksOtomatis ▸ TeksOtomatis ▸ Impor Anda dapat memilih dokumen Word atau templat yang memiliki entri TeksOtomatis yang ingin Anda impor." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Jangan sisipkan jeda manual untuk memisahkan dua paragraf. Ubahlah nilai Indentasi & Spasi ▸ Spasi ▸ Di bawah paragraf pada properti gaya/paragraf." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Pertahankan angka nol sebelum nomor dengan menggunakan format sel \"nol di depan\" atau format sel sebagai teks sebelum memasukkan nomor." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Ingin kembali ke baku setelah menerapkan suatu gaya daftar? Klik alat Bulatan atau Penomoran Nyala/Mati pada bilah alat Pemformatan." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Hapus semua area cetak Anda dengan satu langkah: pilih semua lembar kerja, lalu Format ▸ Rentang Cetak ▸ Bersihkan." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Tambahkan gambar latar belakang ke dalam spreadsheet melalui Sisip ▸ Citra atau seret latar belakang dari Galeri, lalu Format ▸ Susun ▸ Ke Latar Belakang." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Punya masalah menempelkan teks dari berkas PDF atau laman web ke dalam dokumen? Coba tempelkan sebagai teks tak berformat (%MOD1 + %MOD2 + Shift + V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Dalam Calc gunakan TRIMMEAN() untuk mengembalikan nilai rata-rate dari sebuah set data dengan mengecualikan nilai-nilai tertinggi dan terrendah." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Parameter opsional ke-4 dari fungsi Calc VLOOKUP mengindikasikan apakah data kolom pertama terurut. Bila tidak, masukkan FALSE atau nol." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Bilah alat itu kontekstual—mereka membuka bergantung pada konteks. Jika Anda tidak menginginkan itu, hapus centang dari Tampilan ▸ Bilah Alat." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Membuat dokumen induk dari dokumen Writer saat ini? Berkas ▸ Kirim ▸ Buat Dokumen Induk (sub-dokumen dibuat tergantung kerangka)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Ingin meletakkan sel di tengah pada halaman tercetak dalam Calc? Format ▸ Halaman, Halaman ▸ Pengaturan tata letak ▸ Perataan tabel." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Kerangka dapat ditaut sehingga teks dapat mengalir dari satu ke lainnya seperti dalam desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Buat bagan berbasis pada suatu tabel Writer dengan mengklik dalam tabel dan memilih Sisip ▸ Bagan." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Pilih opsi dalam Perkakas ▸ Opsi ▸ %PRODUCTNAME Writer ▸ Bantuan Pemformatan ▸ Tampilan untuk menentukan karakter bukan-cetak mana yang ditampilkan." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Ingin pergi ke halaman tertentu berdasarkan nomor halaman? Klik entri paling kiri bilah status atau gunakan Sunting ▸ Pergi ke Halaman… atau tekan %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME mendukung lebih 150 bahasa." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Hilangkan centang Pertunjukan Salindia ▸ Pengaturan ▸ Presentasi selalu di atas jika Anda memerlukan program lain menampilkan jendelanya di depan presentasi Anda." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Ingin menemukan kata yang dicetak tebal dalam sebuah dokumen Writer? Sunting ▸ Cari dan Ganti ▸ Opsi lain ▸ Atribut ▸ Bobot fonta." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Anda dapat mengurutkan paragraf atau baris tabel berdasarkan abjad atau angka melalui Perkakas ▸ Urutkan." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Untuk menyisipkan paragraf sebelum (setelah) seksi, tekan %MOD2+Enter di awal (akhir) seksi." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME memiliki pusat templat untuk membuat dokumen yang menarik—lihatlah." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Hitung angsuran pinjaman dengan Calc: mis. PMT(2%/12;36;2500) suku bunga per perioda pembayaran 2%/12, 36 bulan, besar pinjaman 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Tidak bisa mendapatkan apa yang Anda inginkan dengan fungsi VLOOKUP di Calc? Dengan INDEX dan MATCH Anda dapat melakukan segalanya!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Ingin menampilkan kolom A yang tersembunyi? Klik sel di kolom B, tekan tombol kiri tetikus, geser tetikus ke kiri, lepaskan. Lalu tampilkan kolomnya melalui Format ▸ Kolom ▸ Tampilkan." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Untuk mengubah jumlah halaman di Writer, buka properti paragraf pertama dan di tab Aliran Teks, centang Putus ▸ Sisipkan dan masukkan jumlahnya." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Jalankan %PRODUCTNAME di perambah apapun melalui rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Kode galat aneh pada Calc, Err: diikuti dengan angka? Halaman ini memberikan penjelasan:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Mendaftarkan paragraf yang bukan judul dalam daftar isi dengan mengubah Outline dan Penomoran dalam pengaturan paragraf ke level outline." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Selain daftar isi, %PRODUCTNAME dapat membuat Abjad, Ilustrasi, Tabel, Objek, Daftar Pustaka, indeks yang Ditetapkan Pengguna." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Tidak bisa mengubah atau menghapus gaya sel khusus ? Cek semua sheet, seharusnya tidak ada yang dilindungi." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Ingin tahu apakah sel mengacu dalam formula sel lain? Alat ▸ Detektif ▸ Lacak Ketergantungan (Shift + F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Dalam ruas gantikan masukan dari opsi koreksi otomatis Anda dapat memakai wildcard .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Ingin menduplikasi baris di atas? Tekan %MOD1 + D atau gunakan Lembar ▸ Isi Sel ▸ Isi Bawah." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Untuk mencari dalam beberapa lembar kerja, pilih mereka sebelum Anda memulai pencarian." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Seret & jatuhkan sel dari Calc ke dalam tilikan normal dari sebuah salindia membuat suatu tabel; ke dalam tilikan garis besar, setiap sel membuat suatu baris dalam garis besar." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME membantu Anda untuk tidak memasukkan dua spasi atau lebih di Writer. Periksa Alat ▸ Koreksi Otomatis ▸ Opsi Koreksi Otomatis ▸ Opsi ▸ Abaikan spasi ganda." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Ingin kursor pergi ke sel di kanan, setelah memasukkan suatu nilai dalam Calc? Gunakan Tab sebagai pengganti Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Untuk menampilkan bilah gulir ke kiri, aktifkan Alat ▸ Opsi ▸ Pengaturan Bahasa ▸ Bahasa ▸ Teks kompleks dan centang Lembar ▸ Kanan-Ke-Kiri." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Seret sebuah objek yang terformat ke jendela Gaya dan Pemformatan. Sebuah kotak dialog membuka, masukkan saja nama gaya baru." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Versi baru %PRODUCTNAME menyediakan fitur terkini, perbaikan kutu, dan tambalan keamanan. Selalu perbarui perangkat lunak Anda!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Mengembangkan penyaring XML dan XSLT baru?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Bantuan %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Info lanjut" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -3541,7 +3535,7 @@ #: 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 "" +msgstr "Antarmuka pengguna standar dengan bilah sisi yang diperluas. Pengguna ahli yang ingin mengubah banyak properti berbeda dengan cepat disarankan untuk menggunakan ini." #. MEQAE #: cui/inc/toolbarmode.hrc:25 @@ -4627,7 +4621,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:43 msgctxt "menuassignpage|gear_textOnly" msgid "Downloads" -msgstr "Mengunduh" +msgstr "Unduhan" #. A4zUt #: cui/uiconfig/ui/additionsdialog.ui:52 @@ -4688,7 +4682,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:213 msgctxt "additionsdialog|buttonGear" msgid "Contains commands to modify settings of the additions list such as sorting type or view type." -msgstr "Memuat perintah untuk mengubah pengaturan pengaturan penambahan seperti tipe pengurutan atau tipe tilik." +msgstr "Memuat perintah untuk mengubah pengaturan pengaturan penambahan seperti jenis pengurutan atau jenis tampilan." #. fUE2f #: cui/uiconfig/ui/additionsfragment.ui:16 @@ -5240,19 +5234,19 @@ #: cui/uiconfig/ui/autocorrectdialog.ui:294 msgctxt "autocorrectdialog|options" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. PgrDz #: cui/uiconfig/ui/autocorrectdialog.ui:342 msgctxt "autocorrectdialog|apply" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. TCyBg #: cui/uiconfig/ui/autocorrectdialog.ui:390 msgctxt "autocorrectdialog|localized" msgid "Localized Options" -msgstr "Opsi Lokalisasi" +msgstr "Pilihan Lokalisasi" #. G4rrm #: cui/uiconfig/ui/autocorrectdialog.ui:438 @@ -5558,7 +5552,7 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:525 msgctxt "bitmaptabpage|label2" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. EqVUn #: cui/uiconfig/ui/bitmaptabpage.ui:574 @@ -5834,7 +5828,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:276 msgctxt "bulletandposition|label4" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. mp5Si #: cui/uiconfig/ui/bulletandposition.ui:300 @@ -8318,7 +8312,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:336 msgctxt "editmodulesdialog|label1" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. j6j4Y #: cui/uiconfig/ui/effectspage.ui:46 @@ -9693,7 +9687,7 @@ #: cui/uiconfig/ui/gradientpage.ui:683 msgctxt "gradientpage|propfl" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. 5mDZm #: cui/uiconfig/ui/gradientpage.ui:732 @@ -10143,7 +10137,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:352 msgctxt "hangulhanjaoptdialog|label2" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. UaXFU #: cui/uiconfig/ui/hatchpage.ui:89 @@ -10245,7 +10239,7 @@ #: cui/uiconfig/ui/hatchpage.ui:386 msgctxt "hatchpage|propfl" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. D8ovo #: cui/uiconfig/ui/hatchpage.ui:436 @@ -10269,7 +10263,7 @@ #: cui/uiconfig/ui/hyperlinkdialog.ui:10 msgctxt "hyperlinkdialog|HyperlinkDialog" msgid "Hyperlink" -msgstr "Hyperlink" +msgstr "Pranala" #. FN68B #: cui/uiconfig/ui/hyperlinkdialog.ui:27 @@ -11943,7 +11937,7 @@ #: 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 "Pilih pustaka dengan makro yang Anda inginkan. Lalu, pilih makro di bawah 'Nama makro'." +msgstr "Pilih pustaka dengan makro yang Anda inginkan. Lalu, pilih makro di bawah 'Nama Makro'." #. nVAE3 #: cui/uiconfig/ui/macroselectordialog.ui:151 @@ -11979,7 +11973,7 @@ #: cui/uiconfig/ui/macroselectordialog.ui:415 msgctxt "macroselectordialog|label1" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. YTX8B #: cui/uiconfig/ui/menuassignpage.ui:46 @@ -12555,7 +12549,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:195 msgctxt "numberingformatpage|formatf" msgid "_Format Code" -msgstr "" +msgstr "Kode _Format" #. 5GA9p #: cui/uiconfig/ui/numberingformatpage.ui:243 @@ -12633,13 +12627,13 @@ #: cui/uiconfig/ui/numberingformatpage.ui:433 msgctxt "numberingformatpage|optionsft" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. qv95K #: cui/uiconfig/ui/numberingformatpage.ui:499 msgctxt "numberingformatpage|extended_tip|categorylb" msgid "Select a category from the list, and then select a formatting style in the Format box." -msgstr "Pilih kategori dari daftar, lalu pilih gaya pemformatan di menuFormatkotak." +msgstr "Pilih kategori dari daftar, lalu pilih gaya pemformatan pada kotak Format." #. NTAb6 #: cui/uiconfig/ui/numberingformatpage.ui:512 @@ -12675,7 +12669,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:662 msgctxt "numberingformatpage|extended_tip|languagelb" msgid "Specifies the language setting for the selected field." -msgstr "" +msgstr "Tentukan pengaturan bahasa untuk daftar yang dipilih." #. hx9FX #: cui/uiconfig/ui/numberingformatpage.ui:673 @@ -13213,7 +13207,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:15 msgctxt "objecttitledescdialog|ObjectTitleDescDialog" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. FYqhw #: cui/uiconfig/ui/objecttitledescdialog.ui:92 @@ -13273,7 +13267,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:73 msgctxt "optaccessibilitypage|animatedgraphics" msgid "Allow animated _images" -msgstr "_Ijinkan gambar bergerak" +msgstr "_Izinkan gambar bergerak" #. vvmf3 #: cui/uiconfig/ui/optaccessibilitypage.ui:82 @@ -13285,7 +13279,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:94 msgctxt "optaccessibilitypage|animatedtext" msgid "Allow animated _text" -msgstr "Perbolehkan _teks bergerak" +msgstr "Izinkan _teks bergerak" #. dcCgH #: cui/uiconfig/ui/optaccessibilitypage.ui:103 @@ -13297,7 +13291,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:121 msgctxt "optaccessibilitypage|label1" msgid "Miscellaneous Options" -msgstr "Opsi Lain-lain" +msgstr "Pilihan Lain-lain" #. pLAWF #: cui/uiconfig/ui/optaccessibilitypage.ui:154 @@ -13339,7 +13333,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:223 msgctxt "optaccessibilitypage|label2" msgid "Options for High Contrast Appearance" -msgstr "Opsi untuk Penampilan Kontras Tinggi" +msgstr "Pilihan untuk Penampilan Kontras Tinggi" #. yuSqB #: cui/uiconfig/ui/optaccessibilitypage.ui:238 @@ -14699,7 +14693,7 @@ #: cui/uiconfig/ui/optionsdialog.ui:18 msgctxt "optionsdialog|OptionsDialog" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. 5UNGW #: cui/uiconfig/ui/optionsdialog.ui:56 @@ -15131,7 +15125,7 @@ #: cui/uiconfig/ui/optlingupage.ui:136 msgctxt "lingumodules" msgid "Contains the installed language modules." -msgstr "" +msgstr "Berisikan modul-modul bahasa yang terpasang." #. 8kxYC #: cui/uiconfig/ui/optlingupage.ui:149 @@ -15155,13 +15149,13 @@ #: cui/uiconfig/ui/optlingupage.ui:226 msgctxt "optlingupage|lingumodulesft" msgid "_Available Language Modules" -msgstr "" +msgstr "Modul-modul Bahasa yang Tersedi_a" #. efvBg #: cui/uiconfig/ui/optlingupage.ui:309 msgctxt "lingudicts" msgid "Lists the available user dictionaries." -msgstr "" +msgstr "Daftar kamus-kamus yang ditentukan oleh pengguna." #. qBrCR #: cui/uiconfig/ui/optlingupage.ui:329 @@ -15209,7 +15203,7 @@ #: cui/uiconfig/ui/optlingupage.ui:420 msgctxt "optlingupage|lingudictsft" msgid "_User-defined Dictionaries" -msgstr "" +msgstr "Kamus-kamus yang Ditentukan Pengg_una" #. sE9tc #: cui/uiconfig/ui/optlingupage.ui:505 @@ -15251,7 +15245,7 @@ #: cui/uiconfig/ui/optlingupage.ui:632 msgctxt "OptLinguPage" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "" +msgstr "Menentukan properti ejaan, tesaurus, dan tanda hubung." #. ADZ8E #: cui/uiconfig/ui/optnewdictionarydialog.ui:8 @@ -16842,7 +16836,7 @@ #: cui/uiconfig/ui/optviewpage.ui:481 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" -msgstr "" +msgstr "Tambah lebih banyak tema ikon melalui ekstensi" #. eMqmK #: cui/uiconfig/ui/optviewpage.ui:499 @@ -17052,7 +17046,7 @@ #: cui/uiconfig/ui/pageformatpage.ui:480 msgctxt "pageformatpage|labelMargins" msgid "Margins" -msgstr "Margin" +msgstr "Tepi" #. WcuCU #: cui/uiconfig/ui/pageformatpage.ui:517 @@ -17239,7 +17233,7 @@ #: cui/uiconfig/ui/paragalignpage.ui:277 msgctxt "paragalignpage|label1" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. 4gLpc #: cui/uiconfig/ui/paragalignpage.ui:310 @@ -17329,7 +17323,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:167 msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text" msgid "Indent paragraph automatically according to font size and line spacing." -msgstr "" +msgstr "Indentasikan paragraf secara otomatis sesuai dengan ukuran fonta dan jarak antar baris." #. L9iw7 #: cui/uiconfig/ui/paraindentspacing.ui:221 @@ -17359,7 +17353,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:336 msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING" msgid "Do not add space between paragraphs of the same style" -msgstr "" +msgstr "Jangan menambahkan spasi di antara paragraf untuk gaya yang sama" #. hWQWQ #: cui/uiconfig/ui/paraindentspacing.ui:358 @@ -17419,14 +17413,14 @@ #: cui/uiconfig/ui/paraindentspacing.ui:486 msgctxt "paraindentspacing|checkCB_REGISTER" msgid "Activate page li_ne-spacing" -msgstr "" +msgstr "Aktifkan jarak antara bar_is halaman" #. uesRM #. xdds #: cui/uiconfig/ui/paraindentspacing.ui:489 msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text" msgid "Applies page line-spacing (register-true) if set for the Page Style." -msgstr "" +msgstr "Menerapkan jarak antar baris halaman (register-true) jika diatur untuk Gaya Halaman." #. MwL9j #: cui/uiconfig/ui/paraindentspacing.ui:495 @@ -17726,7 +17720,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:329 msgctxt "patterntabpage|label1" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. 2U7Pc #: cui/uiconfig/ui/patterntabpage.ui:378 @@ -18293,13 +18287,13 @@ #: cui/uiconfig/ui/qrcodegen.ui:332 msgctxt "qrcodegen|QR Code Properties" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. fj4HR #: cui/uiconfig/ui/qrcodegen.ui:363 msgctxt "qr code dialog title" msgid "Generate QR Code for any text or URL." -msgstr "" +msgstr "Hasilkan Kode QR untuk teks atau URL apa pun." #. 3HNDZ #: cui/uiconfig/ui/querychangelineenddialog.ui:7 @@ -19858,7 +19852,7 @@ #: cui/uiconfig/ui/spelloptionsdialog.ui:8 msgctxt "spelloptionsdialog|SpellOptionsDialog" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. mEDem #: cui/uiconfig/ui/splitcellsdialog.ui:25 @@ -20825,7 +20819,7 @@ #: cui/uiconfig/ui/textflowpage.ui:633 msgctxt "textflowpage|labelOptions" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. qrhEF #: cui/uiconfig/ui/textflowpage.ui:650 @@ -20951,7 +20945,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:30 msgctxt "ToolbarmodeDialog|applyall" msgid "A_pply to All" -msgstr "" +msgstr "Tera_pkan ke Keseluruhan" #. kPZub #: cui/uiconfig/ui/toolbarmodedialog.ui:46 @@ -20963,7 +20957,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:111 msgctxt "ToolbarmodeDialog|radiobutton1" msgid "Standard Toolbar" -msgstr "" +msgstr "Bilah Alat Standar" #. WRYEa #: cui/uiconfig/ui/toolbarmodedialog.ui:128 @@ -20975,55 +20969,55 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:146 msgctxt "ToolbarmodeDialog|radiobutton5" msgid "Tabbed Compact" -msgstr "" +msgstr "Tab Ringkas" #. yT3UT #: cui/uiconfig/ui/toolbarmodedialog.ui:164 msgctxt "ToolbarmodeDialog|radiobutton7" msgid "Groupedbar" -msgstr "" +msgstr "Bilah Terkelompok" #. jAJbo #: cui/uiconfig/ui/toolbarmodedialog.ui:182 msgctxt "ToolbarmodeDialog|radiobutton6" msgid "Groupedbar Compact" -msgstr "" +msgstr "Bilah Terkelompok Ringkas" #. iSVgL #: cui/uiconfig/ui/toolbarmodedialog.ui:200 msgctxt "ToolbarmodeDialog|radiobutton8" msgid "Contextual Single" -msgstr "" +msgstr "Kontekstual Tunggal" #. TrcWq #: cui/uiconfig/ui/toolbarmodedialog.ui:218 msgctxt "ToolbarmodeDialog|radiobutton9" msgid "Contextual Groups" -msgstr "" +msgstr "Kontekstual Terkelompok" #. wTDDF #: cui/uiconfig/ui/toolbarmodedialog.ui:236 msgctxt "ToolbarmodeDialog|radiobutton2" msgid "Single Toolbar" -msgstr "" +msgstr "Bilah Alat Tunggal" #. AMgFL #: cui/uiconfig/ui/toolbarmodedialog.ui:254 msgctxt "ToolbarmodeDialog|radiobutton3" msgid "Sidebar" -msgstr "" +msgstr "Bilah Sisi" #. kGdXR #: cui/uiconfig/ui/toolbarmodedialog.ui:278 msgctxt "ToolbarmodeDialog|leftframe" msgid "UI variants" -msgstr "" +msgstr "Varian antarmuka" #. H7m7J #: cui/uiconfig/ui/toolbarmodedialog.ui:368 msgctxt "ToolbarmodeDialog|rightframe" msgid "Preview" -msgstr "" +msgstr "Pratinjau" #. WChLB #: cui/uiconfig/ui/transparencytabpage.ui:78 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/id/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-04-03 01:16+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563272963.000000\n" #. BiN6g @@ -410,13 +410,13 @@ #: dbaccess/inc/strings.hrc:83 msgctxt "RID_STR_NO_BOOKMARK_BEFORE_OR_AFTER" msgid "The rows before the first and after the last row don't have a bookmark." -msgstr "Baris sebelum pertama dan setelah terakhir tidak memiliki penanda." +msgstr "Baris sebelum pertama dan setelah terakhir tidak memiliki markah." #. uYeyd #: dbaccess/inc/strings.hrc:84 msgctxt "RID_STR_NO_BOOKMARK_DELETED" msgid "The current row is deleted, and thus doesn't have a bookmark." -msgstr "Baris ini sudah dihapus, sehingga tidak memiliki penanda." +msgstr "Baris ini sudah dihapus, sehingga tidak memiliki markah." #. 935sJ #: dbaccess/inc/strings.hrc:85 @@ -1228,7 +1228,7 @@ #: dbaccess/inc/strings.hrc:232 msgctxt "STR_TAB_HELP_TEXT" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. BYE5G #: dbaccess/inc/strings.hrc:233 @@ -2436,7 +2436,7 @@ #: dbaccess/inc/strings.hrc:435 msgctxt "STR_CTW_COPY_SOURCE_NEEDS_BOOKMARKS" msgid "The copy source's result set must support bookmarks." -msgstr "Salinan set-hasil sumber seharusnya mendukung penanda buku." +msgstr "Salinan set-hasil sumber seharusnya mendukung markah." #. XVb6E #: dbaccess/inc/strings.hrc:436 @@ -2548,7 +2548,7 @@ #: dbaccess/inc/templwin.hrc:45 msgctxt "STRARY_SVT_DOCINFO" msgid "Description" -msgstr "" +msgstr "Keterangan" #. Eg2eG #: dbaccess/inc/templwin.hrc:46 @@ -2662,7 +2662,7 @@ #: dbaccess/uiconfig/ui/autocharsetpage.ui:37 msgctxt "autocharsetpage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. tgPJD #: dbaccess/uiconfig/ui/autocharsetpage.ui:67 @@ -2920,7 +2920,7 @@ #: dbaccess/uiconfig/ui/dbasepage.ui:37 msgctxt "dbasepage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. CT9hn #: dbaccess/uiconfig/ui/dbasepage.ui:67 @@ -3189,7 +3189,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:350 msgctxt "fielddescpage|STR_NUMERIC_TYPE" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. Uym6E #: dbaccess/uiconfig/ui/fielddescpage.ui:375 @@ -3201,7 +3201,7 @@ #: dbaccess/uiconfig/ui/fielddescpanel.ui:46 msgctxt "designhelpbox|textview-tooltip" msgid "Field Properties Help" -msgstr "" +msgstr "Bantuan Properti Ruas" #. KUVUc #: dbaccess/uiconfig/ui/fielddialog.ui:9 @@ -3285,7 +3285,7 @@ #: dbaccess/uiconfig/ui/generalpagedialog.ui:32 msgctxt "generalpagedialog|datasourceTypeLabel" msgid "Database _type:" -msgstr "_Tipe basis data:" +msgstr "_Jenis basis data:" #. CBhUu #: dbaccess/uiconfig/ui/generalpagedialog.ui:60 @@ -3360,6 +3360,8 @@ "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" "available in this setup." msgstr "" +"Tidak dimungkinkan untuk membuat database baru, karena baik SQLDB maupun \n" +"Firebird tidak tersedia dalam pengaturan ini." #. DQvKi #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:43 @@ -3401,7 +3403,7 @@ #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:211 msgctxt "generalspecialjdbcdetailspage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. 3acBr #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:241 @@ -3755,7 +3757,7 @@ #: dbaccess/uiconfig/ui/mysqlnativepage.ui:176 msgctxt "mysqlnativepage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. VP2sP #: dbaccess/uiconfig/ui/mysqlnativepage.ui:207 @@ -3833,7 +3835,7 @@ #: dbaccess/uiconfig/ui/odbcpage.ui:37 msgctxt "odbcpage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. ebokD #: dbaccess/uiconfig/ui/odbcpage.ui:67 @@ -4781,13 +4783,13 @@ #: dbaccess/uiconfig/ui/taskwindow.ui:109 msgctxt "taskwindow|STR_DESCRIPTION" msgid "Description" -msgstr "" +msgstr "Keterangan" #. 8b2nn #: dbaccess/uiconfig/ui/textconnectionsettings.ui:8 msgctxt "textconnectionsettings|TextConnectionSettingsDialog" msgid "Text Connection Settings" -msgstr "Pengaturan Koneksi Teks" +msgstr "Pengaturan Sambungan Teks" #. HScTi #: dbaccess/uiconfig/ui/textpage.ui:39 @@ -4895,7 +4897,7 @@ #: dbaccess/uiconfig/ui/textpage.ui:366 msgctxt "textpage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. 752ii #: dbaccess/uiconfig/ui/textpage.ui:397 @@ -5009,7 +5011,7 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:186 msgctxt "userdetailspage|charsetlabel" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. 6ZS8N #: dbaccess/uiconfig/ui/userdetailspage.ui:217 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/desktop/messages.po libreoffice-7.1.3~rc2/translations/source/id/desktop/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/desktop/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/desktop/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-11-16 13:42+0100\n" -"PO-Revision-Date: 2021-01-03 14:36+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1536928910.000000\n" #. v2iwK @@ -1086,7 +1086,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:258 msgctxt "updatedialog|DESCRIPTION_LABEL" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. 7DTtA #: desktop/uiconfig/ui/updatedialog.ui:277 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/dictionaries/da_DK.po libreoffice-7.1.3~rc2/translations/source/id/dictionaries/da_DK.po --- libreoffice-7.1.2~rc2/translations/source/id/dictionaries/da_DK.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/dictionaries/da_DK.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-27 14:58+0100\n" -"PO-Revision-Date: 2013-05-23 23:39+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" +"Last-Translator: Andika Triwidada \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369352394.000000\n" #. M5yh2 @@ -39,3 +39,9 @@ "and Center for Sprogteknologi, Københavns Universitet\n" "Hyphenation dictionary Based on the TeX hyphenation tables.\n" msgstr "" +"Kamus bahasa Denmark dari Stavekontrolden.\n" +"Kamus ini berbasis pada data dari Det Danske Sprog- og Litteraturselskab\n" +"(Masyarakat Denmark untuk Bahasa dan Literatur), http://www.dsl.dk.\n" +"Tesaurus bahasa Denmark berbasis pada data dari Det Danske Sprog- og Litteraturselskab\n" +"dan Center for Sprogteknologi, Københavns Universitet\n" +"Kamus pemenggalan suku kata berbasis pada tabel pemenggalan suku kata TeX.\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/id/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-06-08 13:18+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557389916.000000\n" #. cBx8W @@ -2471,7 +2471,7 @@ #: extensions/inc/strings.hrc:314 msgctxt "RID_UPDATE_FT_DESCRIPTION" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. kMGPq #: extensions/inc/strings.hrc:315 @@ -3630,7 +3630,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:48 msgctxt "generalpage|authtype" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. G73uW #: extensions/uiconfig/sbibliography/ui/generalpage.ui:61 @@ -3852,7 +3852,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:223 msgctxt "mappingdialog|label7" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. TxEfY #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:237 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/extras/source/autocorr/emoji.po libreoffice-7.1.3~rc2/translations/source/id/extras/source/autocorr/emoji.po --- libreoffice-7.1.2~rc2/translations/source/id/extras/source/autocorr/emoji.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/extras/source/autocorr/emoji.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,20 +3,21 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2017-12-20 08:16+0100\n" -"PO-Revision-Date: 2018-09-21 08:32+0000\n" -"Last-Translator: Jordan Maulana \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-11 06:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1537518731.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji +#. 6xmho #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -26,6 +27,7 @@ msgstr "sen" #. £ (U+000A3), see http://wiki.documentfoundation.org/Emoji +#. 8cRaa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -35,6 +37,7 @@ msgstr "pound" #. ¥ (U+000A5), see http://wiki.documentfoundation.org/Emoji +#. dDHGm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -44,6 +47,7 @@ msgstr "yen" #. § (U+000A7), see http://wiki.documentfoundation.org/Emoji +#. 2CS6Y #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -53,6 +57,7 @@ msgstr "seksi" #. © (U+000A9), see http://wiki.documentfoundation.org/Emoji +#. 8JZew #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -62,6 +67,7 @@ msgstr "hak cipta" #. ¬ (U+000AC), see http://wiki.documentfoundation.org/Emoji +#. Kof3U #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -71,6 +77,7 @@ msgstr "tidak" #. ® (U+000AE), see http://wiki.documentfoundation.org/Emoji +#. QtogK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -80,6 +87,7 @@ msgstr "terdaftar" #. ° (U+000B0), see http://wiki.documentfoundation.org/Emoji +#. KCLL8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -89,6 +97,7 @@ msgstr "derajat" #. ± (U+000B1), see http://wiki.documentfoundation.org/Emoji +#. rFAFf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -98,6 +107,7 @@ msgstr "kurang lebih" #. · (U+000B7), see http://wiki.documentfoundation.org/Emoji +#. GHgFG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -107,6 +117,7 @@ msgstr "titik tengah" #. × (U+000D7), see http://wiki.documentfoundation.org/Emoji +#. L8X6v #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -116,6 +127,7 @@ msgstr "silang" #. Α (U+00391), see http://wiki.documentfoundation.org/Emoji +#. gs5Aw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -125,6 +137,7 @@ msgstr "Alfa" #. Β (U+00392), see http://wiki.documentfoundation.org/Emoji +#. uuARW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -134,6 +147,7 @@ msgstr "Beta" #. Γ (U+00393), see http://wiki.documentfoundation.org/Emoji +#. BWfEu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -143,6 +157,7 @@ msgstr "Gama" #. Δ (U+00394), see http://wiki.documentfoundation.org/Emoji +#. XThsR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -152,6 +167,7 @@ msgstr "Delta" #. Ε (U+00395), see http://wiki.documentfoundation.org/Emoji +#. 8xpsp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -161,6 +177,7 @@ msgstr "Epsilon" #. Ζ (U+00396), see http://wiki.documentfoundation.org/Emoji +#. VbdgL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -170,6 +187,7 @@ msgstr "Zeta" #. Η (U+00397), see http://wiki.documentfoundation.org/Emoji +#. H3pQT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -179,6 +197,7 @@ msgstr "Eta" #. Θ (U+00398), see http://wiki.documentfoundation.org/Emoji +#. Q45oB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -188,6 +207,7 @@ msgstr "Theta" #. Ι (U+00399), see http://wiki.documentfoundation.org/Emoji +#. bTxcC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -197,6 +217,7 @@ msgstr "Iota" #. Κ (U+0039A), see http://wiki.documentfoundation.org/Emoji +#. j5BVA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -206,6 +227,7 @@ msgstr "Kappa" #. Λ (U+0039B), see http://wiki.documentfoundation.org/Emoji +#. gGXpA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -215,6 +237,7 @@ msgstr "Lambda" #. Μ (U+0039C), see http://wiki.documentfoundation.org/Emoji +#. 3GCFv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -224,6 +247,7 @@ msgstr "Mu" #. Ν (U+0039D), see http://wiki.documentfoundation.org/Emoji +#. zT27g #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -233,6 +257,7 @@ msgstr "Nu" #. Ξ (U+0039E), see http://wiki.documentfoundation.org/Emoji +#. GJAnw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -242,6 +267,7 @@ msgstr "Xi" #. Ο (U+0039F), see http://wiki.documentfoundation.org/Emoji +#. aWg4V #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -251,6 +277,7 @@ msgstr "Omicron" #. Π (U+003A0), see http://wiki.documentfoundation.org/Emoji +#. Mohkh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -260,6 +287,7 @@ msgstr "Pi" #. Ρ (U+003A1), see http://wiki.documentfoundation.org/Emoji +#. TMJmd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -269,6 +297,7 @@ msgstr "Rho" #. Σ (U+003A3), see http://wiki.documentfoundation.org/Emoji +#. tY2FG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -278,6 +307,7 @@ msgstr "Sigma" #. Τ (U+003A4), see http://wiki.documentfoundation.org/Emoji +#. VXNwC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -287,6 +317,7 @@ msgstr "Tau" #. Υ (U+003A5), see http://wiki.documentfoundation.org/Emoji +#. XYQqL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -296,6 +327,7 @@ msgstr "Upsilon" #. Φ (U+003A6), see http://wiki.documentfoundation.org/Emoji +#. C3riA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -305,6 +337,7 @@ msgstr "Phi" #. Χ (U+003A7), see http://wiki.documentfoundation.org/Emoji +#. Gx6Mx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -314,6 +347,7 @@ msgstr "Chi" #. Ψ (U+003A8), see http://wiki.documentfoundation.org/Emoji +#. tCiRw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -323,6 +357,7 @@ msgstr "Psi" #. Ω (U+003A9), see http://wiki.documentfoundation.org/Emoji +#. CJ22A #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -332,6 +367,7 @@ msgstr "Omega" #. α (U+003B1), see http://wiki.documentfoundation.org/Emoji +#. vyYUc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -341,6 +377,7 @@ msgstr "alfa" #. β (U+003B2), see http://wiki.documentfoundation.org/Emoji +#. XsUBy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -350,6 +387,7 @@ msgstr "beta" #. γ (U+003B3), see http://wiki.documentfoundation.org/Emoji +#. JUGYe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -359,6 +397,7 @@ msgstr "gama" #. δ (U+003B4), see http://wiki.documentfoundation.org/Emoji +#. qZEC9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -368,6 +407,7 @@ msgstr "delta" #. ε (U+003B5), see http://wiki.documentfoundation.org/Emoji +#. goVBj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -377,6 +417,7 @@ msgstr "epsilon" #. ζ (U+003B6), see http://wiki.documentfoundation.org/Emoji +#. wdzS2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -386,6 +427,7 @@ msgstr "zeta" #. η (U+003B7), see http://wiki.documentfoundation.org/Emoji +#. 4ei53 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -395,6 +437,7 @@ msgstr "eta" #. θ (U+003B8), see http://wiki.documentfoundation.org/Emoji +#. D6Y8P #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -404,6 +447,7 @@ msgstr "theta" #. ι (U+003B9), see http://wiki.documentfoundation.org/Emoji +#. qVFWA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -413,6 +457,7 @@ msgstr "iota" #. κ (U+003BA), see http://wiki.documentfoundation.org/Emoji +#. V3aBQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -422,6 +467,7 @@ msgstr "kappa" #. λ (U+003BB), see http://wiki.documentfoundation.org/Emoji +#. hneie #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -431,6 +477,7 @@ msgstr "lambda" #. μ (U+003BC), see http://wiki.documentfoundation.org/Emoji +#. CgE9e #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -440,6 +487,7 @@ msgstr "mu" #. ν (U+003BD), see http://wiki.documentfoundation.org/Emoji +#. AK8Mx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -449,6 +497,7 @@ msgstr "nu" #. ξ (U+003BE), see http://wiki.documentfoundation.org/Emoji +#. 7SGbf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -458,6 +507,7 @@ msgstr "xi" #. ο (U+003BF), see http://wiki.documentfoundation.org/Emoji +#. 2huiW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -467,6 +517,7 @@ msgstr "omicron" #. π (U+003C0), see http://wiki.documentfoundation.org/Emoji +#. CEbhy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -476,6 +527,7 @@ msgstr "pi" #. ρ (U+003C1), see http://wiki.documentfoundation.org/Emoji +#. ooQb9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -485,6 +537,7 @@ msgstr "rho" #. ς (U+003C2), see http://wiki.documentfoundation.org/Emoji +#. MSvCj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -494,6 +547,7 @@ msgstr "sigma2" #. σ (U+003C3), see http://wiki.documentfoundation.org/Emoji +#. aSVZ2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -503,6 +557,7 @@ msgstr "sigma" #. τ (U+003C4), see http://wiki.documentfoundation.org/Emoji +#. qCLZj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -512,6 +567,7 @@ msgstr "tau" #. υ (U+003C5), see http://wiki.documentfoundation.org/Emoji +#. DfC5P #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -521,6 +577,7 @@ msgstr "upsilon" #. φ (U+003C6), see http://wiki.documentfoundation.org/Emoji +#. 7excc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -530,6 +587,7 @@ msgstr "phi" #. χ (U+003C7), see http://wiki.documentfoundation.org/Emoji +#. MA42P #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -539,6 +597,7 @@ msgstr "chi" #. ψ (U+003C8), see http://wiki.documentfoundation.org/Emoji +#. gXp6Q #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -548,6 +607,7 @@ msgstr "psi" #. ω (U+003C9), see http://wiki.documentfoundation.org/Emoji +#. KQVmQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -557,6 +617,7 @@ msgstr "omega" #. ฿ (U+00E3F), see http://wiki.documentfoundation.org/Emoji +#. ZaCN9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -566,6 +627,7 @@ msgstr "baht" #. – (U+02013), see http://wiki.documentfoundation.org/Emoji +#. dGEGe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -575,6 +637,7 @@ msgstr "--" #. — (U+02014), see http://wiki.documentfoundation.org/Emoji +#. ZJM6b #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -584,6 +647,7 @@ msgstr "---" #. ’ (U+02019), see http://wiki.documentfoundation.org/Emoji +#. NDiwS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -593,6 +657,7 @@ msgstr "'" #. † (U+02020), see http://wiki.documentfoundation.org/Emoji +#. 6juUB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -602,6 +667,7 @@ msgstr "belati" #. ‡ (U+02021), see http://wiki.documentfoundation.org/Emoji +#. c56EK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -611,6 +677,7 @@ msgstr "belati2" #. • (U+02022), see http://wiki.documentfoundation.org/Emoji +#. mRFAh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -620,6 +687,7 @@ msgstr "bulet" #. ‣ (U+02023), see http://wiki.documentfoundation.org/Emoji +#. cThN2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -629,6 +697,7 @@ msgstr "bulet2" #. … (U+02026), see http://wiki.documentfoundation.org/Emoji +#. Wge4r #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -638,6 +707,7 @@ msgstr "." #. ‰ (U+02030), see http://wiki.documentfoundation.org/Emoji +#. 329ZF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -647,6 +717,7 @@ msgstr "permil" #. ‱ (U+02031), see http://wiki.documentfoundation.org/Emoji +#. 9QbnT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -656,6 +727,7 @@ msgstr "titik basis" #. ′ (U+02032), see http://wiki.documentfoundation.org/Emoji +#. Yfy5x #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -665,6 +737,7 @@ msgstr "prima" #. ″ (U+02033), see http://wiki.documentfoundation.org/Emoji +#. qR3Eg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -674,6 +747,7 @@ msgstr "inci" #. ‼ (U+0203C), see http://wiki.documentfoundation.org/Emoji +#. yALTE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -683,6 +757,7 @@ msgstr "!!" #. ⁉ (U+02049), see http://wiki.documentfoundation.org/Emoji +#. YFhmQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -692,6 +767,7 @@ msgstr "!?" #. ₤ (U+020A4), see http://wiki.documentfoundation.org/Emoji +#. WxoZ3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -701,6 +777,7 @@ msgstr "lira" #. ₩ (U+020A9), see http://wiki.documentfoundation.org/Emoji +#. MkHc9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -710,6 +787,7 @@ msgstr "won" #. ₪ (U+020AA), see http://wiki.documentfoundation.org/Emoji +#. yXiVG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -719,6 +797,7 @@ msgstr "shekel" #. € (U+020AC), see http://wiki.documentfoundation.org/Emoji +#. C5Xz8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -728,6 +807,7 @@ msgstr "euro" #. ₱ (U+020B1), see http://wiki.documentfoundation.org/Emoji +#. RAAbk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -737,6 +817,7 @@ msgstr "peso" #. ₴ (U+020B4), see http://wiki.documentfoundation.org/Emoji +#. nc5ED #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -746,6 +827,7 @@ msgstr "hryvnia" #. ₹ (U+020B9), see http://wiki.documentfoundation.org/Emoji +#. Vryoo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -755,6 +837,7 @@ msgstr "rupee" #. ₺ (U+020BA), see http://wiki.documentfoundation.org/Emoji +#. DH9a6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -764,6 +847,7 @@ msgstr "Lira Turki" #. ™ (U+02122), see http://wiki.documentfoundation.org/Emoji +#. mHDtt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -773,6 +857,7 @@ msgstr "tm" #. ℹ (U+02139), see http://wiki.documentfoundation.org/Emoji +#. 8a4FF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -782,6 +867,7 @@ msgstr "informasi" #. ← (U+02190), see http://wiki.documentfoundation.org/Emoji +#. jERBH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -791,6 +877,7 @@ msgstr "B" #. ↑ (U+02191), see http://wiki.documentfoundation.org/Emoji +#. oCunh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -800,6 +887,7 @@ msgstr "U" #. → (U+02192), see http://wiki.documentfoundation.org/Emoji +#. qXYvd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -809,6 +897,7 @@ msgstr "T" #. ↓ (U+02193), see http://wiki.documentfoundation.org/Emoji +#. 8Riz5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -818,6 +907,7 @@ msgstr "S" #. ↔ (U+02194), see http://wiki.documentfoundation.org/Emoji +#. dtgFb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -827,6 +917,7 @@ msgstr "TB" #. ↕ (U+02195), see http://wiki.documentfoundation.org/Emoji +#. R6B9o #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -836,6 +927,7 @@ msgstr "US" #. ↖ (U+02196), see http://wiki.documentfoundation.org/Emoji +#. CvbGW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -845,6 +937,7 @@ msgstr "BL" #. ↗ (U+02197), see http://wiki.documentfoundation.org/Emoji +#. 8CiGM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -854,6 +947,7 @@ msgstr "TL" #. ↘ (U+02198), see http://wiki.documentfoundation.org/Emoji +#. srbAr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -863,6 +957,7 @@ msgstr "Tg" #. ↙ (U+02199), see http://wiki.documentfoundation.org/Emoji +#. eGiA8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -872,6 +967,7 @@ msgstr "BD" #. ⇐ (U+021D0), see http://wiki.documentfoundation.org/Emoji +#. peETz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -881,6 +977,7 @@ msgstr "W2" #. ⇑ (U+021D1), see http://wiki.documentfoundation.org/Emoji +#. GS2Tv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -890,6 +987,7 @@ msgstr "N2" #. ⇒ (U+021D2), see http://wiki.documentfoundation.org/Emoji +#. sfFjB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -899,6 +997,7 @@ msgstr "E2" #. ⇓ (U+021D3), see http://wiki.documentfoundation.org/Emoji +#. axJEV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -908,6 +1007,7 @@ msgstr "S2" #. ⇔ (U+021D4), see http://wiki.documentfoundation.org/Emoji +#. xCA5h #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -917,6 +1017,7 @@ msgstr "EW2" #. ⇕ (U+021D5), see http://wiki.documentfoundation.org/Emoji +#. ooqFJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -926,6 +1027,7 @@ msgstr "NS2" #. ⇖ (U+021D6), see http://wiki.documentfoundation.org/Emoji +#. 9XEKB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -935,6 +1037,7 @@ msgstr "NW2" #. ⇗ (U+021D7), see http://wiki.documentfoundation.org/Emoji +#. kBBLu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -944,6 +1047,7 @@ msgstr "NE2" #. ⇘ (U+021D8), see http://wiki.documentfoundation.org/Emoji +#. kZFfR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -953,6 +1057,7 @@ msgstr "SE2" #. ⇙ (U+021D9), see http://wiki.documentfoundation.org/Emoji +#. 99Cgg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -962,6 +1067,7 @@ msgstr "SW2" #. ∀ (U+02200), see http://wiki.documentfoundation.org/Emoji +#. BMXif #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -971,6 +1077,7 @@ msgstr "untuk semua" #. ∂ (U+02202), see http://wiki.documentfoundation.org/Emoji +#. 3erep #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -980,6 +1087,7 @@ msgstr "parsial" #. ∃ (U+02203), see http://wiki.documentfoundation.org/Emoji +#. 4DtLF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -989,6 +1097,7 @@ msgstr "ada" #. ∄ (U+02204), see http://wiki.documentfoundation.org/Emoji +#. AgmBJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -998,6 +1107,7 @@ msgstr "tidak ada" #. ∅ (U+02205), see http://wiki.documentfoundation.org/Emoji +#. B2jLu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1007,6 +1117,7 @@ msgstr "himpunan kosong" #. ∈ (U+02208), see http://wiki.documentfoundation.org/Emoji +#. FJ3rt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1016,6 +1127,7 @@ msgstr "dalam" #. ∉ (U+02209), see http://wiki.documentfoundation.org/Emoji +#. BEMCd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1025,6 +1137,7 @@ msgstr "tidak dalam" #. ∊ (U+0220A), see http://wiki.documentfoundation.org/Emoji +#. 4eyex #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1034,6 +1147,7 @@ msgstr "small in" #. ∋ (U+0220B), see http://wiki.documentfoundation.org/Emoji +#. E33bc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1043,6 +1157,7 @@ msgstr "ni" #. ∌ (U+0220C), see http://wiki.documentfoundation.org/Emoji +#. i8AAQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1052,6 +1167,7 @@ msgstr "not ni" #. ∍ (U+0220D), see http://wiki.documentfoundation.org/Emoji +#. ACf4U #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1061,6 +1177,7 @@ msgstr "small ni" #. ∎ (U+0220E), see http://wiki.documentfoundation.org/Emoji +#. xexAk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1070,6 +1187,7 @@ msgstr "akhir bukti" #. ∏ (U+0220F), see http://wiki.documentfoundation.org/Emoji +#. KWECz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1079,6 +1197,7 @@ msgstr "produk" #. ∑ (U+02211), see http://wiki.documentfoundation.org/Emoji +#. UVdh3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1088,6 +1207,7 @@ msgstr "jumlah" #. − (U+02212), see http://wiki.documentfoundation.org/Emoji +#. 5NBVJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1097,6 +1217,7 @@ msgstr "-" #. ∓ (U+02213), see http://wiki.documentfoundation.org/Emoji +#. TdiGF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1106,6 +1227,7 @@ msgstr "-+" #. ∕ (U+02215), see http://wiki.documentfoundation.org/Emoji +#. zLnUp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1115,6 +1237,7 @@ msgstr "/" #. ∖ (U+02216), see http://wiki.documentfoundation.org/Emoji +#. WZvbU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1124,6 +1247,7 @@ msgstr "\\" #. √ (U+0221A), see http://wiki.documentfoundation.org/Emoji +#. MfxE9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1133,6 +1257,7 @@ msgstr "akar kuadrat" #. ∛ (U+0221B), see http://wiki.documentfoundation.org/Emoji +#. 3JZoB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1142,6 +1267,7 @@ msgstr "akar pangkat tiga" #. ∜ (U+0221C), see http://wiki.documentfoundation.org/Emoji +#. imnuC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1151,6 +1277,7 @@ msgstr "akar pangkat empat" #. ∞ (U+0221E), see http://wiki.documentfoundation.org/Emoji +#. 4CYyH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1160,6 +1287,7 @@ msgstr "tak hingga" #. ∠ (U+02220), see http://wiki.documentfoundation.org/Emoji +#. mwyod #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1169,6 +1297,7 @@ msgstr "sudut" #. ∡ (U+02221), see http://wiki.documentfoundation.org/Emoji +#. 4qqsg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1178,6 +1307,7 @@ msgstr "sudut2" #. ∣ (U+02223), see http://wiki.documentfoundation.org/Emoji +#. CtcwF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1187,6 +1317,7 @@ msgstr "divides" #. ∤ (U+02224), see http://wiki.documentfoundation.org/Emoji +#. L2Eh8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1196,6 +1327,7 @@ msgstr "not divides" #. ∥ (U+02225), see http://wiki.documentfoundation.org/Emoji +#. BfccK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1205,6 +1337,7 @@ msgstr "paralel" #. ∦ (U+02226), see http://wiki.documentfoundation.org/Emoji +#. sDuNZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1214,6 +1347,7 @@ msgstr "nparallel" #. ∧ (U+02227), see http://wiki.documentfoundation.org/Emoji +#. DTtod #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1223,6 +1357,7 @@ msgstr "dan" #. ∨ (U+02228), see http://wiki.documentfoundation.org/Emoji +#. sE8Hr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1232,6 +1367,7 @@ msgstr "atau" #. ∩ (U+02229), see http://wiki.documentfoundation.org/Emoji +#. 6C6CC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1241,6 +1377,7 @@ msgstr "perpotongan" #. ∪ (U+0222A), see http://wiki.documentfoundation.org/Emoji +#. hHXFt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1250,6 +1387,7 @@ msgstr "union" #. ∫ (U+0222B), see http://wiki.documentfoundation.org/Emoji +#. xvC96 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1259,6 +1397,7 @@ msgstr "integral" #. ∬ (U+0222C), see http://wiki.documentfoundation.org/Emoji +#. oht6X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1268,6 +1407,7 @@ msgstr "integral2" #. ∭ (U+0222D), see http://wiki.documentfoundation.org/Emoji +#. WdFpx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1277,6 +1417,7 @@ msgstr "integral3" #. ∮ (U+0222E), see http://wiki.documentfoundation.org/Emoji +#. qNHWc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1286,6 +1427,7 @@ msgstr "integral4" #. ∰ (U+02230), see http://wiki.documentfoundation.org/Emoji +#. 6cv3C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1295,6 +1437,7 @@ msgstr "integral5" #. ≈ (U+02248), see http://wiki.documentfoundation.org/Emoji +#. mijSG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1304,6 +1447,7 @@ msgstr "~" #. ≠ (U+02260), see http://wiki.documentfoundation.org/Emoji +#. gK9ZL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1313,6 +1457,7 @@ msgstr "tidak sama" #. ≤ (U+02264), see http://wiki.documentfoundation.org/Emoji +#. jEWTt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1322,6 +1467,7 @@ msgstr "<=" #. ≥ (U+02265), see http://wiki.documentfoundation.org/Emoji +#. Ak74B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1331,6 +1477,7 @@ msgstr ">=" #. ≪ (U+0226A), see http://wiki.documentfoundation.org/Emoji +#. FzAJY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1340,6 +1487,7 @@ msgstr "<<" #. ≫ (U+0226B), see http://wiki.documentfoundation.org/Emoji +#. uDGD2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1349,6 +1497,7 @@ msgstr ">>" #. ⊂ (U+02282), see http://wiki.documentfoundation.org/Emoji +#. j3BAn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1358,6 +1507,7 @@ msgstr "subset" #. ⊃ (U+02283), see http://wiki.documentfoundation.org/Emoji +#. DDtiS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1367,6 +1517,7 @@ msgstr "superset" #. ⊄ (U+02284), see http://wiki.documentfoundation.org/Emoji +#. Cu7Uj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1376,6 +1527,7 @@ msgstr "bukan subset" #. ⊅ (U+02285), see http://wiki.documentfoundation.org/Emoji +#. apBbH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1385,6 +1537,7 @@ msgstr "bukan superset" #. ⊿ (U+022BF), see http://wiki.documentfoundation.org/Emoji +#. zPtvC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1394,6 +1547,7 @@ msgstr "segi tiga kanan" #. ⌚ (U+0231A), see http://wiki.documentfoundation.org/Emoji +#. E3KP2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1403,6 +1557,7 @@ msgstr "arloji" #. ⌛ (U+0231B), see http://wiki.documentfoundation.org/Emoji +#. 3VpUE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1412,6 +1567,7 @@ msgstr "jam pasir" #. ⌨ (U+02328), see http://wiki.documentfoundation.org/Emoji +#. jrRFT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1421,6 +1577,7 @@ msgstr "papan ketik" #. ⏢ (U+023E2), see http://wiki.documentfoundation.org/Emoji +#. MwTaz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1430,6 +1587,7 @@ msgstr "trapesium" #. ⏰ (U+023F0), see http://wiki.documentfoundation.org/Emoji +#. PV9xg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1439,6 +1597,7 @@ msgstr "jam alarm" #. ⏱ (U+023F1), see http://wiki.documentfoundation.org/Emoji +#. EbWLg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1448,6 +1607,7 @@ msgstr "stopwatch" #. ⏲ (U+023F2), see http://wiki.documentfoundation.org/Emoji +#. 9sxN9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1457,6 +1617,7 @@ msgstr "jam pewaktu" #. ⏳ (U+023F3), see http://wiki.documentfoundation.org/Emoji +#. edBNy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1466,6 +1627,7 @@ msgstr "jam pasir 2" #. ■ (U+025A0), see http://wiki.documentfoundation.org/Emoji +#. VdDNs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1475,6 +1637,7 @@ msgstr "bujur sangkar2" #. □ (U+025A1), see http://wiki.documentfoundation.org/Emoji +#. BAvfy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1484,6 +1647,7 @@ msgstr "bujur sangkar" #. ▪ (U+025AA), see http://wiki.documentfoundation.org/Emoji +#. bYMxf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1493,6 +1657,7 @@ msgstr "bujur sangkar kecil2" #. ▫ (U+025AB), see http://wiki.documentfoundation.org/Emoji +#. 4LWyj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1502,6 +1667,7 @@ msgstr "bujur sangkar kecil" #. ▬ (U+025AC), see http://wiki.documentfoundation.org/Emoji +#. E9UCs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1511,6 +1677,7 @@ msgstr "persegi2" #. ▭ (U+025AD), see http://wiki.documentfoundation.org/Emoji +#. dCXPA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1520,6 +1687,7 @@ msgstr "persegi" #. ▰ (U+025B0), see http://wiki.documentfoundation.org/Emoji +#. ETzJE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1529,6 +1697,7 @@ msgstr "jajaran genjang 2" #. ▱ (U+025B1), see http://wiki.documentfoundation.org/Emoji +#. JC7i2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1538,6 +1707,7 @@ msgstr "jajaran genjang" #. ▲ (U+025B2), see http://wiki.documentfoundation.org/Emoji +#. yfgb2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1547,6 +1717,7 @@ msgstr "segi tiga2" #. △ (U+025B3), see http://wiki.documentfoundation.org/Emoji +#. xFfmk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1556,6 +1727,7 @@ msgstr "segi tiga" #. ◊ (U+025CA), see http://wiki.documentfoundation.org/Emoji +#. PvWst #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1565,6 +1737,7 @@ msgstr "lozenge" #. ○ (U+025CB), see http://wiki.documentfoundation.org/Emoji +#. fUfvU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1574,6 +1747,7 @@ msgstr "lingkaran" #. ● (U+025CF), see http://wiki.documentfoundation.org/Emoji +#. 7DAcp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1583,6 +1757,7 @@ msgstr "lingkaran2" #. ◦ (U+025E6), see http://wiki.documentfoundation.org/Emoji +#. gGBsw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1592,6 +1767,7 @@ msgstr "bulet3" #. ◯ (U+025EF), see http://wiki.documentfoundation.org/Emoji +#. RQ8e6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1601,6 +1777,7 @@ msgstr "lingkaran besar" #. ◻ (U+025FB), see http://wiki.documentfoundation.org/Emoji +#. YyTqp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1610,6 +1787,7 @@ msgstr "bujur sangkar sedang" #. ◼ (U+025FC), see http://wiki.documentfoundation.org/Emoji +#. Uf3gH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1619,6 +1797,7 @@ msgstr "bujur sangkar sedang2" #. ◽ (U+025FD), see http://wiki.documentfoundation.org/Emoji +#. k9E4v #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1628,6 +1807,7 @@ msgstr "bujur sangkar lebih kecil" #. ◾ (U+025FE), see http://wiki.documentfoundation.org/Emoji +#. ovChE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1637,6 +1817,7 @@ msgstr "bujur sangkar lebih kecil2" #. ☀ (U+02600), see http://wiki.documentfoundation.org/Emoji +#. M2FkQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1646,6 +1827,7 @@ msgstr "cerah" #. ☁ (U+02601), see http://wiki.documentfoundation.org/Emoji +#. 5vNMi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1655,6 +1837,7 @@ msgstr "awan" #. ☂ (U+02602), see http://wiki.documentfoundation.org/Emoji +#. NH9jD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1664,6 +1847,7 @@ msgstr "payung" #. ☃ (U+02603), see http://wiki.documentfoundation.org/Emoji +#. RA9bd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1673,6 +1857,7 @@ msgstr "orang-orangan salju" #. ☄ (U+02604), see http://wiki.documentfoundation.org/Emoji +#. W63n6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1682,6 +1867,7 @@ msgstr "komet" #. ★ (U+02605), see http://wiki.documentfoundation.org/Emoji +#. AnBmJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1691,6 +1877,7 @@ msgstr "bintang" #. ☆ (U+02606), see http://wiki.documentfoundation.org/Emoji +#. WERW8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1700,6 +1887,7 @@ msgstr "bintang2" #. ☇ (U+02607), see http://wiki.documentfoundation.org/Emoji +#. KiEUc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1709,6 +1897,7 @@ msgstr "petir3" #. ☈ (U+02608), see http://wiki.documentfoundation.org/Emoji +#. Bd27c #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1718,6 +1907,7 @@ msgstr "badai2" #. ☉ (U+02609), see http://wiki.documentfoundation.org/Emoji +#. TJJbm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1727,6 +1917,7 @@ msgstr "Matahari" #. ☎ (U+0260E), see http://wiki.documentfoundation.org/Emoji +#. dgVDD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1736,6 +1927,7 @@ msgstr "telepon" #. ☏ (U+0260F), see http://wiki.documentfoundation.org/Emoji +#. gLfBj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1745,6 +1937,7 @@ msgstr "telepon2" #. ☐ (U+02610), see http://wiki.documentfoundation.org/Emoji +#. Pwd6y #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1754,6 +1947,7 @@ msgstr "kotak centang" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji +#. g5A4j #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1763,6 +1957,7 @@ msgstr "kotak centang2" #. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji +#. WCu8C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1772,6 +1967,7 @@ msgstr "kotak centang3" #. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji +#. XgRVb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1781,6 +1977,7 @@ msgstr "saltire" #. ☔ (U+02614), see http://wiki.documentfoundation.org/Emoji +#. tAK2C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1790,6 +1987,7 @@ msgstr "hujang" #. ☕ (U+02615), see http://wiki.documentfoundation.org/Emoji +#. aPUY3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1799,6 +1997,7 @@ msgstr "kopi" #. ☚ (U+0261A), see http://wiki.documentfoundation.org/Emoji +#. HCAHj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1808,6 +2007,7 @@ msgstr "kiri3" #. ☛ (U+0261B), see http://wiki.documentfoundation.org/Emoji +#. Joh5w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1817,6 +2017,7 @@ msgstr "kanan3" #. ☜ (U+0261C), see http://wiki.documentfoundation.org/Emoji +#. GVrVz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1826,6 +2027,7 @@ msgstr "kiri" #. ☝ (U+0261D), see http://wiki.documentfoundation.org/Emoji +#. gqhNE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1835,6 +2037,7 @@ msgstr "naik" #. ☞ (U+0261E), see http://wiki.documentfoundation.org/Emoji +#. ht3yv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1844,6 +2047,7 @@ msgstr "kanan" #. ☟ (U+0261F), see http://wiki.documentfoundation.org/Emoji +#. x8Gff #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1853,6 +2057,7 @@ msgstr "turun" #. ☠ (U+02620), see http://wiki.documentfoundation.org/Emoji +#. 5vDqS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1862,6 +2067,7 @@ msgstr "racun" #. ☡ (U+02621), see http://wiki.documentfoundation.org/Emoji +#. oC9id #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1871,6 +2077,7 @@ msgstr "perhatian" #. ☢ (U+02622), see http://wiki.documentfoundation.org/Emoji +#. SjHNN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1880,6 +2087,7 @@ msgstr "radioaktif" #. ☣ (U+02623), see http://wiki.documentfoundation.org/Emoji +#. FEuBp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1889,6 +2097,7 @@ msgstr "biohazard" #. ☤ (U+02624), see http://wiki.documentfoundation.org/Emoji +#. chcF5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1898,6 +2107,7 @@ msgstr "caduceus" #. ☥ (U+02625), see http://wiki.documentfoundation.org/Emoji +#. 4aqGx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1907,6 +2117,7 @@ msgstr "ankh" #. ☦ (U+02626), see http://wiki.documentfoundation.org/Emoji +#. Hp2AS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1916,6 +2127,7 @@ msgstr "salib ortodoks" #. ☧ (U+02627), see http://wiki.documentfoundation.org/Emoji +#. PfA83 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1925,6 +2137,7 @@ msgstr "chi rho" #. ☨ (U+02628), see http://wiki.documentfoundation.org/Emoji +#. L8ArM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1934,6 +2147,7 @@ msgstr "salib Lorraine" #. ☩ (U+02629), see http://wiki.documentfoundation.org/Emoji +#. WorYC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1943,6 +2157,7 @@ msgstr "salib Jerusalem" #. ☪ (U+0262A), see http://wiki.documentfoundation.org/Emoji +#. PCbQx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1952,6 +2167,7 @@ msgstr "bintang dan bulan sabit" #. ☫ (U+0262B), see http://wiki.documentfoundation.org/Emoji +#. hJ8zc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1961,6 +2177,7 @@ msgstr "Persia" #. ☬ (U+0262C), see http://wiki.documentfoundation.org/Emoji +#. n8fgp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1970,6 +2187,7 @@ msgstr "Adi Shakti" #. ☭ (U+0262D), see http://wiki.documentfoundation.org/Emoji +#. Ekcos #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1979,6 +2197,7 @@ msgstr "palu dan arit" #. ☮ (U+0262E), see http://wiki.documentfoundation.org/Emoji +#. FGBij #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1988,6 +2207,7 @@ msgstr "damai" #. ☯ (U+0262F), see http://wiki.documentfoundation.org/Emoji +#. 4h4sG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -1997,6 +2217,7 @@ msgstr "yin yang" #. ☹ (U+02639), see http://wiki.documentfoundation.org/Emoji +#. kyxBs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2006,6 +2227,7 @@ msgstr "merengut" #. ☺ (U+0263A), see http://wiki.documentfoundation.org/Emoji +#. XFcMJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2015,6 +2237,7 @@ msgstr "senyum" #. ☻ (U+0263B), see http://wiki.documentfoundation.org/Emoji +#. HjhDU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2024,6 +2247,7 @@ msgstr "senyum2" #. ☼ (U+0263C), see http://wiki.documentfoundation.org/Emoji +#. TpjzA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2033,6 +2257,7 @@ msgstr "Matahari2" #. ☽ (U+0263D), see http://wiki.documentfoundation.org/Emoji +#. d9iEk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2042,6 +2267,7 @@ msgstr "Bulan" #. ☾ (U+0263E), see http://wiki.documentfoundation.org/Emoji +#. 8Lq2B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2051,6 +2277,7 @@ msgstr "Bulan2" #. ☿ (U+0263F), see http://wiki.documentfoundation.org/Emoji +#. vyXwC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2060,6 +2287,7 @@ msgstr "merkurius" #. ♀ (U+02640), see http://wiki.documentfoundation.org/Emoji +#. 3qTne #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2069,6 +2297,7 @@ msgstr "wanita" #. ♁ (U+02641), see http://wiki.documentfoundation.org/Emoji +#. hxxDJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2078,6 +2307,7 @@ msgstr "bumi" #. ♂ (U+02642), see http://wiki.documentfoundation.org/Emoji +#. UnfqG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2087,6 +2317,7 @@ msgstr "pria" #. ♃ (U+02643), see http://wiki.documentfoundation.org/Emoji +#. BctwY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2096,6 +2327,7 @@ msgstr "jupiter" #. ♄ (U+02644), see http://wiki.documentfoundation.org/Emoji +#. 2paAD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2105,6 +2337,7 @@ msgstr "saturnus" #. ♅ (U+02645), see http://wiki.documentfoundation.org/Emoji +#. LEDYc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2114,6 +2347,7 @@ msgstr "uranus" #. ♆ (U+02646), see http://wiki.documentfoundation.org/Emoji +#. 7YHnR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2123,6 +2357,7 @@ msgstr "neptunus" #. ♇ (U+02647), see http://wiki.documentfoundation.org/Emoji +#. DbKfF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2132,6 +2367,7 @@ msgstr "pluto" #. ♈ (U+02648), see http://wiki.documentfoundation.org/Emoji +#. 3N5E9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2141,6 +2377,7 @@ msgstr "aries" #. ♉ (U+02649), see http://wiki.documentfoundation.org/Emoji +#. qpNpL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2150,6 +2387,7 @@ msgstr "taurus" #. ♊ (U+0264A), see http://wiki.documentfoundation.org/Emoji +#. zjpz4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2159,6 +2397,7 @@ msgstr "gemini" #. ♋ (U+0264B), see http://wiki.documentfoundation.org/Emoji +#. L33Eb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2168,6 +2407,7 @@ msgstr "cancer" #. ♌ (U+0264C), see http://wiki.documentfoundation.org/Emoji +#. rQ5fy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2177,6 +2417,7 @@ msgstr "leo" #. ♍ (U+0264D), see http://wiki.documentfoundation.org/Emoji +#. LjdEF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2186,6 +2427,7 @@ msgstr "virgo" #. ♎ (U+0264E), see http://wiki.documentfoundation.org/Emoji +#. Smwbc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2195,6 +2437,7 @@ msgstr "libra" #. ♏ (U+0264F), see http://wiki.documentfoundation.org/Emoji +#. E2zBz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2204,6 +2447,7 @@ msgstr "scorpio" #. ♐ (U+02650), see http://wiki.documentfoundation.org/Emoji +#. nAeJN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2213,6 +2457,7 @@ msgstr "sagittarius" #. ♑ (U+02651), see http://wiki.documentfoundation.org/Emoji +#. dGRFg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2222,6 +2467,7 @@ msgstr "capricorn" #. ♒ (U+02652), see http://wiki.documentfoundation.org/Emoji +#. 6EsoM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2231,6 +2477,7 @@ msgstr "aquarius" #. ♓ (U+02653), see http://wiki.documentfoundation.org/Emoji +#. eAGFG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2240,6 +2487,7 @@ msgstr "pisces" #. ♔ (U+02654), see http://wiki.documentfoundation.org/Emoji +#. JcAnb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2249,6 +2497,7 @@ msgstr "raja putih" #. ♕ (U+02655), see http://wiki.documentfoundation.org/Emoji +#. TM7js #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2258,6 +2507,7 @@ msgstr "ratu putih" #. ♖ (U+02656), see http://wiki.documentfoundation.org/Emoji +#. GRqXg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2267,6 +2517,7 @@ msgstr "benteng putih" #. ♗ (U+02657), see http://wiki.documentfoundation.org/Emoji +#. p8wfC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2276,6 +2527,7 @@ msgstr "gajah putih" #. ♘ (U+02658), see http://wiki.documentfoundation.org/Emoji +#. tWL7E #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2285,6 +2537,7 @@ msgstr "kuda putih" #. ♙ (U+02659), see http://wiki.documentfoundation.org/Emoji +#. mhhoR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2294,6 +2547,7 @@ msgstr "bidak putih" #. ♚ (U+0265A), see http://wiki.documentfoundation.org/Emoji +#. Dp6YG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2303,6 +2557,7 @@ msgstr "raja hitam" #. ♛ (U+0265B), see http://wiki.documentfoundation.org/Emoji +#. qbeAi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2312,6 +2567,7 @@ msgstr "ratu hitam" #. ♜ (U+0265C), see http://wiki.documentfoundation.org/Emoji +#. P4uqB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2321,6 +2577,7 @@ msgstr "benteng hitam" #. ♝ (U+0265D), see http://wiki.documentfoundation.org/Emoji +#. uCgny #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2330,6 +2587,7 @@ msgstr "gajah hitam" #. ♞ (U+0265E), see http://wiki.documentfoundation.org/Emoji +#. qjARs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2339,6 +2597,7 @@ msgstr "kuda hitam" #. ♟ (U+0265F), see http://wiki.documentfoundation.org/Emoji +#. rmVZS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2348,6 +2607,7 @@ msgstr "bidak hitam" #. ♠ (U+02660), see http://wiki.documentfoundation.org/Emoji +#. uvboC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2357,6 +2617,7 @@ msgstr "spades" #. ♡ (U+02661), see http://wiki.documentfoundation.org/Emoji +#. t43iF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2366,6 +2627,7 @@ msgstr "hati2" #. ♢ (U+02662), see http://wiki.documentfoundation.org/Emoji +#. GeSFL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2375,6 +2637,7 @@ msgstr "wajik2" #. ♣ (U+02663), see http://wiki.documentfoundation.org/Emoji +#. pYFJB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2384,6 +2647,7 @@ msgstr "keriting" #. ♤ (U+02664), see http://wiki.documentfoundation.org/Emoji +#. dajk8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2393,6 +2657,7 @@ msgstr "spades2" #. ♥ (U+02665), see http://wiki.documentfoundation.org/Emoji +#. qE59E #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2402,6 +2667,7 @@ msgstr "hati" #. ♦ (U+02666), see http://wiki.documentfoundation.org/Emoji +#. gKSGj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2411,6 +2677,7 @@ msgstr "wajik" #. ♧ (U+02667), see http://wiki.documentfoundation.org/Emoji +#. wRCzA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2420,6 +2687,7 @@ msgstr "keriting2" #. ♨ (U+02668), see http://wiki.documentfoundation.org/Emoji +#. vEME9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2429,6 +2697,7 @@ msgstr "mata air panas" #. ♩ (U+02669), see http://wiki.documentfoundation.org/Emoji +#. 3Epzr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2438,6 +2707,7 @@ msgstr "catatan" #. ♪ (U+0266A), see http://wiki.documentfoundation.org/Emoji +#. wFCxA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2447,6 +2717,7 @@ msgstr "catatan2" #. ♫ (U+0266B), see http://wiki.documentfoundation.org/Emoji +#. Zkjwm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2456,6 +2727,7 @@ msgstr "catatan" #. ♬ (U+0266C), see http://wiki.documentfoundation.org/Emoji +#. MHiAq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2465,6 +2737,7 @@ msgstr "catatan2" #. ♭ (U+0266D), see http://wiki.documentfoundation.org/Emoji +#. hDksD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2474,6 +2747,7 @@ msgstr "rata" #. ♮ (U+0266E), see http://wiki.documentfoundation.org/Emoji +#. 2wECE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2483,6 +2757,7 @@ msgstr "alami" #. ♯ (U+0266F), see http://wiki.documentfoundation.org/Emoji +#. gr9EM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2492,6 +2767,7 @@ msgstr "tajam" #. ♲ (U+02672), see http://wiki.documentfoundation.org/Emoji +#. VWtWv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2501,6 +2777,7 @@ msgstr "daur ulang" #. ♻ (U+0267B), see http://wiki.documentfoundation.org/Emoji +#. SWE9X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2510,6 +2787,7 @@ msgstr "daur ulang2" #. ♼ (U+0267C), see http://wiki.documentfoundation.org/Emoji +#. 9FCXo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2519,6 +2797,7 @@ msgstr "kertas daur ulang" #. ♾ (U+0267E), see http://wiki.documentfoundation.org/Emoji +#. eH5KB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2528,6 +2807,7 @@ msgstr "kertas permanen" #. ♿ (U+0267F), see http://wiki.documentfoundation.org/Emoji +#. RqE6D #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2537,6 +2817,7 @@ msgstr "kursi roda" #. ⚀ (U+02680), see http://wiki.documentfoundation.org/Emoji +#. BcbKe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2546,6 +2827,7 @@ msgstr "dadu1" #. ⚁ (U+02681), see http://wiki.documentfoundation.org/Emoji +#. QytA9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2555,6 +2837,7 @@ msgstr "dadu2" #. ⚂ (U+02682), see http://wiki.documentfoundation.org/Emoji +#. fM5fU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2564,6 +2847,7 @@ msgstr "dadu3" #. ⚃ (U+02683), see http://wiki.documentfoundation.org/Emoji +#. pEPa2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2573,6 +2857,7 @@ msgstr "dadu4" #. ⚄ (U+02684), see http://wiki.documentfoundation.org/Emoji +#. 6iVDd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2582,6 +2867,7 @@ msgstr "dadu5" #. ⚅ (U+02685), see http://wiki.documentfoundation.org/Emoji +#. BXiNG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2591,6 +2877,7 @@ msgstr "dadu6" #. ⚐ (U+02690), see http://wiki.documentfoundation.org/Emoji +#. FAqot #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2600,6 +2887,7 @@ msgstr "bendera4" #. ⚑ (U+02691), see http://wiki.documentfoundation.org/Emoji +#. fc3Gb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2609,6 +2897,7 @@ msgstr "bendera3" #. ⚒ (U+02692), see http://wiki.documentfoundation.org/Emoji +#. BTmxe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2618,6 +2907,7 @@ msgstr "palu dan ganco" #. ⚓ (U+02693), see http://wiki.documentfoundation.org/Emoji +#. GMsHG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2627,6 +2917,7 @@ msgstr "jangkar" #. ⚔ (U+02694), see http://wiki.documentfoundation.org/Emoji +#. Wx5rd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2636,6 +2927,7 @@ msgstr "pedang" #. ⚕ (U+02695), see http://wiki.documentfoundation.org/Emoji +#. YYDuu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2645,6 +2937,7 @@ msgstr "medis" #. ⚖ (U+02696), see http://wiki.documentfoundation.org/Emoji +#. eFRLH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2654,6 +2947,7 @@ msgstr "timbangan" #. ⚗ (U+02697), see http://wiki.documentfoundation.org/Emoji +#. bwJmD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2663,6 +2957,7 @@ msgstr "alembic" #. ⚘ (U+02698), see http://wiki.documentfoundation.org/Emoji +#. LAQtt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2672,6 +2967,7 @@ msgstr "bunga" #. ⚙ (U+02699), see http://wiki.documentfoundation.org/Emoji +#. cw6G2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2681,6 +2977,7 @@ msgstr "roda gigi" #. ⚚ (U+0269A), see http://wiki.documentfoundation.org/Emoji +#. gMDNC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2690,6 +2987,7 @@ msgstr "tongkat" #. ⚛ (U+0269B), see http://wiki.documentfoundation.org/Emoji +#. B96CG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2699,6 +2997,7 @@ msgstr "atom" #. ⚜ (U+0269C), see http://wiki.documentfoundation.org/Emoji +#. 4BEEo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2708,6 +3007,7 @@ msgstr "fleur de lis" #. ⚠ (U+026A0), see http://wiki.documentfoundation.org/Emoji +#. QjFwh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2717,6 +3017,7 @@ msgstr "peringatan" #. ⚡ (U+026A1), see http://wiki.documentfoundation.org/Emoji +#. fXBh2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2726,6 +3027,7 @@ msgstr "zap" #. ⚪ (U+026AA), see http://wiki.documentfoundation.org/Emoji +#. 9FWWA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2735,6 +3037,7 @@ msgstr "lingkaran putih" #. ⚫ (U+026AB), see http://wiki.documentfoundation.org/Emoji +#. jQGGR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2744,6 +3047,7 @@ msgstr "lingkaran hitam" #. ⚭ (U+026AD), see http://wiki.documentfoundation.org/Emoji +#. o9oHP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2753,6 +3057,7 @@ msgstr "pernikahan" #. ⚮ (U+026AE), see http://wiki.documentfoundation.org/Emoji +#. jXs4X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2762,6 +3067,7 @@ msgstr "perceraian" #. ⚰ (U+026B0), see http://wiki.documentfoundation.org/Emoji +#. JDx7T #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2771,6 +3077,7 @@ msgstr "peti mati" #. ⚱ (U+026B1), see http://wiki.documentfoundation.org/Emoji +#. huKvE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2780,6 +3087,7 @@ msgstr "guci" #. ⚽ (U+026BD), see http://wiki.documentfoundation.org/Emoji +#. JTA8e #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2789,6 +3097,7 @@ msgstr "sepak bola" #. ⚾ (U+026BE), see http://wiki.documentfoundation.org/Emoji +#. xFBA5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2798,6 +3107,7 @@ msgstr "baseball" #. ⛄ (U+026C4), see http://wiki.documentfoundation.org/Emoji +#. CCTQA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2807,6 +3117,7 @@ msgstr "orang-orangan salju2" #. ⛅ (U+026C5), see http://wiki.documentfoundation.org/Emoji +#. xw3m7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2816,6 +3127,7 @@ msgstr "awan2" #. ⛆ (U+026C6), see http://wiki.documentfoundation.org/Emoji +#. A5yxX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2825,6 +3137,7 @@ msgstr "hujan2" #. ⛈ (U+026C8), see http://wiki.documentfoundation.org/Emoji +#. nBeDn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2834,6 +3147,7 @@ msgstr "awan3" #. ⛎ (U+026CE), see http://wiki.documentfoundation.org/Emoji +#. RmxAt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2843,6 +3157,7 @@ msgstr "ophiuchus" #. ⛏ (U+026CF), see http://wiki.documentfoundation.org/Emoji +#. ESYDq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2852,6 +3167,7 @@ msgstr "ganco" #. ⛐ (U+026D0), see http://wiki.documentfoundation.org/Emoji +#. e5D4p #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2861,6 +3177,7 @@ msgstr "mobil tergelincir" #. ⛑ (U+026D1), see http://wiki.documentfoundation.org/Emoji +#. BoTPo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2870,6 +3187,7 @@ msgstr "helm" #. ⛓ (U+026D3), see http://wiki.documentfoundation.org/Emoji +#. BUgLe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2879,6 +3197,7 @@ msgstr "rantai" #. ⛔ (U+026D4), see http://wiki.documentfoundation.org/Emoji +#. 2MaDN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2888,6 +3207,7 @@ msgstr "dilarang masuk" #. ⛟ (U+026DF), see http://wiki.documentfoundation.org/Emoji +#. NBJ9F #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2897,6 +3217,7 @@ msgstr "truk" #. ⛤ (U+026E4), see http://wiki.documentfoundation.org/Emoji +#. ScAbG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2906,6 +3227,7 @@ msgstr "pentagram" #. ⛨ (U+026E8), see http://wiki.documentfoundation.org/Emoji +#. M7ovy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2915,6 +3237,7 @@ msgstr "perisai2" #. ⛪ (U+026EA), see http://wiki.documentfoundation.org/Emoji +#. gFz3j #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2924,6 +3247,7 @@ msgstr "gereja" #. ⛰ (U+026F0), see http://wiki.documentfoundation.org/Emoji +#. An5FF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2933,6 +3257,7 @@ msgstr "gunung" #. ⛱ (U+026F1), see http://wiki.documentfoundation.org/Emoji +#. 6HqeN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2942,6 +3267,7 @@ msgstr "payung3" #. ⛲ (U+026F2), see http://wiki.documentfoundation.org/Emoji +#. 5EUJX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2951,6 +3277,7 @@ msgstr "air mancur" #. ⛳ (U+026F3), see http://wiki.documentfoundation.org/Emoji +#. GkdBn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2960,6 +3287,7 @@ msgstr "golf2" #. ⛴ (U+026F4), see http://wiki.documentfoundation.org/Emoji +#. GLtJt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2969,6 +3297,7 @@ msgstr "ferry" #. ⛵ (U+026F5), see http://wiki.documentfoundation.org/Emoji +#. H6AR2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2978,6 +3307,7 @@ msgstr "perahu layar" #. ⛺ (U+026FA), see http://wiki.documentfoundation.org/Emoji +#. 3DsFA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2987,6 +3317,7 @@ msgstr "tenda" #. ⛷ (U+026F7), see http://wiki.documentfoundation.org/Emoji +#. vDnif #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -2996,6 +3327,7 @@ msgstr "pemain ski" #. ⛸ (U+026F8), see http://wiki.documentfoundation.org/Emoji +#. jsVHG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3005,6 +3337,7 @@ msgstr "skate" #. ⛹ (U+026F9), see http://wiki.documentfoundation.org/Emoji +#. FRKEE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3014,6 +3347,7 @@ msgstr "bola" #. ⛽ (U+026FD), see http://wiki.documentfoundation.org/Emoji +#. aJYuZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3023,6 +3357,7 @@ msgstr "pompa bahan bakar" #. ✁ (U+02701), see http://wiki.documentfoundation.org/Emoji +#. cfZQA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3032,6 +3367,7 @@ msgstr "gunting3" #. ✂ (U+02702), see http://wiki.documentfoundation.org/Emoji +#. xEcJE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3041,6 +3377,7 @@ msgstr "gunting" #. ✃ (U+02703), see http://wiki.documentfoundation.org/Emoji +#. ssfwc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3050,6 +3387,7 @@ msgstr "gunting4" #. ✄ (U+02704), see http://wiki.documentfoundation.org/Emoji +#. xc6qH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3059,6 +3397,7 @@ msgstr "gunting2" #. ✅ (U+02705), see http://wiki.documentfoundation.org/Emoji +#. jBAFG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3068,6 +3407,7 @@ msgstr "tanda centang3" #. ✆ (U+02706), see http://wiki.documentfoundation.org/Emoji +#. E8J8A #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3077,6 +3417,7 @@ msgstr "telepon" #. ✈ (U+02708), see http://wiki.documentfoundation.org/Emoji +#. FEQAH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3086,6 +3427,7 @@ msgstr "pesawat terbang" #. ✉ (U+02709), see http://wiki.documentfoundation.org/Emoji +#. MSzMa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3095,6 +3437,7 @@ msgstr "amplop" #. ✊ (U+0270A), see http://wiki.documentfoundation.org/Emoji +#. 387gN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3104,6 +3447,7 @@ msgstr "kepalan" #. ✋ (U+0270B), see http://wiki.documentfoundation.org/Emoji +#. crTfj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3113,6 +3457,7 @@ msgstr "tangan" #. ✌ (U+0270C), see http://wiki.documentfoundation.org/Emoji +#. rxEfQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3122,6 +3467,7 @@ msgstr "kemenangan" #. ✍ (U+0270D), see http://wiki.documentfoundation.org/Emoji +#. peWuK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3131,6 +3477,7 @@ msgstr "menulis" #. ✎ (U+0270E), see http://wiki.documentfoundation.org/Emoji +#. Be5Dk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3140,6 +3487,7 @@ msgstr "pinsil" #. ✏ (U+0270F), see http://wiki.documentfoundation.org/Emoji +#. g9bBy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3149,6 +3497,7 @@ msgstr "pinsil2" #. ✐ (U+02710), see http://wiki.documentfoundation.org/Emoji +#. LuQwT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3158,6 +3507,7 @@ msgstr "pinsil3" #. ✑ (U+02711), see http://wiki.documentfoundation.org/Emoji +#. sS5kP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3167,6 +3517,7 @@ msgstr "ujung pena" #. ✒ (U+02712), see http://wiki.documentfoundation.org/Emoji +#. vbpZB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3176,6 +3527,7 @@ msgstr "ujung pena 2" #. ✓ (U+02713), see http://wiki.documentfoundation.org/Emoji +#. CjjoU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3185,6 +3537,7 @@ msgstr "tanda centang" #. ✔ (U+02714), see http://wiki.documentfoundation.org/Emoji +#. ECpTG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3194,6 +3547,7 @@ msgstr "tanda centang2" #. ✖ (U+02716), see http://wiki.documentfoundation.org/Emoji +#. krEhs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3203,6 +3557,7 @@ msgstr "kali2" #. ✙ (U+02719), see http://wiki.documentfoundation.org/Emoji +#. 8dNKN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3212,6 +3567,7 @@ msgstr "salib Yunani2" #. ✚ (U+0271A), see http://wiki.documentfoundation.org/Emoji +#. BtCjS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3221,6 +3577,7 @@ msgstr "salib Yunani" #. ✝ (U+0271D), see http://wiki.documentfoundation.org/Emoji +#. dX9La #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3230,6 +3587,7 @@ msgstr "salib Latin" #. ✠ (U+02720), see http://wiki.documentfoundation.org/Emoji +#. SRNJ4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3239,6 +3597,7 @@ msgstr "salib Malta" #. ✡ (U+02721), see http://wiki.documentfoundation.org/Emoji +#. HqQC5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3248,6 +3607,7 @@ msgstr "bintang David" #. ✨ (U+02728), see http://wiki.documentfoundation.org/Emoji +#. 8jFfg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3257,6 +3617,7 @@ msgstr "bunga api" #. ❄ (U+02744), see http://wiki.documentfoundation.org/Emoji +#. cfDE7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3266,6 +3627,7 @@ msgstr "bunga salju" #. ❇ (U+02747), see http://wiki.documentfoundation.org/Emoji +#. eKCo6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3275,6 +3637,7 @@ msgstr "bunga api" #. ❌ (U+0274C), see http://wiki.documentfoundation.org/Emoji +#. Winhg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3284,6 +3647,7 @@ msgstr "x2" #. ❎ (U+0274E), see http://wiki.documentfoundation.org/Emoji +#. 5mbLT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3293,6 +3657,7 @@ msgstr "x3" #. ❓ (U+02753), see http://wiki.documentfoundation.org/Emoji +#. KpGSR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3302,6 +3667,7 @@ msgstr "?" #. ❔ (U+02754), see http://wiki.documentfoundation.org/Emoji +#. E372z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3311,6 +3677,7 @@ msgstr "?2" #. ❕ (U+02755), see http://wiki.documentfoundation.org/Emoji +#. CUfKq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3320,6 +3687,7 @@ msgstr "!" #. ❗ (U+02757), see http://wiki.documentfoundation.org/Emoji +#. WvFdp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3329,6 +3697,7 @@ msgstr "!2" #. ❤ (U+02764), see http://wiki.documentfoundation.org/Emoji +#. jEJbE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3338,6 +3707,7 @@ msgstr "hati" #. ➰ (U+027B0), see http://wiki.documentfoundation.org/Emoji +#. 9L5EP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3347,6 +3717,7 @@ msgstr "loop" #. ➿ (U+027BF), see http://wiki.documentfoundation.org/Emoji +#. DSXDM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3356,6 +3727,7 @@ msgstr "loop2" #. ⬛ (U+02B1B), see http://wiki.documentfoundation.org/Emoji +#. WwYcT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3365,6 +3737,7 @@ msgstr "bujur sangkar besar2" #. ⬜ (U+02B1C), see http://wiki.documentfoundation.org/Emoji +#. HrBFD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3374,6 +3747,7 @@ msgstr "bujur sangkar besar" #. ⬟ (U+02B1F), see http://wiki.documentfoundation.org/Emoji +#. hRTAZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3383,6 +3757,7 @@ msgstr "pentagon2" #. ⬠ (U+02B20), see http://wiki.documentfoundation.org/Emoji +#. g2gFC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3392,6 +3767,7 @@ msgstr "pentagon" #. ⬡ (U+02B21), see http://wiki.documentfoundation.org/Emoji +#. 2UACw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3401,6 +3777,7 @@ msgstr "heksagon" #. ⬢ (U+02B22), see http://wiki.documentfoundation.org/Emoji +#. uqRGB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3410,6 +3787,7 @@ msgstr "heksagon2" #. ⬤ (U+02B24), see http://wiki.documentfoundation.org/Emoji +#. 4BwK8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3419,6 +3797,7 @@ msgstr "lingkaran besar2" #. ⬭ (U+02B2D), see http://wiki.documentfoundation.org/Emoji +#. gVrZC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3428,6 +3807,7 @@ msgstr "elips" #. ⭐ (U+02B50), see http://wiki.documentfoundation.org/Emoji +#. L5Q2X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3437,6 +3817,7 @@ msgstr "bintang sedang" #. ⭑ (U+02B51), see http://wiki.documentfoundation.org/Emoji +#. TSBfG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3446,6 +3827,7 @@ msgstr "bintang kecil2" #. ⭒ (U+02B52), see http://wiki.documentfoundation.org/Emoji +#. tqdLm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3455,6 +3837,7 @@ msgstr "bintang kecil" #. ff (U+0FB00), see http://wiki.documentfoundation.org/Emoji +#. 9ER38 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3464,6 +3847,7 @@ msgstr "ff" #. fi (U+0FB01), see http://wiki.documentfoundation.org/Emoji +#. neMhY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3473,6 +3857,7 @@ msgstr "fi" #. fl (U+0FB02), see http://wiki.documentfoundation.org/Emoji +#. ym9RA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3482,6 +3867,7 @@ msgstr "fl" #. ffi (U+0FB03), see http://wiki.documentfoundation.org/Emoji +#. HA2oJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3491,6 +3877,7 @@ msgstr "ffi" #. ffl (U+0FB04), see http://wiki.documentfoundation.org/Emoji +#. LcntK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3500,6 +3887,7 @@ msgstr "ffl" #. 𝄞 (U+1D11E), see http://wiki.documentfoundation.org/Emoji +#. 6CVtL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3509,6 +3897,7 @@ msgstr "clef" #. 𝄪 (U+1D12A), see http://wiki.documentfoundation.org/Emoji +#. FJAMw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3518,6 +3907,7 @@ msgstr "double sharp" #. 𝄫 (U+1D12B), see http://wiki.documentfoundation.org/Emoji +#. 7ADGW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3527,6 +3917,7 @@ msgstr "double flat" #. 𝄻 (U+1D13B), see http://wiki.documentfoundation.org/Emoji +#. DdcM2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3536,6 +3927,7 @@ msgstr "whole rest" #. 𝄼 (U+1D13C), see http://wiki.documentfoundation.org/Emoji +#. BUYwU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3545,6 +3937,7 @@ msgstr "half rest" #. 𝄽 (U+1D13D), see http://wiki.documentfoundation.org/Emoji +#. gqJAB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3554,6 +3947,7 @@ msgstr "quarter rest" #. 𝄾 (U+1D13E), see http://wiki.documentfoundation.org/Emoji +#. ktK5s #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3563,6 +3957,7 @@ msgstr "eighth rest" #. 𝅝 (U+1D15D), see http://wiki.documentfoundation.org/Emoji +#. bbrCH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3572,6 +3967,7 @@ msgstr "whole note" #. 𝅗𝅥 (U+1D15E), see http://wiki.documentfoundation.org/Emoji +#. RBhrQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3581,6 +3977,7 @@ msgstr "half note" #. 𝅘𝅥 (U+1D15F), see http://wiki.documentfoundation.org/Emoji +#. ysAGf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3590,6 +3987,7 @@ msgstr "quarter note" #. 𝅘𝅥𝅮 (U+1D160), see http://wiki.documentfoundation.org/Emoji +#. VPWEh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3599,6 +3997,7 @@ msgstr "eighth note" #. 𝅘𝅥𝅯 (U+1D161), see http://wiki.documentfoundation.org/Emoji +#. i3m8B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3608,6 +4007,7 @@ msgstr "sixteenth note" #. 🀄 (U+1F004), see http://wiki.documentfoundation.org/Emoji +#. txbRc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3617,6 +4017,7 @@ msgstr "mahjong" #. 🁠 (U+1F060), see http://wiki.documentfoundation.org/Emoji +#. vkYJP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3626,6 +4027,7 @@ msgstr "domino" #. 🂡 (U+1F0A1), see http://wiki.documentfoundation.org/Emoji +#. FWHRC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3635,6 +4037,7 @@ msgstr "as" #. 🂫 (U+1F0AB), see http://wiki.documentfoundation.org/Emoji +#. TQAX3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3644,6 +4047,7 @@ msgstr "pangeran" #. 🂭 (U+1F0AD), see http://wiki.documentfoundation.org/Emoji +#. 5xGEk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3653,6 +4057,7 @@ msgstr "ratu" #. 🂮 (U+1F0AE), see http://wiki.documentfoundation.org/Emoji +#. CdrE2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3662,6 +4067,7 @@ msgstr "raja" #. 🃏 (U+1F0CF), see http://wiki.documentfoundation.org/Emoji +#. 2CYz7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3671,6 +4077,7 @@ msgstr "badut" #. 🌀 (U+1F300), see http://wiki.documentfoundation.org/Emoji +#. eNZwQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3680,6 +4087,7 @@ msgstr "angin puyuh" #. 🌁 (U+1F301), see http://wiki.documentfoundation.org/Emoji +#. E3AiK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3689,6 +4097,7 @@ msgstr "berkabut" #. 🌂 (U+1F302), see http://wiki.documentfoundation.org/Emoji +#. LFEnJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3698,6 +4107,7 @@ msgstr "payung2" #. 🌃 (U+1F303), see http://wiki.documentfoundation.org/Emoji +#. VGPCt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3707,6 +4117,7 @@ msgstr "malam" #. 🌄 (U+1F304), see http://wiki.documentfoundation.org/Emoji +#. xwX5z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3716,6 +4127,7 @@ msgstr "matahari terbit2" #. 🌅 (U+1F305), see http://wiki.documentfoundation.org/Emoji +#. DFQNE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3725,6 +4137,7 @@ msgstr "matahari terbit" #. 🌆 (U+1F306), see http://wiki.documentfoundation.org/Emoji +#. EjsTC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3734,6 +4147,7 @@ msgstr "matahari terbenam" #. 🌇 (U+1F307), see http://wiki.documentfoundation.org/Emoji +#. 8BthL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3743,6 +4157,7 @@ msgstr "matahari terbit3" #. 🌈 (U+1F308), see http://wiki.documentfoundation.org/Emoji +#. ygxkm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3752,6 +4167,7 @@ msgstr "pelangi" #. 🌉 (U+1F309), see http://wiki.documentfoundation.org/Emoji +#. V7CPB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3761,6 +4177,7 @@ msgstr "jembatan" #. 🌊 (U+1F30A), see http://wiki.documentfoundation.org/Emoji +#. DEJFX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3770,6 +4187,7 @@ msgstr "lautan" #. 🌋 (U+1F30B), see http://wiki.documentfoundation.org/Emoji +#. GbZVy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3779,6 +4197,7 @@ msgstr "gunung berapi" #. 🌌 (U+1F30C), see http://wiki.documentfoundation.org/Emoji +#. yZBGc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3788,6 +4207,7 @@ msgstr "bima sakti" #. 🌍 (U+1F30D), see http://wiki.documentfoundation.org/Emoji +#. f53Lu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3797,6 +4217,7 @@ msgstr "bola dunia" #. 🌎 (U+1F30E), see http://wiki.documentfoundation.org/Emoji +#. AutYx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3806,6 +4227,7 @@ msgstr "bola dunia2" #. 🌏 (U+1F30F), see http://wiki.documentfoundation.org/Emoji +#. ACoLQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3815,6 +4237,7 @@ msgstr "bola dunia3" #. 🌐 (U+1F310), see http://wiki.documentfoundation.org/Emoji +#. JjMAs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3824,6 +4247,7 @@ msgstr "bola dunia4" #. 🌑 (U+1F311), see http://wiki.documentfoundation.org/Emoji +#. WAFzy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3833,6 +4257,7 @@ msgstr "bulan baru" #. 🌒 (U+1F312), see http://wiki.documentfoundation.org/Emoji +#. F8LCD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3842,6 +4267,7 @@ msgstr "bulan sabit awal" #. 🌓 (U+1F313), see http://wiki.documentfoundation.org/Emoji +#. pTNhc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3851,6 +4277,7 @@ msgstr "kuartal pertama" #. 🌔 (U+1F314), see http://wiki.documentfoundation.org/Emoji +#. AFBZw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3860,6 +4287,7 @@ msgstr "bulan cembung membuka" #. 🌕 (U+1F315), see http://wiki.documentfoundation.org/Emoji +#. MLLvK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3869,6 +4297,7 @@ msgstr "bulan purnama" #. 🌖 (U+1F316), see http://wiki.documentfoundation.org/Emoji +#. 6ZfWf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3878,6 +4307,7 @@ msgstr "bulan cembung menutup" #. 🌗 (U+1F317), see http://wiki.documentfoundation.org/Emoji +#. hfGRx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3887,6 +4317,7 @@ msgstr "kuartal terakhir" #. 🌘 (U+1F318), see http://wiki.documentfoundation.org/Emoji +#. b3snp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3896,6 +4327,7 @@ msgstr "bulan sabit menutup" #. 🌙 (U+1F319), see http://wiki.documentfoundation.org/Emoji +#. tsvS2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3905,6 +4337,7 @@ msgstr "bulan sabit" #. 🌚 (U+1F31A), see http://wiki.documentfoundation.org/Emoji +#. qCTQy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3914,6 +4347,7 @@ msgstr "bulan baru2" #. 🌛 (U+1F31B), see http://wiki.documentfoundation.org/Emoji +#. WdRzU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3923,6 +4357,7 @@ msgstr "bulan" #. 🌜 (U+1F31C), see http://wiki.documentfoundation.org/Emoji +#. FhGWY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3932,6 +4367,7 @@ msgstr "bulan2" #. 🌝 (U+1F31D), see http://wiki.documentfoundation.org/Emoji +#. 2W3Lv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3941,6 +4377,7 @@ msgstr "bulan purnama2" #. 🌞 (U+1F31E), see http://wiki.documentfoundation.org/Emoji +#. Gkxfx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3950,6 +4387,7 @@ msgstr "matahari" #. 🌟 (U+1F31F), see http://wiki.documentfoundation.org/Emoji +#. eF8ur #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3959,6 +4397,7 @@ msgstr "bintang3" #. 🌠 (U+1F320), see http://wiki.documentfoundation.org/Emoji +#. XRohW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3968,6 +4407,7 @@ msgstr "bintang4" #. 🌰 (U+1F330), see http://wiki.documentfoundation.org/Emoji +#. AcuuY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3977,6 +4417,7 @@ msgstr "kastanye" #. 🌱 (U+1F331), see http://wiki.documentfoundation.org/Emoji +#. uF4tA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3986,6 +4427,7 @@ msgstr "bibit" #. 🌲 (U+1F332), see http://wiki.documentfoundation.org/Emoji +#. 3pyDD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -3995,6 +4437,7 @@ msgstr "pinus" #. 🌳 (U+1F333), see http://wiki.documentfoundation.org/Emoji +#. vgFCL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4004,6 +4447,7 @@ msgstr "pohon" #. 🌴 (U+1F334), see http://wiki.documentfoundation.org/Emoji +#. tY3EA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4013,6 +4457,7 @@ msgstr "palem" #. 🌵 (U+1F335), see http://wiki.documentfoundation.org/Emoji +#. okHRh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4022,6 +4467,7 @@ msgstr "kaktus" #. 🌷 (U+1F337), see http://wiki.documentfoundation.org/Emoji +#. JHZDE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4031,6 +4477,7 @@ msgstr "tulip" #. 🌸 (U+1F338), see http://wiki.documentfoundation.org/Emoji +#. eFy7r #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4040,6 +4487,7 @@ msgstr "mekar2" #. 🌹 (U+1F339), see http://wiki.documentfoundation.org/Emoji +#. JCYis #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4049,6 +4497,7 @@ msgstr "mawar" #. 🌺 (U+1F33A), see http://wiki.documentfoundation.org/Emoji +#. EGSrt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4058,6 +4507,7 @@ msgstr "bunga sepatu" #. 🌻 (U+1F33B), see http://wiki.documentfoundation.org/Emoji +#. z4cHB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4067,6 +4517,7 @@ msgstr "bunga matahari" #. 🌼 (U+1F33C), see http://wiki.documentfoundation.org/Emoji +#. pBBjC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4076,6 +4527,7 @@ msgstr "mekar" #. 🌽 (U+1F33D), see http://wiki.documentfoundation.org/Emoji +#. wCgXh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4085,6 +4537,7 @@ msgstr "jagung" #. 🌾 (U+1F33E), see http://wiki.documentfoundation.org/Emoji +#. NSDcY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4094,6 +4547,7 @@ msgstr "rumput" #. 🌿 (U+1F33F), see http://wiki.documentfoundation.org/Emoji +#. RBhpE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4103,6 +4557,7 @@ msgstr "rempah" #. 🍀 (U+1F340), see http://wiki.documentfoundation.org/Emoji +#. YF8TS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4112,6 +4567,7 @@ msgstr "daun semanggi" #. 🍁 (U+1F341), see http://wiki.documentfoundation.org/Emoji +#. ZtqRt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4121,6 +4577,7 @@ msgstr "daun" #. 🍂 (U+1F342), see http://wiki.documentfoundation.org/Emoji +#. wBuCQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4130,6 +4587,7 @@ msgstr "daun2" #. 🍃 (U+1F343), see http://wiki.documentfoundation.org/Emoji +#. mLSzg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4139,6 +4597,7 @@ msgstr "daun3" #. 🍄 (U+1F344), see http://wiki.documentfoundation.org/Emoji +#. eEVDC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4148,6 +4607,7 @@ msgstr "jamur" #. 🍅 (U+1F345), see http://wiki.documentfoundation.org/Emoji +#. FAESj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4157,6 +4617,7 @@ msgstr "tomat" #. 🍆 (U+1F346), see http://wiki.documentfoundation.org/Emoji +#. rGgaS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4166,6 +4627,7 @@ msgstr "terong" #. 🍇 (U+1F347), see http://wiki.documentfoundation.org/Emoji +#. zsYDw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4175,6 +4637,7 @@ msgstr "anggur" #. 🍈 (U+1F348), see http://wiki.documentfoundation.org/Emoji +#. mxrW4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4184,6 +4647,7 @@ msgstr "melon" #. 🍉 (U+1F349), see http://wiki.documentfoundation.org/Emoji +#. EDtCM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4193,6 +4657,7 @@ msgstr "semangka" #. 🍊 (U+1F34A), see http://wiki.documentfoundation.org/Emoji +#. pgRuc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4202,6 +4667,7 @@ msgstr "jeruk keprok" #. 🍋 (U+1F34B), see http://wiki.documentfoundation.org/Emoji +#. Rkfu2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4211,6 +4677,7 @@ msgstr "jeruk" #. 🍌 (U+1F34C), see http://wiki.documentfoundation.org/Emoji +#. pnLAk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4220,6 +4687,7 @@ msgstr "pisang" #. 🍍 (U+1F34D), see http://wiki.documentfoundation.org/Emoji +#. Ek9Kz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4229,6 +4697,7 @@ msgstr "nanas" #. 🍎 (U+1F34E), see http://wiki.documentfoundation.org/Emoji +#. VGJDv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4238,6 +4707,7 @@ msgstr "apel" #. 🍏 (U+1F34F), see http://wiki.documentfoundation.org/Emoji +#. QGk2r #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4247,6 +4717,7 @@ msgstr "apel hijau" #. 🍐 (U+1F350), see http://wiki.documentfoundation.org/Emoji +#. sStWm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4256,6 +4727,7 @@ msgstr "pir" #. 🍑 (U+1F351), see http://wiki.documentfoundation.org/Emoji +#. sfc8X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4265,6 +4737,7 @@ msgstr "persik" #. 🍒 (U+1F352), see http://wiki.documentfoundation.org/Emoji +#. 8AKA8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4274,6 +4747,7 @@ msgstr "ceri" #. 🍓 (U+1F353), see http://wiki.documentfoundation.org/Emoji +#. yfRzG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4283,6 +4757,7 @@ msgstr "strawberry" #. 🍔 (U+1F354), see http://wiki.documentfoundation.org/Emoji +#. WpJbe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4292,6 +4767,7 @@ msgstr "hamburger" #. 🍕 (U+1F355), see http://wiki.documentfoundation.org/Emoji +#. 9vBsx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4301,6 +4777,7 @@ msgstr "pizza" #. 🍖 (U+1F356), see http://wiki.documentfoundation.org/Emoji +#. YbRN8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4310,6 +4787,7 @@ msgstr "daging" #. 🍗 (U+1F357), see http://wiki.documentfoundation.org/Emoji +#. 4384H #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4319,6 +4797,7 @@ msgstr "kaki unggas" #. 🍘 (U+1F358), see http://wiki.documentfoundation.org/Emoji +#. fzFgY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4328,6 +4807,7 @@ msgstr "keripik nasi" #. 🍙 (U+1F359), see http://wiki.documentfoundation.org/Emoji +#. L3Jga #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4337,6 +4817,7 @@ msgstr "bola nasi" #. 🍚 (U+1F35A), see http://wiki.documentfoundation.org/Emoji +#. ZxyBw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4346,6 +4827,7 @@ msgstr "nasi" #. 🍛 (U+1F35B), see http://wiki.documentfoundation.org/Emoji +#. akxPB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4355,6 +4837,7 @@ msgstr "kari" #. 🍜 (U+1F35C), see http://wiki.documentfoundation.org/Emoji +#. KsGja #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4364,6 +4847,7 @@ msgstr "ramen" #. 🍝 (U+1F35D), see http://wiki.documentfoundation.org/Emoji +#. dKTwC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4373,6 +4857,7 @@ msgstr "spaghetti" #. 🍞 (U+1F35E), see http://wiki.documentfoundation.org/Emoji +#. D7XrZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4382,6 +4867,7 @@ msgstr "roti" #. 🍟 (U+1F35F), see http://wiki.documentfoundation.org/Emoji +#. tfYnE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4391,6 +4877,7 @@ msgstr "kentang goreng" #. 🍠 (U+1F360), see http://wiki.documentfoundation.org/Emoji +#. AZXBc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4400,6 +4887,7 @@ msgstr "kentang manis" #. 🍡 (U+1F361), see http://wiki.documentfoundation.org/Emoji +#. P9LwF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4409,6 +4897,7 @@ msgstr "dango" #. 🍢 (U+1F362), see http://wiki.documentfoundation.org/Emoji +#. VhY3g #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4418,6 +4907,7 @@ msgstr "oden" #. 🍣 (U+1F363), see http://wiki.documentfoundation.org/Emoji +#. K8uzC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4427,6 +4917,7 @@ msgstr "sushi" #. 🍤 (U+1F364), see http://wiki.documentfoundation.org/Emoji +#. bpAX7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4436,6 +4927,7 @@ msgstr "udang goreng" #. 🍥 (U+1F365), see http://wiki.documentfoundation.org/Emoji +#. GucZQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4445,6 +4937,7 @@ msgstr "perkedel ikan" #. 🍦 (U+1F366), see http://wiki.documentfoundation.org/Emoji +#. JF2mU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4454,6 +4947,7 @@ msgstr "es krim" #. 🍧 (U+1F367), see http://wiki.documentfoundation.org/Emoji +#. B8btb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4463,6 +4957,7 @@ msgstr "es serut" #. 🍨 (U+1F368), see http://wiki.documentfoundation.org/Emoji +#. EqFKK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4472,6 +4967,7 @@ msgstr "es krim" #. 🍩 (U+1F369), see http://wiki.documentfoundation.org/Emoji +#. DZanS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4481,6 +4977,7 @@ msgstr "donat" #. 🍪 (U+1F36A), see http://wiki.documentfoundation.org/Emoji +#. zeBHW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4490,6 +4987,7 @@ msgstr "kue kering" #. 🍫 (U+1F36B), see http://wiki.documentfoundation.org/Emoji +#. qHPED #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4499,6 +4997,7 @@ msgstr "coklat" #. 🍬 (U+1F36C), see http://wiki.documentfoundation.org/Emoji +#. aSMhd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4508,6 +5007,7 @@ msgstr "permen" #. 🍭 (U+1F36D), see http://wiki.documentfoundation.org/Emoji +#. bGtHd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4517,6 +5017,7 @@ msgstr "lolipop" #. 🍮 (U+1F36E), see http://wiki.documentfoundation.org/Emoji +#. KGCkZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4526,6 +5027,7 @@ msgstr "custard" #. 🍯 (U+1F36F), see http://wiki.documentfoundation.org/Emoji +#. z9jVN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4535,6 +5037,7 @@ msgstr "madu" #. 🍰 (U+1F370), see http://wiki.documentfoundation.org/Emoji +#. erDDv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4544,6 +5047,7 @@ msgstr "kue" #. 🍱 (U+1F371), see http://wiki.documentfoundation.org/Emoji +#. rv9sh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4553,6 +5057,7 @@ msgstr "bento" #. 🍲 (U+1F372), see http://wiki.documentfoundation.org/Emoji +#. wuJ4w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4562,6 +5067,7 @@ msgstr "rebusan" #. 🍳 (U+1F373), see http://wiki.documentfoundation.org/Emoji +#. YDqMD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4571,6 +5077,7 @@ msgstr "memasak" #. 🍴 (U+1F374), see http://wiki.documentfoundation.org/Emoji +#. GBfCD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4580,6 +5087,7 @@ msgstr "restoran" #. 🍵 (U+1F375), see http://wiki.documentfoundation.org/Emoji +#. Gf4Av #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4589,6 +5097,7 @@ msgstr "teh" #. 🍶 (U+1F376), see http://wiki.documentfoundation.org/Emoji +#. YncQr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4598,6 +5107,7 @@ msgstr "sake" #. 🍷 (U+1F377), see http://wiki.documentfoundation.org/Emoji +#. xnqbf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4607,6 +5117,7 @@ msgstr "gelas" #. 🍸 (U+1F378), see http://wiki.documentfoundation.org/Emoji +#. Ngp7g #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4616,6 +5127,7 @@ msgstr "cocktail" #. 🍹 (U+1F379), see http://wiki.documentfoundation.org/Emoji +#. sdBze #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4625,6 +5137,7 @@ msgstr "minuman2" #. 🍺 (U+1F37A), see http://wiki.documentfoundation.org/Emoji +#. F2TpK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4634,6 +5147,7 @@ msgstr "bir" #. 🍻 (U+1F37B), see http://wiki.documentfoundation.org/Emoji +#. 3DADC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4643,6 +5157,7 @@ msgstr "bir2" #. 🍼 (U+1F37C), see http://wiki.documentfoundation.org/Emoji +#. BcurL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4652,6 +5167,7 @@ msgstr "botol bayi" #. 🎀 (U+1F380), see http://wiki.documentfoundation.org/Emoji +#. RhPDQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4661,6 +5177,7 @@ msgstr "pita2" #. 🎁 (U+1F381), see http://wiki.documentfoundation.org/Emoji +#. MADiL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4670,6 +5187,7 @@ msgstr "hadiah" #. 🎂 (U+1F382), see http://wiki.documentfoundation.org/Emoji +#. tuDzb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4679,6 +5197,7 @@ msgstr "ulang tahun" #. 🎃 (U+1F383), see http://wiki.documentfoundation.org/Emoji +#. f26Bk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4688,6 +5207,7 @@ msgstr "halloween" #. 🎄 (U+1F384), see http://wiki.documentfoundation.org/Emoji +#. WvFGT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4697,6 +5217,7 @@ msgstr "natal" #. 🎅 (U+1F385), see http://wiki.documentfoundation.org/Emoji +#. cVHdd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4706,6 +5227,7 @@ msgstr "santa" #. 🎆 (U+1F386), see http://wiki.documentfoundation.org/Emoji +#. saFdp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4715,6 +5237,7 @@ msgstr "kembang api" #. 🎇 (U+1F387), see http://wiki.documentfoundation.org/Emoji +#. ikoAR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4724,6 +5247,7 @@ msgstr "bunga api" #. 🎈 (U+1F388), see http://wiki.documentfoundation.org/Emoji +#. xmwGc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4733,6 +5257,7 @@ msgstr "balon" #. 🎉 (U+1F389), see http://wiki.documentfoundation.org/Emoji +#. 6j7qo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4742,6 +5267,7 @@ msgstr "pesta" #. 🎊 (U+1F38A), see http://wiki.documentfoundation.org/Emoji +#. 3eXZe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4751,6 +5277,7 @@ msgstr "pesta2" #. 🎋 (U+1F38B), see http://wiki.documentfoundation.org/Emoji +#. nNzUK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4760,6 +5287,7 @@ msgstr "pohon tanabata" #. 🎌 (U+1F38C), see http://wiki.documentfoundation.org/Emoji +#. 4VRMn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4769,6 +5297,7 @@ msgstr "bendera" #. 🎍 (U+1F38D), see http://wiki.documentfoundation.org/Emoji +#. nShwB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4778,6 +5307,7 @@ msgstr "bambu" #. 🎎 (U+1F38E), see http://wiki.documentfoundation.org/Emoji +#. HyNqD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4787,6 +5317,7 @@ msgstr "boneka" #. 🎏 (U+1F38F), see http://wiki.documentfoundation.org/Emoji +#. MZnGF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4796,6 +5327,7 @@ msgstr "bendera2" #. 🎐 (U+1F390), see http://wiki.documentfoundation.org/Emoji +#. Fe2aF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4805,6 +5337,7 @@ msgstr "lonceng angin" #. 🎑 (U+1F391), see http://wiki.documentfoundation.org/Emoji +#. zfHjE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4814,6 +5347,7 @@ msgstr "pemandangan padi" #. 🎒 (U+1F392), see http://wiki.documentfoundation.org/Emoji +#. nNCBc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4823,6 +5357,7 @@ msgstr "tas sekolah" #. 🎓 (U+1F393), see http://wiki.documentfoundation.org/Emoji +#. 6PMMH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4832,6 +5367,7 @@ msgstr "kelulusan" #. 🎠 (U+1F3A0), see http://wiki.documentfoundation.org/Emoji +#. xaH5B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4841,6 +5377,7 @@ msgstr "kuda putar" #. 🎡 (U+1F3A1), see http://wiki.documentfoundation.org/Emoji +#. 3x8hW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4850,6 +5387,7 @@ msgstr "kincir ria" #. 🎢 (U+1F3A2), see http://wiki.documentfoundation.org/Emoji +#. PD7Cb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4859,6 +5397,7 @@ msgstr "roller coaster" #. 🎣 (U+1F3A3), see http://wiki.documentfoundation.org/Emoji +#. pMccJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4868,6 +5407,7 @@ msgstr "memancing" #. 🎤 (U+1F3A4), see http://wiki.documentfoundation.org/Emoji +#. mZABw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4877,6 +5417,7 @@ msgstr "mikrofon" #. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji +#. cJB24 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4886,6 +5427,7 @@ msgstr "kamera film" #. 🎦 (U+1F3A6), see http://wiki.documentfoundation.org/Emoji +#. 8MDEz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4895,6 +5437,7 @@ msgstr "bioskop" #. 🎧 (U+1F3A7), see http://wiki.documentfoundation.org/Emoji +#. 2tBD3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4904,6 +5447,7 @@ msgstr "headphone" #. 🎨 (U+1F3A8), see http://wiki.documentfoundation.org/Emoji +#. ocRfQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4913,6 +5457,7 @@ msgstr "seni" #. 🎩 (U+1F3A9), see http://wiki.documentfoundation.org/Emoji +#. FHPnG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4922,6 +5467,7 @@ msgstr "topi sulap" #. 🎪 (U+1F3AA), see http://wiki.documentfoundation.org/Emoji +#. NmrUH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4931,6 +5477,7 @@ msgstr "sirkus" #. 🎫 (U+1F3AB), see http://wiki.documentfoundation.org/Emoji +#. gCBD6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4940,6 +5487,7 @@ msgstr "karcis" #. 🎬 (U+1F3AC), see http://wiki.documentfoundation.org/Emoji +#. EQhDu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4949,6 +5497,7 @@ msgstr "klip film" #. 🎭 (U+1F3AD), see http://wiki.documentfoundation.org/Emoji +#. BwNeG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4958,6 +5507,7 @@ msgstr "teater" #. 🎮 (U+1F3AE), see http://wiki.documentfoundation.org/Emoji +#. yxoXg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4967,6 +5517,7 @@ msgstr "permainan video" #. 🎯 (U+1F3AF), see http://wiki.documentfoundation.org/Emoji +#. 8GZTZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4976,6 +5527,7 @@ msgstr "kena" #. 🎰 (U+1F3B0), see http://wiki.documentfoundation.org/Emoji +#. qnZGG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4985,6 +5537,7 @@ msgstr "mesin slot" #. 🎱 (U+1F3B1), see http://wiki.documentfoundation.org/Emoji +#. b5uif #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -4994,6 +5547,7 @@ msgstr "billiar" #. 🎲 (U+1F3B2), see http://wiki.documentfoundation.org/Emoji +#. zYVZW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5003,6 +5557,7 @@ msgstr "dadu" #. 🎳 (U+1F3B3), see http://wiki.documentfoundation.org/Emoji +#. wDVCN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5012,6 +5567,7 @@ msgstr "bowling" #. 🎴 (U+1F3B4), see http://wiki.documentfoundation.org/Emoji +#. 5m8DQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5021,6 +5577,7 @@ msgstr "kartu" #. 🎵 (U+1F3B5), see http://wiki.documentfoundation.org/Emoji +#. DDCkg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5030,6 +5587,7 @@ msgstr "musik2" #. 🎶 (U+1F3B6), see http://wiki.documentfoundation.org/Emoji +#. PsVfD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5039,6 +5597,7 @@ msgstr "musik" #. 🎷 (U+1F3B7), see http://wiki.documentfoundation.org/Emoji +#. Unw73 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5048,6 +5607,7 @@ msgstr "saxophone" #. 🎸 (U+1F3B8), see http://wiki.documentfoundation.org/Emoji +#. sB5jL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5057,6 +5617,7 @@ msgstr "gitar" #. 🎹 (U+1F3B9), see http://wiki.documentfoundation.org/Emoji +#. wGKYB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5066,6 +5627,7 @@ msgstr "piano" #. 🎺 (U+1F3BA), see http://wiki.documentfoundation.org/Emoji +#. tWZBJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5075,6 +5637,7 @@ msgstr "terompet" #. 🎻 (U+1F3BB), see http://wiki.documentfoundation.org/Emoji +#. ae8uM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5084,6 +5647,7 @@ msgstr "biola" #. 🎼 (U+1F3BC), see http://wiki.documentfoundation.org/Emoji +#. QCnPx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5093,6 +5657,7 @@ msgstr "notasi" #. 🎽 (U+1F3BD), see http://wiki.documentfoundation.org/Emoji +#. 8zBQp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5102,6 +5667,7 @@ msgstr "kemeja2" #. 🎾 (U+1F3BE), see http://wiki.documentfoundation.org/Emoji +#. WfH8R #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5111,6 +5677,7 @@ msgstr "tennis" #. 🎿 (U+1F3BF), see http://wiki.documentfoundation.org/Emoji +#. FrDyH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5120,6 +5687,7 @@ msgstr "ski" #. 🏀 (U+1F3C0), see http://wiki.documentfoundation.org/Emoji +#. ih5rC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5129,6 +5697,7 @@ msgstr "bola basket" #. 🏁 (U+1F3C1), see http://wiki.documentfoundation.org/Emoji +#. E4zAL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5138,6 +5707,7 @@ msgstr "balap" #. 🏂 (U+1F3C2), see http://wiki.documentfoundation.org/Emoji +#. b4bAo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5147,6 +5717,7 @@ msgstr "peseluncur es" #. 🏃 (U+1F3C3), see http://wiki.documentfoundation.org/Emoji +#. z7CKn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5156,6 +5727,7 @@ msgstr "pelari" #. 🏄 (U+1F3C4), see http://wiki.documentfoundation.org/Emoji +#. 2pLHf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5165,6 +5737,7 @@ msgstr "peselancar" #. 🏆 (U+1F3C6), see http://wiki.documentfoundation.org/Emoji +#. Hgj9C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5174,6 +5747,7 @@ msgstr "piala" #. 🏇 (U+1F3C7), see http://wiki.documentfoundation.org/Emoji +#. qjAKh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5183,6 +5757,7 @@ msgstr "kuda3" #. 🏈 (U+1F3C8), see http://wiki.documentfoundation.org/Emoji +#. FRTc8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5192,6 +5767,7 @@ msgstr "sepak bola" #. 🏉 (U+1F3C9), see http://wiki.documentfoundation.org/Emoji +#. eLmcj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5201,6 +5777,7 @@ msgstr "rugby" #. 🏊 (U+1F3CA), see http://wiki.documentfoundation.org/Emoji +#. 6acEV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5210,6 +5787,7 @@ msgstr "perenang" #. 🏠 (U+1F3E0), see http://wiki.documentfoundation.org/Emoji +#. RfTAe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5219,6 +5797,7 @@ msgstr "rumah" #. 🏡 (U+1F3E1), see http://wiki.documentfoundation.org/Emoji +#. GB6nn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5228,6 +5807,7 @@ msgstr "rumah2" #. 🏢 (U+1F3E2), see http://wiki.documentfoundation.org/Emoji +#. dRsEi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5237,6 +5817,7 @@ msgstr "kantor" #. 🏣 (U+1F3E3), see http://wiki.documentfoundation.org/Emoji +#. Gf8La #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5246,6 +5827,7 @@ msgstr "kantor pos2" #. 🏤 (U+1F3E4), see http://wiki.documentfoundation.org/Emoji +#. 9qhN4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5255,6 +5837,7 @@ msgstr "kantor pos" #. 🏥 (U+1F3E5), see http://wiki.documentfoundation.org/Emoji +#. ttEpB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5264,6 +5847,7 @@ msgstr "rumah sakit" #. 🏦 (U+1F3E6), see http://wiki.documentfoundation.org/Emoji +#. 4TaNF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5273,6 +5857,7 @@ msgstr "bank" #. 🏧 (U+1F3E7), see http://wiki.documentfoundation.org/Emoji +#. EkGmC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5282,6 +5867,7 @@ msgstr "atm" #. 🏨 (U+1F3E8), see http://wiki.documentfoundation.org/Emoji +#. jXyTu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5291,6 +5877,7 @@ msgstr "hotel" #. 🏩 (U+1F3E9), see http://wiki.documentfoundation.org/Emoji +#. BoiNG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5300,6 +5887,7 @@ msgstr "hotel2" #. 🏪 (U+1F3EA), see http://wiki.documentfoundation.org/Emoji +#. AcmZT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5309,6 +5897,7 @@ msgstr "toko" #. 🏫 (U+1F3EB), see http://wiki.documentfoundation.org/Emoji +#. VBk6S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5318,6 +5907,7 @@ msgstr "sekolah" #. 🏬 (U+1F3EC), see http://wiki.documentfoundation.org/Emoji +#. 7DA7Z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5327,6 +5917,7 @@ msgstr "toko2" #. 🏭 (U+1F3ED), see http://wiki.documentfoundation.org/Emoji +#. 5FZmf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5336,6 +5927,7 @@ msgstr "pabrik" #. 🏮 (U+1F3EE), see http://wiki.documentfoundation.org/Emoji +#. E7g2q #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5345,6 +5937,7 @@ msgstr "lentera" #. 🏯 (U+1F3EF), see http://wiki.documentfoundation.org/Emoji +#. ZwF6E #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5354,6 +5947,7 @@ msgstr "kastil2" #. 🏰 (U+1F3F0), see http://wiki.documentfoundation.org/Emoji +#. AVnym #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5363,6 +5957,7 @@ msgstr "kastil" #. 🐀 (U+1F400), see http://wiki.documentfoundation.org/Emoji +#. iQjEZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5372,6 +5967,7 @@ msgstr "tikus" #. 🐁 (U+1F401), see http://wiki.documentfoundation.org/Emoji +#. DeFnV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5381,6 +5977,7 @@ msgstr "tikus" #. 🐂 (U+1F402), see http://wiki.documentfoundation.org/Emoji +#. XiFTi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5390,6 +5987,7 @@ msgstr "lembu" #. 🐃 (U+1F403), see http://wiki.documentfoundation.org/Emoji +#. zNaJS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5399,6 +5997,7 @@ msgstr "kerbau air" #. 🐄 (U+1F404), see http://wiki.documentfoundation.org/Emoji +#. V3p7W #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5408,6 +6007,7 @@ msgstr "sapi" #. 🐅 (U+1F405), see http://wiki.documentfoundation.org/Emoji +#. ihDfF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5417,6 +6017,7 @@ msgstr "macan" #. 🐆 (U+1F406), see http://wiki.documentfoundation.org/Emoji +#. RbGoe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5426,6 +6027,7 @@ msgstr "leopard" #. 🐇 (U+1F407), see http://wiki.documentfoundation.org/Emoji +#. CMGYf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5435,6 +6037,7 @@ msgstr "kelinci" #. 🐈 (U+1F408), see http://wiki.documentfoundation.org/Emoji +#. 9YBim #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5444,6 +6047,7 @@ msgstr "kucing" #. 🐉 (U+1F409), see http://wiki.documentfoundation.org/Emoji +#. dio6o #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5453,6 +6057,7 @@ msgstr "naga" #. 🐊 (U+1F40A), see http://wiki.documentfoundation.org/Emoji +#. uTR4G #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5462,6 +6067,7 @@ msgstr "buaya" #. 🐋 (U+1F40B), see http://wiki.documentfoundation.org/Emoji +#. h77co #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5471,6 +6077,7 @@ msgstr "paus2" #. 🐌 (U+1F40C), see http://wiki.documentfoundation.org/Emoji +#. hadNm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5480,6 +6087,7 @@ msgstr "siput" #. 🐍 (U+1F40D), see http://wiki.documentfoundation.org/Emoji +#. DKLJQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5489,6 +6097,7 @@ msgstr "ular" #. 🐎 (U+1F40E), see http://wiki.documentfoundation.org/Emoji +#. i6Cn2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5498,6 +6107,7 @@ msgstr "kuda" #. 🐏 (U+1F40F), see http://wiki.documentfoundation.org/Emoji +#. xEnKp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5507,6 +6117,7 @@ msgstr "kambing jantan" #. 🐐 (U+1F410), see http://wiki.documentfoundation.org/Emoji +#. CVSAr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5516,6 +6127,7 @@ msgstr "kambing" #. 🐑 (U+1F411), see http://wiki.documentfoundation.org/Emoji +#. ZDwSn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5525,6 +6137,7 @@ msgstr "domba" #. 🐒 (U+1F412), see http://wiki.documentfoundation.org/Emoji +#. YvEf5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5534,6 +6147,7 @@ msgstr "kera" #. 🐓 (U+1F413), see http://wiki.documentfoundation.org/Emoji +#. ycN9J #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5543,6 +6157,7 @@ msgstr "jago" #. 🐔 (U+1F414), see http://wiki.documentfoundation.org/Emoji +#. Ag9Mg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5552,6 +6167,7 @@ msgstr "ayam" #. 🐕 (U+1F415), see http://wiki.documentfoundation.org/Emoji +#. jmBsh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5561,6 +6177,7 @@ msgstr "anjing" #. 🐖 (U+1F416), see http://wiki.documentfoundation.org/Emoji +#. q6YWK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5570,6 +6187,7 @@ msgstr "babi" #. 🐗 (U+1F417), see http://wiki.documentfoundation.org/Emoji +#. xtnBt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5579,6 +6197,7 @@ msgstr "babi hutan" #. 🐘 (U+1F418), see http://wiki.documentfoundation.org/Emoji +#. yxkbk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5588,6 +6207,7 @@ msgstr "gajah" #. 🐙 (U+1F419), see http://wiki.documentfoundation.org/Emoji +#. vpPJb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5597,6 +6217,7 @@ msgstr "cumi-cumi" #. 🐚 (U+1F41A), see http://wiki.documentfoundation.org/Emoji +#. SXEMR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5606,6 +6227,7 @@ msgstr "cangkang" #. 🐛 (U+1F41B), see http://wiki.documentfoundation.org/Emoji +#. JVh4w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5615,6 +6237,7 @@ msgstr "kutu" #. 🐜 (U+1F41C), see http://wiki.documentfoundation.org/Emoji +#. me5X6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5624,6 +6247,7 @@ msgstr "semut" #. 🐝 (U+1F41D), see http://wiki.documentfoundation.org/Emoji +#. aCWCQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5633,6 +6257,7 @@ msgstr "lebah" #. 🐞 (U+1F41E), see http://wiki.documentfoundation.org/Emoji +#. JnJG6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5642,6 +6267,7 @@ msgstr "kepik" #. 🐟 (U+1F41F), see http://wiki.documentfoundation.org/Emoji +#. CATwn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5651,6 +6277,7 @@ msgstr "ikan" #. 🐠 (U+1F420), see http://wiki.documentfoundation.org/Emoji +#. qK3hz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5660,6 +6287,7 @@ msgstr "ikan2" #. 🐡 (U+1F421), see http://wiki.documentfoundation.org/Emoji +#. mkAVd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5669,6 +6297,7 @@ msgstr "ikan3" #. 🐢 (U+1F422), see http://wiki.documentfoundation.org/Emoji +#. vHvHV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5678,6 +6307,7 @@ msgstr "kura-kura" #. 🐣 (U+1F423), see http://wiki.documentfoundation.org/Emoji +#. Fi7Lg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5687,6 +6317,7 @@ msgstr "anak ayam" #. 🐤 (U+1F424), see http://wiki.documentfoundation.org/Emoji +#. zAaYQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5696,6 +6327,7 @@ msgstr "anak ayam 2" #. 🐥 (U+1F425), see http://wiki.documentfoundation.org/Emoji +#. GyVtY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5705,6 +6337,7 @@ msgstr "anak ayam 3" #. 🐦 (U+1F426), see http://wiki.documentfoundation.org/Emoji +#. jwips #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5714,6 +6347,7 @@ msgstr "burung" #. 🐧 (U+1F427), see http://wiki.documentfoundation.org/Emoji +#. KDxrF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5723,6 +6357,7 @@ msgstr "penguin" #. 🐨 (U+1F428), see http://wiki.documentfoundation.org/Emoji +#. i3ehW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5732,6 +6367,7 @@ msgstr "koala" #. 🐩 (U+1F429), see http://wiki.documentfoundation.org/Emoji +#. yBMDt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5741,6 +6377,7 @@ msgstr "pudel" #. 🐪 (U+1F42A), see http://wiki.documentfoundation.org/Emoji +#. A3ng3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5750,6 +6387,7 @@ msgstr "onta" #. 🐫 (U+1F42B), see http://wiki.documentfoundation.org/Emoji +#. NDefQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5759,6 +6397,7 @@ msgstr "onta2" #. 🐬 (U+1F42C), see http://wiki.documentfoundation.org/Emoji +#. extjn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5768,6 +6407,7 @@ msgstr "lumba-lumba" #. 🐭 (U+1F42D), see http://wiki.documentfoundation.org/Emoji +#. FDRH4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5777,6 +6417,7 @@ msgstr "tikus2" #. 🐮 (U+1F42E), see http://wiki.documentfoundation.org/Emoji +#. yDmAf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5786,6 +6427,7 @@ msgstr "sapi2" #. 🐯 (U+1F42F), see http://wiki.documentfoundation.org/Emoji +#. V7ZVF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5795,6 +6437,7 @@ msgstr "macan2" #. 🐰 (U+1F430), see http://wiki.documentfoundation.org/Emoji +#. 8XA6y #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5804,6 +6447,7 @@ msgstr "kelinci2" #. 🐱 (U+1F431), see http://wiki.documentfoundation.org/Emoji +#. umi97 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5813,6 +6457,7 @@ msgstr "kucing2" #. 🐲 (U+1F432), see http://wiki.documentfoundation.org/Emoji +#. A8jhC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5822,6 +6467,7 @@ msgstr "naga2" #. 🐳 (U+1F433), see http://wiki.documentfoundation.org/Emoji +#. EC4yH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5831,6 +6477,7 @@ msgstr "paus" #. 🐴 (U+1F434), see http://wiki.documentfoundation.org/Emoji +#. uvs4N #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5840,6 +6487,7 @@ msgstr "kuda2" #. 🐵 (U+1F435), see http://wiki.documentfoundation.org/Emoji +#. JACu8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5849,6 +6497,7 @@ msgstr "kera2" #. 🐶 (U+1F436), see http://wiki.documentfoundation.org/Emoji +#. 2hAqZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5858,6 +6507,7 @@ msgstr "anjing2" #. 🐷 (U+1F437), see http://wiki.documentfoundation.org/Emoji +#. pHDR9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5867,6 +6517,7 @@ msgstr "babi2" #. 🐸 (U+1F438), see http://wiki.documentfoundation.org/Emoji +#. ByQoB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5876,6 +6527,7 @@ msgstr "katak" #. 🐹 (U+1F439), see http://wiki.documentfoundation.org/Emoji +#. 7KVBf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5885,6 +6537,7 @@ msgstr "hamster" #. 🐺 (U+1F43A), see http://wiki.documentfoundation.org/Emoji +#. BWcDY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5894,6 +6547,7 @@ msgstr "serigala" #. 🐻 (U+1F43B), see http://wiki.documentfoundation.org/Emoji +#. p2mi3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5903,6 +6557,7 @@ msgstr "beruang" #. 🐼 (U+1F43C), see http://wiki.documentfoundation.org/Emoji +#. bm9VZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5912,6 +6567,7 @@ msgstr "panda" #. 🐽 (U+1F43D), see http://wiki.documentfoundation.org/Emoji +#. U4cLM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5921,6 +6577,7 @@ msgstr "hidung babi" #. 🐾 (U+1F43E), see http://wiki.documentfoundation.org/Emoji +#. cZa9W #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5930,6 +6587,7 @@ msgstr "kaki" #. 👀 (U+1F440), see http://wiki.documentfoundation.org/Emoji +#. FbAhk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5939,6 +6597,7 @@ msgstr "mata" #. 👂 (U+1F442), see http://wiki.documentfoundation.org/Emoji +#. jpYRG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5948,6 +6607,7 @@ msgstr "kuping" #. 👃 (U+1F443), see http://wiki.documentfoundation.org/Emoji +#. E9d73 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5957,6 +6617,7 @@ msgstr "hidung" #. 👄 (U+1F444), see http://wiki.documentfoundation.org/Emoji +#. HhZiA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5966,6 +6627,7 @@ msgstr "mulut" #. 👅 (U+1F445), see http://wiki.documentfoundation.org/Emoji +#. xiZeo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5975,6 +6637,7 @@ msgstr "lidah" #. 👆 (U+1F446), see http://wiki.documentfoundation.org/Emoji +#. Do9RZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5984,6 +6647,7 @@ msgstr "naik2" #. 👇 (U+1F447), see http://wiki.documentfoundation.org/Emoji +#. 38UHH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -5993,6 +6657,7 @@ msgstr "turun2" #. 👈 (U+1F448), see http://wiki.documentfoundation.org/Emoji +#. gRtnZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6002,6 +6667,7 @@ msgstr "kiri2" #. 👉 (U+1F449), see http://wiki.documentfoundation.org/Emoji +#. VjyBV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6011,6 +6677,7 @@ msgstr "kanan2" #. 👊 (U+1F44A), see http://wiki.documentfoundation.org/Emoji +#. ipCGp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6020,6 +6687,7 @@ msgstr "kepalan2" #. 👋 (U+1F44B), see http://wiki.documentfoundation.org/Emoji +#. Gh9mT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6029,6 +6697,7 @@ msgstr "gelombang" #. 👌 (U+1F44C), see http://wiki.documentfoundation.org/Emoji +#. AHXXZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6038,6 +6707,7 @@ msgstr "ok" #. 👍 (U+1F44D), see http://wiki.documentfoundation.org/Emoji +#. QP5Gt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6047,6 +6717,7 @@ msgstr "ya" #. 👎 (U+1F44E), see http://wiki.documentfoundation.org/Emoji +#. mGjpD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6056,6 +6727,7 @@ msgstr "tidak" #. 👏 (U+1F44F), see http://wiki.documentfoundation.org/Emoji +#. UzrjV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6065,6 +6737,7 @@ msgstr "tepuk" #. 👐 (U+1F450), see http://wiki.documentfoundation.org/Emoji +#. xJ53h #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6074,6 +6747,7 @@ msgstr "tangan terbuka" #. 👑 (U+1F451), see http://wiki.documentfoundation.org/Emoji +#. BtSqh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6083,6 +6757,7 @@ msgstr "mahkota" #. 👒 (U+1F452), see http://wiki.documentfoundation.org/Emoji +#. BzRy3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6092,6 +6767,7 @@ msgstr "topi" #. 👓 (U+1F453), see http://wiki.documentfoundation.org/Emoji +#. yGAJR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6101,6 +6777,7 @@ msgstr "kacamata" #. 👔 (U+1F454), see http://wiki.documentfoundation.org/Emoji +#. 9WoyD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6110,6 +6787,7 @@ msgstr "dasi" #. 👕 (U+1F455), see http://wiki.documentfoundation.org/Emoji +#. FYDTc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6119,6 +6797,7 @@ msgstr "kemeja" #. 👖 (U+1F456), see http://wiki.documentfoundation.org/Emoji +#. wDCDB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6128,6 +6807,7 @@ msgstr "jins" #. 👗 (U+1F457), see http://wiki.documentfoundation.org/Emoji +#. DKuYL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6137,6 +6817,7 @@ msgstr "gaun" #. 👘 (U+1F458), see http://wiki.documentfoundation.org/Emoji +#. 3gfhC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6146,6 +6827,7 @@ msgstr "kimono" #. 👙 (U+1F459), see http://wiki.documentfoundation.org/Emoji +#. pkz5G #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6155,6 +6837,7 @@ msgstr "bikini" #. 👚 (U+1F45A), see http://wiki.documentfoundation.org/Emoji +#. kPMZm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6164,6 +6847,7 @@ msgstr "baju" #. 👛 (U+1F45B), see http://wiki.documentfoundation.org/Emoji +#. KUTeE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6173,6 +6857,7 @@ msgstr "dompet" #. 👜 (U+1F45C), see http://wiki.documentfoundation.org/Emoji +#. 7jBBJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6182,6 +6867,7 @@ msgstr "tas tangan" #. 👝 (U+1F45D), see http://wiki.documentfoundation.org/Emoji +#. j3i9d #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6191,6 +6877,7 @@ msgstr "kantong" #. 👞 (U+1F45E), see http://wiki.documentfoundation.org/Emoji +#. TJEkr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6200,6 +6887,7 @@ msgstr "sepatu" #. 👟 (U+1F45F), see http://wiki.documentfoundation.org/Emoji +#. E6RYu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6209,6 +6897,7 @@ msgstr "sepatu2" #. 👠 (U+1F460), see http://wiki.documentfoundation.org/Emoji +#. wzPLw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6218,6 +6907,7 @@ msgstr "sepatu3" #. 👡 (U+1F461), see http://wiki.documentfoundation.org/Emoji +#. FpWvw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6227,6 +6917,7 @@ msgstr "sandal" #. 👢 (U+1F462), see http://wiki.documentfoundation.org/Emoji +#. AyaZm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6236,6 +6927,7 @@ msgstr "sepatu bot" #. 👣 (U+1F463), see http://wiki.documentfoundation.org/Emoji +#. GgfEm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6245,6 +6937,7 @@ msgstr "jejak kaki" #. 👤 (U+1F464), see http://wiki.documentfoundation.org/Emoji +#. hs8C7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6254,6 +6947,7 @@ msgstr "siluet" #. 👥 (U+1F465), see http://wiki.documentfoundation.org/Emoji +#. UETgU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6263,6 +6957,7 @@ msgstr "siluet2" #. 👦 (U+1F466), see http://wiki.documentfoundation.org/Emoji +#. inPSE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6272,6 +6967,7 @@ msgstr "cowok" #. 👧 (U+1F467), see http://wiki.documentfoundation.org/Emoji +#. WvMFo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6281,6 +6977,7 @@ msgstr "cewek" #. 👨 (U+1F468), see http://wiki.documentfoundation.org/Emoji +#. 8EQzk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6290,6 +6987,7 @@ msgstr "pria" #. 👩 (U+1F469), see http://wiki.documentfoundation.org/Emoji +#. EEPWL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6299,6 +6997,7 @@ msgstr "wanita" #. 👪 (U+1F46A), see http://wiki.documentfoundation.org/Emoji +#. SXd9z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6308,6 +7007,7 @@ msgstr "keluarga" #. 👫 (U+1F46B), see http://wiki.documentfoundation.org/Emoji +#. 5zFTn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6317,6 +7017,7 @@ msgstr "pasangan" #. 👬 (U+1F46C), see http://wiki.documentfoundation.org/Emoji +#. npiBG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6326,6 +7027,7 @@ msgstr "pasangan2" #. 👭 (U+1F46D), see http://wiki.documentfoundation.org/Emoji +#. cFL88 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6335,6 +7037,7 @@ msgstr "pasangan3" #. 👮 (U+1F46E), see http://wiki.documentfoundation.org/Emoji +#. z2SZf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6344,6 +7047,7 @@ msgstr "polisi" #. 👯 (U+1F46F), see http://wiki.documentfoundation.org/Emoji +#. GshDr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6353,6 +7057,7 @@ msgstr "telinga kelinci" #. 👰 (U+1F470), see http://wiki.documentfoundation.org/Emoji +#. jCsRv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6362,6 +7067,7 @@ msgstr "pengantin" #. 👱 (U+1F471), see http://wiki.documentfoundation.org/Emoji +#. Ejnwy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6371,6 +7077,7 @@ msgstr "rambut pirang" #. 👲 (U+1F472), see http://wiki.documentfoundation.org/Emoji +#. CEjP9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6380,6 +7087,7 @@ msgstr "topi2" #. 👳 (U+1F473), see http://wiki.documentfoundation.org/Emoji +#. PT4BP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6389,6 +7097,7 @@ msgstr "turban" #. 👴 (U+1F474), see http://wiki.documentfoundation.org/Emoji +#. 5JKdn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6398,6 +7107,7 @@ msgstr "pria tua" #. 👵 (U+1F475), see http://wiki.documentfoundation.org/Emoji +#. cFK28 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6407,6 +7117,7 @@ msgstr "wanita tua" #. 👶 (U+1F476), see http://wiki.documentfoundation.org/Emoji +#. yCHsd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6416,6 +7127,7 @@ msgstr "bayi" #. 👷 (U+1F477), see http://wiki.documentfoundation.org/Emoji +#. 3GDrA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6425,6 +7137,7 @@ msgstr "pekerja" #. 👸 (U+1F478), see http://wiki.documentfoundation.org/Emoji +#. DVotZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6434,6 +7147,7 @@ msgstr "putri raja" #. 👹 (U+1F479), see http://wiki.documentfoundation.org/Emoji +#. uXbDv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6443,6 +7157,7 @@ msgstr "ogre" #. 👺 (U+1F47A), see http://wiki.documentfoundation.org/Emoji +#. 9mnCF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6452,6 +7167,7 @@ msgstr "goblin" #. 👻 (U+1F47B), see http://wiki.documentfoundation.org/Emoji +#. owD8B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6461,6 +7177,7 @@ msgstr "hantu" #. 👼 (U+1F47C), see http://wiki.documentfoundation.org/Emoji +#. JBpcF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6470,6 +7187,7 @@ msgstr "alien" #. 👽 (U+1F47D), see http://wiki.documentfoundation.org/Emoji +#. CtaFh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6479,6 +7197,7 @@ msgstr "alien" #. 👾 (U+1F47E), see http://wiki.documentfoundation.org/Emoji +#. hTENb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6488,6 +7207,7 @@ msgstr "alien2" #. 👿 (U+1F47F), see http://wiki.documentfoundation.org/Emoji +#. gPRSL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6497,6 +7217,7 @@ msgstr "setan" #. 💀 (U+1F480), see http://wiki.documentfoundation.org/Emoji +#. VCGWC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6506,6 +7227,7 @@ msgstr "tengkorak" #. 💁 (U+1F481), see http://wiki.documentfoundation.org/Emoji +#. cE5EN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6515,6 +7237,7 @@ msgstr "informasi2" #. 💂 (U+1F482), see http://wiki.documentfoundation.org/Emoji +#. 8TW65 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6524,6 +7247,7 @@ msgstr "penjaga" #. 💃 (U+1F483), see http://wiki.documentfoundation.org/Emoji +#. AfK4Q #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6533,6 +7257,7 @@ msgstr "penari" #. 💄 (U+1F484), see http://wiki.documentfoundation.org/Emoji +#. cWNXz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6542,6 +7267,7 @@ msgstr "lipstick" #. 💅 (U+1F485), see http://wiki.documentfoundation.org/Emoji +#. UCBCc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6551,6 +7277,7 @@ msgstr "perawatan kuku" #. 💆 (U+1F486), see http://wiki.documentfoundation.org/Emoji +#. G8fqM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6560,6 +7287,7 @@ msgstr "pijit" #. 💇 (U+1F487), see http://wiki.documentfoundation.org/Emoji +#. mej3x #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6569,6 +7297,7 @@ msgstr "potong rambut" #. 💈 (U+1F488), see http://wiki.documentfoundation.org/Emoji +#. Uh3iE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6578,6 +7307,7 @@ msgstr "tukang cukur" #. 💉 (U+1F489), see http://wiki.documentfoundation.org/Emoji +#. r6qXk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6587,6 +7317,7 @@ msgstr "suntikan" #. 💊 (U+1F48A), see http://wiki.documentfoundation.org/Emoji +#. UHfGw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6596,6 +7327,7 @@ msgstr "pil" #. 💋 (U+1F48B), see http://wiki.documentfoundation.org/Emoji +#. mEEda #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6605,6 +7337,7 @@ msgstr "tanda cium" #. 💌 (U+1F48C), see http://wiki.documentfoundation.org/Emoji +#. 26cKP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6614,6 +7347,7 @@ msgstr "surat cinta" #. 💍 (U+1F48D), see http://wiki.documentfoundation.org/Emoji +#. HLAyd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6623,6 +7357,7 @@ msgstr "cincin" #. 💎 (U+1F48E), see http://wiki.documentfoundation.org/Emoji +#. 2B9Gg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6632,6 +7367,7 @@ msgstr "batu mulia" #. 💏 (U+1F48F), see http://wiki.documentfoundation.org/Emoji +#. 5umRf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6641,6 +7377,7 @@ msgstr "cium" #. 💐 (U+1F490), see http://wiki.documentfoundation.org/Emoji +#. uTbGC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6650,6 +7387,7 @@ msgstr "buket" #. 💑 (U+1F491), see http://wiki.documentfoundation.org/Emoji +#. PdyCD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6659,6 +7397,7 @@ msgstr "pasangan4" #. 💒 (U+1F492), see http://wiki.documentfoundation.org/Emoji +#. HN5FN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6668,6 +7407,7 @@ msgstr "pernikahan" #. 💓 (U+1F493), see http://wiki.documentfoundation.org/Emoji +#. nCuz6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6677,6 +7417,7 @@ msgstr "detak jantung" #. 💔 (U+1F494), see http://wiki.documentfoundation.org/Emoji +#. s5RCB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6686,6 +7427,7 @@ msgstr "patah hati" #. 💕 (U+1F495), see http://wiki.documentfoundation.org/Emoji +#. ZKnAA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6695,6 +7437,7 @@ msgstr "dua hati" #. 💖 (U+1F496), see http://wiki.documentfoundation.org/Emoji +#. T6fPR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6704,6 +7447,7 @@ msgstr "hati berkilau" #. 💗 (U+1F497), see http://wiki.documentfoundation.org/Emoji +#. Hnpy2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6713,6 +7457,7 @@ msgstr "debaran jantung" #. 💘 (U+1F498), see http://wiki.documentfoundation.org/Emoji +#. EoDEC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6722,6 +7467,7 @@ msgstr "cinta" #. 💝 (U+1F49D), see http://wiki.documentfoundation.org/Emoji +#. ZvRzq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6731,6 +7477,7 @@ msgstr "hadiah hati" #. 💞 (U+1F49E), see http://wiki.documentfoundation.org/Emoji +#. mNAJQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6740,6 +7487,7 @@ msgstr "hati berputar" #. 💟 (U+1F49F), see http://wiki.documentfoundation.org/Emoji +#. jWmvQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6749,6 +7497,7 @@ msgstr "dekorasi hati" #. 💠 (U+1F4A0), see http://wiki.documentfoundation.org/Emoji +#. UjSJU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6758,6 +7507,7 @@ msgstr "kelucuan" #. 💡 (U+1F4A1), see http://wiki.documentfoundation.org/Emoji +#. FgTp9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6767,6 +7517,7 @@ msgstr "bola lampu" #. 💢 (U+1F4A2), see http://wiki.documentfoundation.org/Emoji +#. 5uyY8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6776,6 +7527,7 @@ msgstr "marah" #. 💣 (U+1F4A3), see http://wiki.documentfoundation.org/Emoji +#. BHnsP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6785,6 +7537,7 @@ msgstr "bom" #. 💤 (U+1F4A4), see http://wiki.documentfoundation.org/Emoji +#. DxdJx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6794,6 +7547,7 @@ msgstr "zzz" #. 💥 (U+1F4A5), see http://wiki.documentfoundation.org/Emoji +#. DSa3b #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6803,6 +7557,7 @@ msgstr "ledakan" #. 💦 (U+1F4A6), see http://wiki.documentfoundation.org/Emoji +#. nFoAX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6812,6 +7567,7 @@ msgstr "tetesan keringat" #. 💧 (U+1F4A7), see http://wiki.documentfoundation.org/Emoji +#. eRxPJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6821,6 +7577,7 @@ msgstr "tetesan" #. 💨 (U+1F4A8), see http://wiki.documentfoundation.org/Emoji +#. HDTEE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6830,6 +7587,7 @@ msgstr "lari" #. 💩 (U+1F4A9), see http://wiki.documentfoundation.org/Emoji +#. FyCtU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6839,6 +7597,7 @@ msgstr "kotoran" #. 💪 (U+1F4AA), see http://wiki.documentfoundation.org/Emoji +#. tkQEc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6848,6 +7607,7 @@ msgstr "otot" #. 💫 (U+1F4AB), see http://wiki.documentfoundation.org/Emoji +#. oV6Re #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6857,6 +7617,7 @@ msgstr "pusing" #. 💬 (U+1F4AC), see http://wiki.documentfoundation.org/Emoji +#. Ja8Zt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6866,6 +7627,7 @@ msgstr "balon dialog" #. 💭 (U+1F4AD), see http://wiki.documentfoundation.org/Emoji +#. Hqstd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6875,6 +7637,7 @@ msgstr "balon merenung" #. 💮 (U+1F4AE), see http://wiki.documentfoundation.org/Emoji +#. TFLQ3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6884,6 +7647,7 @@ msgstr "bunga putih" #. 💯 (U+1F4AF), see http://wiki.documentfoundation.org/Emoji +#. NVEJ6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6893,6 +7657,7 @@ msgstr "100" #. 💰 (U+1F4B0), see http://wiki.documentfoundation.org/Emoji +#. 44CJ2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6902,6 +7667,7 @@ msgstr "uang2" #. 💱 (U+1F4B1), see http://wiki.documentfoundation.org/Emoji +#. WJBFr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6911,6 +7677,7 @@ msgstr "tukar" #. 💲 (U+1F4B2), see http://wiki.documentfoundation.org/Emoji +#. gEQqV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6920,6 +7687,7 @@ msgstr "tanda dollar" #. 💳 (U+1F4B3), see http://wiki.documentfoundation.org/Emoji +#. BvG4w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6929,6 +7697,7 @@ msgstr "kartu kredit" #. 💴 (U+1F4B4), see http://wiki.documentfoundation.org/Emoji +#. XPTnu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6938,6 +7707,7 @@ msgstr "yen2" #. 💵 (U+1F4B5), see http://wiki.documentfoundation.org/Emoji +#. 9tknk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6947,6 +7717,7 @@ msgstr "dolar2" #. 💶 (U+1F4B6), see http://wiki.documentfoundation.org/Emoji +#. m4oKV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6956,6 +7727,7 @@ msgstr "euro2" #. 💷 (U+1F4B7), see http://wiki.documentfoundation.org/Emoji +#. 8n3ij #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6965,6 +7737,7 @@ msgstr "pound2" #. 💸 (U+1F4B8), see http://wiki.documentfoundation.org/Emoji +#. CbXWk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6974,6 +7747,7 @@ msgstr "uang" #. 💹 (U+1F4B9), see http://wiki.documentfoundation.org/Emoji +#. HxDaW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6983,6 +7757,7 @@ msgstr "bagan4" #. 💺 (U+1F4BA), see http://wiki.documentfoundation.org/Emoji +#. uFG2p #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -6992,6 +7767,7 @@ msgstr "kursi" #. 💻 (U+1F4BB), see http://wiki.documentfoundation.org/Emoji +#. A72Gd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7001,6 +7777,7 @@ msgstr "komputer" #. 💼 (U+1F4BC), see http://wiki.documentfoundation.org/Emoji +#. dLWEH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7010,6 +7787,7 @@ msgstr "tas kantor" #. 💽 (U+1F4BD), see http://wiki.documentfoundation.org/Emoji +#. 39dHP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7019,6 +7797,7 @@ msgstr "cakram optik mini" #. 💾 (U+1F4BE), see http://wiki.documentfoundation.org/Emoji +#. Kc5xJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7028,6 +7807,7 @@ msgstr "floppy" #. 💿 (U+1F4BF), see http://wiki.documentfoundation.org/Emoji +#. 6qMwM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7037,6 +7817,7 @@ msgstr "cd" #. 📀 (U+1F4C0), see http://wiki.documentfoundation.org/Emoji +#. yEgGX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7046,6 +7827,7 @@ msgstr "dvd" #. 📁 (U+1F4C1), see http://wiki.documentfoundation.org/Emoji +#. kDfvB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7055,6 +7837,7 @@ msgstr "folder" #. 📂 (U+1F4C2), see http://wiki.documentfoundation.org/Emoji +#. wAyrP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7064,6 +7847,7 @@ msgstr "folder2" #. 📃 (U+1F4C3), see http://wiki.documentfoundation.org/Emoji +#. XwFzf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7073,6 +7857,7 @@ msgstr "halaman3" #. 📄 (U+1F4C4), see http://wiki.documentfoundation.org/Emoji +#. nHJbH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7082,6 +7867,7 @@ msgstr "halaman" #. 📅 (U+1F4C5), see http://wiki.documentfoundation.org/Emoji +#. 3357F #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7091,6 +7877,7 @@ msgstr "kalender" #. 📆 (U+1F4C6), see http://wiki.documentfoundation.org/Emoji +#. 2T65Q #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7100,6 +7887,7 @@ msgstr "kalender2" #. 📇 (U+1F4C7), see http://wiki.documentfoundation.org/Emoji +#. DNhZt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7109,6 +7897,7 @@ msgstr "indeks kartu" #. 📈 (U+1F4C8), see http://wiki.documentfoundation.org/Emoji +#. fDBef #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7118,6 +7907,7 @@ msgstr "bagan" #. 📉 (U+1F4C9), see http://wiki.documentfoundation.org/Emoji +#. n2X5h #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7127,6 +7917,7 @@ msgstr "bagan2" #. 📊 (U+1F4CA), see http://wiki.documentfoundation.org/Emoji +#. A2YxF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7136,6 +7927,7 @@ msgstr "bagan3" #. 📋 (U+1F4CB), see http://wiki.documentfoundation.org/Emoji +#. rd9qJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7145,6 +7937,7 @@ msgstr "papan klip" #. 📌 (U+1F4CC), see http://wiki.documentfoundation.org/Emoji +#. rvk5G #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7154,6 +7947,7 @@ msgstr "paku payung" #. 📍 (U+1F4CD), see http://wiki.documentfoundation.org/Emoji +#. qvHXp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7163,6 +7957,7 @@ msgstr "jarum pentul" #. 📎 (U+1F4CE), see http://wiki.documentfoundation.org/Emoji +#. QnxVB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7172,6 +7967,7 @@ msgstr "klip kertas" #. 📏 (U+1F4CF), see http://wiki.documentfoundation.org/Emoji +#. 7zWG5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7181,6 +7977,7 @@ msgstr "penggaris" #. 📐 (U+1F4D0), see http://wiki.documentfoundation.org/Emoji +#. AFfRY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7190,15 +7987,17 @@ msgstr "penggaris2" #. 📑 (U+1F4D1), see http://wiki.documentfoundation.org/Emoji +#. 8kKn2 #: emoji.ulf msgctxt "" "emoji.ulf\n" "BOOKMARK_TABS\n" "LngText.text" msgid "bookmark" -msgstr "Penanda Buku" +msgstr "markah" #. 📒 (U+1F4D2), see http://wiki.documentfoundation.org/Emoji +#. 2JByd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7208,6 +8007,7 @@ msgstr "buku besar" #. 📓 (U+1F4D3), see http://wiki.documentfoundation.org/Emoji +#. CPCYE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7217,6 +8017,7 @@ msgstr "buku catatan" #. 📔 (U+1F4D4), see http://wiki.documentfoundation.org/Emoji +#. ktHAV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7226,6 +8027,7 @@ msgstr "buku catatan2" #. 📕 (U+1F4D5), see http://wiki.documentfoundation.org/Emoji +#. DYit7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7235,6 +8037,7 @@ msgstr "buku2" #. 📖 (U+1F4D6), see http://wiki.documentfoundation.org/Emoji +#. LjMCp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7244,6 +8047,7 @@ msgstr "buku3" #. 📚 (U+1F4DA), see http://wiki.documentfoundation.org/Emoji +#. wGEYU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7253,6 +8057,7 @@ msgstr "buku-buku" #. 📛 (U+1F4DB), see http://wiki.documentfoundation.org/Emoji +#. AHKqs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7262,6 +8067,7 @@ msgstr "nama" #. 📜 (U+1F4DC), see http://wiki.documentfoundation.org/Emoji +#. 7dFZz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7271,6 +8077,7 @@ msgstr "gulungan kertas" #. 📝 (U+1F4DD), see http://wiki.documentfoundation.org/Emoji +#. WACDF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7280,6 +8087,7 @@ msgstr "memo" #. 📞 (U+1F4DE), see http://wiki.documentfoundation.org/Emoji +#. w7Sqx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7289,6 +8097,7 @@ msgstr "radio" #. 📟 (U+1F4DF), see http://wiki.documentfoundation.org/Emoji +#. RFzY6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7298,6 +8107,7 @@ msgstr "penyeranta" #. 📠 (U+1F4E0), see http://wiki.documentfoundation.org/Emoji +#. G6o5r #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7307,6 +8117,7 @@ msgstr "fax" #. 📡 (U+1F4E1), see http://wiki.documentfoundation.org/Emoji +#. jUz5C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7316,6 +8127,7 @@ msgstr "antena" #. 📢 (U+1F4E2), see http://wiki.documentfoundation.org/Emoji +#. P5xbh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7325,6 +8137,7 @@ msgstr "loudspeaker" #. 📣 (U+1F4E3), see http://wiki.documentfoundation.org/Emoji +#. eJHQG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7334,6 +8147,7 @@ msgstr "mega" #. 📤 (U+1F4E4), see http://wiki.documentfoundation.org/Emoji +#. YcCHy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7343,6 +8157,7 @@ msgstr "baki" #. 📥 (U+1F4E5), see http://wiki.documentfoundation.org/Emoji +#. f8tnA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7352,6 +8167,7 @@ msgstr "baki2" #. 📦 (U+1F4E6), see http://wiki.documentfoundation.org/Emoji +#. 8uDGB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7361,6 +8177,7 @@ msgstr "paket" #. 📧 (U+1F4E7), see http://wiki.documentfoundation.org/Emoji +#. tLYTu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7370,6 +8187,7 @@ msgstr "surel" #. 📨 (U+1F4E8), see http://wiki.documentfoundation.org/Emoji +#. qKRip #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7379,6 +8197,7 @@ msgstr "amplop7" #. 📩 (U+1F4E9), see http://wiki.documentfoundation.org/Emoji +#. HGe9s #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7388,6 +8207,7 @@ msgstr "amplop8" #. 📪 (U+1F4EA), see http://wiki.documentfoundation.org/Emoji +#. MiuAq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7397,6 +8217,7 @@ msgstr "kotak surat" #. 📫 (U+1F4EB), see http://wiki.documentfoundation.org/Emoji +#. zyZUF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7406,6 +8227,7 @@ msgstr "kotak surat 2" #. 📬 (U+1F4EC), see http://wiki.documentfoundation.org/Emoji +#. Sf5YJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7415,6 +8237,7 @@ msgstr "kotak surat 3" #. 📭 (U+1F4ED), see http://wiki.documentfoundation.org/Emoji +#. fCEgu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7424,6 +8247,7 @@ msgstr "kotak surat 4" #. 📮 (U+1F4EE), see http://wiki.documentfoundation.org/Emoji +#. TManz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7433,6 +8257,7 @@ msgstr "kotakpos" #. 📯 (U+1F4EF), see http://wiki.documentfoundation.org/Emoji +#. u2ynR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7442,6 +8267,7 @@ msgstr "tanduk" #. 📰 (U+1F4F0), see http://wiki.documentfoundation.org/Emoji +#. gZmY9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7451,6 +8277,7 @@ msgstr "koran" #. 📱 (U+1F4F1), see http://wiki.documentfoundation.org/Emoji +#. C22hA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7460,6 +8287,7 @@ msgstr "ponsel" #. 📲 (U+1F4F2), see http://wiki.documentfoundation.org/Emoji +#. wLbiN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7469,6 +8297,7 @@ msgstr "panggilan" #. 📳 (U+1F4F3), see http://wiki.documentfoundation.org/Emoji +#. d3uys #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7478,6 +8307,7 @@ msgstr "mode vibrasi" #. 📴 (U+1F4F4), see http://wiki.documentfoundation.org/Emoji +#. SB2ZA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7487,6 +8317,7 @@ msgstr "telepon genggam mati" #. 📵 (U+1F4F5), see http://wiki.documentfoundation.org/Emoji +#. s4cxU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7496,6 +8327,7 @@ msgstr "tanpa seluler" #. 📶 (U+1F4F6), see http://wiki.documentfoundation.org/Emoji +#. CjdGu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7505,6 +8337,7 @@ msgstr "kuat sinyal" #. 📷 (U+1F4F7), see http://wiki.documentfoundation.org/Emoji +#. eEaUM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7514,6 +8347,7 @@ msgstr "kamera" #. 📹 (U+1F4F9), see http://wiki.documentfoundation.org/Emoji +#. iUoYo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7523,6 +8357,7 @@ msgstr "kamera video" #. 📺 (U+1F4FA), see http://wiki.documentfoundation.org/Emoji +#. hDmEX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7532,6 +8367,7 @@ msgstr "tv" #. 📻 (U+1F4FB), see http://wiki.documentfoundation.org/Emoji +#. WLYDg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7541,6 +8377,7 @@ msgstr "radio" #. 📼 (U+1F4FC), see http://wiki.documentfoundation.org/Emoji +#. SRaWt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7550,6 +8387,7 @@ msgstr "vhs" #. 🔅 (U+1F505), see http://wiki.documentfoundation.org/Emoji +#. j6gBG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7559,6 +8397,7 @@ msgstr "kecerahan" #. 🔆 (U+1F506), see http://wiki.documentfoundation.org/Emoji +#. Kk8CH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7568,6 +8407,7 @@ msgstr "kecerahan2" #. 🔇 (U+1F507), see http://wiki.documentfoundation.org/Emoji +#. gCXWY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7577,6 +8417,7 @@ msgstr "bisu" #. 🔈 (U+1F508), see http://wiki.documentfoundation.org/Emoji +#. zBDGG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7586,6 +8427,7 @@ msgstr "speaker" #. 🔉 (U+1F509), see http://wiki.documentfoundation.org/Emoji +#. q6Ccp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7595,6 +8437,7 @@ msgstr "suara" #. 🔊 (U+1F50A), see http://wiki.documentfoundation.org/Emoji +#. APeWX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7604,6 +8447,7 @@ msgstr "suara keras" #. 🔋 (U+1F50B), see http://wiki.documentfoundation.org/Emoji +#. ACRRR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7613,6 +8457,7 @@ msgstr "baterai" #. 🔌 (U+1F50C), see http://wiki.documentfoundation.org/Emoji +#. BG2mN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7622,6 +8467,7 @@ msgstr "colokan" #. 🔍 (U+1F50D), see http://wiki.documentfoundation.org/Emoji +#. jY8rv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7631,6 +8477,7 @@ msgstr "kaca pembesar" #. 🔎 (U+1F50E), see http://wiki.documentfoundation.org/Emoji +#. ruAUv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7640,6 +8487,7 @@ msgstr "kaca pembesar2" #. 🔏 (U+1F50F), see http://wiki.documentfoundation.org/Emoji +#. 8ZUNE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7649,6 +8497,7 @@ msgstr "kunci2" #. 🔐 (U+1F510), see http://wiki.documentfoundation.org/Emoji +#. 4g77k #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7658,6 +8507,7 @@ msgstr "kunci3" #. 🔑 (U+1F511), see http://wiki.documentfoundation.org/Emoji +#. vkQ8o #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7667,6 +8517,7 @@ msgstr "kunci" #. 🔒 (U+1F512), see http://wiki.documentfoundation.org/Emoji +#. N7rGA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7676,6 +8527,7 @@ msgstr "mengunci" #. 🔓 (U+1F513), see http://wiki.documentfoundation.org/Emoji +#. vRAcY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7685,6 +8537,7 @@ msgstr "membuka kunci" #. 🔔 (U+1F514), see http://wiki.documentfoundation.org/Emoji +#. TjiAa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7694,6 +8547,7 @@ msgstr "bel" #. 🔕 (U+1F515), see http://wiki.documentfoundation.org/Emoji +#. KQzBP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7703,15 +8557,17 @@ msgstr "dilarang lonceng" #. 🔖 (U+1F516), see http://wiki.documentfoundation.org/Emoji +#. R7oDp #: emoji.ulf msgctxt "" "emoji.ulf\n" "BOOKMARK\n" "LngText.text" msgid "bookmark2" -msgstr "Penanda buku2" +msgstr "Markah2" #. 🔗 (U+1F517), see http://wiki.documentfoundation.org/Emoji +#. jF6rA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7721,6 +8577,7 @@ msgstr "taut" #. 🔘 (U+1F518), see http://wiki.documentfoundation.org/Emoji +#. kLzCC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7730,6 +8587,7 @@ msgstr "tombol radio" #. 🔞 (U+1F51E), see http://wiki.documentfoundation.org/Emoji +#. omtTU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7739,6 +8597,7 @@ msgstr "bawah umur" #. 🔤 (U+1F524), see http://wiki.documentfoundation.org/Emoji +#. 63uY8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7748,6 +8607,7 @@ msgstr "abc" #. 🔥 (U+1F525), see http://wiki.documentfoundation.org/Emoji +#. vYrKA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7757,6 +8617,7 @@ msgstr "api" #. 🔦 (U+1F526), see http://wiki.documentfoundation.org/Emoji +#. BXCDZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7766,6 +8627,7 @@ msgstr "senter" #. 🔧 (U+1F527), see http://wiki.documentfoundation.org/Emoji +#. yiTrG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7775,6 +8637,7 @@ msgstr "kunci inggris" #. 🔨 (U+1F528), see http://wiki.documentfoundation.org/Emoji +#. xkGE3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7784,6 +8647,7 @@ msgstr "palu" #. 🔩 (U+1F529), see http://wiki.documentfoundation.org/Emoji +#. p4ctN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7793,6 +8657,7 @@ msgstr "mur dan baut" #. 🔪 (U+1F52A), see http://wiki.documentfoundation.org/Emoji +#. SEuBH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7802,6 +8667,7 @@ msgstr "pisau" #. 🔫 (U+1F52B), see http://wiki.documentfoundation.org/Emoji +#. 2RSdn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7811,6 +8677,7 @@ msgstr "pistol" #. 🔬 (U+1F52C), see http://wiki.documentfoundation.org/Emoji +#. n3FVK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7820,6 +8687,7 @@ msgstr "mikroskop" #. 🔭 (U+1F52D), see http://wiki.documentfoundation.org/Emoji +#. 79jnu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7829,6 +8697,7 @@ msgstr "teleskop" #. 🔮 (U+1F52E), see http://wiki.documentfoundation.org/Emoji +#. cFgDU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7838,6 +8707,7 @@ msgstr "bola kristal" #. 🔰 (U+1F530), see http://wiki.documentfoundation.org/Emoji +#. 6mztF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7847,6 +8717,7 @@ msgstr "pemula" #. 🔱 (U+1F531), see http://wiki.documentfoundation.org/Emoji +#. w7pSw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7856,6 +8727,7 @@ msgstr "trisula" #. 🔲 (U+1F532), see http://wiki.documentfoundation.org/Emoji +#. EmJnV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7865,6 +8737,7 @@ msgstr "tombol2" #. 🔳 (U+1F533), see http://wiki.documentfoundation.org/Emoji +#. WRBMQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7874,6 +8747,7 @@ msgstr "tombol" #. 🕐 (U+1F550), see http://wiki.documentfoundation.org/Emoji +#. e52Dc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7883,6 +8757,7 @@ msgstr "1" #. 🕑 (U+1F551), see http://wiki.documentfoundation.org/Emoji +#. ABhgX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7892,6 +8767,7 @@ msgstr "2" #. 🕒 (U+1F552), see http://wiki.documentfoundation.org/Emoji +#. gMDo3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7901,6 +8777,7 @@ msgstr "3" #. 🕓 (U+1F553), see http://wiki.documentfoundation.org/Emoji +#. uQYrA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7910,6 +8787,7 @@ msgstr "4" #. 🕔 (U+1F554), see http://wiki.documentfoundation.org/Emoji +#. eU5ps #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7919,6 +8797,7 @@ msgstr "5" #. 🕕 (U+1F555), see http://wiki.documentfoundation.org/Emoji +#. yZrjC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7928,6 +8807,7 @@ msgstr "6" #. 🕖 (U+1F556), see http://wiki.documentfoundation.org/Emoji +#. pJEuM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7937,6 +8817,7 @@ msgstr "7" #. 🕗 (U+1F557), see http://wiki.documentfoundation.org/Emoji +#. eHaWk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7946,6 +8827,7 @@ msgstr "8" #. 🕘 (U+1F558), see http://wiki.documentfoundation.org/Emoji +#. BJKnh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7955,6 +8837,7 @@ msgstr "9" #. 🕙 (U+1F559), see http://wiki.documentfoundation.org/Emoji +#. ouBxv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7964,6 +8847,7 @@ msgstr "10" #. 🕚 (U+1F55A), see http://wiki.documentfoundation.org/Emoji +#. DA8M8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7973,6 +8857,7 @@ msgstr "11" #. 🕛 (U+1F55B), see http://wiki.documentfoundation.org/Emoji +#. NF5SV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7982,6 +8867,7 @@ msgstr "12" #. 🕜 (U+1F55C), see http://wiki.documentfoundation.org/Emoji +#. t7XEN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -7991,6 +8877,7 @@ msgstr "1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji +#. ac4Kx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8000,6 +8887,7 @@ msgstr "2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji +#. sd7EA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8009,6 +8897,7 @@ msgstr "3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji +#. CZwtb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8018,6 +8907,7 @@ msgstr "4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji +#. VunGj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8027,6 +8917,7 @@ msgstr "5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji +#. WgH9r #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8036,6 +8927,7 @@ msgstr "6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji +#. HfCBL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8045,6 +8937,7 @@ msgstr "7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji +#. GGeBZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8054,6 +8947,7 @@ msgstr "8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji +#. DCtfy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8063,6 +8957,7 @@ msgstr "9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji +#. tJG5J #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8072,6 +8967,7 @@ msgstr "10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji +#. g55YB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8081,6 +8977,7 @@ msgstr "11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji +#. PGjbq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8090,6 +8987,7 @@ msgstr "12.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji +#. yzedv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8099,6 +8997,7 @@ msgstr "Fuji" #. 🗼 (U+1F5FC), see http://wiki.documentfoundation.org/Emoji +#. zoL5S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8108,6 +9007,7 @@ msgstr "menara" #. 🗽 (U+1F5FD), see http://wiki.documentfoundation.org/Emoji +#. T5ixq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8117,6 +9017,7 @@ msgstr "liberty" #. 🗾 (U+1F5FE), see http://wiki.documentfoundation.org/Emoji +#. vtyHr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8126,6 +9027,7 @@ msgstr "Jepang" #. 🗿 (U+1F5FF), see http://wiki.documentfoundation.org/Emoji +#. rdfcs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8135,6 +9037,7 @@ msgstr "patung" #. 😀 (U+1F600), see http://wiki.documentfoundation.org/Emoji +#. pJXUT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8144,6 +9047,7 @@ msgstr "menyeringai" #. 😁 (U+1F601), see http://wiki.documentfoundation.org/Emoji +#. aTARh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8153,6 +9057,7 @@ msgstr "meringis" #. 😂 (U+1F602), see http://wiki.documentfoundation.org/Emoji +#. DRNjV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8162,6 +9067,7 @@ msgstr "gembira" #. 😃 (U+1F603), see http://wiki.documentfoundation.org/Emoji +#. Gcdda #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8171,6 +9077,7 @@ msgstr "senyum" #. 😄 (U+1F604), see http://wiki.documentfoundation.org/Emoji +#. QBnjZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8180,6 +9087,7 @@ msgstr "senyum" #. 😅 (U+1F605), see http://wiki.documentfoundation.org/Emoji +#. xmY3d #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8189,6 +9097,7 @@ msgstr "senyum manis" #. 😆 (U+1F606), see http://wiki.documentfoundation.org/Emoji +#. RLsCo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8198,6 +9107,7 @@ msgstr "tertawa" #. 😇 (U+1F607), see http://wiki.documentfoundation.org/Emoji +#. pFuaT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8207,6 +9117,7 @@ msgstr "tak bersalah" #. 😈 (U+1F608), see http://wiki.documentfoundation.org/Emoji +#. j4szE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8216,6 +9127,7 @@ msgstr "setan tersenyum" #. 😉 (U+1F609), see http://wiki.documentfoundation.org/Emoji +#. k4AZW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8225,6 +9137,7 @@ msgstr "kedip" #. 😊 (U+1F60A), see http://wiki.documentfoundation.org/Emoji +#. xPZW8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8234,6 +9147,7 @@ msgstr "tersipu" #. 😋 (U+1F60B), see http://wiki.documentfoundation.org/Emoji +#. d5q9X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8243,6 +9157,7 @@ msgstr "lezat" #. 😌 (U+1F60C), see http://wiki.documentfoundation.org/Emoji +#. PHXAL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8252,6 +9167,7 @@ msgstr "lega" #. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji +#. BhNrx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8261,6 +9177,7 @@ msgstr "mata hati" #. 😎 (U+1F60E), see http://wiki.documentfoundation.org/Emoji +#. ybcju #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8270,6 +9187,7 @@ msgstr "kaca mata hitam 2" #. 😏 (U+1F60F), see http://wiki.documentfoundation.org/Emoji +#. GDHDY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8279,6 +9197,7 @@ msgstr "seringai" #. 😐 (U+1F610), see http://wiki.documentfoundation.org/Emoji +#. KsfGz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8288,6 +9207,7 @@ msgstr "wajah netral" #. 😑 (U+1F611), see http://wiki.documentfoundation.org/Emoji +#. w7cU8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8297,6 +9217,7 @@ msgstr "tanpa ekspresi" #. 😒 (U+1F612), see http://wiki.documentfoundation.org/Emoji +#. teWUy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8306,6 +9227,7 @@ msgstr "tidak terhibur" #. 😓 (U+1F613), see http://wiki.documentfoundation.org/Emoji +#. sPBAF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8315,6 +9237,7 @@ msgstr "keringat" #. 😔 (U+1F614), see http://wiki.documentfoundation.org/Emoji +#. AEuYX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8324,6 +9247,7 @@ msgstr "termenung" #. 😕 (U+1F615), see http://wiki.documentfoundation.org/Emoji +#. ZB5DT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8333,6 +9257,7 @@ msgstr "pusing" #. 😖 (U+1F616), see http://wiki.documentfoundation.org/Emoji +#. gFEjA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8342,6 +9267,7 @@ msgstr "celaka" #. 😗 (U+1F617), see http://wiki.documentfoundation.org/Emoji +#. Wu9JJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8351,6 +9277,7 @@ msgstr "berciuman" #. 😘 (U+1F618), see http://wiki.documentfoundation.org/Emoji +#. BzWbz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8360,6 +9287,7 @@ msgstr "cium2" #. 😙 (U+1F619), see http://wiki.documentfoundation.org/Emoji +#. 2sYft #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8369,6 +9297,7 @@ msgstr "cium3" #. 😚 (U+1F61A), see http://wiki.documentfoundation.org/Emoji +#. D7GhD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8378,6 +9307,7 @@ msgstr "cium4" #. 😛 (U+1F61B), see http://wiki.documentfoundation.org/Emoji +#. ryiUu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8387,6 +9317,7 @@ msgstr "lidah2" #. 😜 (U+1F61C), see http://wiki.documentfoundation.org/Emoji +#. JuA5S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8396,6 +9327,7 @@ msgstr "lidah3" #. 😝 (U+1F61D), see http://wiki.documentfoundation.org/Emoji +#. CjnZ6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8405,6 +9337,7 @@ msgstr "lidah4" #. 😞 (U+1F61E), see http://wiki.documentfoundation.org/Emoji +#. DzqHp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8414,6 +9347,7 @@ msgstr "kecewa" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji +#. H4sAW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8423,6 +9357,7 @@ msgstr "khawatir" #. 😠 (U+1F620), see http://wiki.documentfoundation.org/Emoji +#. oCCny #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8432,6 +9367,7 @@ msgstr "marah" #. 😡 (U+1F621), see http://wiki.documentfoundation.org/Emoji +#. 6wuDY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8441,6 +9377,7 @@ msgstr "gusar" #. 😢 (U+1F622), see http://wiki.documentfoundation.org/Emoji +#. x27LD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8450,6 +9387,7 @@ msgstr "menangis" #. 😣 (U+1F623), see http://wiki.documentfoundation.org/Emoji +#. DngFr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8459,6 +9397,7 @@ msgstr "ngotot" #. 😤 (U+1F624), see http://wiki.documentfoundation.org/Emoji +#. gBDzZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8468,6 +9407,7 @@ msgstr "kemenangan" #. 😥 (U+1F625), see http://wiki.documentfoundation.org/Emoji +#. 5hFMz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8477,6 +9417,7 @@ msgstr "kecewa lega" #. 😦 (U+1F626), see http://wiki.documentfoundation.org/Emoji +#. Kerje #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8486,6 +9427,7 @@ msgstr "berkerut kening" #. 😧 (U+1F627), see http://wiki.documentfoundation.org/Emoji +#. kZYF3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8495,6 +9437,7 @@ msgstr "sangat sedih" #. 😨 (U+1F628), see http://wiki.documentfoundation.org/Emoji +#. bu62A #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8504,6 +9447,7 @@ msgstr "takut" #. 😩 (U+1F629), see http://wiki.documentfoundation.org/Emoji +#. 6HkfU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8513,6 +9457,7 @@ msgstr "lelah" #. 😪 (U+1F62A), see http://wiki.documentfoundation.org/Emoji +#. XDpxA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8522,6 +9467,7 @@ msgstr "mengantuk" #. 😫 (U+1F62B), see http://wiki.documentfoundation.org/Emoji +#. RwKrG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8531,6 +9477,7 @@ msgstr "wajah lelah" #. 😬 (U+1F62C), see http://wiki.documentfoundation.org/Emoji +#. x9ZFy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8540,6 +9487,7 @@ msgstr "meringis" #. 😭 (U+1F62D), see http://wiki.documentfoundation.org/Emoji +#. BrbFb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8549,6 +9497,7 @@ msgstr "terisak" #. 😮 (U+1F62E), see http://wiki.documentfoundation.org/Emoji +#. D6iTF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8558,6 +9507,7 @@ msgstr "mulut terbuka" #. 😯 (U+1F62F), see http://wiki.documentfoundation.org/Emoji +#. uMReg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8567,6 +9517,7 @@ msgstr "terdiam" #. 😰 (U+1F630), see http://wiki.documentfoundation.org/Emoji +#. tavtt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8576,6 +9527,7 @@ msgstr "keringat dingin" #. 😱 (U+1F631), see http://wiki.documentfoundation.org/Emoji +#. JpoSb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8585,6 +9537,7 @@ msgstr "teriak" #. 😲 (U+1F632), see http://wiki.documentfoundation.org/Emoji +#. vDqqP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8594,6 +9547,7 @@ msgstr "tercengang" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji +#. QtFif #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8603,6 +9557,7 @@ msgstr "tersipu" #. 😴 (U+1F634), see http://wiki.documentfoundation.org/Emoji +#. MFwtr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8612,6 +9567,7 @@ msgstr "tidur" #. 😵 (U+1F635), see http://wiki.documentfoundation.org/Emoji +#. MAD5T #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8621,6 +9577,7 @@ msgstr "wajah pusing" #. 😶 (U+1F636), see http://wiki.documentfoundation.org/Emoji +#. NYdBC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8630,6 +9587,7 @@ msgstr "tanpa mulut" #. 😷 (U+1F637), see http://wiki.documentfoundation.org/Emoji +#. 9E7g6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8639,6 +9597,7 @@ msgstr "topeng" #. 😸 (U+1F638), see http://wiki.documentfoundation.org/Emoji +#. vHxL5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8648,6 +9607,7 @@ msgstr "kucing senyum" #. 😹 (U+1F639), see http://wiki.documentfoundation.org/Emoji +#. GXKzF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8657,6 +9617,7 @@ msgstr "kucing bahagia" #. 😺 (U+1F63A), see http://wiki.documentfoundation.org/Emoji +#. vAbxV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8666,6 +9627,7 @@ msgstr "kucing senyum" #. 😻 (U+1F63B), see http://wiki.documentfoundation.org/Emoji +#. hzzjE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8675,6 +9637,7 @@ msgstr "kucing mata hati" #. 😼 (U+1F63C), see http://wiki.documentfoundation.org/Emoji +#. FuB4S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8684,6 +9647,7 @@ msgstr "kucing puas" #. 😽 (U+1F63D), see http://wiki.documentfoundation.org/Emoji +#. cGEsx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8693,6 +9657,7 @@ msgstr "kucing mencium" #. 😾 (U+1F63E), see http://wiki.documentfoundation.org/Emoji +#. NyFCw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8702,6 +9667,7 @@ msgstr "kucing musam" #. 😿 (U+1F63F), see http://wiki.documentfoundation.org/Emoji +#. Aoh9Z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8711,6 +9677,7 @@ msgstr "kucing menangis" #. 🙀 (U+1F640), see http://wiki.documentfoundation.org/Emoji +#. W4tZy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8720,6 +9687,7 @@ msgstr "kucing berteriak" #. 🙅 (U+1F645), see http://wiki.documentfoundation.org/Emoji +#. F5Acu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8729,6 +9697,7 @@ msgstr "tidak baik" #. 🙆 (U+1F646), see http://wiki.documentfoundation.org/Emoji +#. zMSZd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8738,6 +9707,7 @@ msgstr "ok3" #. 🙇 (U+1F647), see http://wiki.documentfoundation.org/Emoji +#. 4BtEr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8747,6 +9717,7 @@ msgstr "sujud" #. 🙈 (U+1F648), see http://wiki.documentfoundation.org/Emoji +#. fB5uj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8756,6 +9727,7 @@ msgstr "tidak lihat kejahatan" #. 🙉 (U+1F649), see http://wiki.documentfoundation.org/Emoji +#. Ja8yE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8765,6 +9737,7 @@ msgstr "tidak dengar kejahatan" #. 🙊 (U+1F64A), see http://wiki.documentfoundation.org/Emoji +#. e3zGe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8774,6 +9747,7 @@ msgstr "tidak bicara kejahatan" #. 🙋 (U+1F64B), see http://wiki.documentfoundation.org/Emoji +#. Pwpxw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8783,6 +9757,7 @@ msgstr "kebahagiaan" #. 🙌 (U+1F64C), see http://wiki.documentfoundation.org/Emoji +#. hTJ9z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8792,6 +9767,7 @@ msgstr "perayaan" #. 🙍 (U+1F64D), see http://wiki.documentfoundation.org/Emoji +#. xhTBV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8801,6 +9777,7 @@ msgstr "orang mengkerut" #. 🙎 (U+1F64E), see http://wiki.documentfoundation.org/Emoji +#. entX5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8810,6 +9787,7 @@ msgstr "orang cemberut" #. 🙏 (U+1F64F), see http://wiki.documentfoundation.org/Emoji +#. KtK2c #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8819,6 +9797,7 @@ msgstr "doa" #. 🚀 (U+1F680), see http://wiki.documentfoundation.org/Emoji +#. 6GdwG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8828,6 +9807,7 @@ msgstr "roket" #. 🚁 (U+1F681), see http://wiki.documentfoundation.org/Emoji +#. hADct #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8837,6 +9817,7 @@ msgstr "helikopter" #. 🚂 (U+1F682), see http://wiki.documentfoundation.org/Emoji +#. CEBY6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8846,6 +9827,7 @@ msgstr "lokomotif" #. 🚃 (U+1F683), see http://wiki.documentfoundation.org/Emoji +#. uiu74 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8855,6 +9837,7 @@ msgstr "kereta" #. 🚄 (U+1F684), see http://wiki.documentfoundation.org/Emoji +#. 6gdPP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8864,6 +9847,7 @@ msgstr "kereta2" #. 🚅 (U+1F685), see http://wiki.documentfoundation.org/Emoji +#. KWFVc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8873,6 +9857,7 @@ msgstr "kereta3" #. 🚆 (U+1F686), see http://wiki.documentfoundation.org/Emoji +#. UfDGn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8882,6 +9867,7 @@ msgstr "kereta" #. 🚇 (U+1F687), see http://wiki.documentfoundation.org/Emoji +#. dQgQx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8891,6 +9877,7 @@ msgstr "metro" #. 🚈 (U+1F688), see http://wiki.documentfoundation.org/Emoji +#. jL5UD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8900,6 +9887,7 @@ msgstr "kereta ringan" #. 🚉 (U+1F689), see http://wiki.documentfoundation.org/Emoji +#. nU3jZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8909,6 +9897,7 @@ msgstr "stasiun" #. 🚊 (U+1F68A), see http://wiki.documentfoundation.org/Emoji +#. Dri8R #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8918,6 +9907,7 @@ msgstr "trem" #. 🚋 (U+1F68B), see http://wiki.documentfoundation.org/Emoji +#. 9YAFb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8927,6 +9917,7 @@ msgstr "trem2" #. 🚌 (U+1F68C), see http://wiki.documentfoundation.org/Emoji +#. DhKQs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8936,6 +9927,7 @@ msgstr "bis" #. 🚍 (U+1F68D), see http://wiki.documentfoundation.org/Emoji +#. fTFJN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8945,6 +9937,7 @@ msgstr "bis2" #. 🚎 (U+1F68E), see http://wiki.documentfoundation.org/Emoji +#. tBeU2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8954,6 +9947,7 @@ msgstr "bus troli" #. 🚏 (U+1F68F), see http://wiki.documentfoundation.org/Emoji +#. YFFGE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8963,6 +9957,7 @@ msgstr "halte" #. 🚐 (U+1F690), see http://wiki.documentfoundation.org/Emoji +#. AiqLy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8972,6 +9967,7 @@ msgstr "bus mini" #. 🚑 (U+1F691), see http://wiki.documentfoundation.org/Emoji +#. UjeDu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8981,6 +9977,7 @@ msgstr "ambulans" #. 🚒 (U+1F692), see http://wiki.documentfoundation.org/Emoji +#. fHERr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8990,6 +9987,7 @@ msgstr "truk pemadam" #. 🚓 (U+1F693), see http://wiki.documentfoundation.org/Emoji +#. bgbGa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -8999,6 +9997,7 @@ msgstr "mobil polisi" #. 🚔 (U+1F694), see http://wiki.documentfoundation.org/Emoji +#. wMPG9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9008,6 +10007,7 @@ msgstr "mobil polisi2" #. 🚕 (U+1F695), see http://wiki.documentfoundation.org/Emoji +#. xVRoq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9017,6 +10017,7 @@ msgstr "taksi" #. 🚖 (U+1F696), see http://wiki.documentfoundation.org/Emoji +#. hvAxP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9026,6 +10027,7 @@ msgstr "taksi2" #. 🚗 (U+1F697), see http://wiki.documentfoundation.org/Emoji +#. 7EjBh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9035,6 +10037,7 @@ msgstr "mobil" #. 🚘 (U+1F698), see http://wiki.documentfoundation.org/Emoji +#. VAENQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9044,6 +10047,7 @@ msgstr "mobil2" #. 🚙 (U+1F699), see http://wiki.documentfoundation.org/Emoji +#. F53eT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9053,6 +10057,7 @@ msgstr "mobil3" #. 🚚 (U+1F69A), see http://wiki.documentfoundation.org/Emoji +#. Ky66X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9062,6 +10067,7 @@ msgstr "truk2" #. 🚛 (U+1F69B), see http://wiki.documentfoundation.org/Emoji +#. 8soAF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9071,6 +10077,7 @@ msgstr "lori" #. 🚜 (U+1F69C), see http://wiki.documentfoundation.org/Emoji +#. Jwdgy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9080,6 +10087,7 @@ msgstr "traktor" #. 🚝 (U+1F69D), see http://wiki.documentfoundation.org/Emoji +#. xBCEM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9089,6 +10097,7 @@ msgstr "monorel" #. 🚞 (U+1F69E), see http://wiki.documentfoundation.org/Emoji +#. YF5em #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9098,6 +10107,7 @@ msgstr "kereta gunung" #. 🚟 (U+1F69F), see http://wiki.documentfoundation.org/Emoji +#. BFS7w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9107,6 +10117,7 @@ msgstr "kereta per" #. 🚠 (U+1F6A0), see http://wiki.documentfoundation.org/Emoji +#. xw2kG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9116,6 +10127,7 @@ msgstr "kereta gantung" #. 🚡 (U+1F6A1), see http://wiki.documentfoundation.org/Emoji +#. D6Kee #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9125,6 +10137,7 @@ msgstr "kereta layang" #. 🚢 (U+1F6A2), see http://wiki.documentfoundation.org/Emoji +#. iT3XR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9134,6 +10147,7 @@ msgstr "kapal" #. 🚣 (U+1F6A3), see http://wiki.documentfoundation.org/Emoji +#. UGEtk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9143,6 +10157,7 @@ msgstr "perahu dayung" #. 🚤 (U+1F6A4), see http://wiki.documentfoundation.org/Emoji +#. eBgos #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9152,6 +10167,7 @@ msgstr "kapal cepat" #. 🚥 (U+1F6A5), see http://wiki.documentfoundation.org/Emoji +#. hFcdF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9161,6 +10177,7 @@ msgstr "lampu lalu lintas" #. 🚦 (U+1F6A6), see http://wiki.documentfoundation.org/Emoji +#. nV9zL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9170,6 +10187,7 @@ msgstr "lampu lalu lintas2" #. 🚧 (U+1F6A7), see http://wiki.documentfoundation.org/Emoji +#. JaFGo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9179,6 +10197,7 @@ msgstr "pembangunan" #. 🚨 (U+1F6A8), see http://wiki.documentfoundation.org/Emoji +#. oixqW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9188,6 +10207,7 @@ msgstr "sirine" #. 🚩 (U+1F6A9), see http://wiki.documentfoundation.org/Emoji +#. AGDmx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9197,6 +10217,7 @@ msgstr "bendera segitiga" #. 🚪 (U+1F6AA), see http://wiki.documentfoundation.org/Emoji +#. FCxDK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9206,6 +10227,7 @@ msgstr "pintu" #. 🚫 (U+1F6AB), see http://wiki.documentfoundation.org/Emoji +#. dAJJp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9215,6 +10237,7 @@ msgstr "tanda dilarang masuk" #. 🚬 (U+1F6AC), see http://wiki.documentfoundation.org/Emoji +#. H2dFa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9224,6 +10247,7 @@ msgstr "merokok" #. 🚭 (U+1F6AD), see http://wiki.documentfoundation.org/Emoji +#. ReEtE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9233,6 +10257,7 @@ msgstr "dilarang merokok" #. 🚮 (U+1F6AE), see http://wiki.documentfoundation.org/Emoji +#. owPyG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9242,6 +10267,7 @@ msgstr "sampah" #. 🚯 (U+1F6AF), see http://wiki.documentfoundation.org/Emoji +#. 4qXxK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9251,6 +10277,7 @@ msgstr "jangan buang sampah" #. 🚰 (U+1F6B0), see http://wiki.documentfoundation.org/Emoji +#. ZjTkh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9260,6 +10287,7 @@ msgstr "air dapat diminum" #. 🚱 (U+1F6B1), see http://wiki.documentfoundation.org/Emoji +#. sbTAA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9269,6 +10297,7 @@ msgstr "air tidak dapat diminum" #. 🚲 (U+1F6B2), see http://wiki.documentfoundation.org/Emoji +#. KZmCA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9278,6 +10307,7 @@ msgstr "sepeda" #. 🚳 (U+1F6B3), see http://wiki.documentfoundation.org/Emoji +#. RECxo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9287,6 +10317,7 @@ msgstr "dilarang bersepeda" #. 🚴 (U+1F6B4), see http://wiki.documentfoundation.org/Emoji +#. FGCMF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9296,6 +10327,7 @@ msgstr "pengendara sepeda" #. 🚵 (U+1F6B5), see http://wiki.documentfoundation.org/Emoji +#. P3F9z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9305,6 +10337,7 @@ msgstr "pengendara sepeda2" #. 🚶 (U+1F6B6), see http://wiki.documentfoundation.org/Emoji +#. 4Jk7j #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9314,6 +10347,7 @@ msgstr "berjalan" #. 🚷 (U+1F6B7), see http://wiki.documentfoundation.org/Emoji +#. wMwUM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9323,6 +10357,7 @@ msgstr "pejalan kaki dilarang" #. 🚸 (U+1F6B8), see http://wiki.documentfoundation.org/Emoji +#. tfRvX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9332,6 +10367,7 @@ msgstr "penyebrangan" #. 🚹 (U+1F6B9), see http://wiki.documentfoundation.org/Emoji +#. 5bTta #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9341,6 +10377,7 @@ msgstr "pria" #. 🚺 (U+1F6BA), see http://wiki.documentfoundation.org/Emoji +#. DkTJE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9350,6 +10387,7 @@ msgstr "wanita" #. 🚻 (U+1F6BB), see http://wiki.documentfoundation.org/Emoji +#. fyZ5J #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9359,6 +10397,7 @@ msgstr "toilet" #. 🚼 (U+1F6BC), see http://wiki.documentfoundation.org/Emoji +#. waXZA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9368,6 +10407,7 @@ msgstr "bayi2" #. 🚽 (U+1F6BD), see http://wiki.documentfoundation.org/Emoji +#. 7j9FT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9377,6 +10417,7 @@ msgstr "toilet" #. 🚾 (U+1F6BE), see http://wiki.documentfoundation.org/Emoji +#. 2GY7E #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9386,6 +10427,7 @@ msgstr "toilet2" #. 🚿 (U+1F6BF), see http://wiki.documentfoundation.org/Emoji +#. WrCWt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9395,6 +10437,7 @@ msgstr "pancuran" #. 🛀 (U+1F6C0), see http://wiki.documentfoundation.org/Emoji +#. g545x #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9404,6 +10447,7 @@ msgstr "mandi" #. 🛁 (U+1F6C1), see http://wiki.documentfoundation.org/Emoji +#. miVDJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9413,6 +10457,7 @@ msgstr "bak mandi" #. 🛂 (U+1F6C2), see http://wiki.documentfoundation.org/Emoji +#. BXMUC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9422,6 +10467,7 @@ msgstr "paspor" #. 🛃 (U+1F6C3), see http://wiki.documentfoundation.org/Emoji +#. EcdFo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9431,6 +10477,7 @@ msgstr "imigrasi" #. 🛄 (U+1F6C4), see http://wiki.documentfoundation.org/Emoji +#. rR2Xw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9440,6 +10487,7 @@ msgstr "bagasi" #. 🛅 (U+1F6C5), see http://wiki.documentfoundation.org/Emoji +#. pxsMt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9449,6 +10497,7 @@ msgstr "tinggalkan bawaan" #. 🕃 (U+1F543), see http://wiki.documentfoundation.org/Emoji +#. LZEAD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9458,6 +10507,7 @@ msgstr "kenduri" #. 🙂 (U+1F642), see http://wiki.documentfoundation.org/Emoji +#. PWmbQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9467,6 +10517,7 @@ msgstr "senyum3" #. 🙁 (U+1F641), see http://wiki.documentfoundation.org/Emoji +#. CeamS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9476,6 +10527,7 @@ msgstr "mengkerut2" #. 🕵 (U+1F575), see http://wiki.documentfoundation.org/Emoji +#. vhzbs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9485,6 +10537,7 @@ msgstr "detektif" #. 🛌 (U+1F6CC), see http://wiki.documentfoundation.org/Emoji +#. Ae2cr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9494,6 +10547,7 @@ msgstr "tidur" #. 🕴 (U+1F574), see http://wiki.documentfoundation.org/Emoji +#. Xuc2A #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9503,6 +10557,7 @@ msgstr "setelan" #. 🗣 (U+1F5E3), see http://wiki.documentfoundation.org/Emoji +#. AkeBV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9512,6 +10567,7 @@ msgstr "kepala" #. 🏌 (U+1F3CC), see http://wiki.documentfoundation.org/Emoji +#. cf525 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9521,6 +10577,7 @@ msgstr "golf" #. 🏋 (U+1F3CB), see http://wiki.documentfoundation.org/Emoji +#. As3GE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9530,6 +10587,7 @@ msgstr "pengangkat beban" #. 🏎 (U+1F3CE), see http://wiki.documentfoundation.org/Emoji +#. bDCyA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9539,6 +10597,7 @@ msgstr "mobil4" #. 🏍 (U+1F3CD), see http://wiki.documentfoundation.org/Emoji +#. 2MoqD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9548,6 +10607,7 @@ msgstr "sepeda motor" #. 🖕 (U+1F595), see http://wiki.documentfoundation.org/Emoji +#. gNBn5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9557,6 +10617,7 @@ msgstr "jari" #. 🖖 (U+1F596), Mr. Spock's Vulcan salute from Star Trek, see also http://wiki.documentfoundation.org/Emoji +#. AHWD9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9566,6 +10627,7 @@ msgstr "spock" #. 🖐 (U+1F590), see http://wiki.documentfoundation.org/Emoji +#. Ati77 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9575,6 +10637,7 @@ msgstr "tangan2" #. 👁 (U+1F441), see http://wiki.documentfoundation.org/Emoji +#. 6ADML #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9584,6 +10647,7 @@ msgstr "mata" #. 🗨 (U+1F5E8), see http://wiki.documentfoundation.org/Emoji +#. z7WCd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9593,6 +10657,7 @@ msgstr "gelembung" #. 🗯 (U+1F5EF), see http://wiki.documentfoundation.org/Emoji +#. 7FoF3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9602,6 +10667,7 @@ msgstr "gelembung4" #. 🕳 (U+1F573), see http://wiki.documentfoundation.org/Emoji +#. djWbu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9611,6 +10677,7 @@ msgstr "lubang" #. 🕶 (U+1F576), see http://wiki.documentfoundation.org/Emoji +#. AGMoo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9620,6 +10687,7 @@ msgstr "kaca mata hitam" #. 🛍 (U+1F6CD), see http://wiki.documentfoundation.org/Emoji +#. fq7Cq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9629,6 +10697,7 @@ msgstr "toko" #. 🐿 (U+1F43F), see http://wiki.documentfoundation.org/Emoji +#. eQaW4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9638,6 +10707,7 @@ msgstr "tupai" #. 🕊 (U+1F54A), see http://wiki.documentfoundation.org/Emoji +#. Yoo9T #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9647,6 +10717,7 @@ msgstr "burung dara" #. 🕷 (U+1F577), see http://wiki.documentfoundation.org/Emoji +#. Uyg9S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9656,6 +10727,7 @@ msgstr "laba-laba" #. 🕸 (U+1F578), see http://wiki.documentfoundation.org/Emoji +#. DPtYj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9665,6 +10737,7 @@ msgstr "jaring-jaring" #. 🏵 (U+1F3F5), see http://wiki.documentfoundation.org/Emoji +#. UaQDN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9674,6 +10747,7 @@ msgstr "mawar" #. 🌶 (U+1F336), see http://wiki.documentfoundation.org/Emoji +#. SAxJc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9683,6 +10757,7 @@ msgstr "merica" #. 🍽 (U+1F37D), see http://wiki.documentfoundation.org/Emoji +#. 3WpkF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9692,6 +10767,7 @@ msgstr "piring" #. 🗺 (U+1F5FA), see http://wiki.documentfoundation.org/Emoji +#. zvA3Y #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9701,6 +10777,7 @@ msgstr "peta" #. 🏔 (U+1F3D4), see http://wiki.documentfoundation.org/Emoji +#. PU3q7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9710,6 +10787,7 @@ msgstr "gunung2" #. 🏕 (U+1F3D5), see http://wiki.documentfoundation.org/Emoji +#. 9CR2B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9719,6 +10797,7 @@ msgstr "kemah" #. 🏖 (U+1F3D6), see http://wiki.documentfoundation.org/Emoji +#. QQU86 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9728,6 +10807,7 @@ msgstr "pantai" #. 🏜 (U+1F3DC), see http://wiki.documentfoundation.org/Emoji +#. E3dKM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9737,6 +10817,7 @@ msgstr "gurun" #. 🏝 (U+1F3DD), see http://wiki.documentfoundation.org/Emoji +#. uFHXi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9746,6 +10827,7 @@ msgstr "pulau" #. 🏞 (U+1F3DE), see http://wiki.documentfoundation.org/Emoji +#. rB6rV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9755,6 +10837,7 @@ msgstr "taman" #. 🏟 (U+1F3DF), see http://wiki.documentfoundation.org/Emoji +#. KtGDD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9764,6 +10847,7 @@ msgstr "stadion" #. 🏛 (U+1F3DB), see http://wiki.documentfoundation.org/Emoji +#. 9UYRC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9773,6 +10857,7 @@ msgstr "musium" #. 🏗 (U+1F3D7), see http://wiki.documentfoundation.org/Emoji +#. TU5KH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9782,6 +10867,7 @@ msgstr "derek" #. 🏘 (U+1F3D8), see http://wiki.documentfoundation.org/Emoji +#. ybjvN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9791,6 +10877,7 @@ msgstr "rumah" #. 🏚 (U+1F3DA), see http://wiki.documentfoundation.org/Emoji +#. TEAtW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9800,6 +10887,7 @@ msgstr "rumah3" #. 🏙 (U+1F3D9), see http://wiki.documentfoundation.org/Emoji +#. rjmXE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9809,6 +10897,7 @@ msgstr "kota" #. 🛣 (U+1F6E3), see http://wiki.documentfoundation.org/Emoji +#. gdgnE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9818,6 +10907,7 @@ msgstr "jalan tol" #. 🛤 (U+1F6E4), see http://wiki.documentfoundation.org/Emoji +#. XNZp2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9827,6 +10917,7 @@ msgstr "jalur" #. 🛢 (U+1F6E2), see http://wiki.documentfoundation.org/Emoji +#. JDKF2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9836,6 +10927,7 @@ msgstr "tong" #. 🛳 (U+1F6F3), see http://wiki.documentfoundation.org/Emoji +#. KG2xi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9845,6 +10937,7 @@ msgstr "kapal2" #. 🛥 (U+1F6E5), see http://wiki.documentfoundation.org/Emoji +#. hfqZC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9854,6 +10947,7 @@ msgstr "perahu motor" #. 🛩 (U+1F6E9), see http://wiki.documentfoundation.org/Emoji +#. M7r8K #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9863,6 +10957,7 @@ msgstr "pesawat terbang2" #. 🛫 (U+1F6EB), see http://wiki.documentfoundation.org/Emoji +#. FTJfG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9872,6 +10967,7 @@ msgstr "keberangkatan" #. 🛬 (U+1F6EC), see http://wiki.documentfoundation.org/Emoji +#. CwiZi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9881,6 +10977,7 @@ msgstr "kedatangan" #. 🛰 (U+1F6F0), see http://wiki.documentfoundation.org/Emoji +#. 5BbRQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9890,6 +10987,7 @@ msgstr "satelit" #. 🛎 (U+1F6CE), see http://wiki.documentfoundation.org/Emoji +#. GePUa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9899,6 +10997,7 @@ msgstr "bel2" #. 🕰 (U+1F570), see http://wiki.documentfoundation.org/Emoji +#. N3XKK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9908,6 +11007,7 @@ msgstr "jam" #. 🌡 (U+1F321), see http://wiki.documentfoundation.org/Emoji +#. vC2BF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9917,6 +11017,7 @@ msgstr "termometer" #. 🌤 (U+1F324), see http://wiki.documentfoundation.org/Emoji +#. eDCCS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9926,6 +11027,7 @@ msgstr "berawan" #. 🌥 (U+1F325), see http://wiki.documentfoundation.org/Emoji +#. yuxDV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9935,6 +11037,7 @@ msgstr "berawan2" #. 🌦 (U+1F326), see http://wiki.documentfoundation.org/Emoji +#. SwLUG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9944,6 +11047,7 @@ msgstr "hujan" #. 🌧 (U+1F327), see http://wiki.documentfoundation.org/Emoji +#. uBa2e #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9953,6 +11057,7 @@ msgstr "badai" #. 🌨 (U+1F328), see http://wiki.documentfoundation.org/Emoji +#. f3Sbb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9962,6 +11067,7 @@ msgstr "salju" #. 🌩 (U+1F329), see http://wiki.documentfoundation.org/Emoji +#. boe8A #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9971,6 +11077,7 @@ msgstr "petir" #. 🌪 (U+1F32A), see http://wiki.documentfoundation.org/Emoji +#. RS8Wb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9980,6 +11087,7 @@ msgstr "tornado" #. 🌫 (U+1F32B), see http://wiki.documentfoundation.org/Emoji +#. EqDhD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9989,6 +11097,7 @@ msgstr "kabut" #. 🌬 (U+1F32C), see http://wiki.documentfoundation.org/Emoji +#. XTTqx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -9998,6 +11107,7 @@ msgstr "angin" #. 🎗 (U+1F397), see http://wiki.documentfoundation.org/Emoji +#. 7X7bW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10007,6 +11117,7 @@ msgstr "pita" #. 🎟 (U+1F39F), see http://wiki.documentfoundation.org/Emoji +#. RqApZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10016,6 +11127,7 @@ msgstr "tiket2" #. 🎖 (U+1F396), see http://wiki.documentfoundation.org/Emoji +#. GLTVB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10025,6 +11137,7 @@ msgstr "medali2" #. 🏅 (U+1F3C5), see http://wiki.documentfoundation.org/Emoji +#. uT4sx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10034,6 +11147,7 @@ msgstr "medali" #. 🕹 (U+1F579), see http://wiki.documentfoundation.org/Emoji +#. EszEZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10043,6 +11157,7 @@ msgstr "joystick" #. 🖼 (U+1F5BC), see http://wiki.documentfoundation.org/Emoji +#. wY9cB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10052,6 +11167,7 @@ msgstr "gambar" #. 🎙 (U+1F399), see http://wiki.documentfoundation.org/Emoji +#. RWFZz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10061,6 +11177,7 @@ msgstr "mikrofon2" #. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji +#. FNDDe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10070,6 +11187,7 @@ msgstr "penggeser" #. 🎛 (U+1F39B), see http://wiki.documentfoundation.org/Emoji +#. HRvG2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10079,6 +11197,7 @@ msgstr "kontrol" #. 🖥 (U+1F5A5), see http://wiki.documentfoundation.org/Emoji +#. DunGT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10088,6 +11207,7 @@ msgstr "komputer2" #. 🖨 (U+1F5A8), see http://wiki.documentfoundation.org/Emoji +#. 5i9iG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10097,6 +11217,7 @@ msgstr "pencetak" #. 🖱 (U+1F5B1), see http://wiki.documentfoundation.org/Emoji +#. gCiTV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10106,6 +11227,7 @@ msgstr "tetikus3" #. 🖲 (U+1F5B2), see http://wiki.documentfoundation.org/Emoji +#. kr6mD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10115,6 +11237,7 @@ msgstr "bola jejak" #. 🎞 (U+1F39E), see http://wiki.documentfoundation.org/Emoji +#. a7M8c #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10124,6 +11247,7 @@ msgstr "film" #. 📽 (U+1F4FD), see http://wiki.documentfoundation.org/Emoji +#. 5XEHv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10133,6 +11257,7 @@ msgstr "proyektor" #. 📸 (U+1F4F8), see http://wiki.documentfoundation.org/Emoji +#. e6d8k #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10142,6 +11267,7 @@ msgstr "lampu" #. 🕯 (U+1F56F), see http://wiki.documentfoundation.org/Emoji +#. 85ZZG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10151,6 +11277,7 @@ msgstr "lilin" #. 🗞 (U+1F5DE), see http://wiki.documentfoundation.org/Emoji +#. Roj4S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10160,6 +11287,7 @@ msgstr "koran2" #. 🏷 (U+1F3F7), see http://wiki.documentfoundation.org/Emoji +#. KGGrV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10169,6 +11297,7 @@ msgstr "label" #. 🗳 (U+1F5F3), see http://wiki.documentfoundation.org/Emoji +#. MtcT9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10178,6 +11307,7 @@ msgstr "balot" #. 🖋 (U+1F58B), see http://wiki.documentfoundation.org/Emoji +#. eVhur #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10187,6 +11317,7 @@ msgstr "pulpen2" #. 🖊 (U+1F58A), see http://wiki.documentfoundation.org/Emoji +#. zPbDv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10196,6 +11327,7 @@ msgstr "pulpen" #. 🖌 (U+1F58C), see http://wiki.documentfoundation.org/Emoji +#. GMFPP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10205,6 +11337,7 @@ msgstr "kuas" #. 🖍 (U+1F58D), see http://wiki.documentfoundation.org/Emoji +#. oj4qT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10214,6 +11347,7 @@ msgstr "krayon" #. 🗂 (U+1F5C2), see http://wiki.documentfoundation.org/Emoji +#. 6mFoM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10223,6 +11357,7 @@ msgstr "indeks" #. 🗒 (U+1F5D2), see http://wiki.documentfoundation.org/Emoji +#. 4vrvA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10232,6 +11367,7 @@ msgstr "bantal catatan" #. 🗓 (U+1F5D3), see http://wiki.documentfoundation.org/Emoji +#. fjcB6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10241,6 +11377,7 @@ msgstr "kalender3" #. 🖇 (U+1F587), see http://wiki.documentfoundation.org/Emoji +#. bwrwB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10250,6 +11387,7 @@ msgstr "klip kertas2" #. 🗃 (U+1F5C3), see http://wiki.documentfoundation.org/Emoji +#. zm6R6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10259,6 +11397,7 @@ msgstr "kotak" #. 🗄 (U+1F5C4), see http://wiki.documentfoundation.org/Emoji +#. D9Ev3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10268,6 +11407,7 @@ msgstr "kabinet" #. 🗑 (U+1F5D1), see http://wiki.documentfoundation.org/Emoji +#. 7Rhsi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10277,6 +11417,7 @@ msgstr "keranjang sampah" #. 🗝 (U+1F5DD), see http://wiki.documentfoundation.org/Emoji +#. i498o #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10286,6 +11427,7 @@ msgstr "kunci2" #. 🛠 (U+1F6E0), see http://wiki.documentfoundation.org/Emoji +#. EDHj7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10295,6 +11437,7 @@ msgstr "palu dan kunci" #. 🗡 (U+1F5E1), see http://wiki.documentfoundation.org/Emoji +#. qnaCC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10304,6 +11447,7 @@ msgstr "pisau2" #. 🛡 (U+1F6E1), see http://wiki.documentfoundation.org/Emoji +#. QCXRd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10313,6 +11457,7 @@ msgstr "perisai" #. 🗜 (U+1F5DC), see http://wiki.documentfoundation.org/Emoji +#. F9G5C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10322,6 +11467,7 @@ msgstr "penjepit" #. 🛏 (U+1F6CF), see http://wiki.documentfoundation.org/Emoji +#. g4DGu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10331,6 +11477,7 @@ msgstr "kasur" #. 🛋 (U+1F6CB), see http://wiki.documentfoundation.org/Emoji +#. XnFom #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10340,6 +11487,7 @@ msgstr "sofa" #. 🕉 (U+1F549), see http://wiki.documentfoundation.org/Emoji +#. R8EvG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10349,6 +11497,7 @@ msgstr "om" #. ⏸ (U+23F8), see http://wiki.documentfoundation.org/Emoji +#. ETWok #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10358,6 +11507,7 @@ msgstr "tahan" #. ⏹ (U+23F9), see http://wiki.documentfoundation.org/Emoji +#. 6Fkq7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10367,6 +11517,7 @@ msgstr "berhenti2" #. ⏺ (U+23FA), see http://wiki.documentfoundation.org/Emoji +#. PApbW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10376,6 +11527,7 @@ msgstr "rekam" #. 🏴 (U+1F3F4), see http://wiki.documentfoundation.org/Emoji +#. hytrL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10385,6 +11537,7 @@ msgstr "bendera" #. 🏳 (U+1F3F3), see http://wiki.documentfoundation.org/Emoji +#. mBjRj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10394,6 +11547,7 @@ msgstr "bendera2" #. 🗷 (U+1F5F7), see http://wiki.documentfoundation.org/Emoji +#. GBXU7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10403,6 +11557,7 @@ msgstr "kotak centang4" #. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji +#. htBDW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10412,6 +11567,7 @@ msgstr "cowok" #. 🛈 (U+1F6C8), see http://wiki.documentfoundation.org/Emoji +#. MNHt2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10421,6 +11577,7 @@ msgstr "informasi3" #. 🛊 (U+1F6CA), see http://wiki.documentfoundation.org/Emoji +#. 9wBWk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10430,6 +11587,7 @@ msgstr "cewek" #. 🛨 (U+1F6E8), see http://wiki.documentfoundation.org/Emoji +#. wpUD2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10439,6 +11597,7 @@ msgstr "pesawat terbang4" #. 🛲 (U+1F6F2), see http://wiki.documentfoundation.org/Emoji +#. AZpeG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10448,6 +11607,7 @@ msgstr "lokomotif2" #. 🛧 (U+1F6E7), see http://wiki.documentfoundation.org/Emoji +#. RCBUE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10457,6 +11617,7 @@ msgstr "pesawat terbang3" #. 🛱 (U+1F6F1), see http://wiki.documentfoundation.org/Emoji +#. vEzt8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10466,6 +11627,7 @@ msgstr "truk pemadam2" #. 🛦 (U+1F6E6), see http://wiki.documentfoundation.org/Emoji +#. 5E5qt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10475,6 +11637,7 @@ msgstr "pesawat terbang5" #. 🛪 (U+1F6EA), see http://wiki.documentfoundation.org/Emoji +#. 3YCGT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10484,6 +11647,7 @@ msgstr "pesawat terbang6" #. 🗭 (U+1F5ED), see http://wiki.documentfoundation.org/Emoji +#. V5pj8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10493,6 +11657,7 @@ msgstr "gelembung5" #. 🗱 (U+1F5F1), see http://wiki.documentfoundation.org/Emoji +#. yp5bD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10502,6 +11667,7 @@ msgstr "gelembung6" #. 🗬 (U+1F5EC), see http://wiki.documentfoundation.org/Emoji +#. FFx4K #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10511,6 +11677,7 @@ msgstr "gelembung7" #. 🗠 (U+1F5E0), see http://wiki.documentfoundation.org/Emoji +#. JEqPj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10520,6 +11687,7 @@ msgstr "grafik5" #. 🗟 (U+1F5DF), see http://wiki.documentfoundation.org/Emoji +#. LNFqr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10529,6 +11697,7 @@ msgstr "halaman4" #. 🖎 (U+1F58E), see http://wiki.documentfoundation.org/Emoji +#. zi4B5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10538,6 +11707,7 @@ msgstr "menulis2" #. 🗦 (U+1F5E6), see http://wiki.documentfoundation.org/Emoji +#. r8Xz8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10547,6 +11717,7 @@ msgstr "cahaya" #. 🎝 (U+1F39D), see http://wiki.documentfoundation.org/Emoji +#. 7Zvkw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10556,6 +11727,7 @@ msgstr "catatan3" #. 🔾 (U+1F53E), see http://wiki.documentfoundation.org/Emoji +#. gYeEg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10565,6 +11737,7 @@ msgstr "lingkaran3" #. 🎜 (U+1F39C), see http://wiki.documentfoundation.org/Emoji +#. iywvE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10574,6 +11747,7 @@ msgstr "catatan4" #. 🕮 (U+1F56E), see http://wiki.documentfoundation.org/Emoji +#. ESTxC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10583,6 +11757,7 @@ msgstr "buku" #. 🗛 (U+1F5DB), see http://wiki.documentfoundation.org/Emoji +#. qF7am #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10592,6 +11767,7 @@ msgstr "fon" #. 🔿 (U+1F53F), see http://wiki.documentfoundation.org/Emoji +#. ZSeGW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10601,6 +11777,7 @@ msgstr "lingkaran4" #. 🕫 (U+1F56B), see http://wiki.documentfoundation.org/Emoji +#. VMMh9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10610,6 +11787,7 @@ msgstr "pengeras suara" #. 🕬 (U+1F56C), see http://wiki.documentfoundation.org/Emoji +#. EvEb4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10619,6 +11797,7 @@ msgstr "pengeras suara2" #. 🕻 (U+1F57B), see http://wiki.documentfoundation.org/Emoji +#. AtkEf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10628,6 +11807,7 @@ msgstr "radio2" #. 🕾 (U+1F57E), see http://wiki.documentfoundation.org/Emoji +#. EgspW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10637,6 +11817,7 @@ msgstr "telepon3" #. 🕼 (U+1F57C), see http://wiki.documentfoundation.org/Emoji +#. WXomE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10646,6 +11827,7 @@ msgstr "radio4" #. 🕽 (U+1F57D), see http://wiki.documentfoundation.org/Emoji +#. emFc7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10655,6 +11837,7 @@ msgstr "radio3" #. 🕿 (U+1F57F), see http://wiki.documentfoundation.org/Emoji +#. HdoYh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10664,6 +11847,7 @@ msgstr "telepon4" #. 🖚 (U+1F59A), see http://wiki.documentfoundation.org/Emoji +#. 335BP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10673,6 +11857,7 @@ msgstr "kiri4" #. 🖏 (U+1F58F), see http://wiki.documentfoundation.org/Emoji +#. ubunD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10682,6 +11867,7 @@ msgstr "oke2" #. 🖜 (U+1F59C), see http://wiki.documentfoundation.org/Emoji +#. 3YbN8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10691,6 +11877,7 @@ msgstr "kiri5" #. 🗥 (U+1F5E5), see http://wiki.documentfoundation.org/Emoji +#. 26mFx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10700,6 +11887,7 @@ msgstr "cahaya2" #. 🖛 (U+1F59B), see http://wiki.documentfoundation.org/Emoji +#. YxMaD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10709,6 +11897,7 @@ msgstr "kanan4" #. 🖟 (U+1F59F), see http://wiki.documentfoundation.org/Emoji +#. RHxMa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10718,6 +11907,7 @@ msgstr "bawah3" #. 🖞 (U+1F59E), see http://wiki.documentfoundation.org/Emoji +#. Feod4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10727,6 +11917,7 @@ msgstr "atas3" #. 🌢 (U+1F322), see http://wiki.documentfoundation.org/Emoji +#. vWrdA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10736,6 +11927,7 @@ msgstr "tetesan2" #. 🎘 (U+1F398), see http://wiki.documentfoundation.org/Emoji +#. tzhR8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10745,6 +11937,7 @@ msgstr "piano" #. 🎕 (U+1F395), see http://wiki.documentfoundation.org/Emoji +#. KpEFc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10754,6 +11947,7 @@ msgstr "buket2" #. 🎔 (U+1F394), see http://wiki.documentfoundation.org/Emoji +#. kBDE9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10763,6 +11957,7 @@ msgstr "hati2" #. 🕱 (U+1F571), see http://wiki.documentfoundation.org/Emoji +#. kWWTC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10772,6 +11967,7 @@ msgstr "bajak laut" #. 🖀 (U+1F580), see http://wiki.documentfoundation.org/Emoji +#. Lk3GC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10781,6 +11977,7 @@ msgstr "modem" #. 🕲 (U+1F572), see http://wiki.documentfoundation.org/Emoji +#. CYnVK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10790,6 +11987,7 @@ msgstr "dilarang pembajakan" #. 🕅 (U+1F545), see http://wiki.documentfoundation.org/Emoji +#. MngCK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10799,6 +11997,7 @@ msgstr "tandai bab" #. 🕈 (U+1F548), see http://wiki.documentfoundation.org/Emoji +#. tA9Nr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10808,6 +12007,7 @@ msgstr "Salib" #. 🖗 (U+1F597), see http://wiki.documentfoundation.org/Emoji +#. TbsbW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10817,6 +12017,7 @@ msgstr "bawah4" #. 🖆 (U+1F586), see http://wiki.documentfoundation.org/Emoji +#. Sh7hb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10826,6 +12027,7 @@ msgstr "amplop4" #. 🖃 (U+1F583), see http://wiki.documentfoundation.org/Emoji +#. 6AKdz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10835,6 +12037,7 @@ msgstr "amplop2" #. 🗤 (U+1F5E4), see http://wiki.documentfoundation.org/Emoji +#. UVBZB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10844,6 +12047,7 @@ msgstr "cahaya3" #. 🖉 (U+1F589), see http://wiki.documentfoundation.org/Emoji +#. teGE4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10853,6 +12057,7 @@ msgstr "pensil4" #. 🖂 (U+1F582), see http://wiki.documentfoundation.org/Emoji +#. zvLQc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10862,6 +12067,7 @@ msgstr "amplop3" #. 🖈 (U+1F588), see http://wiki.documentfoundation.org/Emoji +#. ED7mw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10871,6 +12077,7 @@ msgstr "melekatkan tangan" #. 🖄 (U+1F584), see http://wiki.documentfoundation.org/Emoji +#. KE6gJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10880,6 +12087,7 @@ msgstr "amplop5" #. 🖁 (U+1F581), see http://wiki.documentfoundation.org/Emoji +#. npC85 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10889,6 +12097,7 @@ msgstr "ponsel2" #. 🖅 (U+1F585), see http://wiki.documentfoundation.org/Emoji +#. GoddF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10898,6 +12107,7 @@ msgstr "amplop6" #. 🖘 (U+1F598), see http://wiki.documentfoundation.org/Emoji +#. DVJqf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10907,6 +12117,7 @@ msgstr "kiri6" #. 🖙 (U+1F599), see http://wiki.documentfoundation.org/Emoji +#. v5Ngu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10916,6 +12127,7 @@ msgstr "kanan5" #. 🗖 (U+1F5D6), see http://wiki.documentfoundation.org/Emoji +#. Cqs44 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10925,6 +12137,7 @@ msgstr "perbesar" #. 🗗 (U+1F5D7), see http://wiki.documentfoundation.org/Emoji +#. a8Ton #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10934,6 +12147,7 @@ msgstr "bertumpuk" #. 🗏 (U+1F5CF), see http://wiki.documentfoundation.org/Emoji +#. jZs9w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10943,6 +12157,7 @@ msgstr "halaman2" #. 🗐 (U+1F5D0), see http://wiki.documentfoundation.org/Emoji +#. ejx3h #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10952,6 +12167,7 @@ msgstr "halaman" #. 🗘 (U+1F5D8), see http://wiki.documentfoundation.org/Emoji +#. 2Fp3C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10961,6 +12177,7 @@ msgstr "panah" #. 🗚 (U+1F5DA), see http://wiki.documentfoundation.org/Emoji +#. bFSAy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10970,6 +12187,7 @@ msgstr "fon2" #. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji +#. KeAPT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10979,6 +12197,7 @@ msgstr "perkecil" #. 🗙 (U+1F5D9), see http://wiki.documentfoundation.org/Emoji +#. cWAh4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10988,6 +12207,7 @@ msgstr "batal" #. 🗔 (U+1F5D4), see http://wiki.documentfoundation.org/Emoji +#. CpvEL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -10997,6 +12217,7 @@ msgstr "jendela" #. 🗌 (U+1F5CC), see http://wiki.documentfoundation.org/Emoji +#. 9MFBE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11006,6 +12227,7 @@ msgstr "halaman kosong" #. 🗋 (U+1F5CB), see http://wiki.documentfoundation.org/Emoji +#. 4fcuu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11015,6 +12237,7 @@ msgstr "dokumen kosong" #. 🗍 (U+1F5CD), see http://wiki.documentfoundation.org/Emoji +#. hQp56 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11024,6 +12247,7 @@ msgstr "halaman kosong" #. 🗎 (U+1F5CE), see http://wiki.documentfoundation.org/Emoji +#. g8N6C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11033,6 +12257,7 @@ msgstr "dokumen" #. 🗆 (U+1F5C6), see http://wiki.documentfoundation.org/Emoji +#. MaUGt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11042,6 +12267,7 @@ msgstr "halaman catatan kosong" #. 🗊 (U+1F5CA), see http://wiki.documentfoundation.org/Emoji +#. 7w4gh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11051,6 +12277,7 @@ msgstr "kertas tulis" #. 🗈 (U+1F5C8), see http://wiki.documentfoundation.org/Emoji +#. AE3mL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11060,6 +12287,7 @@ msgstr "catatan3" #. 🗇 (U+1F5C7), see http://wiki.documentfoundation.org/Emoji +#. 5aCDm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11069,6 +12297,7 @@ msgstr "kertas tulis kosong" #. 🗉 (U+1F5C9), see http://wiki.documentfoundation.org/Emoji +#. bDRqr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11078,6 +12307,7 @@ msgstr "halaman catatan" #. 🖸 (U+1F5B8), see http://wiki.documentfoundation.org/Emoji +#. FdBv4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11087,6 +12317,7 @@ msgstr "cakram optik" #. 🗀 (U+1F5C0), see http://wiki.documentfoundation.org/Emoji +#. Ghxv6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11096,6 +12327,7 @@ msgstr "folder3" #. 🖝 (U+1F59D), see http://wiki.documentfoundation.org/Emoji +#. gwq6Z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11105,6 +12337,7 @@ msgstr "kanan6" #. 🗁 (U+1F5C1), see http://wiki.documentfoundation.org/Emoji +#. V9USD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11114,6 +12347,7 @@ msgstr "folder4" #. 🗅 (U+1F5C5), see http://wiki.documentfoundation.org/Emoji +#. Wb5pZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11123,6 +12357,7 @@ msgstr "catatan kosong" #. 🖿 (U+1F5BF), see http://wiki.documentfoundation.org/Emoji +#. 2DTcZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11132,6 +12367,7 @@ msgstr "folder5" #. 🖾 (U+1F5BE), see http://wiki.documentfoundation.org/Emoji +#. 9icB8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11141,6 +12377,7 @@ msgstr "bingkai" #. 🖽 (U+1F5BD), see http://wiki.documentfoundation.org/Emoji +#. 2zYBL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11150,6 +12387,7 @@ msgstr "bingkai2" #. 🖹 (U+1F5B9), see http://wiki.documentfoundation.org/Emoji +#. CWPgm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11159,6 +12397,7 @@ msgstr "dokumen2" #. 🖻 (U+1F5BB), see http://wiki.documentfoundation.org/Emoji +#. W5ZZb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11168,6 +12407,7 @@ msgstr "dokumen3" #. 🖺 (U+1F5BA), see http://wiki.documentfoundation.org/Emoji +#. BR5B8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11177,6 +12417,7 @@ msgstr "dokumen4" #. 🖶 (U+1F5B6), see http://wiki.documentfoundation.org/Emoji +#. iWFAt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11186,6 +12427,7 @@ msgstr "pencetak2" #. 🖷 (U+1F5B7), see http://wiki.documentfoundation.org/Emoji +#. CmW6a #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11195,6 +12437,7 @@ msgstr "faks2" #. 🖰 (U+1F5B0), see http://wiki.documentfoundation.org/Emoji +#. u4fMX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11204,6 +12447,7 @@ msgstr "tetikus4" #. 🖳 (U+1F5B3), see http://wiki.documentfoundation.org/Emoji +#. YM2Wi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11213,6 +12457,7 @@ msgstr "pc" #. 🖵 (U+1F5B5), see http://wiki.documentfoundation.org/Emoji +#. uCEtj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11222,6 +12467,7 @@ msgstr "layar" #. 🖯 (U+1F5AF), see http://wiki.documentfoundation.org/Emoji +#. dxgBq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11231,6 +12477,7 @@ msgstr "tetikus5" #. 🖴 (U+1F5B4), see http://wiki.documentfoundation.org/Emoji +#. h2kWQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11240,6 +12487,7 @@ msgstr "cakram keras" #. 🖩 (U+1F5A9), see http://wiki.documentfoundation.org/Emoji +#. zVUTo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11249,6 +12497,7 @@ msgstr "kalkulator" #. 🖭 (U+1F5AD), see http://wiki.documentfoundation.org/Emoji +#. vxsZg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11258,6 +12507,7 @@ msgstr "peluru" #. 🖬 (U+1F5AC), see http://wiki.documentfoundation.org/Emoji +#. 8CWzA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11267,6 +12517,7 @@ msgstr "floppy2" #. 🖫 (U+1F5AB), see http://wiki.documentfoundation.org/Emoji +#. SxL8M #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11276,6 +12527,7 @@ msgstr "floppy3" #. 🖮 (U+1F5AE), see http://wiki.documentfoundation.org/Emoji +#. LYzF5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11285,6 +12537,7 @@ msgstr "papan ketik2" #. 🖔 (U+1F594), see http://wiki.documentfoundation.org/Emoji +#. 63xqd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11294,6 +12547,7 @@ msgstr "kemenangan2" #. 🖧 (U+1F5A7), see http://wiki.documentfoundation.org/Emoji +#. nnqCB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11303,6 +12557,7 @@ msgstr "jaringan" #. 🖪 (U+1F5AA), see http://wiki.documentfoundation.org/Emoji +#. jTG2R #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11312,6 +12567,7 @@ msgstr "floppy4" #. 🗢 (U+1F5E2), see http://wiki.documentfoundation.org/Emoji +#. cK4DP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11321,6 +12577,7 @@ msgstr "mulut" #. 🖦 (U+1F5A6), see http://wiki.documentfoundation.org/Emoji +#. maQCB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11330,6 +12587,7 @@ msgstr "papan ketik3" #. 🖣 (U+1F5A3), see http://wiki.documentfoundation.org/Emoji +#. gxjyq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11339,6 +12597,7 @@ msgstr "bawah5" #. 🖡 (U+1F5A1), see http://wiki.documentfoundation.org/Emoji +#. fzdRY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11348,6 +12607,7 @@ msgstr "bawah6" #. 📾 (U+1F4FE), see http://wiki.documentfoundation.org/Emoji +#. S5d7x #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11357,6 +12617,7 @@ msgstr "stereo" #. 🏶 (U+1F3F6), see http://wiki.documentfoundation.org/Emoji +#. g3tfF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11366,6 +12627,7 @@ msgstr "mawar2" #. 🏲 (U+1F3F2), see http://wiki.documentfoundation.org/Emoji +#. i4YCp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11375,6 +12637,7 @@ msgstr "panji" #. 🖠 (U+1F5A0), see http://wiki.documentfoundation.org/Emoji +#. JBDRo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11384,6 +12647,7 @@ msgstr "atas4" #. 🖢 (U+1F5A2), see http://wiki.documentfoundation.org/Emoji +#. Pc5KV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11393,6 +12657,7 @@ msgstr "atas5" #. 🏱 (U+1F3F1), see http://wiki.documentfoundation.org/Emoji +#. 2A8Yp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11402,6 +12667,7 @@ msgstr "panji2" #. 🕄 (U+1F544), see http://wiki.documentfoundation.org/Emoji +#. Ew6So #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11411,6 +12677,7 @@ msgstr "kenduri2" #. 🖓 (U+1F593), see http://wiki.documentfoundation.org/Emoji +#. AJpzE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11420,6 +12687,7 @@ msgstr "tidak2" #. 🖑 (U+1F591), see http://wiki.documentfoundation.org/Emoji +#. SqfKC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11429,6 +12697,7 @@ msgstr "tangan3" #. 🖒 (U+1F592), see http://wiki.documentfoundation.org/Emoji +#. 5EAvq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11438,6 +12707,7 @@ msgstr "ya2" #. 🕩 (U+1F569), see http://wiki.documentfoundation.org/Emoji +#. EBpBK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11447,6 +12717,7 @@ msgstr "pengeras suara2" #. 🕆 (U+1F546), see http://wiki.documentfoundation.org/Emoji +#. v3jrY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11456,6 +12727,7 @@ msgstr "Salib latin2" #. 🕇 (U+1F547), see http://wiki.documentfoundation.org/Emoji +#. QhPED #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11465,6 +12737,7 @@ msgstr "Salib latin3" #. 🕨 (U+1F568), see http://wiki.documentfoundation.org/Emoji +#. y9uLG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11474,6 +12747,7 @@ msgstr "pengeras suara3" #. 🕭 (U+1F56D), see http://wiki.documentfoundation.org/Emoji +#. yXfff #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11483,6 +12757,7 @@ msgstr "bel3" #. 🌣 (U+1F323), see http://wiki.documentfoundation.org/Emoji +#. rq3dA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11492,6 +12767,7 @@ msgstr "matahari2" #. 🛇 (U+1F6C7), see http://wiki.documentfoundation.org/Emoji +#. etzs6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11501,6 +12777,7 @@ msgstr "dilarang" #. 🛆 (U+1F6C6), see http://wiki.documentfoundation.org/Emoji +#. Qiqnn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11510,6 +12787,7 @@ msgstr "segitiga3" #. 🗫 (U+1F5EB), see http://wiki.documentfoundation.org/Emoji +#. NxoaJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11519,6 +12797,7 @@ msgstr "gelembung3" #. 🕪 (U+1F56A), see http://wiki.documentfoundation.org/Emoji +#. ccFjf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11528,6 +12807,7 @@ msgstr "pengeras suara4" #. 🗮 (U+1F5EE), see http://wiki.documentfoundation.org/Emoji +#. B8Hg3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11537,6 +12817,7 @@ msgstr "gelembung8" #. 🗧 (U+1F5E7), see http://wiki.documentfoundation.org/Emoji +#. BJdG2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11546,6 +12827,7 @@ msgstr "cahaya4" #. 🗲 (U+1F5F2), see http://wiki.documentfoundation.org/Emoji +#. KQe2w #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11555,6 +12837,7 @@ msgstr "petir3" #. 🗰 (U+1F5F0), see http://wiki.documentfoundation.org/Emoji +#. ySPbT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11564,6 +12847,7 @@ msgstr "gelembung9" #. 🗹 (U+1F5F9), see http://wiki.documentfoundation.org/Emoji +#. Ti5Gc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11573,6 +12857,7 @@ msgstr "kotak centang5" #. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji +#. K9FkL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11582,6 +12867,7 @@ msgstr "tanda centang4" #. 🗪 (U+1F5EA), see http://wiki.documentfoundation.org/Emoji +#. fxebH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11591,6 +12877,7 @@ msgstr "gelembung2" #. 🗶 (U+1F5F6), see http://wiki.documentfoundation.org/Emoji +#. mQ7Sx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11600,6 +12887,7 @@ msgstr "x4" #. 🗩 (U+1F5E9), see http://wiki.documentfoundation.org/Emoji +#. HADvf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11609,6 +12897,7 @@ msgstr "gelembung10" #. 🗵 (U+1F5F5), see http://wiki.documentfoundation.org/Emoji +#. CgYR4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11618,6 +12907,7 @@ msgstr "kotak centang6" #. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji +#. C3B4F #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11627,6 +12917,7 @@ msgstr "tanda centang5" #. 🤗 (U+1F917), see http://wiki.documentfoundation.org/Emoji +#. EbZew #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11636,6 +12927,7 @@ msgstr "memeluk" #. 🤔 (U+1F914), see http://wiki.documentfoundation.org/Emoji +#. QGVSq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11645,6 +12937,7 @@ msgstr "berpikir" #. 🙄 (U+1F644), see http://wiki.documentfoundation.org/Emoji +#. YWnjW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11654,6 +12947,7 @@ msgstr "putar mata" #. 🤐 (U+1F910), see http://wiki.documentfoundation.org/Emoji +#. eahZt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11663,6 +12957,7 @@ msgstr "ritsleting" #. 🙃 (U+1F643), see http://wiki.documentfoundation.org/Emoji +#. UEkgj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11672,6 +12967,7 @@ msgstr "terbalik" #. 🤑 (U+1F911), see http://wiki.documentfoundation.org/Emoji +#. NHvD5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11681,6 +12977,7 @@ msgstr "uang3" #. 🤒 (U+1F912), see http://wiki.documentfoundation.org/Emoji +#. XNpdb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11690,6 +12987,7 @@ msgstr "termometer2" #. 🤕 (U+1F915), see http://wiki.documentfoundation.org/Emoji +#. 7baC2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11699,6 +12997,7 @@ msgstr "perban" #. 🤓 (U+1F913), see http://wiki.documentfoundation.org/Emoji +#. AZgGL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11708,6 +13007,7 @@ msgstr "kutu buku" #. 🤖 (U+1F916), see http://wiki.documentfoundation.org/Emoji +#. GdDbE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11717,6 +13017,7 @@ msgstr "robot" #. 🏻 (U+1F3FB), see http://wiki.documentfoundation.org/Emoji +#. GANQW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11726,6 +13027,7 @@ msgstr "kulit1" #. 🏼 (U+1F3FC), see http://wiki.documentfoundation.org/Emoji +#. gbDCJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11735,6 +13037,7 @@ msgstr "kulit2" #. 🏽 (U+1F3FD), see http://wiki.documentfoundation.org/Emoji +#. SCAhC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11744,6 +13047,7 @@ msgstr "kulit3" #. 🏾 (U+1F3FE), see http://wiki.documentfoundation.org/Emoji +#. 73nmB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11753,6 +13057,7 @@ msgstr "kulit4" #. 🏿 (U+1F3FF), see http://wiki.documentfoundation.org/Emoji +#. xD2SM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11762,6 +13067,7 @@ msgstr "kulit5" #. 🤘 (U+1F918), see http://wiki.documentfoundation.org/Emoji +#. uqz8D #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11771,6 +13077,7 @@ msgstr "tanduk" #. 📿 (U+1F4FF), see http://wiki.documentfoundation.org/Emoji +#. UZABL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11780,6 +13087,7 @@ msgstr "manik-manik" #. 🦁 (U+1F981), see http://wiki.documentfoundation.org/Emoji +#. XwHn4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11789,6 +13097,7 @@ msgstr "singa" #. 🦄 (U+1F984), see http://wiki.documentfoundation.org/Emoji +#. AsQ5Q #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11798,6 +13107,7 @@ msgstr "unicorn" #. 🦃 (U+1F983), see http://wiki.documentfoundation.org/Emoji +#. wE3ZV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11807,6 +13117,7 @@ msgstr "kalkun" #. 🦀 (U+1F980), see http://wiki.documentfoundation.org/Emoji +#. ygHYG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11816,6 +13127,7 @@ msgstr "kepiting" #. 🦂 (U+1F982), see http://wiki.documentfoundation.org/Emoji +#. eCLRs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11825,6 +13137,7 @@ msgstr "kalajengking" #. 🧀 (U+1F9C0), see http://wiki.documentfoundation.org/Emoji +#. 7Rapv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11834,6 +13147,7 @@ msgstr "keju" #. 🌭 (U+1F32D), see http://wiki.documentfoundation.org/Emoji +#. G77U6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11843,6 +13157,7 @@ msgstr "hot dog" #. 🌮 (U+1F32E), see http://wiki.documentfoundation.org/Emoji +#. adkNd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11852,6 +13167,7 @@ msgstr "taco" #. 🌯 (U+1F32F), see http://wiki.documentfoundation.org/Emoji +#. iznZM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11861,6 +13177,7 @@ msgstr "burrito" #. 🍿 (U+1F37F), see http://wiki.documentfoundation.org/Emoji +#. EpADQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11870,6 +13187,7 @@ msgstr "brondong jagung" #. 🍾 (U+1F37E), see http://wiki.documentfoundation.org/Emoji +#. SjEyK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11879,6 +13197,7 @@ msgstr "pesta4" #. 🏺 (U+1F3FA), see http://wiki.documentfoundation.org/Emoji +#. rK7h3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11888,6 +13207,7 @@ msgstr "bejana" #. 🕌 (U+1F54C), see http://wiki.documentfoundation.org/Emoji +#. GAMLG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11897,6 +13217,7 @@ msgstr "masjid" #. 🕍 (U+1F54D), see http://wiki.documentfoundation.org/Emoji +#. iqBVa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11906,6 +13227,7 @@ msgstr "sinagoga" #. 🕋 (U+1F54B), see http://wiki.documentfoundation.org/Emoji +#. 3rTFA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11915,6 +13237,7 @@ msgstr "Ka'bah" #. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji +#. JnWWX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11924,6 +13247,7 @@ msgstr "bola voli" #. 🏏 (U+1F3CF), see http://wiki.documentfoundation.org/Emoji +#. BLab9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11933,6 +13257,7 @@ msgstr "kriket" #. 🏑 (U+1F3D1), see http://wiki.documentfoundation.org/Emoji +#. 2Gshv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11942,6 +13267,7 @@ msgstr "hoki2" #. 🏒 (U+1F3D2), see http://wiki.documentfoundation.org/Emoji +#. P8BNH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11951,6 +13277,7 @@ msgstr "hoki" #. 🏓 (U+1F3D3), see http://wiki.documentfoundation.org/Emoji +#. sjezt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11960,6 +13287,7 @@ msgstr "tenis meja" #. 🏸 (U+1F3F8), see http://wiki.documentfoundation.org/Emoji +#. qCCrH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11969,6 +13297,7 @@ msgstr "bulu tangkis" #. 🏹 (U+1F3F9), see http://wiki.documentfoundation.org/Emoji +#. HpJnE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11978,6 +13307,7 @@ msgstr "busur" #. 🛐 (U+1F6D0), see http://wiki.documentfoundation.org/Emoji +#. EhGbP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11987,6 +13317,7 @@ msgstr "menyembah" #. 🕎 (U+1F54E), see http://wiki.documentfoundation.org/Emoji +#. VJK9e #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -11996,6 +13327,7 @@ msgstr "menorah" #. 🤣 (U+1F923), see http://wiki.documentfoundation.org/Emoji +#. ZEUxq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12005,6 +13337,7 @@ msgstr "tertawa lebar" #. 🤤 (U+1F924), see http://wiki.documentfoundation.org/Emoji +#. 9dmGD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12014,6 +13347,7 @@ msgstr "ngiler" #. 🤢 (U+1F922), see http://wiki.documentfoundation.org/Emoji +#. BFDoH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12023,6 +13357,7 @@ msgstr "mual" #. 🤧 (U+1F927), see http://wiki.documentfoundation.org/Emoji +#. E2kqb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12032,6 +13367,7 @@ msgstr "bersin" #. 🤠 (U+1F920), see http://wiki.documentfoundation.org/Emoji +#. eqg7B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12041,6 +13377,7 @@ msgstr "cowboy" #. 🤡 (U+1F921), see http://wiki.documentfoundation.org/Emoji +#. ECess #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12050,6 +13387,7 @@ msgstr "badut" #. 🤥 (U+1F925), see http://wiki.documentfoundation.org/Emoji +#. kGYvx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12059,6 +13397,7 @@ msgstr "pembohong" #. 🤴 (U+1F934), see http://wiki.documentfoundation.org/Emoji +#. Vm8HH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12068,6 +13407,7 @@ msgstr "pangeran" #. 🤵 (U+1F935), see http://wiki.documentfoundation.org/Emoji +#. z4cUf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12077,6 +13417,7 @@ msgstr "pengantin pria" #. 🤰 (U+1F930), see http://wiki.documentfoundation.org/Emoji +#. 2z7dc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12086,6 +13427,7 @@ msgstr "hamil" #. 🤶 (U+1F936), see http://wiki.documentfoundation.org/Emoji +#. 2G73S #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12095,6 +13437,7 @@ msgstr "nyonya klaus" #. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji +#. DMAKw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12104,6 +13447,7 @@ msgstr "tepuk dahi" #. 🤷 (U+1F937), see http://wiki.documentfoundation.org/Emoji +#. HfLEz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12113,6 +13457,7 @@ msgstr "angkat bahu" #. 🕺 (U+1F57A), see http://wiki.documentfoundation.org/Emoji +#. LunYv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12122,6 +13467,7 @@ msgstr "penari2" #. 🤺 (U+1F93A), see http://wiki.documentfoundation.org/Emoji +#. j3rnK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12131,6 +13477,7 @@ msgstr "pemain anggar" #. 🤸 (U+1F938), see http://wiki.documentfoundation.org/Emoji +#. GWy2x #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12140,6 +13487,7 @@ msgstr "pesenam" #. 🤼 (U+1F93C), see http://wiki.documentfoundation.org/Emoji +#. wDcBh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12149,6 +13497,7 @@ msgstr "gulat" #. 🤽 (U+1F93D), see http://wiki.documentfoundation.org/Emoji +#. d98om #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12158,6 +13507,7 @@ msgstr "polo air" #. 🤾 (U+1F93E), see http://wiki.documentfoundation.org/Emoji +#. CUX53 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12167,6 +13517,7 @@ msgstr "bola tangan" #. 🤹 (U+1F939), see http://wiki.documentfoundation.org/Emoji +#. ZxAWV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12176,6 +13527,7 @@ msgstr "juggling" #. 🤳 (U+1F933), see http://wiki.documentfoundation.org/Emoji +#. ydPAe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12185,6 +13537,7 @@ msgstr "swafoto" #. 🤞 (U+1F91E), see http://wiki.documentfoundation.org/Emoji +#. hCFfC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12194,6 +13547,7 @@ msgstr "semoga berhasil" #. 🤙 (U+1F919), see http://wiki.documentfoundation.org/Emoji +#. cXaXX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12203,6 +13557,7 @@ msgstr "telepon" #. 🤛 (U+1F91B), see http://wiki.documentfoundation.org/Emoji +#. FAjqc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12212,6 +13567,7 @@ msgstr "kepalan3" #. 🤜 (U+1F91C), see http://wiki.documentfoundation.org/Emoji +#. F5CCT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12221,6 +13577,7 @@ msgstr "kepalan4" #. 🤚 (U+1F91A), see http://wiki.documentfoundation.org/Emoji +#. ix9At #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12230,6 +13587,7 @@ msgstr "tangan4" #. 🤝 (U+1F91D), see http://wiki.documentfoundation.org/Emoji +#. 9fHKn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12239,6 +13597,7 @@ msgstr "jabat tangan" #. 🖤 (U+1F5A4), see http://wiki.documentfoundation.org/Emoji +#. gm7FZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12248,6 +13607,7 @@ msgstr "hati hitam" #. 🦍 (U+1F98D), see http://wiki.documentfoundation.org/Emoji +#. 2NjPB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12257,6 +13617,7 @@ msgstr "gorila" #. 🦊 (U+1F98A), see http://wiki.documentfoundation.org/Emoji +#. KTrLE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12266,6 +13627,7 @@ msgstr "rubah" #. 🦌 (U+1F98C), see http://wiki.documentfoundation.org/Emoji +#. hFm9Y #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12275,6 +13637,7 @@ msgstr "rusa" #. 🦏 (U+1F98F), see http://wiki.documentfoundation.org/Emoji +#. vH7xA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12284,6 +13647,7 @@ msgstr "badak" #. 🦇 (U+1F987), see http://wiki.documentfoundation.org/Emoji +#. La26G #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12293,6 +13657,7 @@ msgstr "kelelawar" #. 🦅 (U+1F985), see http://wiki.documentfoundation.org/Emoji +#. A5zoM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12302,6 +13667,7 @@ msgstr "elang" #. 🦆 (U+1F986), see http://wiki.documentfoundation.org/Emoji +#. 6pBEy #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12311,6 +13677,7 @@ msgstr "bebek" #. 🦉 (U+1F989), see http://wiki.documentfoundation.org/Emoji +#. 5WB2J #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12320,6 +13687,7 @@ msgstr "burung hantu" #. 🦎 (U+1F98E), see http://wiki.documentfoundation.org/Emoji +#. mTdZD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12329,6 +13697,7 @@ msgstr "kadal" #. 🦈 (U+1F988), see http://wiki.documentfoundation.org/Emoji +#. HGPa7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12338,6 +13707,7 @@ msgstr "hiu" #. 🦐 (U+1F990), see http://wiki.documentfoundation.org/Emoji +#. 9st9X #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12347,6 +13717,7 @@ msgstr "udang" #. 🦑 (U+1F991), see http://wiki.documentfoundation.org/Emoji +#. wLzdC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12356,6 +13727,7 @@ msgstr "cumi-cumi" #. 🦋 (U+1F98B), see http://wiki.documentfoundation.org/Emoji +#. ABYeM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12365,6 +13737,7 @@ msgstr "kupu-kupu" #. 🥀 (U+1F940), see http://wiki.documentfoundation.org/Emoji +#. g8zbG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12374,6 +13747,7 @@ msgstr "bunga2" #. 🥝 (U+1F95D), see http://wiki.documentfoundation.org/Emoji +#. rhEXe #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12383,6 +13757,7 @@ msgstr "kiwi" #. 🥑 (U+1F951), see http://wiki.documentfoundation.org/Emoji +#. YyyRA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12392,6 +13767,7 @@ msgstr "alpukat" #. 🥔 (U+1F954), see http://wiki.documentfoundation.org/Emoji +#. GszVJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12401,6 +13777,7 @@ msgstr "kentang" #. 🥕 (U+1F955), see http://wiki.documentfoundation.org/Emoji +#. Ym3pa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12410,6 +13787,7 @@ msgstr "wortel" #. 🥒 (U+1F952), see http://wiki.documentfoundation.org/Emoji +#. Kh3D3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12419,6 +13797,7 @@ msgstr "mentimun" #. 🥜 (U+1F95C), see http://wiki.documentfoundation.org/Emoji +#. zhUDL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12428,6 +13807,7 @@ msgstr "kacang tanah" #. 🥐 (U+1F950), see http://wiki.documentfoundation.org/Emoji +#. RjA9y #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12437,6 +13817,7 @@ msgstr "roti kroisan" #. 🥖 (U+1F956), see http://wiki.documentfoundation.org/Emoji +#. NGegu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12446,6 +13827,7 @@ msgstr "roti2" #. 🥞 (U+1F95E), see http://wiki.documentfoundation.org/Emoji +#. Kv3zL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12455,6 +13837,7 @@ msgstr "panekuk" #. 🥓 (U+1F953), see http://wiki.documentfoundation.org/Emoji +#. ZD8B4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12464,6 +13847,7 @@ msgstr "daging babi asap" #. 🥙 (U+1F959), see http://wiki.documentfoundation.org/Emoji +#. FBeQo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12473,6 +13857,7 @@ msgstr "roti pipih" #. 🥚 (U+1F95A), see http://wiki.documentfoundation.org/Emoji +#. ogxKP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12482,6 +13867,7 @@ msgstr "telur" #. 🥘 (U+1F958), see http://wiki.documentfoundation.org/Emoji +#. MLBgW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12491,6 +13877,7 @@ msgstr "makanan" #. 🥗 (U+1F957), see http://wiki.documentfoundation.org/Emoji +#. NW5YQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12500,6 +13887,7 @@ msgstr "salad" #. 🥛 (U+1F95B), see http://wiki.documentfoundation.org/Emoji +#. ABhFU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12509,6 +13897,7 @@ msgstr "susu" #. 🥂 (U+1F942), see http://wiki.documentfoundation.org/Emoji +#. CE4Gm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12518,6 +13907,7 @@ msgstr "pesta3" #. 🥃 (U+1F943), see http://wiki.documentfoundation.org/Emoji +#. f7rVY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12527,6 +13917,7 @@ msgstr "gelas3" #. 🥄 (U+1F944), see http://wiki.documentfoundation.org/Emoji +#. xQXfU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12536,6 +13927,7 @@ msgstr "sendok" #. 🛴 (U+1F6F4), see http://wiki.documentfoundation.org/Emoji +#. i9HME #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12545,6 +13937,7 @@ msgstr "skuter" #. 🛵 (U+1F6F5), see http://wiki.documentfoundation.org/Emoji +#. qNJVu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12554,6 +13947,7 @@ msgstr "skuter2" #. 🛑 (U+1F6D1), see http://wiki.documentfoundation.org/Emoji +#. aFYby #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12563,6 +13957,7 @@ msgstr "berhenti" #. 🛶 (U+1F6F6), see http://wiki.documentfoundation.org/Emoji +#. SXBDP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12572,6 +13967,7 @@ msgstr "kano" #. 🥇 (U+1F947), see http://wiki.documentfoundation.org/Emoji +#. 4XgcG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12581,6 +13977,7 @@ msgstr "emas" #. 🥈 (U+1F948), see http://wiki.documentfoundation.org/Emoji +#. TSHQA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12590,6 +13987,7 @@ msgstr "perak" #. 🥉 (U+1F949), see http://wiki.documentfoundation.org/Emoji +#. EAVkw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12599,6 +13997,7 @@ msgstr "perunggu" #. 🥊 (U+1F94A), see http://wiki.documentfoundation.org/Emoji +#. wd46F #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12608,6 +14007,7 @@ msgstr "tinju" #. 🥋 (U+1F94B), see http://wiki.documentfoundation.org/Emoji +#. YUmnP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12617,6 +14017,7 @@ msgstr "judo" #. 🥅 (U+1F945), see http://wiki.documentfoundation.org/Emoji +#. qGHW2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12626,6 +14027,7 @@ msgstr "sepak bola2" #. 🥁 (U+1F941), see http://wiki.documentfoundation.org/Emoji +#. AbcnT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12635,6 +14037,7 @@ msgstr "tong2" #. 🛒 (U+1F6D2), see http://wiki.documentfoundation.org/Emoji +#. B6WXA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12644,6 +14047,7 @@ msgstr "troli" #. 🤩 (U+1F929), see http://wiki.documentfoundation.org/Emoji +#. eVxGr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12653,6 +14057,7 @@ msgstr "heboh" #. 🤨 (U+1F928), see http://wiki.documentfoundation.org/Emoji +#. Tsyfv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12662,6 +14067,7 @@ msgstr "alis" #. 🤯 (U+1F92F), see http://wiki.documentfoundation.org/Emoji +#. na53j #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12671,6 +14077,7 @@ msgstr "terkejut" #. 🤪 (U+1F92A), see http://wiki.documentfoundation.org/Emoji +#. 4WDd3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12680,6 +14087,7 @@ msgstr "melucu" #. 🤬 (U+1F92C), see http://wiki.documentfoundation.org/Emoji +#. h2dHg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12689,6 +14097,7 @@ msgstr "mengumpat" #. 🤮 (U+1F92E), see http://wiki.documentfoundation.org/Emoji +#. kBxkz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12698,6 +14107,7 @@ msgstr "muntah" #. 🤫 (U+1F92B), see http://wiki.documentfoundation.org/Emoji +#. eYbxY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12707,6 +14117,7 @@ msgstr "diam" #. 🤭 (U+1F92D), see http://wiki.documentfoundation.org/Emoji +#. n5YYY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12716,6 +14127,7 @@ msgstr "senyum4" #. 🧐 (U+1F9D0), see http://wiki.documentfoundation.org/Emoji +#. jB9dt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12725,6 +14137,7 @@ msgstr "monokel" #. 🧒 (U+1F9D2), see http://wiki.documentfoundation.org/Emoji +#. SLPCQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12734,6 +14147,7 @@ msgstr "anak" #. 🧑 (U+1F9D1), see http://wiki.documentfoundation.org/Emoji +#. GfBGz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12743,6 +14157,7 @@ msgstr "dewasa" #. 🧓 (U+1F9D3), see http://wiki.documentfoundation.org/Emoji +#. iMBiE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12752,6 +14167,7 @@ msgstr "tua" #. 🧕 (U+1F9D5), see http://wiki.documentfoundation.org/Emoji +#. a4XKd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12761,6 +14177,7 @@ msgstr "kerudung" #. 🧔 (U+1F9D4), see http://wiki.documentfoundation.org/Emoji +#. wwFwk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12770,6 +14187,7 @@ msgstr "jenggot" #. 🤱 (U+1F931), see http://wiki.documentfoundation.org/Emoji +#. aiLD6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12779,6 +14197,7 @@ msgstr "bayi3" #. 🧙 (U+1F9D9), see http://wiki.documentfoundation.org/Emoji +#. AiBBt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12788,6 +14207,7 @@ msgstr "penyihir" #. 🧚 (U+1F9DA), see http://wiki.documentfoundation.org/Emoji +#. 72AoC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12797,6 +14217,7 @@ msgstr "peri" #. 🧛 (U+1F9DB), see http://wiki.documentfoundation.org/Emoji +#. xcCHr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12806,6 +14227,7 @@ msgstr "vampir" #. 🧜 (U+1F9DC), see http://wiki.documentfoundation.org/Emoji +#. 6E3EF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12815,6 +14237,7 @@ msgstr "duyung" #. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji +#. 7WZ3s #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12824,6 +14247,7 @@ msgstr "peri2" #. 🧞 (U+1F9DE), see http://wiki.documentfoundation.org/Emoji +#. GQBVF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12833,6 +14257,7 @@ msgstr "jin" #. 🧟 (U+1F9DF), see http://wiki.documentfoundation.org/Emoji +#. sF9YT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12842,6 +14267,7 @@ msgstr "zombi" #. 🧖 (U+1F9D6), see http://wiki.documentfoundation.org/Emoji +#. SFGkA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12851,6 +14277,7 @@ msgstr "sauna" #. 🧗 (U+1F9D7), see http://wiki.documentfoundation.org/Emoji +#. 5LRF9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12860,6 +14287,7 @@ msgstr "pendaki" #. 🧘 (U+1F9D8), see http://wiki.documentfoundation.org/Emoji +#. UhgUh #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12869,6 +14297,7 @@ msgstr "yoga" #. 🤟 (U+1F91F), see http://wiki.documentfoundation.org/Emoji +#. 2KjLY #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12878,6 +14307,7 @@ msgstr "cinta2" #. 🤲 (U+1F932), see http://wiki.documentfoundation.org/Emoji +#. tjwnx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12887,6 +14317,7 @@ msgstr "menadah2" #. 🧠 (U+1F9E0), see http://wiki.documentfoundation.org/Emoji +#. Fvr8C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12896,6 +14327,7 @@ msgstr "otak" #. 🧡 (U+1F9E1), see http://wiki.documentfoundation.org/Emoji +#. 65Vzz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12905,6 +14337,7 @@ msgstr "hati oranye" #. 🧣 (U+1F9E3), see http://wiki.documentfoundation.org/Emoji +#. 9F7KC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12914,6 +14347,7 @@ msgstr "kerudung" #. 🧤 (U+1F9E4), see http://wiki.documentfoundation.org/Emoji +#. 2hKw4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12923,6 +14357,7 @@ msgstr "sarung tangan" #. 🧥 (U+1F9E5), see http://wiki.documentfoundation.org/Emoji +#. 7dGHw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12932,6 +14367,7 @@ msgstr "mantel" #. 🧦 (U+1F9E6), see http://wiki.documentfoundation.org/Emoji +#. j5RzV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12941,6 +14377,7 @@ msgstr "kaus kaki" #. 🧢 (U+1F9E2), see http://wiki.documentfoundation.org/Emoji +#. tZNWA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12950,6 +14387,7 @@ msgstr "topi" #. 🦓 (U+1F993), see http://wiki.documentfoundation.org/Emoji +#. 8mGXr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12959,6 +14397,7 @@ msgstr "zebra" #. 🦒 (U+1F992), see http://wiki.documentfoundation.org/Emoji +#. KK5ZG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12968,6 +14407,7 @@ msgstr "jerapah" #. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji +#. m5ZyA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12977,6 +14417,7 @@ msgstr "landak" #. 🦕 (U+1F995), see http://wiki.documentfoundation.org/Emoji +#. QGK7G #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12986,6 +14427,7 @@ msgstr "dinosaurus" #. 🦖 (U+1F996), see http://wiki.documentfoundation.org/Emoji +#. Nixns #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -12995,6 +14437,7 @@ msgstr "dinosaurus2" #. 🦗 (U+1F997), see http://wiki.documentfoundation.org/Emoji +#. v74vD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13004,6 +14447,7 @@ msgstr "jangkrik2" #. 🥥 (U+1F965), see http://wiki.documentfoundation.org/Emoji +#. F6DcD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13013,6 +14457,7 @@ msgstr "kelapa" #. 🥦 (U+1F966), see http://wiki.documentfoundation.org/Emoji +#. ysJGH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13022,6 +14467,7 @@ msgstr "brokoli" #. 🥨 (U+1F968), see http://wiki.documentfoundation.org/Emoji +#. CVDqB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13031,6 +14477,7 @@ msgstr "pretzel" #. 🥩 (U+1F969), see http://wiki.documentfoundation.org/Emoji +#. EFzoB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13040,6 +14487,7 @@ msgstr "daging panggang" #. 🥪 (U+1F96A), see http://wiki.documentfoundation.org/Emoji +#. kUkjd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13049,6 +14497,7 @@ msgstr "roti lapis" #. 🥣 (U+1F963), see http://wiki.documentfoundation.org/Emoji +#. UgCS4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13058,6 +14507,7 @@ msgstr "mangkuk" #. 🥫 (U+1F96B), see http://wiki.documentfoundation.org/Emoji +#. ruvC5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13067,6 +14517,7 @@ msgstr "kaleng" #. 🥟 (U+1F95F), see http://wiki.documentfoundation.org/Emoji +#. TZV8E #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13076,6 +14527,7 @@ msgstr "siomay" #. 🥠 (U+1F960), see http://wiki.documentfoundation.org/Emoji +#. APAjG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13085,6 +14537,7 @@ msgstr "kue kering2" #. 🥡 (U+1F961), see http://wiki.documentfoundation.org/Emoji +#. T3CFr #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13094,6 +14547,7 @@ msgstr "bungkus makan" #. 🥧 (U+1F967), see http://wiki.documentfoundation.org/Emoji +#. LYCNG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13103,6 +14557,7 @@ msgstr "pai" #. 🥤 (U+1F964), see http://wiki.documentfoundation.org/Emoji +#. YNHfJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13112,6 +14567,7 @@ msgstr "minuman" #. 🥢 (U+1F962), see http://wiki.documentfoundation.org/Emoji +#. 3KB5F #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13121,6 +14577,7 @@ msgstr "sumpit" #. 🛸 (U+1F6F8), see http://wiki.documentfoundation.org/Emoji +#. QmGAB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13130,6 +14587,7 @@ msgstr "ufo" #. 🛷 (U+1F6F7), see http://wiki.documentfoundation.org/Emoji +#. xghQ3 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13139,6 +14597,7 @@ msgstr "kereta luncur" #. 🥌 (U+1F94C), see http://wiki.documentfoundation.org/Emoji +#. 5hGNv #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13148,6 +14607,7 @@ msgstr "curling" #. ₿ (U+20BF), see http://wiki.documentfoundation.org/Emoji +#. EXrBL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13157,6 +14617,7 @@ msgstr "bitcoin" #. ½ (U+000BD), see http://wiki.documentfoundation.org/Emoji +#. nmwie #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13166,6 +14627,7 @@ msgstr "1/2" #. ⅓ (U+02153), see http://wiki.documentfoundation.org/Emoji +#. GCWJS #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13175,6 +14637,7 @@ msgstr "1/3" #. ¼ (U+000BC), see http://wiki.documentfoundation.org/Emoji +#. Lgj8u #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13184,6 +14647,7 @@ msgstr "1/4" #. ⅔ (U+02154), see http://wiki.documentfoundation.org/Emoji +#. uYJY7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13193,6 +14657,7 @@ msgstr "2/3" #. ¾ (U+000BE), see http://wiki.documentfoundation.org/Emoji +#. UP2KQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13202,6 +14667,7 @@ msgstr "3/4" #. ⅛ (U+0215B), see http://wiki.documentfoundation.org/Emoji +#. ZBRTd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13211,6 +14677,7 @@ msgstr "1/8" #. ⅜ (U+0215C), see http://wiki.documentfoundation.org/Emoji +#. wAAbx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13220,6 +14687,7 @@ msgstr "3/8" #. ⅝ (U+0215D), see http://wiki.documentfoundation.org/Emoji +#. CX2bs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13229,6 +14697,7 @@ msgstr "5/8" #. ⅞ (U+0215E), see http://wiki.documentfoundation.org/Emoji +#. J9HEX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13238,6 +14707,7 @@ msgstr "7/8" #. ¹ (U+000B9), see http://wiki.documentfoundation.org/Emoji +#. oFFdk #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13247,6 +14717,7 @@ msgstr "^1" #. ² (U+000B2), see http://wiki.documentfoundation.org/Emoji +#. tQbfE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13256,6 +14727,7 @@ msgstr "^2" #. ³ (U+000B3), see http://wiki.documentfoundation.org/Emoji +#. KChg6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13265,6 +14737,7 @@ msgstr "^3" #. ⁴ (U+02074), see http://wiki.documentfoundation.org/Emoji +#. FAXEo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13274,6 +14747,7 @@ msgstr "^4" #. ⁵ (U+02075), see http://wiki.documentfoundation.org/Emoji +#. mq4xj #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13283,6 +14757,7 @@ msgstr "^5" #. ⁶ (U+02076), see http://wiki.documentfoundation.org/Emoji +#. iwveQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13292,6 +14767,7 @@ msgstr "^6" #. ⁷ (U+02077), see http://wiki.documentfoundation.org/Emoji +#. pB4Eu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13301,6 +14777,7 @@ msgstr "^7" #. ⁸ (U+02078), see http://wiki.documentfoundation.org/Emoji +#. mC2zV #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13310,6 +14787,7 @@ msgstr "^8" #. ⁹ (U+02079), see http://wiki.documentfoundation.org/Emoji +#. uN9Qp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13319,6 +14797,7 @@ msgstr "^9" #. ⁰ (U+02070), see http://wiki.documentfoundation.org/Emoji +#. H3Zqf #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13328,6 +14807,7 @@ msgstr "^0" #. ⁺ (U+0207A), see http://wiki.documentfoundation.org/Emoji +#. GtmTo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13337,6 +14817,7 @@ msgstr "^+" #. ⁻ (U+0207B), see http://wiki.documentfoundation.org/Emoji +#. cKEWZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13346,6 +14827,7 @@ msgstr "^-" #. ⁼ (U+0207C), see http://wiki.documentfoundation.org/Emoji +#. ukJvM #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13355,6 +14837,7 @@ msgstr "^=" #. ⁽ (U+0207D), see http://wiki.documentfoundation.org/Emoji +#. ZMZdA #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13364,6 +14847,7 @@ msgstr "^(" #. ⁾ (U+0207E), see http://wiki.documentfoundation.org/Emoji +#. EaAEu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13373,6 +14857,7 @@ msgstr "^)" #. ₁ (U+02081), see http://wiki.documentfoundation.org/Emoji +#. TBS22 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13382,6 +14867,7 @@ msgstr "_1" #. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji +#. gL88Z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13391,6 +14877,7 @@ msgstr "_2" #. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji +#. gSTF9 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13400,6 +14887,7 @@ msgstr "_3" #. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji +#. qW6Ce #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13409,6 +14897,7 @@ msgstr "_4" #. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji +#. B4VTa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13418,6 +14907,7 @@ msgstr "_5" #. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji +#. WsC7f #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13427,6 +14917,7 @@ msgstr "_6" #. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji +#. 2rEnp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13436,6 +14927,7 @@ msgstr "_7" #. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji +#. 5SGSg #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13445,6 +14937,7 @@ msgstr "_8" #. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji +#. Kaa2h #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13454,6 +14947,7 @@ msgstr "_9" #. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji +#. op8an #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13463,6 +14957,7 @@ msgstr "_0" #. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji +#. FE6Lq #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13472,6 +14967,7 @@ msgstr "_+" #. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji +#. PdL5c #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13481,6 +14977,7 @@ msgstr "_-" #. ₌ (U+0208C), see http://wiki.documentfoundation.org/Emoji +#. 97EG8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13490,6 +14987,7 @@ msgstr "_=" #. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji +#. pF9N5 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13499,6 +14997,7 @@ msgstr "_(" #. ₎ (U+0208E), see http://wiki.documentfoundation.org/Emoji +#. kCT2R #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13508,6 +15007,7 @@ msgstr "_)" #. ᵃ (U+01D43), see http://wiki.documentfoundation.org/Emoji +#. huaxo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13517,6 +15017,7 @@ msgstr "^a" #. ᵇ (U+01D47), see http://wiki.documentfoundation.org/Emoji +#. pB7jZ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13526,6 +15027,7 @@ msgstr "^b" #. ᶜ (U+01D9C), see http://wiki.documentfoundation.org/Emoji +#. QymSR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13535,6 +15037,7 @@ msgstr "^c" #. ᵈ (U+01D48), see http://wiki.documentfoundation.org/Emoji +#. WWuF4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13544,6 +15047,7 @@ msgstr "^d" #. ᵉ (U+01D49), see http://wiki.documentfoundation.org/Emoji +#. DBFRu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13553,6 +15057,7 @@ msgstr "^e" #. ᶠ (U+01DA0), see http://wiki.documentfoundation.org/Emoji +#. FSSAb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13562,6 +15067,7 @@ msgstr "^f" #. ᵍ (U+01D4D), see http://wiki.documentfoundation.org/Emoji +#. wFF2B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13571,6 +15077,7 @@ msgstr "^g" #. ʰ (U+002B0), see http://wiki.documentfoundation.org/Emoji +#. 2pBei #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13580,6 +15087,7 @@ msgstr "^h" #. ⁱ (U+02071), see http://wiki.documentfoundation.org/Emoji +#. GtCEX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13589,6 +15097,7 @@ msgstr "^i" #. ʲ (U+002B2), see http://wiki.documentfoundation.org/Emoji +#. ikBkL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13598,6 +15107,7 @@ msgstr "^j" #. ᵏ (U+01D4F), see http://wiki.documentfoundation.org/Emoji +#. JNyVU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13607,6 +15117,7 @@ msgstr "^k" #. ˡ (U+002E1), see http://wiki.documentfoundation.org/Emoji +#. U8qEx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13616,6 +15127,7 @@ msgstr "^l" #. ᵐ (U+01D50), see http://wiki.documentfoundation.org/Emoji +#. Bb3N7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13625,6 +15137,7 @@ msgstr "^m" #. ⁿ (U+0207F), see http://wiki.documentfoundation.org/Emoji +#. oT4ts #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13634,6 +15147,7 @@ msgstr "^n" #. ᵒ (U+01D52), see http://wiki.documentfoundation.org/Emoji +#. ufK3e #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13643,6 +15157,7 @@ msgstr "^o" #. ᵖ (U+01D56), see http://wiki.documentfoundation.org/Emoji +#. CDWbH #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13652,6 +15167,7 @@ msgstr "^p" #. ʳ (U+002B3), see http://wiki.documentfoundation.org/Emoji +#. tHyqw #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13661,6 +15177,7 @@ msgstr "^r" #. ˢ (U+002E2), see http://wiki.documentfoundation.org/Emoji +#. CsBY6 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13670,6 +15187,7 @@ msgstr "^s" #. ᵗ (U+01D57), see http://wiki.documentfoundation.org/Emoji +#. aU39K #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13679,6 +15197,7 @@ msgstr "^t" #. ᵘ (U+01D58), see http://wiki.documentfoundation.org/Emoji +#. zDqKT #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13688,6 +15207,7 @@ msgstr "^u" #. ᵛ (U+01D5B), see http://wiki.documentfoundation.org/Emoji +#. KYKGm #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13697,6 +15217,7 @@ msgstr "^v" #. ʷ (U+002B7), see http://wiki.documentfoundation.org/Emoji +#. j9e8C #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13706,6 +15227,7 @@ msgstr "^w" #. ˣ (U+002E3), see http://wiki.documentfoundation.org/Emoji +#. Eiacc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13715,6 +15237,7 @@ msgstr "^x" #. ʸ (U+002B8), see http://wiki.documentfoundation.org/Emoji +#. XQPuC #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13724,6 +15247,7 @@ msgstr "^y" #. ᶻ (U+01DBB), see http://wiki.documentfoundation.org/Emoji +#. vnmnz #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13733,6 +15257,7 @@ msgstr "^z" #. ᴬ (U+01D2C), see http://wiki.documentfoundation.org/Emoji +#. WvCDU #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13742,6 +15267,7 @@ msgstr "^A" #. ᴮ (U+01D2E), see http://wiki.documentfoundation.org/Emoji +#. wGXNi #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13751,6 +15277,7 @@ msgstr "^B" #. ᴰ (U+01D30), see http://wiki.documentfoundation.org/Emoji +#. hVJVE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13760,6 +15287,7 @@ msgstr "^D" #. ᴱ (U+01D31), see http://wiki.documentfoundation.org/Emoji +#. 8Efke #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13769,6 +15297,7 @@ msgstr "^E" #. ᴳ (U+01D33), see http://wiki.documentfoundation.org/Emoji +#. pApe7 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13778,6 +15307,7 @@ msgstr "^G" #. ᴴ (U+01D34), see http://wiki.documentfoundation.org/Emoji +#. Bjk2Z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13787,6 +15317,7 @@ msgstr "^H" #. ᴵ (U+01D35), see http://wiki.documentfoundation.org/Emoji +#. UR8AR #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13796,6 +15327,7 @@ msgstr "^I" #. ᴶ (U+01D36), see http://wiki.documentfoundation.org/Emoji +#. uobRE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13805,6 +15337,7 @@ msgstr "^J" #. ᴷ (U+01D37), see http://wiki.documentfoundation.org/Emoji +#. DMNFo #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13814,6 +15347,7 @@ msgstr "^K" #. ᴸ (U+01D38), see http://wiki.documentfoundation.org/Emoji +#. bzESb #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13823,6 +15357,7 @@ msgstr "^L" #. ᴹ (U+01D39), see http://wiki.documentfoundation.org/Emoji +#. 2gTjB #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13832,6 +15367,7 @@ msgstr "^M" #. ᴺ (U+01D3A), see http://wiki.documentfoundation.org/Emoji +#. J5Gx4 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13841,6 +15377,7 @@ msgstr "^N" #. ᴼ (U+01D3C), see http://wiki.documentfoundation.org/Emoji +#. icthu #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13850,6 +15387,7 @@ msgstr "^O" #. ᴾ (U+01D3E), see http://wiki.documentfoundation.org/Emoji +#. zE85z #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13859,6 +15397,7 @@ msgstr "^P" #. ᴿ (U+01D3F), see http://wiki.documentfoundation.org/Emoji +#. jANLc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13868,6 +15407,7 @@ msgstr "^R" #. ᵀ (U+01D40), see http://wiki.documentfoundation.org/Emoji +#. VXTXF #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13877,6 +15417,7 @@ msgstr "^T" #. ᵁ (U+01D41), see http://wiki.documentfoundation.org/Emoji +#. CCEnp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13886,6 +15427,7 @@ msgstr "^U" #. ⱽ (U+02C7D), see http://wiki.documentfoundation.org/Emoji +#. CTtuW #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13895,6 +15437,7 @@ msgstr "^V" #. ᵂ (U+01D42), see http://wiki.documentfoundation.org/Emoji +#. tGGcN #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13904,6 +15447,7 @@ msgstr "^W" #. ₐ (U+02090), see http://wiki.documentfoundation.org/Emoji +#. mzsGJ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13913,6 +15457,7 @@ msgstr "_a" #. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji +#. AjRgG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13922,6 +15467,7 @@ msgstr "_e" #. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji +#. PEzPP #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13931,6 +15477,7 @@ msgstr "_h" #. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji +#. oVoDX #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13940,6 +15487,7 @@ msgstr "_i" #. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji +#. eAM4q #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13949,6 +15497,7 @@ msgstr "_j" #. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji +#. 5ZgCG #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13958,6 +15507,7 @@ msgstr "_k" #. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji +#. xvYvD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13967,6 +15517,7 @@ msgstr "_l" #. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji +#. GCDfd #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13976,6 +15527,7 @@ msgstr "_m" #. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji +#. GrwUs #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13985,6 +15537,7 @@ msgstr "_n" #. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji +#. ZG9m2 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -13994,6 +15547,7 @@ msgstr "_o" #. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji +#. HaoJt #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14003,6 +15557,7 @@ msgstr "_p" #. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji +#. Yeg7A #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14012,6 +15567,7 @@ msgstr "_r" #. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji +#. F3MHa #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14021,6 +15577,7 @@ msgstr "_s" #. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji +#. nKDsn #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14030,6 +15587,7 @@ msgstr "_t" #. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji +#. NqYaD #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14039,6 +15597,7 @@ msgstr "_u" #. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji +#. 6P9ZQ #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14048,6 +15607,7 @@ msgstr "_v" #. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji +#. BCsM8 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14057,6 +15617,7 @@ msgstr "_x" #. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji +#. gytmK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14066,6 +15627,7 @@ msgstr "^alpha" #. ᵝ (U+01D5D), see http://wiki.documentfoundation.org/Emoji +#. hrktE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14075,6 +15637,7 @@ msgstr "^beta" #. ᵞ (U+01D5E), see http://wiki.documentfoundation.org/Emoji +#. yqXNK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14084,6 +15647,7 @@ msgstr "^gamma" #. ᵟ (U+01D5F), see http://wiki.documentfoundation.org/Emoji +#. tL6DL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14093,6 +15657,7 @@ msgstr "^delta" #. ᵋ (U+01D4B), see http://wiki.documentfoundation.org/Emoji +#. w3K77 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14102,6 +15667,7 @@ msgstr "^epsilon" #. ᶿ (U+01DBF), see http://wiki.documentfoundation.org/Emoji +#. xgw47 #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14111,6 +15677,7 @@ msgstr "^theta" #. ᶥ (U+01DA5), see http://wiki.documentfoundation.org/Emoji +#. mAHBc #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14120,6 +15687,7 @@ msgstr "^iota" #. ᶲ (U+01DB2), see http://wiki.documentfoundation.org/Emoji +#. W2CJE #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14129,6 +15697,7 @@ msgstr "^Phi" #. ᵠ (U+01D60), see http://wiki.documentfoundation.org/Emoji +#. x68Va #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14138,6 +15707,7 @@ msgstr "^phi" #. ᵡ (U+01D61), see http://wiki.documentfoundation.org/Emoji +#. t9p8B #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14147,6 +15717,7 @@ msgstr "^chi" #. ᵦ (U+01D66), see http://wiki.documentfoundation.org/Emoji +#. ZTjXp #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14156,6 +15727,7 @@ msgstr "_beta" #. ᵧ (U+01D67), see http://wiki.documentfoundation.org/Emoji +#. XTDCK #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14165,6 +15737,7 @@ msgstr "_gamma" #. ᵨ (U+01D68), see http://wiki.documentfoundation.org/Emoji +#. GFHAL #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14174,6 +15747,7 @@ msgstr "_rho" #. ᵩ (U+01D69), see http://wiki.documentfoundation.org/Emoji +#. SFGWx #: emoji.ulf msgctxt "" "emoji.ulf\n" @@ -14183,6 +15757,7 @@ msgstr "_phi" #. ᵪ (U+01D6A), see http://wiki.documentfoundation.org/Emoji +#. QZ79t #: emoji.ulf msgctxt "" "emoji.ulf\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/formula/messages.po libreoffice-7.1.3~rc2/translations/source/id/formula/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/formula/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/formula/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-06-08 13:18+0000\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" "Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557389977.000000\n" #. YfKFn @@ -2673,7 +2673,7 @@ #: formula/uiconfig/ui/functionpage.ui:156 msgctxt "functionpage|extended_tip|FunctionPage" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "" +msgstr "Membuka Wisaya Fungsi, yang membantu Anda untuk secara interaktif membuat rumus." #. GCYUY #: formula/uiconfig/ui/parameter.ui:27 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/fpicker/messages.po libreoffice-7.1.3~rc2/translations/source/id/fpicker/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/fpicker/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/fpicker/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-01-17 18:07+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1538497466.000000\n" #. SJGCw @@ -256,13 +256,13 @@ #: fpicker/uiconfig/ui/remotefilesdialog.ui:264 msgctxt "remotefilesdialog|list_view|tooltip_text" msgid "List view" -msgstr "Tilikan daftar" +msgstr "Tampilan daftar" #. xxBtB #: fpicker/uiconfig/ui/remotefilesdialog.ui:279 msgctxt "remotefilesdialog|icon_view|tooltip_text" msgid "Icon view" -msgstr "Tilikan ikon" +msgstr "Tampilan ikon" #. 6CiqC #: fpicker/uiconfig/ui/remotefilesdialog.ui:295 @@ -304,7 +304,7 @@ #: include/fpicker/strings.hrc:14 msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION" msgid "~Automatic file name extension" -msgstr "Otom~atis disertai ekstensi" +msgstr "Ekstensi nama berkas otom~atis" #. 2DxYf #: include/fpicker/strings.hrc:15 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/scalc/05.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/scalc/05.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/scalc/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/scalc/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-03-29 19:16+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1543649718.000000\n" #. Cxzki @@ -329,7 +329,7 @@ "par_id3145635\n" "help.text" msgid "Compiler: an identifier in the formula exceeds 64 kB in size. Interpreter: a result of a string operation exceeds 64 kB in size." -msgstr "" +msgstr "Compiler: ukuran suatu identifier dalam rumus melebihi 64 kB. Interpreter: ukuran suatu hasil dari operasi string melebihi 64 kB." #. E7ohJ #: 02140000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/sdraw/00.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/sdraw/00.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/sdraw/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/sdraw/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:42+0100\n" -"PO-Revision-Date: 2020-02-01 14:33+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1494378415.000000\n" #. EDSDr @@ -50,7 +50,7 @@ "par_id341556823034391\n" "help.text" msgid "Choose Page - Page Properties " -msgstr "" +msgstr "Pilih Halaman - Properti Halaman " #. h9HDn #: page_menu.xhp @@ -59,7 +59,7 @@ "par_id561556823042778\n" "help.text" msgid "Choose Page - Page Properties and then click the Page tab " -msgstr "" +msgstr "Pilih Halaman - Properti Halaman lalu klik tab Halaman " #. 6eTqD #: page_menu.xhp @@ -68,7 +68,7 @@ "par_id321556823043909\n" "help.text" msgid "Choose Page - Page Properties and then click the Background tab " -msgstr "" +msgstr "Pilih Halaman - Properti Halaman lalu klik tab Latar Belakang " #. UqCyU #: page_menu.xhp @@ -77,7 +77,7 @@ "par_id941556823044342\n" "help.text" msgid "Choose Page - Master Page " -msgstr "" +msgstr "Pilih Halaman - Halaman Induk " #. paRMk #: page_menu.xhp @@ -86,7 +86,7 @@ "par_id191556823044529\n" "help.text" msgid "Choose Page - New Page" -msgstr "" +msgstr "Pilih Halaman - Halaman Baru" #. EpBTa #: page_menu.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: libo 4.3 help shared/01\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-04-04 18:16+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" @@ -15393,33 +15393,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Kapital kecil - Mengubah karakter huruf kecil yang dipilih ke karakter huruf besar, dan kemudian mengurangi ukuran mereka." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "fonta berkelip fonta berkilat" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Pengikatan" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Membuat karakter yang dipilih berkedip. Anda tidak dapat merubah frekuensi kedip." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/05.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/05.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-02-01 14:36+0000\n" -"Last-Translator: artemtech \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550173936.000000\n" #. WPTtk @@ -635,7 +635,7 @@ "par_id3148673\n" "help.text" msgid "The navigation pane of the Help window contains the tab pages Contents, Index, Find and Bookmarks." -msgstr "Panel navigasi dari jendela Bantuan memuat halaman tab Isi, Indeks, Cari, dan Penanda Taut." +msgstr "Panel navigasi dari jendela Bantuan memuat halaman tab Isi, Indeks, Cari, dan Markah." #. FkVic #: 00000110.xhp @@ -707,7 +707,7 @@ "par_id3154985\n" "help.text" msgid "Bookmarks" -msgstr "Penanda" +msgstr "Markah" #. AypHA #: 00000110.xhp @@ -716,7 +716,7 @@ "par_id3156062\n" "help.text" msgid "Contains user-defined bookmarks. You can edit or delete bookmarks, or click them to go to the corresponding pages." -msgstr "Memuat penanda taut yang didefinisikan oleh pengguna. Anda dapat menyunting atau menghapus penanda taut, atau mengklik mereka untuk menuju ke halaman yang terkait." +msgstr "Memuat markah yang ditentukan oleh pengguna. Anda dapat menyunting atau menghapus markah, atau mengkliknya untuk menuju ke halaman yang terkait." #. oZkWs #: 00000120.xhp @@ -1040,7 +1040,7 @@ "tit\n" "help.text" msgid "Managing Bookmarks" -msgstr "Mengelola Penanda" +msgstr "Mengelola Markah" #. SkFUB #: 00000150.xhp @@ -1085,7 +1085,7 @@ "par_id3145314\n" "help.text" msgid "Use the Add to Bookmarks icon to set a bookmark for the current page shown in the Help." -msgstr "Gunakan ikon Tambahkan ke Penanda untuk mengatur penanda bagi halaman yang kini ditampilkan dalam Bantuan." +msgstr "Gunakan ikon Tambahkan ke Markah untuk mengatur markah bagi halaman yang kini ditampilkan dalam Bantuan." #. UK7NF #: 00000150.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/autopi.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-02-01 14:36+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-18 08:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551151157.000000\n" #. hCAzG @@ -23,7 +23,7 @@ "tit\n" "help.text" msgid "Wizard" -msgstr "Panduan" +msgstr "Wisaya" #. 27Ect #: 01000000.xhp @@ -32,7 +32,7 @@ "bm_id3152551\n" "help.text" msgid "wizards; overviewAutoPilots, see wizards" -msgstr "panduan; ikhtisarPilot Otomatis, lihat panduan" +msgstr "wisaya; ikhtisarPilot Otomatis, lihat wisaya" #. uWmcx #: 01000000.xhp @@ -5729,7 +5729,7 @@ "hd_id3147089\n" "help.text" msgid "Email address" -msgstr "" +msgstr "Alamat surel" #. Bm9Gp #: 01110400.xhp @@ -5738,7 +5738,7 @@ "par_id3166460\n" "help.text" msgid "Specifies the email address." -msgstr "" +msgstr "Menentukan alamat surel." #. VhjgN #: 01110400.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/help.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/help.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/shared/help.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/shared/help.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-02-01 14:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1546700739.000000\n" #. jdDhb @@ -140,7 +140,7 @@ "par_id211591971675557\n" "help.text" msgid "Enable JavaScript in the browser to display %PRODUCTNAME Help pages." -msgstr "" +msgstr "Fungsikan JavaScript dalam peramban untuk menampilkan halaman Bantuan %PRODUCTNAME." #. DXqYQ #: browserhelp.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/smath.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/smath.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/smath.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/smath.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:43+0100\n" -"PO-Revision-Date: 2019-02-24 06:28+0000\n" -"Last-Translator: Mokhamad Asif \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-09 09:37+0000\n" +"Last-Translator: Andika Triwidada \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550989683.000000\n" #. yKBT5 @@ -171,12 +171,13 @@ #. cnAYC #: main0103.xhp +#, fuzzy msgctxt "" "main0103.xhp\n" "par_id3147338\n" "help.text" msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the Commands window can also be accessed through a mouse click if you have already opened the Elements pane with View - Elements." -msgstr "" +msgstr "Menata skala tampilan dan menentukan elemen mana yang Anda inginkan agar nampak. Kebanyakan perintah yang bisa Anda ketik pada jendela Perintah juga dapat Anda akses melalui klik tetikus apabila Anda sudah membuka panel Elemen dengan mengklik Tilikan - Elemen." #. ZJSDS #: main0103.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/00.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/00.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2020-02-01 14:30+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550993036.000000\n" #. E9tti @@ -401,7 +401,7 @@ "par_id3149502\n" "help.text" msgid "Choose View - Rulers - Rulers " -msgstr "" +msgstr "Pilih Tampulan - Penggaris - Penggaris " #. 6RRMA #: 00000403.xhp @@ -410,7 +410,7 @@ "par_id3148871\n" "help.text" msgid "Choose View - Text Boundaries " -msgstr "" +msgstr "Pilih Tampilan - Batas Teks " #. nnySY #: 00000403.xhp @@ -419,7 +419,7 @@ "par_id3153248\n" "help.text" msgid "Choose View - Field Shadings" -msgstr "" +msgstr "Pilih Tampilan - Bayangan Ruas" #. JRFUp #: 00000403.xhp @@ -428,7 +428,7 @@ "par_id3154763\n" "help.text" msgid "CommandCtrl+F8" -msgstr "" +msgstr "CommandCtrl+F8" #. wYngB #: 00000403.xhp @@ -437,7 +437,7 @@ "par_id3149052\n" "help.text" msgid "Choose View - Field Names" -msgstr "" +msgstr "Pilih Tampilan - Nama Ruas" #. krDbj #: 00000403.xhp @@ -446,7 +446,7 @@ "par_id3151387\n" "help.text" msgid "CommandCtrl+F9" -msgstr "" +msgstr "CommandCtrl+F9" #. VgPmS #: 00000403.xhp @@ -932,7 +932,7 @@ "par_id3150587\n" "help.text" msgid "Choose Insert - Bookmark" -msgstr "Pilih Sisip - Penanda" +msgstr "Pilih Sisip - Markah" #. 2Eb4B #: 00000404.xhp @@ -959,7 +959,7 @@ "par_id3150689\n" "help.text" msgid "Bookmark" -msgstr "Penanda Buku" +msgstr "Markah" #. t5HbC #: 00000404.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: swriter 3.6\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2020-05-27 09:52+0000\n" -"Last-Translator: Andik Nur Achmad \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-15 05:09+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550993607.000000\n" #. sZfWF @@ -5324,7 +5324,7 @@ "tit\n" "help.text" msgid "Insert Bookmark" -msgstr "Sisipkan Penanda Taut" +msgstr "Sisipkan Markah" #. FuA3L #: 04040000.xhp @@ -5342,7 +5342,7 @@ "hd_id3147506\n" "help.text" msgid "Insert Bookmark" -msgstr "Sisipkan Penanda Taut" +msgstr "Sisipkan Markah" #. GdJ4q #: 04040000.xhp @@ -5351,7 +5351,7 @@ "par_id3149806\n" "help.text" msgid "Inserts a bookmark at the cursor position. You can then use the Navigator to quickly jump to the marked location at a later time. In an HTML document, bookmarks are converted to anchors that you can jump to from a hyperlink." -msgstr "" +msgstr "Menyisipkan markah pada posisi kursor. Anda kemudian dapat menggunakan Navigator untuk dengan cepat melompat ke lokasi yang diberi markah di lain waktu. Dalam dokumen HTML, markah akan diubah menjadi jangkar yang dapat dikunjungi dari pranala." #. DA74C #: 04040000.xhp @@ -7169,7 +7169,7 @@ "par_id3155862\n" "help.text" msgid "Set Reference" -msgstr "Sisip Referensi" +msgstr "Sisip Rujukan" #. nD596 #: 04090002.xhp @@ -7205,7 +7205,7 @@ "par_id3147746\n" "help.text" msgid "Inserting a reference to another position in the document. The corresponding text position has to be defined with \"Set Reference\" first. Otherwise, inserting a reference by choosing a field name under Selection is not possible." -msgstr "Menyisipkan suatu acuan ke posisi lain dalam dokumen. Posisi teks terkait mesti didefinisikan sebelumnya dengan \"Atur Acuan\". Bila tidak, menyisipkan suatu acuan dengan memilih sebuah nama ruas di bawah Pilihan tidak mungkin." +msgstr "Menyisipkan suatu rujukan ke posisi lain dalam dokumen. Posisi teks terkait harus ditentukan sebelumnya dengan \"Buat Rujukan\". Jika tidak, menyisipkan suatu rujukan dengan memilih sebuah nama ruas di bawah Pilihan tidak akan mungkin." #. gGk3v #: 04090002.xhp @@ -7322,7 +7322,7 @@ "par_id7096774\n" "help.text" msgid "You can set references to objects that have captions applied. For example, insert a picture, right-click the picture, choose Caption. Now the object shows up as a numbered \"Illustration\" in the list." -msgstr "Anda dapat menata acuan ke objek yang punya kapsi. Sebagai contoh, sisipkan sebuah gambar, klik kanan gambar tersebut, pilih Kapsi. Kini objek muncul sebagai \"Ilustrasi\" bernomor dalam daftar." +msgstr "Anda dapat menata rujukan ke objek yang memiliki kapsi. Sebagai contoh, sisipkan sebuah gambar, klik kanan gambar tersebut, pilih Kapsi. Kini objek muncul sebagai \"Ilustrasi\" bernomor dalam daftar." #. 3Uoa3 #: 04090002.xhp @@ -25864,7 +25864,7 @@ "par_id3148388\n" "help.text" msgid "A separator, such as a tab, marks the column boundaries in the selected text. Each paragraph in the selection is converted into a row in the table. Similarly, when you convert a table into text, the column markers are changed to the character that you specify, and each row is converted into a separate paragraph." -msgstr "Pemisah, seperti tab, menandai batas kolom dalam teks yang dipilih. Setiap paragraf dalam seleksi dikonversi menjadi baris dalam tabel. Demikian pula, ketika Anda mengonversi tabel menjadi teks, penanda kolom diubah ke karakter yang Anda tentukan, dan setiap baris dikonversi menjadi paragraf terpisah." +msgstr "Pemisah, seperti tab, menandai batas kolom dalam teks yang dipilih. Setiap paragraf yang dipilih diubah menjadi baris dalam tabel. Demikian pula, ketika Anda mengubah tabel menjadi teks, penanda kolom diubah ke karakter yang Anda tentukan, dan setiap baris dikonversi menjadi paragraf terpisah." #. XPoRD #: 06090000.xhp @@ -25999,7 +25999,7 @@ "hd_id3154097\n" "help.text" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. ZZGPi #: 06090000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/02.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/02.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-03-29 19:16+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550994264.000000\n" #. SGjBV @@ -3704,7 +3704,7 @@ "hd_id3145774\n" "help.text" msgid "Insert Bookmark" -msgstr "Sisip Penanda Buku" +msgstr "Sisip Markah" #. J6RpX #: 19040000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/04.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/04.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-03-13 12:06+0100\n" -"PO-Revision-Date: 2020-03-29 19:16+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-03-30 05:36+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550991251.000000\n" #. brcGC @@ -356,7 +356,7 @@ "par_id9048432\n" "help.text" msgid "Block selection mode" -msgstr "Mode seleksi blok" +msgstr "Mode pemilihan blok" #. DYGmM #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-04-04 18:16+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-18 08:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565211940.000000\n" #. XAt2Y @@ -50,7 +50,7 @@ "par_id3147251\n" "help.text" msgid "You can use anchors to position an object, graphic, or frame in a document. An anchored item remains in place, or moves when you modify the document. The following anchoring options are available:" -msgstr "Anda bisa menggunakan tambatan untuk memposisikan objek, grafis, atau bingkai di dalam dokumen. Sebuah item yang telah ditambatkan akan tetap di lokasinya, atau berpindah apabila Anda mengubah dokumen tersebut. Pilihan penambatan berikut tersedia:" +msgstr "Anda bisa menggunakan tambatan untuk memposisikan objek, citra, atau bingkai di dalam dokumen. Sebuah item yang telah ditambatkan akan tetap di lokasinya, atau berpindah apabila Anda mengubah dokumen tersebut. Pilihan penambatan berikut tersedia:" #. mWome #: anchor_object.xhp @@ -9680,7 +9680,7 @@ "bm_id3145778\n" "help.text" msgid "bookmarks; positioning cursor jumping;to bookmarks" -msgstr "penanda buku; menempatkan kursor melompat;ke penanda buku" +msgstr "markah; menempatkan kursor melompat;ke markah" #. LFNZW #: jump2statusbar.xhp @@ -9698,7 +9698,7 @@ "par_id3155178\n" "help.text" msgid "To go to a specific bookmark in your document, hold down Ctrl and click right-click in the Page field on the Status Bar, and then choose the bookmark." -msgstr "Untuk membuka bookmark tertentu di dokumen Anda, tahan Ctrl dan klik klik kanan dalam Halaman bidang pada Status bar, lalu pilih bookmark." +msgstr "Untuk membuka bookmark tertentu di dokumen Anda, tahan Ctrl dan klik klik kanan dalam Halaman bidang pada Bilah Status, lalu pilih markah." #. uBAeJ #: jump2statusbar.xhp @@ -9707,7 +9707,7 @@ "par_id3153396\n" "help.text" msgid "Insert Bookmark" -msgstr "Sisip Penanda Buku" +msgstr "Sisip Markah" #. 9iJZi #: keyboard.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/id/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-03-29 19:16+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-10 16:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550992471.000000\n" #. P7iNX @@ -1004,7 +1004,7 @@ "hd_id3147281\n" "help.text" msgid "Bookmark" -msgstr "Penanda Buku" +msgstr "Markah" #. Bed3E #: main0104.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.1.3~rc2/translations/source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.1.2~rc2/translations/source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,27 +3,29 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-11-09 14:10+0100\n" -"PO-Revision-Date: 2018-12-02 11:58+0000\n" -"Last-Translator: Andik Nur Achmad \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-11 06:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1543751911.000000\n" +#. XpeLj #: Options.xhp msgctxt "" "Options.xhp\n" "tit\n" "help.text" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" +#. GfZUJ #: Options.xhp msgctxt "" "Options.xhp\n" @@ -32,6 +34,7 @@ msgid "Solver for Nonlinear Problems;Options" msgstr "Pemecah Masalah-masalah Nonlinier;Opsi" +#. FCECT #: Options.xhp msgctxt "" "Options.xhp\n" @@ -40,6 +43,7 @@ msgid "General Options" msgstr "Opsi Umum" +#. ZkCEe #: Options.xhp msgctxt "" "Options.xhp\n" @@ -48,6 +52,7 @@ msgid "Size of Swarm" msgstr "Ukuran Gerombolan" +#. hRGYs #: Options.xhp msgctxt "" "Options.xhp\n" @@ -56,6 +61,7 @@ msgid "… defines the number of individuals to participate in the learning process. Each individual finds its own solutions and contributes to the overall knowledge." msgstr "... menentukan banyaknya individu yang berpartisipasi dalam proses belajar. Setiap individu menemukan solusinya sendiri dan menyumbang ke pengetahuan secara keseluruhan." +#. zReEK #: Options.xhp msgctxt "" "Options.xhp\n" @@ -64,6 +70,7 @@ msgid "Learning Cycles" msgstr "Siklus Belajar" +#. mDzwh #: Options.xhp msgctxt "" "Options.xhp\n" @@ -72,6 +79,7 @@ msgid "… defines the number of iterations, the algorithm should take. In each iteration, all individuals make a guess on the best solution and share their knowledge." msgstr "... menentukan banyaknya iterasi yang mesti dijalankan oleh algoritma. Dalam setiap iterasi, semua individu membuat sebuah tebakan atas solusi terbaik dan membagikan pengetahuan mereka." +#. SWBAK #: Options.xhp msgctxt "" "Options.xhp\n" @@ -80,6 +88,7 @@ msgid "Variable Bounds Guessing" msgstr "Tebakan Batas Variabel" +#. 86AX8 #: Options.xhp msgctxt "" "Options.xhp\n" @@ -88,6 +97,7 @@ msgid "If enabled (default), the algorithm tries to find variable bounds by looking at the starting values." msgstr "Bila diaktifkan (bawaan), algoritma mencoba mencari batas variabel dengan melihat nilai awalan." +#. 7tnqA #: Options.xhp msgctxt "" "Options.xhp\n" @@ -96,6 +106,7 @@ msgid "Variable Bounds Threshold" msgstr "Ambang Batas Variabel" +#. 6fpGp #: Options.xhp msgctxt "" "Options.xhp\n" @@ -104,6 +115,7 @@ msgid "When guessing variable bounds, this threshold specifies, how the initial values are shifted to build the bounds. For an example how these values are calculated, please refer to the Manual in the Wiki." msgstr "Ketika menebak batas variabel, ambang ini menyatakan, bagaimana nilai awal digeser untuk membangun batas-batas. Untuk contoh bagaimana nilai-nilai ini dihitung, silakan mengacu ke Manual di Wiki." +#. 4nKkq #: Options.xhp msgctxt "" "Options.xhp\n" @@ -112,6 +124,7 @@ msgid "Use ACR Comparator" msgstr "Pakai Pembanding ACR" +#. eVij6 #: Options.xhp msgctxt "" "Options.xhp\n" @@ -120,6 +133,7 @@ msgid "If disabled (default), the BCH Comparator is used. It compares two individuals by first looking at their constraint violations and only if those are equal, it measures their current solution." msgstr "Bila dinonaktifkan (bawaan), Pembanding BCH dipakai. Ini membandingkan dua individu dengan pertama kali melihat ke pelanggaran pembatasan dan hanya bila mereka sama, itu mengukur solusi mereka saat ini." +#. wHTo3 #: Options.xhp msgctxt "" "Options.xhp\n" @@ -128,6 +142,7 @@ msgid "If enabled, the ACR Comparator is used. It compares two individuals dependent on the current iteration and measures their goodness with knowledge about the libraries worst known solutions (in regard to their constraint violations)." msgstr "Bila diaktifkan, Pembanding ACR dipakai. Ini membandingkan dua individu bergantung kepada iterasi saat ini dan mengukur kebaikannya dengan pengetahuan tentang pustaka solusi terburuk yang diketahui (berkaitan dengan pelanggaran pembatasan)." +#. 5jPbx #: Options.xhp msgctxt "" "Options.xhp\n" @@ -136,6 +151,7 @@ msgid "Use Random Starting Point" msgstr "Gunakan Titik Awal Acak" +#. pt3XB #: Options.xhp msgctxt "" "Options.xhp\n" @@ -144,6 +160,7 @@ msgid "If enabled, the library is simply filled up with randomly chosen points." msgstr "Bila diaktifkan, pustaka sekedar dipenuhi dengan titik-titik yang dipilih secara acak." +#. HFv6w #: Options.xhp msgctxt "" "Options.xhp\n" @@ -152,6 +169,7 @@ msgid "If disabled, the currently present values (as given by the user) are inserted in the library as reference point." msgstr "Bila dinonaktifkan, nilai yang kini ada (yang diberikan oleh pengguna) disisipkan dalam pustaka sebagai titik acuan." +#. TYEBG #: Options.xhp msgctxt "" "Options.xhp\n" @@ -160,6 +178,7 @@ msgid "Stagnation Limit" msgstr "Batas Stagnasi" +#. nWRYK #: Options.xhp msgctxt "" "Options.xhp\n" @@ -168,6 +187,7 @@ msgid "If this number of individuals found solutions within a close range, the iteration is stopped and the best of these values is chosen as optimal." msgstr "Bila sejumlah individu ini menemukan solusi dalam suatu jangkauan yang pendek, iterasi dihentkan dan yang terbaik dari nilai-nilai ini dipilih sebagai optimal." +#. UFcxy #: Options.xhp msgctxt "" "Options.xhp\n" @@ -176,6 +196,7 @@ msgid "Stagnation Tolerance" msgstr "Toleransi Stagnasi" +#. F3qEp #: Options.xhp msgctxt "" "Options.xhp\n" @@ -184,6 +205,7 @@ msgid "Defines in what range solutions are considered “similar”." msgstr "Menentukan dalam jangkauan apa solusi-solusi dianggap “mirip”." +#. RUbSm #: Options.xhp msgctxt "" "Options.xhp\n" @@ -192,6 +214,7 @@ msgid "Show Enhanced Solver Status" msgstr "Tampilkan Status Pemecah Yang Ditingkatkan" +#. zmkYh #: Options.xhp msgctxt "" "Options.xhp\n" @@ -200,6 +223,7 @@ msgid "If enabled, an additional dialog is shown during the solving process which gives information about the current progress, the level of stagnation, the currently best known solution as well as the possibility, to stop or resume the solver." msgstr "Bila difungsikan, suatu dialog tambahan ditampilkan selama proses pemecahan yang memberi informasi tentang kemajuan saat ini, tingkat stagnasi, solusi terbaik yang diketahui saat ini maupun kemungkinannya, untuk menghentikan atau melanjutkan pemecah." +#. KH5yg #: Options.xhp msgctxt "" "Options.xhp\n" @@ -208,6 +232,7 @@ msgid "DEPS-specific Options" msgstr "Opsi spesifik DEPS" +#. ZU7FF #: Options.xhp msgctxt "" "Options.xhp\n" @@ -216,6 +241,7 @@ msgid "Agent Switch Rate" msgstr "Laju Perpindahan Agen" +#. 2zhCp #: Options.xhp msgctxt "" "Options.xhp\n" @@ -224,6 +250,7 @@ msgid "Specifies the probability for an individual to choose the Differential Evolution strategy." msgstr "Menyatakan probabilitas bagi suatu individu untuk memilih strategi Evolusi Diferensial." +#. 2yhKo #: Options.xhp msgctxt "" "Options.xhp\n" @@ -232,6 +259,7 @@ msgid "DE: Crossover Probability" msgstr "DE: Probabilitas Crossover" +#. eDjrN #: Options.xhp msgctxt "" "Options.xhp\n" @@ -240,6 +268,7 @@ msgid "… defines the probability of the individual being combined with the globally best point. If crossover is not used, the point is assembled from the own memory of the individual." msgstr "... menentukan probabilitas dari individu yang sedang digabung dengan titik terbaik secara global. Bila crossover tak dipakai, titik dirakit dari memori miliki individu." +#. DfF2d #: Options.xhp msgctxt "" "Options.xhp\n" @@ -248,6 +277,7 @@ msgid "DE: Scaling Factor" msgstr "DE: Faktor Penskalaan" +#. ThmU9 #: Options.xhp msgctxt "" "Options.xhp\n" @@ -256,6 +286,7 @@ msgid "During crossover, the scaling factor decides about the “speed” of movement." msgstr "Selama crossover, faktor penskalaan menentukan “kecepatan” pergerakan." +#. pxYLF #: Options.xhp msgctxt "" "Options.xhp\n" @@ -264,6 +295,7 @@ msgid "PS: Constriction Coefficient" msgstr "PS: Koefisien Konstriksi" +#. CPpbg #: Options.xhp msgctxt "" "Options.xhp\n" @@ -272,6 +304,7 @@ msgid "… defines the speed at which the particles/individuals move towards each other." msgstr "... menentukan kecepatan pegerakan partikel/individu ke arah satu sama lain." +#. dGVYP #: Options.xhp msgctxt "" "Options.xhp\n" @@ -280,6 +313,7 @@ msgid "PS: Cognitive Constant" msgstr "PS: Konstanta Kognitif" +#. HmszE #: Options.xhp msgctxt "" "Options.xhp\n" @@ -288,6 +322,7 @@ msgid "… sets the importance of the own memory (in particular the best reached point so far)." msgstr "... menata tingkat kepentingan memori sendiri (khususnya titik terbaik yang dicapai sampai saat ini)." +#. ktGLv #: Options.xhp msgctxt "" "Options.xhp\n" @@ -296,6 +331,7 @@ msgid "PS: Social Constant" msgstr "PS: Konstanta Sosial" +#. CkqZA #: Options.xhp msgctxt "" "Options.xhp\n" @@ -304,6 +340,7 @@ msgid "… sets the importance of the global best point between all particles/individuals." msgstr "... menata tingkat kepentingan dari titik terbaik global antara semua partikel/individu." +#. BAGAU #: Options.xhp msgctxt "" "Options.xhp\n" @@ -312,6 +349,7 @@ msgid "PS: Mutation Probability" msgstr "PS: Probabilitas Mutasi" +#. CyJWk #: Options.xhp msgctxt "" "Options.xhp\n" @@ -320,6 +358,7 @@ msgid "… defines the probability, that instead of moving a component of the particle towards the best point, it randomly chooses a new value from the valid range for that variable." msgstr "... menentukan probabilitas, yang daripada menggerakkan suatu komponen dari partikel menuju titik terbaik, ia memilih secara acak suatu nilai baru dari jangkauan yang valid bagi variabel tersebut." +#. JbhLh #: Options.xhp msgctxt "" "Options.xhp\n" @@ -328,6 +367,7 @@ msgid "SCO-specific Options" msgstr "Opsi Spesifik SCO" +#. zCr2J #: Options.xhp msgctxt "" "Options.xhp\n" @@ -336,6 +376,7 @@ msgid "Size of Library" msgstr "Ukuran Pustaka" +#. RSA7B #: Options.xhp msgctxt "" "Options.xhp\n" @@ -344,6 +385,7 @@ msgid "… defines the amount of information to store in the public library. Each individual stores knowledge there and asks for information." msgstr "... menentukan banyaknya informasi yang disimpan dalam pustaka publik. Setiap individu menyimpan pengetahuan di sana dan menanyakan informasi." +#. CoicK #: Usage.xhp msgctxt "" "Usage.xhp\n" @@ -352,6 +394,7 @@ msgid "Usage" msgstr "Cara Pakai" +#. B5wxZ #: Usage.xhp msgctxt "" "Usage.xhp\n" @@ -360,6 +403,7 @@ msgid "Solver for Nonlinear Problems;Usage" msgstr "Pemecah bagi Masalah Nonlinier;Cara pakai" +#. FXuKu #: Usage.xhp msgctxt "" "Usage.xhp\n" @@ -368,6 +412,7 @@ msgid "Usage" msgstr "Cara Pakai" +#. R7si5 #: Usage.xhp msgctxt "" "Usage.xhp\n" @@ -376,6 +421,7 @@ msgid "Regardless whether you use DEPS or SCO, you start by going to Tools - Solver and set the Cell to be optimized, the direction to go (minimization, maximization) and the cells to be modified to reach the goal. Then you go to the Options and specify the solver to be used and if necessary adjust the according parameters." msgstr "Tanpa peduli apakah Anda memakai DEPS atau SCO, Anda memulai dari Perkakas → Pemecah dan menata Sell yang akan dipotimasi, arah pergi (minimisasi, maksimisasi), dan sel yang akan diubah untuk mencapai tujuan. Lalu Anda pergi ke Opsi dan menyatakan pemecah yang akan dipakai dan bila perlu menyetel parameter yang bersesuaian." +#. iuEnw #: Usage.xhp msgctxt "" "Usage.xhp\n" @@ -384,6 +430,7 @@ msgid "There is also a list of constraints you can use to restrict the possible range of solutions or to penalize certain conditions. However, in case of the evolutionary solvers DEPS and SCO, these constraints are also used to specify bounds on the variables of the problem. Due to the random nature of the algorithms, it is highly recommended to do so and give upper (and in case \"Assume Non-Negative Variables\" is turned off also lower) bounds for all variables. They don't have to be near the actual solution (which is probably unknown) but should give a rough indication of the expected size (0 ≤ var ≤ 1 or maybe -1000000 ≤ var ≤ 1000000)." msgstr "Juga ada daftar konstrain yang dapat Anda pakai untuk membatasi jangkauan yang mungkin dari solusi atau untuk mempenalti kondisi tertentu. Namun, dalam kasus pemecah evolusioner DEPS dan SCO, konstrain ini juga dipakai untuk menyatakan batas pada variabel masalah. Karena sifat alami algoritma yang acak, sangat dianjurkan untuk melakukan hal itu dan memberikan batas atas (dan dalam kasus \"Asumsikan Variabel Non-Negatif\" dimatikan juga batas bawah) bagi semua variabel. Mereka tidak harus dekat dengan solusi sebenarnya (yang mungkin tak diketahui) tapi mesti memberikan petunjuk kasar atas ukuran yang diharapkan (0 ≤ var ≤ 1 atau mungkin -1000000 ≤ var ≤ 1000000)." +#. E5pcq #: Usage.xhp msgctxt "" "Usage.xhp\n" @@ -392,6 +439,7 @@ msgid "Bounds are specified by selecting one or more variables (as range) on the left side and entering a numerical value (not a cell or a formula) on the right side. That way you can also choose one or more variables to be Integer or Binary only." msgstr "Batas dinyatakan dengan memilih satu variabel atau lebih (sebagai jangkauan) pada sisi kiri dan memasukkan suatu nila numerik (bukan suatu sel atau rumus) pada sisi kanan. Dengan cara itu Anda juga dapt memilih satu variabel atau lebih agar hanya berupa Bilangan Bulat atau Biner." +#. 4SEEA #: help.tree msgctxt "" "help.tree\n" @@ -400,6 +448,7 @@ msgid "Solver for Nonlinear Problems" msgstr "Pemecah bagi Masalah Nonlinier" +#. 3sHVz #: help.tree msgctxt "" "help.tree\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-01-03 14:36+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564751755.000000\n" #. W5ukN @@ -1384,7 +1384,7 @@ "ContextLabel\n" "value.text" msgid "Icon Set..." -msgstr "Set Ikon..." +msgstr "Himpunan Ikon..." #. Jsx5v #: CalcCommands.xcu @@ -2794,7 +2794,7 @@ "ContextLabel\n" "value.text" msgid "~Named Range or Expression..." -msgstr "Ekspresi atau Rentang Ber~Nama..." +msgstr "Ekspresi atau Rentang Ber~nama..." #. N5F33 #: CalcCommands.xcu @@ -4224,7 +4224,7 @@ "Label\n" "value.text" msgid "~Pivot Table" -msgstr "Tabel ~Pokok" +msgstr "Tabel ~Pivot" #. Eudzw #: CalcCommands.xcu @@ -4244,7 +4244,7 @@ "Label\n" "value.text" msgid "More ~Filters" -msgstr "~Tapis Lain" +msgstr "Lebih Banyak Pen~yaring" #. ZUA6V #: CalcCommands.xcu @@ -6624,7 +6624,7 @@ "Label\n" "value.text" msgid "Description..." -msgstr "Deskripsi..." +msgstr "Keterangan..." #. Fe9we #: ChartCommands.xcu @@ -7584,7 +7584,7 @@ "PopupLabel\n" "value.text" msgid "New ~Table Design" -msgstr "Disain ~Tabel Baru" +msgstr "Desain ~Tabel Baru" #. Ky6Jx #: DbuCommands.xcu @@ -7604,7 +7604,7 @@ "PopupLabel\n" "value.text" msgid "New ~View Design" -msgstr "Disain ~View Baru" +msgstr "Desain T~ampilan Baru" #. ETnKM #: DbuCommands.xcu @@ -8034,7 +8034,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "" +msgstr "Atribut Te~ks" #. GR6Sf #: DrawImpressCommands.xcu @@ -8434,7 +8434,7 @@ "Label\n" "value.text" msgid "Reset line skew" -msgstr "" +msgstr "Atur ulang kemiringan garis" #. avSPK #: DrawImpressCommands.xcu @@ -8804,7 +8804,7 @@ "ContextLabel\n" "value.text" msgid "Page Properties..." -msgstr "" +msgstr "Properti Halaman..." #. W6trc #: DrawImpressCommands.xcu @@ -8824,7 +8824,7 @@ "ContextLabel\n" "value.text" msgid "Slide Properties..." -msgstr "" +msgstr "Properti Salindia..." #. bhvTx #: DrawImpressCommands.xcu @@ -10624,7 +10624,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "Hapus Tabel" #. Lbfd9 #: DrawImpressCommands.xcu @@ -11054,7 +11054,7 @@ "Label\n" "value.text" msgid "Move Page Down" -msgstr "Pindah Halaman Turun" +msgstr "Turunkan Halaman" #. MHyfW #: DrawImpressCommands.xcu @@ -12104,7 +12104,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Sebar Pemilihan" #. qQQAi #: Effects.xcu @@ -13574,7 +13574,7 @@ "Label\n" "value.text" msgid "Regular Triangle" -msgstr "" +msgstr "Segitiga Biasa" #. BUJ28 #: Effects.xcu @@ -14144,7 +14144,7 @@ "Label\n" "value.text" msgid "Fall and fade out" -msgstr "" +msgstr "Jatuh dan menghilang" #. cCMGr #: Effects.xcu @@ -14154,7 +14154,7 @@ "Label\n" "value.text" msgid "Fall simulated" -msgstr "" +msgstr "Simulasi jatuh" #. BqK9h #: Effects.xcu @@ -14164,7 +14164,7 @@ "Label\n" "value.text" msgid "Shoot right and return" -msgstr "" +msgstr "Tembak ke kanan dan kembali" #. DHrg4 #: Effects.xcu @@ -14174,7 +14174,7 @@ "Label\n" "value.text" msgid "Shoot left and return" -msgstr "" +msgstr "Tembak ke kiri dan kembali" #. MZBtm #: Effects.xcu @@ -15834,7 +15834,7 @@ "Name\n" "value.text" msgid "Templates" -msgstr "Palet" +msgstr "Cetakan" #. Q2c5r #: GenericCategories.xcu @@ -18604,7 +18604,7 @@ "Label\n" "value.text" msgid "~Options..." -msgstr "~Opsi..." +msgstr "~Pilihan..." #. DAyDw #: GenericCommands.xcu @@ -19406,7 +19406,7 @@ "ContextLabel\n" "value.text" msgid "Poi~nts" -msgstr "Poi~nt" +msgstr "Titi~k" #. nxNfp #: GenericCommands.xcu @@ -20496,7 +20496,7 @@ "Label\n" "value.text" msgid "Float~ing Frame..." -msgstr "Bingka~i mengambang..." +msgstr "Bingka~i Mengambang..." #. NMhAC #: GenericCommands.xcu @@ -20666,7 +20666,7 @@ "Label\n" "value.text" msgid "Copy Hyperlink Location" -msgstr "Salin Lokasi Taut" +msgstr "Salin Lokasi Pranala" #. EaNDM #: GenericCommands.xcu @@ -22566,7 +22566,7 @@ "Label\n" "value.text" msgid "~AutoCorrect Options..." -msgstr "Opsi KoreksiOtom~atis..." +msgstr "Pilihan KoreksiOtom~atis..." #. R9Lcg #: GenericCommands.xcu @@ -23486,7 +23486,7 @@ "Label\n" "value.text" msgid "Redact" -msgstr "Menyusun" +msgstr "Redaksi" #. Ponm7 #: GenericCommands.xcu @@ -23496,7 +23496,7 @@ "ContextLabel\n" "value.text" msgid "Redact" -msgstr "Menyusun" +msgstr "Redaksi" #. bSmGC #: GenericCommands.xcu @@ -23506,7 +23506,7 @@ "TooltipLabel\n" "value.text" msgid "Redact Document" -msgstr "Menyusun Dokumen" +msgstr "Redaksi Dokumen" #. hGiLG #: GenericCommands.xcu @@ -23546,7 +23546,7 @@ "Label\n" "value.text" msgid "~Customize..." -msgstr "~Kustomasi..." +msgstr "~Ubahsuai..." #. vC3Hn #: GenericCommands.xcu @@ -23566,7 +23566,7 @@ "Label\n" "value.text" msgid "Customi~ze..." -msgstr "Kustoma~si..." +msgstr "Ubah~suai..." #. 9W7qD #: GenericCommands.xcu @@ -23756,7 +23756,7 @@ "Label\n" "value.text" msgid "Import Dialog" -msgstr "Dialog Impor" +msgstr "Impor Dialog" #. mkYcT #: GenericCommands.xcu @@ -23796,7 +23796,7 @@ "Label\n" "value.text" msgid "Step Over" -msgstr "Langkah Keluar" +msgstr "Langkah Lewati" #. X2aH5 #: GenericCommands.xcu @@ -23816,7 +23816,7 @@ "Label\n" "value.text" msgid "~Basic..." -msgstr "~Dasar..." +msgstr "~Basic..." #. 6NozA #: GenericCommands.xcu @@ -25056,7 +25056,7 @@ "Label\n" "value.text" msgid "User ~Interface..." -msgstr "" +msgstr "An~tarmuka Pengguna..." #. i8oSn #: GenericCommands.xcu @@ -25236,7 +25236,7 @@ "Label\n" "value.text" msgid "Recent Doc~uments" -msgstr "Dok~umen Baru-baru Ini" +msgstr "Dok~umen Terkini" #. KSiFH #: GenericCommands.xcu @@ -25296,7 +25296,7 @@ "Label\n" "value.text" msgid "Delete Comment Thread" -msgstr "" +msgstr "Hapus Untaian Komentar" #. s3CwY #: GenericCommands.xcu @@ -25476,7 +25476,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "~Sisip" +msgstr "S~isip" #. EBfym #: GenericCommands.xcu @@ -25516,7 +25516,7 @@ "Label\n" "value.text" msgid "Alig~n Objects" -msgstr "" +msgstr "Sejajarka~n Objek" #. VK2hz #: GenericCommands.xcu @@ -26156,7 +26156,7 @@ "Label\n" "value.text" msgid "Templates" -msgstr "Templat" +msgstr "Cetakan" #. TAgSe #: GenericCommands.xcu @@ -26166,7 +26166,7 @@ "Label\n" "value.text" msgid "Te~mplates" -msgstr "Te~mplat" +msgstr "Ce~takan" #. Nbn9K #: GenericCommands.xcu @@ -26256,7 +26256,7 @@ "Label\n" "value.text" msgid "Description..." -msgstr "Deskripsi..." +msgstr "Keterangan..." #. YwMhY #: GenericCommands.xcu @@ -26286,7 +26286,7 @@ "Label\n" "value.text" msgid "More Breaks" -msgstr "Pemisah Lebih" +msgstr "Lebih Banyak Pemutus" #. 35wAk #: GenericCommands.xcu @@ -26326,7 +26326,7 @@ "Label\n" "value.text" msgid "~QR Code..." -msgstr "~QR Code..." +msgstr "~Kode QR..." #. gWpLA #: GenericCommands.xcu @@ -26346,7 +26346,7 @@ "Label\n" "value.text" msgid "~Additions..." -msgstr "" +msgstr "T~ambahan..." #. bFKmR #: GenericCommands.xcu @@ -26356,7 +26356,7 @@ "ContextLabel\n" "value.text" msgid "~Additional Extensions..." -msgstr "" +msgstr "Ekstensi Tamb~ahan..." #. UqjzD #: GenericCommands.xcu @@ -26366,7 +26366,7 @@ "TooltipLabel\n" "value.text" msgid "Additional Extensions" -msgstr "" +msgstr "Ekstensi Tambahan" #. YpeR4 #: GenericCommands.xcu @@ -26406,7 +26406,7 @@ "Label\n" "value.text" msgid "~Remove Hyperlink" -msgstr "Buang Taut-Lua~r" +msgstr "Buang P~ranala" #. KmJBw #: GenericCommands.xcu @@ -26426,7 +26426,7 @@ "Label\n" "value.text" msgid "~Distribution" -msgstr "" +msgstr "Penye~baran" #. 2HWrF #: GenericCommands.xcu @@ -26436,7 +26436,7 @@ "TooltipLabel\n" "value.text" msgid "Select at least three objects to distribute" -msgstr "" +msgstr "Pilih setidaknya tiga objek untuk disebar" #. zEiFi #: GenericCommands.xcu @@ -26446,7 +26446,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Sebar Pemilihan" #. vDkBA #: GenericCommands.xcu @@ -26456,7 +26456,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Left" -msgstr "" +msgstr "Sebar Secara Horizontal Kiri" #. gjrG6 #: GenericCommands.xcu @@ -26466,7 +26466,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Left" -msgstr "" +msgstr "Secara Horizontal Ki~ri" #. BBazW #: GenericCommands.xcu @@ -26476,7 +26476,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "Sebar Secara Horizontal Tengah" #. SqFTB #: GenericCommands.xcu @@ -26486,7 +26486,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "Secara Horizontal ~Tengah" #. QXntz #: GenericCommands.xcu @@ -26496,7 +26496,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Spacing" -msgstr "" +msgstr "Sebar Secara Horizontal Jarak" #. GQEXJ #: GenericCommands.xcu @@ -26506,7 +26506,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Spacing" -msgstr "" +msgstr "Secara Horizontal ~Jarak" #. Smk23 #: GenericCommands.xcu @@ -26516,7 +26516,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Right" -msgstr "" +msgstr "Sebar Secara Horizontal Kanan" #. SDkHd #: GenericCommands.xcu @@ -26526,7 +26526,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Right" -msgstr "" +msgstr "Secara Horizontal Ka~nan" #. iJB7y #: GenericCommands.xcu @@ -26536,7 +26536,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Top" -msgstr "" +msgstr "Sebar Secara Vertikal Puncak" #. 9wa7z #: GenericCommands.xcu @@ -26546,7 +26546,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Top" -msgstr "" +msgstr "Secara Vertical Pun~cak" #. FAkxM #: GenericCommands.xcu @@ -26556,7 +26556,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Center" -msgstr "" +msgstr "Sebar Secara Vertikal Tengah" #. PaLDT #: GenericCommands.xcu @@ -26566,7 +26566,7 @@ "ContextLabel\n" "value.text" msgid "Vertically C~enter" -msgstr "" +msgstr "Secara Vertikal T~engah" #. jwLqM #: GenericCommands.xcu @@ -26576,7 +26576,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Spacing" -msgstr "" +msgstr "Bagikan Secara Vertikal Jarak" #. 2RAqA #: GenericCommands.xcu @@ -26586,7 +26586,7 @@ "ContextLabel\n" "value.text" msgid "Vertically S~pacing" -msgstr "" +msgstr "Secara Vertikal Ja~rak" #. ELgnZ #: GenericCommands.xcu @@ -26596,7 +26596,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Bottom" -msgstr "" +msgstr "Bagikan Secara Vertikal Paling Bawah" #. rankC #: GenericCommands.xcu @@ -26606,7 +26606,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Bottom" -msgstr "" +msgstr "Secara Vertikal Paling ~Bawah" #. uaVMn #: ImpressWindowState.xcu @@ -27386,7 +27386,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Sebar Pemilihan" #. tpAhh #: MathCommands.xcu @@ -28326,7 +28326,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "Pemeriksa Gaya" #. GEHrf #: Sidebar.xcu @@ -28476,7 +28476,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "Pemeriksa Gaya" #. aCGNS #: Sidebar.xcu @@ -28996,7 +28996,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Kelompokmenu Ringkas" +msgstr "Bilah Terkelompok Ringkas" #. qM7MP #: ToolbarMode.xcu @@ -29086,7 +29086,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Terkelompok Ringkas" +msgstr "Bilah Terkelompok Ringkas" #. is78h #: ToolbarMode.xcu @@ -29096,7 +29096,7 @@ "Label\n" "value.text" msgid "Groupedbar" -msgstr "Bilah terkelompok" +msgstr "Bilah Terkelompok" #. GPGPB #: ToolbarMode.xcu @@ -29156,7 +29156,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Terkelompok Ringkas" +msgstr "Bilah Terkelompok Ringkas" #. tGs79 #: ToolbarMode.xcu @@ -29226,7 +29226,7 @@ "Label\n" "value.text" msgid "Groupedbar Compact" -msgstr "Terkelompok Ringkas" +msgstr "Bilah Terkelompok Ringkas" #. FncB5 #: ToolbarMode.xcu @@ -29886,7 +29886,7 @@ "Label\n" "value.text" msgid "Show ~Tracked Changes" -msgstr "" +msgstr "Tampilkan Perubahan ~Terlacak" #. sMgCx #: WriterCommands.xcu @@ -30076,7 +30076,7 @@ "Label\n" "value.text" msgid "Bookmar~k..." -msgstr "Penanda Bu~ku..." +msgstr "Mar~kah..." #. BBqAd #: WriterCommands.xcu @@ -30086,7 +30086,7 @@ "TooltipLabel\n" "value.text" msgid "Insert Bookmark" -msgstr "Sisipkan Penanda Taut" +msgstr "Sisipkan Markah" #. npNpZ #: WriterCommands.xcu @@ -30456,7 +30456,7 @@ "Label\n" "value.text" msgid "Mail Merge Wi~zard..." -msgstr "Wahana Pandu Surat ~Massal..." +msgstr "Wisaya Surat ~Massal..." #. 4GmoX #: WriterCommands.xcu @@ -30556,7 +30556,7 @@ "Label\n" "value.text" msgid "Send Email Messages" -msgstr "Kirim Pesan Email" +msgstr "Kirim Pesan Surel" #. 3h8ar #: WriterCommands.xcu @@ -31106,7 +31106,7 @@ "Label\n" "value.text" msgid "Select to End of Word" -msgstr "" +msgstr "Pilih ke Akhir Kata" #. bpBoC #: WriterCommands.xcu @@ -31426,7 +31426,7 @@ "Label\n" "value.text" msgid "None" -msgstr "" +msgstr "Nihil" #. SvFa2 #: WriterCommands.xcu @@ -31436,7 +31436,7 @@ "Label\n" "value.text" msgid "~Parallel" -msgstr "" +msgstr "~Paralel" #. YFEFD #: WriterCommands.xcu @@ -31466,7 +31466,7 @@ "Label\n" "value.text" msgid "~Through" -msgstr "" +msgstr "Mele~wati" #. SocUA #: WriterCommands.xcu @@ -33016,7 +33016,7 @@ "Label\n" "value.text" msgid "~Optimal" -msgstr "" +msgstr "~Optimal" #. EFP2w #: WriterCommands.xcu @@ -33226,7 +33226,7 @@ "Label\n" "value.text" msgid "Before" -msgstr "" +msgstr "Sebelum" #. LADWG #: WriterCommands.xcu @@ -33246,7 +33246,7 @@ "Label\n" "value.text" msgid "After" -msgstr "" +msgstr "Setelah" #. b5mCd #: WriterCommands.xcu @@ -35086,7 +35086,7 @@ "Label\n" "value.text" msgid "Page Margins" -msgstr "Batasan Halaman" +msgstr "Tepi Halaman" #. pGrR5 #: WriterCommands.xcu @@ -35186,7 +35186,7 @@ "Label\n" "value.text" msgid "Protect Bookmarks" -msgstr "Lindungi Markah Buku" +msgstr "Lindungi Markah" #. WjWoa #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2020-02-01 14:42+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550758945.000000\n" #. HhMVS @@ -214,7 +214,7 @@ "Title\n" "value.text" msgid "B~usiness Cards" -msgstr "Kart~u nama" +msgstr "Kart~u Nama" #. JPTt8 #: Common.xcu @@ -234,7 +234,7 @@ "Title\n" "value.text" msgid "Templates..." -msgstr "Cetakan..." +msgstr "Templat..." #. BdL9G #: Common.xcu @@ -1704,7 +1704,7 @@ "Text\n" "value.text" msgid "Pause" -msgstr "" +msgstr "Jeda" #. KHiJj #: PresenterScreen.xcu @@ -1714,7 +1714,7 @@ "Text\n" "value.text" msgid "Resume" -msgstr "" +msgstr "Lanjutkan" #. PhNCc #: PresenterScreen.xcu @@ -1724,7 +1724,7 @@ "Text\n" "value.text" msgid "Resume" -msgstr "" +msgstr "Lanjutkan" #. 9xLAe #: PresenterScreen.xcu @@ -1734,7 +1734,7 @@ "Text\n" "value.text" msgid "Restart" -msgstr "" +msgstr "Ulangi" #. zYCFa #: PresenterScreen.xcu @@ -1744,7 +1744,7 @@ "Text\n" "value.text" msgid "Exchange" -msgstr "" +msgstr "Tukar" #. hAAEf #: PresenterScreen.xcu @@ -1754,7 +1754,7 @@ "Text\n" "value.text" msgid "Help" -msgstr "" +msgstr "Bantuan" #. AqwYo #: PresenterScreen.xcu @@ -1764,7 +1764,7 @@ "Text\n" "value.text" msgid "Exit" -msgstr "" +msgstr "Keluar" #. DghaJ #: PresenterScreen.xcu @@ -7924,7 +7924,7 @@ "Name\n" "value.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. iXBKF #: TableWizard.xcu @@ -8414,7 +8414,7 @@ "Name\n" "value.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. Q6c9a #: TableWizard.xcu @@ -8424,7 +8424,7 @@ "ShortName\n" "value.text" msgid "Descrption" -msgstr "Deskripsi" +msgstr "Keterangan" #. SvcHD #: TableWizard.xcu @@ -8704,7 +8704,7 @@ "Name\n" "value.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. sBdEG #: TableWizard.xcu @@ -8714,7 +8714,7 @@ "ShortName\n" "value.text" msgid "Descrption" -msgstr "Deskripsi" +msgstr "Keterangan" #. JFfXA #: TableWizard.xcu @@ -9514,7 +9514,7 @@ "Name\n" "value.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. vcxUD #: TableWizard.xcu @@ -9524,7 +9524,7 @@ "ShortName\n" "value.text" msgid "Descrption" -msgstr "Deskripsi" +msgstr "Keterangan" #. bMGRX #: TableWizard.xcu @@ -9784,7 +9784,7 @@ "Name\n" "value.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. TXVuq #: TableWizard.xcu @@ -9794,7 +9794,7 @@ "ShortName\n" "value.text" msgid "Descrption" -msgstr "Deskripsi" +msgstr "Keterangan" #. Er4ar #: TableWizard.xcu @@ -12124,7 +12124,7 @@ "Name\n" "value.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. Vkb2a #: TableWizard.xcu @@ -12134,7 +12134,7 @@ "ShortName\n" "value.text" msgid "Descrption" -msgstr "Deskripsi" +msgstr "Keterangan" #. DPkFA #: TableWizard.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/id/readlicense_oo/docs.po libreoffice-7.1.3~rc2/translations/source/id/readlicense_oo/docs.po --- libreoffice-7.1.2~rc2/translations/source/id/readlicense_oo/docs.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/readlicense_oo/docs.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-01-03 14:36+0000\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" "Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" "Language: id\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1543752481.000000\n" #. q6Gg3 @@ -716,7 +716,7 @@ "gfh6w1\n" "readmeitem.text" msgid "Problems When Sending Documents as Emails From ${PRODUCTNAME}" -msgstr "" +msgstr "Masalah Saat Mengirim Dokumen sebagai Surel Dari ${PRODUCTNAME}" #. 2yRMH #: readme.xrm @@ -725,7 +725,7 @@ "pji76w1\n" "readmeitem.text" msgid "When sending a document via 'File - Send - Document as Email' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit https://www.microsoft.com to search the Microsoft Knowledge Base for \"mapi dll\"." -msgstr "" +msgstr "Saat mengirin dokumen via 'Berkas - Kirim - Dokumen sebagai Surel' atau 'Dokumen sebagai Lampiran PDF' beberapa masalah mungkin terjadi (program yang bentrok atau tersangkut). Ini adalah masalah pada berkas sistem \"Mapi\" (Messaging Application Programming Interface) Windows yang menyebabkan masalah pada beberapa versi berkas. Sayangnya, masalah ini tidak dapat dipersempit ke nomor versi tertentu. Untuk informasi lebih lanjut, kunjungi https://www.microsoft.com untuk mencari Microsoft Knowledge Base bagi \"mapi dll\"." #. a426D #: readme.xrm diff -Nru libreoffice-7.1.2~rc2/translations/source/id/sc/messages.po libreoffice-7.1.3~rc2/translations/source/id/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-19 20:36+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550908361.000000\n" #. kBovX @@ -18659,7 +18659,7 @@ #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:39 msgctxt "aggregatefunctionentry|type" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. yeTyA #: sc/uiconfig/scalc/ui/aggregatefunctionentry.ui:53 @@ -19757,7 +19757,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:444 msgctxt "conditionalentry|colorformat" msgid "Icon Set" -msgstr "Set Ikon" +msgstr "Himpunan Ikon" #. JGdRZ #: sc/uiconfig/scalc/ui/conditionalentry.ui:470 @@ -21275,7 +21275,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:39 msgctxt "datetimetransformationentry|type" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. YKqPN #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:53 @@ -23402,7 +23402,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:109 msgctxt "imoptdialog|charsetft" msgid "_Character set:" -msgstr "Set _karakter:" +msgstr "Himpunan _karakter:" #. YzedG #: sc/uiconfig/scalc/ui/imoptdialog.ui:122 @@ -24590,7 +24590,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:3079 msgctxt "CalcNotebookbar|FileLabel" msgid "~File" -msgstr "~File" +msgstr "~Berkas" #. EBQTu #: sc/uiconfig/scalc/ui/notebookbar.ui:3555 @@ -24638,7 +24638,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:6140 msgctxt "CalcNotebookbar|InsertLabel" msgid "~Insert" -msgstr "~Insert" +msgstr "~Sisip" #. xmARL #: sc/uiconfig/scalc/ui/notebookbar.ui:6551 @@ -24682,13 +24682,13 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:9413 msgctxt "CalcNotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "P_ratinjau" +msgstr "_Ulasan" #. 7FXbr #: sc/uiconfig/scalc/ui/notebookbar.ui:9499 msgctxt "CalcNotebookbar|ReviewLabel" msgid "~Review" -msgstr "~Tinjauan" +msgstr "~Ulasan" #. NT37F #: sc/uiconfig/scalc/ui/notebookbar.ui:10405 @@ -24700,7 +24700,7 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:10491 msgctxt "CalcNotebookbar|ViewLabel" msgid "~View" -msgstr "~Tilik" +msgstr "~Tampilan" #. SAv6Z #: sc/uiconfig/scalc/ui/notebookbar.ui:11544 @@ -24893,7 +24893,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8191 msgctxt "notebookbar_compact|ReviewLabel" msgid "~Review" -msgstr "Pe~riksa" +msgstr "~Ulas" #. 35kA2 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8873 @@ -24905,7 +24905,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:8925 msgctxt "notebookbar_compact|ViewLabel" msgid "~View" -msgstr "~Tilik" +msgstr "~Tampilan" #. dV94w #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:10315 @@ -25056,7 +25056,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4676 msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. Uyv2y #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:4790 @@ -25342,7 +25342,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5359 msgctxt "notebookbar_groupedbar_full|reviewb" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. BHDdD #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:5531 @@ -25384,7 +25384,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:6876 msgctxt "notebookbar_groupedbar_full|revieb" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. y4Sg3 #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:7089 @@ -25516,7 +25516,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:78 msgctxt "notebookbar_groups|bookmark" msgid "Bookmark" -msgstr "Tanda taut" +msgstr "Markah" #. JE3bf #: sc/uiconfig/scalc/ui/notebookbar_groups.ui:87 @@ -25840,7 +25840,7 @@ #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:39 msgctxt "numbertransformationentry|type" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. mZxLU #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:53 @@ -31590,7 +31590,7 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:39 msgctxt "texttransformationentry|type" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. 9dr3g #: sc/uiconfig/scalc/ui/texttransformationentry.ui:53 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/scp2/source/ooo.po libreoffice-7.1.3~rc2/translations/source/id/scp2/source/ooo.po --- libreoffice-7.1.2~rc2/translations/source/id/scp2/source/ooo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/scp2/source/ooo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-17 15:06+0100\n" -"PO-Revision-Date: 2020-08-03 16:28+0000\n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" "Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563273376.000000\n" #. CYBGJ @@ -4829,7 +4829,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_KO\n" "LngText.text" msgid "Korean" -msgstr "" +msgstr "Korea" #. EeEDH #: module_ooo.ulf @@ -4838,7 +4838,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_KO\n" "LngText.text" msgid "Korean spelling dictionary" -msgstr "" +msgstr "Kamus ejaan bahasa Korea" #. xuCvE #: module_ooo.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/id/scp2/source/winexplorerext.po libreoffice-7.1.3~rc2/translations/source/id/scp2/source/winexplorerext.po --- libreoffice-7.1.2~rc2/translations/source/id/scp2/source/winexplorerext.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/scp2/source/winexplorerext.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-08-21 21:37+0200\n" -"PO-Revision-Date: 2020-01-07 12:25+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.9.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563639596.000000\n" #. 9FHTe @@ -32,4 +32,4 @@ "STR_DESC_MODULE_OPTIONAL_WINDOWS_EXPLORER_EXTENSIONS\n" "LngText.text" msgid "Enables the Microsoft File Explorer to show information about %PRODUCTNAME documents, such as thumbnail previews, and perform full-text search." -msgstr "Membuat Microsoft File Explorer mampu menampilkan informasi tentang dokumen %PRODUCTNAME, misalnya pratinjau gambar mini, dan pencarian teks lengkap." +msgstr "Membuat Microsoft File Explorer mampu menampilkan informasi tentang dokumen %PRODUCTNAME, misalnya pratinjau keluku, dan pencarian teks lengkap." diff -Nru libreoffice-7.1.2~rc2/translations/source/id/sd/messages.po libreoffice-7.1.3~rc2/translations/source/id/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-07-14 12:34+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565578255.000000\n" #. WDjkB @@ -3759,7 +3759,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:5722 msgctxt "drawnotebookbar|InsertLabel" msgid "~Insert" -msgstr "~Sisipkan" +msgstr "S~isip" #. TVDXM #: sd/uiconfig/sdraw/ui/notebookbar.ui:6515 @@ -3777,7 +3777,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar.ui:7151 msgctxt "drawnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. prpcY #: sd/uiconfig/sdraw/ui/notebookbar.ui:7235 @@ -3995,13 +3995,13 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7065 msgctxt "notebookbar_draw_compact|ReviewMenuButton" msgid "_Review" -msgstr "Pe_riksa" +msgstr "_Ulasan" #. twxEq #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7117 msgctxt "notebookbar_draw_compact|ReviewLabel" msgid "~Review" -msgstr "Pe~riksa" +msgstr "~Ulas" #. H5eNL #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7828 @@ -4013,7 +4013,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:7880 msgctxt "notebookbar_draw_compact|ViewLabel" msgid "~View" -msgstr "~Tilik" +msgstr "~Tampilan" #. CqEAM #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:9413 @@ -4211,7 +4211,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:13466 msgctxt "draw_notebookbar_groupedbar_compact|viewT" msgid "_View" -msgstr "_Tampilan" +msgstr "Ta_mpilan" #. cjxQa #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:4255 @@ -5023,7 +5023,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:481 msgctxt "customanimationspanel|more_properties|tooltip_text" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. PE6vL #: sd/uiconfig/simpress/ui/customanimationspanel.ui:486 @@ -6595,7 +6595,7 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:6230 msgctxt "impressnotebookbar|InsertLabel" msgid "~Insert" -msgstr "~Sisip" +msgstr "S~isip" #. 58fjG #: sd/uiconfig/simpress/ui/notebookbar.ui:7023 @@ -6625,13 +6625,13 @@ #: sd/uiconfig/simpress/ui/notebookbar.ui:8216 msgctxt "impressnotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. drk6E #: sd/uiconfig/simpress/ui/notebookbar.ui:8300 msgctxt "impressnotebookbar|ReviewLabel" msgid "~Review" -msgstr "~Tinjau" +msgstr "~Ulasan" #. vjE5w #: sd/uiconfig/simpress/ui/notebookbar.ui:9551 @@ -6843,13 +6843,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7351 msgctxt "notebookbar_impress_compact|ReviewMenuButton" msgid "_Review" -msgstr "Pe_riksa" +msgstr "_Ulasan" #. pZ4A3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7403 msgctxt "notebookbar_impress_compact|ReviewLabel" msgid "~Review" -msgstr "Pe~riksa" +msgstr "~Ulasan" #. cRSR3 #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:7952 @@ -6873,7 +6873,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:8907 msgctxt "notebookbar_impress_compact|ViewLabel" msgid "~View" -msgstr "~Tilik" +msgstr "~Tampilan" #. CzCMC #: sd/uiconfig/simpress/ui/notebookbar_compact.ui:10650 @@ -7058,7 +7058,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:13417 msgctxt "notebookbar_groupedbar_compact|reviewb" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. BxXfn #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:4315 @@ -7248,7 +7248,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4472 msgctxt "notebookbar_groupedbar_full|reviewb" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. BHDdD #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4622 @@ -7302,7 +7302,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6214 msgctxt "notebookbar_groupedbar_full|reviewp" msgid "_Review" -msgstr "Pe_riksa" +msgstr "_Ulasan" #. jHLaW #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:6355 @@ -7472,7 +7472,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:142 msgctxt "notebookbar_groups|bookmark" msgid "Bookmark" -msgstr "Tanda Taut" +msgstr "Markah" #. JE3bf #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 @@ -8246,13 +8246,13 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:710 msgctxt "presentationdialog|label4" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. 8pqaK #: sd/uiconfig/simpress/ui/presentationdialog.ui:747 msgctxt "presentationdialog|extended_tip|PresentationDialog" msgid "Defines settings for your slide show, including which slide to start from, the way you advance the slides, the type of presentation, and pointer options." -msgstr "Menentukan pengaturan bagi pertunjukan slide Anda, termasuk mulai dari slide mana, bagaimana memajukan slide, tipe presentasi, dan opsi penunjuk." +msgstr "Menentukan pengaturan bagi pertunjukan salindia Anda, termasuk mulai dari salindia mana, bagaimana memajukan salindia, jenis presentasi, dan pilihan penunjuk." #. Byo4C #: sd/uiconfig/simpress/ui/prntopts.ui:37 @@ -8714,7 +8714,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:791 msgctxt "publishingdialog|htmlOptionsLabel" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. FQFnv #: sd/uiconfig/simpress/ui/publishingdialog.ui:883 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/id/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,23 +4,23 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-01 16:35+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563639732.000000\n" #. bHbFE #: include/sfx2/strings.hrc:25 msgctxt "STR_TEMPLATE_FILTER" msgid "Templates" -msgstr "Palet" +msgstr "Cetakan" #. FfusE #: include/sfx2/strings.hrc:26 @@ -563,7 +563,7 @@ #: include/sfx2/strings.hrc:111 msgctxt "STR_GID_OPTIONS" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. GFEQ3 #: include/sfx2/strings.hrc:112 @@ -593,7 +593,7 @@ #: include/sfx2/strings.hrc:116 msgctxt "STR_GID_TEMPLATE" msgid "Templates" -msgstr "Templat" +msgstr "Cetakan" #. JAdCZ #: include/sfx2/strings.hrc:117 @@ -2123,7 +2123,7 @@ #: sfx2/inc/doctempl.hrc:27 msgctxt "TEMPLATE_LONG_NAMES_ARY" msgid "My Templates" -msgstr "Paletku" +msgstr "Templatku" #. 5aNp8 #: sfx2/inc/doctempl.hrc:28 @@ -2207,7 +2207,7 @@ #: sfx2/uiconfig/ui/addtargetdialog.ui:120 msgctxt "addtargetdialog|label_type" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. Sy2A7 #: sfx2/uiconfig/ui/addtargetdialog.ui:135 @@ -2789,7 +2789,7 @@ #: sfx2/uiconfig/ui/documentpropertiesdialog.ui:182 msgctxt "documentpropertiesdialog|description" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. HTaxP #: sfx2/uiconfig/ui/documentpropertiesdialog.ui:230 @@ -3221,7 +3221,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:256 msgctxt "loadtemplatedialog|label2" msgid "Templates" -msgstr "Palet" +msgstr "Cetakan" #. Bm4Mx #: sfx2/uiconfig/ui/loadtemplatedialog.ui:278 @@ -3821,7 +3821,7 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:14 msgctxt "saveastemplatedlg|SaveAsTemplateDialog" msgid "Save As Template" -msgstr "Simpan Sebagai Templat" +msgstr "Simpan Sebagai Cetakan" #. DExAh #: sfx2/uiconfig/ui/saveastemplatedlg.ui:102 @@ -3833,7 +3833,7 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:125 msgctxt "saveastemplatedlg|extended_tip|name_entry" msgid "Enter a name for the template." -msgstr "masukkan nama untuk templat." +msgstr "Masukkan nama untuk cetakan ini." #. izWnA #: sfx2/uiconfig/ui/saveastemplatedlg.ui:153 @@ -3845,13 +3845,13 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:201 msgctxt "saveastemplatedlg|extended_tip|categorylb" msgid "Select a category in which to save the new template." -msgstr "Pilih kategori untuk menyimpan templat baru." +msgstr "Pilih kategori untuk menyimpan cetakan baru." #. wpZGc #: sfx2/uiconfig/ui/saveastemplatedlg.ui:221 msgctxt "saveastemplatedlg|defaultcb" msgid "_Set as default template" -msgstr "Ja_dikan templat baku" +msgstr "Ja_dikan sebagai cetakan baku" #. syB4y #: sfx2/uiconfig/ui/saveastemplatedlg.ui:230 @@ -3863,13 +3863,13 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:258 msgctxt "saveastemplatedlg|extended_tip|SaveAsTemplateDialog" msgid "Saves the current document as a template." -msgstr "Simpan document templat saat ini." +msgstr "Simpan dokumen saat ini sebagai cetakan." #. 9tSnA #: sfx2/uiconfig/ui/searchdialog.ui:8 msgctxt "searchdialog|SearchDialog" msgid "Find on this Page" -msgstr "Cari di Halaman ini" +msgstr "Cari pada Halaman ini" #. LAKYg #: sfx2/uiconfig/ui/searchdialog.ui:26 @@ -3929,19 +3929,19 @@ #: sfx2/uiconfig/ui/securityinfopage.ui:55 msgctxt "securityinfopage|extended_tip|recordchanges" msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record." -msgstr "Pilih untuk mengaktifkan perubahan rekaman. Ini sama denganEdit - Lacak Perubahan - Rekam." +msgstr "Pilih untuk mengaktifkan perekaman perubahan. Hal ini sama dengan Sunting - Lacak Perubahan - Rekam." #. Nv8rA #: sfx2/uiconfig/ui/securityinfopage.ui:71 msgctxt "securityinfopage|protect" msgid "Protect..." -msgstr "Proteksi..." +msgstr "Lindungi..." #. 6T6ZP #: sfx2/uiconfig/ui/securityinfopage.ui:77 msgctxt "securityinfopage|extended_tip|protect" msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection." -msgstr "Melindungi status perubahan rekaman dengan kata sandi. Jika perubahan rekaman dilindungi untuk dokumen saat ini, tombol tersebut dinamaiTidak terproteksi.klikTidak terproteksidan ketik kata sandi yang benar untuk menonaktifkan perlindungan." +msgstr "Melindungi status perubahan rekaman dengan kata sandi. Jika perubahan rekaman dilindungi untuk dokumen saat ini, tombol tersebut dinamai Tidak Terlindungi .klik Hapus Perlindungan dan ketik kata sandi yang benar untuk menonaktifkan perlindungan." #. jgWP4 #: sfx2/uiconfig/ui/securityinfopage.ui:89 @@ -3959,43 +3959,43 @@ #: sfx2/uiconfig/ui/securityinfopage.ui:120 msgctxt "securityinfopage|label47" msgid "File Sharing Options" -msgstr "Opsi Berbagi Berkas" +msgstr "Pilihan Berbagi Berkas" #. VXrJ5 #: sfx2/uiconfig/ui/securityinfopage.ui:128 msgctxt "securityinfopage|extended_tip|SecurityInfoPage" msgid "Sets password options for the current document." -msgstr "Menetapkan opsi kata sandi untuk dokumen saat ini." +msgstr "Menetapkan pilihan kata sandi untuk dokumen saat ini." #. EDC9x #: sfx2/uiconfig/ui/startcenter.ui:17 msgctxt "startcenter|clear_all" msgid "Clear Recent Documents" -msgstr "Bersihkan Daftar Dokumen Baru-baru Ini" +msgstr "Bersihkan Daftar Dokumen Terkini" #. gCfQ9 #: sfx2/uiconfig/ui/startcenter.ui:38 msgctxt "startcenter|filter_writer" msgid "Writer Templates" -msgstr "Palet Writer" +msgstr "Templat Writer" #. kj5ts #: sfx2/uiconfig/ui/startcenter.ui:45 msgctxt "startcenter|filter_calc" msgid "Calc Templates" -msgstr "Palet Calc" +msgstr "Templat Calc" #. HEYvU #: sfx2/uiconfig/ui/startcenter.ui:52 msgctxt "startcenter|filter_impress" msgid "Impress Templates" -msgstr "Palet Impress" +msgstr "Templat Impress" #. uWEpu #: sfx2/uiconfig/ui/startcenter.ui:59 msgctxt "startcenter|filter_draw" msgid "Draw Templates" -msgstr "Palet Draw" +msgstr "Templat Draw" #. e3TH8 #: sfx2/uiconfig/ui/startcenter.ui:72 @@ -4019,13 +4019,13 @@ #: sfx2/uiconfig/ui/startcenter.ui:205 msgctxt "startcenter|open_recent" msgid "_Recent Documents" -msgstr "" +msgstr "_Dokumen Terkini" #. BnkvG #: sfx2/uiconfig/ui/startcenter.ui:229 msgctxt "startcenter|templates_all" msgid "T_emplates" -msgstr "T_emplat" +msgstr "Ce_takan" #. JEkqY #: sfx2/uiconfig/ui/startcenter.ui:270 @@ -4133,37 +4133,37 @@ #: sfx2/uiconfig/ui/tabbarcontents.ui:24 msgctxt "tabbar|locktaskpanel" msgid "Dock" -msgstr "" +msgstr "Tambatkan" #. GNBR3 #: sfx2/uiconfig/ui/tabbarcontents.ui:33 msgctxt "tabbar|unlocktaskpanel" msgid "Undock" -msgstr "" +msgstr "Lepaskan kaitan" #. jXux4 #: sfx2/uiconfig/ui/tabbarcontents.ui:42 msgctxt "tabbar|hidesidebar" msgid "Close Sidebar" -msgstr "" +msgstr "Tutup Bilah Sisi" #. hEmHk #: sfx2/uiconfig/ui/tabbarcontents.ui:50 msgctxt "tabbar|customization" msgid "Customization" -msgstr "" +msgstr "Pengubahsuaian" #. 9Hfx6 #: sfx2/uiconfig/ui/tabbarcontents.ui:66 msgctxt "tabbar|restoredefault" msgid "Restore Default" -msgstr "" +msgstr "Kembalikan ke Semula" #. DBWZf #: sfx2/uiconfig/ui/tabbarcontents.ui:93 msgctxt "tabbar|menubutton|tool_tip" msgid "Sidebar Settings" -msgstr "" +msgstr "Pengaturan Bilah Sisi" #. XBaqU #: sfx2/uiconfig/ui/templatecategorydlg.ui:16 @@ -4193,7 +4193,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:61 msgctxt "templatedlg|TemplateDialog" msgid "Templates" -msgstr "Templat" +msgstr "Cetakan" #. rhuYP #: sfx2/uiconfig/ui/templatedlg.ui:92 @@ -4271,7 +4271,7 @@ #: sfx2/uiconfig/ui/templatedlg.ui:335 msgctxt "templatedlg|thumbnailviewlabel" msgid "Template List" -msgstr "Daftar Templat" +msgstr "Daftar Cetakan" #. GkjAS #: sfx2/uiconfig/ui/templatedlg.ui:353 @@ -4283,13 +4283,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:368 msgctxt "templatedlg|extensions_btn" msgid "_Extensions" -msgstr "" +msgstr "_Ekstensi" #. uC7Rk #: sfx2/uiconfig/ui/templatedlg.ui:372 msgctxt "templatedlg|online_link|tooltip_text" msgid "Add more templates via extension" -msgstr "" +msgstr "Tambahkan lebih banyak templat melalui ekstensi" #. PXRa3 #: sfx2/uiconfig/ui/templatedlg.ui:387 @@ -4337,7 +4337,7 @@ #: sfx2/uiconfig/ui/templatepanel.ui:148 msgctxt "templatepanel|STR_STYLE_NEW_STYLE_FROM_SELECTION" msgid "New Style from Selection" -msgstr "Gaya Baru dari Pilihan" +msgstr "Gaya Baru dari Pemilihan" #. tAdD9 #: sfx2/uiconfig/ui/templatepanel.ui:161 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/shell/source/win32/shlxthandler/res.po libreoffice-7.1.3~rc2/translations/source/id/shell/source/win32/shlxthandler/res.po --- libreoffice-7.1.2~rc2/translations/source/id/shell/source/win32/shlxthandler/res.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/shell/source/win32/shlxthandler/res.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2013-11-20 13:01+0100\n" -"PO-Revision-Date: 2013-12-08 04:38+0000\n" -"Last-Translator: Andika \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1386477482.0\n" +"X-Generator: Weblate 4.4.2\n" +"X-POOTLE-MTIME: 1386477482.000000\n" +#. nMHZG #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -24,6 +25,7 @@ msgid "Title" msgstr "Judul" +#. 7QBxh #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -32,6 +34,7 @@ msgid "Title:" msgstr "Judul:" +#. UGL46 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -40,6 +43,7 @@ msgid "Subject" msgstr "Subjek" +#. Rqom8 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -48,6 +52,7 @@ msgid "Subject:" msgstr "Subjek:" +#. BbVSy #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -56,6 +61,7 @@ msgid "Author" msgstr "Penulis" +#. 6eSDz #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -64,6 +70,7 @@ msgid "Author:" msgstr "Penulis:" +#. nA6Zp #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -72,6 +79,7 @@ msgid "Keywords" msgstr "Kata Kunci" +#. hJatc #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -80,6 +88,7 @@ msgid "Keywords:" msgstr "Kata Kunci:" +#. NyeBb #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -88,6 +97,7 @@ msgid "Comments" msgstr "Komentar" +#. tN79v #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -96,6 +106,7 @@ msgid "Comments:" msgstr "Komentar:" +#. C7AUH #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -104,6 +115,7 @@ msgid "Pages" msgstr "Halaman" +#. vhAWA #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -112,6 +124,7 @@ msgid "Tables" msgstr "Tabel" +#. VNMuj #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -120,6 +133,7 @@ msgid "Images" msgstr "Gambar" +#. WePDJ #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -128,6 +142,7 @@ msgid "Objects" msgstr "Objek" +#. CXU2C #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -136,6 +151,7 @@ msgid "OLE Objects" msgstr "Objek OLE" +#. zATfj #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -144,6 +160,7 @@ msgid "Paragraphs" msgstr "Paragraf" +#. S4c4V #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -152,6 +169,7 @@ msgid "Words" msgstr "Kata" +#. D4Ywc #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -160,6 +178,7 @@ msgid "Characters" msgstr "Karakter" +#. 8LRV5 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -168,6 +187,7 @@ msgid "Lines" msgstr "Baris" +#. UhaXY #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -176,6 +196,7 @@ msgid "Origin" msgstr "Asal" +#. eEVzH #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -184,6 +205,7 @@ msgid "Version" msgstr "Versi" +#. CGpUh #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -192,6 +214,7 @@ msgid "Sheets" msgstr "Lembar" +#. 2okgs #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -200,6 +223,7 @@ msgid "Cells" msgstr "Sel" +#. rgN97 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -208,6 +232,7 @@ msgid "Document Statistics" msgstr "Statistik Dokumen" +#. VsBfC #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -216,6 +241,7 @@ msgid "Summary" msgstr "Ringkasan" +#. MiuQD #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -224,6 +250,7 @@ msgid "Property" msgstr "Properti" +#. mGZKg #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -232,6 +259,7 @@ msgid "Value" msgstr "Nilai" +#. TCEEW #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -240,6 +268,7 @@ msgid "Modified" msgstr "Dimodifikasi" +#. YYD9t #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -248,6 +277,7 @@ msgid "Modified:" msgstr "Dimodifikasi:" +#. vBE2F #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -256,6 +286,7 @@ msgid "Revision number" msgstr "Nomor revisi" +#. FXXNk #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -264,6 +295,7 @@ msgid "Revision number:" msgstr "Nomor revisi:" +#. HdSaz #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -272,6 +304,7 @@ msgid "Total editing time" msgstr "Total waktu sunting" +#. snZkq #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -280,22 +313,25 @@ msgid "Total editing time:" msgstr "Total waktu sunting:" +#. AuQLP #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" "%DESCRIPTION%\n" "LngText.text" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" +#. WESrR #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" "%DESCRIPTION_COLON%\n" "LngText.text" msgid "Description:" -msgstr "Deskripsi:" +msgstr "Keterangan:" +#. RWroq #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -304,6 +340,7 @@ msgid "Size:" msgstr "Ukuran:" +#. 3GFSY #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/id/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-08-04 11:14+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563273342.000000\n" #. fLdeV @@ -100,7 +100,7 @@ #: include/svtools/strings.hrc:40 msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK" msgid "Netscape Bookmark" -msgstr "Penanda Buku Netscape" +msgstr "Markah Netscape" #. 472xQ #: include/svtools/strings.hrc:41 @@ -1347,7 +1347,7 @@ #: include/svtools/strings.hrc:275 msgctxt "STR_DESCRIPTION_BOOKMARKFILE" msgid "Bookmark file" -msgstr "Berkas penanda buku" +msgstr "Berkas markah" #. eNRzD #: include/svtools/strings.hrc:276 @@ -5369,7 +5369,7 @@ #: svtools/uiconfig/ui/placeedit.ui:111 msgctxt "placeedit|typeLabel" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. AkqhA #: svtools/uiconfig/ui/placeedit.ui:127 @@ -5489,7 +5489,7 @@ #: svtools/uiconfig/ui/printersetupdialog.ui:144 msgctxt "printersetupdialog|label4" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. amoGB #: svtools/uiconfig/ui/printersetupdialog.ui:156 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/svx/messages.po libreoffice-7.1.3~rc2/translations/source/id/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-01 16:35+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565578186.000000\n" #. 3GkZj @@ -12463,7 +12463,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:226 msgctxt "acceptrejectchangesdialog|calcdesc" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. VDtBL #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:243 @@ -13807,7 +13807,7 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:557 msgctxt "compressgraphicdialog|label15" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. 34DCX #: svx/uiconfig/ui/compressgraphicdialog.ui:589 @@ -14782,7 +14782,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1719 msgctxt "docking3deffects|label20" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. txLj4 #: svx/uiconfig/ui/docking3deffects.ui:1736 @@ -17372,7 +17372,7 @@ #: svx/uiconfig/ui/imapmenu.ui:12 msgctxt "imapmenu|url" msgid "Description..." -msgstr "Deskripsi..." +msgstr "Keterangan..." #. TNhDT #: svx/uiconfig/ui/imapmenu.ui:20 @@ -18740,19 +18740,19 @@ #: svx/uiconfig/ui/selectionmenu.ui:20 msgctxt "selectionmenu|extending" msgid "Extending selection" -msgstr "Memperluas pilihan" +msgstr "Pilihan memperluas" #. fqC9L #: svx/uiconfig/ui/selectionmenu.ui:28 msgctxt "selectionmenu|adding" msgid "Adding selection" -msgstr "Menambah pilihan" +msgstr "Pilihan penambahan" #. DbjFT #: svx/uiconfig/ui/selectionmenu.ui:36 msgctxt "selectionmenu|block" msgid "Block selection" -msgstr "Memblokir pilihan" +msgstr "Pilihan blok" #. vo2WC #: svx/uiconfig/ui/sidebararea.ui:55 @@ -19034,19 +19034,19 @@ #: svx/uiconfig/ui/sidebargallery.ui:323 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_LISTVIEW" msgid "Detailed View" -msgstr "Tampilan Detil" +msgstr "Tampilan Rinci" #. YDmBa #: svx/uiconfig/ui/sidebargallery.ui:354 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME" msgid "New..." -msgstr "" +msgstr "Baru..." #. RfChe #: svx/uiconfig/ui/sidebargallery.ui:373 msgctxt "sidebargallery|btnMoreGalleries" msgid "Add more galleries via extension" -msgstr "" +msgstr "Tambah lebih banyak galeri melalui ekstensi" #. BdPh5 #: svx/uiconfig/ui/sidebargraphic.ui:52 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/sw/messages.po libreoffice-7.1.3~rc2/translations/source/id/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-01-03 14:36+0000\n" -"Last-Translator: Andika Triwidada \n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" "Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565578102.000000\n" #. v3oJv @@ -614,86 +614,86 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "" +msgstr "Pemformatan Langsung Karakter" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "" +msgstr "Pemformatan Langsung Paragraf" #. YUbUQ #. Format names #: sw/inc/inspectorproperties.hrc:35 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Color" -msgstr "" +msgstr "Warna" #. 5Btdu #: sw/inc/inspectorproperties.hrc:36 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Border Distance" -msgstr "" +msgstr "Jarak Perbatasan" #. sKjYr #: sw/inc/inspectorproperties.hrc:37 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Inner Line Width" -msgstr "" +msgstr "Lebar Garis Dalam" #. yrAyD #: sw/inc/inspectorproperties.hrc:38 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Distance" -msgstr "" +msgstr "Jarak Garis" #. jS4tt #: sw/inc/inspectorproperties.hrc:39 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Style" -msgstr "" +msgstr "Gaya Garis" #. noNDX #: sw/inc/inspectorproperties.hrc:40 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Width" -msgstr "" +msgstr "Lebar Garis" #. MVL7X #: sw/inc/inspectorproperties.hrc:41 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outer Line Width" -msgstr "" +msgstr "Lebar Garis Luar" #. c7Qfp #: sw/inc/inspectorproperties.hrc:42 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border" -msgstr "" +msgstr "Perbatasan Bawah" #. EWncC #: sw/inc/inspectorproperties.hrc:43 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border Distance" -msgstr "" +msgstr "Jarak Perbatasan Bawah" #. rLqgx #: sw/inc/inspectorproperties.hrc:44 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Break Type" -msgstr "" +msgstr "Jenis Pemutusan" #. kFMbA #: sw/inc/inspectorproperties.hrc:45 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Category" -msgstr "" +msgstr "Kategori" #. cd79Y #: sw/inc/inspectorproperties.hrc:46 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Cell" -msgstr "" +msgstr "Sel" #. JzYHd #: sw/inc/inspectorproperties.hrc:47 @@ -1905,7 +1905,7 @@ #: sw/inc/inspectorproperties.hrc:248 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Frame" -msgstr "" +msgstr "Bingkai Teks" #. CNyuR #: sw/inc/inspectorproperties.hrc:249 @@ -3197,7 +3197,7 @@ #: sw/inc/strings.hrc:196 msgctxt "STR_POOLPAGE_ENVELOPE" msgid "Envelope" -msgstr "" +msgstr "Amplop" #. jGSGz #: sw/inc/strings.hrc:197 @@ -7034,7 +7034,7 @@ #: sw/inc/strings.hrc:880 msgctxt "STR_TEMPLNAMEFLD" msgid "Templates" -msgstr "Palet" +msgstr "Cetakan" #. 3wdud #: sw/inc/strings.hrc:881 @@ -7150,7 +7150,7 @@ #: sw/inc/strings.hrc:901 msgctxt "STR_GETREFFLD" msgid "Insert Reference" -msgstr "Sisip Referensi" +msgstr "Sisip Rujukan" #. sztLS #. range database @@ -7885,7 +7885,7 @@ #: sw/inc/strings.hrc:1061 msgctxt "STR_VIEWLAYOUT_ONE" msgid "Single-page view" -msgstr "Tilikan halaman tunggal" +msgstr "Tampilan halaman tunggal" #. 57ju6 #: sw/inc/strings.hrc:1062 @@ -7897,7 +7897,7 @@ #: sw/inc/strings.hrc:1063 msgctxt "STR_VIEWLAYOUT_BOOK" msgid "Book view" -msgstr "Tilikan buku" +msgstr "Tampilan buku" #. xBHUG #: sw/inc/strings.hrc:1064 @@ -8432,7 +8432,7 @@ #: sw/inc/strings.hrc:1155 msgctxt "ST_GRF" msgid "Graphics" -msgstr "Grafis" +msgstr "Citra" #. d5eSc #: sw/inc/strings.hrc:1156 @@ -8541,7 +8541,7 @@ #: sw/inc/strings.hrc:1174 msgctxt "STR_IMGBTN_GRF_DOWN" msgid "Next graphic" -msgstr "Grafik selanjutnya" +msgstr "Citra selanjutnya" #. 4ovAF #: sw/inc/strings.hrc:1175 @@ -8637,7 +8637,7 @@ #: sw/inc/strings.hrc:1190 msgctxt "STR_IMGBTN_GRF_UP" msgid "Previous graphic" -msgstr "Grafik sebelumnya" +msgstr "Citra sebelumnya" #. VuxvB #: sw/inc/strings.hrc:1191 @@ -9974,19 +9974,19 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:34 msgctxt "annotationmenu|unresolve" msgid "Unresolve" -msgstr "Belum terselesaikan" +msgstr "Jangan Selesaikan" #. FYnEB #: sw/uiconfig/swriter/ui/annotationmenu.ui:42 msgctxt "annotationmenu|resolvethread" msgid "Resolve Thread" -msgstr "" +msgstr "Selesaikan Utas" #. gE5Sy #: sw/uiconfig/swriter/ui/annotationmenu.ui:50 msgctxt "annotationmenu|unresolvethread" msgid "Unresolve Thread" -msgstr "" +msgstr "Jangan Selesaikan Utas" #. qAYam #: sw/uiconfig/swriter/ui/annotationmenu.ui:58 @@ -9998,7 +9998,7 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:66 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "" +msgstr "Hapus Utas _Komentar" #. z2NAS #: sw/uiconfig/swriter/ui/annotationmenu.ui:74 @@ -10028,13 +10028,13 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:102 msgctxt "asciifilterdialog|label2" msgid "_Character set:" -msgstr "Set karakter:" +msgstr "Himpunan _karakter:" #. jU5eB #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:116 msgctxt "asciifilterdialog|fontft" msgid "Default fonts:" -msgstr "Fon baku:" +msgstr "Fonta baku:" #. UauRo #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:130 @@ -10058,7 +10058,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:175 msgctxt "asciifilterdialog|extended_tip|font" msgid "By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing." -msgstr "Dengan mengatur fon bawaan, anda menentukan bahwa teks harus ditampilkan dalam fon tertentu. Fon bawaan hanya dapat dipilih saat mengimpor." +msgstr "Dengan mengatur fonta baku, Anda menentukan bahwa teks harus ditampilkan dalam fonta tertentu. Fonta baku hanya dapat dipilih saat melakukan impor." #. Vd7Uv #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:192 @@ -10364,7 +10364,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:328 msgctxt "authenticationsettingsdialog|label3" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. o6FWC #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:338 @@ -13717,7 +13717,7 @@ #: sw/uiconfig/swriter/ui/fielddialog.ui:190 msgctxt "fielddialog|ref" msgid "Cross-references" -msgstr "Acuan silang" +msgstr "Rujukan Silang" #. QqVAq #: sw/uiconfig/swriter/ui/fielddialog.ui:238 @@ -13729,7 +13729,7 @@ #: sw/uiconfig/swriter/ui/fielddialog.ui:286 msgctxt "fielddialog|docinfo" msgid "DocInformation" -msgstr "DocInformation" +msgstr "Info Dokumen" #. xAEwa #: sw/uiconfig/swriter/ui/fielddialog.ui:334 @@ -13753,7 +13753,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:33 msgctxt "findentrydialog|extended_tip|find" msgid "Displays the next record that contains the search text." -msgstr " Tayangan catatan berikutnya yang berisi teks pencarian." +msgstr "Tampilkan catatan berikutnya yang berisi teks pencarian." #. veaSC #: sw/uiconfig/swriter/ui/findentrydialog.ui:97 @@ -13802,7 +13802,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:107 msgctxt "flddbpage|label1" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. EdyCS #: sw/uiconfig/swriter/ui/flddbpage.ui:138 @@ -13838,7 +13838,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:302 msgctxt "flddbpage|label2" msgid "Database S_election" -msgstr "" +msgstr "P_emilihan Basis Data" #. JeBVb #: sw/uiconfig/swriter/ui/flddbpage.ui:328 @@ -13910,19 +13910,19 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:95 msgctxt "flddocinfopage|label1" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. GAgPa #: sw/uiconfig/swriter/ui/flddocinfopage.ui:156 msgctxt "flddocinfopage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "Menampilkan daftar ruas yang tersedia bagi tipe ruas yang dipilih dalam daftar Tipe. Untuk menyisipkan ruas, klik ruas, lalu klik Sisip." +msgstr "Menampilkan daftar ruas yang tersedia bagi jenis ruas yang dipilih dalam daftar Jenis. Untuk menyisipkan ruas, klik ruas, lalu klik Sisip." #. xAe8o #: sw/uiconfig/swriter/ui/flddocinfopage.ui:169 msgctxt "flddocinfopage|label2" msgid "_Select" -msgstr "" +msgstr "Pi_lih" #. oGvBL #: sw/uiconfig/swriter/ui/flddocinfopage.ui:237 @@ -13958,7 +13958,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:116 msgctxt "flddocumentpage|label1" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. dfKEF #: sw/uiconfig/swriter/ui/flddocumentpage.ui:177 @@ -13970,7 +13970,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:190 msgctxt "flddocumentpage|label2" msgid "_Select" -msgstr "" +msgstr "Pi_lih" #. xtXnr #: sw/uiconfig/swriter/ui/flddocumentpage.ui:267 @@ -14048,13 +14048,13 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:97 msgctxt "fldfuncpage|label1" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. vSCUW #: sw/uiconfig/swriter/ui/fldfuncpage.ui:167 msgctxt "fldfuncpage|label4" msgid "_Select" -msgstr "" +msgstr "Pi_lih" #. b3UqC #: sw/uiconfig/swriter/ui/fldfuncpage.ui:229 @@ -14204,7 +14204,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:120 msgctxt "fldrefpage|label1" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. vhEDd #: sw/uiconfig/swriter/ui/fldrefpage.ui:181 @@ -14288,19 +14288,19 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:125 msgctxt "fldvarpage|label1" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. YfUrq #: sw/uiconfig/swriter/ui/fldvarpage.ui:201 msgctxt "fldvarpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "Menampilkan daftar ruas yang tersedia bagi tipe ruas yang dipilih dalam daftar Tipe. Untuk menyisipkan ruas, klik ruas, lalu klik Sisip." +msgstr "Menampilkan daftar ruas yang tersedia bagi jenis ruas yang dipilih dalam daftar Jenis. Untuk menyisipkan ruas, klik ruas, lalu klik Sisip." #. JFbpp #: sw/uiconfig/swriter/ui/fldvarpage.ui:214 msgctxt "fldvarpage|label2" msgid "_Select" -msgstr "" +msgstr "Pi_lih" #. ZuuQf #: sw/uiconfig/swriter/ui/fldvarpage.ui:306 @@ -19818,7 +19818,7 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:113 msgctxt "mmsendmails|label1" msgid "Connection Status" -msgstr "" +msgstr "Status Sambungan" #. s8CDU #: sw/uiconfig/swriter/ui/mmsendmails.ui:162 @@ -19860,7 +19860,7 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:307 msgctxt "mmsendmails|label2" msgid "Transfer Status" -msgstr "" +msgstr "Status Pengiriman" #. c2i5B #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26 @@ -19890,25 +19890,25 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66 msgctxt "navigatorcontextmenu|STR_PROMOTE_CHAPTER" msgid "Promote Chapter" -msgstr "Promosikan Bab" +msgstr "Naikkan Bab" #. ikRHB #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:75 msgctxt "navigatorcontextmenu|STR_DEMOTE_CHAPTER" msgid "Demote Chapter" -msgstr "Demosikan Bab" +msgstr "Turunkan Bab" #. MhtFa #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:84 msgctxt "navigatorcontextmenu|STR_PROMOTE_LEVEL" msgid "Promote Level" -msgstr "Promosikan Tingkat" +msgstr "Naikkan Derajat" #. dUM5D #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:93 msgctxt "navigatorcontextmenu|STR_DEMOTE_LEVEL" msgid "Demote Level" -msgstr "Demosikan Tingkat" +msgstr "Turunkan Derajat" #. tukRq #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:102 @@ -19986,7 +19986,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:223 msgctxt "navigatorcontextmenu|STR_OUTLINE_LEVEL" msgid "Outline Level" -msgstr "Aras Kerangka" +msgstr "Derajat Kerangka" #. GyAcG #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:237 @@ -20058,13 +20058,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:375 msgctxt "navigatorpanel|spinbutton|tooltip_text" msgid "Go to Page" -msgstr "" +msgstr "Loncat ke Halaman" #. avLGA #: sw/uiconfig/swriter/ui/navigatorpanel.ui:382 msgctxt "navigatorpanel|extended_tip|spinbutton" msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward." -msgstr "" +msgstr "Masukkan nomor halaman dan tekan Enter. Gunakan panah untuk berpindah ke halaman selanjutnya atau sebelumnya." #. DgvFE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:415 @@ -20412,25 +20412,25 @@ #: sw/uiconfig/swriter/ui/notebookbar.ui:7976 msgctxt "WriterNotebookbar|ReferencesLabel" msgid "Reference~s" -msgstr "Referen~si" +msgstr "Ru~jukan" #. fDqyq #: sw/uiconfig/swriter/ui/notebookbar.ui:8913 msgctxt "WriterNotebookbar|ReviewMenuButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. rsvWQ #: sw/uiconfig/swriter/ui/notebookbar.ui:8999 msgctxt "WriterNotebookbar|ReviewLabel" msgid "~Review" -msgstr "Tin~jauan" +msgstr "~Ulasan" #. Lzxon #: sw/uiconfig/swriter/ui/notebookbar.ui:9869 msgctxt "WriterNotebookbar|ViewMenuButton" msgid "_View" -msgstr "_Tilik" +msgstr "Ta_mpilan" #. WyVST #: sw/uiconfig/swriter/ui/notebookbar.ui:9955 @@ -20604,19 +20604,19 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7566 msgctxt "notebookbar_compact|ReferencesLabel" msgid "Reference~s" -msgstr "Referen~si" +msgstr "Ru~jukan" #. jYD7j #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8406 msgctxt "notebookbar_compact|ReviewMenuButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. Lbj5B #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8458 msgctxt "notebookbar_compact|ReviewLabel" msgid "~Review" -msgstr "~Tinjau" +msgstr "~Ulasan" #. 35kA2 #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9140 @@ -20628,7 +20628,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9192 msgctxt "notebookbar_compact|ViewLabel" msgid "~View" -msgstr "~Tilik" +msgstr "~Tampilan" #. W5JNf #: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10540 @@ -20800,7 +20800,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4809 msgctxt "notebookbar_groupedbar_compact|ReviewButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. 47viq #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:4924 @@ -20934,7 +20934,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:11893 msgctxt "notebookbar_groupedbar_compact|reviewButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. 9zFhS #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:12029 @@ -21032,7 +21032,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:8639 msgctxt "notebookbar_groupedbar_full|ReviewButton" msgid "_Review" -msgstr "_Tinjau" +msgstr "_Ulasan" #. Pfwpq #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5980 @@ -21613,7 +21613,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:60 msgctxt "numparapage|comboLB_OUTLINE_LEVEL" msgid "Text Body" -msgstr "Badan Teks" +msgstr "Tubuh Teks" #. DcmkY #: sw/uiconfig/swriter/ui/numparapage.ui:61 @@ -21679,7 +21679,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:74 msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL" msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style." -msgstr "" +msgstr "Menetapkan tingkat kerangka dari 1 hingga 10 ke paragraf atau Gaya Paragraf yang dipilih." #. A9CrD #: sw/uiconfig/swriter/ui/numparapage.ui:92 @@ -22437,7 +22437,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:273 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "" +msgstr "Tampilkan Pemformatan" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:305 @@ -22527,37 +22527,37 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:528 msgctxt "optformataidspage|anchor" msgid "_Anchor:" -msgstr "" +msgstr "J_angkar:" #. 4ahDA #: sw/uiconfig/swriter/ui/optformataidspage.ui:545 msgctxt "optformataidspage|cxDefaultAnchor1" msgid "To Paragraph" -msgstr "" +msgstr "Ke Paragraf" #. Fxh2u #: sw/uiconfig/swriter/ui/optformataidspage.ui:546 msgctxt "optformataidspage|cxDefaultAnchor2" msgid "To Character" -msgstr "" +msgstr "Ke Karakter" #. rafqG #: sw/uiconfig/swriter/ui/optformataidspage.ui:547 msgctxt "optformataidspage|cxDefaultAnchor3" msgid "As Character" -msgstr "" +msgstr "Sebagai Karakter" #. B3qDX #: sw/uiconfig/swriter/ui/optformataidspage.ui:564 msgctxt "optformataidspage|lbImage" msgid "Image" -msgstr "" +msgstr "Gambar" #. npuVw #: sw/uiconfig/swriter/ui/optformataidspage.ui:592 msgctxt "extended_tip|OptFormatAidsPage" msgid "In %PRODUCTNAME text and HTML documents, defines the display for certain characters and for the direct cursor." -msgstr "Dalam %PRODUCTNAME teks dan dokumen HTML, mendefinisikan tampilan untuk karakter tertentu pada kursor." +msgstr "Dalam %PRODUCTNAME teks dan dokumen HTML, menentukan tampilan untuk karakter tertentu pada kursor." #. V9Ahc #: sw/uiconfig/swriter/ui/optgeneralpage.ui:47 @@ -23719,7 +23719,7 @@ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95 msgctxt "pagefooterpanel|footertoggle" msgid "Margins:" -msgstr "" +msgstr "Tepi:" #. xepvQ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107 @@ -23779,7 +23779,7 @@ #: sw/uiconfig/swriter/ui/pageformatpanel.ui:130 msgctxt "pageformatpanel|margin" msgid "Margins:" -msgstr "Marjin:" +msgstr "Tepi:" #. GBNW9 #: sw/uiconfig/swriter/ui/pageformatpanel.ui:154 @@ -23809,7 +23809,7 @@ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95 msgctxt "pageheaderpanel|headertoggle" msgid "Margins:" -msgstr "" +msgstr "Tepi:" #. PAGRJ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107 @@ -23881,13 +23881,13 @@ #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:284 msgctxt "pagemargincontrol|label4" msgid "_Top" -msgstr "_Puncak" +msgstr "A_tas" #. 3AqWf #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:298 msgctxt "pagemargincontrol|label5" msgid "_Bottom" -msgstr "_Dasar" +msgstr "_Bawah" #. bRaFE #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:316 @@ -27647,7 +27647,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:142 msgctxt "tocentriespage|typeft" msgid "_Type" -msgstr "_Tipe" +msgstr "_Jenis" #. fCuFC #: sw/uiconfig/swriter/ui/tocentriespage.ui:202 @@ -28145,7 +28145,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:129 msgctxt "tocindexpage|typeft" msgid "Type:" -msgstr "Tipe:" +msgstr "Jenis:" #. yfG2o #: sw/uiconfig/swriter/ui/tocindexpage.ui:145 @@ -29141,7 +29141,7 @@ #: sw/uiconfig/swriter/ui/wordcount.ui:168 msgctxt "wordcount|label9" msgid "Selection" -msgstr "Seleksi" +msgstr "Pemilihan" #. Jy4dh #: sw/uiconfig/swriter/ui/wordcount.ui:183 @@ -29177,25 +29177,25 @@ #: sw/uiconfig/swriter/ui/wrapdialog.ui:91 msgctxt "wrapdialog|extended_tip|WrapDialog" msgid "Specify the way you want text to wrap around an object." -msgstr "Tentukan cara Anda ingin agar teks membungkus objek." +msgstr "Tentukan cara yang Anda inginkan agar teks membungkus objek." #. kvc2L #: sw/uiconfig/swriter/ui/wrappage.ui:59 msgctxt "wrappage|none" msgid "_Wrap Off" -msgstr "" +msgstr "Tanpa Lipa_tan" #. KSWRg #: sw/uiconfig/swriter/ui/wrappage.ui:75 msgctxt "wrappage|extended_tip|none" msgid "Places the object on a separate line in the document. The Text in the document appears above and below the object, but not on the sides of the object." -msgstr "Tempatkan objek bada baris terpisah dalam dokumen. Teks dalam dokumen muncul di atas dan di bawah objek, tapi tidak di sisi objek." +msgstr "Tempatkan objek pada baris terpisah dalam dokumen. Teks dalam dokumen muncul di atas dan di bawah objek, tapi tidak di sisi objek." #. VCQDF #: sw/uiconfig/swriter/ui/wrappage.ui:86 msgctxt "wrappage|before" msgid "Be_fore" -msgstr "" +msgstr "Se_belum" #. tE9SC #: sw/uiconfig/swriter/ui/wrappage.ui:102 @@ -29370,10 +29370,10 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:551 msgctxt "wrappage|label3" msgid "Options" -msgstr "Opsi" +msgstr "Pilihan" #. dsA5z #: sw/uiconfig/swriter/ui/wrappage.ui:571 msgctxt "wrappage|extended_tip|WrapPage" msgid "Specify the way you want text to wrap around an object." -msgstr "Tentukan cara Anda ingin agar teks membungkus objek." +msgstr "Tentukan cara yang Anda inginkan agar teks membungkus objek." diff -Nru libreoffice-7.1.2~rc2/translations/source/id/vcl/messages.po libreoffice-7.1.3~rc2/translations/source/id/vcl/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/vcl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/vcl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-01 16:35+0000\n" +"PO-Revision-Date: 2021-04-07 14:15+0000\n" "Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564211137.000000\n" #. k5jTM @@ -1208,7 +1208,7 @@ #: vcl/inc/strings.hrc:156 msgctxt "STR_SEPARATOR" msgid "Separator" -msgstr "" +msgstr "Pemisah" #. V2EuY #. To translators: This is the first entry of a sequence of measurement unit names @@ -2227,7 +2227,7 @@ #: vcl/uiconfig/ui/printdialog.ui:828 msgctxt "printdialog|singlejobs" msgid "Create separate print jobs for collated output" -msgstr "" +msgstr "Buat pekerjaan cetak terpisah untuk keluaran yang terkolasi" #. X4Am9 #: vcl/uiconfig/ui/printdialog.ui:836 @@ -2239,7 +2239,7 @@ #: vcl/uiconfig/ui/printdialog.ui:857 msgctxt "printdialog|rangeexpander" msgid "_More" -msgstr "" +msgstr "_Lainnya" #. ehfCG #: vcl/uiconfig/ui/printdialog.ui:875 @@ -2443,7 +2443,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1345 msgctxt "printdialog|layoutexpander" msgid "M_ore" -msgstr "" +msgstr "L_ebih" #. rCBA5 #: vcl/uiconfig/ui/printdialog.ui:1363 diff -Nru libreoffice-7.1.2~rc2/translations/source/id/wizards/source/resources.po libreoffice-7.1.3~rc2/translations/source/id/wizards/source/resources.po --- libreoffice-7.1.2~rc2/translations/source/id/wizards/source/resources.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/wizards/source/resources.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-02-01 14:38+0000\n" -"Last-Translator: princeofgiri \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563639812.000000\n" #. 8UKfi @@ -4289,7 +4289,7 @@ "CorrespondenceFields_17\n" "property.text" msgid "Email" -msgstr "" +msgstr "Surel" #. w7uK5 #: resources_en_US.properties @@ -4424,7 +4424,7 @@ "CorrespondenceNoTextmark_0\n" "property.text" msgid "The bookmark 'Recipient' is missing." -msgstr "Penanda buku 'Penerima' hilang." +msgstr "Markah 'Penerima' hilang." #. G6KuE #: resources_en_US.properties @@ -4685,7 +4685,7 @@ "ProgressMoreTemplates\n" "property.text" msgid "Templates" -msgstr "Palet" +msgstr "Cetakan" #. foG9h #: resources_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/id/writerperfect/messages.po libreoffice-7.1.3~rc2/translations/source/id/writerperfect/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/writerperfect/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/writerperfect/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-01-07 12:26+0000\n" -"Last-Translator: Andreas Bayu \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1537331151.000000\n" #. DXXuk @@ -200,4 +200,4 @@ #: writerperfect/uiconfig/ui/wpftencodingdialog.ui:68 msgctxt "wpftencodingdialog|label" msgid "_Character set:" -msgstr "Set k_arakter:" +msgstr "Himpunan _karakter:" diff -Nru libreoffice-7.1.2~rc2/translations/source/id/xmlsecurity/messages.po libreoffice-7.1.3~rc2/translations/source/id/xmlsecurity/messages.po --- libreoffice-7.1.2~rc2/translations/source/id/xmlsecurity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/id/xmlsecurity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-01 16:35+0000\n" -"Last-Translator: Andika Triwidada \n" -"Language-Team: Indonesian \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Rizal Muttaqin \n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563272938.000000\n" #. EyJrF @@ -310,7 +310,7 @@ #: xmlsecurity/uiconfig/ui/certpage.ui:33 msgctxt "certpage|label1" msgid "Certification path" -msgstr "Path sertifikasi" +msgstr "Jalur sertifikasi" #. y2mBB #: xmlsecurity/uiconfig/ui/certpage.ui:45 @@ -334,7 +334,7 @@ #: xmlsecurity/uiconfig/ui/certpage.ui:149 msgctxt "extended_tip|status" msgid "The Certificate Path page of the View Certificate dialog displays the location and the status of the certificate." -msgstr "Halaman Jalur Sertifikat dialogTampil Sertifikatmenampilkan lokasi dan status sertifikat." +msgstr "Halaman Jalur Sertifikat dari dialog Tampil Sertifikat menampilkan lokasi dan status sertifikat." #. Cvs6c #: xmlsecurity/uiconfig/ui/certpage.ui:171 @@ -364,7 +364,7 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:89 msgctxt "digitalsignaturesdialog|dochint" msgid "The following have signed the document content: " -msgstr "Yang berikut telah menandatangani isi dokumen: " +msgstr "Berikut ini yang telah menandatangani isi dokumen: " #. GwzVw #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:133 @@ -388,13 +388,13 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:172 msgctxt "digitalsignaturesdialog|description" msgid "Description" -msgstr "Deskripsi" +msgstr "Keterangan" #. E6Ypi #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:185 msgctxt "digitalsignaturesdialog|type" msgid "Signature type" -msgstr "Tipe tanda tangan" +msgstr "Jenis tanda tangan" #. kAb39 #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:196 @@ -740,7 +740,7 @@ #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:248 msgctxt "selectcertificatedialog|label2" msgid "Description:" -msgstr "Deskripsi:" +msgstr "Keterangan:" #. LbnAV #: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:264 diff -Nru libreoffice-7.1.2~rc2/translations/source/is/cui/messages.po libreoffice-7.1.3~rc2/translations/source/is/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/is/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/is/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-17 10:36+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1556887776.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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 "Viltu finna öll orð með meira en 10 stöfum? Farðu í Breyta ▸ Finna og skipta út ▸ Finna ▸ [a-z]{10,} ▸ Aðrir valkostir ▸ haka við ‘Reglulegar segðir’." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Notaðu %MOD1+%MOD2+Shift+V til að líma efni af klippispjaldinu sem ósniðinn texta." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Framlög þín styðja við samfélag okkar í öllum heimshornum." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Ekki týnast í stórum skjölum. Skoðaðu uppbygginguna (F5) til að sjá hvernig efnið er sett fram." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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 "Þegar þú býrð til stíl sem byggist á öðrum stíl, þá geturðu sett inn prósentugildi eða punktagildi (t.d. 110% eða −2pt eða +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME styður yfir 150 tungumál." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Keyrðu %PRODUCTNAME í hvaða vafra sem er með rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Ertu að hanna XSLT- og XML-síur?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME hjálp" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Nánari upplýsingar" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Keyra þessa aðgerð núna..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Vísbending dagsins: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Áttarhorn/Stjörnuhæð: /" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/is/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/is/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/is/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/is/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:02+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blikkandi" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/it/cui/messages.po libreoffice-7.1.3~rc2/translations/source/it/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/it/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/it/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-02-18 21:36+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME supporta quattro livelli di sicurezza delle macro (da basso a molto alto) e le fonti attendibili." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 ha intenzione di candidarsi come organizzazione per Google Summer of Code (GSoC), vedi:" - -#. SNTbc -#: 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 "Sai che puoi agganciare commenti a parti di testo? Basta usare la combinazione di tasti %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Hai bisogno di spostare uno o più paragrafi? Non è necessario tagliare e incollare: usa la combinazione di tasti %MOD1+%MOD2+Freccia (su/giù)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Cambia i caratteri di base per il modello predefinito o il documento attivo tramite Strumenti ▸ Opzioni ▸ %PRODUCTNAME Writer ▸ Caratteri di base." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Vuoi cercare parole che contengono più di dieci caratteri? Modifica ▸ Trova e sostituisci ▸ Cerca ▸ [a-z]{10,} ▸ Altre opzioni ▸ spunta Espressioni regolari." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Apri un file CSV come nuovo foglio nel foglio elettronico attivo tramite Foglio ▸ Inserisci foglio da file." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Se in Writer scrivi in grassetto, corsivo o sottolineato puoi continuare con gli attributi predefiniti utilizzando solo la combinazione di tasti %MOD1+Maiusc+X (rimuovi la formattazione diretta dei caratteri)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Usa %MOD1+%MOD2+Maiusc+V per incollare il contenuto degli appunti come testo non formattato." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalizza l'aspetto delle tue note a piè di pagina con Strumenti ▸ Note a piè di pagina e note di chiusura…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Con Presentazione ▸ Presentazione personalizzata riordini e scegli le diapositive in modo da adattare la presentazione alle esigenze del tuo pubblico." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Vuoi cambiare la correzione ortografica per alcune parti del testo? Fai clic sull'area della lingua della barra di stato o, meglio, applica uno stile." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer può inserire una pagina vuota tra due pagine pari (dispari) che seguono. Spunta l'opzione “Stampa pagine vuote inserite automaticamente” nella scheda %PRODUCTNAME Writer della finestra di dialogo di stampa." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Non vuoi stampare tutte le colonne? Nascondi o raggruppa quelle che non ti servono." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Per modificare una presentazione con Riproduzione automatica, aprila e dopo averla avviata fai clic col pulsante destro del mouse e nel menu contestuale scegli Modifica." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Hai bisogno di posizionare in modo preciso? Il comando %MOD2+tasti freccia sposta gli oggetti (forme, immagini, formule) un pixel alla volta." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "La guida incorporata, se è installata, è disponibile premendo il tasto F1. In alternativa, controlla in rete all'indirizzo:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Nella barra di stato in %PRODUCTNAME Calc, fai clic col pulsante destro del mouse e scegli “Conteggio selezione” per visualizzare il numero delle celle selezionate." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Vuoi ottenere due o più colonne solo in una parte di una pagina di %PRODUCTNAME Writer? Inserisci ▸ Sezione, imposta nella scheda Colonne e inserisci il testo in quella sezione." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Usa Dati ▸ Statistiche per eseguire campionamento, statistiche descrittive, analisi della varianza, correlazione e molto altro in %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Puoi copiare da un foglio in un altro senza l'uso degli appunti. Seleziona l'area da copiare, %MOD1+clic sulla scheda del foglio di destinazione e usa Foglio ▸ Compila celle ▸ Compila fogli." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Puoi cambiare l'aspetto di %PRODUCTNAME tramite Strumenti ▸ Opzioni ▸ Vista ▸ Interfaccia utente." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "In %PRODUCTNAME Impress, usa Inserisci ▸ Media ▸ Album fotografico per creare una presentazione da una serie di immagini con la funzionalità “Album fotografico”." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Puoi mostrare le formule anziché i risultati con Visualizza > Mostra formula (o Strumenti ▸ Opzioni ▸ %PRODUCTNAME Calc ▸ Vista ▸ Mostra ▸ Formule)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME è sviluppato da una comunità amichevole, composta da centinaia di contributori provenienti da tutto il mondo. Unisciti a noi e condividi le tue competenze oltre il puro codice." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Mancino? Abilita Strumenti ▸ Opzioni ▸ Impostazioni della lingua ▸ Lingue ▸ Asiatica e attiva Strumenti ▸ Opzioni ▸ %PRODUCTNAME Writer ▸ Vista ▸ Righello ▸ Allineato a destra, che mostra la barra di scorrimento alla sinistra." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Vuoi che i titoli dei tuoi capitoli inizino sempre la pagina? Modifica Titolo1 (stile di paragrafo) ▸ Flusso di testo ▸ Interruzioni e attiva Inserisci ▸ Pagina ▸ Prima." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Il valore Data/ora è solo un numero di giorni a partire da un giorno zero scelto; nel numero, la parte intera rappresenta la data, quella frazionale l'ora (parte trascorsa di un giorno), con 0,5 che rappresenta il mezzogiorno." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Maiusc+%MOD1+Canc elimina dalla posizione del cursore fino alla fine della frase corrente." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Usa le etichette di colonna o di riga nelle formule. Per esempio, se hai due colonne, “Ora” e “KM”, usa =Ora/KM per ottenere i minuti per chilometro." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Stanco delle “formiche in marcia” attorno alle celle in Calc? Premi Esc per fermarle; il contenuto copiato resterà a disposizione pronto per essere incollato." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Vuoi diventare Ambasciatore %PRODUCTNAME? Esistono certificazioni per sviluppatori, amministratori e formatori." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Combina le orientazioni verticale e orizzontale in un foglio elettronico Calc applicando stili di pagina differenti nei fogli." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Fai clic sull'icona carattere speciale nella barra degli strumenti per ottenere rapido accesso ai caratteri preferiti e usati di recente da inserire." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Scegli la vista “Gerarchico” nella barra laterale Stili per osservare la relazione tra gli stili." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Puoi usare gli stili per rendere coerenti le tabelle nei tuoi documenti. Scegline uno predefinito mediante gli Stili (F11) oppure mediante Tabella ▸ Formattazione automatica." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Vuoi configurare l'uso del tasto Ctrl per aprire i collegamenti ipertestuali? Strumenti ▸ Opzioni ▸ %PRODUCTNAME ▸ Sicurezza ▸ Opzioni ▸ “È necessario Ctrl+clic per l'apertura dei collegamenti”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Se desideri un calcolo separato delle singole parti di una formula, seleziona le parti e premi F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Puoi proteggere le celle con Formato ▸ Celle ▸ Protezione. Usa Strumenti ▸ Proteggi foglio per impedire l'inserimento, l'eliminazione, la rinomina e lo spostamento o la copiatura dei fogli." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Scrivi lungo una curva? Disegna la linea, doppio clic, digita il testo, Formato ▸ Casella di testo e forma ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Vuoi visualizzare solo i valori più alti in un foglio elettronico? Seleziona il menu Dati ▸ Filtro automatico, poi premi la freccia della casella a tendina e scegli “Top10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Per rimuovere il numero di pagina dall'indice generale vai a Inserisci ▸ Indice generale (o fai clic col destro e Modifica l'indice inserito in precedenza). Nella scheda Voci elimina il numero di pagina (#) dalla riga Struttura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Col Navigatore puoi selezionare e spostare in basso o in alto le intestazioni e il testo sotto l'intestazione, nel Navigatore e nel documento." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Per ottenere rapidamente un oggetto matematico in Writer digita la formula, contrassegnala e usa Inserisci ▸ Oggetto ▸ Formula per convertire il testo." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Con %PRODUCTNAME è molto facile installare un nuovo dizionario: essi vengono forniti come estensioni." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME ha una versione portatile che ti consente la mobilità. Puoi installare %PRODUCTNAME Portable nel tuo disco rigido persino senza diritti di amministrazione sul tuo computer." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer ti permette di numerare le tue note a piè di pagina per pagina, capitolo, documento: Strumenti ▸ Note a piè di pagina e note di chiusura ▸ scheda Note a piè di pagina ▸ Conteggio." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Il tuo documento Writer non riapre il cursore del testo nella stessa posizione in cui si trovava durante l'ultimo salvataggio? Aggiungi nome o cognome in Strumenti ▸ Opzioni ▸ %PRODUCTNAME ▸ Dati utente ▸ Nome/Cognome." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Gestione delle citazioni? Usa un'estensione di terze parti." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Vuoi inserire un valore nella stessa posizione su fogli diversi? Seleziona i fogli: tieni premuto il tasto %MOD1 e fai clic sulle loro schede prima di inserire." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Vuoi nascondere del testo in un documento? Seleziona il testo. Inserisci ▸ Sezione e scegli “Nascondi”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Puoi personalizzare il pulsante centrale del mouse mediante Strumenti ▸ Opzioni ▸ %PRODUCTNAME ▸ Vista ▸ Pulsante centrale del mouse." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Vuoi stampare due pagine in orizzontale su una in verticale (riducendo il formato A4 ad A5)? File ▸ Stampa e seleziona 2 in (Layout di pagina) “Pagine per foglio”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Per un accesso rapido ai segnalibri del tuo documento, fai clic destro sul numero di pagina della barra di stato (angolo inferiore sinistro della finestra del documento)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Per evidenziare un oggetto nello sfondo del documento, selezionalo mediante lo strumento Seleziona all'interno della barra degli strumenti Disegno." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definisci come Testo automatico i testi che utilizzi spesso. Potrai inserirli tramite il nome, la scorciatoia o la barra degli strumenti in qualsiasi documento Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Riproduci musica in una presentazione assegnando il suono alla prima transizione di diapositiva e senza premere il pulsante “Applica a tutte le diapositive”." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 non calcola da sinistra a destra ma rispetta l'ordine Parentesi – Esponenti – Moltiplicazione – Divisione – Addizione – Sottrazione." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Scarica la documentazione e le guide gratuite di %PRODUCTNAME da:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Vuoi rimuovere contemporaneamente tutti i caratteri <> e mantenere il testo contenuto al loro interno? Modifica ▸ Trova e sostituisci: Cerca = [<>], Sostituisci = vuoto e attiva “Espressioni regolari” in Altre opzioni." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Devi presentare un rapporto scritto con Writer? File ▸ Invia ▸ Struttura alla presentazione crea automaticamente una presentazione dalla struttura." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Vuoi gestire la presentazione di collegamenti ipertestuali in un foglio elettronico? Inseriscili con la funzione COLLEGAMENTO." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Disattiva l'opzione Strumenti ▸ Opzioni ▸ %PRODUCTNAME Calc ▸ Vista ▸ Zoom: “Sincronizza fogli” in modo che ciascun foglio in Calc possieda il proprio fattore di ingrandimento." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Puoi impostare un colore per ciascuna scheda: clic col destro sulla scheda oppure usa Foglio ▸ Colore linguetta foglio." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Traccia le celle utilizzate in una formula, i precedenti (Maiusc+F9) o i dipendenti (Maiusc+F5) (oppure usa Strumenti ▸ Detective). Con ciascun clic vai avanti di un passo nella catena." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Inserisci e numera le tue formule in un passaggio: digita fn poi F3. Viene inserito un testo automatico con formula e numero allineati in una tabella." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Puoi creare un indice di illustrazione dai nomi degli oggetti, non solo dalle didascalie." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Usa il tuo telefono Android o iPhone per controllare in remoto la tua presentazione Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Vuoi conoscere quanti giorni ci sono mese corrente? Usa la funzione GIORNI.MESE(OGGI())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "I numeri sono visualizzati come ### nel tuo foglio elettronico? La colonna è troppo stretta per visualizzare tutte le cifre." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Abilita i calcoli paralleli di massa delle formule nelle celle tramite Strumenti ▸ Opzioni ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Usa lo strumento Connettore nella barra degli strumenti Disegno in Draw/Impress per creare grafici di flusso di bell'aspetto e, facoltativamente, copiare e incollare l'oggetto in Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Le tue donazioni sostengono la nostra comunità mondiale." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Vuoi aggiungere x mesi a una data? Usa =DATA.MESE(data;mesi)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Per selezionare un intervallo contiguo di celle che contiene dati ed è delimitato da righe e colonne vuote, usa %MOD1+* (del tastierino numerico)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Il tuo modello accettato per la data non è adatto? Usa Strumenti ▸ Opzioni ▸ Impostazioni della lingua ▸ Lingue ▸ Modelli accettati per la data per regolarlo." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vuoi esportare formule in CSV? File ▸ Salva come ▸ digita: Testo CSV, spunta “Modifica impostazioni filtro”, poi spunta “Salva le formule delle celle” nella finestra successiva." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "La Presenter console è un'ottimo strumento quando lavora con %PRODUCTNAME Impress. L'hai provata?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Per eliminare più commenti, seleziona le celle con commento e usa Foglio ▸ Commenti delle celle ▸ Elimina commento." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Converti in modo semplice i tuoi documenti in PDF con un clic premendo l'icona PDF nella barra degli strumenti." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Vuoi selezionare senza scorrere un'area estesa di celle? Digita il riferimento dell'area (per es. A1:A1000) nella casella del nome, poi premi Invio." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vuoi conoscere i parametri di riga di comando validi? Avvia soffice con --help o -h o -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Adatta il tuo foglio o l'area di stampa a una pagina con Formato ▸ Pagina ▸ scheda Foglio ▸ Modo scala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Hai bisogno di un elemento non numerato in un elenco? Usa “Inserisci voce senza numero” nella barra degli strumenti Elenchi puntati e numerati." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Puoi modificare l'orientazione delle celle di una tabella con Tabella ▸ Proprietà… ▸ Flusso di testo ▸ Orientazione del testo." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Per cambiare in %PRODUCTNAME Draw i punti 0/0 dei righelli, trascina l'intersezione dei due righelli dall'angolo superiore sinistro all'interno dello spazio di lavoro." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Vuoi spostare una colonna tra due altre in Calc in un solo passaggio? Fai clic sull'intestazione poi su una cella nella colonna, mantieni premuto il pulsante del mouse e sposta nella destinazione col tasto %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Contrassegna automaticamente le voci di indice alfabetico utilizzando un file di concordanza." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Usa Formato ▸ Allinea (o il menu contestuale) per posizionare in modo preciso gli oggetti in Draw/Impress: il comando centra nella pagina un oggetto oppure un gruppo a seconda della selezione fatta." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Non usare la tabulazione per distanziare gli elementi in un documento Writer. A seconda del lavoro che stai preparando, una tabella senza bordi può essere una scelta migliore." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Non hai bisogno di scorrere l'elenco in Strumenti ▸ Personalizza ▸ Tastiera per trovare una scorciatoia: basta che la digiti." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Quando inserisci oggetti, %PRODUCTNAME può aggiungere automaticamente una didascalia automatica. Vedi Strumenti ▸ Opzioni ▸ %PRODUCTNAME Writer ▸ Didascalia automatica." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Con %PRODUCTNAME puoi utilizzare il tuo account Google Mail per eseguire una stampa in serie e-mail. Compila i campi in Strumenti ▸ Opzioni ▸ %PRODUCTNAME Writer ▸ Stampa in serie e-mail." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Tieni visibili le intestazioni di colonna di un foglio durante lo scorrimento mediante Visualizza ▸ Blocca celle ▸ Blocca prima riga." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Vuoi iniziare a lavorare con le macro di Basic? Dai un'occhiata agli esempi in Strumenti ▸ Macro ▸ Modifica macro." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Applica gli stili dei titoli del paragrafo in Writer con le combinazioni di tasti: %MOD1+ applica il Titolo 1, %MOD1+ applica il Titolo 2, e via discorrendo." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Non perderti nei documenti di grandi dimensioni. Usa il Navigatore (F5) per trovare la strada attraverso il contenuto." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Modifica ▸ Trova e sostituisci di permette di inserire direttamente caratteri speciali: fai clic col pulsante destro del mouse nei campi di immissione oppure premi Maiusc+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Hai bisogno di contenuto personalizzato per le proprietà dei metadati? File ▸ Proprietà ▸ scheda Proprietà personalizzate ti consente di creare quello che desideri." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vuoi vedere, ma non stampare, un oggetto in Draw? Disegnalo su un livello in cui non sia attivata l'opzione “Stampabile” (clic col destro del mouse sulla scheda, poi “Modifica livello”)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Usa Inserisci ▸ Comando di campo ▸ Data per inserire la data attuale nel documento." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Ci sono molte immagini nel tuo documento Writer? Accelera la visualizzazione disattivando Visualizza ▸ Immagini e grafici." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Usa Foglio ▸ Compila celle ▸ Numero casuale per generare una serie casuale basata su varie distribuzioni." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "La rinomina delle diapositive in Impress ti aiuta a definire le interazioni di “Vai alla pagina” e ad avere un riepilogo più chiaro di Diapositiva1, Diapositiva2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "La finestra di dialogo Numerazione capitoli ti permette d'impostare il testo da visualizzare prima del numero di capitolo. Per visualizzare, per esempio, “Capitolo 1” scrivi “Capitolo ”." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Vuoi trasporre una tabella di Writer? Copia e incolla in Calc, trasponi con copia/incolla speciale poi copia/incolla speciale ▸ Testo formattato in Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Per ottenere lo strumento “Testo verticale” nella barra degli strumenti Disegno, attiva l'opzione in Strumenti ▸ Opzioni ▸ Impostazioni della lingua ▸ Lingue ▸ Lingue predefinite (per i documenti) ▸ Asiatica (e rendi visibile il pulsante con clic destro)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Per ingrandire rapidamente su un'area selezionata, fai clic col destro sulla parte relativa allo zoom nella barra di stato e scegli Ottimale." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Puoi firmare i file PDF esistenti e verificarne anche le firme." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Crei spesso un documento da un altro? Prendi in considerazione l'uso di un modello." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "In Calc, usa Formato ▸ Formattazione condizionale ▸ Gestisci per vedere quali celle sono state definite con formattazione condizionale." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Strumenti ▸ Detective ▸ Contrassegna i dati non validi evidenzia tutte le celle nel foglio che contengono valori che al di fuori delle regole di convalida." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Per una maggiore interoperabilità con le altre suite per ufficio usa l'incorporazione dei caratteri in File ▸ Proprietà ▸ Carattere." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Per convertire una formula in valori statici non devi copiare e incollare; usa Dati ▸ Calcola ▸ Formula in valore." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Puoi riformattare tutti i commenti in un documento facendo clic sulla freccia rivolta verso il basso e scegliendo “Formatta tutti i commenti”." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Vuoi che i layout dello schermo e della stampa coincidano? Attiva l'opzione Strumenti ▸ Opzioni ▸ %PRODUCTNAME Calc ▸ Generale ▸ Usa i parametri della stampante per la formattazione del testo." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer ti aiuta a creare copie di sicurezza: con File ▸ Salva una copia crei un nuovo documento e continui a lavorare sull'originale." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Una volta che hai creato uno stile basato su un altro, puoi inserire un valore percentuale o un valore in punti (per es. 110% oppure -−2pt o +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Per copiare un commento senza perdere il contenuto della cella di destinazione devi utilizzare il comando Incolla speciale e nella finestra di dialogo rimuovere la spunta a tutte le caselle ad eccezione dei “Commenti”. Usa Operazioni “Aggiungi” per non sovrascrivere il contenuto esistente." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Converti in serie i tuoi documenti MS Office nel formato OpenDocument mediante il convertitore di documenti che trovi nel menu File ▸ Procedure guidate ▸ Convertitore di documenti." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Durante la modifica all'interno di una cella, puoi fare clic col pulsante destro del mouse e poi su Inserisci campo: Data, Nome del foglio, Titolo del documento, ecc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Devi spostare una tabella Writer? Menu Tabella ▸ Seleziona ▸ Tabella, poi Inserisci ▸ Cornice ▸ Cornice e spostala dove vuoi." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Con Strumenti ▸ Testo automatico ▸ (pulsante) Testo automatico ▸ Importa puoi selezionare un documento Word o un modello contenente le voci di testo automatico da importare." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Non inserire interruzioni manuali per separare due paragrafi. Cambia invece Rientri e spaziature ▸ Distanza ▸ Sotto il paragrafo nelle proprietà dello stile del paragrafo." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Mantieni gli zeri iniziali di un numero utilizzando l'opzione di formato “zeri iniziali” oppure formatta la cella come testo prima di inserire il numero." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vuoi tornare ai valori predefiniti dopo aver applicato uno stile di elenco? Fai clic sullo strumento Attiva/disattiva l'elenco numerato o puntato sulla barra degli strumenti Formattazione." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Elimina tutte le aree di stampa in un colpo solo: seleziona tutti i fogli poi Formato ▸ Aree di stampa ▸ Cancella." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Aggiungi immagini di sfondo ai fogli elettronici tramite Inserisci ▸ Immagine, oppure trascina uno sfondo dalla Galleria, poi Formato ▸ Disponi ▸ Sullo sfondo." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Hai problemi mentre incolli del testo proveniente da file PDF o pagine web all'interno dei documenti? Prova a incollare testo non formattato (%MOD1+%MOD2+Maiusc+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "In Calc usa la funzione MEDIA.TRONCATA() in modo da ottenere la media di un insieme di dati escludendo i valori più alti e più bassi." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Il quarto parametro opzionale della funzione di Calc 'CERCA.VERT' indica se la prima colonna di dati va ordinata o no. Se non va ordinata, digita FALSO oppure zero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Le barre degli strumenti sono contestuali: si aprono in base al contesto attivo. Se non vuoi che questo accada, disattivale da Visualizza ▸ Barre degli strumenti." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Vuoi creare un documento master dal documento Writer corrente? File ▸ Invia ▸ Crea documento master (i documenti secondari vengono creati in base alla struttura)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Vuoi centrare le celle in una pagina stampata in Calc? Formato ▸ Pagina, Pagina ▸ Impostazioni layout ▸ Allineamento tabella." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Le cornici possono essere collegate tra loro in modo che il testo possa scorrere da una cornice all'altra come nel desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Crea un grafico basato su una tabella di Writer facendo clic nella tabella e scegliendo Inserisci ▸ Grafico." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Per specificare quali caratteri non stampabili siano visualizzati, seleziona le opzioni in Strumenti ▸ Opzioni ▸ %PRODUCTNAME Writer ▸ Formattazione ▸ Mostra la formattazione." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Vuoi passare a una pagina specifica basandoti sul suo numero? Fai clic sulla voce più a sinistra della barra di stato o usa Modifica ▸ Vai alla pagina... oppure premi %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME supporta più di 150 lingue." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Se hai bisogno che un altro programma mostri la sua finestra davanti alla tua presentazione, disattiva l'opzione Presentazione ▸ Impostazioni presentazione ▸ Presentazione in primo piano." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Vuoi trovare le parole in grassetto di un documento Writer? Modifica ▸ Trova e sostituisci ▸ Altre opzioni ▸ Attributi ▸ Spessore del carattere." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Puoi ordinare con metodo alfanumerico i paragrafi o le righe di tabella tramite Strumenti ▸ Ordina." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Per inserire un paragrafo prima (dopo) una sezione, premi %MOD2+Invio all'inizio (fine) della sezione." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME ha un centro dei modelli per creare documenti di bell'aspetto: dàgli un'occhiata." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcola i rimborsi di un prestito con Calc: per esempio RATA(2%/12;36;2500) tasso d'interesse per periodo di pagamento 2%/12, 36 mesi, totale del prestito 2.500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Non riesci a trovare quello che vuoi con la funzione CERCA.VERT in Calc? Con INDICE e CONFRONTA puoi fare tutto!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Vuoi mostrare la colonna A nascosta? Fai clic su una cella della colonna B, premi il pulsante del mouse, sposta il mouse verso sinistra, rilascia. Poi attiva la colonna tramite Formato ▸ Colonne ▸ Mostra." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Per cambiare il numero di una pagina in Writer, vai alle proprietà del primo paragrafo e nella scheda Flusso di testo attiva Interruzioni ▸ Inserisci e digita il numero." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Avvia %PRODUCTNAME in qualsiasi browser mediante rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Strano codice di errore in Calc, Err: seguito da un numero? Questa pagina lo spiega:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Includi nell'indice generale un paragrafo che non è un titolo cambiando la Struttura e numerazione nelle impostazioni del paragrafo a un livello di struttura." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Oltre gli indici generali, %PRODUCTNAME può creare indici alfabetici, di illustrazioni, di tabelle, di oggetti, bibliografici e personalizzati." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Non riesci a modificare o eliminare uno stile di cella personalizzato? Controlla tutti i fogli, nessuno deve risultare protetto." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Hai bisogno di riempire una serie? Seleziona l'area di celle, poi Foglio ▸ Compila celle ▸ Serie e scegli tra Lineare, Crescita, Data e Riempimento automatico." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Vuoi sapere se una cella è collegata con formule di altre celle? Strumenti ▸ Detective ▸ Traccia dipendenti (Maiusc+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Nel campo d'immissione delle sostituzioni delle opzioni di correzione automatica puoi usare i caratteri jolly .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Vuoi duplicare la riga soprastante? Premi %MOD1+D o usa Foglio > Compila celle ▸ Compila verso il basso." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Per ricercare in più fogli elettronici, selezionali assieme prima di iniziare la ricerca." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "L'azione di trascinare e rilasciare celle da Calc all'interno della visualizzazione normale di una presentazione crea una tabella; all'interno della visualizzazione struttura, ciascuna cella crea una riga nella struttura." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME ti aiuta a evitare d'inserire due o più spazi in Writer. Attiva Strumenti ▸ Correzione automatica ▸ Opzioni di correzione automatica ▸ Opzioni ▸ Ignora doppi spazi." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Dopo aver digitato un valore in Calc vuoi che il cursore si posizioni nella cella a destra? Usa il tasto Tab al posto di Invio." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Per visualizzare la barra di scorrimento alla sinistra, abilita Strumenti ▸ Opzioni ▸ Impostazioni della lingua ▸ Lingue ▸ Testo complesso e spunta Foglio ▸ Da destra a sinistra." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Trascina un oggetto formattato nella finestra Stili e formattazione. Si aprirà un riquadro di dialogo in cui dovrai inserire solo il nome del nuovo stile." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Le nuove versioni di %PRODUCTNAME forniscono nuove funzionalità, correzione di errori e patch di sicurezza. Mantieni aggiornato il tuo software!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Stai sviluppando nuovi filtri XSLT e XML?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Premi Maiusc+F1 per visualizzare tutti i suggerimenti attivi disponibili nei riquadri delle finestre di dialogo, se l'opzione \"Guida attiva\" non è attivata in Strumenti ▸ Opzioni ▸ %PRODUCTNAME ▸ Generale." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Guida di %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Maggiori informazioni" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Esegui questa azione ora..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Suggerimento del giorno: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/it/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/it/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-11 20:36+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565337097.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Maiuscoletto: rende maiuscoli i caratteri minuscoli selezionati e ne riduce la dimensione." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "Lampeggio;effetto del carattereCarattere; effetto di lampeggio" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Lampeggiante" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Rende lampeggianti i caratteri selezionati. Non è possibile modificare la frequenza di lampeggiamento." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/it/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/it/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-01-15 19:45+0000\n" +"PO-Revision-Date: 2021-04-19 10:37+0000\n" "Last-Translator: Valter Mura \n" "Language-Team: Italian \n" "Language: it\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564771861.000000\n" #. P7iNX @@ -1040,7 +1040,7 @@ "tit\n" "help.text" msgid "Format" -msgstr "Forma" +msgstr "Formato" #. rNrGw #: main0105.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/it/shell/source/win32/shlxthandler/res.po libreoffice-7.1.3~rc2/translations/source/it/shell/source/win32/shlxthandler/res.po --- libreoffice-7.1.2~rc2/translations/source/it/shell/source/win32/shlxthandler/res.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/it/shell/source/win32/shlxthandler/res.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2015-04-22 23:40+0200\n" -"PO-Revision-Date: 2017-01-29 19:47+0000\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" "Last-Translator: Valter Mura \n" -"Language-Team: Italian \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1485719260.000000\n" +#. nMHZG #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -24,6 +25,7 @@ msgid "Title" msgstr "Titolo" +#. 7QBxh #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -32,6 +34,7 @@ msgid "Title:" msgstr "Titolo:" +#. UGL46 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -40,6 +43,7 @@ msgid "Subject" msgstr "Oggetto" +#. Rqom8 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -48,6 +52,7 @@ msgid "Subject:" msgstr "Oggetto:" +#. BbVSy #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -56,6 +61,7 @@ msgid "Author" msgstr "Mittente" +#. 6eSDz #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -64,6 +70,7 @@ msgid "Author:" msgstr "Autore:" +#. nA6Zp #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -72,6 +79,7 @@ msgid "Keywords" msgstr "Parole chiave" +#. hJatc #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -80,6 +88,7 @@ msgid "Keywords:" msgstr "Parole chiave:" +#. NyeBb #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -88,6 +97,7 @@ msgid "Comments" msgstr "Commenti" +#. tN79v #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -96,6 +106,7 @@ msgid "Comments:" msgstr "Commenti:" +#. C7AUH #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -104,6 +115,7 @@ msgid "Pages" msgstr "Pagine" +#. vhAWA #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -112,6 +124,7 @@ msgid "Tables" msgstr "Tabelle" +#. VNMuj #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -120,6 +133,7 @@ msgid "Images" msgstr "Immagini" +#. WePDJ #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -128,6 +142,7 @@ msgid "Objects" msgstr "Oggetti" +#. CXU2C #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -136,6 +151,7 @@ msgid "OLE Objects" msgstr "Oggetti OLE" +#. zATfj #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -144,6 +160,7 @@ msgid "Paragraphs" msgstr "Paragrafi" +#. S4c4V #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -152,14 +169,16 @@ msgid "Words" msgstr "Parole" +#. D4Ywc #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" "%CHARACTERS%\n" "LngText.text" msgid "Characters" -msgstr "Carattere" +msgstr "Caratteri" +#. 8LRV5 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -168,6 +187,7 @@ msgid "Lines" msgstr "Righe" +#. UhaXY #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -176,6 +196,7 @@ msgid "Origin" msgstr "Sorgente" +#. eEVzH #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -184,6 +205,7 @@ msgid "Version" msgstr "Versione" +#. CGpUh #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -192,6 +214,7 @@ msgid "Sheets" msgstr "Fogli" +#. 2okgs #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -200,6 +223,7 @@ msgid "Cells" msgstr "Celle" +#. rgN97 #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -208,6 +232,7 @@ msgid "Document Statistics" msgstr "Statistiche documento" +#. VsBfC #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -216,6 +241,7 @@ msgid "Summary" msgstr "Riepilogo" +#. MiuQD #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -224,6 +250,7 @@ msgid "Property" msgstr "Proprietà" +#. mGZKg #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -232,6 +259,7 @@ msgid "Value" msgstr "Valore" +#. TCEEW #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -240,6 +268,7 @@ msgid "Modified" msgstr "Modificato il" +#. YYD9t #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -248,6 +277,7 @@ msgid "Modified:" msgstr "Modificato il:" +#. vBE2F #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -256,6 +286,7 @@ msgid "Revision number" msgstr "Numero revisione" +#. FXXNk #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -264,6 +295,7 @@ msgid "Revision number:" msgstr "Numero revisione:" +#. HdSaz #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -272,6 +304,7 @@ msgid "Total editing time" msgstr "Tempo totale di modifica" +#. snZkq #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -280,6 +313,7 @@ msgid "Total editing time:" msgstr "Tempo totale di modifica:" +#. AuQLP #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -288,6 +322,7 @@ msgid "Description" msgstr "Descrizione" +#. WESrR #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -296,6 +331,7 @@ msgid "Description:" msgstr "Descrizione:" +#. RWroq #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" @@ -304,6 +340,7 @@ msgid "Size:" msgstr "Dimensione:" +#. 3GFSY #: shlxthdl.ulf msgctxt "" "shlxthdl.ulf\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/basctl/messages.po libreoffice-7.1.3~rc2/translations/source/ja/basctl/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/basctl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/basctl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-14 14:36+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560770808.000000\n" #. fniWp @@ -657,7 +657,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:379 msgctxt "basicmacrodialog|extended_tip|edit" msgid "Starts the %PRODUCTNAME Basic editor and opens the selected macro or dialog for editing." -msgstr "" +msgstr "%PRODUCTNAME Basic エディタを起動して、選択したマクロまたはダイアログを開いて編集します。" #. 9Uhec #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:391 @@ -669,7 +669,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:398 msgctxt "basicmacrodialog|extended_tip|delete" msgid "Creates a new macro, creates a new module or deletes the selected macro or selected module." -msgstr "" +msgstr "新しいマクロを作成するか、新しいモジュールを作成するか、選択したマクロまたは選択したモジュールを削除します" #. XkqFC #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:410 @@ -705,7 +705,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:455 msgctxt "basicmacrodialog|extended_tip|newlibrary" msgid "Saves the recorded macro in a new library." -msgstr "" +msgstr "新しいライブラリに記録したマクロを保存します。" #. 2xdsE #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:467 @@ -717,7 +717,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:474 msgctxt "basicmacrodialog|extended_tip|newmodule" msgid "Saves the recorded macro in a new module." -msgstr "" +msgstr "新しいモジュールに記録したマクロを保存します。" #. gMDg9 #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:522 @@ -843,7 +843,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:148 msgctxt "dialogpage|extended_tip|newmodule" msgid "Opens the editor and creates a new module." -msgstr "" +msgstr "エディタを開き、新しいモジュールを作成します。" #. kBzSW #: basctl/uiconfig/basicide/ui/dialogpage.ui:161 @@ -867,7 +867,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:204 msgctxt "dialogpage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "選択したライブラリのパスワードを割り当てまたは編集します。" #. sHS7f #: basctl/uiconfig/basicide/ui/dialogpage.ui:216 @@ -879,7 +879,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:223 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 "" +msgstr "現在のリストに追加する%PRODUCTNAME Basic ライブラリを探して、[開く] をクリックします。" #. ubE5G #: basctl/uiconfig/basicide/ui/dialogpage.ui:235 @@ -891,7 +891,7 @@ #: basctl/uiconfig/basicide/ui/dialogpage.ui:261 msgctxt "dialogpage|extended_tip|DialogPage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "既存のモジュールまたはダイアログを一覧表示します" #. EGyCn #: basctl/uiconfig/basicide/ui/dockingwatch.ui:113 @@ -993,7 +993,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:61 msgctxt "libpage|extended_tip|location" msgid "Select the application or the document containing the macro libraries that you want to organize." -msgstr "" +msgstr "整理するマクロライブラリを含むアプリケーションまたはドキュメントを選択します" #. C4mjh #: basctl/uiconfig/basicide/ui/libpage.ui:89 @@ -1023,7 +1023,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:206 msgctxt "libpage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "選択したライブラリのパスワードを割り当てまたは編集します" #. bzX6x #: basctl/uiconfig/basicide/ui/libpage.ui:218 @@ -1065,7 +1065,7 @@ #: basctl/uiconfig/basicide/ui/libpage.ui:307 msgctxt "libpage|extended_tip|LibPage" msgid "Select the application or the document containing the macro libraries that you want to organize." -msgstr "" +msgstr "整理するマクロライブラリを含むアプリケーションまたはドキュメントを選択します。" #. zrJTt #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:16 @@ -1107,7 +1107,7 @@ #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:250 msgctxt "managebreakpoints|extended_tip|pass" msgid "Specify the number of loops to perform before the breakpoint takes effect." -msgstr "" +msgstr "ブレークポイントが有効になる前に実行するループの数を指定します。" #. VDCwR #: basctl/uiconfig/basicide/ui/managebreakpoints.ui:263 @@ -1167,7 +1167,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:95 msgctxt "modulepage|extended_tip|library" msgid "Lists the existing macro libraries for the current application and any open documents." -msgstr "" +msgstr "現在のアプリケーションと開いているドキュメントの既存のマクロライブラリを一覧表示します。" #. hBRpM #: basctl/uiconfig/basicide/ui/modulepage.ui:129 @@ -1185,7 +1185,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:148 msgctxt "modulepage|extended_tip|newmodule" msgid "Opens the editor and creates a new module." -msgstr "" +msgstr "エディタを開き、新しいモジュールを作成します。" #. RakoP #: basctl/uiconfig/basicide/ui/modulepage.ui:161 @@ -1197,7 +1197,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:168 msgctxt "modulepage|extended_tip|newdialog" msgid "Lets you manage the macro libraries." -msgstr "" +msgstr "クロライブラリを管理します" #. LeigB #: basctl/uiconfig/basicide/ui/modulepage.ui:189 @@ -1215,7 +1215,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:209 msgctxt "modulepage|extended_tip|password" msgid "Assigns or edits the password for the selected library." -msgstr "" +msgstr "選択したライブラリのパスワードを割り当てまたは編集します" #. EgCDE #: basctl/uiconfig/basicide/ui/modulepage.ui:221 @@ -1227,7 +1227,7 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:228 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 "" +msgstr "現在のリストに追加する%PRODUCTNAME Basic ライブラリを探して、[開く] をクリックします。" #. GAYBh #: basctl/uiconfig/basicide/ui/modulepage.ui:240 @@ -1239,13 +1239,13 @@ #: basctl/uiconfig/basicide/ui/modulepage.ui:266 msgctxt "modulepage|extended_tip|ModulePage" msgid "Lists the existing modules or dialogs." -msgstr "" +msgstr "既存のモジュールまたはダイアログを一覧表示します。" #. rCNTN #: basctl/uiconfig/basicide/ui/newlibdialog.ui:32 msgctxt "newlibdialog|extended_tip|ok" msgid "Runs or saves the current macro." -msgstr "" +msgstr "現在のマクロを実行または保存します。" #. Skwd5 #: basctl/uiconfig/basicide/ui/newlibdialog.ui:92 @@ -1257,7 +1257,7 @@ #: basctl/uiconfig/basicide/ui/newlibdialog.ui:133 msgctxt "newlibdialog|extended_tip|NewLibDialog" msgid "Enter a name for the new library or module." -msgstr "" +msgstr "新しいライブラリまたはモジュールの名前を入力します。" #. uVgXz #: basctl/uiconfig/basicide/ui/organizedialog.ui:8 @@ -1287,7 +1287,7 @@ #: basctl/uiconfig/basicide/ui/sortmenu.ui:12 msgctxt "sortmenu|macrosort" msgid "_Sorting" -msgstr "" +msgstr "ソート(_S)" #. GCbAJ #: basctl/uiconfig/basicide/ui/sortmenu.ui:22 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ja/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-07 22:21+0000\n" -"Last-Translator: Jun NOGATA \n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563975021.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME は4つのマクロセキュリティレベル(低〜最高)と信頼されたソースの登録をサポートしています。" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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は、Google Summer of Code(GSoC)の組織として申請を予定しています:" - -#. SNTbc -#: 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 "文章の一部にコメントが付けられることはご存知ですか?ショートカットキー %MOD1+%MOD2+Cを使うだけです。" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "1行または複数の段落を移動したいですか?キーボードショートカットキーの%MOD1+%MOD2+↑/↓を使えば、[切り取り]と[貼り付け]を使う必要はありません。" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "既存のテンプレートや編集中のドキュメントの既定フォントを変更するには、 [ツール] ▸ [オプション] ▸ [%PRODUCTNAME Writer] ▸ [既定のフォント] を設定してください。" #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "10文字以上の単語を検索したいですか?編集 ▸ 検索と置換 ▸ 検索 ▸ [a-z]{10,} ▸ その他のオプション ▸ 正規表現 にチェックを入れて検索してみましょう。" #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "CSVファイルを編集中のスプレッドシート内に新規シートとして開くには、 [シート] ▸ [ファイルからシートを挿入] と操作してください。" #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Writerで太字や斜体、下線を設定したあと、ショートカット%MOD1+Shift+X(直接設定した文字の書式を解除)を使うと既定の書式で続けられます。" #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "クリップボードの内容を書式無しテキストとして貼り付けるには、%MOD1+%MOD2+Shift+Vを使います。" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "[ツール] ▸ [脚注/文末脚注] で脚注ページをカスタマイズすることができます。" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "テキストの一部でスペルチェックの言語を変更したい場合、ステータスバーの言語設定をクリックするか、またはスタイルを適用するのが理想的です。" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writerは、奇(偶)数ページが連続するとき、間に空白ページを挿入することが出来ます。印刷ダイアログの [%PRODUCTNAME Writer] タブにある [自動的に挿入された空白ページを印刷] をチェックしてください。" #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "正確な位置にオブジェクト(図形、画像、数式)を設置したい場合、%MOD2 を押しながらカーソルキーを操作しピクセル単位で移動してください。" #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "組み込みヘルプがインストール済みなら、F1キーを押すと利用できます。そうでない場合は、オンラインから確認できます。" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "%PRODUCTNAME Calcのステータスバーを右クリックし [選択範囲のセル数] を選択すると選択した範囲のセル数を表示できます。" #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "%PRODUCTNAME Writerで、ページの一部を2つ以上の列で構成したい場合、 [挿入] ▸ [セクション] 、 [段組み] タブで列数を設定した後、そのセクションにテキストを配置してください。" #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "%PRODUCTNAME Calcでサンプリング、基本統計量、分散分析、相関などを求めるには [データ] ▸ [統計] を使用します。" #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "シートから別のシートへクリップボードを介さずに値をコピーできます。範囲を選択し、貼り付け先シートのタブを %MOD1+クリック で選択した後、 [シート] ▸ [セルのフィル] ▸ [シートに連続データをコピー] と操作してください。" #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "[ツール] ▸ [オプション] ▸ [表示] ▸ [ユーザーインタフェース] を設定し、%PRODUCTNAME の外観を変更することができます。" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "%PRODUCTNAME Impress で、 [挿入] ▸ [メディア] ▸ [フォトアルバム] からフォトアルバム機能を使うことで一連の画像からスライドショーを生成することができます。" #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "[表示] ▸ [数式の表示](または [ツール] ▸ [オプション] ▸ [%PRODUCTNAME Calc] ▸ [表示] ▸ [表示] ▸ [数式] )で、結果の代わりに関数を表示できます。" #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME は世界中の数百名の貢献者による友好的なコミュニティによって開発されています。コーディングを超えたスキルによって参加してください。" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "左利きですか? [ツール] ▸ [オプション] ▸ [言語設定] ▸ [言語] ▸ [アジア諸言語] をチェックし、[ツール] ▸ [オプション] ▸ [%PRODUCTNAME Writer] ▸ [表示] ▸ [ルーラー] ▸ [右に配置] をチェックすることでスクロールバーを左に表示することが出来ます。" #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "常に章見出しでページを開始するには、 [見出し1(段落スタイル)] ▸ [体裁] ▸ [区切り] を編集し、 [挿入] ▸ [ページ] ▸ [前] と設定します。" #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "日付/時刻の値は指定したゼロ日からの単純な日数です。値のうち整数部は日付を、小数部は時刻(1日の経過分)で0.5は正午を表します。" #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Delを押すとカーソル位置から行末まで削除できます。" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "行や列の名前を関数内で使用できます。例えば“Time”と“KM”と名前を付けた列がある場合、=Time/KM とすることで1kmあたりの時間を算出できます。" #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "セルの周囲を回る点線が目障りな場合、ESCキーで消すことができます。コピーしたセルの内容はそのまま貼り付け可能です。" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "%PRODUCTNAME アンバサダーになりませんか? 開発者や管理者、トレーナーとして認定を受けることができます。" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "各シート毎に異なるスタイルを適用することで、Calcスプレッドシート内で縦・横の用紙方向を混在させることが出来ます。" #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "スタイル設定間の関連性を見るには、スタイルサイドバーを「階層表示」に切り替えてください。" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "スタイルを使用すると文書内の表を一貫性あるものにできます。設定された表スタイルをスタイル(F11)か[表] ▸ [オートフォーマットのスタイル]から選択しましょう。" #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "ハイパーリンクを開く際に%MOD1キーを使うには、 [ツール] ▸ [オプション] ▸ [%PRODUCTNAME] ▸ [セキュリティ] ▸ [オプション] ▸ [%MOD1+クリックでハイパーリンクを開く] をチェックしてください。" #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "関数内の個別要素からの値を表示したい場合は、それぞれの要素を選択後にF9を押してください。" #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "スプレッドシート内の上位の数値のみ表示したい場合、 [データ] ▸ [オートフィルター] と操作し、ドロップダウンメニューから「トップ10」を選択してください。" #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "Writeに記入した数式から数式オブジェクトを手早く取得するには、数式を選択し、 [挿入] ▸ [オブジェクト] ▸ [数式] と操作してください。" #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "%PRODUCTNAME に新たな辞書を追加することは簡単です。それらは拡張機能として配布されています。" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME のポータブル版は機動力を提供します。管理者権限が無くてもPCに%PRODUCTNAME portableをインストールが可能です。" #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writerはページ、チャプター、ドキュメントの単位で脚注に付番します。 [ツール] ▸ [脚注と文末脚注] ▸ [脚注タブ] ▸ [番号付け] を設定してください。" #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Writerドキュメントを開いた際に、前回保存時のカーソル位置を保持するには、[ツール]▸[オプション]▸[%PRODUCTNAME]▸[ユーザーデータ]▸[姓/名]を設定してください。" #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "引用を管理したいですか?サードパーティによる拡張機能を利用してください。" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "複数のシートの同じ場所に値を入力するには、入力の前に%MOD1を押しながらそれらシートのタブをクリックし複数選択してください。" #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "マウスの中央ボタンの機能をカスタマイズできます。 [ツール] ▸ [オプション] ▸ [%PRODUCTNAME ] ▸ [表示] を設定してください。" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "2つのページを1枚にまとめて印刷(A4をA5に)したい場合は、 [ファイル] ▸ [印刷] ▸ [1枚毎のページ数] に2を設定してください。" #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "よく使う文章を定型文として定義し、名称を設定して保存ましょう。それらは任意のWriterドキュメントでショートカットキーやツールバーから入力できます。" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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は左から右へと計算は行いませんが、 [括弧] – [指数] – [乗算] – [除算] – [加算] – [減算] の計算順序を遵守します。" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "%PRODUCTNAME のドキュメントやフリーなユーザーガイドは以下から入手できます:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Writerで作成したレポートをプレゼンするには?[ファイル] ▸ [送る] ▸ [アウトラインをプレゼンテーションへ]で、アウトラインからスライドショーが生成されます。" #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "スプレッドシート内のハイパーリンクの表現を管理したい場合は、HYPERLINK関数を使ってリンクを設置してください。" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "[ツール] ▸ [オプション] ▸ [%PRODUCTNAME Calc] ▸ [表示] ▸ [ズーム] ▸ [シートを同期させる] のチェックを外すことでCalc内の各シートに独自の拡大率を設定することができます。" #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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 "関数内で参照されているセルをトレースするには、[参照元トレース(Shift+F9)]または[参照先トレース(Shift+F5)](または[ツール] ▸ [トレース])などを使用し、チェインの次のステップへ進むことができます。" #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "数式を挿入し連番を付番するには、fnと入力後にF3を押してください。定型文が挿入され、テーブル内に番号が付番されます。" #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "あなたのAndroidやiPhoneから、Impressのプレゼンテーションをリモート操作できます。" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "今月が何日あるか知りたい場合は、DAYSINMONTH(TODAY()) 関数を使用してください。" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "スプレッドシートで数字が###と表示されてしまう場合は、数字に対して列の幅が狭すぎることが原因です。" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "[ツール] ▸ [オプション] ▸ [OpenCL]を有効にすることで、大量のセルの並列計算が可能になります。" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Draw及びImpressの図形描画ツールバーにあるコネクターツールを使うと素敵なフローチャートを作成することができます。またそれらはWriterにコピー&ペーストする事も可能です。" #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "あなたの寄付が世界中のLibreOfficeコミュニティをサポートします" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "日付に対して月数による加算を行うには次の関数を使用してください。 =EDATE(date;months)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "%MOD1 + *(テンキー)を使用すると、値が設定され周囲を空白セルに囲まれた一連のセル範囲を選択することが出来ます。" #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "CSVのエクスポート時に関数を含めるには、[ファイル] ▸ [名前をつけて保存] ▸ [保存形式にCSVを選択] ▸ [フィルター設定を編集するをチェック]と操作し、次のダイアログで[計算結果の代わりにセルの数式を保存]をチェックしてください。" #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "プレゼンターコンソールは%PRODUCTNAME Impressを使用する際の強力なツールです。チェックしておきましょう。" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "ツールバーのPDFアイコンをワンクリックするだけでドキュメントを簡単にPDFに変換することができます。" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "画面をスクロールさせずに広範囲を選択するには、名前ボックスに範囲 (例、A1:A1000) を入力しEnterキーを押してください。" #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "コマンドラインか起動する際のパラメータを知りたいときは、--help または -h や -? などのオプションを追加してsofficeを起動してください。" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "表内の行の方向を変更するには、[表] ▸ [表のプロパティ] ▸ [体裁タブ] ▸ [文字の方向]を設定してください。" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 " %PRODUCTNAME Draw でルーラーの基点を変更したい場合は、2つのルーラーの交点を作業領域の位置までドラッグしてください。" #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Calcの列を1回でほかの2列の間に移動させたいですか?列番号をクリックして、%MOD2キーを押しながら選択した列をドラッグして移動しましょう。" #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "コンコーダンスファイルを利用することでアルファベット順インデックスを自動的にマークできます。" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "DrawやImpressでオブジェクトを正確に配置するには[書式] ▸ [配置](またはコンテクストメニュー)を使用してください。オブジェクトやグループを1つだけ選択して中央寄せを適用した場合、それらはページの中央に配置されます。" #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Writerで空白を設けるためにタブを使うのはお勧めできません。用途によりますが、枠線を消したテーブルを使う方が良いでしょう。" #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "オブジェクトを挿入する際に番号付きのキャプションを自動的に挿入することができます。[ツール] ▸ [オプション] ▸ [%PRODUCTNAME Writer] ▸ [自動キャプション]を設定してください。" #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "%PRODUCTNAME は差し込み印刷機能にGMailアカウントを連携させる事ができます。[ツール] ▸ [オプション] ▸ [%PRODUCTNAME Writer] ▸ [差し込み印刷 E-mail]を設定して下さい。" #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "Basicマクロを使い始める時には、以下にあるサンプルが参考になります。[ツール] ▸ [マクロ] ▸ [マクロの編集]" #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Writerで見出しスタイルを適用するショートカットキー: %MOD1+1 見出し1、%MOD1+2 見出し2(以下続きます)" #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "ドキュメント内で迷子にならないようご注意を。ナビゲーター(F5)がコンテンツ内をご案内します。" #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "編集 ▸ 検索と置換に特殊文字を直接入力できます。入力欄を右クリック または Shift+%MOD1+S" #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "表示はしたいが印刷したくない、Drawを使用していてそんなオブジェクトがあったときには、印刷対象外に設定 ([タブを右クリック] ▸ [レイヤーの設定]) したレイヤーに設置してください。" #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "ドキュメントに現在の日付を挿入したいときには、[挿入] ▸ [フィールド] ▸ [日付]を使用してください。" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Writerドキュメントが沢山の画像で重くなってしまったら?[表示] ▸ [画像] を無効化して表示を高速化しましょう。" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "スライドの名称を変更することで[ページへ移動]インタラクションを定義し、[スライド1]、[スライド2]...といったものよりもより明確な要約を作成することができます。" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "章番号ダイアログでは章番号の前に任意のテキストを設定することができます。例えば「章」を設定した場合は「章1」と表示されます。" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "" +msgstr "Writerテーブルの行と列を入れ替えたいときは -表をコピーしてCalcへ貼り付け、コピー▸形式を指定して貼り付け▸行と列を入れ替え、コピーしてWriter上で形式を指定して貼り付け▸フォーマットされたテキストとして貼り付け。" #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "既存のPDFへの証明の追加や、証明の検証を行うことができます。" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "既存のものから文書を作成することが多い場合、テンプレートを使用すると良いでしょう。" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Calcで、どのセルに条件付き書式が設定されているか探すには、[書式] ▸ [条件付き] ▸ [管理] を使います。" #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "画面表示と印刷結果のレイアウトを揃えるには、[ツール] ▸ [オプション] ▸ [ %PRODUCTNAME Calc] ▸ [全般] ▸ [ドキュメントの書式設定にプリンターのメトリックス情報を使用する]を使用してください。" #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writerはバックアップの作成を補助します。[ファイル] ▸ [コピーを保存]と操作すると、元のドキュメントから引き継いで新規文書で作業を続けることができます。" #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "他のスタイル設定をベースにして新たなスタイルを作成した場合、パーセンテージやポイント (例: 110%、−2pt または +5pt) を設定することが出来ます。" #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "複数のMicrosoft Officeドキュメントを一括でオープンドキュメント形式に変換するには、[ファイル] ▸ [ウィザード] ▸ [ドキュメントの変換]からドキュメント変換ウィザードを使用してください。" #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Writerの表を自由に動かすには、[表] ▸ [選択] ▸ [表]の後、[挿入] ▸ [枠]と操作して枠を挿入し、任意の場所に移動してください。" #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "[ツール] ▸ [定型文] ▸ [定型文] ▸ [インポート] より、Wordドキュメントなどから定型文をインポートする事ができます。" #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "2つの行間を広げるためには、改行を挿入するのではなく、[書式] ▸ [段落の書式] ▸ [インデントと行間隔] ▸ [間隔] ▸ [段落下部]を使用してください。" #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "数字の前の0を保持したい場合は、セルに数字を入力する前に、[セルの書式設定] ▸ [先頭のゼロ]を設定するか、セルの書式にテキストを設定してください。" #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "" +msgstr "リスト形式を適用した後で標準の書式に戻すには、[書式設定]ツールバーの[箇条書き]または[番号きリスト]のオン/オフツールをクリックします。" #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" +msgstr "PDFファイルまたはWebページのテキストをドキュメントに貼り付けるときに問題が発生する場合は、書式なしのテキスト(%MOD1+%MOD2+Shift+V)として貼り付けてみてください。" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "CalcのTRIMMEAN()関数を使うと、最高値と最低値を除いた平均値を求めることができます。" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "VLOOKUP関数の4番目の項目は、データの1列目の値がソート済みかどうかを示します。もしもソート済みでないなら、FALSEかゼロを設定してください。" #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "編集中のWriterドキュメントからマスタードキュメントを作成するには、[ファイル] ▸ [送る] ▸ [マスタードキュメントの作成] と操作してください。" #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Writerドキュメント内の表をクリックし、[挿入] ▸ [グラフ] と操作することで表内のデータに基づくグラフを作成することが出来ます。" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "[ツール] ▸ [オプション] ▸ [%PRODUCTNAME Writer ] ▸ [書式のサポート] ▸ [隠し文字]で、隠し文字の表示/非表示を設定できます。" #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "特定のページを指定してジャンプするには、ステータスバーの左端をクリックするか、[編集] ▸ [ページに移動]、または%MOD1+Gを使用してページ番号を入力してください。" #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr " %PRODUCTNAME は150を超える言語をサポートしています。" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "Writerドキュメント内の太字が適用された文字列を検索するには、編集 ▸ 検索と置換 ▸ 他のオプション ▸ 属性 ▸ フォントの太さ を使用してください。" #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "[ツール] ▸ [並べ替え] を使用して、段落や表内の値を文字や数字順にソートすることが出来ます。" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "セクションの前(または後)に段落を挿入するには、セクションの先頭(または末尾)で %MOD2+Enterを押してください。" #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "より美しいドキュメントを作成するため、 %PRODUCTNAME にはテンプレートセンターが装備されています。" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcによるローン返済額の計算例: 年利2%、返済期間36ヶ月、借入額2500の場合 PMT(2%/12;36;2500)。" #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 " VLOOKUP では思い通りに行きませんか?INDEX と MATCH を使えば何でもできます!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "非表示にした列Aを再表示するには、列Bを選択後、マウスの左ボタンを押したまま左へドラッグし、メニューから[書式] ▸ [列] ▸ [表示] と操作してください。" #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Writerで特定ページのページ番号を変更するには、ページの先頭行の段落プロパティを開き、体裁タブ内の[区切り] ▸ [挿入]をチェックした後、ページ番号を入力してください。" #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "WebブラウザからrollAppにアクセスして%PRODUCTNAMEを実行できます(訳注:残念ながらrollAppは日本語に対応していません)" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "CalcでErr: および数字によるエラーコードが表示された場合、次のページで内容を知ることが出来ます。" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "セルのスタイル設定を修正・削除する際には、保護されたシートが無いことを確認してください。" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." -msgstr "" +msgstr "連続データを入力する必要がありますか?セル範囲と[シート]▸[セルのフィル]▸[連続データ]を選択し、[足し算]、[掛け算]、[日付]、[オートフィル]のいずれかを選択します。" #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "" +msgstr "セルが他のセルの関数で参照されているかどうかを確認するには、[ツール]▸[トレース]▸[参照先トレース](Shift+F5)" #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "上の行をコピーしたいですか?%MOD1 + Dを押すか、メニュー[シート] ▸ [セルのフィル] ▸ [下方向へコピー]を使いましょう。" #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "複数のシートに渡って検索する場合は、シートを複数選択後に検索を行ってください。" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Calcのセルをプレゼンテーションにドラッグ&ドロップすると、標準表示では表が作成され、アウトライン表示では各セルがアウトラインとして追加されます。" #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME Writerは連続するスペースの入力を抑止することができます。[ツール] ▸ [オートコレクト] ▸ [オートコレクトオプション] ▸ [オプション] ▸ [ダブルスペースを無視する] を有効にしてください。" #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Calcでセルに入力した後、カーソルを右のセルに移動させたいですか?Enterキーの代わりにTabキーを押しましょう。" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "新しい%PRODUCTNAMEでは、新機能やバグの修正、 セキュリティ修正を提供しています。 ソフトウェアは常にアップデートしましょう。" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "新しいXSLTやXMLフィルターを開発していますか?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "[ツール] ▸ [オプション] ▸ [%PRODUCTNAME] ▸ [全般]にある[詳細ヒント]が有効になっていない場合、Shift+F1キーを押すとダイアログボックスに利用可能な詳細ヘルプが表示されます。" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME ヘルプ" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "もっと読む" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "今すぐUIを変更する..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "今日のヒント: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -4141,7 +4135,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:46 msgctxt "extended_tip|edit" msgid "Opens a dialog to edit the preference." -msgstr "" +msgstr "設定を編集するためのダイアログボックスを開きます。" #. 2uM3W #: cui/uiconfig/ui/aboutconfigdialog.ui:58 @@ -4159,7 +4153,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:150 msgctxt "extended_tip|searchEntry" msgid "Type the preference you want to display in the text area" -msgstr "" +msgstr "テキスト領域に表示する設定を入力します。" #. EhpWF #: cui/uiconfig/ui/aboutconfigdialog.ui:162 @@ -4171,7 +4165,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:171 msgctxt "extended_tip|searchButton" msgid "Click to search your preference text in the Preferences tree." -msgstr "" +msgstr "設定ツリー内の設定テキストを検索するときにクリックします。" #. BMohC #: cui/uiconfig/ui/aboutconfigdialog.ui:213 @@ -4201,7 +4195,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:273 msgctxt "extended_tip|preferences" msgid "List the preferences organized hierarchically in a tree layout." -msgstr "" +msgstr "設定をツリーレイアウトで階層的に表示します。" #. B8FF9 #: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8 @@ -4900,7 +4894,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:332 msgctxt "applylocalizedpage|extended_tip|defaultsingle" msgid "Resets the quotation marks to the default symbols." -msgstr "" +msgstr "引用符をデフォルトの記号にリセットします" #. GRDaT #: cui/uiconfig/ui/applylocalizedpage.ui:346 @@ -4984,7 +4978,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:528 msgctxt "applylocalizedpage|extended_tip|defaultdouble" msgid "Resets the quotation marks to the default symbols." -msgstr "" +msgstr "引用符をデフォルトの記号にリセットします。" #. cDwwK #: cui/uiconfig/ui/applylocalizedpage.ui:542 @@ -5734,7 +5728,7 @@ #: cui/uiconfig/ui/borderpage.ui:552 msgctxt "borderpage|distanceft" msgid "Width of shadow" -msgstr "" +msgstr "影の幅" #. gEF6E #: cui/uiconfig/ui/borderpage.ui:578 @@ -6778,13 +6772,13 @@ #: cui/uiconfig/ui/colorconfigwin.ui:472 msgctxt "colorconfigwin|field" msgid "Field shadings" -msgstr "フィールドのシェーディング" +msgstr "フィールドの塗りつぶし" #. DqZGn #: cui/uiconfig/ui/colorconfigwin.ui:488 msgctxt "colorconfigwin|index" msgid "Index and table shadings" -msgstr "目次と索引のシェーディング" +msgstr "目次と索引の塗りつぶし" #. fitqS #: cui/uiconfig/ui/colorconfigwin.ui:504 @@ -6820,7 +6814,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:664 msgctxt "colorconfigwin|sgml" msgid "SGML syntax highlighting" -msgstr "SGMLシンタックスの強調表示" +msgstr "SGML構文の強調表示" #. uYB5C #: cui/uiconfig/ui/colorconfigwin.ui:694 @@ -6934,7 +6928,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1188 msgctxt "colorconfigwin|basic" msgid "Basic Syntax Highlighting" -msgstr "Basicシンタックスの強調表示" +msgstr "Basic構文の強調表示" #. yELpi #: cui/uiconfig/ui/colorconfigwin.ui:1222 @@ -6982,7 +6976,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1414 msgctxt "colorconfigwin|sql" msgid "SQL Syntax Highlighting" -msgstr "SQLシンタックスの強調表示" +msgstr "SQL構文の強調表示" #. ERVJA #: cui/uiconfig/ui/colorconfigwin.ui:1448 @@ -7186,7 +7180,7 @@ #: cui/uiconfig/ui/colorpage.ui:797 msgctxt "colorpage|label19" msgid "_Hex" -msgstr "16進数(_H):" +msgstr "16進数(_H)" #. BAYSF #: cui/uiconfig/ui/colorpage.ui:841 @@ -8308,7 +8302,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:245 msgctxt "back" msgid "Click here to undo the current changes in the list box." -msgstr "" +msgstr "リストボックスの変更を元に戻すには、ここをクリックしてください。" #. 4d4Pc #: cui/uiconfig/ui/editmodulesdialog.ui:311 @@ -8410,7 +8404,7 @@ #: cui/uiconfig/ui/effectspage.ui:157 msgctxt "effectspage|liststore3" msgid "Dot" -msgstr "シングルドット" +msgstr "点" #. sek6h #: cui/uiconfig/ui/effectspage.ui:158 @@ -8452,7 +8446,7 @@ #: cui/uiconfig/ui/effectspage.ui:183 msgctxt "effectspage|extended_tip|positionlb" msgid "Specify where to display the emphasis marks." -msgstr "" +msgstr "傍点を表示する場所を指定します。" #. D848F #: cui/uiconfig/ui/effectspage.ui:196 @@ -8830,7 +8824,7 @@ #: cui/uiconfig/ui/eventassignpage.ui:109 msgctxt "eventassignpage|extended_tip|assignments" msgid "Lists the events that can trigger a macro." -msgstr "" +msgstr "マクロを起動できるイベントを一覧表示します" #. P3GeQ #: cui/uiconfig/ui/eventassignpage.ui:122 @@ -8848,7 +8842,7 @@ #: cui/uiconfig/ui/eventassignpage.ui:151 msgctxt "eventassignpage|extended_tip|assign" msgid "Assigns the selected macro to the selected event." -msgstr "" +msgstr "選択したマクロを指定したイベントに割り当てます" #. nwUkL #: cui/uiconfig/ui/eventassignpage.ui:163 @@ -8860,7 +8854,7 @@ #: cui/uiconfig/ui/eventassignpage.ui:170 msgctxt "eventassignpage|extended_tip|delete" msgid "Removes the macro assignment from the selected entry." -msgstr "" +msgstr "選択した設定からマクロの割り当てを削除します" #. 9GNQR #: cui/uiconfig/ui/eventassignpage.ui:251 @@ -9112,7 +9106,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:590 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 "日本語テキストでの表記のゆれに対応する検索オプションを指定できます。このチェックボックスをオンにしてから、... ボタンをクリックして検索オプションを指定します。 " +msgstr "日本語テキストでの表記のゆれに対応する検索オプションを指定できます。このチェックボックスをオンにしてから、... ボタンをクリックして検索オプションを指定します。" #. 2Gsbd #: cui/uiconfig/ui/fmsearchdialog.ui:601 @@ -9184,7 +9178,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:727 msgctxt "fmsearchdialog|extended_tip|cbRegular" msgid "Searches with regular expressions." -msgstr "" +msgstr "正規表現で検索します" #. qzKAB #: cui/uiconfig/ui/fmsearchdialog.ui:738 @@ -9250,7 +9244,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:916 msgctxt "fmsearchdialog|extended_tip|RecordSearchDialog" msgid "Searches database tables and forms." -msgstr "" +msgstr "データベースのテーブルとフォームを検索します。" #. zbAyQ #: cui/uiconfig/ui/fontfeaturesdialog.ui:10 @@ -9304,7 +9298,7 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:329 msgctxt "formatcellsdialog|shadow" msgid "Shadow" -msgstr "" +msgstr "影" #. dpU36 #: cui/uiconfig/ui/formatnumberdialog.ui:8 @@ -9755,7 +9749,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:120 msgctxt "hangulhanjaconversiondialog|extended_tip|originalword" msgid "Displays the current selection." -msgstr "" +msgstr "現在の選択を表示します" #. P2Lhg #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:133 @@ -10505,7 +10499,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:53 msgctxt "hyperlinkinternetpage|extended_tip|linktyp_internet" msgid "Creates an \"http://\" hyperlink." -msgstr "" +msgstr "「http://」ハイパーリンクを作成します。" #. HybDr #: cui/uiconfig/ui/hyperlinkinternetpage.ui:64 @@ -10517,7 +10511,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:75 msgctxt "hyperlinkinternetpage|extended_tip|linktyp_ftp" msgid "Creates an \"FTP://\" hyperlink." -msgstr "" +msgstr "「FTP://」ハイパーリンクを作成します。" #. qgyrE #: cui/uiconfig/ui/hyperlinkinternetpage.ui:95 @@ -10661,7 +10655,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:59 msgctxt "hyperlinkmailpage|addressbook|tooltip_text" msgid "Data Sources..." -msgstr "" +msgstr "データソース..." #. mZ8Wv #: cui/uiconfig/ui/hyperlinkmailpage.ui:64 @@ -13539,7 +13533,7 @@ #: cui/uiconfig/ui/optappearancepage.ui:263 msgctxt "optappearancepage|on" msgid "On" -msgstr "オン" +msgstr "有効" #. HFLPF #: cui/uiconfig/ui/optappearancepage.ui:284 @@ -14071,7 +14065,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:359 msgctxt "optfltrembedpage|label5" msgid "Lock Files" -msgstr "" +msgstr "ロックファイル" #. EUBnP #: cui/uiconfig/ui/optfltrembedpage.ui:373 @@ -16832,7 +16826,7 @@ #: cui/uiconfig/ui/optviewpage.ui:453 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." -msgstr "" +msgstr "ツールバーやダイアログに表示されるアイコンのスタイルを指定します。" #. anMTd #: cui/uiconfig/ui/optviewpage.ui:466 @@ -16844,7 +16838,7 @@ #: cui/uiconfig/ui/optviewpage.ui:481 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" -msgstr "拡張機能からアイコンテーマを追加" +msgstr "拡張機能サイトからアイコンテーマを追加する" #. eMqmK #: cui/uiconfig/ui/optviewpage.ui:499 @@ -16928,19 +16922,19 @@ #: 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 "" +msgstr "書式設定バーのフォントボックス内フォントなどに、対応している選択可能なフォントを表示します。" #. 2FKuk #: cui/uiconfig/ui/optviewpage.ui:740 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" -msgstr "スクリーンフォントの縁を滑らかにする(_G)" +msgstr "表示フォントにアンチエイリアシングをかける(_G)" #. 5QEjG #: cui/uiconfig/ui/optviewpage.ui:749 msgctxt "extended_tip | aafont" msgid "Select to smooth the screen appearance of text." -msgstr "" +msgstr "画面のテキストをなめらかに表示したい場合に選択します。" #. 7dYGb #: cui/uiconfig/ui/optviewpage.ui:770 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/ja/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-09-01 16:20+0000\n" -"Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" +"Last-Translator: jun meguro \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561811264.000000\n" #. BiN6g @@ -2560,37 +2560,37 @@ #: dbaccess/inc/templwin.hrc:47 msgctxt "STRARY_SVT_DOCINFO" msgid "Modified on" -msgstr "" +msgstr "修正日" #. XMEJb #: dbaccess/inc/templwin.hrc:48 msgctxt "STRARY_SVT_DOCINFO" msgid "Modified by" -msgstr "" +msgstr "修正者" #. MWkd5 #: dbaccess/inc/templwin.hrc:49 msgctxt "STRARY_SVT_DOCINFO" msgid "Printed on" -msgstr "" +msgstr "印刷日" #. BBEEC #: dbaccess/inc/templwin.hrc:50 msgctxt "STRARY_SVT_DOCINFO" msgid "Printed by" -msgstr "" +msgstr "印刷者" #. VCGe3 #: dbaccess/inc/templwin.hrc:51 msgctxt "STRARY_SVT_DOCINFO" msgid "Subject" -msgstr "" +msgstr "題名" #. HVYdE #: dbaccess/inc/templwin.hrc:52 msgctxt "STRARY_SVT_DOCINFO" msgid "Size" -msgstr "" +msgstr "サイズ" #. 4KVZn #: dbaccess/uiconfig/ui/admindialog.ui:8 @@ -3171,7 +3171,7 @@ #: dbaccess/uiconfig/ui/fielddescpage.ui:275 msgctxt "fielddescpage|STR_FIELD_REQUIRED" msgid "_Entry required" -msgstr "" +msgstr "必須項目(_E)" #. SWgjj #: dbaccess/uiconfig/ui/fielddescpage.ui:300 @@ -3359,7 +3359,7 @@ msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" "available in this setup." -msgstr "" +msgstr "この設定ではHSQLDBおよびFirebirdが利用できないため、新しいデータベースを作成することはできません。" #. DQvKi #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:43 @@ -3959,7 +3959,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:139 msgctxt "queryfilterdialog|extended_tip|field1" msgid "Specifies the field names from the current table to set them in the argument." -msgstr "" +msgstr "現在のテーブルからフィールド名を指定して、引数に設定します。" #. 57zBE #: dbaccess/uiconfig/ui/queryfilterdialog.ui:155 @@ -4025,7 +4025,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:168 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 "" +msgstr "フィールド名と値フィールドのエントリをリンクできる比較演算子を指定します。" #. A8jis #: dbaccess/uiconfig/ui/queryfilterdialog.ui:183 @@ -4037,7 +4037,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:187 msgctxt "queryfilterdialog|extended_tip|field2" msgid "Specifies the field names from the current table to set them in the argument." -msgstr "" +msgstr "現在のテーブルからフィールド名を指定して、引数に設定します。" #. FdHSG #: dbaccess/uiconfig/ui/queryfilterdialog.ui:202 @@ -4049,19 +4049,19 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:206 msgctxt "queryfilterdialog|extended_tip|field3" msgid "Specifies the field names from the current table to set them in the argument." -msgstr "" +msgstr "現在のテーブルからフィールド名を指定して、引数に設定します。" #. oCJaY #: dbaccess/uiconfig/ui/queryfilterdialog.ui:223 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 "" +msgstr "フィールド名と値フィールドのエントリをリンクできる比較演算子を指定します。" #. rY6Pi #: dbaccess/uiconfig/ui/queryfilterdialog.ui:240 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 "" +msgstr "フィールド名と値フィールドのエントリをリンクできる比較演算子を指定します。" #. tBd3g #: dbaccess/uiconfig/ui/queryfilterdialog.ui:253 @@ -4073,19 +4073,19 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:269 msgctxt "queryfilterdialog|extended_tip|value1" msgid "Specifies a value to filter the field." -msgstr "" +msgstr "フィールドをフィルタリングする値を指定します。" #. w42mr #: dbaccess/uiconfig/ui/queryfilterdialog.ui:287 msgctxt "queryfilterdialog|extended_tip|value2" msgid "Specifies a value to filter the field." -msgstr "" +msgstr "フィールドをフィルタリングする値を指定します。" #. tB93H #: dbaccess/uiconfig/ui/queryfilterdialog.ui:305 msgctxt "queryfilterdialog|extended_tip|value3" msgid "Specifies a value to filter the field." -msgstr "" +msgstr "フィールドをフィルタリングする値を指定します。" #. PFZ8z #: dbaccess/uiconfig/ui/queryfilterdialog.ui:320 @@ -4103,7 +4103,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:325 msgctxt "queryfilterdialog|extended_tip|op2" msgid "For the following arguments, you can choose between the logical operators AND / OR." -msgstr "" +msgstr "以下の引数については、論理演算子AND/ORから選択できます。" #. EaXyP #: dbaccess/uiconfig/ui/queryfilterdialog.ui:340 @@ -4121,7 +4121,7 @@ #: dbaccess/uiconfig/ui/queryfilterdialog.ui:345 msgctxt "queryfilterdialog|extended_tip|op3" msgid "For the following arguments, you can choose between the logical operators AND / OR." -msgstr "" +msgstr "以下の引数については、論理演算子AND/ORから選択できます。" #. SESZq #: dbaccess/uiconfig/ui/queryfilterdialog.ui:365 @@ -4181,7 +4181,7 @@ #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:112 msgctxt "querypropertiesdialog|extended_tip|distinct" msgid "Use distinct values in query." -msgstr "" +msgstr "クエリでは重複しない値を使用してください。" #. rErxt #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:124 @@ -4205,13 +4205,13 @@ #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:177 msgctxt "querypropertiesdialog|extended_tip|limitbox" msgid "Adds a Limit to set the maximum number of records to return." -msgstr "" +msgstr "制限を追加して、処理結果の最大レコード数を設定します。" #. GoEm9 #: dbaccess/uiconfig/ui/querypropertiesdialog.ui:205 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 "" +msgstr "[クエリのプロパティ]ダイアログでは、SQLクエリの2つのプロパティを設定できます。つまり、重複しない値を返すかどうか、および結果セットを制限するかどうかです。" #. gLFLt #: dbaccess/uiconfig/ui/relationdialog.ui:8 @@ -4781,7 +4781,7 @@ #: dbaccess/uiconfig/ui/taskwindow.ui:109 msgctxt "taskwindow|STR_DESCRIPTION" msgid "Description" -msgstr "" +msgstr "説明" #. 8b2nn #: dbaccess/uiconfig/ui/textconnectionsettings.ui:8 @@ -5015,4 +5015,4 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:217 msgctxt "userdetailspage|charsetheader" msgid "Data Conversion" -msgstr "" +msgstr "データ変換" diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/desktop/messages.po libreoffice-7.1.3~rc2/translations/source/ja/desktop/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/desktop/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/desktop/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:42+0100\n" -"PO-Revision-Date: 2020-08-03 16:28+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: jun meguro \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548048129.000000\n" #. v2iwK @@ -128,7 +128,7 @@ #: desktop/inc/strings.hrc:46 msgctxt "RID_STR_PACKAGE_BUNDLE" msgid "All supported files" -msgstr "" +msgstr "すべてのサポートされているファイル" #. 5TAZB #: desktop/inc/strings.hrc:48 @@ -948,7 +948,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:364 msgctxt "extensionmanager|extended_tip|getextensions" msgid "You can find a collection of extensions on the Web." -msgstr "" +msgstr "拡張機能のコレクションはWeb上にあります。" #. vSiEz #: desktop/uiconfig/ui/extensionmanager.ui:399 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/editeng/messages.po libreoffice-7.1.3~rc2/translations/source/ja/editeng/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/editeng/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/editeng/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-01-23 23:36+0000\n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" "Last-Translator: Jun NOGATA \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1522757078.000000\n" #. BHYB4 @@ -1091,19 +1091,19 @@ #: include/editeng/editrids.hrc:205 msgctxt "RID_SVXITEMS_LRSPACE_LEFT" msgid "Indent left " -msgstr "左にインデント" +msgstr "左にインデント " #. 8pKEx #: include/editeng/editrids.hrc:206 msgctxt "RID_SVXITEMS_LRSPACE_FLINE" msgid "First Line " -msgstr "最初の行" +msgstr "最初の行 " #. 5yfe7 #: include/editeng/editrids.hrc:207 msgctxt "RID_SVXITEMS_LRSPACE_RIGHT" msgid "Indent right " -msgstr "右にインデント" +msgstr "右にインデント " #. rHuC8 #: include/editeng/editrids.hrc:208 @@ -1115,7 +1115,7 @@ #: include/editeng/editrids.hrc:209 msgctxt "RID_SVXITEMS_BORDER_COMPLETE" msgid "Borders " -msgstr "境界あり" +msgstr "境界あり " #. H7bna #: include/editeng/editrids.hrc:210 @@ -1133,37 +1133,37 @@ #: include/editeng/editrids.hrc:212 msgctxt "RID_SVXITEMS_BORDER_BOTTOM" msgid "bottom " -msgstr "下" +msgstr "下 " #. qAkBD #: include/editeng/editrids.hrc:213 msgctxt "RID_SVXITEMS_BORDER_LEFT" msgid "left " -msgstr "左" +msgstr "左 " #. EGQai #: include/editeng/editrids.hrc:214 msgctxt "RID_SVXITEMS_BORDER_RIGHT" msgid "right " -msgstr "右" +msgstr "右 " #. vyBZu #: include/editeng/editrids.hrc:215 msgctxt "RID_SVXITEMS_BORDER_DISTANCE" msgid "Spacing " -msgstr "スペーシング" +msgstr "スペーシング " #. AXuCm #: include/editeng/editrids.hrc:216 msgctxt "RID_SVXITEMS_ULSPACE_UPPER" msgid "From top " -msgstr "上から" +msgstr "上から " #. onyB7 #: include/editeng/editrids.hrc:217 msgctxt "RID_SVXITEMS_ULSPACE_LOWER" msgid "From bottom " -msgstr "下から" +msgstr "下から " #. 5o8Bu #: include/editeng/editrids.hrc:218 @@ -1260,13 +1260,13 @@ #: include/editeng/editrids.hrc:234 msgctxt "RID_SVXITEMS_KERNING_COMPLETE" msgid "Kerning " -msgstr "カーニング" +msgstr "カーニング " #. A7tAE #: include/editeng/editrids.hrc:235 msgctxt "RID_SVXITEMS_KERNING_EXPANDED" msgid "locked " -msgstr "ロックされた" +msgstr "ロックされた " #. P976r #: include/editeng/editrids.hrc:236 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/ja/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-14 14:36+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565257803.000000\n" #. cBx8W @@ -3113,7 +3113,7 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:136 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 "" +msgstr "新しく作成されたデータベースファイルを %PRODUCTNAME に登録します。その後、データベースはデータソースペイン(Ctrl+Shift+F4)にリストされます。このチェックボックスがオフになっている場合、データベースはデータベースファイルを開いたときにのみ使用できます。" #. jbrum #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:169 @@ -3167,6 +3167,11 @@ "\n" "Click the button below to open another dialog where you can enter the settings for your data source." msgstr "" +"テンプレートに住所データを組み込むには、どのフィールドにどのデータが含まれているかを %PRODUCTNAME が知っている必要があります。\n" +"\n" +"たとえば、「email」、「E-mail」、または「EM」という名前のフィールドに、メールアドレスまたはまったく異なるものを保存できます。\n" +"\n" +"下のボタンをクリックすると別のダイアログが開き、そこでデータソースの設定を入力できます。" #. RkyNf #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38 @@ -3268,7 +3273,7 @@ #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401 msgctxt "gridfieldsselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "テーブル要素" #. Xk7cV #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54 @@ -3322,7 +3327,7 @@ #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:310 msgctxt "groupradioselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "テーブル要素" #. 3dtcD #: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15 @@ -3528,7 +3533,7 @@ #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:178 msgctxt "selecttypepage|extended_tip|macosx" msgid "Select this option if you already use an address book in macOS Address book." -msgstr "" +msgstr "既にmacOS address bookをアドレス帳を使用している場合は、このオプションを選択します。" #. 3EnZE #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:189 @@ -3810,7 +3815,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:618 msgctxt "generalpage|extended_tip|GeneralPage" msgid "Insert, delete, edit, and organize records in the bibliography database." -msgstr "" +msgstr "参考文献データベースのレコードを挿入、削除、編集、整理します。" #. 7BG4W #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:8 @@ -4014,7 +4019,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1058 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 "" +msgstr "列の見出しを別のデータソースのデータフィールドにマップできます。参考文献に別のデータソースを定義するには、レコードのオブジェクトバーの[データソース]ボタンをクリックします。" #. k9B7a #: extensions/uiconfig/sbibliography/ui/querydialog.ui:30 @@ -4056,13 +4061,13 @@ #: 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 "" +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 "" +msgstr "参考文献データベースのレコードを挿入、削除、編集、整理します。" #. AFbU5 #: extensions/uiconfig/scanner/ui/griddialog.ui:111 @@ -4194,7 +4199,7 @@ #: extensions/uiconfig/spropctrlr/ui/browserpage.ui:87 msgctxt "browserpage|help" msgid "Help" -msgstr "" +msgstr "ヘルプ" #. b84Zp #: extensions/uiconfig/spropctrlr/ui/controlfontdialog.ui:8 @@ -4260,7 +4265,7 @@ #: extensions/uiconfig/spropctrlr/ui/hyperlinkfield.ui:29 msgctxt "hyperlinkfield|tooltip" msgid "Activate link" -msgstr "" +msgstr "リンクを有効にする" #. JJkdg #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:18 @@ -4284,7 +4289,7 @@ #: extensions/uiconfig/spropctrlr/ui/multiline.ui:72 msgctxt "multiline|tooltip" msgid "Multiline Editing" -msgstr "" +msgstr "複数行編集" #. urhSS #: extensions/uiconfig/spropctrlr/ui/taborder.ui:18 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/filter/messages.po libreoffice-7.1.3~rc2/translations/source/ja/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -777,7 +777,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:187 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 "" +msgstr "クロスドキュメントリンクはインターネットブラウザで開きます。インターネットブラウザはハイパーリンク内の指定されたファイルタイプを処理できる必要があります。" #. B9TGg #: filter/uiconfig/ui/pdflinkspage.ui:204 @@ -1047,7 +1047,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:581 msgctxt "pdfsecuritypage|extended_tip|enablea11y" msgid "Select to enable text access for accessibility tools." -msgstr "" +msgstr "アクセシビリティツールへのテキストアクセスを有効にする場合に選択します。" #. 2hi53 #: filter/uiconfig/ui/pdfsecuritypage.ui:598 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/formula/messages.po libreoffice-7.1.3~rc2/translations/source/ja/formula/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/formula/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/formula/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-01-19 17:36+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560153878.000000\n" #. YfKFn @@ -2667,13 +2667,13 @@ #: formula/uiconfig/ui/functionpage.ui:142 msgctxt "functionpage|extended_tip|function" msgid "Displays the functions found under the selected category. Double-click to select a function." -msgstr "" +msgstr "選択したカテゴリの下にある機能を表示します。 ダブルクリックして機能を選択します。" #. jY887 #: formula/uiconfig/ui/functionpage.ui:156 msgctxt "functionpage|extended_tip|FunctionPage" msgid "Opens the Function Wizard, which helps you to interactively create formulas." -msgstr "" +msgstr "関数ウィザードを開きます。これは、数式を対話形式で作成するのに役立ちます。" #. GCYUY #: formula/uiconfig/ui/parameter.ui:27 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/auxiliary.po libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/auxiliary.po --- libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/auxiliary.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/auxiliary.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-05-19 12:41+0200\n" -"PO-Revision-Date: 2020-08-12 11:35+0000\n" -"Last-Translator: 村上正記 \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2021-04-20 19:37+0000\n" +"Last-Translator: Jun NOGATA \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1543451210.000000\n" #. fEEXD @@ -41,7 +41,7 @@ "070101\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. ooCCn #: sbasic.tree @@ -104,7 +104,7 @@ "070201\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. D6bPQ #: sbasic.tree @@ -131,7 +131,7 @@ "0801\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. DdtJy #: scalc.tree @@ -140,7 +140,7 @@ "0802\n" "node.text" msgid "Command and Menu Reference" -msgstr "コマンドおよびメニューリファレンス" +msgstr "コマンドとメニューリファレンス" #. 8g9EE #: scalc.tree @@ -311,7 +311,7 @@ "0501\n" "node.text" msgid "General Information" -msgstr "一般的な情報" +msgstr "概要" #. Q5EUA #: sdatabase.tree @@ -347,7 +347,7 @@ "1101\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. ZDeBD #: sdraw.tree @@ -356,7 +356,7 @@ "1102\n" "node.text" msgid "Command and Menu Reference" -msgstr "コマンドおよびメニューリファレンス" +msgstr "コマンドとメニューリファレンス" #. kq7Az #: sdraw.tree @@ -473,7 +473,7 @@ "1001\n" "node.text" msgid "General Information" -msgstr "一般的な情報" +msgstr "概要" #. vFfKE #: shared.tree @@ -698,7 +698,7 @@ "0401\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. XaGTA #: simpress.tree @@ -707,7 +707,7 @@ "0402\n" "node.text" msgid "Command and Menu Reference" -msgstr "コマンドおよびメニューリファレンス" +msgstr "コマンドとメニューリファレンス" #. ADAgH #: simpress.tree @@ -815,7 +815,7 @@ "0301\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. 3BZ8j #: smath.tree @@ -833,7 +833,7 @@ "0302\n" "node.text" msgid "Command and Menu Reference" -msgstr "コマンドおよびメニューリファレンス" +msgstr "コマンドとメニューリファレンス" #. CGoih #: smath.tree @@ -860,7 +860,7 @@ "0201\n" "node.text" msgid "General Information and User Interface Usage" -msgstr "一般的な情報およびユーザーインタフェースの使用法" +msgstr "概要とユーザーインターフェースの利用" #. mT2iu #: swriter.tree @@ -869,7 +869,7 @@ "0202\n" "node.text" msgid "Command and Menu Reference" -msgstr "コマンドおよびメニューリファレンス" +msgstr "コマンドとメニューリファレンス" #. 4RREa #: swriter.tree diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/text/sbasic/python.po libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/text/sbasic/python.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/text/sbasic/python.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-08-12 11:35+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Jun NOGATA \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" #. naSFZ #: main0000.xhp @@ -49,7 +49,7 @@ "par_id3153894\n" "help.text" msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit https://api.libreoffice.org" -msgstr "" +msgstr "%PRODUCTNAMEは、LibreOfficeDevソフトウェア開発キット(SDK)を使用して、さまざまなプログラミング言語から$[officename]コンポーネントを制御するアプリケーション プログラミング インターフェース(API)を提供しています。$[officename] APIおよびソフトウェア開発キットの詳細については、https://api.libreoffice.orgを参照してください。" #. 9EUoJ #: main0000.xhp @@ -58,7 +58,7 @@ "par_id3147226\n" "help.text" msgid "This help section explains the most common Python script functions for %PRODUCTNAME. For more in-depth information please refer to the Designing & Developing Python Applications on the Wiki." -msgstr "" +msgstr "このヘルプのセクションでは、%PRODUCTNAMEの一般的なPythonスクリプト関数について説明します。詳細については、TDF Wikiの「Designing & Developing Python Applications」をご覧ください。" #. FjaiD #: main0000.xhp @@ -67,7 +67,7 @@ "hd_id3146957\n" "help.text" msgid "Working with Python Scripts in %PRODUCTNAME" -msgstr "" +msgstr "%PRODUCTNAMEでのPythonスクリプトの利用" #. mQFKb #: main0000.xhp @@ -76,7 +76,7 @@ "N0102\n" "help.text" msgid "You can execute Python scripts choosing Tools - Macros - Run Macro. Editing scripts can be done with your preferred text editor. Python scripts are present in various locations detailed hereafter. You can refer to Programming examples for macros illustrating how to run the Python interactive console from %PRODUCTNAME." -msgstr "" +msgstr "Pythonスクリプトを実行するには、メニューの[ツール] - [マクロ] - [マクロの実行]を選択します。スクリプトの編集については、お好みのテキストエディタが利用できます。Pythonスクリプトについては、後で解説するさまざまな場所にあります。%PRODUCTNAMEからPythonの対話コンソールを実行する方法については、マクロのサンプルプログラムをご覧ください。" #. bb68x #: main0000.xhp @@ -94,7 +94,7 @@ "tit\n" "help.text" msgid "Python to Basic" -msgstr "" +msgstr "PythonからBasicの呼び出し" #. dkYtk #: python_2_basic.xhp @@ -112,7 +112,7 @@ "N0331\n" "help.text" msgid "Calling Basic Macros from Python" -msgstr "" +msgstr "PythonからBasicマクロの呼び出し" #. XzJcA #: python_2_basic.xhp @@ -1093,7 +1093,7 @@ "hd_id201901031407\n" "help.text" msgid "Python programming examples" -msgstr "" +msgstr "Pythonプログラミングサンプル" #. xkeov #: python_handler.xhp @@ -1102,7 +1102,7 @@ "tit\n" "help.text" msgid "Creating A Dialog Handler" -msgstr "" +msgstr "ダイアログハンドラの作成" #. WeSDk #: python_handler.xhp @@ -1120,7 +1120,7 @@ "N0665\n" "help.text" msgid "Creating a Dialog Handler" -msgstr "" +msgstr "ダイアログハンドラの作成" #. AxGAd #: python_handler.xhp @@ -1408,7 +1408,7 @@ "tit\n" "help.text" msgid "IDE for Python" -msgstr "" +msgstr "Python向けIDE" #. ETCU9 #: python_ide.xhp @@ -1426,7 +1426,7 @@ "hd_id151543348965464\n" "help.text" msgid "Setting up an Integrated Development Environment (IDE) for Python" -msgstr "" +msgstr "Python向け統合開発環境(IDE)の設定" #. k7syF #: python_ide.xhp @@ -1435,7 +1435,7 @@ "par_id541543348965465\n" "help.text" msgid "Writing Python macros requires extra configuration steps to set an IDE of choice." -msgstr "" +msgstr "Pythonマクロを作成するには、IDEを利用するための追加の設定手順が必要です。" #. NGxNi #: python_ide.xhp @@ -1444,7 +1444,7 @@ "N0106\n" "help.text" msgid "Unlike Basic language macros development in %PRODUCTNAME, developing Python scripts for %PRODUCTNAME requires to configure an external Integrated Development Environment (IDE). Multiple IDEs are available that range from beginners to advanced Python coders. While using a Python IDE programmers benefit from numerous features such as syntax highlighting, code folding, class browsing, code completion, coding standard enforcement, test driven development, debugging, version control and many more. You can refer to Designing & Developing Python Applications on the Wiki for more in-depth information about the setup of a bridge between your IDE and a running instance %PRODUCTNAME." -msgstr "" +msgstr "%PRODUCTNAMEでのBASICマクロの開発とは異なり、%PRODUCTNAME用のPythonスクリプトの開発には、外部の統合開発環境(IDE)の設定が必要です。IDEには、さまざまなものが利用でき、初心者から高度なPythonプログラマーまで幅広く対応しています。プログラマーは、Python用IDEを利用して、構文の強調表示、コードの折りたたみ、クラス参照、コード補完、コーディング規約の適用、テスト駆動開発、デバッグ、バージョン管理などの多くの機能が利用できます。IDEと実行している%PRODUCTNAMEを接続する設定についての詳細情報は、TDF Wikiの「Pythonアプリケーションの設計と開発」をご覧ください。" #. u2xio #: python_ide.xhp @@ -1453,7 +1453,7 @@ "hd_id761544698669786\n" "help.text" msgid "The APSO Extension" -msgstr "" +msgstr "APSO拡張機能" #. 4isF2 #: python_ide.xhp @@ -1462,7 +1462,7 @@ "N0104\n" "help.text" msgid "The Alternative Python Script Organizer (APSO) extension eases the edition of Python scripts, in particular when embedded in a document. Using APSO you can configure your preferred source code editor, start the integrated Python shell and debug Python scripts. Extensions exist that help inspect arbitrary UNO objects, refer to Designing & Developing Python Applications for additional details on such extensions." -msgstr "" +msgstr "Alternative Python Script Organizer (APSO)は、Pythonスクリプトがドキュメントに埋め込まれている場合などの編集に便利な拡張機能です。APSOを使うと、自分の使いやすいテキストエディターを設定したり、統合されたPythonシェルの起動やPythonスクリプトのデバッグができます。また、UNOオブジェクトの検査に役立つ拡張機能もあります。それらの拡張機能の詳細については、「Pythonアプリケーションの設計と開発」をご覧ください。" #. 5E2EV #: python_import.xhp @@ -2047,7 +2047,7 @@ "tit\n" "help.text" msgid "Python Scripts Organization" -msgstr "" +msgstr "Pythonスクリプトの管理" #. KKGnc #: python_locations.xhp @@ -2056,7 +2056,7 @@ "hd_id391543358231021\n" "help.text" msgid "Python Scripts Organization and Location" -msgstr "" +msgstr "Pythonスクリプトの管理と場所" #. sG2Rn #: python_locations.xhp @@ -2065,7 +2065,7 @@ "par_id771543358231022\n" "help.text" msgid "The Python script files are stored in the filesystem, in folders controlled by %PRODUCTNAME. The macros can be started at installation, user or file level." -msgstr "" +msgstr "Pythonスクリプトのファイルは、ファイルシステム上の%PRODUCTNAMEが管理するフォルダに格納されます。マクロは、インストールレベル、ユーザーレベル、ファイルレベルで実行できます。" #. iEtmS #: python_locations.xhp @@ -2074,7 +2074,7 @@ "hd_id911544049584458\n" "help.text" msgid "Python Script Locations" -msgstr "" +msgstr "Pythonスクリプトの場所" #. cmghv #: python_locations.xhp @@ -2083,7 +2083,7 @@ "par_id121551089455774\n" "help.text" msgid "Refer to Getting Session Information in order to get programmatic access to Python script locations." -msgstr "" +msgstr "Pythonスクリプトの場所にプログラムからアクセスするには、「セッション情報の取得」を参照してください。" #. QGXPA #: python_locations.xhp @@ -2092,7 +2092,7 @@ "hd_id591544049572647\n" "help.text" msgid "%PRODUCTNAME Macros container" -msgstr "" +msgstr "%PRODUCTNAMEマクロコンテナー" #. xBzRT #: python_locations.xhp @@ -2101,7 +2101,7 @@ "par_id261544049064421\n" "help.text" msgid "Existing macros in this location (container) were copied by the installation program and are available to every computer user, and any open document can access macros stored the container. You need administrative rights to store or edit macros here." -msgstr "" +msgstr "この場所(コンテナー)にある既存のマクロは、インストールされたプログラムによってコピーされ、すべてのコンピュータのユーザーが利用できます。開いているドキュメントは、コンテナーに保存されているマクロにアクセスできます。このマクロを保存、編集するには管理者権限が必要です。" #. M8CGu #: python_locations.xhp @@ -2110,7 +2110,7 @@ "par_id861544210028670\n" "help.text" msgid "The %PRODUCTNAME Macros container location in the file system depends on the operating system:" -msgstr "" +msgstr "ファイルシステム上の%PRODUCTNAMEマクロコンテナーの場所は、OSによって異なります。" #. GMBSF #: python_locations.xhp @@ -2119,7 +2119,7 @@ "par_id191544210072242\n" "help.text" msgid "For Windows: {Installation}\\share\\Scripts\\python." -msgstr "" +msgstr "Windowsの場合: {Installation}\\share\\Scripts\\python" #. DV8TD #: python_locations.xhp @@ -2128,7 +2128,7 @@ "par_id61544210078654\n" "help.text" msgid "For Linux and macOS: {Installation}/share/Scripts/python." -msgstr "" +msgstr "LinuxmacOSの場合: {Installation}/share/Scripts/python" #. 5sHwj #: python_locations.xhp @@ -2137,7 +2137,7 @@ "hd_id861544049692222\n" "help.text" msgid "My Macros" -msgstr "" +msgstr "マイマクロ" #. aiMzD #: python_locations.xhp @@ -2146,7 +2146,7 @@ "par_id981544049055996\n" "help.text" msgid "This container is accessible only by the %PRODUCTNAME user. Any open document can access macros stored the container. Macros in this location are stored in the %PRODUCTNAME user profile." -msgstr "" +msgstr "このコンテナーには、%PRODUCTNAMEユーザーのみアクセスできます。開いているドキュメントは、コンテナーに格納されているマクロにアクセスできます。この場所のマクロは、%PRODUCTNAMEユーザープロファイルに保存されます。" #. wUjx4 #: python_locations.xhp @@ -2155,7 +2155,7 @@ "par_id341544210187846\n" "help.text" msgid "The My Macros container location is in the user space and depends on the operating system:" -msgstr "" +msgstr "マイマクロコンテナーの場所はユーザ空間にあり、OSによって異なります。" #. mhNtD #: python_locations.xhp @@ -2164,7 +2164,7 @@ "par_id381544210213190\n" "help.text" msgid "For Windows,
%APPDATA%\\LibreOffice\\4\\user\\Scripts\\python." -msgstr "" +msgstr "Windowsの場合
%APPDATA%\\LibreOffice\\4\\user\\Scripts\\python" #. fQYPE #: python_locations.xhp @@ -2173,7 +2173,7 @@ "par_id691544210219850\n" "help.text" msgid "For Linux and macOS,
$HOME/.config/libreoffice/4/user/Scripts/python." -msgstr "" +msgstr "LinuxmacOSの場合
$HOME/.config/libreoffice/4/user/Scripts/python" #. CSJC9 #: python_locations.xhp @@ -2182,7 +2182,7 @@ "hd_id101544049707712\n" "help.text" msgid "Document macros" -msgstr "" +msgstr "ドキュメントマクロ" #. FBmoB #: python_locations.xhp @@ -2191,7 +2191,7 @@ "par_id31544049046497\n" "help.text" msgid "Document macros are embedded in the document and are accessible only when the document is open." -msgstr "" +msgstr "ドキュメントマクロはドキュメントに埋め込まれており、ドキュメントが開いている場合にのみアクセスできます。" #. qbVc9 #: python_locations.xhp @@ -2200,7 +2200,7 @@ "hd_id171544049715310\n" "help.text" msgid "Libraries, Modules and Macros" -msgstr "" +msgstr "ライブラリ、モジュール、およびマクロ" #. KnZCV #: python_locations.xhp @@ -2209,7 +2209,7 @@ "par_id181544209916707\n" "help.text" msgid "Like BASIC macros, Python macros can be organized in libraries, modules and macros." -msgstr "" +msgstr "BASICマクロと同様にPythonマクロもライブラリ、モジュール、マクロで構成できます。" #. LoK2E #: python_locations.xhp @@ -2218,7 +2218,7 @@ "hd_id21544209865082\n" "help.text" msgid "Creating a Python Library" -msgstr "" +msgstr "Pythonライブラリの作成" #. R2uCF #: python_locations.xhp @@ -2227,7 +2227,7 @@ "par_id191544209928221\n" "help.text" msgid "Libraries are folders in the container tree. To create a library, add a folder in the target container. The library name is the folder name." -msgstr "" +msgstr "ライブラリはコンテナーツリー内のフォルダーにあります。ライブラリを作成するには、対象のコンテナーにフォルダーを追加します。ライブラリ名はフォルダ名になります。" #. hFS3L #: python_locations.xhp @@ -2236,7 +2236,7 @@ "hd_id31544209872869\n" "help.text" msgid "Creating a Python Module." -msgstr "" +msgstr "Pythonモジュールの作成" #. djeua #: python_locations.xhp @@ -2245,7 +2245,7 @@ "par_id161544209936743\n" "help.text" msgid "A module is a python file in the library or the container. Create a module adding a file in the container." -msgstr "" +msgstr "モジュールとは、ライブラリやコンテナー内のPythonファイルのことです。モジュールを作成するには、コンテナーにファイルを追加します。" #. Paoju #: python_locations.xhp @@ -2254,7 +2254,7 @@ "hd_id151544209895574\n" "help.text" msgid "Python macros" -msgstr "" +msgstr "Pythonマクロ" #. CBeyB #: python_locations.xhp @@ -2263,7 +2263,7 @@ "par_id61544209944591\n" "help.text" msgid "A macro is a python object in the module." -msgstr "" +msgstr "マクロは、モジュール内のPythonオブジェクトです。" #. Zcfxg #: python_platform.xhp @@ -3352,7 +3352,7 @@ "tit\n" "help.text" msgid "Python Interactive Shell" -msgstr "" +msgstr "Python対話シェル" #. LUGZ7 #: python_shell.xhp @@ -3361,7 +3361,7 @@ "N0117\n" "help.text" msgid "Python console Python Interactive Shell" -msgstr "" +msgstr "Python console Python対話シェル" #. PmoqF #: python_shell.xhp @@ -3370,7 +3370,7 @@ "N0118\n" "help.text" msgid "Running Python Interactive Console" -msgstr "" +msgstr "Python対話コンソールの実行" #. Met9b #: python_shell.xhp @@ -3379,7 +3379,7 @@ "N0119\n" "help.text" msgid "The Python interactive console, also known as Python interpreter or Python shell, provides programmers with a quick way to execute commands and try out and test code without creating a file. UNO objects introspection as well as %PRODUCTNAME Python modules documentation can be obtained from the terminal." -msgstr "" +msgstr "PythonインタープリタやPythonシェルとも呼ばれるPython対話コンソールを使うと、ファイルを作成せずにコマンドを実行したり、コードを試したり、テストしたりできます。UNOオブジェクトのイントロスペクションと%PRODUCTNAME Pythonモジュールのドキュメントは、ターミナルから入手できます。" #. MZodx #: python_shell.xhp @@ -3388,7 +3388,7 @@ "N0121\n" "help.text" msgid "Using a Basic macro:" -msgstr "" +msgstr "Basicマクロを使用する場合" #. vXGF7 #: python_shell.xhp @@ -3397,7 +3397,7 @@ "N0127\n" "help.text" msgid "Using a Python macro:" -msgstr "" +msgstr "Pythonマクロを使用する場合" #. oBg3T #: python_shell.xhp @@ -3406,7 +3406,7 @@ "N0141\n" "help.text" msgid "Usage:" -msgstr "" +msgstr "使用方法" #. EzwwC #: python_shell.xhp @@ -3415,4 +3415,4 @@ "N0142\n" "help.text" msgid "Python Interactive Console" -msgstr "" +msgstr "Python対話コンソール" diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-08-25 08:35+0000\n" -"Last-Translator: Souichirou Ishikawa \n" -"Language-Team: Japanese \n" +"PO-Revision-Date: 2021-04-20 19:37+0000\n" +"Last-Translator: Jun NOGATA \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565336169.000000\n" #. yzYVt @@ -42395,7 +42395,7 @@ "par_id81572615048011\n" "help.text" msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit https://api.libreoffice.org" -msgstr "" +msgstr "%PRODUCTNAMEは、LibreOfficeDevソフトウェア開発キット(SDK)を使用して、さまざまなプログラミング言語から$[officename]コンポーネントを制御するアプリケーション プログラミング インターフェース(API)を提供しています。$[officename] APIおよびソフトウェア開発キットの詳細については、https://api.libreoffice.orgを参照してください。" #. V3Wow #: vbasupport.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-01 19:36+0000\n" "Last-Translator: So \n" "Language-Team: Japanese \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565336668.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "点滅フォント明滅フォント" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "点滅" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-02-14 14:36+0000\n" +"PO-Revision-Date: 2021-04-18 02:37+0000\n" "Last-Translator: Jun NOGATA \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565185748.000000\n" #. W5ukN @@ -1674,7 +1674,7 @@ "Label\n" "value.text" msgid "Cycle Cell Reference Types" -msgstr "セル参照種類を順に切り替える" +msgstr "セル参照の種類を切り替え" #. 8Zduf #: CalcCommands.xcu @@ -25956,7 +25956,7 @@ "Label\n" "value.text" msgid "Insert non-br~eaking hyphen" -msgstr "改行なしハイフンの挿入(~E)" +msgstr "改行なしハイフンを挿入(~E)" #. FsR94 #: GenericCommands.xcu @@ -25986,7 +25986,7 @@ "Label\n" "value.text" msgid "Insert N~arrow No-break Space" -msgstr "" +msgstr "ナローノーブレークスペースを挿入(~A)" #. txaEk #: GenericCommands.xcu @@ -26016,7 +26016,7 @@ "Label\n" "value.text" msgid "~Left-to-right Mark" -msgstr "" +msgstr "左横書き記号(~L)" #. prtF2 #: GenericCommands.xcu @@ -26026,7 +26026,7 @@ "Label\n" "value.text" msgid "~Right-to-left Mark" -msgstr "" +msgstr "右横書き記号(~R)" #. o6CJp #: GenericCommands.xcu @@ -32506,7 +32506,7 @@ "Label\n" "value.text" msgid "To Next Sentence" -msgstr "次の文章へ" +msgstr "次の文へ" #. VyGkp #: WriterCommands.xcu @@ -32526,7 +32526,7 @@ "Label\n" "value.text" msgid "To Previous Sentence" -msgstr "前の文章へ" +msgstr "前の文へ" #. UyiCH #: WriterCommands.xcu @@ -32696,7 +32696,7 @@ "Label\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "前のページへ" #. w4B39 #: WriterCommands.xcu @@ -32706,7 +32706,7 @@ "TooltipLabel\n" "value.text" msgid "To Previous Page" -msgstr "" +msgstr "前のページへ" #. qEpQx #: WriterCommands.xcu @@ -32716,7 +32716,7 @@ "Label\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "次のページへ" #. Nx5Ux #: WriterCommands.xcu @@ -32726,7 +32726,7 @@ "TooltipLabel\n" "value.text" msgid "To Next Page" -msgstr "" +msgstr "次のページへ" #. adnz3 #: WriterCommands.xcu @@ -35016,7 +35016,7 @@ "Label\n" "value.text" msgid "Box List Yellow" -msgstr "ボックスリスト(黃)" +msgstr "ボックスリスト(黄)" #. JGydq #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-01-19 17:36+0000\n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" "Last-Translator: Jun NOGATA \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1545530455.000000\n" #. HhMVS @@ -784,7 +784,7 @@ "DisplayName\n" "value.text" msgid "Report Builder" -msgstr "Report Builder" +msgstr "レポートビルダー" #. iE8oL #: ExtendedColorScheme.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/sd/messages.po libreoffice-7.1.3~rc2/translations/source/ja/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-23 23:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Jun NOGATA \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562492439.000000\n" #. WDjkB @@ -638,7 +638,7 @@ #: sd/inc/strings.hrc:76 msgctxt "STR_WARN_PAGE_EXISTS_DRAW" msgid "The page name already exists or is invalid. Please enter another name." -msgstr "" +msgstr "ページ名が既に存在するかまたは無効です。別の名称を入力してください。" #. ryfEt #: sd/inc/strings.hrc:77 @@ -946,7 +946,7 @@ #: sd/inc/strings.hrc:125 msgctxt "STR_UNDO_MODIFY_PAGE_DRAW" msgid "Page layout" -msgstr "" +msgstr "ページレイアウト" #. BFzyf #: sd/inc/strings.hrc:126 @@ -1432,7 +1432,7 @@ #: sd/inc/strings.hrc:210 msgctxt "STR_HTMLEXP_EMAIL" msgid "Email" -msgstr "" +msgstr "メール" #. pArSC #: sd/inc/strings.hrc:211 @@ -1592,7 +1592,7 @@ #: sd/inc/strings.hrc:236 msgctxt "STR_TOOLTIP_RENAME" msgid "Duplicate or empty names are not possible" -msgstr "" +msgstr "空白や重複した名称は設定できません" #. FUm5F #: sd/inc/strings.hrc:237 @@ -1682,13 +1682,13 @@ #: sd/inc/strings.hrc:251 msgctxt "STR_FIELD_PLACEHOLDER_SLIDENAME" msgid "" -msgstr "" +msgstr "<スライド名>" #. j8btB #: sd/inc/strings.hrc:252 msgctxt "STR_FIELD_PLACEHOLDER_PAGENAME" msgid "" -msgstr "" +msgstr "<ページ名>" #. ao6iR #: sd/inc/strings.hrc:253 @@ -2740,7 +2740,7 @@ #: sd/inc/strings.hrc:437 msgctxt "STR_CUSTOMANIMATION_MISC" msgid "Misc: %1" -msgstr "" +msgstr "その他: %1" #. Ep4QY #: sd/inc/strings.hrc:438 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/ja/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-14 14:36+0000\n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" "Last-Translator: Jun NOGATA \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562983822.000000\n" #. bHbFE @@ -1583,7 +1583,7 @@ #: include/sfx2/strings.hrc:286 msgctxt "STR_READONLY_SIGN" msgid "Sign Document" -msgstr "ドキュメントに署名..." +msgstr "ドキュメントに署名" #. MEfTq #: include/sfx2/strings.hrc:287 @@ -1704,7 +1704,7 @@ #: include/sfx2/strings.hrc:310 msgctxt "STR_TEMPLATE_NAME9" msgid "Forestbird" -msgstr "森と小鳥" +msgstr "森の小鳥" #. o8F35 #: include/sfx2/strings.hrc:311 @@ -1770,7 +1770,7 @@ #: include/sfx2/strings.hrc:321 msgctxt "STR_TEMPLATE_NAME20" msgid "Progress" -msgstr "" +msgstr "プログレス" #. gtPt9 #: include/sfx2/strings.hrc:322 @@ -2599,7 +2599,7 @@ #: sfx2/uiconfig/ui/documentfontspage.ui:74 msgctxt "documentfontspage|fontEmbeddingLabel" msgid "Font Embedding" -msgstr "" +msgstr "フォントの埋め込み" #. Gip6V #: sfx2/uiconfig/ui/documentfontspage.ui:105 @@ -3100,13 +3100,13 @@ #: sfx2/uiconfig/ui/linefragment.ui:185 msgctxt "linefragment|yes" msgid "Yes" -msgstr "" +msgstr "はい" #. mJFyB #: sfx2/uiconfig/ui/linefragment.ui:201 msgctxt "linefragment|no" msgid "No" -msgstr "" +msgstr "いいえ" #. muk9B #: sfx2/uiconfig/ui/linkeditdialog.ui:13 @@ -3334,7 +3334,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:241 msgctxt "managestylepage|label2" msgid "Contains" -msgstr "説明" +msgstr "次を含む" #. SyymG #: sfx2/uiconfig/ui/newstyle.ui:16 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/ja/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-29 18:36+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547910395.000000\n" #. fLdeV @@ -1719,7 +1719,7 @@ #: include/svtools/strings.hrc:338 msgctxt "STR_DESCRIPTION_LIBHYPHEN" msgid "Libhyphen Hyphenator" -msgstr "" +msgstr "Libhyphenハイフネーター" #. aGFNy #: include/svtools/strings.hrc:339 @@ -1731,7 +1731,7 @@ #: include/svtools/strings.hrc:340 msgctxt "STR_DESCRIPTION_IGNOREALLLIST" msgid "List of Ignored Words" -msgstr "" +msgstr "無視された単語のリスト" #. tBGDJ #: svtools/inc/borderline.hrc:17 @@ -4895,7 +4895,7 @@ #: svtools/inc/langtab.hrc:428 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Sundanese" -msgstr "" +msgstr "スンダ語" #. wGEAB #: svtools/inc/langtab.hrc:429 @@ -4907,7 +4907,7 @@ #: svtools/inc/langtab.hrc:430 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "English (Kenya)" -msgstr "" +msgstr "英語(ケニヤ)" #. fXSja #: svtools/uiconfig/ui/addresstemplatedialog.ui:8 @@ -4943,7 +4943,7 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:182 msgctxt "addresstemplatedialog|admin" msgid "_Assign" -msgstr "" +msgstr "割り当てる(_A)" #. TG8ad #: svtools/uiconfig/ui/addresstemplatedialog.ui:189 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/svx/messages.po libreoffice-7.1.3~rc2/translations/source/ja/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" "Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -3534,7 +3534,7 @@ #: include/svx/strings.hrc:619 msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG" msgid "Chartreuse Green (Out of Gamut)" -msgstr "" +msgstr "シャルトリューズグリーン(色域外)" #. s3ZaC #: include/svx/strings.hrc:620 @@ -3576,7 +3576,7 @@ #: include/svx/strings.hrc:626 msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN" msgid "Chartreuse Green" -msgstr "" +msgstr "シャルトリューズグリーン" #. RkAmE #: include/svx/strings.hrc:627 @@ -3806,7 +3806,7 @@ #: include/svx/strings.hrc:666 msgctxt "RID_SVXSTR_COLOR_TURQUOISE" msgid "Turquoise" -msgstr "青緑" +msgstr "水色" #. 4gHhZ #. 16 old AutoFormat Table Styles @@ -3897,7 +3897,7 @@ #: include/svx/strings.hrc:682 msgctxt "RID_SVXSTR_TBLAFMT_TURQUOISE" msgid "Turquoise" -msgstr "青緑" +msgstr "水色" #. sZbit #: include/svx/strings.hrc:683 @@ -4430,7 +4430,7 @@ #: include/svx/strings.hrc:780 msgctxt "RID_SVXSTR_GRDT68" msgid "Night" -msgstr "夜" +msgstr "ナイト" #. 4ECED #: include/svx/strings.hrc:781 @@ -4443,91 +4443,91 @@ #: include/svx/strings.hrc:783 msgctxt "RID_SVXSTR_GRDT70" msgid "Pastel Bouquet" -msgstr "" +msgstr "パステルブーケ" #. 9BV4L #: include/svx/strings.hrc:784 msgctxt "RID_SVXSTR_GRDT71" msgid "Pastel Dream" -msgstr "" +msgstr "パステルドリーム" #. jEVDi #: include/svx/strings.hrc:785 msgctxt "RID_SVXSTR_GRDT72" msgid "Blue Touch" -msgstr "" +msgstr "ブルータッチ" #. ZAj48 #: include/svx/strings.hrc:786 msgctxt "RID_SVXSTR_GRDT73" msgid "Blank with Gray" -msgstr "" +msgstr "グレーの空白" #. CJqu3 #: include/svx/strings.hrc:787 msgctxt "RID_SVXSTR_GRDT74" msgid "Spotted Gray" -msgstr "" +msgstr "スポットグレー" #. s6Z54 #: include/svx/strings.hrc:788 msgctxt "RID_SVXSTR_GRDT75" msgid "London Mist" -msgstr "" +msgstr "ロンドンミスト" #. nk99S #: include/svx/strings.hrc:789 msgctxt "RID_SVXSTR_GRDT76" msgid "Teal to Blue" -msgstr "" +msgstr "ティールブルー" #. ud3Bc #: include/svx/strings.hrc:790 msgctxt "RID_SVXSTR_GRDT77" msgid "Midnight" -msgstr "" +msgstr "ミッドナイト" #. 3DFV9 #: include/svx/strings.hrc:791 msgctxt "RID_SVXSTR_GRDT78" msgid "Deep Ocean" -msgstr "" +msgstr "ディープオーシャン" #. beAAG #: include/svx/strings.hrc:792 msgctxt "RID_SVXSTR_GRDT79" msgid "Submarine" -msgstr "" +msgstr "サブマリン" #. LCJCH #: include/svx/strings.hrc:793 msgctxt "RID_SVXSTR_GRDT80" msgid "Green Grass" -msgstr "" +msgstr "グリーングラス" #. wiGu5 #: include/svx/strings.hrc:794 msgctxt "RID_SVXSTR_GRDT81" msgid "Neon Light" -msgstr "" +msgstr "ネオンライト" #. EGqXT #: include/svx/strings.hrc:795 msgctxt "RID_SVXSTR_GRDT82" msgid "Sunshine" -msgstr "" +msgstr "サンシャイン" #. WCs3M #: include/svx/strings.hrc:796 msgctxt "RID_SVXSTR_GRDT83" msgid "Present" -msgstr "" +msgstr "プレゼント" #. 99B5Z #: include/svx/strings.hrc:797 msgctxt "RID_SVXSTR_GRDT84" msgid "Mahogany" -msgstr "" +msgstr "マホガニー" #. Z8RH9 #. /gradients @@ -4606,19 +4606,19 @@ #: include/svx/strings.hrc:811 msgctxt "RID_SVXSTR_HATCH12" msgid "Yellow 45 Degrees" -msgstr "黃 45度" +msgstr "黄 45度" #. eRFD8 #: include/svx/strings.hrc:812 msgctxt "RID_SVXSTR_HATCH13" msgid "Yellow 45 Degrees Crossed" -msgstr "黃 45度 縦横線" +msgstr "黄 45度 縦横線" #. JhXx3 #: include/svx/strings.hrc:813 msgctxt "RID_SVXSTR_HATCH14" msgid "Yellow 45 Degrees Triple" -msgstr "黃 45度 縦横斜線" +msgstr "黄 45度 縦横斜線" #. 78jyB #: include/svx/strings.hrc:814 @@ -4636,31 +4636,31 @@ #: include/svx/strings.hrc:816 msgctxt "RID_SVXSTR_BMP1" msgid "Painted White" -msgstr "" +msgstr "白塗り" #. iHX2t #: include/svx/strings.hrc:817 msgctxt "RID_SVXSTR_BMP2" msgid "Paper Texture" -msgstr "" +msgstr "紙" #. mAyG3 #: include/svx/strings.hrc:818 msgctxt "RID_SVXSTR_BMP3" msgid "Paper Crumpled" -msgstr "" +msgstr "くしゃくしゃの紙" #. i3ARe #: include/svx/strings.hrc:819 msgctxt "RID_SVXSTR_BMP4" msgid "Paper Graph" -msgstr "" +msgstr "方眼紙" #. 6izYJ #: include/svx/strings.hrc:820 msgctxt "RID_SVXSTR_BMP5" msgid "Parchment Paper" -msgstr "" +msgstr "羊皮紙" #. mQCXG #: include/svx/strings.hrc:821 @@ -4678,19 +4678,19 @@ #: include/svx/strings.hrc:823 msgctxt "RID_SVXSTR_BMP8" msgid "Maple Leaves" -msgstr "" +msgstr "楓" #. 2B5Wr #: include/svx/strings.hrc:824 msgctxt "RID_SVXSTR_BMP9" msgid "Lawn" -msgstr "" +msgstr "芝生" #. bAE9x #: include/svx/strings.hrc:825 msgctxt "RID_SVXSTR_BMP10" msgid "Colorful Pebbles" -msgstr "" +msgstr "カラフルな小石" #. nqBbP #: include/svx/strings.hrc:826 @@ -4702,55 +4702,55 @@ #: include/svx/strings.hrc:827 msgctxt "RID_SVXSTR_BMP12" msgid "Little Clouds" -msgstr "" +msgstr "雲" #. 2hE6A #: include/svx/strings.hrc:828 msgctxt "RID_SVXSTR_BMP13" msgid "Bathroom Tiles" -msgstr "" +msgstr "タイル" #. KZeGr #: include/svx/strings.hrc:829 msgctxt "RID_SVXSTR_BMP14" msgid "Wall of Rock" -msgstr "" +msgstr "岩壁" #. wAELs #: include/svx/strings.hrc:830 msgctxt "RID_SVXSTR_BMP15" msgid "Zebra" -msgstr "" +msgstr "シマウマ" #. AVGfC #: include/svx/strings.hrc:831 msgctxt "RID_SVXSTR_BMP16" msgid "Color Stripes" -msgstr "" +msgstr "カラーストライプ" #. ZoUmP #: include/svx/strings.hrc:832 msgctxt "RID_SVXSTR_BMP17" msgid "Gravel" -msgstr "" +msgstr "砂利" #. 5FiBd #: include/svx/strings.hrc:833 msgctxt "RID_SVXSTR_BMP18" msgid "Parchment Studio" -msgstr "" +msgstr "羊皮紙工房" #. HYfqK #: include/svx/strings.hrc:834 msgctxt "RID_SVXSTR_BMP19" msgid "Night Sky" -msgstr "" +msgstr "夜空" #. NkYV3 #: include/svx/strings.hrc:835 msgctxt "RID_SVXSTR_BMP20" msgid "Pool" -msgstr "" +msgstr "プール" #. Co6U3 #: include/svx/strings.hrc:836 @@ -4768,25 +4768,25 @@ #: include/svx/strings.hrc:838 msgctxt "RID_SVXSTR_BMP80" msgid "Concrete" -msgstr "" +msgstr "コンクリート" #. RxiMA #: include/svx/strings.hrc:839 msgctxt "RID_SVXSTR_BMP81" msgid "Brick Wall" -msgstr "" +msgstr "レンガ" #. WNEfT #: include/svx/strings.hrc:840 msgctxt "RID_SVXSTR_BMP82" msgid "Stone Wall" -msgstr "" +msgstr "石壁" #. dFqW3 #: include/svx/strings.hrc:841 msgctxt "RID_SVXSTR_BMP83" msgid "Floral" -msgstr "" +msgstr "フローラル" #. FzePv #: include/svx/strings.hrc:842 @@ -13776,7 +13776,7 @@ #: svx/uiconfig/ui/compressgraphicdialog.ui:466 msgctxt "compressgraphicdialog|interpolation-method-store" msgid "Lanczos" -msgstr "Lanczos" +msgstr "ランチョス" #. zkJ5x #: svx/uiconfig/ui/compressgraphicdialog.ui:478 @@ -13995,7 +13995,7 @@ #: svx/uiconfig/ui/crashreportdlg.ui:50 msgctxt "crashreportdlg|btn_cancel" msgid "Do _Not Send" -msgstr "" +msgstr "送信しない(_N)" #. afExy #: svx/uiconfig/ui/crashreportdlg.ui:64 @@ -18973,37 +18973,37 @@ #: svx/uiconfig/ui/sidebareffect.ui:56 msgctxt "sidebarglow|radius" msgid "Radius:" -msgstr "" +msgstr "半径:" #. bEFFC #: svx/uiconfig/ui/sidebareffect.ui:83 msgctxt "sidebarglow|color" msgid "Color:" -msgstr "" +msgstr "色:" #. EvWsM #: svx/uiconfig/ui/sidebareffect.ui:115 msgctxt "sidebarglow|transparency" msgid "Transparency:" -msgstr "" +msgstr "透明度:" #. K7L6F #: svx/uiconfig/ui/sidebareffect.ui:146 msgctxt "sidebarglow|glow" msgid "Glow" -msgstr "" +msgstr "光彩" #. SABEF #: svx/uiconfig/ui/sidebareffect.ui:182 msgctxt "sidebarsoftedge|radius" msgid "Radius:" -msgstr "" +msgstr "半径:" #. KRr2U #: svx/uiconfig/ui/sidebareffect.ui:213 msgctxt "sidebarsoftedge|softedge" msgid "Soft Edge" -msgstr "" +msgstr "ぼかし" #. BEqw7 #: svx/uiconfig/ui/sidebarempty.ui:26 @@ -19021,31 +19021,31 @@ #: svx/uiconfig/ui/sidebargallery.ui:304 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_ICONVIEW" msgid "Icon View" -msgstr "" +msgstr "アイコン表示" #. TZSrQ #: svx/uiconfig/ui/sidebargallery.ui:309 svx/uiconfig/ui/sidebargallery.ui:328 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_THEMEITEMS" msgid "Theme Items" -msgstr "" +msgstr "テーマ項目" #. FLH5B #: svx/uiconfig/ui/sidebargallery.ui:323 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_LISTVIEW" msgid "Detailed View" -msgstr "" +msgstr "詳細表示" #. YDmBa #: svx/uiconfig/ui/sidebargallery.ui:354 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME" msgid "New..." -msgstr "" +msgstr "新規..." #. RfChe #: svx/uiconfig/ui/sidebargallery.ui:373 msgctxt "sidebargallery|btnMoreGalleries" msgid "Add more galleries via extension" -msgstr "" +msgstr "拡張機能サイトからギャラリーへ追加" #. BdPh5 #: svx/uiconfig/ui/sidebargraphic.ui:52 @@ -19099,31 +19099,31 @@ #: svx/uiconfig/ui/sidebargraphic.ui:148 msgctxt "sidebargraphic|transparencylabel" msgid "_Transparency:" -msgstr "透過性(_T):" +msgstr "透明度(_T):" #. YNFDX #: svx/uiconfig/ui/sidebargraphic.ui:162 msgctxt "sidebargraphic|setgraphtransparency|tooltip_text" msgid "Specify the percentage of transparency; 0% is fully opaque and 100% is fully transparent." -msgstr "" +msgstr "透明度をパーセントで指定します。0%は完全に不透明で、100%は完全に透明です。" #. GAw6e #: svx/uiconfig/ui/sidebargraphic.ui:168 msgctxt "sidebargraphic|setgraphtransparency-atkobject" msgid "Transparency" -msgstr "" +msgstr "透明度" #. rBdfj #: svx/uiconfig/ui/sidebarline.ui:38 msgctxt "sidebarline|widthlabel" msgid "_Line:" -msgstr "" +msgstr "線(_L):" #. 5yM6T #: svx/uiconfig/ui/sidebarline.ui:61 msgctxt "sidebarline|linestyle|tooltip_text" msgid "Select the style of the arrowheads." -msgstr "" +msgstr "矢印の種類を選択します。" #. R56Ey #: svx/uiconfig/ui/sidebarline.ui:73 @@ -19171,13 +19171,13 @@ #: svx/uiconfig/ui/sidebarline.ui:207 msgctxt "sidebarline|linetransparency|tooltip_text" msgid "Specify the transparency of the line." -msgstr "線の透過度を指定します。" +msgstr "線の透明度を指定します。" #. kDWvG #: svx/uiconfig/ui/sidebarline.ui:212 msgctxt "sidebarline|linetransparency-atkobject" msgid "Transparency" -msgstr "透過性" +msgstr "透明度" #. AZukk #: svx/uiconfig/ui/sidebarline.ui:244 @@ -19261,7 +19261,7 @@ #: svx/uiconfig/ui/sidebarlists.ui:23 msgctxt "sidebarlists|numberbullet|tooltip_text" msgid "Bullets and Numbering" -msgstr "" +msgstr "箇条書きと番号付け" #. noR4f #: svx/uiconfig/ui/sidebarparagraph.ui:53 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/sw/messages.po libreoffice-7.1.3~rc2/translations/source/ja/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-14 14:36+0000\n" +"PO-Revision-Date: 2021-04-27 21:56+0200\n" "Last-Translator: Jun NOGATA \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -74,7 +74,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:25 msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING" msgid "The text formatting conveys additional meaning." -msgstr "" +msgstr "テキストの書式設定は追加的に意味を伝えます。" #. MXVBm #: sw/inc/AccessibilityCheckStrings.hrc:26 @@ -104,7 +104,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_FONTWORKS" msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text." -msgstr "" +msgstr "ドキュメント内でフォントワークオブジェクトを使わないでください。サンプルや意味のないテキストに使用しましょう。" #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 @@ -116,7 +116,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:33 msgctxt "STR_STYLE_NO_LANGUAGE" msgid "Style '%STYLE_NAME%' has no language set" -msgstr "" +msgstr "スタイル '%STYLE_NAME%' には言語が設定されていません" #. FG4Vn #: sw/inc/AccessibilityCheckStrings.hrc:34 @@ -548,6 +548,8 @@ "This HTML document contains Basic macros.\n" "They were not saved with the current export settings." msgstr "" +"このHTMLドキュメントはマクロを含んでいます。\n" +"現在の設定ではこれらはエクスポート時に保存されません。" #. daCFp #: sw/inc/flddinf.hrc:27 @@ -2425,7 +2427,7 @@ #: sw/inc/strings.hrc:66 msgctxt "STR_POOLCOLL_TEXT_IDENT" msgid "First Line Indent" -msgstr "本文段落字下げ" +msgstr "段落字下げ" #. ReVdk #: sw/inc/strings.hrc:67 @@ -2473,7 +2475,7 @@ #: sw/inc/strings.hrc:74 msgctxt "STR_POOLCOLL_CONFRONTATION" msgid "List Indent" -msgstr "リストインデント" +msgstr "箇条書きインデント" #. ELkzH #: sw/inc/strings.hrc:75 @@ -3136,12 +3138,6 @@ msgid "Appendix" msgstr "付録" -#. xiVb7 -#: sw/inc/strings.hrc:186 -msgctxt "STR_POOLCOLL_HTML_BLOCKQUOTE" -msgid "Quotations" -msgstr "引用句" - #. FPDvM #: sw/inc/strings.hrc:187 msgctxt "STR_POOLCOLL_HTML_PRE" @@ -21748,25 +21744,25 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:332 msgctxt "numparapage|checkCB_COUNT_PARA" msgid "_Include this paragraph in line numbering" -msgstr "この段落の行数を含める(_I)" +msgstr "この段落を行番号に含める(_I)" #. mhtFH #: sw/uiconfig/swriter/ui/numparapage.ui:343 msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA" msgid "Includes the current paragraph in the line numbering." -msgstr "" +msgstr "行番号に現在の段落を含めます。" #. wGRPh #: sw/uiconfig/swriter/ui/numparapage.ui:355 msgctxt "numparapage|checkCB_RESTART_PARACOUNT" msgid "Rest_art at this paragraph" -msgstr "この段落で新しく開始(_A)" +msgstr "この段落から新しく開始(_A)" #. YhNoE #: sw/uiconfig/swriter/ui/numparapage.ui:366 msgctxt "numparapage|extended_tip|checkCB_RESTART_PARACOUNT" msgid "Restarts the line numbering at the current paragraph, or at the number that you enter." -msgstr "" +msgstr "行番号を現在の段落または入力された番号から始めます。" #. uuXAF #: sw/uiconfig/swriter/ui/numparapage.ui:393 @@ -22428,7 +22424,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:273 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "" +msgstr "編集記号の表示" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:305 @@ -22470,7 +22466,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:431 msgctxt "extended_tip|cursoronoff" msgid "Activates the direct cursor." -msgstr "" +msgstr "ダイレクトカーソルを有効にします。" #. 8eyNs #: sw/uiconfig/swriter/ui/optformataidspage.ui:449 @@ -22518,31 +22514,31 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:528 msgctxt "optformataidspage|anchor" msgid "_Anchor:" -msgstr "" +msgstr "アンカー(_A):" #. 4ahDA #: sw/uiconfig/swriter/ui/optformataidspage.ui:545 msgctxt "optformataidspage|cxDefaultAnchor1" msgid "To Paragraph" -msgstr "" +msgstr "段落に" #. Fxh2u #: sw/uiconfig/swriter/ui/optformataidspage.ui:546 msgctxt "optformataidspage|cxDefaultAnchor2" msgid "To Character" -msgstr "" +msgstr "文字に" #. rafqG #: sw/uiconfig/swriter/ui/optformataidspage.ui:547 msgctxt "optformataidspage|cxDefaultAnchor3" msgid "As Character" -msgstr "" +msgstr "文字として" #. B3qDX #: sw/uiconfig/swriter/ui/optformataidspage.ui:564 msgctxt "optformataidspage|lbImage" msgid "Image" -msgstr "" +msgstr "画像" #. npuVw #: sw/uiconfig/swriter/ui/optformataidspage.ui:592 @@ -28806,7 +28802,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:320 msgctxt "viewoptionspage|changesinmargin" msgid "Tracked _deletions in margin" -msgstr "" +msgstr "余白の削除を追跡(_D)" #. vvvb7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:329 @@ -28818,7 +28814,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:340 msgctxt "viewoptionspage|changestooltip" msgid "_Tooltips on tracked changes" -msgstr "変更された履歴をツールチップで表示(_T)" +msgstr "変更の追跡をツールチップで表示(_T)" #. 8no6x #: sw/uiconfig/swriter/ui/viewoptionspage.ui:361 diff -Nru libreoffice-7.1.2~rc2/translations/source/ja/uui/messages.po libreoffice-7.1.3~rc2/translations/source/ja/uui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ja/uui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ja/uui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-11 17:36+0000\n" -"Last-Translator: Jun NOGATA \n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" +"Last-Translator: jun meguro \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1538446410.000000\n" #. DLY8p @@ -64,6 +64,13 @@ "\n" "Are you certain that this file is a legacy document created many years ago?" msgstr "" +"警告!\n" +"\n" +"次のURLから非常に珍しい種類のファイル ($(ARG2))をロードしようとしています:\n" +"\n" +"$(ARG1)\n" +"\n" +"このファイルが何年も前に作成されたレガシードキュメントであると確認できていますか?" #. v6bPE #: uui/inc/ids.hrc:45 @@ -685,6 +692,8 @@ "\n" "You may also ignore the file locking and open the document for editing." msgstr "" +"\n" +"ファイルロックを無視して、編集のためにドキュメントを開くこともできます。" #. tc7YZ #: uui/inc/strings.hrc:52 @@ -1022,7 +1031,7 @@ #: uui/uiconfig/ui/masterpassworddlg.ui:110 msgctxt "masterpassworddlg|extended_tip|password" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "パスワードを入力して下さい。大文字・小文字は区別されます。" #. Twvfe #: uui/uiconfig/ui/masterpassworddlg.ui:139 @@ -1040,7 +1049,7 @@ #: uui/uiconfig/ui/password.ui:120 msgctxt "password|extended_tip|newpassEntry" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "パスワードを入力して下さい。大文字・小文字は区別されます。" #. QbKd2 #: uui/uiconfig/ui/password.ui:139 @@ -1070,7 +1079,7 @@ #: uui/uiconfig/ui/setmasterpassworddlg.ui:122 msgctxt "extended_tip|password1" msgid "Enter the master password." -msgstr "" +msgstr "マスターパスワードを入力します。" #. yaAhh #: uui/uiconfig/ui/setmasterpassworddlg.ui:136 diff -Nru libreoffice-7.1.2~rc2/translations/source/jv/cui/messages.po libreoffice-7.1.3~rc2/translations/source/jv/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/jv/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/jv/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2459,1071 +2459,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ka/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ka/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ka/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ka/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:39+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2472,1071 +2472,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ka/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:03+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "გაცვლის ბუფერი; Unixასლის შექმნა Unix-ში" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/kab/cui/messages.po libreoffice-7.1.3~rc2/translations/source/kab/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/kab/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/kab/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-04-10 22:16+0000\n" "Last-Translator: Muḥend Velqasem \n" "Language-Team: Kabyle \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Tebɣiḍ ad ternuḍ izirig ddaw? Tekki ɣef %MOD1+D nq€q seqdec Tiferkit ▸ Ččar tibniqin ▸ Ččar d akesser." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Ugar n telɣut" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/kk/cui/messages.po libreoffice-7.1.3~rc2/translations/source/kk/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/kk/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/kk/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-16 10:09+0000\n" "Last-Translator: Baurzhan Muftakhidinov \n" "Language-Team: Kazakh \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563102986.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME макростар қауіпсіздігінің төрт деңгейін (төменгіден өте жоғарыға дейін) және сенімді дереккөздерді қолдайды." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 ұйым ретінде Google Summer of Code (GSoC) қатысуға өтініш бергісі келеді, көбірек біліңіз:" - -#. SNTbc -#: 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 "Мәтінге түсіндірмелерді қосуға болатынын білдіңіз бе? Ол үшін %MOD1+%MOD2+C пернелер жарлығын қолданыңыз." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Бір немесе бірнеше абзацты жылжыту керек пе? Қиып алу мен кірістіру керек емес: %MOD1+%MOD2+Бағдарша (Жоғары/Төмен) пернелер жарлығын қолданыңыз." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Алдын-ала анықталған үлгі немесе ағымдағы құжат үшін негізгі қаріптерді өзгерту үшін \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Writer ▸ Негізгі қаріптер (батыс)\" сұхбатын қолданыңыз." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "10 таңбадан ұзын болатын сөздерді табу керек пе? \"Түзету ▸ Табу және алмастыру\" ашып, \"Табу\" өрісіне \"[a-zа-я]{10,}\" енгізіңіз. \"Тұрақты өрнектер\" опциясы іске қосылғанына көз жеткізіңіз." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "CSV файлын ағымдағы эл. кестеде жаңа парақ ретінде ашу үшін, \"Парақ ▸ Парақты файлдан кірістіру\" мәзірін қолданыңыз." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Writer ішінде жуан, курсив немесе асты сызылған мәтінмен теру кезінде, теруді қалыпты мәтінмен жалғастыру үшін, %MOD1+Shift+X пернелер жарлығын қолдана аласыз (таңбалардың тікелей пішімдеуін алып тастайды)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Алмасу буфері мазмұнын пішімделмеген мәтін ретінде кірістіру үшін, %MOD1+%MOD2+Shift+V пернелер жарлығын қолданыңыз." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Нұсқамалардың сыртқы түрін \"Саймандар ▸ Нұсқамалар…\" сұхбатында баптаңыз" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "Мәтіннің бір бөлігі үшін емлені тексеру тілін өзгерту керек пе? Қалып-күй жолағындағы тілге шертіңіз, немесе, жақсырақ, стильді іске асырыңыз." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer кезекпен тұрған екі тақ (жұп) парақ арасында бос парақты кірістіре алады. Ол үшін Баспаға шығару сұхбатының %PRODUCTNAME Writer бетіндегі \"Автоматты түрде енгізілген бос парақтарды баспаға шығару\" опциясын іске қосыңыз." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Дәл орналасуды орнату керек пе? %MOD2+бағдарша пернелері объекттерді (пішіндер, суреттер, формулалар) бір пиксельге жылжытады." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Егер көмекті орнатқан болсаңыз, ол F1 пернесі бойынша қолжетімді. Болмаса, оны онлайн түрде қарауға болады:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Таңдалған ұяшықтар санын көрсету үшін, %PRODUCTNAME Calc қалып-күй жолағына оң жақпен шертіп, \"Таңдау саны\" таңдаңыз." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Екі немесе одан да көп бағандар %PRODUCTNAME Writer парағының тек бір бөлігінде орналасуы керек пе? \"Кірістіру ▸ Бөлім\" ашып, \"Бағандар\" бетінде керек баптауларды өзгертіп, бөлімге мәтінді енгізіңіз." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "%PRODUCTNAME Calc ішінде \"Деректер ▸ Статистика\" сұхбатын іріктеу, сипаттамалы статистика, дисперсияны талдау, корелляция және т.б. үшін қолданыңыз." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Деректерді бір парақтан басқа параққа алмасу буферін қолданбай-ақ көшіруге болады. Көшірілетін ауқымды таңдап, %MOD1+шерту арқылы мақсатты парақтың бетін ашыңыз және \"Парақ ▸ Ұяшықтарды толтыру ▸ Парақтарды толтыру\" қолданыңыз." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "%PRODUCTNAME сыртқы түрін \"Саймандар ▸ Опиялар ▸ Түрі ▸ Пайдаланушы интерфейсі\" арқылы өзгертуге болады." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "%PRODUCTNAME Impress ішінде суреттер қатарынан бапталатын презентацияны жасау үшін, \"Кірістіру ▸ Медиа ▸ Фотоальбом\" қолдануға болады." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Нәтижелер орнына формулаларды көрсету үшін, \"Түрі ▸ Формуланы көрсету\" қолдануға болады (немесе \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Calc ▸ Түрі ▸ Көрсету ▸ Формулалар\")." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME бүкіл әлем бойынша орналасқан жүздеген үлескерлерден тұратын достық қоғамдастықпен әзірленген. Бағдарлама жаза алмасаңыз да, бізге қосылыңыз." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Солақайсыз ба? Айналдыру жолағын сол жақтан көрсету үшін, \"Саймандар ▸ Опциялар ▸ Тіл баптаулары ▸ Тілдер ▸ Азиялық\" белгілеп, \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Writer ▸ Түрі ▸ Сызғыш ▸ Оңға тураланған\" таңдаңыз." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Бөлімдер әрқашан жаңа парақтан басталуы тиіс пе? Тақырыптама1 абзац стилін (немесе керек болған Тақырыптама стилін) түзетіп, \"Бетте\" бетінде \"Ажыраулар ▸ Кірістіру\" ішінен Бет және Алдында опцияларын таңдаңыз." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Күн/уақыт мәні – бұл таңдалған нөлдік күннен өткен күндер санын көрсететін сан; бұл сандағы бүтін бөлігі күнді, ал бөлшек бөлігі – уақытты көрсетеді (күннің өткен бөлігі), 0,5 түс уақытын көрсетеді." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del жарлығы курсордан бастап, ағымдағы сөйлемнің соңына дейін барлығын өшіреді." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "Calc ішінде көшілірген ұяшықтар айналасындағы \"маршпен жүрген құмырсқалар\" мазаңызды ала ма? Оларды тоқтату үшін Escape басыңыз; көшірілген құрама кірістіру үшін қолжетімді болып қала береді." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "%PRODUCTNAME өкілі болғыңыз келе ме? Әзірлеушілер, әкімшілер және тренинг өткізетін адамдар үшін сертификациялар бар." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Calc электрондық кестесінде тік және жатық жаймаларын араластырып қолдану үшін, жеке парақтарға әр түрлі стильдерді қолдануға болады." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Стильдер арасындағы байланысты көру үшін, Стильдер бүйір панелінде \"Иерархия бойынша\" таңдаңыз." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Writer кестелерін үйлесімді жасау үшін стильдерді қолдануға болады. Бүйір панеліндегі (F11) қолжетімді біреуін таңдаңыз, немесе \"Кесте ▸ Автопішімдеу стильдері\" қолдануға болады." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "%MOD1 пернесін гиперсілтемелерді ашу үшін қолдануға баптау керек пе? \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME ▸ Қауіпсіздік ▸ Опциялар ▸ Гиперсілтемелерді ашу үшін %MOD1+шерту керек\"." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Формуланың жекелеген элементтерінің есептеу нәтижелерін көргіңіз келсе, сәйкес элементтерді таңдап, F9 пернесін басыңыз." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "Электрондық кестеде тек ең үлкен мәндерді көрсеткіңіз келе ме? \"Деректер ▸ Автосүзгі\" мәзірін таңдап, ұяшықтағы бағдаршаға шертіп, \"Ең үлкен 10\" таңдаңыз." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Мазмұн кестесінен бет нөмірін алып тастау үшін, \"Кірістіру ▸ Құрамасының кестесі\" ашыңыз (немесе алдында таңдалған мазмұн кестесіне оң жақпен шертіп, \"Түзету\" таңдаңыз). Элементтер бетіндегі Құрылымынан бет нөмірін (#) Delete батырмасын басу арқылы өшіріңіз." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "Writer ішінде Math формуласын жылдам кірістіру үшін, ол формуланы белгілеу тілінде жазып, оны таңдаңыз, одан кейін мәтінді формулаға түрлендіру үшін \"Кірістіру ▸ Объект ▸ Формула\" таңдаңыз." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "%PRODUCTNAME ішінде жаңа сөздіктерді қосу өте оңай: олар кеңейтулер ретінде қолжетімді." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME өнімінің тасымалы нұсқасы бар. %PRODUCTNAME Portable өз қатты дискіңізге компьютердегі әкімші құқығынсыз да орнатуға болады." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer ішінде нұсқамаларды бет, бөлім, толық құжат бойынша нөмірлеуге болады. \"Саймандар ▸ Нұсқамалар\" қолданыңыз." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Writer құжатыңыз ашылғанда, курсор соңғы түзету орнында тұрған жоқ па? Пайдаланушы ақпаратын (Аты-жөні) \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME ▸ Пайдаланушы деректері\" ішінде толтырыңыз." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Дәйексөздерді басқару? Үшінші жақты кеңейтулерді қолданыңыз." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Мәнді бір орынға бірнеше парақта бір уақытта кірістіру керек пе? Парақтарды таңдаңыз: %MOD1 пернесін басулы ұстап, мәнді енгізу алдында керек парақтар беттеріне басыңыз." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Тышқанның орта батырмасының әрекетін \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME ▸ Түрі ▸ Тышқанның орта батырмасы\" арқылы баптауға болады." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Екі кітап бетін бір альбомдық бетте баспаға шығару керек пе (A4 пішімін A5 дейін кішірейту)? \"Файл ▸ Баспаға шығару\" сұхбатында \"Бір беттегі парақтар саны\" мәнін 2 етіп орнатыңыз." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Жиі қолданатын мәтіндерді Автомәтін ретінде көрсетіңіз. Оларды кез келген Writer құжатына олардың аты, жарлығы немесе саймандар панелі арқылы кірістіруге болады." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 есептеулері солдан оңға емес, Жақша - Дәреже - Көбейту - Бөлу - Қосу - Алу ретін қолданады." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "%PRODUCTNAME құжаттамасын және тегін пайдаланушы нұсқаулықтарын келесі жерден алыңыз:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Writer ішінде жазылған есептемені презентация ретінде көрсету керек пе? \"Файл ▸ Жіберу ▸ Құрылымды презентацияға\" мәзірі құжат тақырыптамалары құрылымынан автоматты түрде презентацияны жасайды." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Электрондық кестеде гиперсілтеме көрінісін басқару керек пе? Оларды HYPERLINK функциясы көмегімен кірістіріңіз." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Calc ішінде әр парақ өз масштабымен болу үшін, \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Calc ▸ Түрі ▸ Масштаб\" сұхбатында \"Парақтарды синхрондау\" жалаушасын алып тастаңыз." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Calc парақтарының беттері үшін әр түрлі түстерді орнату үшін ол бетке оң жақпен шертіңіз, немесе \"Парақ ▸ Жарлық түсі\" қолданыңыз." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Формуладағы қолданылатын ұяшықтарды табыңыз, әсер ететін (Shift+F9) немесе тәуелді (Shift+F5) (немесе \"Саймандар ▸ Тәуелділіктер\" қолданыңыз). Әр сәйкестік үшін тәуелділік тізмінде бір қадамға өте аласыз." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Формулаларды бір қадамда кірістіріп, нөмірлеңіз: \"fn\" теріп, F3 басыңыз. Нәтижесінде құжатқа формула мен оның реттік нөмірі бар бір жолды кесте кірістірілетін болады." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Impress презентацияларын қашықтан басқару үшін, Android немесе iPhone смартфонын қолдануға болады." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Ағымдағы айда неше күн бар екенін білгіңіз келе ме? DAYSINMONTH(TODAY()) функциясын қолданыңыз." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Кесте ұяшығында сан ### ретінде көрсетіліп тұр ма? Баған сан цифрларының барлығын көрсету үшін тым тар, оны кеңірек етіңіз." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Формулалар ұяшықтарының массивті параллельді есептеуді \"Саймандар ▸ Опциялар ▸ OpenCL\" сұхбаты көмегімен іске қосыңыз." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Әдемі блок-сұлбаларды жасау үшін, Draw/Impress ішінде \"Сурет салу\" панеліндегі \"Байланыстырғыш сызық\" сайманын қолдануға болады." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Сіздің ақшалай көмегіңіз біздің әлемдік қоғамдастықты қолдауға көмектеседі." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Күнге N айды қосқыңыз келе ме? \"=EDATE(басты күн;айлар саны)\" функциясын қолданыңыз." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Деректері бар және жан-жақтан бос жолмен және бағанмен қоршалған ұяшықтардың тұтас ауқымын таңдау үшін, %MOD1+* (цифрлық клавиатура) қолданыңыз." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Формулаларды CSV ішіне экспорттау керек пе? \"Файл ▸ Қалайша сақтау\" мәзірі, \"CSV мәтіні\" түрін таңдап, \"Сүзгі баптауларын түзету\" жалаушасын белгілеп, келесі сұхбатта \"Есептелген мәндер орнына ұяшықтар формулаларын сақтау\" опциясын белгілеңіз." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Презентация консолі - бұл %PRODUCTNAME Impress өнімімен жұмыс жасаудың тамаша құралы (екі жалғанған дисплей бар кезде). Сіз оны тексердіңіз бе?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Құжаттарыңызды PDF пішіміне бір шертумен саймандар панеліндегі PDF таңбашасына шерту арқылы түрлендіріңіз." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Ұяшықтардың үлкен ауқымын айналдырусыз таңдағыңыз келе ме? \"Парақ аймағы\" өрісіне (Формулаларды енгізу өрісінің сол жағында) ауқым адресін енгізіп (мыс. А1:А1000), Enter басыңыз." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Жарамды командалық жол параметрлерін білгіңіз келе ме? Терминалда soffice командасын --help немесе -h немесе -? аргументтерімен іске қосыңыз" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Кесте ұяшықтарындағы мәтін бағдарын \"Кесте ▸ Қасиеттері… ▸ Бетте ▸ Мәтін бағыты\" көмегімен өзгертуге болады." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "%PRODUCTNAME Draw ішінде сызғыштардың 0/0 координата нүктесін өзгерту үшін, жоғарғы сол жақтағы екі сызғыштың қиылысын жұмыс аймағына тартып апарыңыз." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Calc ішінде бағанды басқа екі баған арасына бір қадамда жылжыту керек пе? Тақырыптамаға, одан кейін бағандағы ұяшыққа шертіп, тышқан батырмасын мен %MOD2 пернесін басулы ұстап тұрып, бағанды керек жерге жылжытыңыз." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Сәйкестік файлын қолданып, жазбаларды әліпби ретімен автоматты түрде белгілеңіз." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Draw/Impress ішінде объекттерді дәл орналастыру үшін \"Пішімі ▸ Туралау\" қолданыңыз: Бір объект таңдалған болса, бет ортасымен тураланады, немесе бірнеше объект үшін де сәйкесінде жұмыс жасайды." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Writer құжатында элементтерді орналастыру үшін табуляцияны қолданбаңыз. Нені істеуге тырысқаныңызға байланысты, шекарасыз кесте жақсы таңдау бола алады." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME объекттер кірістірілген кезде автоматты түрде нөмірленген белгіні қоса алады. \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Writer ▸ Автоатауы\" сұхбатын қараңыз." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "%PRODUCTNAME көмегімен эл. хаттарды тарату үшін өз Google Mail тіркелгіңізді қолдана аласыз. \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Writer ▸ Эл. поштаны тарату\" сұхбаты өрістерін толтырыңыз." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "Basic макростарымен жұмыс жасауды бастағыңыз келе ме? \"Саймандар ▸ Макрос ▸ Макросты түзету\" ішіндегі мысалдарды қараңыз." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Writer ішінде Тақырыптама стилін іске асыру үшін пернетақта жарлықтарын қолданыңыз: %MOD1+1 Тақырыптама 1 стилін, %MOD1+2 Тақырыптама 2 стилін іске асырады және т.с.с." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Үлкен құжаттарда жоғалып кетпеңіз. Құрамасын қарау үшін Навигаторды (F5) қолданыңыз." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "\"Түзету ▸ Табу және алмастыру\" сұхбаты арқылы арнайы таңбаларды тікелей кірістіре аласыз: енгізу өрістеріне оң жақпен шертіңіз, немесе Shift+%MOD1+S басыңыз." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "Draw ішінде объектті көріп, бірақ баспаға шығармауды қалайсыз ба? Оны \"Баспаға шығарылатын\" қасиеті орнатылмаған қабатта салыңыз (бетке оң жақпен шертіп, \"Қабатты өзгерту\" таңдаңыз)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Құжатыңызға ағымдағы күнді кірістіру үшін, \"Кірістіру ▸ Өріс ▸ Күн\" таңдаңыз." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Writer құжатыңызда суреттер өте көп пе? Жұмысты үдету үшін \"Түрі ▸ Суреттер және диаграммалар\" сөндіріңіз." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "Слайдтар бойынша навигацияны оңайлату үшін, Impress ішіндегі слайдтар атауларын өзгертіңіз." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "\"Бөлімдерді нөмірлеу\" сұхбаты бөлім нөмірі алдындағы мәтіннің көрсетілуін баптауға мүмкіндік береді. Мысалы, \"Бөлім 1\" алу үшін, \"Бөлім \" енгізіңіз" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Writer кестесін транспонирлеу керек пе? Оны Calc ішіне көшіріп алып, тағы көшіріп, \"Арнайы кірістіру... ▸ Транспонирлеу\" арқылы кестені транспонирлеңіз. Дайын кестені көшіріп алып, Writer ішіне \"Арнайы кірістіру ▸ Мәтіннің бай пішімдеуі (RTF)\" арқылы кірістіріңіз." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Сіз бар болып тұрған PDF файлдарына қолтаңба қойып, олардың қолтаңбаларын тексере аласыз." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Бір құжат негізінде басқа құжатты жиі жасайсыз ба? Үлгіні қолдануды қарастырыңыз." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Шартты пішімдеуі бар ұяшықтарды табу үшін, Calc ішінде \"Пішімі ▸ Шартты пішімдеу ▸ Басқару\" сұхбатын қолданыңыз." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "Экранда да, баспаға шығарғанда да бірдей жайманы қолданғыңыз келе ме? \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Calc ▸ Жалпы ▸ Мәтін пішімі үшін принтер баптауларын қолдану\" опциясын тексеріңіз." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer сізге қор көшірмелерді жасауға көмектеседі: \"Файл ▸ Көшірмесін сақтау\" арқылы сіз тұпнұсқамен жұмысты жасауды жалғастыра отырып, құжат көшірмесін жасай аласыз." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Стильді басқа стиль негізінде жасаған кезде, пайыздық немесе пункт шамасымен мәнді енгізуге болады (мыс. 110% немесе -2 пт немесе +5 пт)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "Бірнеше MS Office құжатын OpenDocument пішіміне бірден түрлендіру үшін, \"Файл ▸ Шебер ▸ Құжаттар түрлендірушісі\" шеберін қолданыңыз." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Writer кестесін жылжыту керек пе? Алдымен \"Кесте ▸ Таңдау ▸ Кесте\", одан кейін \"Кірістіру ▸ Фрейм ▸ Фрейм...\" қолданып, керек жерге жылжытыңыз." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "PDF файлы немесе веб-парақтан мәтінді құжаттарға кірістіру мәселелері бар ма? Пішімделмеген мәтін ретінде кірістіріп көріңіз (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Calc ішінде деректер жиынының ең үлкен және ең кіші мәндерін қоспай, орташа мәнін есептеу үшін TRIMMEAN() қолданыңыз." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "VLOOKUP Calc функциясының 4-ші міндетті емес параметрі бірінші баған сұрыпталған ба, соны көрсетеді. Олай болмаса, FALSE немесе нөлді енгізіңіз." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "Ағымдағы Writer құжатынан құрамдас құжатты жасау керек пе? \"Файл ▸ Жіберу ▸ Құрамдас құжатты жасау\" (ішкі құжаттар ағымдағы құжаттың құрылымына негізделіп жасалады)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Calc ішінен баспаға шығарылған бетте ұяшықтарды ортасымен туралау керек пе? \"Пішімі ▸ Бет ▸ Бет ▸ Жайма баптаулары ▸ Кестені туралау\" қолданыңыз." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Writer кестесіне негізделген диаграммаларды жасау үшін, кесте ішіне шертіп, \"Кірістіру ▸ Диаграмма\" таңдаңыз." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Қандай баспаға шығарылмайтын таңбаларды көрсетуді таңдау үшін, \"Саймандар ▸ Опциялар ▸ %PRODUCTNAME Writer ▸ Пішімдеу белгілері\" сұхбатының Пішімдеуін көрсету бетінде керек опцияларды жалаушалармен белгілеңіз." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Белгілі бір бетке оның нөмірі бойынша өту керек пе? Қалып-күй жолағының сол жағындағы жазбаға шертіңіз, немесе \"Түзету ▸ Бетке өту\" қолданыңыз немесе %MOD1+G басыңыз." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME 150-ден астам тілді қолдайды." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "Writer құжатында жуанмен белгіленген мәтінді табу керек пе? \"Түзету ▸ Табу және алмастыру ▸ Басқа опциялар ▸ Атрибуттар ▸ Жартылай жуан\" қолданыңыз." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Абзацтар немесе кесте жолдарын әліпби немесе сан ретінде \"Саймандар ▸ Сұрыптау\" арқылы сұрыптауға болады." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Абзацты бөлімге дейін (кейін) кірістіру үшін, бөлімнің басында (соңында) %MOD2+Enter басыңыз." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME ішінде тамаша көрінетін құжаттарды жасауға арналған үлгілерді басқару орталығы бар — оны дәл қазір тексеріңіз." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calc көмегімен несиені өтеуді есептеңіз: мыс. PMT(2%/12;36;2500) формуласы, осында 2%/12 - жылдық пайыздық мөлшерлеме, 36 - төлемдер саны, 2500 - несие өлшемі, ай сайынғы төлемді есептеп береді." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Calc ішінде VLOOKUP функциясымен керек нәрсені таба алмадыңыз ба? INDEX және MATCH көмегімен барлығын жасауға болады!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Жасырын A бағанын көрсету керек пе? B бағанындағы ұяшыққа шертіп, сол жақ тышқан батырмасын басып, тышқанды солға жылжытыңыз, сосын батырманы жіберіңіз. Одан кейін оны \"Пішімі ▸ Бағандар ▸ Көрсету\" арқылы іске қосыңыз." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Writer ішінде бет нөмірін өзгерту үшін, бірінші абзацтың қасиеттерін ашып, \"Бетте\" бетінде \"Ажыраулар ▸ Кірістіру\" таңдаңыз, және нөмірді енгізіңіз." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME өнімін кез келген браузерде rollApp көмегімен орындаңыз." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Calc ішінде біртүрлі қате коды кездесті ме, мыс. Err: және сан? Бұл парақ анықтамасын береді:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Құрамасының кестесінен басқа, %PRODUCTNAME әліпбилік, суреттер, кестелер, объекттер, библиографиялық және пайдаланушы анықтаған нұсқағыштарын жасай алады." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Ұяшықтың пайдаланушы стилін өзгерту немесе өшіру мүмкін емес пе? Барлық парақтарды тексеріңіз, ешқайсысы қорғалмаған болуы тиіс." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Ұяшық басқа ұяшықтардағы формулаларды қолданыла ма, соны білгіңіз келе ме? \"Саймандар ▸ Тәуелділіктер ▸ Тәуелді ұяшықтар\" қолданыңыз (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Курсор үстіндегі жолды қосарлау керек пе? %MOD1+D басыңыз, немесе \"Парақ ▸ Толтыру ▸ Төменге толтыру\" қолданыңыз." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Бірнеше парақта іздеу үшін, іздеуді бастау алдында ол парақтарды таңдаңыз." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Calc ішінен Impress презентация слайдына қалыпты режимде ұяшықтарды тартып апару кестені жасайды, ал, Құрылымы режимінде - әр ұяшық құрылымда жолды жасайды." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME сізге Writer ішінде екі немесе одан да көп бос аралықты енгізбеуге көмектеседі. \"Саймандар ▸ Автотүзету ▸ Автотүзету опциялары ▸ Опциялар\" сұхбатында \"Қос бос аралықтарды елемеу\" опциясын белгілеңіз." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Calc ішінде ұяшыққа мәнді енгізгеннен кейін курсор оң жаққа жылжуды қалайсыз ба? Enter пернесінің орнына Tab пернесін қолданыңыз." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "%PRODUCTNAME жаңа нұсқаларында жаңа мүмкіндіктер, ақаулықтар және қауіпсіздік түзетулері бар. Ағымдағы нұсқаны қолданыңыз!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Жаңа XSLT немесе XML сүзгілерін әзірлеп отырсыз ба?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Көмегі" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Көбірек ақпарат" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Бұл әрекетті қазір жөнелту..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Осы күннің кеңесі: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/kl/cui/messages.po libreoffice-7.1.3~rc2/translations/source/kl/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/kl/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/kl/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/km/cui/messages.po libreoffice-7.1.3~rc2/translations/source/km/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/km/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/km/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2469,1071 +2469,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/km/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/km/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/km/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/km/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: 01\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-08-09 08:19+0000\n" "Last-Translator: serval2412 \n" "Language-Team: Khmer \n" @@ -15380,33 +15380,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "ពុម្ព​អក្សរ​ភ្លឹបភ្លែត​ៗ ពុម្ពអក្សរ​មានពន្លឺ" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "​​​​ភ្លឹប​ភ្លែតៗ" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "ធ្វើឲ្យ​តួអក្សរ​ដែល​បាន​ជ្រើស​ភ្លឹបភ្លែត។ អ្នក​មិន​អាច​ប្ដូរ​ប្រេកង់​ភ្លឹបភ្លែត​បាន​ទេ។" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/kmr-Latn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/kmr-Latn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/kmr-Latn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/kmr-Latn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Kurmanji \n" @@ -2483,1071 +2483,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/kn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/kn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/kn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/kn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-07-09 15:34+0000\n" "Last-Translator: yogiks \n" "Language-Team: Kannada \n" @@ -2467,1071 +2467,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ko/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ko/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ko/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ko/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-09-13 05:25+0000\n" "Last-Translator: DaeHyun Sung(성대현, 成大鉉) \n" "Language-Team: Korean \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "안드로이드나 아이폰을 이용하여 임프레스 프리젠테이션을 원격으로 제어할 수 있습니다." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "기존의 PDF파일에 서명할 수 있으며, 서명을 검증할 수 있습니다." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ko/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-08-09 08:12+0000\n" "Last-Translator: serval2412 \n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "깜박이는 글꼴 점멸하는 글꼴" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "점멸" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/kok/cui/messages.po libreoffice-7.1.3~rc2/translations/source/kok/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/kok/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/kok/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:40+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2498,1071 +2498,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ks/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ks/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ks/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ks/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2486,1071 +2486,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ky/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ky/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ky/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ky/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2433,1071 +2433,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/lb/cui/messages.po libreoffice-7.1.3~rc2/translations/source/lb/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/lb/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lb/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2453,1071 +2453,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/lo/connectivity/messages.po libreoffice-7.1.3~rc2/translations/source/lo/connectivity/messages.po --- libreoffice-7.1.2~rc2/translations/source/lo/connectivity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lo/connectivity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-03-10 13:36+0100\n" -"PO-Revision-Date: 2019-12-06 10:25+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Saikeo \n" -"Language-Team: Lao \n" +"Language-Team: Lao \n" "Language: lo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1535975984.000000\n" #. 9LXDp @@ -39,40 +39,37 @@ #: connectivity/inc/strings.hrc:29 msgctxt "STR_STMT_TYPE_NOT_SUPPORTED" msgid "This statement type not supported by this database driver." -msgstr "" +msgstr "ໄດຣເວີຂອງຖານຂໍ້ມູນບໍ່ສະຫນັບສະຫນູນຄຳສັ່ງຊະນິດນີ້." #. KodDj #: connectivity/inc/strings.hrc:30 -#, fuzzy msgctxt "STR_UNSPECIFIED_ERROR" msgid "An unknown error occurred." -msgstr "ຂໍ້ຜິດພາດທີ່ບໍຮູ້ເກີດຂື້ນ." +msgstr "ເກີດຂໍ້ຜິດພາດທີ່ບໍຮູ້ສາເຫດ." #. 2CZNZ #: connectivity/inc/strings.hrc:31 -#, fuzzy msgctxt "STR_ERROR_REFRESH_ROW" msgid "An error occurred while refreshing the current row." -msgstr "ເກີດຂໍ້ຜິດພາດໃນຂະນະກຳລັງສ້າງປະຕິທິນ." +msgstr "ເກີດຂໍ້ຜິດພາດຂື້ນໃນຂະນະທີ່ກຳລັງລີເຟຣສແຖວປະຈຸບັນ." #. DJhQp #: connectivity/inc/strings.hrc:32 -#, fuzzy msgctxt "STR_ERROR_GET_ROW" msgid "An error occurred while getting the current row." -msgstr "ເກີດຂໍ້ຜິດພາດໃນຂະນະກຳລັງສ້າງປະຕິທິນ." +msgstr "ເກີດຂໍ້ຜິດພາດຂື້ນໃນຂະນະທີ່ກຳລັງເອີ້ນໃຊ້ແຖວປະຈຸບັນ." #. s9ves #: connectivity/inc/strings.hrc:33 msgctxt "STR_QUERY_INVALID_IS_NULL_COLUMN" msgid "The query can not be executed. The 'IS NULL' can only be used with a column name." -msgstr "" +msgstr "ບໍ່ສາມາດ query ໄດ້. 'IS NULL' ສາມາດນຳໃຊ້ເປັນຊື່ຖັນເທົ່ານັ້ນ." #. kLhAy #: connectivity/inc/strings.hrc:34 msgctxt "STR_ILLEGAL_MOVEMENT" msgid "Illegal cursor movement occurred." -msgstr "" +msgstr "ເກີດການເຄື່ອນທີ່ບໍ່ຖືກຕ້ອງຂອງຕົວຊີ້ຕຳແຫນ່ງ." #. vGtCJ #: connectivity/inc/strings.hrc:35 diff -Nru libreoffice-7.1.2~rc2/translations/source/lo/cui/messages.po libreoffice-7.1.3~rc2/translations/source/lo/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/lo/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lo/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2475,1071 +2475,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/lo/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/lo/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/lo/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lo/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/lt/cui/messages.po libreoffice-7.1.3~rc2/translations/source/lt/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/lt/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lt/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-12-28 16:36+0000\n" "Last-Translator: Modestas Rimkus \n" "Language-Team: Lithuanian \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "„%PRODUCTNAME“ programoje galima nurodyti vieną iš keturių saugumo lygmenų (nuo žemo iki labai aukšto), taip pat patikimus šaltinius." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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“ organizacija ketina dalyvauti „Google Summer of Code“ programoje (GSoC). Žr.:" - -#. SNTbc -#: 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 "Komentarus galima priskirti teksto fragmentui – paspauskite klavišus „%MOD1+%MOD2+C“." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Reikia perkelti vieną ar daugiau pastraipų? Nebūtina iškirpti, o po to įdėti. Naudokite klavišų kombinaciją „%MOD1+%MOD2+Rodyklė žemyn (aukštyn)“." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Pagrindinius įrašyto šablono ar veikiamojo dokumento šriftus galima pakeisti lange „Priemonės → Parinktys → „%PRODUCTNAME“ tekstų rengyklė → Pagrindiniai šriftai“." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Norite rasti žodžius, ilgesnius nei 10 rašmenų? Pasirinkite „Taisa → Ieškoti ir keisti“, laukelyje „Ko ieškoti“ įveskite „[a-ž]{10,}“, parinkčių grupėje „Kitos parinktys“ pažymėkite „Reguliarieji reiškiniai“." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "CSV failą galima atverti kaip naują lakštą veikiamajame skaičiuoklės dokumente – pasirinkite „Lakštas → Įterpti lakštą iš failo“." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Jei teksto rengykle renkate tekstą pusjuodžiu šriftu, kursyvu, ar pabrauktą, numatytuosius šrifto požymius galima atstatyti paspaudus klavišus „%MOD1+Lyg2+X“ (atsisakoma tiesioginio rašmenų formatavimo)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Klavišų kombinacija „%MOD1+%MOD2+Lyg2+V“ iškarpinės turinį galima įterpti kaip neformatuotą tekstą." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Išnašų ir galinių išnašų nuostatas galima parinkti lange „Priemonės → Išnašos…“" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Pasirinkus „Demonstravimas → Aprašyti pateikčių demonstravimai“ bus galima keisti skaidrių rodymo tvarką bei atrinkti demonstruotinas skaidres pagal klausytojų poreikius." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Norite pakeisti rašybos tikrinimo kalbą daliai teksto? Spustelėkite būsenos juostos teksto kalbos srityje arba dar geriau – pritaikykite stilių." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Spausdinant teksto dokumentą tarp dviejų paeiliui einančių nelyginių (lyginių) puslapių galima įterpti tuščią puslapį. Spausdinimo dialogo lango kortelėje „%PRODUCTNAME Writer“ pažymėkite parinktį „Spausdinti automatiškai įterptus tuščius puslapius“." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Nenorite spausdinti visų stulpelių? Paslėpkite arba sugrupuokite nereikalingus." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Jei norite taisyti automatinę pateiktį, atverkite ją ir, kai pateiktis pasileis, spustelėkite dešiniuoju pelės klavišu ir pasirinkite komandą „Taisyti“." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Norite tiksliai nustatyti objekto vietą? Laikydami nuspaustą klavišą „%MOD2“ spauskite rodyklių klavišus – objektas (figūra, paveikslas, formulė) bus judinamas per vieną tašką." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Jei yra įdiegtas žinynas skaitymui neprisijungus, jį atversite paspaudę klavišą F1. Jei žinynas neįdiegtas, skaitykite jį internete:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "„%PRODUCTNAME“ skaičiuoklės būsenos juostoje spustelėkite dešiniuoju pelės klavišu ir pasirinkite „Atrankų kiekis“, jei norite sužinoti pažymėtų langelių skaičių." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Norite dviejų ar daugiau skilčių tik dalyje „%PRODUCTNAME“ teksto dokumento puslapio? Pasirinkite „Įterpimas → Sekcija“, kortelėje „Skiltys“ nustatykite norimą skilčių skaičių, įterpkite sekciją ir rinkite joje tekstą." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "„%PRODUCTNAME“ skaičiuoklės meniu „Duomenys → Statistika“ komandomis atveriami langai imties, aprašomosios statistikos, dispersinės analizės, koreliacijos ir kitoms funkcijoms bei jų parinktims aprašyti." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Duomenis iš vieno lakšto į kitą galima nukopijuoti nenaudojant iškarpinės. Pažymėkite kopijuotinus langelius, laikydami nuspaustą klavišą „%MOD1“ spustelėkite paskirties lakšto ąselę, tada pasirinkite „Lakštas → Užpildyti langelius → Užpildyti lakštus“." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "„%PRODUCTNAME“ išvaizdą galima pakeisti lango „Priemonės → Parinktys → Rodymas“ parinkčių grupėje „Naudotojo sąsaja“." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "„%PRODUCTNAME“ pateikčių rengyklėje pasirinkite „Įterpimas → Medija → Nuotraukų albumas“ – sukursite pateiktį visoms pasirinktoms nuotraukoms demonstruoti." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Skaičiuoklės langeliuose vietoje formulės rezultato galima rodyti pačią formulę. Pasirinkite „Rodymas → Rodyti formulę“ (arba „Priemonės → Parinktys → „%PRODUCTNAME“ skaičiuoklė → Rodymas“, grupėje „Rodoma“ pažymėkite „Formulės“)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "„%PRODUCTNAME“ programą kuria draugiška šimtų bendradarbių iš viso pasaulio bendruomenė. Prie jos galite prisidėti ir jūs – ir ne tik programuodami." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Esate kairiarankis? Lange „Priemonės → Parinktys → Kalbos nuostatos → Kalba“ įgalinkite parinktį „Azijos“, tuomet lango „Priemonės → Parinktys → „%PRODUCTNAME“ tekstų rengyklė → Rodymas“ parinkčių grupėje „Rodymas“ pažymėkite parinktį „Rodyti dešinėje“. Slankjuostė tuomet bus rodoma kairėje pusėje." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Norite, kad skyriaus pavadinimas visada būtų puslapio pradžioje? Pastraipos stiliaus „Antraštė 1“ savybių lango kortelėje „Teksto skaidymas“, parinkčių grupėje „Lūžiai“ pažymėkite parinktį „Įterpti lūžį“ ir nustatykite tipą „Puslapio“ bei padėtį „Prieš žymeklį“." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datos ir laiko reikšmė yra dienų skaičius nuo tam tikros pradinės dienos. Šio skaičiaus sveikoji dalis žymi datą, o trupmeninė dalis – laiką (praėjusią dienos dalį), kur 0,5 reiškia vidurdienį." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Klavišų kombinacija „Lyg2+%MOD1+Šal“ pašalinamas tekstas nuo žymeklio iki sakinio pabaigos." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Formulėse galima naudoti stulpelių arba eilučių antraštes. Pavyzdžiui, jei yra stulpeliai „Laikas“ ir „KM“, galima naudoti formulę „=Laikas/KM“ minutėms kilometrui apskaičiuoti." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Aplink skaičiuoklės langelį bėgančių „skruzdėlių“ rėmelis atrodo įkyriai? Paspauskite grįžties klavišą – nukopijuotas turinys vis tiek liks iškarpinėje." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Norėtumėte tapti „%PRODUCTNAME“ ambasadoriumi? Bendruomenė siūlo sertifikavimo programas programuotojams, administratoriams ir mokytojams." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Skaičiuoklės dokumento lakštai gali būti skirtingų padėčių – statūs ir gulsti: tam lakštams pritaikykite skirtingus puslapio stilius." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Mygtukų juostoje spustelėjus specialiųjų rašmenų įterpimo mygtuką bus atvertas papildomas meniu reikalingiausiems ir vėliausiai naudotiems rašmenims sparčiai įterpti." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Kad stilių polangyje matytumėte sąryšius tarp stilių, polangio apačioje iš sąrašo pasirinkite stilių hierarchijos rodinį." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Lentelėms dokumente suvienodinti patogu naudoti stilius. Stilių galima pritaikyti iš stilių polangio (F11) arba lange „Lentelė → Automatinio formatavimo stiliai“." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Nenorite, jog reikėtų spausti klavišą „%MOD1“, kad sektumėte saitu? Atverkite langą „Priemonės → Parinktys → %PRODUCTNAME → Saugumas“, spustelėkite mygtuką „Parinktys“ ir išjunkite parinktį „Spustelint saitą reikalauti nuspausti „%MOD1“ klavišą, jei norima sekti saitu“." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Jei norite pamatyti atskirų formulės elementų skaičiavimo rezultatą, pažymėkite norimus elementus ir paspauskite klavišą F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Skaičiuoklės langelių apsaugą įgalinti galima lango „Formatas → Langeliai“ kortelėje „Langelio apsauga“. Jei norite nuo įterpimo, šalinimo, pervadinimo, perkėlimo ar kopijavimo apsaugoti lakštus, pasirinkite „Priemonės → Apsaugoti lakštą“." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Norite rašyti tekstą palei kreivę? Nubrėžkite kreivę, dukart ją spustelėkite, surinkite tekstą ir parinkite teksto nuostatas lange „Formatas → Teksto langelis arba figūra → Dekoratyvusis tekstas“." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Skaičiuoklės dokumente norite rodyti tik didžiausias reikšmes? Pasirinkite „Duomenys → Automatinis filtras“, tada iš išskleidžiamojo meniu pasirinkite „Top 10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Jei iš turinio norite pašalinti puslapio numerius, pasirinkite „Įterpimas → Turinys ir rodyklė → Turinys, rodyklė arba bibliografija“ (arba spustelėkite jau įterptą turinį ar rodyklę dešiniuoju pelės klavišu ir pasirinkite „Taisyti rodyklę“) ir kortelėje „Įrašai“ iš struktūros laukelio pašalinkite puslapio numerio elementą (PN)." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Žvalgiklyje galima pažymėti ir perkelti aukštyn arba žemyn dokumento skyrių antraštes. Kartu su antrašte į naują vietą dokumente bus perkeltas ir pats skyriaus tekstas." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Formulės objektą į teksto dokumentą galima įterpti sparčiuoju būdu: surinkite formulę, pažymėkite ją ir pasirinkite „Įterpimas → Objektas → Formulė“." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "„%PRODUCTNAME“ programoje naujus žodynus įdiegti labai paprasta – jie pateikiami kaip programos plėtiniai." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "„%PRODUCTNAME“ turi mobilumo nevaržančią perkeliamą programos atmainą „%PRODUCTNAME Portable“. Ją net be administratoriaus teisių galima įdiegti ir į kompiuterio diską." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Tekstų rengyklėje numeravimą galima taikyti vieno puslapio, vieno skyriaus ar viso dokumento išnašoms. Pasirinkite „Priemonės → Išnašos“ ir kortelės „Išnašos“ parinkčių grupėje „Automatinis numeravimas“ parinkite norimas reikšmes." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Kad atvėrus teksto dokumentą žymeklis būtų toje pačioje vietoje, kur jis buvo tą dokumentą įrašant, lange „Priemonės → Parinktys → %PRODUCTNAME → Naudotojo duomenys“ turi būti įvestas naudotojo vardas ir pavardė." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Reikia daugiau galimybių citatoms tvarkyti? Naudokite trečiųjų šalių programos plėtinius." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Norite įterpti reikšmę toje pačioje vietoje keliuose skaičiuoklės lakštuose? Prieš įvesdami reikšmę pažymėkite visus norimus lakštus: laikykite nuspaustą klavišą „%MOD1“ ir spustelėkite lakštų ąseles." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Norite paslėpti dalį dokumento teksto? Pažymėkite norimą tekstą, pasirinkite „Įterpimas → Sekcija“ ir pažymėkite parinktį „Slėpti“." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Viduriniojo pelės klavišo atliekamą funkciją galima pakeisti lange „Priemonės → Parinktys → %PRODUCTNAME → Rodymas“ nustačius norimą parinkties „Vidurinis pelės klavišas“ reikšmę." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Norite išspausdinti du stačius puslapius ant vienos gulsčio lapo pusės (sumažinus formatą iš A4 į A5)? Pasirinkite „Failas → Spausdinti“ ir pakeiskite parinkties „Puslapių lape“ reikšmę į 2." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Į dokumentą įterptų žymelių sąrašą sparčiai galima pamatyti dešiniuoju pelės klavišu spustelėjus puslapio numerio srityje būsenos juostoje (dokumento lango apatiniame kairiajame kampe)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Objektą dokumento fone pažymėsite iš braižymo priemonių juostos aktyvinę atrankos priemonę ir apvedę norimo pažymėti objekto plotą." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Dažnai naudojamas frazes galima įrašyti kaip autotekstą. Tuomet visą frazę įterpti bus galima surinkus jos pavadinimą ar trumpinį, arba spustelėjus mygtuką." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Jei norite, kad garsas ištisai grotų viso pateikties demonstravimo metu, priskirkite garsą pirmajam skaidrių perėjimui ir nespauskite mygtuko „Taikyti perėjimą visoms skaidrėms“." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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“ programoje skaičiavimai atliekami ne tiesiog iš kairės į dešinę, bet pagal šią tvarką: veiksmai skliaustuose; laipsniai ir eksponentės; daugyba; dalyba; sudėtis; atimtis." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "„%PRODUCTNAME“ programos dokumentaciją ir nemokamus naudotojo vadovus galima atsisiųsti iš tinklalapio:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Norite pašalinti visus rašmenis < ir >, bet palikti tarp jų esantį tekstą? Pasirinktie „Taisa → Ieškoti ir keisti“, laukelyje „Ko ieškoti“ įveskite „[<|>]“, laukelį „Kuo pakeisti“ palikite tuščią ir grupėje „Kitos parinktys“ pažymėkite „Reguliarieji reiškiniai“." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Reikia pristatyti tekstų rengykle „Writer“ parengtą ataskaitą? Pasirinkę „Failas→ Siųsti → Antraštes į pateiktį“ iš teksto dokumento antraščių sukursite pateikties dokumentą." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Skaičiuoklės dokumente norite pakeisti matomą hipersaito tekstą? Hipersaitui įterpti naudokite funkciją HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Jei norite atskiruose skaičiuoklės lakštuose nustatyti skirtingą mastelį, lango „Priemonės → Parinktys → „%PRODUCTNAME“ skaičiuoklė → Rodymas“ parinkčių grupėje „Mastelis“ panaikinkite parinkties „Vienodas visuose lakštuose“ žymėjimą." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Kiekvieno lakšto ąselei galima parinkti spalvą: spustelėkite ąselę dešiniuoju pelės klavišu arba pasirinkite „Lakštas → Lakšto ąselės spalva“." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Atsekite formulėse naudojamus langelius, argumentus (Lyg2+F9) ar priklausomybes (Lyg2+F5) (arba pasirinkite komandą iš meniu „Priemonės → Sekiklis“). Kaskart įvykdžius komandą sekoje pereinama vienu žingsniu." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Formules įterpti ir sunumeruoti galima vienu veiksmu: surinkite „fn“, tada paspauskite klavišą „F3“. Bus įterptas autotekstas su formule ir jos eilės numeriu." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Paveikslų rodyklę galima sukurti ne tik iš pavadinimų, matomų šalia paveikslų, bet ir iš objektų pavadinimų." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "„Impress“ pateikties demonstravimą galima nuotoliniu būdu valdyti „Android“ ar „iPhone“ telefonais." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Norite žinote, kiek dienų yra einamajame mėnesyje? Naudokite DAYSINMONTH(TODAY()) funkciją." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Jei vietoj skaičių skaičiuoklės dokumente rodomi ženklai ###, tai reiškia, kad stulpelis yra per siauras visiems skaitmenims parodyti." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Jei norite įgalinti spartų lygiagretųjį langelių formulių skaičiavimą, tai galima padaryti lange „Priemonės → Parinktys → LibreOffice → „OpenCL“ parinktys" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Grafikos ar pateikčių rengyklėje naudojant jungiamąsias linijas galima sukurti blokines schemas, kurias, jei reikia, galima nukopijuoti ir įdėti į teksto dokumentą." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Jūsų aukos padeda išlaikyti programos kūrėjų bendruomenę visame pasaulyje." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Prie datos reikia pridėti x mėnesių? Naudokite funkciją =EDATE(data;mėnesiai)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Jei norite pažymėti vientisą langelių, kuriuose yra duomenų ir kuriuos juosia tuščia eilutė ir stulpeliai, bloką, paspauskite klavišus %MOD1+* (klaviatūros skaitmenų srityje)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Jūsų įvedamas datos formatas neatpažįstamas? Pasirinkite „Priemonės → Parinktys → Kalbos nuostatos → Kalba“ ir laukelyje „Datos atpažinimo šablonai“ nurodykite norimą atpažinti datos formatą." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "CSV eksporto metu norite įrašyti langelių formules, o ne reikšmes? Pasirinkite „Failas → Įrašyti kaip“, parinkite CSV failo tipą, pažymėkite parinktį „Taisyti filtro nuostatas“, o kitame dialogo lange pažymėkite „Įrašyti langelių formules vietoj apskaičiuotų reikšmių“." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Pranešėjo pultas itin palengvina „%PRODUCTNAME Impress“ pateikties demonstravimą. Pabandykite." #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Jei norite pašalinti keletą komentarų, pažymėkite reikiamus langelius su komentarais ir pasirinkite komandą „Lakštas → Langelio komentarai → Šalinti komentarą“." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Dokumentus galima lengvai konvertuoti į PDF formatą vos vienu mygtuko spustelėjimu mygtukų juostoje." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Norite pažymėti langelių bloką neslinkdami lakšto? Pavadinimo langelyje įveskite bloko nuorodą (pvz., A1:A1000) ir paspauskite įvedimo klavišą." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Norite sužinoti galimus komandos eilutės parametrus? Paleiskite „soffice“ failą su parametrais „--help“ arba „-h“ arba „-?“." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Jei norite lakštą ar spausdinimo sritį pritaikyti prie puslapio dydžio, lango „Formatas → Puslapis“ kortelėje „Lakštas“ nustatykite tinkamą parinkties „Mastelio taikymas“ reikšmę." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Sąraše norite įterpti elementą be numerio? Ženklinimo ir numeravimo mygtukų juostoje spustelėkite mygtuką „Įterpti elementą be numerio“." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Teksto kryptį lentelės langeliuose galima pakeisti lango „Lentelė → Savybės“ kortelėje „Teksto skaidymas“ nustačius norimą parinkties „Teksto kryptis“ reikšmę." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Jei „%PRODUCTNAME“ grafikos rengyklėje norite pakeisti liniuočių pradžios tašką, nuspauskite liniuočių susikirtimo vietą viršutiniame kairiajame kampe ir tempkite į darbo sritį." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Norite perkelti stulpelį skaičiuoklės lakšte? Spustelėkite stulpelio antraštę, tada nuspauskite pelės klavišą ties bet kuriuo to stulpelio langeliu, ir, laikydami nuspaustą pelės klavišą ir klavišą „%MOD2“, nutempkite stulpelį į norimą vietą." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Abėcėlinės rodyklės įrašus galima sukurti automatiškai naudojant atitikmenų failą." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Naudokite meniu „Formatas → Lygiuotė“ komandas tiksliai objektų vietai grafikos ar pateikčių dokumentuose nustatyti: lygiuoti lapo atžvilgiu galima ir vieną objektą, ir kelių objektų grupę." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Nenaudokite tabuliavimo pozicijų tarpams tarp objektų teksto dokumente įterpti. Tam tikrai atvejais geriau būtų įterpti lentelę be kraštinių." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Lango „Priemonės → Sąranka“ kortelėje „Klaviatūra“ nebūtina peržiūrėti viso sparčiųjų klavišų sąrašo, norint surasti reikiamą klavišų kombinaciją – tiesiog paspauskite ją klaviatūra." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "„%PRODUCTNAME“ programa gali automatiškai pridėti numeruotus įterpiamų objektų pavadinimus. Žr. „Priemonės → Parinktys → „%PRODUCTNAME“ tekstų rengyklė → Pavadinimų įterpimas“." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "„%PRODUCTNAME“ programa galima komponuoti laiškus naudojant „Google Mail“ paskyrą. Įveskite paskyros nuostatas lange „Priemonės → Parinktys → „%PRODUCTNAME“ tekstų rengyklė → Laiškų komponavimas“." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Kad slenkant skaičiuoklės dokumentą stulpelių antraštės visada būtų matomos, pasirinkite „Rodymas → Fiksuoti langelius → Fiksuoti pirmą eilutę“." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Norite rašyti „Basic“ makrokomandas? Pasirinkę „Priemonės → Makrokomandos → Taisyti makrokomandas“ rasite keletą pavyzdžių." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Tekstų rengyklėje antraštės pastraipos stilius galima pritaikyti sparčiaisiais klavišais: „%MOD1+1“ klavišais pritaikomas stilius „Antraštė 1“, „%MOD1+2“ – stilius „Antraštė 2“ ir t. t." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Nepasimeskite dideliuose dokumentuose. Naudokitės žvalgikliu (F5) reikiamam turiniui rasti." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Paieškos lango (Taisa → Ieškoti ir keisti) laukeliuose galima tiesiogiai įterpti specialiuosius rašmenis – spustelėkite laukelyje dešiniuoju pelės klavišu arba paspauskite klavišų kombinaciją „Lyg2+%MOD1+S“." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Norite į dokumento metaduomenis įtraukti kitokias savybes? Pasirinkite „Failas → Savybės“ – kortelėje „Kitos savybės“ galima susikurti norimas savybes ir nurodyti jų reikšmes." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Grafikos dokumente norite matyti objektą, bet jo nespausdinti? Įdėkite tokį objektą į nespausdintiną sluoksnį (dešiniuoju pelės klavišu spustelėkite sluoksnio ąselę, pasirinkite „Keisti sluoksnį“ ir išjunkite parinktį „Spausdintinas“)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Jei norite į dokumentą įterpti dabartinę datą, pasirinkite „Įterpimas → Laukas → Data“." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Teksto dokumente daug paveikslų? Paslėpkite juos ir taip paspartinkite dokumento atvaizdavimą – pasirinkite „Rodymas → Paveikslai ir diagramos“." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Jei norite skaičiuoklės langelius užpildyti atsitiktinių skaičių seka pagal įvairius skirstinius, pasirinkite „Lakštas → Užpildyti langelius → Atsitiktiniai skaičiai“." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Pervadinkite pateikties skaidres, kad lengviau būtų naudotis perėjimo į konkrečią skaidrę funkcija, o skaidrės santrauka būtų aiškesnė, nei „Skaidrė1“ ar „Lapas1“." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Skyrių numeravimo lange galima įvesti tekstą, kuris bus rodomas prieš arba po skyriaus numerio. Pavyzdžiui, laukelyje „Iš dešinės“ įveskite „ skyrius“, kad vietoj tik numerio būtų rašoma „1 skyrius“." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Norite transponuoti lentelę teksto dokumente? Nukopijuokite lentelę į skaičiuoklės dokumentą, transponuokite naudodami komandas „Kopijuoti“ ir „Įdėti kitaip“, tada vėl nukopijuokite ir įdėkite į teksto dokumentą kaip formatuotą tekstą." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Kad braižymo priemonių juostoje atsirastų vertikalaus teksto priemonė, lango „Priemonės → Parinktys → Kalbos nuostatos → Kalba“ parinkčių grupėje „Rašybos tikrinimo kalba“ pažymėkite parinktį „Azijos“ ir iš kontekstinio juostos meniu padarykite mygtuką matomu." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Jei norite padidinti pažymėto langelių bloko vaizdą, dešiniuoju pelės klavišu spustelėkite mastelio koeficientą būsenos juostoje ir pasirinkite „Optimalus vaizdas“." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Galima skaitmeniniu būdu pasirašyti jau turimus PDF failus ir patikrinti tokių failų parašus." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Dažnai kuriate vieną dokumentą kito pagrindu? Patogiau būtų naudoti šablonus!" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Skaičiuoklėje pasirinkite komandą „Formatas → Sąlyginis formatavimas → Tvarkyti“, jei norite pamatyti visus langelius, kuriems buvo pritaikytas sąlyginis formatas." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Jei pasirinksite komandą „Priemonės → Sekiklis → Pažymėti neteisingus duomenis“, lakšte bus paryškinti visi langeliai, kuriuose reikšmės neatitinka nustatytų tikrinimo taisyklių." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Įterpkite šriftus į dokumentą geresniam suderinamumui su kitomis raštinės programomis – „Failas → Savybės“, kortelė „Šriftas“." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Jei norite paversti formules statinėmis reikšmėmis, nereikia kopijuoti ir įdėti; pasirinkite komandą „Duomenys → Skaičiavimas → Formulę keisti reikšme“." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Jei norite pakeisti visų komentarų dokumente formatą, spustelėkite rodyklės žemyn mygtuką komentaro langelyje ir pasirinkite komandą „Formatuoti visus komentarus“." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Norite, kad skaičiuoklės dokumento išdėstymas ekrane ir popieriuje būtų vienodas? Lange „Priemonės → Parinktys → „%PRODUCTNAME“ skaičiuoklė → Bendrosios parinktys“ pažymėkite parinktį „Teksto formatavimui naudoti spausdintuvo nuostatas“." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Teksto rengykle lengva kurti atsargines kopijas: pasirinkę „Failas → Įrašyti kopiją“ įrašysite naują dokumentą, o darbą tęsite su pradiniu." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Kai kuriate naują stilių kito stiliaus pagrindu, tam tikras reikšmes galima nurodyti procentais arba taškų skirtumu bazinio stiliaus reikšmių atžvilgiu (pvz., 110%, -2pt ar +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Jei norite nukopijuoti komentarą į kitą skaičiuoklės langelį, bet neperrašyti paskirties langelio turinio, naudokite funkciją „Įdėti kitaip“. Parinkčių grupėje „Ką įdėti“ palikite pažymėtą tik parinktį „Komentarus“, o grupėje „Operacija“ pažymėkite „Pridėti“." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Naudojantis dokumentų konvertavimo vedikliu daug „MS Office“ dokumentų vienu metu galima konvertuoti į „OpenDocument“ formatą (Failas → Vedikliai → Dokumentų konvertavimas)." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Langelio taisymo veiksenoje ties langeliu spustelėjus dešiniuoju pelės klavišu bus galima įterpti laukus: datą, lakšto ar dokumento pavadinimą." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Norite perkelti lentelę teksto dokumente? Pažymėkite lentelę (Lentelė → Pažymėti → Lentelę) ir įterpkite kadrą (Įterpimas → Kadras → Kadras). Lentelę kadre bus galima perkelti į bet kurią vietą." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Autoteksto frazes iš „Word“ dokumento ar šablono galima importuoti pasirinkus „Priemonės → Autotekstas → Frazė → Importuoti“." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Neskirkite dviejų pastraipų rankinių būdu įterptais lūžiais. Geriau stiliaus ar pastraipos savybių lango kortelėje „Įtraukos ir intervalai“ pakeiskite intervalo po pastraipos reikšmę." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Jei skaičiuoklės langelyje norite išlaikyti nulius skaičiaus pradžioje, langelių formato lange nustatykite norimą parinkties „Nereikšminiai nuliai“ reikšmę arba prieš įvesdami į langelį skaičių pakeiskite langelio formatą į teksto." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Pritaikę sąrašo stilių toliau norite rinkti tekstą numatytuoju stiliumi? Spustelėkite mygtukus „Ženklintas sąrašas“ arba „Numeruotas sąrašas“ formatavimo mygtukų juostoje." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Visas spausdinimo sritis galima pašalinti vienu veiksmu – pažymėkite visus lakštus, tada pasirinkite „Formatas → Spausdinimo sritis → Valyti“." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Jei skaičiuoklės dokumente norite įterpti fono paveikslą, pasirinkite „Įterpimas → Paveikslas“ arba nutempkite paveikslą iš galerijos, tada pasirinkite komandą „Formatas → Išdėstyti → Už teksto“." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Nepavyksta įdėti teksto, nukopijuoto iš PDF dokumento ar tinklalapio? Pamėginkite įdėti neformatuotą tekstą (%MOD1+%MOD2+Lyg2+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Skaičiuoklėje naudokite funkciją TRIMMEAN(), jei norite apskaičiuoti duomenų aibės vidurkį neįtraukiant didžiausios ir mažiausios reikšmės." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Ketvirtas nebūtinasis skaičiuoklės „Calc“ funkcijos VLOOKUP parametras nurodo, ar pirmajame stulpelyje duomenys yra surikiuoti. Jei ne, įrašykite FALSE arba nulį." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Mygtukų juostos rodomos priklausomai nuo konteksto. Jei nenorite matyti kurios nors mygtukų juostos, išjunkite ją meniu „Rodymas → Mygtukų juostos“." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Norite sukurti pagrindinį dokumentą iš veikiamojo teksto dokumento? Pasirinkite „Failas → Siųsti → Kurti pagrindinį dokumentą“ (įdėtiniai dokumentai sukuriami atsižvelgiant į struktūrą)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Norite lygiuoti skaičiuoklės dokumento langelius išspausdinto lapo viduryje? Pasirinkite „Formatas → Puslapis“, kortelės „Puslapis“ parinkčių grupėje „Maketo parinktys“ pažymėkite norimą lentelės lygiuotę." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Kadrus galima susieti taip, kad tekstas tęstųsi iš vieno kadro į kitą, tarsi leidybos programoje." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Iš teksto dokumente esančios lentelės galima sukurti diagramą – nustatykite žymeklį lentelės viduje ir pasirinkite „Įterpimas → Diagrama“." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Lango „Priemonės → Parinktys → „%PRODUCTNAME“ tekstų rengyklė → Formatavimas“ parinkčių grupėje „Rodyti formatavimo ženklus“ galima parinkti, kokius nespausdinamus ženklus rodyti dokumente." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Norite greitai pereiti į konkretų puslapį? Spustelėkite kairiausią būsenos juostos laukelį, arba pasirinkite „Taisa → Eiti į puslapį“, arba paspauskite „%MOD1+G“." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "„%PRODUCTNAME“ programa galima naudotis daugiau kaip 150 kalbų." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Jei pateikties demonstravimo metu norite rodyti kitos programos langą, pateikčių rengyklės lange „Demonstravimas → Pateikties demonstravimo nuostatos“ išjunkite parinktį „Skaidrė visada viršuje“." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Teksto dokumente norite rasti pusjuodžiu šriftu užrašytus žodžius? Pasirinkite „Taisa → Ieškoti ir keisti“, išskleiskite parinkčių grupę „Kitos parinktys“, spustelėkite mygtuką „Požymiai“ ir pažymėkite parinktį „Šrifto storis“." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Pastraipas ir lentelės eilutes galima rikiuoti pagal abėcėlę ar skaičių seką – pasirinkite „Priemonės → Rikiuoti“." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Jei norite įterpti pastraipą prieš arba po sekcijos, paspausite klavišus „%MOD2+Įvesti“, kai žymeklis yra sekcijos pradžioje arba pabaigoje." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "„%PRODUCTNAME“ programoje yra šablonų tvarkytuvė, kurioje galima rasti šablonus įvairių tipų dokumentams kurti." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Apskaičiuokite paskolos įmokas skaičiuokle „Calc“: pvz., PMT(2%/12;36;2500) apskaičiuoja įmoką, kai 12 mėn. palūkanų norma yra 2%, paskolos terminas yra 36 mėn., o dydis – 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Naudojant funkciją VLOOKUP nepavyksta gauti norimo rezultato? Išbandykite funkcijas INDEX ir MATCH!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Norite parodyti paslėptą stulpelį A? Spustelėkite stulpelio B langelį, nuspauskite kairįjį pelės klavišą, tempkite kairėn, tada atleiskite. Tuomet pasirinkite „Formatas → Stulpeliai → Rodyti“." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Jei teksto dokumente norite pakeisti puslapio numerį, pirmosios pastraipos savybių lango kortelėje „Teksto skaidymas“ pažymėkite parinktį „Įterpti lūžį“ ir įveskite norimą puslapio numerį." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "„%PRODUCTNAME“ programą galima paleisti bet kurioje naršyklėje naudojant „rollApp“ paslaugą." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Keistas klaidos pranešimas skaičiuoklėje – „Err“ ir skaičius? Paaiškinimą galima rasti čia:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Pastraipą, kuri nėra antraštė, į turinį galima įtraukti pakeitus „Struktūros lygmens“ parinkties reikšmę pastraipos nuostatų lango kortelėje „Struktūra ir numeravimas“." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "„%PRODUCTNAME“ programoje galima įterpti ne tik turinį, bet ir abėcėlinę, paveikslų, lentelių, objektų, bibliografijos ar kitokią naudotojo aprašytą rodyklę." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Nepavyksta pakeisti ar pašalinti savo aprašyto langelių stiliaus? Patikrinkite lakštus – nė vienas negali būti apsaugotas." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Norite išsiaiškinti, ar langelio reikšmė naudojama kitų langelių formulėse? Pasirinkite „Priemonės → Sekiklis → Susekti priklausomybes“ (Lyg2+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Automatinio rašybos taisymo parinkčių lange, keitinių langelyje galima naudoti pakaitos simbolius *." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Norite nukopijuoti aukščiau esančią skaičiuoklės dokumento eilutę? Paspauskite klavišus „%MOD1+D“ arba pasirinkite „Lakštas → Užpildyti langelius → Žemyn“." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Jei paiešką norite vykdyti keliuose lakštuose, pažymėkite norimus lakštus prieš pradedant paiešką." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Nutempę langelių bloką iš skaičiuoklės dokumento į pateikties skaidrės rodinį skaidrėje sukursite lentelę; nutempę į pateikties struktūros rodinį iš kiekvieno langelio sukursite vieną struktūros eilutę." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "Rašant „%PRODUCTNAME“ teksto rengyklėje lengva išvengti dvigubų tarpų – pasirinkite „Priemonės → Automatinis rašybos taisymas → Automatinio taisymo parinktys“ ir kortelėje „Parinktys“ pažymėkite „Du tarpus keisti vienu“." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Norite, kad skaičiuoklės langelyje įvedus reikšmę žymeklis peršoktų ne žemyn, o į dešinę? Vietoj įvedimo klavišo spauskite „Tab“." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Jei norite, kad vertikalioji slankjuostė būtų rodoma kairėje, lange „Priemonės → Parinktys → Kalbos nuostatos → Kalba“ įgalinkite parinktį „Kompleksinė teksto struktūra“, tada pasirinkite komandą „Lakštas → Iš dešinės į kairę“." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Suformatuotą objektą nutempkite virš stilių polangio – bus atvertas stiliaus kūrimo dialogo langas, beliks įvesti naujojo stiliaus pavadinimą." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Naujose „%PRODUCTNAME“ programos versijose įdiegtos naujos funkcijos, ištaisytos funkcinės ir saugumo klaidos. Atnaujinkite programą, kai galima!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Reikia patarimų, kaip kurti naujus XSLT ir XML filtrus?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "„%PRODUCTNAME“ žinynas" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Daugiau informacijos" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Vald" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/lt/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/lt/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/lt/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lt/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-02-09 05:36+0000\n" "Last-Translator: Gintautas Grigas \n" "Language-Team: Lithuanian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564920143.000000\n" #. 3u8hR @@ -15381,33 +15381,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "mirksintis tekstas blyksintis tekstas" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Mirksėjimas" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Pažymėtiems rašmenims pritaikomas mirksėjimo efektas. Mirksėjimo dažnio keisti negalima." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/lv/cui/messages.po libreoffice-7.1.3~rc2/translations/source/lv/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/lv/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lv/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-01-03 14:36+0000\n" "Last-Translator: Ingmārs Dīriņš \n" "Language-Team: Latvian \n" @@ -2459,633 +2459,627 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Pielāgojiet vēru izskatu ar \"Rīki ▸ Vēres un beigu vēres...\"" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 #, fuzzy msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Jūs varat izmainīt %PRODUCTNAME izskatu caur \"Rīki ▸ Opcijas ▸ Skats ▸ Lietotāja saskarne\". Komentārs: šāda izvēlne nepastāv, ziņot par to LO izstrādātājiem." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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 "Varat aizsargāt šūnas ar \"Formatēt ▸ Šūnas ▸ Šūnu aizsardzība\". Lai novērstu lokšņu ievietošanu, dzēšanu, pārdēvēšanu, pārvietošanu/kopēšanu, lietojiet \"Rīki ▸ Aizsargāt loksni\"." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Ieslēdziet formulas šūnu masīvi paralēlos aprēķinus caur \"Rīki ▸ Opcijas ▸ OpenCL\"." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Lai dzēstu vairākus komentārus, izvēlieties šūnas ar komentāriem un lietojiet \"Loksne ▸ Šūnu komentāri ▸ Dzēst komentāru\"." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vai vēlaties zināt derīgos komandrindas parametrus? Palaidiet komandu \"soffice\" ar parametru \"--help\" vai \"-h\", vai \"-?\"." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Vai sarakstā vajadzīgs nenumurēts vienums? Rīkjoslā \"Aizzīmes un numurēšana\" lietojiet \"Ievietot nenumurētu ierakstu\"." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 #, fuzzy 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 "Vai jūs vēlaties sākt strādāt ar Basic makrokomandām? Apskatiet piemērus zem \"Rīki ▸ Makrokomandas ▸ Rediģēt makrokomandas\"." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Lai savā dokumentā ievietotu pašreizējo datumu, lietojiet \"Ievietot ▸ Lauks ▸ Datums\"." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 #, fuzzy msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." @@ -3093,442 +3087,442 @@ #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 #, fuzzy 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 "Vai transponējat Writer tabulu? Kopējiet un ielīmējiet lietotnē Calc, transponējiet ar \"Kopēt ▸ Ielīmēt norādot\", tad lietotnē Writer \"Kopēt ▸ Ielīmēt norādot ▸\"" #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Jūs varat parakstīt esošās PDF datnes un arī pārbaudīt to parakstus." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Lietotnē Calc lietojiet \"Formatēt ▸ Nosacījuma ▸ Pārvaldīt\", lai noskaidrotu, kuras šūnas ir tikušas definētas ar formatēšanu ar nosacījumu." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Lietojiet fontu iegulšanu labākai sadarbspējai ar citu biroja programmatūru caur \"Datne ▸ Īpašības ▸ Fonts\"." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Lai pārveidotu formulu statiskās vērtībās, jums nav nepieciešams kopēt/ielīmēt; lietojiet \"Dati ▸ Aprēķināt ▸ Formulu uz vērtību\"." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Vai nevarat izmainīt vai dzēst pielāgoto šūnas stilu? Pārbaudiet visas loksnes, nevienai nevajadzētu būt aizsargātai." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 #, fuzzy 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 "Vai vēlieties uzzināt, vai uz šūnu ir atsauces citu šūnu formulās? Rīki ▸ Detektīvs ▸" #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Lai meklētu vairākās izklājlapās, izvēlieties tās, pirms sākat meklēšanu." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "%PRODUCTNAME jaunās versijas sniedz jaunus līdzekļus, kļūdu labojumus un drošības ielāpus. Uzturiet savu programmatūru atjauninātu!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Izstrādājiet jaunus XSLT un XML filtrus?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME palīdzība" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Vairāk informācijas" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/lv/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/lv/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/lv/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/lv/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:04+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Mirgošana" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/mai/cui/messages.po libreoffice-7.1.3~rc2/translations/source/mai/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/mai/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/mai/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2481,1071 +2481,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/mk/cui/messages.po libreoffice-7.1.3~rc2/translations/source/mk/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/mk/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/mk/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Macedonian \n" @@ -2480,1071 +2480,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/mk/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-11-18 18:36+0000\n" "Last-Translator: sophie \n" "Language-Team: Macedonian \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinking fontsflashing fonts" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Трепкање" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ml/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ml/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ml/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ml/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:41+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2468,1071 +2468,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/mn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/mn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/mn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/mn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-08-20 21:35+0000\n" "Last-Translator: Bachka \n" "Language-Team: Mongolian \n" @@ -2456,330 +2456,324 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME нь макро аюулгүй байдлын дөрвөн түвшинг (бага түвшнээс маш өндөр) дэмждэг." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 нь Google Summer of Code (GSoC) -г байгууллагад ашиглахаар зорьж байна:" - -#. SNTbc -#: 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 "Та текстийн хэсгүүдэд сэтгэгдэл хавсаргаж болно гэдгийг мэдэж байсан уу? Зүгээр л %MOD1+%MOD2+C товчлолыг ашиглана уу." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Нэг буюу хэд хэдэн догол мөрийг шилжүүлэх шаардлагатай юу? Зүсэх, буулгах шаардлагагүй: Гарын товчлолыг ашиглана уу %MOD1+%MOD2+Сум (Дээш/доош)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Хэрэгсэл тус бүрийн хувьд урьдчилан тодорхойлсон загвар эсвэл одоогийн баримт бичгийн үндсэн фонтыг өөрчлөх. Сонголтууд ▸ %PRODUCTNAME Writer ▸ Үндсэн фонтууд." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "10-аас илүү тэмдэгт бүхий үгс хайж олох уу? Засварлах ▸ Хайх, солих ▸ Хайлт ▸ [a-z] {10,} ▸ Бусад сонголтууд ▸ Тогтмол илэрхийлэлүүдийг шалгана уу." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "CSV файлыг одоогийн хүснэгтэнд шинэ хуудас байдлаар файлаас Хуудас ▸ хуудас файлаас ашиглан нээнэ үү." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Writer хэл дээр тод, курсив, эсвэл доогуур бичиж оруулснаар та үндсэн шинж чанаруудыг зөвхөн %MOD1+Shift+X товчлолыг ашиглан үргэлжлүүлж болно (шууд тэмдэгт форматыг устгана уу)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "%MOD1+%MOD2+Shift+V ашиглан санах ой дээрх агуулгыг форматгүй текст хэлбэрээр буулгана уу." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Тайлбарын төрхийг хэрэгслүүдээр тохируулахдаа Хэрэгслүүд ▸ Тайлбар ба тэмдэглэл …" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Слайд шоу ▸ Custom Slide Show-г ашигласнаар слайдыг үзэгчидийн эрэмбэд тааруулж, эрэмбэлэх, сонгож болно." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Текстийн зарим хэсгийг үсгийн алдаа шалгахыг өөрчлөхийг хүсч байна уу? Статус талбарын хэлний хэсгээс товшино уу, эсвэл загварыг хэрэглэнэ үү." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Зохиолч нь хоёр сондгой (тэр ч байтугай) хуудасны хооронд хоосон хуудас оруулж болно. Хэвлэх харилцах цонхны %PRODUCTNAME Writer таб дээр \"Автоматаар оруулсан хоосон хуудсыг хэвлэх\" хэсгийг шалгаарай." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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 "AutoPlay танилцуулгыг өөрчлөхийн тулд үүнийг нээгээд эхэлсний дараа контекст цэсэнд баруун товшиж Засах гэснийг сонгоно уу." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Нарийвчлан байрлуулах шаардлагатай байна уу? %MOD2+сум товчлуур нь обьектуудыг (дүрс, зураг, томъёо) нэг пикселээр хөдөлгөдөг." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Оруулсан тусламжийг суулгасан бол F1 товчийг даран авах боломжтой. Үгүй бол онлайнаар шалгана уу." #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "%PRODUCTNAME Calc дахь статус талбар дээр баруун товшиж, сонгогдсон нүднүүдийн тоог харуулахын тулд \"Сонголтын тоо\" -г сонгоно уу." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "%PRODUCTNAME Writer хуудасны зөвхөн нэг хэсгийн хоёр буюу түүнээс дээш багатай байхыг хүсч байна уу? Оруулах ▸ Хэсэг хэсгийг оруулаад Багана табаар тохируулаад текстийг энэ хэсэгт байрлуул." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "%PRODUCTNAME Calc-д өгөгдөл түүвэрлэх, тайлбарлах статистик, ялгаа, хамаарлын дүн шинжилгээ хийх, бусад зүйлсд зориулж Хэрэглэгчийн өгөгдөл ▸ Статистик мэдээллийг ашиглана уу." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Та нэг хуудсаас нөгөө хуудас руу clipboardгүйгээр хуулж болно. Хуулах хэсгийг сонгоно уу, %MOD1+Зорилтот хүснэгтийн таб дээр дараад Хуудас ▸ Нүдний хуудсыг бөглөх ▸ Хүснэгтийг бөглөх ашиглана уу." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Та %PRODUCTNAME-ийн харагдах байдлыг Хэрэгслүүд ▸ Сонголтууд ▸ Харах ▸ Хэрэглэгчийн Интерфэйсээр өөрчилж болно." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "%PRODUCTNAME Impress-т оруулаад \"Фото зургийн цомог\" функц бүхий цуврал зургуудаас слайд шоу үүсгэхийн тулд Оруулах ▸ Медиа ▸ Зургийн цомог ашиглана уу." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Илэрцийг харах Томъёог үзүүлэх (эсвэл Хэрэгслүүд ▸ Сонголтууд ▸ %PRODUCTNAME Calc ▸ Харах ▸ Дэлгэц ▸ Томъёо) ашиглан үр дүнгийн оронд томъёонуудыг үзүүлэх боломжтой." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME нь дэлхий даяар хэдэн зуун хувь нэмэр оруулдаг, найрсаг нөхөрлөлөөр бүтээгдсэн. Кодчиллоос бусад ур чадвартай бидэнтэй нэгдээрэй." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Солгой? Хэрэгслүүдийг идэвхжүүл. Хэрэгслүүд ▸ Сонголтууд ▸ Хэлний тохиргоо ▸ Хэлнүүд ▸ Ази, багаж хэрэгслийг шалга Хэрэгслүүд ▸ Сонголтууд ▸ %PRODUCTNAME Writer ▸ Харуулах ▸ Чиглүүлэгч ▸ Баруунд хандсан-г сонго. Тэгвэл таны гүйлгэх самбар зүүн талдаа очих болно." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Таны бүлгийн гарчигууд нь үргэлж хуудас эхлүүлэхийг хүсч байна уу? Гарчиг1-г засварлах (параграфын хэв) ▸ Текстийн урсгал ▸ Нугаралт хийгээд Оруулах ▸ Хуудас ▸ Өмнөх -г шалгана уу." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Огноо/цагийн утга нь сонгосон өдрийн тэгээс хойш хэдэн өдрийн тоо юм; тоон дээр бүхэл тоо нь огноог, харин бутархай хэсэг нь цагийг (өдрийн төгсгөлд), 0.5 нь үдийн дунд илэрхийлнэ." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del нь курсороос одоогийн өгүүлбэрийн төгсгөл хүртэл хасагдана." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Томьёонд багана эсвэл мөрний шошгыг ашиглана уу. Жишээлбэл, хэрэв танд \"Цаг\" ба \"KM\" гэсэн хоёр багана байгаа бол = цаг/KM ашиглаад минут дахь километрээ авна уу." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Calc дахь нүдийг тойрсон \"шоргоолжны маршийг\" зогсоохыг хүсвэл [Esc] дээр дарна уу. Хуулбарласан агуулгыг буулгах боломжтой хэвээр байна." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "%PRODUCTNAME-н төлөөлөгч болмоор байна уу? Энд програмчин, админ, багш нарт зориулсан гэрчилгээ байгаа." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Хуудаснууд дээр янз бүрийн хуудасны хэв маягийг ашиглан Calc хүснэгтэд хөрөг ба өргөн зураг чиглэлийг холино уу." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Загварын хоорондын холболтыг харахын тулд Загварын хажуугийн мөрөнд \"Шаталсан харах\" сонгоно уу." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Та документ дээрх хүснэгтүүдийг тууштай болгохын тулд загваруудыг ашиглаж болно. Урьдчилан тодорхойлсон хэв маягаас нэгийг (F11) эсвэл Хүснэгт ▸ Авто Формат ашиглан сонгоно уу." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Холбоосыг нээх %MOD1 түлхүүрийн тохиргоог тохируулах уу? »Хэрэгслүүд ▸ Сонголтууд ▸ %PRODUCTNAME ▸ Аюулгүй байдал ▸ Сонголтууд ▸ %MOD1+Хулганы зүүн товшилтоор бариад холбоосын замыг мөрдөх боломжтой«." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Та томъёоны бие даасан элементийн тооцооллыг харах, холбогдох элементүүдийг сонгоод F9 товчийг дарна уу." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "Хүснэгтийн хамгийн дээд утгуудыг харуулахыг хүсч байна уу? Дата ▸ Авто шүүлтүүр цэсийг сонгоод унах сум дээр товшоод \"Top10\" -г сонгоно уу." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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 "Navigator-ийн тусламжтайгаар та толгой / текстийн гарчигыг дээш, доош нь сонгох, зөөх боломжтой." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Writer-д математикийн объектийг хурдан авахын тулд томъёогоо бичээд, тэмдэглээд, Insert ▸ Object ▸ Formula ашиглан текстийг хөрвүүлнэ." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "%PRODUCTNAME-тай хамт шинэ толь бичиг суулгахад маш хялбар: тэдгээр нь өргөтгөл болгон тусладаг." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME нь танд хөдөлгөөнийг өгөх зөөврийн хувилбартай байна. Компьютер дээрээ администраторын эрхгүй ч гэсэн та %PRODUCTNAME-г зөөврийн компьютерт суулгах боломжтой." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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 "Таны Writer баримт нь текстийг курсороо хадгалах үед байрлуулсантай ижил байдлаар дахин нээхгүй байна уу? Хэрэгсэл дээр овог эсвэл овог нэмж оруулах. Сонголтууд ▸ %PRODUCTNAME ▸ Хэрэглэгчийн мэдээлэл ▸ Овог / Нэр." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Ишлэлийн менежмент? Гуравдагч талын өргөтгөлийг ашиглана уу." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Хэд хэдэн хуудсан дээр нэг утгыг оруулахыг хүсч байна уу? Хуудсыг сонгох: орохын өмнө %MOD1 товчийг удаан дараад табыг дарна уу." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Та Хэрэглэгчийн дунд хулганы товчийг тохируулахдаа Сонголтууд ▸ %PRODUCTNAME ▸ Харах ▸ Дунд хулганы товчийг товшиж тохируулах боломжтой." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Ландшафтын нэг дээр хоёр хөрөг хуудсыг хэвлэх (A4-ээс A5 хүртэл бууруулах)? Файл ▸ Хэвлэх, \"Хуудас хуудасаар\" 2-ыг сонгоорой." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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 "" @@ -2787,742 +2781,742 @@ "Хэрэгслийг сонгоно уу хэрэгслээр дамжуулан баримт бичгийн дэвсгэр дэх объектыг сонгоно." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Автотекст гэж ихэвчлэн ашигладаг текстээ тодорхойл. Та тэдгээрийг ямар ч Writer баримт бичигт өөрийн нэр, товчлол эсвэл хэрэгслийн хамт оруулах боломжтой." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 нь зүүнээс баруун тийш тооцдоггүй боловч Догол мөрүүд - Үзүүлэлтүүд - Үржүүлэх - Хэсэг - Нэмэлт - хасах зүйлүүдийг дагаж мөрддөг." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "%PRODUCTNAME документыг авах, хэрэглэгчийн гарын авлага үнэгүй номыг авах:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Writer-тай бичсэн тайланг танилцуулах шаардлагатай байна уу? Файл ▸ Үзүүлэн рүү автоматаар жагсаалтаас слайдшов үүсгэнэ." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Хүснэгт доторх холбоосуудын танилцуулгыг удирдахыг хүсэж байна уу? Тэднийг ХОЛБООС функцээр оруулна уу." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Сонголт болих Хэрэгслүүд ▸ %PRODUCTNAME Calc ▸ Харах ▸ Томруулж харах: \"Хуудсыг синхрончлох\". Ингэснээр Calc доторх хуудас бүр өөрийн гэсэн томруулах хүчин зүйлтэй болно." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Та таб бүрт өнгийг тохируулж болно: таб дээр баруун товшиж, эсвэл Sheet ▸ Sheet Tab Color ашиглана уу." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Томъёоны нүдтэй хамааралтай өмнөх нүд рүү (Shift+F9) эсвэл дараагийн нүд рүү (Shift+F5) -ийг хэрэглэ (эсвэл Хэрэгслүүд ▸ Detective ашиглана уу). Алхам болгонд та цуваанд нэг алхам урагшлах эсвэл цаашлах болно." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Томъёогоо нэг алхамаар оруулаад дугаарла: fn гэж бичээд F3 дар. Автотекстийг хүснэгтэд дугаарласан томъёо, дугаараар оруулна." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Android эсвэл iPhone ашиглан Impress танилцуулгыг алсаас удирдана уу." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Энэ сард хэдэн өдөр болохыг мэдмээр байна уу? DAYSINMONTH(TODAY ()) функцийг ашиглана уу." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Таны дугаарууд таны хүснэгтэд ### байдлаар харагдана уу? Бүх баганыг харуулахад багана хэт нарийхан байна гэсэн үг." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Томъёоны нүднүүдийн их хэмжээний зэрэгцээ тооцооллыг идэвхжүүлэхийн тулд Хэрэгслүүд ▸ Сонголтууд ▸ OpenCL -г идэвхжүүл." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Draw/Impress дахь зурах хэрэгслийн самбараас холбогч хэрэгслийг ашиглан гоё урсгал диаграм үүсгэж объектыг Writer дээр хуулж/буулгана." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Таны хандив бидний дэлхийн олон нийтийг дэмждэг." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Та сарыг огноогоор оруулахыг хүсч байна уу? Ашиглах =ЭОГНОО (огноо; сар)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Өгөгдөл агуулсан, хоосон мөр, багануудаар хязгаарлагдсан хүрээтэй нүдийг сонгохдоо %MOD1+* (тоон товчлуур) ашиглана уу." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Томъёонуудыг CSV-р экспортлох уу? Файл ▸ Хадгалах ▸ Төрөл: Текст CSV-г сонгоод \"Шүүлтүүрийн тохиргоог засах\" гэснийг товшиж дараагийн харилцах цонх дээрх \"Нүдний томъёог хадгалах\" гэснийг сонгоно уу." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "%PRODUCTNAME Impress-тай ажиллах үед танилцуулагчийн консол бол гайхалтай өргөтгөл юм. Та шалгасан уу?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Хэрэгслийн нүдэн дээрх PDF дүрсэн дээр товшоод документээ шууд PDF руу хөрвүүлэх боломжтой." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Гүйлгэхгүйгээр олон нүдийг зэрэг сонгохыг хүсч байна уу? Нэрийн талбарт хэмжээг (жишээ нь A1: A1000) оруулаад Enter дар." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Тушаалын дэлгэцэд (CLI) ямар параметрүүдийг байгааг мэдэхийг хүсч байна уу? soffice --help эсвэл -h эсвэл гэж эхлүүл?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Та нүдний хүснэгтийн чиглэлийг Хүснэгт ▸ Шинж чанар... ▸ Текстийн урсгал ▸ Текстийн чиглэл гэж нүдний чиглэлийг тодорхойлно." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "%PRODUCTNAME Draw 0/0 шүгамын цэгийг өөрчлөхийн тулд байгаа хоёр шугамын огтлолцлыг ажлын талбарт зүүн дээд булан руу чирнэ үү." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Calc дахь баганыг шүүд хоёр баганын хооронд оруулах бол баганын толгой дээр товшин бариад %MOD2 товчлуур дээр дараад шинэ байранд нь чирж тавина." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Тааруулах файлыг ашиглан цагаан толгойн индекс оруулгыг автоматаар тэмдэглэнэ." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Draw/Impress дахь обьектуудыг зөв байрлуулахын тулд Формат ▸ Байршуулах (эсвэл контекст цэс) -ийг ашиглана уу: нэг обьект эсвэл бүлгээр нь сонгосон бол тэдгээр нь хуудсан дээр голлогдоно." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Элэментүүдийг Writer -т зүв байршуулахын тулд Зайчлагч ашигласанаасаа илүү хүрээгүй хүснэгт оруулан ашигласан нь илүү дээр." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME нь таныг обьектийг оруулах үед дугаарлагдсан гарчгийг автоматаар нэмэх боломжтой. Хэрэгслүүд ▸ Сонголтууд ▸%PRODUCTNAME Writer ▸ Авто тайлбар -д хар." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "%PRODUCTNAME-г ашиглан та өөрийн Google Мэйл акаунтыг ашиглан имэйл нэгтгэх боломжтой. Сонголтууд ▸ %PRODUCTNAME Writer ▸ Мэйл нэгтгэ -д өгөгдөлөө оруул." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Calc-хүснэгтэд баганын гарчигийг байнга харагдуулахын тулд »Харагдац ▸ Нүдийг царцаа ▸ Эхний нүдийг тогтоо гэж сонго«." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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 "Writer дээр гарчгийн параграфын хэв маягийг товчлуурын товчлууруудаар ашиглана уу: %MOD1+1 нь Гарчиг 1-г ашигладаг, %MOD1+2 нь Гарчиг 2 гэх мэтийг ашигладаг." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Том баримт бичгүүдэд алга болохгүй. Агуулга дотроос өөрийн замаа олохын тулд Navigator (F5) -ийг ашиглана уу." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Засах ▸ Олох ба Орлуулах нь тусгай тэмдэгтүүдийг шууд оруулах боломжийг олгоно: оруулах талбар дээр баруун товших буюу Shift+%MOD1+S дарна уу." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "Draw дахь объектыг харахыг хүсч байгаа ч хэвлэхгүй байхыг хүсч байна уу? Үүнийг \"Хэвлэж болох\" туг байрлуулаагүй давхарга дээр зурна уу (таб дээр хулганы баруун товчлуур ба \"Давхарга өөрчлөх\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Баримтаа одоогийн огноог оруулахын тулд Оруулах ▸ Талбар оруулах ▸ Огноо ашиглана уу." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Таны Writer баримт дээр олон зураг орсон уу? Харах ▸ Зураг ба диаграмыг идэвхгүй болгох замаар дэлгэцийг хурдасгах." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "\"Хуудас руу очих\" харилцааг тодорхойлж, Slide1, Slide2-ээс илүү нарийвчилсан мэдээлэл өгөхөд туслахын тулд Impress дээр слайдуудаа өөрчил." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Бүлгийн дугаар оруулах диалог нь бүлгийн дугаараас өмнө текстийг харуулах боломжийг танд олгоно. Жишээлбэл \"Бүлэг 1\" -г харуулахын тулд \"Бүлэг\" гэж бичнэ үү." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Бичгийн хүснэгтийг шилжүүлэх үү? Бичвэрээ хуулаад Calc дээр оруулаад, хуулбар/буулгах тусгай хэрэгслээр шилжүүлэх, дараа нь Writer-д бичсэн форматтай текстийг тусгай хуулбарлах/буулгах гэж буцаан оруулна." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Та одоо байгаа PDF файлуудад гарын үсэг зурж, эдгээр гарын үсгийг шалгаж болно." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Ихэнхдээ нэг баримт бичгийг өөр баримтаас үүсгэдэг үү? Загвар ашиглах талаар бодож үзээрэй." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Нөхцөл форматлах нь ямар нүдийг тодорхойлж байгааг олж мэдэхийн тулд Calc-д »Формат ▸ Форматлах нөхцөл ▸ Удирдах ашиглан тодорхойл." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Calc доторх хүчинтэй байх дүрмийн гаднах утгатай хүснэгтийн бүх нүдийг тодруулахын тулд »Хэрэгслүүд ▸ Мөрдөгч ▸ Хүчингүй өгөгдлийг дугуйлна уу» цэсийг сонгоно уу." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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 "Writer дээр та бүх сэтгэгдлүүдийг нэг дор форматлах боломжтой. Нэг сэтгэгдлийн доош сум дээр товшиж “Бүх сэтгэгдлийг форматла” гэж сонго." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Дэлгэцийг хэвлэх, хэвлэхэд ижил байрлалыг хүсч байна уу? Хэрэгслийг шалгах ▸ Сонголтууд ▸ %PRODUCTNAME Calc ▸ Ерөнхий ▸ Текст форматлахад принтер хэмжигдэхүүнийг ашиглах гэснийг шалга." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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 "Хэрэв та өөр загвар дээр үндэслэн загвар үүсгэвэл та хувь хэмжээ эсвэл цэгийн утгыг оруулах боломжтой (жишээ нь 110% эсвэл −2pt эсвэл + 5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Зорилтот нүдний агуулгыг алдалгүйгээр сэтгэгдлийг хуулахын тулд та Paste Special-г ашиглаж, харилцах цонх дээрх \"Сэтгэгдэл\" -ээс бусад бүх зүйлийг тэмдэглэнэ үү. Одоогийн агуулгыг дарж бичихгүй байхын тулд \"Нэмэх\" үйлдлийг ашиглаарай." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Багц нь MS Office баримтаа OpenDocument формат руу хөрвүүлэх, Файл хувиргах мастер, Файл ▸ Wizards ▸ Баримт хөрвүүлэгч гэсэн цэсэнд байрлуулна." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Writer хүснэгтийг зөөх хэрэгтэй байна уу? Хүснэгт ▸ Хүснэгтийг сонгоод ▸ Хүрээ ▸ Хүрээг сонгоод хүссэн газраа шилжүүлээрэй." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Хэрэгслүүд ▸ Автотекст ▸ Автотекст ▸ Импорт-оор та импортлохыг хүссэн Word текст эсвэл текстийг оруулах боломжтой." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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 "Хүссэн дүрсийг оруулах via Зургийг ашиглан хүснэгтэд арын дэвсгэр зураг нэмэх, эсвэл Цомгийг хэлбэршүүлээд ▸ Суурь болгох." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "PDF файл эсвэл вэб хуудаснаас текстийг документ рүү буулгахад асуудалтай байна уу? Хэлбэргүй текст байдлаар буулгаж үзээрэй (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Calc дээр хамгийн дээд ба хамгийн бага утгыг оруулаагүй дата багцын дундажийг буцаахын тулд TRIMMEAN() ашиглана уу." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "VLOOKUP Calc функцийн 4-р нэмэлт параметр нь өгөгдлийн эхний багана эрэмбэлэгдсэн эсэхийг заана. Хэрэв үгүй бол FALSE буюу тэгийг оруулна уу." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "Одоогийн Writer документээс мастер документ үүсгэх үү? Файл ▸ Илгээх ▸ Мастер баримт үүсгэх (дэд баримтууд нь тоймоос хамаарч үүсгэгддэг)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Calc дээр хэвлэсэн хуудсан дээрх нүднүүдийг төвлөрүүлэхийг хүсч байна уу? Формат ▸ Хуудас, Хуудас ▸ Байршлын тохиргоо ▸ Хүснэгтийн зэрэгцүүлэлт." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Хүснэгт дээр дараад Оруулах ▸ График-ийг сонгоод Writer хүснэгт дээр үндэслэн диаграм үүсгэнэ." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Writer дээр хэвлэгдэх боломжгүй тэмдэгтүүдийг ямар байдлаар харуулахыг тодорхойлохын тулд \"Хэрэгсэл ▸ Сонголтууд... ▸ %PRODUCTNAME Writer ▸ Формат тусламж ▸ Талбар: Форматыг харуул\"." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Тоогоор нь тодорхой хуудас руу очихыг хүсч байна уу? Зүүн талд байрлах статус самбарын оруулах товчийг дарах эсвэл Засах ▸ Хуудас руу... дээр дарна уу эсвэл %MOD1+G дарна уу." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME нь 150 гаруй хэлийг дэмждэг." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Та параграф, хүснэгтийн мөрийг цагаан толгойн ба тоон байдлаар Хэрэгсэл эрэмбэлэх замаар эрэмбэлэх боломжтой." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Хэсэг эхлэхээс өмнө (дараа) догол мөр оруулах бол энэ хэсгийн эхэнд (төгсгөлд) %MOD2+Enter дарна уу." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME нь харагдах загвар сайтай загвар загвартай тул үүнийг шалгана уу." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Зээлийн төлбөрийг Calc ашиглан тооцоолно уу. Жишээ нь: PMT (2%/12;36;2500), төлбөрийн хугацааны хүү 2%/12,36 сар, зээлийн хэмжээ 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Calc дээр VLOOKUP функцээр хүссэн зүйлээ олж чадахгүй байна уу? INDEX, MATCH-ийн тусламжтайгаар та бүх зүйлийг хийж чадна!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Нуугдсан A баганыг харуулахыг хүсэж байна уу? B багана дахь нүдийг товшоод, хулганы зүүн товчийг дарна уу, хулганаа зүүн тийш шилжүүлнэ үү. Дараа нь Формат ▸ Багана ▸ Шоугаар дамжуулан үүнийг асаана уу." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Writer дахь хуудасны дугаарыг өөрчлөхийн тулд эхний параграфын шинж чанарууд руу шилжиж, Текст урсгалын таб дээр Завсарлах ▸ Оруулахад дугаарыг оруулна уу." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME-г rollApp-ээр дамжуулан бүх хөтөч дээр ажиллуулаарай." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Calc, Err-д хачин алдааны код: дараа нь тоо байна уу? Энэ хуудас тайлбарыг өгч байна:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Агуулгын хүснэгтээс гадна %PRODUCTNAME нь цагаан толгой, зураг, хүснэгт, объект, ном зүй, ном зүй, хэрэглэгчийн тодорхойлсон индексүүдийг үүсгэх боломжтой." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Хүссэн нүдний хэв маягийг өөрчлөх, устгах боломжгүй байна уу? Бүх хуудсыг шалгаарай, аль нь ч хамгаалагдахгүй." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Нүд нь бусад эсийн томъёонд орсон эсэхийг мэдэхийг хүсч байна уу? Хэрэгслүүд ▸ Мөрдөгч ▸ Тренд хамааралтай хүмүүс (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Дээрх мөрийг хуулбарлахыг хүсч байна уу? %MOD1+D дарж эсхүл Хуудас ▸ Нүдийг бөглөх ▸ Бөглөх дээр оруулна." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Хэд хэдэн хүснэгтээс хайхын тулд хайлтыг эхлүүлэхийн өмнө тэдгээрээ сонгоно уу." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME нь Writer дээр хоёр буюу түүнээс дээш орон зай оруулахгүй байхад тусална. Хэрэгслүүдийг шалгах ▸ Авто засварлагч ▸ Автомат зөв залруулах сонголтууд ▸ Сонголтууд ▸ Хоёр орон зайг үл тоомсорлох." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Кальцад утгыг оруулсны дараа курсорыг баруун тал руу нь оруулахыг хүсч байна уу? Табын оронд Enter товчийг ашиглана уу." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "%PRODUCTNAME-ийн шинэ хувилбарууд нь шинэ шинж чанарууд, алдаа засварлалт болон аюулгүй байдлын засваруудыг өгдөг. Програм хангамжаа шинэчлээрэй." #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Шинэ XSLT болон XML шүүлтүүр боловсруулж болно." #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME тусламж" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Илүү мэдээлэл" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Тушаал" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/mni/cui/messages.po libreoffice-7.1.3~rc2/translations/source/mni/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/mni/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/mni/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Manipuri \n" @@ -2517,1071 +2517,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/mr/cui/messages.po libreoffice-7.1.3~rc2/translations/source/mr/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/mr/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/mr/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2469,1071 +2469,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/my/cui/messages.po libreoffice-7.1.3~rc2/translations/source/my/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/my/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/my/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2469,1071 +2469,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/accessibility/messages.po libreoffice-7.1.3~rc2/translations/source/nb/accessibility/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/accessibility/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/accessibility/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-07 14:09+0100\n" -"PO-Revision-Date: 2019-04-10 18:22+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554920529.000000\n" #. be4e7 @@ -44,19 +44,19 @@ #: accessibility/inc/strings.hrc:28 msgctxt "RID_STR_ACC_ACTION_UNCHECK" msgid "Uncheck" -msgstr "Fjern avkryssinga" +msgstr "Fjern avkryssingen" #. nk4DD #: accessibility/inc/strings.hrc:29 msgctxt "RID_STR_ACC_SCROLLBAR_NAME_VERTICAL" msgid "Vertical scroll bar" -msgstr "Loddrett rullefelt" +msgstr "Verticalt Rullefelt" #. FRA3z #: accessibility/inc/strings.hrc:30 msgctxt "RID_STR_ACC_SCROLLBAR_NAME_HORIZONTAL" msgid "Horizontal scroll bar" -msgstr "Vannrett rullefelt" +msgstr "Horisontalt rullefelt" #. DNmVr #: accessibility/inc/strings.hrc:31 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/basctl/messages.po libreoffice-7.1.3~rc2/translations/source/nb/basctl/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/basctl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/basctl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-10-06 20:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554918678.000000\n" #. fniWp @@ -598,7 +598,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:161 msgctxt "basicmacrodialog|extended_tip|macros" msgid "Lists the macros that are contained in the module selected in the Macro from list." -msgstr "Lister opp makroene som ligger i modulen du har valgt i lista Makro fra." +msgstr "Lister opp makroene som ligger i modulen du har valgt i listen Makro fra." #. 5TRqv #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:174 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/basic/messages.po libreoffice-7.1.3~rc2/translations/source/nb/basic/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/basic/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/basic/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:30+0100\n" -"PO-Revision-Date: 2017-10-05 22:57+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1507244270.000000\n" #. CacXi @@ -146,7 +146,7 @@ #: basic/inc/basic.hrc:47 msgctxt "RID_BASIC_START" msgid "File not found." -msgstr "Fant ikke fila." +msgstr "Fant ikke filen." #. RQB3i #: basic/inc/basic.hrc:48 @@ -158,7 +158,7 @@ #: basic/inc/basic.hrc:49 msgctxt "RID_BASIC_START" msgid "File already open." -msgstr "Fila er allerede åpen." +msgstr "Filen er allerede åpen." #. BRx4X #: basic/inc/basic.hrc:50 @@ -188,7 +188,7 @@ #: basic/inc/basic.hrc:54 msgctxt "RID_BASIC_START" msgid "Reading exceeds EOF." -msgstr "Lesing forbi slutten av fila." +msgstr "Lesing forbi slutten av filen." #. nuyE7 #: basic/inc/basic.hrc:55 @@ -380,7 +380,7 @@ #: basic/inc/basic.hrc:86 msgctxt "RID_BASIC_START" msgid "DDE requires the DDEML.DLL file." -msgstr "DDE trenger fila DDEML.DLL." +msgstr "DDE trenger filen DDEML.DLL." #. yfBfX #: basic/inc/basic.hrc:87 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/nb/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-23 20:36+0000\n" -"Last-Translator: kingu \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547645369.000000\n" #. NCRDD @@ -578,19 +578,19 @@ #: chart2/inc/strings.hrc:113 msgctxt "STR_ACTION_TOGGLE_LEGEND" msgid "Legend on/off" -msgstr "Vis/skjul forklaringa" +msgstr "Vis/skjul forklaringen" #. fnfBr #: chart2/inc/strings.hrc:114 msgctxt "STR_ACTION_TOGGLE_GRID_HORZ" msgid "Horizontal grid major/major&minor/off" -msgstr "Vannrett rutenett øvre/begge/av" +msgstr "Horisontalt rutenett stor?lille/av" #. jZDDr #: chart2/inc/strings.hrc:115 msgctxt "STR_ACTION_TOGGLE_GRID_VERTICAL" msgid "Vertical grid major/major&minor/off" -msgstr "Loddrett rutenett øvre/begge/av" +msgstr "Vertikalt rutenett Stor&lille/av" #. bZzzZ #: chart2/inc/strings.hrc:116 @@ -756,7 +756,7 @@ "Ignore this change and close the dialog?" msgstr "" "Dine siste inndata var feil.\n" -"Vil du overse denne endringa og lukke dialogvinduet?" +"Vil du overse denne endringen og lukke dialogvinduet?" #. Vx6bG #: chart2/inc/strings.hrc:143 @@ -1044,7 +1044,7 @@ #: chart2/inc/strings.hrc:193 msgctxt "STR_INVALID_TIME_UNIT" msgid "The major and minor interval need to be greater or equal to the resolution. Check your input." -msgstr "Hovedintervallet og støtteintervallet må være større eller lik løsninga. Kontroller det du skrev." +msgstr "Hovedintervallet og støtteintervallet må være større eller lik løsningen. Kontroller det du skrev." #. VVVyQ #: chart2/uiconfig/ui/3dviewdialog.ui:8 @@ -1284,7 +1284,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:201 msgctxt "dlg_DataLabel|PB_NUMBERFORMAT" msgid "Number _format..." -msgstr "Tall_format …" +msgstr "Tallformat …" #. yHa5z #: chart2/uiconfig/ui/dlg_DataLabel.ui:209 @@ -1314,7 +1314,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:260 msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR" msgid "_Separator" -msgstr "_Skilletegn" +msgstr "Skilletegn" #. m8qsr #: chart2/uiconfig/ui/dlg_DataLabel.ui:277 @@ -1482,7 +1482,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:503 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 "Angi tekstretninga for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." +msgstr "Angi tekstretningen for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." #. xpAEz #: chart2/uiconfig/ui/dlg_DataLabel.ui:528 @@ -1500,7 +1500,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:570 msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "Drar en linje som forbinder dataetikettene med datapunktene" #. UKVF9 #: chart2/uiconfig/ui/dlg_DataLabel.ui:588 @@ -1530,7 +1530,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:128 msgctxt "dlg_InsertErrorBars|RB_NONE" msgid "_None" -msgstr "I_ngen" +msgstr "Ingen" #. pvfsb #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:137 @@ -1542,7 +1542,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:149 msgctxt "dlg_InsertErrorBars|RB_CONST" msgid "_Constant Value" -msgstr "_Konstantverdi" +msgstr "Konstantverdi" #. oDzF5 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:159 @@ -1554,7 +1554,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171 msgctxt "dlg_InsertErrorBars|RB_PERCENT" msgid "_Percentage" -msgstr "_Prosent" +msgstr "Prosent" #. bGDm2 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:181 @@ -1602,7 +1602,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:248 msgctxt "dlg_InsertErrorBars|RB_RANGE" msgid "Cell _Range" -msgstr "_Celleområde" +msgstr "Celleområde" #. Vm5iS #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:258 @@ -1620,7 +1620,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:310 msgctxt "dlg_InsertErrorBars|RB_BOTH" msgid "Positive _and Negative" -msgstr "Positiv _og negativ" +msgstr "Positiv og negativ" #. aAhky #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:319 @@ -1632,7 +1632,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:330 msgctxt "dlg_InsertErrorBars|RB_POSITIVE" msgid "Pos_itive" -msgstr "Pos_itiv" +msgstr "Positiv" #. yXXuP #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:340 @@ -1644,7 +1644,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:351 msgctxt "dlg_InsertErrorBars|RB_NEGATIVE" msgid "Ne_gative" -msgstr "Ne_gativ" +msgstr "Negativ" #. KsYHq #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:361 @@ -1662,7 +1662,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:459 msgctxt "dlg_InsertErrorBars|FT_POSITIVE" msgid "P_ositive (+)" -msgstr "P_ositiv (+)" +msgstr "Positiv (+)" #. EHq4d #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:478 @@ -1692,7 +1692,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:542 msgctxt "dlg_InsertErrorBars|FT_NEGATIVE" msgid "_Negative (-)" -msgstr "_Negativ (-)" +msgstr "Negativ (-)" #. Hzr6X #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:561 @@ -1764,31 +1764,31 @@ #: chart2/uiconfig/ui/dlg_InsertLegend.ui:106 msgctxt "dlg_InsertLegend|show" msgid "_Display legend" -msgstr "_Vis forklaring" +msgstr "Vis forklaring" #. BbrEG #: chart2/uiconfig/ui/dlg_InsertLegend.ui:129 msgctxt "dlg_InsertLegend|left" msgid "_Left" -msgstr "_Venstre" +msgstr "Venstre" #. EdZ7j #: chart2/uiconfig/ui/dlg_InsertLegend.ui:145 msgctxt "dlg_InsertLegend|right" msgid "_Right" -msgstr "_Høyre" +msgstr "Høyre" #. PoZ9R #: chart2/uiconfig/ui/dlg_InsertLegend.ui:161 msgctxt "dlg_InsertLegend|top" msgid "_Top" -msgstr "Ø_verst" +msgstr "Øverst" #. Uvcht #: chart2/uiconfig/ui/dlg_InsertLegend.ui:177 msgctxt "dlg_InsertLegend|bottom" msgid "_Bottom" -msgstr "_Nederst" +msgstr "Nederst" #. bxdb5 #: chart2/uiconfig/ui/dlg_InsertLegend.ui:206 @@ -1806,7 +1806,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:106 msgctxt "insertaxisdlg|primaryX" msgid "_X axis" -msgstr "_X-akse" +msgstr "X-akse" #. QyAAw #: chart2/uiconfig/ui/insertaxisdlg.ui:115 @@ -1818,7 +1818,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:127 msgctxt "insertaxisdlg|primaryY" msgid "_Y axis" -msgstr "_Y-akse" +msgstr "Y-akse" #. 8ZzUp #: chart2/uiconfig/ui/insertaxisdlg.ui:136 @@ -1830,7 +1830,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:148 msgctxt "insertaxisdlg|primaryZ" msgid "_Z axis" -msgstr "_Z-akse" +msgstr "Z-akse" #. DgjxB #: chart2/uiconfig/ui/insertaxisdlg.ui:157 @@ -1848,7 +1848,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:211 msgctxt "insertaxisdlg|secondaryX" msgid "X _axis" -msgstr "X_akse" +msgstr "X-akse" #. JGQhE #: chart2/uiconfig/ui/insertaxisdlg.ui:220 @@ -1860,7 +1860,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:232 msgctxt "insertaxisdlg|secondaryY" msgid "Y ax_is" -msgstr "Y ak_se" +msgstr "Y akse" #. trDFK #: chart2/uiconfig/ui/insertaxisdlg.ui:241 @@ -1872,7 +1872,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:253 msgctxt "insertaxisdlg|secondaryZ" msgid "Z axi_s" -msgstr "Z-aks_e" +msgstr "Z-akse" #. 2LQwV #: chart2/uiconfig/ui/insertaxisdlg.ui:276 @@ -1896,7 +1896,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:106 msgctxt "insertgriddlg|primaryX" msgid "_X axis" -msgstr "_X-akse" +msgstr "X-akse" #. TeVcH #: chart2/uiconfig/ui/insertgriddlg.ui:115 @@ -1908,7 +1908,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:127 msgctxt "insertgriddlg|primaryY" msgid "_Y axis" -msgstr "_Y-akse" +msgstr "Y-akse" #. 6SmKJ #: chart2/uiconfig/ui/insertgriddlg.ui:136 @@ -1920,7 +1920,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:148 msgctxt "insertgriddlg|primaryZ" msgid "_Z axis" -msgstr "_Z-akse" +msgstr "Z-akse" #. bF4Eb #: chart2/uiconfig/ui/insertgriddlg.ui:157 @@ -1938,7 +1938,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:211 msgctxt "insertgriddlg|secondaryX" msgid "X _axis" -msgstr "X_akse" +msgstr "X-akse" #. cfAUn #: chart2/uiconfig/ui/insertgriddlg.ui:220 @@ -1950,7 +1950,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:232 msgctxt "insertgriddlg|secondaryY" msgid "Y ax_is" -msgstr "Y-a_kse" +msgstr "Y-akse" #. a3asH #: chart2/uiconfig/ui/insertgriddlg.ui:241 @@ -1962,7 +1962,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:253 msgctxt "insertgriddlg|secondaryZ" msgid "Z axi_s" -msgstr "Z-ak_se" +msgstr "Z-akse" #. hcj99 #: chart2/uiconfig/ui/insertgriddlg.ui:262 @@ -1980,7 +1980,7 @@ #: 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 "Du kan dele aksaee i mindre avsnitt ved å tildele rutenett til de. Dette gir enbedre oversikt over diagrammet, spesielt hvis du arbeider med store diagram." +msgstr "Du kan dele aksene i mindre avsnitt ved å tildele rutenett til de. Dette gir enbedre oversikt over diagrammet, spesielt hvis du arbeider med store diagram" #. rqADt #: chart2/uiconfig/ui/inserttitledlg.ui:8 @@ -1992,13 +1992,13 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:92 msgctxt "inserttitledlg|labelMainTitle" msgid "_Title" -msgstr "_Tittel" +msgstr "Tittel" #. ZBgRn #: chart2/uiconfig/ui/inserttitledlg.ui:106 msgctxt "inserttitledlg|labelSubTitle" msgid "_Subtitle" -msgstr "_Undertittel" +msgstr "Undertittel" #. aCRZ7 #: chart2/uiconfig/ui/inserttitledlg.ui:125 @@ -2016,19 +2016,19 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:182 msgctxt "inserttitledlg|labelPrimaryXaxis" msgid "_X axis" -msgstr "_X-akse" +msgstr "X-akse" #. RhsUT #: chart2/uiconfig/ui/inserttitledlg.ui:196 msgctxt "inserttitledlg|labelPrimaryYaxis" msgid "_Y axis" -msgstr "_Y-akse" +msgstr "Y-akse" #. ypJFt #: chart2/uiconfig/ui/inserttitledlg.ui:210 msgctxt "inserttitledlg|labelPrimaryZaxis" msgid "_Z axis" -msgstr "_Z-akse" +msgstr "Z-akse" #. qz8WP #: chart2/uiconfig/ui/inserttitledlg.ui:229 @@ -2058,13 +2058,13 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:318 msgctxt "inserttitledlg|labelSecondaryXAxis" msgid "X _axis" -msgstr "_X-akse" +msgstr "X-akse" #. Tq7G9 #: chart2/uiconfig/ui/inserttitledlg.ui:332 msgctxt "inserttitledlg|labelSecondaryYAxis" msgid "Y ax_is" -msgstr "_Y-akse" +msgstr "Y-akse" #. EsHDi #: chart2/uiconfig/ui/inserttitledlg.ui:351 @@ -2088,7 +2088,7 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:418 msgctxt "inserttitledlg|extended_tip|InsertTitleDialog" msgid "Opens a dialog to enter or modify the titles in a chart." -msgstr " Åpner et dialogvindu for å skrive inn eller endre titler i en tabell.." +msgstr "Åpner et dialogvindu for å skrive inn eller endre titler i en tabell.." #. 23FsQ #: chart2/uiconfig/ui/paradialog.ui:8 @@ -2124,7 +2124,7 @@ #: chart2/uiconfig/ui/sidebaraxis.ui:24 msgctxt "sidebaraxis|checkbutton_show_label" msgid "Show labels" -msgstr "_Vis etiketter" +msgstr "Vis etiketter" #. 52BFU #: chart2/uiconfig/ui/sidebaraxis.ui:39 @@ -2136,7 +2136,7 @@ #: chart2/uiconfig/ui/sidebaraxis.ui:65 msgctxt "sidebaraxis|label1" msgid "_Label position:" -msgstr "_Etikett plassering" +msgstr "Etikett plassering" #. JpV6N #: chart2/uiconfig/ui/sidebaraxis.ui:79 @@ -2202,7 +2202,7 @@ #: chart2/uiconfig/ui/sidebarelements.ui:169 msgctxt "sidebarelements|placement_label" msgid "_Placement:" -msgstr "_Plassering" +msgstr "Plassering" #. N9Vw3 #: chart2/uiconfig/ui/sidebarelements.ui:185 @@ -2310,25 +2310,25 @@ #: chart2/uiconfig/ui/sidebarelements.ui:448 msgctxt "sidebarelements|checkbutton_gridline_horizontal_major" msgid "Horizontal major" -msgstr "Vannrett storakse" +msgstr "Horisontal storakse" #. FYBSZ #: chart2/uiconfig/ui/sidebarelements.ui:463 msgctxt "sidebarelements|checkbutton_gridline_vertical_major" msgid "Vertical major" -msgstr "Loddrett storakse" +msgstr "Vertikal storakse" #. VCTTS #: chart2/uiconfig/ui/sidebarelements.ui:478 msgctxt "sidebarelements|checkbutton_gridline_horizontal_minor" msgid "Horizontal minor" -msgstr "Vannrett lilleakse" +msgstr "Horisontal lilleakse" #. QDFEZ #: chart2/uiconfig/ui/sidebarelements.ui:493 msgctxt "sidebarelements|checkbutton_gridline_vertical_minor" msgid "Vertical minor" -msgstr "Loddrett lilleakse" +msgstr "Vertikal lilleakse" #. yeE2v #: chart2/uiconfig/ui/sidebarelements.ui:514 @@ -2454,7 +2454,7 @@ #: chart2/uiconfig/ui/sidebarseries.ui:69 msgctxt "sidebarseries|label_box" msgid "P_lacement:" -msgstr "Pla_ssering:" +msgstr "Plassering:" #. Dk3GN #: chart2/uiconfig/ui/sidebarseries.ui:84 @@ -2640,7 +2640,7 @@ #: chart2/uiconfig/ui/smoothlinesdlg.ui:114 msgctxt "smoothlinesdlg|TypeLabel" msgid "Line _Type:" -msgstr "Linje_type:" +msgstr "Linjetype:" #. Nkqhi #: chart2/uiconfig/ui/smoothlinesdlg.ui:131 @@ -2664,25 +2664,25 @@ #: chart2/uiconfig/ui/smoothlinesdlg.ui:171 msgctxt "smoothlinesdlg|ResolutionLabel" msgid "_Resolution:" -msgstr "_Oppløsning" +msgstr "Oppløsning" #. AdG5v #: chart2/uiconfig/ui/smoothlinesdlg.ui:185 msgctxt "smoothlinesdlg|PolynomialsLabel" msgid "_Degree of polynomials:" -msgstr "_Graden av polynomer:" +msgstr "Graden av polynomer:" #. X35yY #: chart2/uiconfig/ui/smoothlinesdlg.ui:203 msgctxt "smoothlinesdlg|extended_tip|ResolutionSpinbutton" msgid "Set the resolution." -msgstr "Angi oppløsninga." +msgstr "Angi oppløsningen." #. a4btg #: chart2/uiconfig/ui/smoothlinesdlg.ui:221 msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton" msgid "Set the degree of the polynomials." -msgstr "Angi oppløsninga." +msgstr "Angi oppløsningen." #. YECJR #: chart2/uiconfig/ui/smoothlinesdlg.ui:255 @@ -2694,49 +2694,49 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:132 msgctxt "steppedlinesdlg|step_start_rb" msgid "_Start with horizontal line" -msgstr "_Start med en vannrett linje" +msgstr "Start med en horisontal linje" #. Zcr4L #: chart2/uiconfig/ui/steppedlinesdlg.ui:142 msgctxt "steppedlinesdlg|extended_tip|step_start_rb" msgid "Start with horizontal line and step up vertically at the end." -msgstr "Start med en vannrett linje og øk gradvis til loddrett." +msgstr "Start med en horisontal linje og øk gradvis til Vertikal." #. iJCAt #: chart2/uiconfig/ui/steppedlinesdlg.ui:153 msgctxt "steppedlinesdlg|step_center_x_rb" msgid "Step at the _horizontal mean" -msgstr "Steg ved den _vannrette midtlinja" +msgstr "Steg ved den horisontale midtlinjen" #. D5DGL #: chart2/uiconfig/ui/steppedlinesdlg.ui:164 msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb" msgid "Start to step up vertically and end with horizontal line." -msgstr "Start med loddrett og minsk til du når en vannrett linje." +msgstr "Start med vertikal og minsk til du når en horisontal linje." #. vtGik #: chart2/uiconfig/ui/steppedlinesdlg.ui:175 msgctxt "steppedlinesdlg|step_end_rb" msgid "_End with horizontal line" -msgstr "_Avslutt med en vannrett linje" +msgstr "Avslutt med en horisontal linje" #. nGAhe #: chart2/uiconfig/ui/steppedlinesdlg.ui:186 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 "Start med en vannrett linje, og gradvis øk til en loddrett linje." +msgstr "Start med en horisontal linje, og gradvis øk til en vertikal linje." #. X3536 #: chart2/uiconfig/ui/steppedlinesdlg.ui:197 msgctxt "steppedlinesdlg|step_center_y_rb" msgid "Step to the _vertical mean" -msgstr "Steg ved den _loddrette midtlinja" +msgstr "Steg ved den vertikale midtlinjen" #. S528C #: chart2/uiconfig/ui/steppedlinesdlg.ui:208 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 "Start med å gå loddrett opp til midten av y-verdiene, teig en vannrett linje og avslutt med å gå loddrett til slutt." +msgstr "Start med å gå vertikalt opp til midten av y-verdiene, tegn en horisontal linje og avslutt med å gå vertikalt til slutt." #. oDDMr #: chart2/uiconfig/ui/steppedlinesdlg.ui:236 @@ -2748,25 +2748,25 @@ #: chart2/uiconfig/ui/titlerotationtabpage.ui:47 msgctxt "titlerotationtabpage|extended_tip|OrientDegree" msgid "Allows you to manually enter the orientation angle." -msgstr "Gir deg muligheten til å manuelt sette vinkelen på tekstretninga." +msgstr "Gir deg muligheten til å manuelt sette vinkelen på tekstretningen." #. ViJ9k #: chart2/uiconfig/ui/titlerotationtabpage.ui:61 msgctxt "titlerotationtabpage|degreeL" msgid "_Degrees" -msgstr "_Grader" +msgstr "Grader" #. tv9xJ #: chart2/uiconfig/ui/titlerotationtabpage.ui:96 msgctxt "titlerotationtabpage|stackedCB" msgid "Ve_rtically stacked" -msgstr "_Loddrett stabling" +msgstr "Vertikal stabling" #. VGDph #: chart2/uiconfig/ui/titlerotationtabpage.ui:106 msgctxt "titlerotationtabpage|extended_tip|stackedCB" msgid "Assigns vertical text orientation for cell contents." -msgstr "Bruk loddrett tekstretning på innholdet i cellene." +msgstr "Bruk vertikal tekstretning på innholdet i cellene." #. 3BaMa #: chart2/uiconfig/ui/titlerotationtabpage.ui:118 @@ -2778,13 +2778,13 @@ #: chart2/uiconfig/ui/titlerotationtabpage.ui:135 msgctxt "titlerotationtabpage|textdirL" msgid "Te_xt direction:" -msgstr "Tek_stretning:" +msgstr "Tekstretning:" #. i5UYm #: chart2/uiconfig/ui/titlerotationtabpage.ui:149 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 "Angi tekstretninga for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." +msgstr "Angi tekstretningen for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." #. 9cDiw #: chart2/uiconfig/ui/titlerotationtabpage.ui:168 @@ -2802,7 +2802,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:20 msgctxt "tp_3D_SceneAppearance|FT_SCHEME" msgid "Sche_me" -msgstr "Skje_ma" +msgstr "Skjema" #. 4uCgf #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:36 @@ -2826,13 +2826,13 @@ #: 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 "Velg et utseende fra lista eller slå av eller på noen av valgene nedenfor." +msgstr "Velg et utseende fra listen eller slå av eller på noen av valgene nedenfor." #. EyGsf #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78 msgctxt "tp_3D_SceneAppearance|CB_SHADING" msgid "_Shading" -msgstr "_Skyggelegging" +msgstr "Skyggelegging" #. W68hV #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:87 @@ -2844,7 +2844,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:99 msgctxt "tp_3D_SceneAppearance|CB_OBJECTLINES" msgid "_Object borders" -msgstr "_Objektkanter" +msgstr "Objektkanter" #. CQjGV #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:108 @@ -2856,7 +2856,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:120 msgctxt "tp_3D_SceneAppearance|CB_ROUNDEDEDGE" msgid "_Rounded edges" -msgstr "Av_rundede kanter" +msgstr "Avrundede kanter" #. c5pNB #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:129 @@ -2868,7 +2868,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:37 msgctxt "tp_3D_SceneGeometry|CBX_RIGHT_ANGLED_AXES" msgid "_Right-angled axes" -msgstr "_Rettvinklede akser" +msgstr "Rettvinklede akser" #. QxmLn #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:46 @@ -2880,25 +2880,25 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:60 msgctxt "tp_3D_SceneGeometry|FT_X_ROTATION" msgid "_X rotation" -msgstr "_X-rotasjon" +msgstr "X-rotasjon" #. TJ2Xp #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:74 msgctxt "tp_3D_SceneGeometry|FT_Y_ROTATION" msgid "_Y rotation" -msgstr "_Y-rotasjon" +msgstr "Y-rotasjon" #. UTAG5 #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:88 msgctxt "tp_3D_SceneGeometry|FT_Z_ROTATION" msgid "_Z rotation" -msgstr "_Z-rotasjon" +msgstr "Z-rotasjon" #. ZC8ZQ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:100 msgctxt "tp_3D_SceneGeometry|CBX_PERSPECTIVE" msgid "_Perspective" -msgstr "_Perspektiv" +msgstr "Perspektiv" #. xyePC #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:112 @@ -3054,7 +3054,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:312 msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE" msgid "_Light Source" -msgstr "_Lyskilde" +msgstr "Lyskilde" #. WssJA #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:358 @@ -3078,7 +3078,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:395 msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT" msgid "_Ambient Light" -msgstr "" +msgstr "Ambient Lys" #. snUGf #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:439 @@ -3096,7 +3096,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:48 msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT" msgid "_Cross other axis at" -msgstr "_Kryss andre akser ved" +msgstr "Kryss andre akser ved" #. Z734o #: chart2/uiconfig/ui/tp_AxisPositions.ui:64 @@ -3126,25 +3126,25 @@ #: 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 "Velg hvor akselinja skal krysse andre akser: ved begynnelsen, slutten, en bestemt verdi eller en kategori." +msgstr "Velg hvor akselinjen skal krysse andre akser: ved begynnelsen, slutten, en bestemt verdi eller en kategori." #. FwCEp #: chart2/uiconfig/ui/tp_AxisPositions.ui:90 msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT" msgid "Enter the value where the axis line should cross the other axis." -msgstr "Skriv inn verdien der akselinja skal krysse andre akser." +msgstr "Skriv inn verdien der akselinjen skal krysse andre akser." #. AnLbY #: chart2/uiconfig/ui/tp_AxisPositions.ui:114 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 "Velg ved hvilken kategori akselinja skal krysse andre akser." +msgstr "Velg ved hvilken kategori akselinjen skal krysse andre akser." #. VYVhe #: chart2/uiconfig/ui/tp_AxisPositions.ui:133 msgctxt "tp_AxisPositions|CB_AXIS_BETWEEN_CATEGORIES" msgid "Axis _between categories" -msgstr "Akse _mellom kategorier" +msgstr "Akse mellom kategorier" #. bW7T9 #: chart2/uiconfig/ui/tp_AxisPositions.ui:154 @@ -3186,7 +3186,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:276 msgctxt "tp_AxisPositions|FT_PLACE_LABELS" msgid "_Place labels" -msgstr "_Plasser overskrifter" +msgstr "Plasser overskrifter" #. GDk2L #: chart2/uiconfig/ui/tp_AxisPositions.ui:292 @@ -3222,7 +3222,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:324 msgctxt "tp_AxisPositions|FT_AXIS_LABEL_DISTANCE" msgid "_Distance" -msgstr "_Distanse" +msgstr "Distanse" #. Hkjze #: chart2/uiconfig/ui/tp_AxisPositions.ui:363 @@ -3246,7 +3246,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:436 msgctxt "tp_AxisPositions|CB_TICKS_INNER" msgid "_Inner" -msgstr "_Indre" +msgstr "Indre" #. DpVNk #: chart2/uiconfig/ui/tp_AxisPositions.ui:448 @@ -3258,7 +3258,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:459 msgctxt "tp_AxisPositions|CB_TICKS_OUTER" msgid "_Outer" -msgstr "_Ytre" +msgstr "Ytre" #. DGWEb #: chart2/uiconfig/ui/tp_AxisPositions.ui:471 @@ -3270,7 +3270,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:482 msgctxt "tp_AxisPositions|CB_MINOR_INNER" msgid "I_nner" -msgstr "I_ndre" +msgstr "Indre" #. jbRx3 #: chart2/uiconfig/ui/tp_AxisPositions.ui:494 @@ -3282,7 +3282,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:505 msgctxt "tp_AxisPositions|CB_MINOR_OUTER" msgid "O_uter" -msgstr "Y_tre" +msgstr "Ytre" #. JAi2f #: chart2/uiconfig/ui/tp_AxisPositions.ui:517 @@ -3294,7 +3294,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:542 msgctxt "tp_AxisPositions|FT_PLACE_TICKS" msgid "Place _marks" -msgstr "Plasser _merke" +msgstr "Plasser merke" #. mvGBB #: chart2/uiconfig/ui/tp_AxisPositions.ui:558 @@ -3330,25 +3330,25 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:623 msgctxt "tp_AxisPositions|CB_MAJOR_GRID" msgid "Show major _grid" -msgstr "Vis _hovedrutenettet" +msgstr "Vis hovedrutenettet" #. 7c2Hs #: chart2/uiconfig/ui/tp_AxisPositions.ui:639 msgctxt "tp_AxisPositions|CB_MINOR_GRID" msgid "_Show minor grid" -msgstr "Vis _støtterutenett" +msgstr "Vis støtterutenett" #. Dp5Ar #: chart2/uiconfig/ui/tp_AxisPositions.ui:654 msgctxt "tp_AxisPositions|PB_MAJOR_GRID" msgid "Mo_re..." -msgstr "Me_r …" +msgstr "Mer …" #. k5VQQ #: chart2/uiconfig/ui/tp_AxisPositions.ui:667 msgctxt "tp_AxisPositions|PB_MINOR_GRID" msgid "Mor_e..." -msgstr "Me_r …" +msgstr "Mer …" #. 7eDLK #: chart2/uiconfig/ui/tp_AxisPositions.ui:687 @@ -3372,7 +3372,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:123 msgctxt "tp_ChartType|3dlook" msgid "_3D Look" -msgstr "_3D-utseende" +msgstr "3D-utseende" #. EB95g #: chart2/uiconfig/ui/tp_ChartType.ui:134 @@ -3402,19 +3402,19 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:174 msgctxt "tp_ChartType|shapeft" msgid "Sh_ape" -msgstr "_Form" +msgstr "Form" #. CCA3V #: chart2/uiconfig/ui/tp_ChartType.ui:217 msgctxt "tp_ChartType|extended_tip|shape" msgid "Select a shape from the list." -msgstr "Velg en form fra lista." +msgstr "Velg en form fra listen." #. G2u4D #: chart2/uiconfig/ui/tp_ChartType.ui:242 msgctxt "tp_ChartType|stack" msgid "_Stack series" -msgstr "_Stable serier" +msgstr "Stable serier" #. h8wCq #: chart2/uiconfig/ui/tp_ChartType.ui:250 @@ -3456,7 +3456,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:342 msgctxt "tp_ChartType|linetypeft" msgid "_Line type" -msgstr "_Linjetype" +msgstr "Linjetype" #. RbyB4 #: chart2/uiconfig/ui/tp_ChartType.ui:356 @@ -3498,7 +3498,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:396 msgctxt "tp_ChartType|sort" msgid "_Sort by X values" -msgstr "_Sorter etter X-verdier" +msgstr "Sorter etter X-verdier" #. tbgi3 #: chart2/uiconfig/ui/tp_ChartType.ui:404 @@ -3510,7 +3510,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:423 msgctxt "tp_ChartType|nolinesft" msgid "_Number of lines" -msgstr "_Antall linjer" +msgstr "Antall linjer" #. bBgDJ #: chart2/uiconfig/ui/tp_ChartType.ui:443 @@ -3576,13 +3576,13 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:118 msgctxt "tp_DataLabel|CB_WRAP_TEXT" msgid "Auto text _wrap" -msgstr "Automatisk tekst_bryting" +msgstr "Automatisk tekstbryting" #. tgNDD #: chart2/uiconfig/ui/tp_DataLabel.ui:133 msgctxt "tp_DataLabel|PB_NUMBERFORMAT" msgid "Number _format..." -msgstr "Tall_format …" +msgstr "Tallformat …" #. nzq24 #: chart2/uiconfig/ui/tp_DataLabel.ui:141 @@ -3612,7 +3612,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:192 msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR" msgid "_Separator" -msgstr "_Skilletegn" +msgstr "Skilletegn" #. oPhGH #: chart2/uiconfig/ui/tp_DataLabel.ui:209 @@ -3654,7 +3654,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:243 msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT" msgid "Place_ment" -msgstr "Plass_ering" +msgstr "Plassering" #. L2MYb #: chart2/uiconfig/ui/tp_DataLabel.ui:260 @@ -3768,19 +3768,19 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:393 msgctxt "tp_DataLabel|FT_LABEL_DEGREES" msgid "_Degrees" -msgstr "_Grader" +msgstr "Grader" #. zdP7E #: chart2/uiconfig/ui/tp_DataLabel.ui:418 msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR" msgid "Te_xt direction" -msgstr "_Tekstretning" +msgstr "Tekstretning" #. MYXZo #: chart2/uiconfig/ui/tp_DataLabel.ui:435 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 "Angi tekstretninga for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." +msgstr "Angi tekstretningen for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." #. PKnKk #: chart2/uiconfig/ui/tp_DataLabel.ui:460 @@ -3798,7 +3798,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:502 msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "Drar en linje som forbinder dataetikettene med datapunktene" #. MBFBB #: chart2/uiconfig/ui/tp_DataLabel.ui:520 @@ -3846,25 +3846,25 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:73 msgctxt "tp_DataSource|FT_SERIES" msgid "Data _series:" -msgstr "Data_serier:" +msgstr "Dataserier:" #. oFoeg #: chart2/uiconfig/ui/tp_DataSource.ui:116 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 "Viser en liste over alle dataseriene i diagrammet. Velg en dataserie for å se og endre på den. Velg Legg til for å sette inn en ny serie i lista etter den valgte serien." +msgstr "Viser en liste over alle dataseriene i diagrammet. Velg en dataserie for å se og endre på den. Velg Legg til for å sette inn en ny serie i listen etter den valgte serien." #. rqABh #: chart2/uiconfig/ui/tp_DataSource.ui:137 msgctxt "tp_DataSource|BTN_ADD" msgid "_Add" -msgstr "_Legg til" +msgstr "Legg til" #. AExBB #: chart2/uiconfig/ui/tp_DataSource.ui:145 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 "Legger til en ny dataserie etter den gjeldende serien i lista. Hvis en serie er valgt, får den nye serien samme type som den valgte serien." +msgstr "Legger til en ny dataserie etter den gjeldende serien i listen. Hvis en serie er valgt, får den nye serien samme type som den valgte serien." #. dCyXA #: chart2/uiconfig/ui/tp_DataSource.ui:163 @@ -3876,19 +3876,19 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:164 msgctxt "tp_DataSource|extended_tip|BTN_UP" msgid "Moves up the selected entry in the Data Series list." -msgstr "Flytter den valgte dataserien opp i lista." +msgstr "Flytter den valgte dataserien opp i listen." #. 3v9x2 #: chart2/uiconfig/ui/tp_DataSource.ui:175 msgctxt "tp_DataSource|BTN_REMOVE" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. BDDwm #: chart2/uiconfig/ui/tp_DataSource.ui:183 msgctxt "tp_DataSource|extended_tip|BTN_REMOVE" msgid "Removes the selected entry from the Data Series list." -msgstr "Fjerner den valgte dataserien fra lista." +msgstr "Fjerner den valgte dataserien fra listen." #. MkZNf #: chart2/uiconfig/ui/tp_DataSource.ui:201 @@ -3900,49 +3900,49 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:202 msgctxt "tp_DataSource|extended_tip|BTN_DOWN" msgid "Moves down the selected entry in the Data Series list." -msgstr "Flytter den valgte dataserien ned i lista." +msgstr "Flytter den valgte dataserien ned i listen." #. mC5Ge #: chart2/uiconfig/ui/tp_DataSource.ui:244 msgctxt "tp_DataSource|FT_ROLE" msgid "_Data ranges:" -msgstr "_Dataområder:" +msgstr "Dataområder:" #. ZB6Dv #: chart2/uiconfig/ui/tp_DataSource.ui:297 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 "Viser alle dataområdene brukt av dataserien som er valgt i lista Dataserier. Hver dataserie viser rollenavnet og kileområdets adresse." +msgstr "Viser alle dataområdene brukt av dataserien som er valgt i listenn Dataserier. Hver dataserie viser rollenavnet og kileområdets adresse." #. qRMfs #: chart2/uiconfig/ui/tp_DataSource.ui:312 msgctxt "tp_DataSource|FT_RANGE" msgid "Ran_ge for %VALUETYPE" -msgstr "_Område for %VALUETYPE" +msgstr "Område for %VALUETYPE" #. M2BSw #: chart2/uiconfig/ui/tp_DataSource.ui:338 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 "Viser kildeområdets adresse fra den andre kolonnen i listen Dataområde. Du kan endre området i tekstfeltet eller ved å dra med musa i dokumentet. Velg Velg dataområde i Calc for å forminske dialogen og velge området med musa." +msgstr "Viser kildeområdets adresse fra den andre kolonnen i listen Dataområde. Du kan endre området i tekstfeltet eller ved å dra med musa i dokumentet. Velg Velg dataområde i Calc for å forminske dialogen og velge området med musen." #. CwKet #: chart2/uiconfig/ui/tp_DataSource.ui:355 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 "Viser kildeområdets adresse fra den andre kolonnen i listen Dataområde. Du kan endre området i tekstfeltet eller ved å dra med musa i dokumentet. Velg Velg dataområde i Calc for å forminske dialogen og velge området med musa." +msgstr "Viser kildeområdets adresse fra den andre kolonnen i listen Dataområde. Du kan endre området i tekstfeltet eller ved å dra med musa i dokumentet. Velg Velg dataområde i Calc for å forminske dialogen og velge området med musen." #. FX2CF #: chart2/uiconfig/ui/tp_DataSource.ui:380 msgctxt "tp_DataSource|FT_CATEGORIES" msgid "_Categories" -msgstr "_Kategorier" +msgstr "Kategorier" #. EiwXn #: chart2/uiconfig/ui/tp_DataSource.ui:394 msgctxt "tp_DataSource|FT_DATALABELS" msgid "Data _labels" -msgstr "Data_overskrifter" +msgstr "Dataoverskrifter" #. ogTbE #: chart2/uiconfig/ui/tp_DataSource.ui:425 @@ -3960,13 +3960,13 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:479 msgctxt "tp_DataSource|FT_CAPTION_FOR_WIZARD" msgid "Customize Data Ranges for Individual Data Series" -msgstr "Tilpass dataområda til de enkelte dataseriene" +msgstr "Tilpass dataområdene til de enkelte dataseriene" #. tGqhN #: chart2/uiconfig/ui/tp_ErrorBars.ui:57 msgctxt "tp_ErrorBars|RB_NONE" msgid "_None" -msgstr "I_ngen" +msgstr "Ingen" #. YVhm9 #: chart2/uiconfig/ui/tp_ErrorBars.ui:68 @@ -3978,7 +3978,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:80 msgctxt "tp_ErrorBars|RB_CONST" msgid "_Constant Value" -msgstr "_Konstantverdi" +msgstr "Konstantverdi" #. Aetuh #: chart2/uiconfig/ui/tp_ErrorBars.ui:91 @@ -3990,7 +3990,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:103 msgctxt "tp_ErrorBars|RB_PERCENT" msgid "_Percentage" -msgstr "_Prosent" +msgstr "Prosent" #. kqgrm #: chart2/uiconfig/ui/tp_ErrorBars.ui:114 @@ -4038,7 +4038,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:182 msgctxt "tp_ErrorBars|RB_RANGE" msgid "Cell _Range" -msgstr "_Celleområde" +msgstr "Celleområde" #. x3uW3 #: chart2/uiconfig/ui/tp_ErrorBars.ui:193 @@ -4068,7 +4068,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:268 msgctxt "tp_ErrorBars|RB_POSITIVE" msgid "Pos_itive" -msgstr "Pos_itiv" +msgstr "Positiv" #. oSnnp #: chart2/uiconfig/ui/tp_ErrorBars.ui:279 @@ -4080,7 +4080,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:290 msgctxt "tp_ErrorBars|RB_NEGATIVE" msgid "Ne_gative" -msgstr "Ne_gativ" +msgstr "Negativ" #. DvqJN #: chart2/uiconfig/ui/tp_ErrorBars.ui:301 @@ -4098,7 +4098,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:399 msgctxt "tp_ErrorBars|FT_POSITIVE" msgid "P_ositive (+)" -msgstr "P_ositiv (+)" +msgstr "Positiv (+)" #. 7bDeP #: chart2/uiconfig/ui/tp_ErrorBars.ui:418 @@ -4122,13 +4122,13 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:456 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 "Trykk på en av knappene for å forminske dialogvinduet. Nå kan du bruke musa til å velge et celleområde i regnearket. Trykk på knappen igjen for å gå tilbake til full størrelse." +msgstr "Trykk på en av knappene for å forminske dialogvinduet. Nå kan du bruke musen til å velge et celleområde i regnearket. Trykk på knappen igjen for å gå tilbake til full størrelse." #. C5ZdQ #: chart2/uiconfig/ui/tp_ErrorBars.ui:482 msgctxt "tp_ErrorBars|FT_NEGATIVE" msgid "_Negative (-)" -msgstr "_Negativ (-)" +msgstr "Negativ (-)" #. TAAD2 #: chart2/uiconfig/ui/tp_ErrorBars.ui:501 @@ -4194,7 +4194,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:31 msgctxt "tp_LegendPosition|left" msgid "_Left" -msgstr "_Venstre" +msgstr "Venstre" #. 98N4N #: chart2/uiconfig/ui/tp_LegendPosition.ui:40 @@ -4206,7 +4206,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:51 msgctxt "tp_LegendPosition|right" msgid "_Right" -msgstr "_Høyre" +msgstr "Høyre" #. BgNsc #: chart2/uiconfig/ui/tp_LegendPosition.ui:61 @@ -4218,7 +4218,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:72 msgctxt "tp_LegendPosition|top" msgid "_Top" -msgstr "Ø_verst" +msgstr "Øverst" #. GppCU #: chart2/uiconfig/ui/tp_LegendPosition.ui:82 @@ -4230,7 +4230,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:93 msgctxt "tp_LegendPosition|bottom" msgid "_Bottom" -msgstr "_Nederst" +msgstr "Nederst" #. dvBdX #: chart2/uiconfig/ui/tp_LegendPosition.ui:103 @@ -4248,13 +4248,13 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:155 msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR" msgid "Te_xt direction" -msgstr "_Tekstretning" +msgstr "Tekstretning" #. PSPoQ #: chart2/uiconfig/ui/tp_LegendPosition.ui:171 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 "Angi tekstretninga for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." +msgstr "Angi tekstretningen for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." #. sUDkC #: chart2/uiconfig/ui/tp_LegendPosition.ui:189 @@ -4284,13 +4284,13 @@ #: chart2/uiconfig/ui/tp_PolarOptions.ui:30 msgctxt "tp_PolarOptions|CB_CLOCKWISE" msgid "_Clockwise direction" -msgstr "_Med klokka" +msgstr "Med klokka" #. 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 "Standardretningen på kakestykkene i kakediagrammer er mot klokka. Velg Mot klokka for å tegne opp kakestykkene i motsatt retning." +msgstr "Standardretningen på kakestykkene i kakediagrammer er mot klokken. Velg Mot klokka for å tegne opp kakestykkene i motsatt retning." #. ATHCu #: chart2/uiconfig/ui/tp_PolarOptions.ui:50 @@ -4314,7 +4314,7 @@ #: chart2/uiconfig/ui/tp_PolarOptions.ui:124 msgctxt "tp_PolarOptions|FT_ROTATION_DEGREES" msgid "_Degrees" -msgstr "_Grader" +msgstr "Grader" #. iHLKn #: chart2/uiconfig/ui/tp_PolarOptions.ui:143 @@ -4326,7 +4326,7 @@ #: chart2/uiconfig/ui/tp_PolarOptions.ui:171 msgctxt "tp_PolarOptions|CB_INCLUDE_HIDDEN_CELLS_POLAR" msgid "Include _values from hidden cells" -msgstr "Ta med _verdier fra skjulte celler" +msgstr "Ta med verdier fra skjulte celler" #. F5FTp #: chart2/uiconfig/ui/tp_PolarOptions.ui:186 @@ -4350,7 +4350,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:50 msgctxt "tp_RangeChooser|FT_RANGE" msgid "_Data range:" -msgstr "_Dataområde:" +msgstr "Dataområde:" #. WKLi7 #: chart2/uiconfig/ui/tp_RangeChooser.ui:69 @@ -4374,7 +4374,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:104 msgctxt "tp_RangeChooser|RB_DATAROWS" msgid "Data series in _rows" -msgstr "Dataserier i _rader" +msgstr "Dataserier i rader" #. w6DuB #: chart2/uiconfig/ui/tp_RangeChooser.ui:114 @@ -4386,7 +4386,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:125 msgctxt "tp_RangeChooser|RB_DATACOLS" msgid "Data series in _columns" -msgstr "Dataserier i _kolonner" +msgstr "Dataserier i kolonner" #. RfFZF #: chart2/uiconfig/ui/tp_RangeChooser.ui:135 @@ -4398,7 +4398,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:146 msgctxt "tp_RangeChooser|CB_FIRST_ROW_ASLABELS" msgid "_First row as label" -msgstr "Første _rad som overskrift" +msgstr "Første rad som overskrift" #. HviBv #: chart2/uiconfig/ui/tp_RangeChooser.ui:155 @@ -4410,7 +4410,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:166 msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS" msgid "F_irst column as label" -msgstr "Første _kolonne som overskrift" +msgstr "Første kolonne som overskrift" #. tTAhH #: chart2/uiconfig/ui/tp_RangeChooser.ui:175 @@ -4446,7 +4446,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:59 msgctxt "tp_Scale|CBX_REVERSE" msgid "_Reverse direction" -msgstr "_Omvendt retning" +msgstr "Omvendt retning" #. DNJFK #: chart2/uiconfig/ui/tp_Scale.ui:68 @@ -4458,7 +4458,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:80 msgctxt "tp_Scale|CBX_LOGARITHM" msgid "_Logarithmic scale" -msgstr "_Logaritmisk skala" +msgstr "Logaritmisk skala" #. 3wDMa #: chart2/uiconfig/ui/tp_Scale.ui:89 @@ -4500,25 +4500,25 @@ #: chart2/uiconfig/ui/tp_Scale.ui:165 msgctxt "tp_Scale|TXT_MIN" msgid "_Minimum" -msgstr "_Minimum" +msgstr "Minimum" #. XUKzj #: chart2/uiconfig/ui/tp_Scale.ui:179 msgctxt "tp_Scale|TXT_MAX" msgid "Ma_ximum" -msgstr "Mak_simum" +msgstr "Maksimum" #. 4jRuB #: chart2/uiconfig/ui/tp_Scale.ui:191 msgctxt "tp_Scale|CBX_AUTO_MIN" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. Bx5Co #: chart2/uiconfig/ui/tp_Scale.ui:206 msgctxt "tp_Scale|CBX_AUTO_MAX" msgid "A_utomatic" -msgstr "A_utomatisk" +msgstr "Automatisk" #. 2Kb67 #: chart2/uiconfig/ui/tp_Scale.ui:229 @@ -4536,7 +4536,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:273 msgctxt "tp_Scale|TXT_TIME_RESOLUTION" msgid "R_esolution" -msgstr "_Oppløsning" +msgstr "Oppløsning" #. yyPFB #: chart2/uiconfig/ui/tp_Scale.ui:289 chart2/uiconfig/ui/tp_Scale.ui:382 @@ -4569,25 +4569,25 @@ #: chart2/uiconfig/ui/tp_Scale.ui:307 msgctxt "tp_Scale|CBX_AUTO_TIME_RESOLUTION" msgid "Automat_ic" -msgstr "Automat_isk" +msgstr "Automatisk" #. DbJt9 #: chart2/uiconfig/ui/tp_Scale.ui:337 msgctxt "tp_Scale|TXT_STEP_MAIN" msgid "Ma_jor interval" -msgstr "_Hovedintervall" +msgstr "Hovedintervall" #. AtZ6D #: chart2/uiconfig/ui/tp_Scale.ui:367 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 "Hovedintervall can angis for å vise et bestemt antall dager, måneder eller år." +msgstr "Hovedintervall kan angis for å vise et bestemt antall dager, måneder eller år." #. BD5BE #: chart2/uiconfig/ui/tp_Scale.ui:388 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 "Hovedintervall can angis for å vise et bestemt antall dager, måneder eller år." +msgstr "Hovedintervall kan angis for å vise et bestemt antall dager, måneder eller år." #. a2Gjv #: chart2/uiconfig/ui/tp_Scale.ui:415 @@ -4599,19 +4599,19 @@ #: chart2/uiconfig/ui/tp_Scale.ui:434 msgctxt "tp_Scale|CBX_AUTO_STEP_MAIN" msgid "Au_tomatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. Pv5GU #: chart2/uiconfig/ui/tp_Scale.ui:469 msgctxt "tp_Scale|TXT_STEP_HELP" msgid "Minor inter_val" -msgstr "_Nedre intervall" +msgstr "Nedre intervall" #. WMGqg #: chart2/uiconfig/ui/tp_Scale.ui:483 msgctxt "tp_Scale|TXT_STEP_HELP_COUNT" msgid "Minor inter_val count" -msgstr "Nedre intervall_telling" +msgstr "Nedre intervalltelling" #. c9m8j #: chart2/uiconfig/ui/tp_Scale.ui:510 @@ -4629,13 +4629,13 @@ #: chart2/uiconfig/ui/tp_Scale.ui:543 msgctxt "tp_Scale|CBX_AUTO_STEP_HELP" msgid "Aut_omatic" -msgstr "Aut_omatisk" +msgstr "Automatisk" #. GAKPN #: chart2/uiconfig/ui/tp_Scale.ui:573 msgctxt "tp_Scale|TXT_ORIGIN" msgid "Re_ference value" -msgstr "Re_feranseverdi" +msgstr "Referanseverdi" #. HbRqw #: chart2/uiconfig/ui/tp_Scale.ui:593 @@ -4647,7 +4647,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:605 msgctxt "tp_Scale|CBX_AUTO_ORIGIN" msgid "Automat_ic" -msgstr "Automat_isk" +msgstr "Automatisk" #. Z35M3 #: chart2/uiconfig/ui/tp_Scale.ui:614 @@ -4689,19 +4689,19 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:93 msgctxt "tp_SeriesToAxis|label1" msgid "Align Data Series to" -msgstr "Juster dataseriar til" +msgstr "Juster dataserier til" #. GAF6S #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:136 msgctxt "tp_SeriesToAxis|FT_GAP" msgid "_Spacing" -msgstr "_Avstand" +msgstr "Avstand" #. 27wWb #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:149 msgctxt "tp_SeriesToAxis|FT_OVERLAP" msgid "_Overlap" -msgstr "_Overlapping" +msgstr "Overlapping" #. NKaBT #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:166 @@ -4719,7 +4719,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:201 msgctxt "tp_SeriesToAxis|CB_BARS_SIDE_BY_SIDE" msgid "Show _bars side by side" -msgstr "_Vis grafene side ved side" +msgstr "Vis grafene side ved side" #. U5ruY #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:210 @@ -4737,7 +4737,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:231 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 "For stolpediagrammene «stablet» og «prosent» (loddrette stolper), kan du krysse av her for å forbinde kolonnelagene som hører sammen med linjer." +msgstr "For stolpediagrammene «stablet» og «prosent» (vertikale stolper), kan du krysse av her for å forbinde kolonnelagene som hører sammen med linjer." #. VHcU3 #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:249 @@ -4755,7 +4755,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:301 msgctxt "tp_SeriesToAxis|RB_DONT_PAINT" msgid "_Leave gap" -msgstr "_Etterlat mellomrom" +msgstr "Etterlat mellomrom" #. CFmcS #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:311 @@ -4767,7 +4767,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:322 msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO" msgid "_Assume zero" -msgstr "_Anta at verdien er null" +msgstr "Anta at verdien er null" #. y6EGH #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:333 @@ -4827,7 +4827,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:66 msgctxt "tp_Trendline|linear" msgid "_Linear" -msgstr "_Lineær" +msgstr "Lineær" #. jir3B #: chart2/uiconfig/ui/tp_Trendline.ui:76 @@ -4839,7 +4839,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:87 msgctxt "tp_Trendline|logarithmic" msgid "L_ogarithmic" -msgstr "L_ogaritmisk" +msgstr "Logaritmisk" #. AZT5a #: chart2/uiconfig/ui/tp_Trendline.ui:98 @@ -4851,7 +4851,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:109 msgctxt "tp_Trendline|exponential" msgid "_Exponential" -msgstr "_Eksponensiell" +msgstr "Eksponensiell" #. gufBS #: chart2/uiconfig/ui/tp_Trendline.ui:120 @@ -4863,7 +4863,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:131 msgctxt "tp_Trendline|power" msgid "Po_wer" -msgstr "Po_tens" +msgstr "Potens" #. sU36A #: chart2/uiconfig/ui/tp_Trendline.ui:142 @@ -4875,7 +4875,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:153 msgctxt "tp_Trendline|polynomial" msgid "_Polynomial" -msgstr "_Polynomisk" +msgstr "Polynomisk" #. f9EeD #: chart2/uiconfig/ui/tp_Trendline.ui:164 @@ -4887,7 +4887,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:175 msgctxt "tp_Trendline|movingAverage" msgid "_Moving Average" -msgstr "_Glidende gjennomsnitt" +msgstr "Glidende gjennomsnitt" #. F5WMz #: chart2/uiconfig/ui/tp_Trendline.ui:186 @@ -4923,13 +4923,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:258 msgctxt "tp_Trendline|extended_tip|label4" msgid "Number of points to calculate average of moving average trend line." -msgstr "Antallet punkt for å beregne gjennomsnittet for den glidende trendlinja." +msgstr "Antallet punkt for å beregne gjennomsnittet for den glidende trendlinjen." #. g3mex #: chart2/uiconfig/ui/tp_Trendline.ui:276 msgctxt "tp_Trendline|extended_tip|period" msgid "Number of points to calculate average of moving average trend line." -msgstr "Antallet punkt for å beregne gjennomsnittet for den glidende trendlinja." +msgstr "Antallet punkt for å beregne gjennomsnittet for den glidende trendlinjen." #. ptaCA #: chart2/uiconfig/ui/tp_Trendline.ui:371 @@ -4947,7 +4947,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:414 msgctxt "tp_Trendline|extended_tip|label7" msgid "Trend line is extrapolated for higher x-values." -msgstr "Trendlinja blir ekstrapolert for høyere x-verdier." +msgstr "Trendlinjen blir ekstrapolert for høyere x-verdier." #. tUrKr #: chart2/uiconfig/ui/tp_Trendline.ui:427 @@ -4959,13 +4959,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:433 msgctxt "tp_Trendline|extended_tip|label8" msgid "Trend line is extrapolated for lower x-values." -msgstr "Trendlinja blir ekstrapolert for lavere x-verdier." +msgstr "Trendlinjen blir ekstrapolert for lavere x-verdier." #. BGkFJ #: chart2/uiconfig/ui/tp_Trendline.ui:473 msgctxt "tp_Trendline|setIntercept" msgid "Force _Intercept" -msgstr "Tving _skjæringspunkt" +msgstr "Tving skjæringspunkt" #. ZJUti #: chart2/uiconfig/ui/tp_Trendline.ui:485 @@ -4983,19 +4983,19 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:505 msgctxt "tp_Trendline|extended_tip|showEquation" msgid "Shows the trend line equation next to the trend line." -msgstr "Vis ligninga til trendlinja ved siden av trendlinja." +msgstr "Vis ligningen til trendlinjen ved siden av trendlinjen." #. cA58s #: chart2/uiconfig/ui/tp_Trendline.ui:517 msgctxt "tp_Trendline|showCorrelationCoefficient" msgid "Show _Coefficient of Determination (R²)" -msgstr "Vis _forklaringsgrad (R²)" +msgstr "Vis forklaringsgrad (R²)" #. CCyCH #: chart2/uiconfig/ui/tp_Trendline.ui:526 msgctxt "tp_Trendline|extended_tip|showCorrelationCoefficient" msgid "Shows the coefficient of determination next to the trend line." -msgstr "Vis korrelasjonskoeffisienten ved siden av trendlinja." +msgstr "Vis korrelasjonskoeffisienten ved siden av trendlinjen." #. 2S6og #: chart2/uiconfig/ui/tp_Trendline.ui:540 @@ -5007,13 +5007,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:546 msgctxt "tp_Trendline|extended_tip|label5" msgid "Name of trend line in legend." -msgstr "Navnet på trendlinja i forklaringen." +msgstr "Navnet på trendlinjen i forklaringen." #. FBT3Y #: chart2/uiconfig/ui/tp_Trendline.ui:563 msgctxt "tp_Trendline|extended_tip|entry_name" msgid "Name of trend line in legend." -msgstr "Navnet på trendlinja i forklaringen." +msgstr "Navnet på trendlinjen i forklaringen." #. C4C6e #: chart2/uiconfig/ui/tp_Trendline.ui:588 @@ -5025,19 +5025,19 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:601 msgctxt "tp_Trendline|label6" msgid "_X Variable Name" -msgstr "_X Variabelnavn" +msgstr "X Variabelnavn" #. 99kQL #: chart2/uiconfig/ui/tp_Trendline.ui:607 msgctxt "tp_Trendline|extended_tip|label6" msgid "Name of X variable in trend line equation." -msgstr "Navn på X-variabelen i trendlinjeligninga." +msgstr "Navn på X-variabelen i trendlinjeligningen." #. Fz8b3 #: chart2/uiconfig/ui/tp_Trendline.ui:624 msgctxt "tp_Trendline|extended_tip|entry_Xname" msgid "Name of X variable in trend line equation." -msgstr "Navn på X-variabelen i trendlinjeligninga." +msgstr "Navn på X-variabelen i trendlinjeligningen." #. GDQuF #: chart2/uiconfig/ui/tp_Trendline.ui:637 @@ -5049,13 +5049,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:643 msgctxt "tp_Trendline|extended_tip|label9" msgid "Name of Y variable in trend line equation." -msgstr "Navn på Y-variabelen i trendlinjeligninga." +msgstr "Navn på Y-variabelen i trendlinjeligningen." #. WHNXu #: chart2/uiconfig/ui/tp_Trendline.ui:660 msgctxt "tp_Trendline|extended_tip|entry_Yname" msgid "Name of Y variable in trend line equation." -msgstr "Navn på Y-variabelen i trendlinjeligninga." +msgstr "Navn på Y-variabelen i trendlinjeligningen." #. 9WeUe #: chart2/uiconfig/ui/tp_Trendline.ui:677 @@ -5067,7 +5067,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:19 msgctxt "tp_axisLabel|showlabelsCB" msgid "Sho_w labels" -msgstr "_Vis etiketter" +msgstr "Vis etiketter" #. Xr5zw #: chart2/uiconfig/ui/tp_axisLabel.ui:29 @@ -5079,7 +5079,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:67 msgctxt "tp_axisLabel|tile" msgid "_Tile" -msgstr "_Flis" +msgstr "Flis" #. cmjFi #: chart2/uiconfig/ui/tp_axisLabel.ui:77 @@ -5091,7 +5091,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:89 msgctxt "tp_axisLabel|odd" msgid "St_agger odd" -msgstr "_Ulike forskyvinger" +msgstr "Ulike forskyvinger" #. Q8h6B #: chart2/uiconfig/ui/tp_axisLabel.ui:99 @@ -5103,7 +5103,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:111 msgctxt "tp_axisLabel|even" msgid "Stagger _even" -msgstr "_Like forskyvinger" +msgstr "Like forskyvinger" #. 9EMGj #: chart2/uiconfig/ui/tp_axisLabel.ui:121 @@ -5115,7 +5115,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:133 msgctxt "tp_axisLabel|auto" msgid "A_utomatic" -msgstr "A_utomatisk" +msgstr "Automatisk" #. fj3Rq #: chart2/uiconfig/ui/tp_axisLabel.ui:143 @@ -5133,7 +5133,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:196 msgctxt "tp_axisLabel|overlapCB" msgid "O_verlap" -msgstr "O_verlapping" +msgstr "Overlapping" #. zwgui #: chart2/uiconfig/ui/tp_axisLabel.ui:205 @@ -5145,7 +5145,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:217 msgctxt "tp_axisLabel|breakCB" msgid "_Break" -msgstr "_Bryt" +msgstr "Bryt" #. eBwTo #: chart2/uiconfig/ui/tp_axisLabel.ui:226 @@ -5163,25 +5163,25 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:304 msgctxt "tp_axisLabel|extended_tip|OrientDegree" msgid "Allows you to manually enter the orientation angle." -msgstr "Gir deg muligheten til å manuelt sette vinkelen på tekstretninga." +msgstr "Gir deg muligheten til å manuelt sette vinkelen på tekstretningen." #. 5teDt #: chart2/uiconfig/ui/tp_axisLabel.ui:318 msgctxt "tp_axisLabel|degreeL" msgid "_Degrees" -msgstr "_Grader" +msgstr "Grader" #. jFKoF #: chart2/uiconfig/ui/tp_axisLabel.ui:353 msgctxt "tp_axisLabel|stackedCB" msgid "Ve_rtically stacked" -msgstr "Lodd_rett stabling" +msgstr "Vertikal stabling" #. ra62A #: chart2/uiconfig/ui/tp_axisLabel.ui:363 msgctxt "tp_axisLabel|extended_tip|stackedCB" msgid "Assigns vertical text orientation for cell contents." -msgstr "Bruk loddrett tekstretning på innholdet i cellene." +msgstr "Bruk vertikal tekstretning på innholdet i cellene." #. JBz5H #: chart2/uiconfig/ui/tp_axisLabel.ui:375 @@ -5193,13 +5193,13 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:392 msgctxt "tp_axisLabel|textdirL" msgid "Te_xt direction:" -msgstr "Te_kstretning:" +msgstr "Tekstretning:" #. YUAjA #: chart2/uiconfig/ui/tp_axisLabel.ui:406 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 "Angi tekstretninga for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." +msgstr "Angi tekstretningen for avsnitt som bruker kompleks tekst (CTL). Denne funksjonen er bare tilgjengelig hvis støtten for kompleks tekst er slått på." #. NxsBh #: chart2/uiconfig/ui/tp_axisLabel.ui:425 @@ -5217,31 +5217,31 @@ #: chart2/uiconfig/ui/wizelementspage.ui:45 msgctxt "wizelementspage|labelPrimaryXaxis" msgid "_X axis" -msgstr "_X-akse" +msgstr "X-akse" #. LtEdA #: chart2/uiconfig/ui/wizelementspage.ui:59 msgctxt "wizelementspage|labelPrimaryYaxis" msgid "_Y axis" -msgstr "_Y-akse" +msgstr "Y-akse" #. tVeNC #: chart2/uiconfig/ui/wizelementspage.ui:73 msgctxt "wizelementspage|labelPrimaryZaxis" msgid "_Z axis" -msgstr "_Z-akse" +msgstr "Z-akse" #. 7qRfe #: chart2/uiconfig/ui/wizelementspage.ui:92 msgctxt "wizelementspage|extended_tip|primaryXaxis" msgid "Enter a label for the x-axis (horizontal)." -msgstr "Skriv inn en overskrift for X-aksen (den vannrette)." +msgstr "Skriv inn en overskrift for X-aksen (den horisontale)." #. 4vThc #: chart2/uiconfig/ui/wizelementspage.ui:110 msgctxt "wizelementspage|extended_tip|primaryYaxis" msgid "Enter a label for the y-axis (vertical)." -msgstr "Skriv inn en overskrift for Y-aksen (den loddrette)." +msgstr "Skriv inn en overskrift for Y-aksen (den vertikale)." #. 7zPH5 #: chart2/uiconfig/ui/wizelementspage.ui:128 @@ -5253,13 +5253,13 @@ #: chart2/uiconfig/ui/wizelementspage.ui:141 msgctxt "wizelementspage|labelMainTitle" msgid "_Title" -msgstr "_Tittel" +msgstr "Tittel" #. nPAjY #: chart2/uiconfig/ui/wizelementspage.ui:155 msgctxt "wizelementspage|labelSubTitle" msgid "_Subtitle" -msgstr "_Undertittel" +msgstr "Undertittel" #. CWmMQ #: chart2/uiconfig/ui/wizelementspage.ui:174 @@ -5295,7 +5295,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:274 msgctxt "wizelementspage|show" msgid "_Display legend" -msgstr "_Vis forklaring" +msgstr "Vis forklaring" #. QWAen #: chart2/uiconfig/ui/wizelementspage.ui:283 @@ -5307,7 +5307,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:305 msgctxt "wizelementspage|left" msgid "_Left" -msgstr "_Venstre" +msgstr "Venstre" #. tGgc2 #: chart2/uiconfig/ui/wizelementspage.ui:315 @@ -5319,7 +5319,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:326 msgctxt "wizelementspage|right" msgid "_Right" -msgstr "_Høyre" +msgstr "Høyre" #. rvAN8 #: chart2/uiconfig/ui/wizelementspage.ui:336 @@ -5331,7 +5331,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:347 msgctxt "wizelementspage|top" msgid "_Top" -msgstr "Ø_verst" +msgstr "Øverst" #. Ehv3g #: chart2/uiconfig/ui/wizelementspage.ui:357 @@ -5343,7 +5343,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:368 msgctxt "wizelementspage|bottom" msgid "_Bottom" -msgstr "_Nederst" +msgstr "Nederst" #. NCp3E #: chart2/uiconfig/ui/wizelementspage.ui:378 @@ -5373,7 +5373,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:463 msgctxt "wizelementspage|y" msgid "Y ax_is" -msgstr "Y-a_kse" +msgstr "Y-akse" #. Nivye #: chart2/uiconfig/ui/wizelementspage.ui:472 @@ -5385,7 +5385,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:483 msgctxt "wizelementspage|z" msgid "Z axi_s" -msgstr "Z-ak_se" +msgstr "Z-akse" #. uVwTv #: chart2/uiconfig/ui/wizelementspage.ui:492 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/connectivity/messages.po libreoffice-7.1.3~rc2/translations/source/nb/connectivity/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/connectivity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/connectivity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-03-10 13:36+0100\n" -"PO-Revision-Date: 2020-04-07 05:30+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1536692980.000000\n" #. 9LXDp @@ -88,7 +88,7 @@ #: connectivity/inc/strings.hrc:38 msgctxt "STR_WRONG_PARAM_INDEX" msgid "You tried to set a parameter at position '$pos$' but there is/are only '$count$' parameter(s) allowed. One reason may be that the property \"ParameterNameSubstitution\" is not set to TRUE in the data source." -msgstr "Du prøvde å angi et parameter ved plasseringa «$pos$» men det er bare mulig å bruke «$count$» antall parametre. En av grunnene kan være at egenskapen «ParameterNameSubstitution» ikke er satt til «TRUE» i datakilden." +msgstr "Du prøvde å angi et parameter ved plasseringen «$pos$» men det er bare mulig å bruke «$count$» antall parametre. En av grunnene kan være at egenskapen «ParameterNameSubstitution» ikke er satt til «TRUE» i datakilden." #. 6FnrV #: connectivity/inc/strings.hrc:39 @@ -172,43 +172,43 @@ #: connectivity/inc/strings.hrc:52 msgctxt "STR_QUERY_TOO_COMPLEX" msgid "The query can not be executed. It is too complex." -msgstr "Kan ikke utføre spørringa, den er for avansert." +msgstr "Kan ikke utføre spørringen, den er for avansert." #. UQYpN #: connectivity/inc/strings.hrc:53 msgctxt "STR_OPERATOR_TOO_COMPLEX" msgid "The query can not be executed. The operator is too complex." -msgstr "Kan ikke utføre spørringa, operatoren er for avansert." +msgstr "Kan ikke utføre spørringen, operatoren er for avansert." #. DmQcr #: connectivity/inc/strings.hrc:54 msgctxt "STR_QUERY_INVALID_LIKE_COLUMN" msgid "The query can not be executed. You cannot use 'LIKE' with columns of this type." -msgstr "Kan ikke utføre spørringa. Du kan ikke bruke «LIKE» med slike kolonner." +msgstr "Kan ikke utføre spørringen. Du kan ikke bruke «LIKE» med slike kolonner." #. EMgKF #: connectivity/inc/strings.hrc:55 msgctxt "STR_QUERY_INVALID_LIKE_STRING" msgid "The query can not be executed. 'LIKE' can be used with a string argument only." -msgstr "Kan ikke utføre spørringa; «LIKE» kan bare brukes i kombinasjon med et strengvalg." +msgstr "Kan ikke utføre spørringen; «LIKE» kan bare brukes i kombinasjon med et strengvalg." #. PBG3H #: connectivity/inc/strings.hrc:56 msgctxt "STR_QUERY_NOT_LIKE_TOO_COMPLEX" msgid "The query can not be executed. The 'NOT LIKE' condition is too complex." -msgstr "Kan ikke utføre spørringa. Vilkåret «NOT LIKE» er for avansert." +msgstr "Kan ikke utføre spørringen. Vilkåret «NOT LIKE» er for avansert." #. CWeME #: connectivity/inc/strings.hrc:57 msgctxt "STR_QUERY_LIKE_WILDCARD" msgid "The query can not be executed. The 'LIKE' condition contains wildcard in the middle." -msgstr "Kan ikke utføre spørringa fordi vilkåret «LIKE» har jokertegn midt i." +msgstr "Kan ikke utføre spørringen fordi vilkåret «LIKE» har jokertegn midt i." #. NK7eq #: connectivity/inc/strings.hrc:58 msgctxt "STR_QUERY_LIKE_WILDCARD_MANY" msgid "The query can not be executed. The 'LIKE' condition contains too many wildcards." -msgstr "Kan ikke utføre spørringa fordi vilkåret «LIKE» har for mange jokertegn." +msgstr "Kan ikke utføre spørringen fordi vilkåret «LIKE» har for mange jokertegn." #. nADdF #: connectivity/inc/strings.hrc:59 @@ -226,13 +226,13 @@ #: connectivity/inc/strings.hrc:61 msgctxt "STR_COLUMN_NOT_UPDATEABLE" msgid "The column at position '$position$' could not be updated." -msgstr "Kolonnen på plasseringa «$position$» kunne ikke oppdateres." +msgstr "Kolonnen på plasseringen «$position$» kunne ikke oppdateres." #. iLNAb #: connectivity/inc/strings.hrc:62 msgctxt "STR_COULD_NOT_LOAD_FILE" msgid "The file $filename$ could not be loaded." -msgstr "Klarte ikke å lese inn fila $filename$." +msgstr "Klarte ikke å lese inn filen $filename$." #. jq62z #: connectivity/inc/strings.hrc:63 @@ -242,7 +242,7 @@ "\n" "$error_message$" msgstr "" -"Forsøket på å lese inn fila ga følgende feilmelding ($exception_type$):\n" +"Forsøket på å lese inn filen ga følgende feilmelding ($exception_type$):\n" "\n" "$error_message$" @@ -336,7 +336,7 @@ #: connectivity/inc/strings.hrc:80 msgctxt "STR_COULD_NOT_CREATE_INDEX_NAME" msgid "The index could not be created. The file '$filename$' is used by another index." -msgstr "Klarte ikke å opprette indekset. Fila «$filename$» brukes av en annen indeks." +msgstr "Klarte ikke å opprette indeksen. Filen «$filename$» brukes av en annen indeks." #. GcK7B #: connectivity/inc/strings.hrc:81 @@ -354,7 +354,7 @@ #: connectivity/inc/strings.hrc:83 msgctxt "STR_COULD_NOT_DELETE_FILE" msgid "The file $filename$ could not be deleted." -msgstr "Klarte ikke å slette fila $filename$." +msgstr "Klarte ikke å slette filen $filename$." #. rp3rF #: connectivity/inc/strings.hrc:84 @@ -420,7 +420,7 @@ #: connectivity/inc/strings.hrc:93 msgctxt "STR_COLUMN_NOT_DROP" msgid "The column at position '$position$' could not be dropped. May be the file system is write protected." -msgstr "Kolonnen på plasseringa «$position$» kunne ikke utelates. Kanskje filsystemet er skrivebeskyttet?" +msgstr "Kolonnen på plasseringen «$position$» kunne ikke utelates. Kanskje filsystemet er skrivebeskyttet?" #. hAwmi #: connectivity/inc/strings.hrc:94 @@ -438,14 +438,14 @@ #: connectivity/inc/strings.hrc:96 msgctxt "STR_INVALID_DBASE_FILE" msgid "The file '$filename$' is an invalid (or unrecognized) dBase file." -msgstr "Fila «$filename$» er en ugyldig (eller ikke gjenkjent) dBase-fil." +msgstr "Filen «$filename$» er en ugyldig (eller ikke gjenkjent) dBase-fil." #. LhHTA #. Evoab2 #: connectivity/inc/strings.hrc:98 msgctxt "STR_CANNOT_OPEN_BOOK" msgid "Cannot open Evolution address book." -msgstr "Klarer ikke å åpne adresseboka til Evolution." +msgstr "Klarer ikke å åpne adresseboken til Evolution." #. sxbEF #: connectivity/inc/strings.hrc:99 @@ -458,19 +458,19 @@ #: connectivity/inc/strings.hrc:101 msgctxt "STR_QUERY_COMPLEX_COUNT" msgid "The query can not be executed. It is too complex. Only \"COUNT(*)\" is supported." -msgstr "Kan ikke utføre spørringa, den er for avansert. Bare «COUNT(*)» er støttet." +msgstr "Kan ikke utføre spørringen, den er for avansert. Bare «COUNT(*)» er støttet." #. 8VQo4 #: connectivity/inc/strings.hrc:102 msgctxt "STR_QUERY_INVALID_BETWEEN" msgid "The query can not be executed. The 'BETWEEN' arguments are not correct." -msgstr "Kan ikke utføre spørringa, «BETWEEN»-argumentet er feil." +msgstr "Kan ikke utføre spørringen, «BETWEEN»-argumentet er feil." #. 4oK7N #: connectivity/inc/strings.hrc:103 msgctxt "STR_QUERY_FUNCTION_NOT_SUPPORTED" msgid "The query can not be executed. The function is not supported." -msgstr "Kan ikke utføre spørringa, funksjonen støttes ikke." +msgstr "Kan ikke utføre spørringen, funksjonen støttes ikke." #. kCjVU #: connectivity/inc/strings.hrc:104 @@ -494,19 +494,19 @@ #: connectivity/inc/strings.hrc:107 msgctxt "STR_QUERY_MORE_TABLES" msgid "The query can not be executed. It contains more than one table." -msgstr "Kunne ikke utføre spørringa da den inneholder mer enn en tabell." +msgstr "Kunne ikke utføre spørringen da den inneholder mer enn en tabell." #. w7AzE #: connectivity/inc/strings.hrc:108 msgctxt "STR_QUERY_NO_TABLE" msgid "The query can not be executed. It contains no valid table." -msgstr "Kunne ikke utføre spørringa da den ikke inneholder en gyldig tabell." +msgstr "Kunne ikke utføre spørringen da den ikke inneholder en gyldig tabell." #. CRsGn #: connectivity/inc/strings.hrc:109 msgctxt "STR_QUERY_NO_COLUMN" msgid "The query can not be executed. It contains no valid columns." -msgstr "Kunne ikke utføre spørringa da den ikke inneholder en gyldig kolonne." +msgstr "Kunne ikke utføre spørringen da den ikke inneholder en gyldig kolonne." #. ucGyR #: connectivity/inc/strings.hrc:110 @@ -536,7 +536,7 @@ #: connectivity/inc/strings.hrc:114 msgctxt "STR_NO_RESULTSET" msgid "The execution of the query doesn't return a valid result set." -msgstr "Utførelsen av spørringa gir ikke et gyldig resultatsett." +msgstr "Utførelsen av spørringen gir ikke et gyldig resultatsett." #. kiYDS #: connectivity/inc/strings.hrc:115 @@ -554,13 +554,13 @@ #: connectivity/inc/strings.hrc:117 msgctxt "STR_UNKNOWN_PARA_TYPE" msgid "The type of parameter at position '$position$' is unknown." -msgstr "Parametertypen på plasseringa '$position$' er ukjent." +msgstr "Parametertypen på plasseringen '$position$' er ukjent." #. ghuVV #: connectivity/inc/strings.hrc:118 msgctxt "STR_UNKNOWN_COLUMN_TYPE" msgid "The type of column at position '$position$' is unknown." -msgstr "Kolonnetypen på plasseringa '$position$' er ukjent." +msgstr "Kolonnetypen på plasseringen '$position$' er ukjent." #. 3FmFX #. KAB @@ -599,7 +599,7 @@ #: connectivity/inc/strings.hrc:127 msgctxt "STR_NO_TABLE_CONTAINER" msgid "An error occurred while obtaining the connection's table container." -msgstr "Det oppsto en feil under hentinga av tabellbeholderen til forbindelsen." +msgstr "Det oppsto en feil under hentingen av tabellbeholderen til forbindelsen." #. Rm4Le #: connectivity/inc/strings.hrc:128 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/cui/messages.po libreoffice-7.1.3~rc2/translations/source/nb/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,9 +3,9 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" -"Last-Translator: kingu \n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -50,7 +50,7 @@ #: cui/inc/numcategories.hrc:21 msgctxt "numberingformatpage|liststore1" msgid "Date" -msgstr "dato" +msgstr "Dato" #. 4kcAo #: cui/inc/numcategories.hrc:22 @@ -68,7 +68,7 @@ #: cui/inc/numcategories.hrc:24 msgctxt "numberingformatpage|liststore1" msgid "Fraction" -msgstr "brøk" +msgstr "Brøk" #. M8AFf #: cui/inc/numcategories.hrc:25 @@ -265,7 +265,7 @@ "The icon %ICONNAME is already contained in the image list.\n" "Would you like to replace the existing icon?" msgstr "" -"Ikonet %ICONNAME ligger allerede i bildelista.\n" +"Ikonet %ICONNAME ligger allerede i bildelisten.\n" "Vil du erstatte det?" #. FRvQe @@ -284,7 +284,7 @@ #: 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 "Det er ikke flere funksjoner på verktøylinja. Vil du slette den?" +msgstr "Det er ikke flere funksjoner på verktøylinjen. Vil du slette den?" #. saf9m #. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder @@ -305,13 +305,13 @@ #: 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 "Dette vil slette alle endringene som er gjort på verktøylinja. Er du sikker på at du vil tilbakestille denne?" +msgstr "Dette vil slette alle endringene som er gjort på verktøylinjen. Er du sikker på at du vil tilbakestille denne?" #. 4s9MJ #: 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 "Dette vil slette alle endringene som er gjort på verktøylinja. Er du sikker på at du vil tilbakestille denne?" +msgstr "Dette vil slette alle endringene som er gjort på verktøylinjen. Er du sikker på at du vil tilbakestille denne?" #. CPW5b #: cui/inc/strings.hrc:66 @@ -323,7 +323,7 @@ #: cui/inc/strings.hrc:67 msgctxt "RID_SVXSTR_LABEL_NEW_NAME" msgid "~New name" -msgstr "~Nytt navn" +msgstr "Nytt navn" #. Ahhg9 #: cui/inc/strings.hrc:68 @@ -335,7 +335,7 @@ #: cui/inc/strings.hrc:69 msgctxt "RID_SVXSTR_RENAME_TOOLBAR" msgid "Rename Toolbar" -msgstr "Endre navn på verktøylinje" +msgstr "Endre navn på verktøylinjen" #. GN45E #: cui/inc/strings.hrc:71 @@ -383,7 +383,7 @@ #: cui/inc/strings.hrc:78 msgctxt "RID_SVXSTR_HYPERDLG_QUERYOVERWRITE" msgid "The file already exists. Overwrite?" -msgstr "Fila finnes allerede. Vil du overskrive den?" +msgstr "Filen finnes allerede. Vil du overskrive den?" #. smWax #: cui/inc/strings.hrc:80 @@ -662,13 +662,13 @@ #: cui/inc/strings.hrc:129 msgctxt "RID_SVXSTR_EVENT_FIELDMERGE" msgid "Merging of form fields started" -msgstr "Sammenslåing av skjemafelter startet" +msgstr "Sammenslåing av skjemafelter har startet" #. uGCdD #: cui/inc/strings.hrc:130 msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED" msgid "Merging of form fields finished" -msgstr "Sammenslåing av skjemafelter ferdig" +msgstr "Sammenslåing av skjemafelter er ferdig" #. srLLa #: cui/inc/strings.hrc:131 @@ -1100,7 +1100,7 @@ #: cui/inc/strings.hrc:205 msgctxt "RID_SVXSTR_MULTIFILE_DBL_ERR" msgid "The file %1 already exists." -msgstr "Fila %1 finnes allerede." +msgstr "Filen %1 finnes allerede." #. 5FyxP #: cui/inc/strings.hrc:206 @@ -1160,13 +1160,13 @@ #: cui/inc/strings.hrc:217 msgctxt "STR_CLOSELINKMSG" msgid "Are you sure you want to remove the selected link?" -msgstr "Er du sikker på at du vil fjerne den valgte lenka?" +msgstr "Er du sikker på at du vil fjerne den valgte lenken?" #. wyMwT #: cui/inc/strings.hrc:218 msgctxt "STR_CLOSELINKMSG_MULTI" msgid "Are you sure you want to remove the selected link?" -msgstr "Er du sikker på at du vil fjerne den valgte lenka?" +msgstr "Er du sikker på at du vil fjerne den valgte lenken?" #. CN74h #: cui/inc/strings.hrc:219 @@ -1207,7 +1207,7 @@ "$file$\n" "does not exist." msgstr "" -"Fila\n" +"Filen\n" "«$file$»\n" "finnes ikke." @@ -1219,7 +1219,7 @@ "$file$\n" "does not exist in the local file system." msgstr "" -"Fila\n" +"Filen\n" "«$file$»\n" "finnes ikke på det lokale filsystemet." @@ -1267,7 +1267,7 @@ #: cui/inc/strings.hrc:238 msgctxt "RID_SVXSTR_CREATEFAILED" msgid "The object could not be created." -msgstr "Objektet kunne ikke lages." +msgstr "Objektet kunne ikke opprettes." #. TmiCU #: cui/inc/strings.hrc:239 @@ -1431,7 +1431,7 @@ #: cui/inc/strings.hrc:278 msgctxt "STR_MODIFY" msgid "~Replace" -msgstr "~Erstatt" +msgstr "Erstatt" #. anivV #: cui/inc/strings.hrc:279 @@ -1554,7 +1554,7 @@ "The folder you selected does not contain a Java runtime environment.\n" "Please select a different folder." msgstr "" -"Den valgte mappa inneholder ikke et Java-kjøremiljø.\n" +"Den valgte mappen inneholder ikke et Java-kjøremiljø.\n" "Velg en annen mappe." #. jFLdB @@ -1629,7 +1629,7 @@ #: cui/inc/strings.hrc:313 msgctxt "RID_SVXSTR_DESC_HATCH" msgid "Please enter a name for the hatching:" -msgstr "Skriv inn et navn for skraveringa:" +msgstr "Skriv inn et navn for skraveringen:" #. rvyBi #: cui/inc/strings.hrc:314 @@ -2258,7 +2258,7 @@ #: cui/inc/tipoftheday.hrc:74 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In a Draw page, use “-” to zoom out; “+” to zoom in." -msgstr "På en Drawside bruker du “-” for å zoome ut; “+” For å zoome inn." +msgstr "På en Draw-side bruker du “-” for å zoome ut; “+” For å zoome inn." #. PJFH2 #: cui/inc/tipoftheday.hrc:75 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME har støtte for fire sikkerhetsnivåer for makroer, (fra lavt til svært høyt), og troverdige kilder." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 vil som organisasjon søke om Google Summer of Code (GSoC). se:" - -#. SNTbc -#: 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 "Visste du at du kan knytte kommentarer til deler av tekst? Bare bruk snarveien %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Trenger du å flytte ett eller flere avsnitt? Du trenger ikke å klippe ut og lime inn: Bruk tastatursnarveien %MOD1 + %MOD2 + Pil (Opp/Ned)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Endre de grunnleggende skrifttypene for den forhåndsdefinerte malen eller det gjeldende dokumentet pr Verktøy ▸ Valg ▸ %PRODUCTNAME Writer ▸ Grunnleggende skrifter." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Vil du finne ord som inneholder mer enn 10 tegn? Rediger ▸ Finn og erstatt ▸ Søk ▸ [a-z] {10,} ▸ Andre alternativer ▸ sjekk Regulære uttrykk." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Åpne en CSV-fil som et nytt ark i det gjeldende regnearket via ark ▸ Ark fra fil." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Hvis du skriver fet skrift, kursiv eller understreket i Writer, kan du fortsette med standardattributtene ved å bruke snarveien %MOD1 + Shift + X (fjerne direkte tegnformater)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Use %MOD1+%MOD2+Shift+V å lime inn innholdet på utklippstavlen som uformatert tekst." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Tilpass fotnoteutseende med verktøy ▸ Fotnoter og sluttnoter …" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Med lysbildefremvisning ▸ Tilpasset lysbildefremvisning, ordne og velg lysbilder for å tilpasse en lysbildefremvisning til dine behov." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Vil du endre stavekontroll for en del av teksten? Klikk i språkområdet i statuslinjen eller, bruk en stil." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Forfatter kan sette inn en tom side mellom to rare (jevne) sider som følger. Merk av for \"Skriv automatisk tomme sider ut\" i utskriftsdialogen for %PRODUCTNAME Writer-fanen." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Vil du ikke skrive ut alle kolonnene? Skjul eller gruppér de du ikke trenger." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "For å endre en AutoVis-presentasjon, åpne den, og etter at den har startet, høyreklikk og velg Rediger i hurtigmenyen." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Trenger du å plassere nøyaktig? %MOD2 + pil Taster flytter objekter (figurer, bilder, formler) med en piksel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Innebygd hjelp er tilgjengelig ved å trykke på F1, hvis du har installert den. Sjekk ellers online på:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Høyreklikk på statuslinjen i %PRODUCTNAME Calc og velg “Utvalgstelling” for å vise antall valgte celler." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Vil du ha to eller flere kolonner for bare en del av en %PRODUCTNAME Writer-side? Sett inn ▸ Seksjon, angi med kategorien Kolonner, og legg tekst i den seksjonen." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Bruk data ▸ Statistikk for prøvetaking, beskrivende statistikk, variansanalyse, korrelasjon og mye mer i %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Du kan kopiere fra ett ark til et annet uten utklippstavlen. Velg området du vil kopiere, %MOD1 + klikk på fanearket til målarket og bruk ark ▸ Fyll celler ▸ Fyll ark." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Du kan endre utseendet til %PRODUCTNAME via Verktøy ▸ Alternativer ▸ Vis ▸ Brukergrensesnitt." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "I %PRODUCTNAME Impress bruker du Sett inn ▸ Media ▸ Fotoalbum for å lage en lysbildefremvisning fra en serie bilder med \"Fotoalbum\" -funksjonen." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Du kan vise formler i stedet for resultater med Vis ▸ Vis formel (eller Verktøy ▸ Valg ▸ %PRODUKTNAVN Kalkulering ▸ Vis ▸ Vis ▸ Formler)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME er utviklet av et vennlig fellesskap, bestående av hundrevis av bidragsytere rundt om i verden. Bli med med det du måtte kunne bidra med." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Venstrehendt? Aktiver verktøy ▸ Valg ▸ Språkinnstillinger ▸ Språk ▸ Asiatisk og sjekk Verktøy ▸ Valg ▸ %PRODUKTNAVN Writer ▸ Vis ▸ Linjal ▸ Høyreinnrettet, som viser rullefeltet til venstre." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Vil du at kapitletitlene alltid skal begynne på en ny side? Rediger Overskrift1 (avsnittsstil) ▸ Tekstflyt ▸ Bryt og merk av for Sett inn ▸ Side ▸ Før." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Verdi for dato/tid er kun et antall dager siden en valgt dag null; tallet representerer heltalldel dato, og brøkdel er tid (forløpt del av en dag), med 0,5 som representerer kl 12." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift + %MOD1 + Del sletter fra markøren til slutten av gjeldende setning." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Bruk kolonne- eller radetiketter i formler. Hvis du for eksempel har to kolonner, “Tid” og “KM”, bruk = Time/KM for å få minutter pr kilometer." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Irritert av \"marsjerende maur\" rundt celler i Calc? Trykk på Esc for å stoppe dem; det kopierte innholdet vil forbli tilgjengelig for innliming." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Vil du bli en %PRODUCTNAME ambassadør? Det er sertifiseringer for utviklere, admins og trenere." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." -msgstr "Miks ståande og liggende utskrift av Calc-regneark ved å benytte ulike sidestiler på arkene." +msgstr "Miks stående og liggende utskrift av Calc-regneark ved å benytte ulike sidestiler på arkene." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klikk på spesialtegnikonet på verktøylinjen for å få en rask tilgang til favoritt- og nylig brukte tegn å sette inn." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Velg “Hierarkisk visning” i sidelinjen for stiler for å se forholdet mellom stiler." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Du kan bruke stiler for å gjøre tabellene i dokumentet konsistente. Velg en fra deforhåndsdefinerte stiler (F11) eller via tabell ▸ AutoFormat." +msgstr "Du kan bruke stiler for å gjøre tabellene i dokumentet konsistente. Velg en fra de forhåndsdefinerte stiler (F11) eller via tabell ▸ AutoFormat." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Konfigurere bruk av %MOD1-tasten for å åpne hyperkoblinger? Verktøy ▸ Valg ▸ %PRODUKTNAVN ▸ Sikkerhet ▸ Alternativer ▸ “%MOD1 + klikk kreves for å åpne hyperkoblinger”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Vil du se beregningen av de enkelte elementene i en formel, velg de respektive elementene og trykk F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Du kan beskytte celler med Format ▸ Celler ▸ Beskyttelse. For å forhindre innsetting, sletting, endring av navn, flytting / kopiering av ark, bruk Verktøy ▸ Beskytt ark." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Skrive langs en kurve? Tegn linjen, dobbeltklikk, skriv inn teksten, Formater ▸ Tekstboks og form ▸ Fontarbeid." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Vil du bare vise de høyeste verdiene i et regneark? Velg menydata ▸ AutoFilter, klikk på rullegardinpilen og velg “Top10”." +msgstr "Vil du bare vise de høyeste verdiene i et regneark? Velg Meny Data ▸ AutoFilter, klikk på rullegardinpilen og velg “Top10”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "For å fjerne sidetallet fra innholdsfortegnelsen, gå til Sett inn ▸ Innholdsfortegnelse (eller høyreklikk og rediger den tidligere innsatte indeksen). Slett sidenummeret (#) fra Struktur-linjen." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Med Navigator kan du velge og flytte opp / ned overskrifter og teksten under overskriften, i Navigator og i dokumentet." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Hvis du raskt vil få et matteobjekt i Writer, skriver du inn formelen din, markerer den og bruker Sett inn ▸ Objekt ▸ Formel for å konvertere teksten." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Med %PRODUCTNAME er det veldig enkelt å installere en ny ordbok: de leveres som utvidelser." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME har en bærbar versjon som gir deg mobilitet. Selv uten administratorrettigheter på datamaskinen din kan du også installere %PRODUCTNAME Portable til harddisken din også." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer lar deg nummerere fotnoter pr side, kapittel, dokument: Verktøy ▸ Fotnoter og sluttnoter ▸ Fanen Fotnoter ▸ Telling." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Writer-dokumentet ditt åpnes ikke igjen, med tekstmarkøren på samme redigeringsposisjon som den var da du lagret dokumentet? Legg til fornavn eller etternavn i Verktøy ▸ Valg ▸ %PRODUKTNAVN ▸ Brukerdata ▸ Fornavn/Etternavn." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Sitatshåndtering? Bruk en tredjepartsutvidelse." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Vil du sette inn en verdi på samme sted på flere ark? Velg ark: hold nede %MOD1-tasten og klikk på fanene deres før du setter inn." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Vil du skjule tekst i et dokument? Velg teksten. Sett inn ▸ seksjon, og velg “Skjul”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." -msgstr "Du kan tilpasse den midterste museknappen pr Verktøy ▸ Valg ▸ PRODUKTNAVN ▸ Vis ▸ Midtre museknapp." +msgstr "Du kan tilpasse den midterste museknappen pr Verktøy ▸ Valg ▸ PRODUKTNAVN ▸ Vis ▸ Midtre museknapp." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Vil du skrive ut to portrettsider på en liggende side (redusere A4 til A5)? Fil ▸ Skriv ut og velg 2 på “Sider per ark”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "For hurtig tilgang til dokumentbokmerkene dine, høyreklikk på sidenummeret til statuslinjen (nedre venstre hjørne av dokumentvinduet)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Velg et objekt i dokumentbakgrunnen via Velg-verktøyet på Tegneverktøylinjen for å omgi det valgte objektet." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definere tekster du ofte bruker som autotekst. Du kan sette de inn i hvilket som helst Writer-dokument ved hjelp av namvet på teksten, en snarvei eller fra verktøylinjen." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Spill musikk gjennom en lysbildefremvisning ved å tilordne lyden til den første lysbildeovergangen uten å klikke på “Bruk på Alle Lysbilder” -knappen." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 beregner ikke fra venstre mot høyre men tar hensyn til rekkefølgen Parenteser - Eksponenter - Multiplikasjon - Divisjon - Addisjon - Subtraksjon." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Få dokumentasjonen for %PRODUCTNAME og gratis brukerveiledninger på:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Vil du fjerne alt <> samtidig og holde teksten inne? Rediger ▸ Finn og erstatt: Søk = [<>], Erstatt = blank og sjekk “Regulære uttrykk” under Andre alternativer." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Trenger du å presentere en rapport skrevet med Writer? Fil ▸ Send ▸ Disposisjon til presentasjon oppretter automatisk en lysbildefremvisning fra dokumentet." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Vil du administrere presentasjonen av hyperkoblinger i et regneark? Sett dem inn med HYPERLINK-funksjonen." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Fjern avmerkningen for Verktøy ▸ Valg ▸ %PRODUKTNAVN Calc ▸ Vis ▸ Zoom: “Synkroniser ark” slik at hvert ark i Calc har sin egen zoomfaktor." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Du kan angi en farge for hver fane: høyreklikk på fanen eller bruk Ark ▸ Arkfarge." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Spor celler som brukes i en formel, prejudikater (Shift + F9) eller avhengigheter (Shift + F5) (eller bruk Verktøy ▸ Detektiv). For hvert treff går du enda et skritt i kjeden." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Sett inn og numrer formlene dine i ett trinn: skriv fn så F3. En AutoText settes inn med formel og nummer-justert i en tabell." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Du kan lage en illustrasjonsindeks fra objektnavn, ikke bare fra bildetekster." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Du kan benytte Android og iPhone for å fjernstyre Impress-presentasjoner." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Vil du vite hvor mange dager det er i den nåværende måneden? Bruk funksjonen DAYSINMONTH (TODAY ())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Dine tall vises som ### i regnearket ditt? Kolonnen er for smal for å vise alle sifrene." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Aktiver massive parallelle beregninger av formelceller via Verktøy ▸ Valg ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Bruk koblingsverktøyet fra tegneverktøylinjen i Draw/Impress for å lage fine flytdiagrammer og eventuelt kopiere/lime inn objektet i Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Dine donasjoner støtter vårt verdensomspennende fellesskap." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Vil du legge til x måneder til en dato? Bruk = EDATE (dato; måneder)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "For å velge et sammenhengende utvalg av celler som inneholder data og som er avgrenset av en tom rad og kolonner, bruk %MOD1 + * (numerisk tastatur)." +msgstr "For å velge et sammenhengende utvalg av celler som inneholder data og som er avgrenset av en tom rad og kolonner, bruk %MOD1 + * (numerisk tastatur)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Ditt akseptansemønster for dato er upassende? Bruk verktøy ▸ Valg ▸ Språkinnstillinger ▸ Språk ▸ Dato for akseptansemønster for å justere mønsteret" #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vil du eksportere formler til CSV? Fil ▸ Lagre som ▸ Type: Tekst CSV, sjekk \"Rediger filterinnstillinger\" og sjekk \"Lagre celleformler\" i neste dialog." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Presentatorkonsollen er en flott funksjon når du arbeider med %PRODUCTNAME Impress. Har du sjekket det ut?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "For å slette flere kommentarer, velg celler med kommentarer og bruk Ark ▸ Celle Kommentarer ▸ Slett kommentarer." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Konverter enkelt dokumentene dine til PDF med ett klikk ved å klikke på PDF-ikonet på verktøylinjen." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Vil du velge et stort utvalg av celler uten å bla? Skriv områdereferansen (f.eks. A1: A1000) i navneboksen og deretter Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vil du se de gyldige kommandolinjeparametrene? Start soffice med --hjelp eller -h eller -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Tilpass arket eller utskriftsområdene til en side med Format ▸ Side ▸ Ark fane ▸ Skaleringsmodus." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Trenger du et ikke nummerert element på listen? Bruk \"Sett inn unummerert oppføring\" i verktøylinjen Kuler og nummerering." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Du kan rotere celletabellorientering med tabell ▸ Egenskaper ... ▸ Tekstflyt ▸ Tekstretning." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "I %PRODUCTNAME Draw kan du flytte 0/0-punktet for linjalene ved å dra kryssingspunktet i det everste, venstre hjørnet for de to linjalene inn i arbeidsområdet." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Vil du flytte en kolonne i Calc inn mellom to andre i ett trinn? Klikk på overskriften og deretter på en celle i kolonnen, hold museknappen og flytt til målet med %MOD2-tasten." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Merk automatisk alfabetiske indeksoppføringer ved hjelp av en samsvars-fil." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Bruk format ▸ Juster (eller hurtigmenyen) for nøyaktig plassering av objekter i Draw/Impress: det sentrerer på siden hvis ett objekt er valgt eller fungerer på gruppen." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Ikke bruk tabulator for å plassere elementer i et Writer-dokument. Avhengig av hva du prøver å gjøre, kan et kantløs tabell være et bedre valg." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Ingen grunn til å bla gjennom listen på Verktøy ▸ Tilpass ▸ Tastatur for å finne en snarvei: bare skriv den." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME kan automatisk legge til et nummerert bildetekst når du setter inn objekter. Se Verktøy ▸ Valg ▸% PRODUCTNAME Writer ▸ Autotekst." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Med %PRODUCTNAME kan du bruke Google Mail-kontoen din til å lage en e-postfletting. Fyll ut Verktøy ▸ Valg ▸ %PRODUCTNAME Writer ▸ E-postfletting." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Hold kolonneoverskrifter på et ark synlig når du blar i linjer via Vis ▸ Frys celler ▸ Frys første rad." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Vil du begynne å jobbe med grunnleggende makroer? Ta en titt på eksemplene under Verktøy ▸ Makroer ▸ Rediger makroer." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Bruk overskriftsparagrafstiler i Writer med snarveistaster: %MOD1 + 1 gjelder Overskrift 1, %MOD1 + 2 gjelder Overskrift 2 osv." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Gå ikke vill i store dokumenter. Bruk Navigator (F5) for å finne veien gjennom innholdet." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Rediger ▸ Finn og erstatt lar deg sette inn spesialtegn direkte: høyreklikk i inntastingsfelt eller trykk Shift +% MOD1 + S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Trenger du tilpasset innhold for metadataegenskaper? Fil ▸ Egenskaper tab Fanen Egendefinerte egenskaper lar deg lage det du ønsker." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vil du se, men ikke skrive ut, et objekt i Draw? Tegn det på et lag som \"Utskriftsbar\" -flagg ikke er satt (høyreklikk på fanen og \"Endre lag\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Hvis du vil sette inn gjeldende dato i dokumentet, bruker du Sett inn ▸ Felt ▸ Dato." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Har du mange bilder i Writer-dokumentet? Øk ytelsen ved å deaktivere Vis ▸ Bilder og diagrammer." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Bruk Ark ▸ Fyll celler ▸ Tilfeldig Nummer, for å generere en tilfeldig serie basert på forskjellige distribusjoner." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Gi navn til lysbildene dine i Impress for å hjelpe deg med å definere \"Gå til side\" -interaksjoner og for å ha et sammendrag som er mer eksplisitt enn Lysbilde1, Lysbilde12 …" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Dialogboksen med kapittelnummerering lar deg stille inn tekst som skal vises før kapittelnummeret. Skriv for eksempel “Kapittel” for å vise “Kapittel 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transponere etnWriter-tabell? Kopier og lim inn Calc, transponer med Kopier/Lim inn utvalg og deretter Kopier/Lim inn utvalg ▸ Formatert tekst i Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "For å få “Vertikal tekst” -verktøyet på tegneverktøylinjen, sjekk Verktøy ▸ Alternativer ▸ Språkinnstillinger ▸ Språk ▸ Standardspråk ▸ Asiatisk (og gjør knappen synlig med høyreklikk)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "For å zoome raskt inn på utvalget, høyreklikk på zoomdelen av statuslinjen og velg Optimal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Du kan signere eksisterende PDF-filer og også verifisere disse signaturene." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Lager du ofte ett dokument fra et annet? Vurder å bruke en mal." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Bruk Format ▸ Betinget formatering ▸ Administrer i Calc for å finne ut hvilke celler som er definert med betinget formatering." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Verktøy ▸ Detektiv ▸ Merk Ugyldige Data fremhever alle celler i arket som inneholder verdier utenfor valideringsreglene." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Bruk fontinnlegging for større interoperabilitet med andre kontorpakker på Fil ▸ Egenskaper ▸ Font." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "For å konvertere en formel til statiske verdier trenger du ikke å kopiere/lime inn; brukData ▸ Beregn ▸ Formel til verdi." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Du kan formatere alle kommentarer i et dokument ved å klikke på pil ned i en kommentar og velge \"Formater alle kommentarer\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Vil du ha samme layout for skjermvisning og utskrift? Sjekk Verktøy ▸ Valg ▸ %PRODUKTNAVN Beregn ▸ Generelt ▸ Bruk utskriftsenheter for tekstformatering." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer hjelper deg å ta sikkerhetskopier: med Fil ▸ Lagre en kopi lager du et nytt dokument som fortsetter å jobbe med originalen." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Når du har opprettet en stil basert på en annen, kan du oppgi en prosentverdi eller en poengverdi (f.eks. 110% eller −2pt eller + 5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "For å kopiere en kommentar uten å miste innholdet i målcellen, bør du bruke Lim inn spesial og fjerne avmerkningen for alt unntatt “Kommentarer” i dialogboksen. Bruk operasjoner \"Legg til\" for ikke å overstyre eksisterende innhold." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Batchkonverter MS Office-dokumentene dine til OpenDocument-format ved hjelp av veiviseren Dokument Konverterer i menyen Fil ▸ Veivisere ▸ Dokument konverterer." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Når du redigerer en celle på plass, kan du høyreklikke og sette inn felt: Dato, arknavn, dokumenttittel, etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Trenger du å flytte en Writer-tabell? Tabell ▸ Velg ▸ Tabell og sett inn ▸ Ramme ▸ Ramme og flytt dit du vil." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Med Verktøy ▸ AutoTekst ▸ AutoTekst ▸ Import kan du velge et Word-dokument eller en mal som inneholder AutoTekst-oppføringene du vil importere." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Ikke sett inn manuelle skift for å skille to avsnitt. Endre innrykk og mellomrom ▸ Avstand ▸ Under avsnitt på stil-/avsnittegenskapene." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Behold innledende null foran tall ved å benytte formateringen, \"innledende null\", eller formater cellen som tekst før tallet skrives inn." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vil du gå tilbake til standard etter at du har brukt en listestil? Klikk på Punkt eller Nummerering På/Av-verktøyet på verktøylinjen Formatering." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Slett alle utskriftsområdene dine i ett trinn: velg alle arkene, og formater deretter ▸ Utskriftsområder ▸ Fjern." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Legg til bakgrunnsbilder i regneark via Sett inn ▸ Bilde eller dra en bakgrunn fra Galleriet, deretter Formater ▸ Ordne ▸ til Bakgrunn." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Har du problemer med å lime inn tekst fra PDF-filer eller websider inn i dokumenter? Prøv å lime inn som uformatert tekst (%MOD1 + %MOD2 + Shift + V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "I Calc kan du bruke TRIMME.GJENNOMSNITT() for å finne gjenomsnittsverdien for et datasett uten å ta med de høyeste og laveste verdiene." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Den fjerde valgfrie parameteren for VLOOKUP Calc-funksjonen, indikerer om den første kolonnen med data er sortert. Hvis ikke, skriv inn FALSE eller null." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Verktøylinjer er kontekstuelle - de åpnes avhengig av kontekst. Hvis du ikke vil ha dette, fjern avmerkingen fra Vis ▸ Verktøylinjer." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Vil du lage et hoveddokument fra det gjeldende Writer-dokumentet? Fil ▸ Send ▸ Lag hoveddokument (underdokumenter opprettes avhengig av type)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Vil du sentrere celler på en trykt side i Calc? Format ▸ Side, side ▸ Oppsettinnstillinger ▸ Tabelljustering." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Rammer kan kobles slik at teksten kan flyte fra den ene til den andre som i desktop publisering." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Lag et diagram basert på en Writer-tabell ved å klikke i tabellen og velge Sett inn ▸ Diagram." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Velg alternativer i Verktøy ▸ Valg ▸ %PRODUCTNAME Writer ▸ Formateringshjelpemidler ▸ Vis for å spesifisere hvilke tegn som ikke skal skrives ut." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Vil du hoppe til en bestemt side etter nummeret? Klikk på statusfeltet til venstre eller bruk Rediger ▸ Gå til side ... eller trykk %MOD1 + G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME finnes på over 150 språk." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Fjern avmerkingen for lysbildefremvisning ▸ Innstillinger ▸ Presentasjon alltid på toppen hvis du trenger et annet program viser vinduet foran på presentasjonen." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Vil du finne ordene med fet skrift i et Writer-dokument? Rediger ▸ Finn og erstatt ▸ Andre alternativer ▸ Attributter ▸ Fontvekt." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Du kan sortere avsnitt eller tabellrader alfabetisk eller numerisk pr Verktøy ▸ Sorter." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "For å sette inn et avsnitt før (etter) et avsnitt, trykk %MOD2 + Enter på begynnelsen (slutten) av seksjonen." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME har et malsenter for å lage flotte dokumenter - sjekk det ut." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Beregn tilbakebetaling av lån med Calc: f.eks. PMT (2% /12; 36; 2500) rente per betalingsperiode 2% / 12, 36 måneder, lånebeløp 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Finner du ikke det du vil med VLOOKUP-funksjonen i Calc? Med INDEX og MATCH kan du gjøre alt!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Vil du vise en skjult kolonne A? Klikk på en celle i kolonne B, trykk på venstre museknapp, flytt musen til venstre, slipp. Slå den deretter på via Format ▸ Kolonner ▸ Vis." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Hvis du vil endre nummeret på en side i Writer, går du til egenskapene til det første avsnittet og i kategorien Tekstflytfanen, avmerk Bryt ▸Sett inn og skriv inn nummeret." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Kjør %PRODUCTNAME i alle nettleserer med hjelp av rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Får du merkelige feilkoder i Calc: Feil: og et tall? Denne side gir forklaringen:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Inkluder et avsnitt som ikke er en tittel i innholdsfortegnelsen, ved å endre oversikt og nummerering i avsnittinnstillingene til et omrissnivå." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "I tillegg til innholdslister kan %PRODUCTNAME skape alfabetiske lister, lister over illustrasjoner, tabeller, bibliografiske lister og brukerdefinerte lister." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Kan ikke endre eller slette en egendefinert cellestil? Kontroller alle ark, ingen skal ha skrivebeskyttelse." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." -msgstr "" +msgstr "Du må fylle en serie? Velg celleområdet og Ark ▸ Fyll celler ▸ Fyll serie og velg mellom Lineær, Vekst, Dato og Autofyll." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Vil du vite om det er referert til en celle i formler for andre celler? Verktøy ▸ Detektiv ▸ Spore avhengighet (Shift + F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "I erstatningsfeltet for automatisk korreksjon kan du bruke jokertegn. *" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Vil du duplisere linjen ovenfor? Trykk %MOD1 + D eller bruk ark ▸ Fyll celler ▸ Fyll ned." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Hvis du vil søke i flere regneark, velger du dem før du starter søket." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Dra & slipp celler fra Calc til normal visning av et lysbilde lager en tabell; inn i oversikten, hver celle viser en linje i oversikten." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME hjelper deg å ikke skrive inn i to eller flere mellomrom i Writer. Kontroller verktøy ▸ AutoCorrect ▸ AutoCorrect Options ▸ Alternativer ▸ Ignorer doble mellomrom." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Ønsker du at markøren skal aktiverei cellen til høyre etter at du har angitt en verdi i Calc? Bruk Tab-tasten i stedet for Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Hvis du vil vise rullefeltet til venstre, aktiverer du Verktøy ▸ Valg ▸ Språkinnstillinger ▸ Språk ▸ Kompleks tekst og kryss av for ▸ Høyre til venstre." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Dra et formatert objekt til vinduet «Stil og formatering». En dialogboks åpnes, og bare skriv inn navnet på den nye stilen." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nye versjoner av %PRODUCTNAME inneholder nye funksjoner, feilrettinger og sikkerhetsoppdateringer. Hold programvaren oppdatert!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Vil du utvikle nye XSLT- og XML-filtre?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." -msgstr "" +msgstr "Trykk på Skift + F1 for å se tilgjengelige utvidede verktøytips i dialogbokser når \"Utvidede tips\" ikke er aktivert i Verktøy ▸ Alternativer ▸% PRODUKTNAVN ▸ Generelt." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME hjelp" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Mer informasjon" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Utfør denne handlingen nå …" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Dagens tips: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -3529,55 +3523,55 @@ #: 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 "" +msgstr "Standard brukergrensesnitt med meny, verktøylinje og kollapset sidefelt. Tiltenkt til brukeren som er kjent med det klassiske grensesnittet." #. 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 "" +msgstr "Standard brukergrensesnitt, men med bare en verktøylinje. Beregnet for bruk på små skjermer." #. 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 "" +msgstr "Standard brukergrensesnitt med utvidet sidefelt. Ekspertbrukere som raskt vil endre mange forskjellige egenskaper, anbefales å bruke dette brukergrensesnittet." #. 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 "" +msgstr "Fane-brukergrensesnittet er det som ligner på båndene som brukes av Microsoft. Det organiserer funksjoner i faner og gjør hovedmenyen foreldet." #. 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 "" +msgstr "Den kompakte fane-varianten har som mål å være kjent med Microsofts grensesnitt som samtidig et kort grensesnitt for småskjermstørrelser." #. 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 "" +msgstr "Den Grupperte Kompact Varianten gir tilgang til funksjoner i grupper med oftest brukte funksjoner i ikoner og sjeldnere brukt i en rullegardinmeny. Den kompakte varianten favoriserer vertikal størrelse." #. 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 "" +msgstr "Det Gruperte-grensesnittet gir tilgang til funksjoner i grupper med oftest brukte funksjoner i ikoner og mindre ofte brukt i en rullegardinmeny. De fulle varianten favoriserer funksjoner og er litt større enn andre varianter." #. 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 "" +msgstr "Det kontekstuelle enkeltgrensesnittet viser funksjoner i en enkeltlinjeverktøylinje med kontekstuell avhengig innhold." #. 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 "" +msgstr "Det kontekstuelle gruppe-grensesnitt fokuserer på nybegynnere. Det avslører de mest brukte funksjonene i grupper med kjernehandlinger som stort ikon og et par små tilleggsfunksjoner. Alle funksjoner har en etikett. Avhengig av konteksten gir en ekstra del tilgang til disse funksjonene." #. Xnz8J #: cui/inc/treeopt.hrc:33 @@ -4009,7 +4003,7 @@ #: cui/inc/treeopt.hrc:144 msgctxt "SID_FILTER_DLG_RES" msgid "Load/Save" -msgstr "Last inn/lagre" +msgstr "Last inn/Lagre" #. 3go3N #: cui/inc/treeopt.hrc:145 @@ -4141,7 +4135,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:46 msgctxt "extended_tip|edit" msgid "Opens a dialog to edit the preference." -msgstr "" +msgstr "Åpner en dialogboks for å redigere innstillingen." #. 2uM3W #: cui/uiconfig/ui/aboutconfigdialog.ui:58 @@ -4153,7 +4147,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:64 msgctxt "extended_tip|reset" msgid "Undo changes done so far in this dialog." -msgstr "" +msgstr "Angre endringer som er gjort så langt i denne dialogen." #. j4Avi #: cui/uiconfig/ui/aboutconfigdialog.ui:150 @@ -4165,13 +4159,13 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:162 msgctxt "aboutconfigdialog|searchButton" msgid "_Search" -msgstr "_Søk" +msgstr "Søk" #. nmtBr #: cui/uiconfig/ui/aboutconfigdialog.ui:171 msgctxt "extended_tip|searchButton" msgid "Click to search your preference text in the Preferences tree." -msgstr "" +msgstr "Klikk for å søke i preferanseteksten i Innstillings-treet." #. BMohC #: cui/uiconfig/ui/aboutconfigdialog.ui:213 @@ -4201,7 +4195,7 @@ #: cui/uiconfig/ui/aboutconfigdialog.ui:273 msgctxt "extended_tip|preferences" msgid "List the preferences organized hierarchically in a tree layout." -msgstr "" +msgstr "Oppgi innstillingene organisert hierarkisk i et treoppsett." #. B8FF9 #: cui/uiconfig/ui/aboutconfigvaluedialog.ui:8 @@ -4279,7 +4273,7 @@ #: cui/uiconfig/ui/aboutdialog.ui:383 msgctxt "aboutdialog|releasenotes" msgid "Release Notes" -msgstr "" +msgstr "Utgivelesnotater" #. 5TUrF #: cui/uiconfig/ui/aboutdialog.ui:411 @@ -4297,7 +4291,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:126 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 "List opp snarveistastene og de beslektede kommandoene. Du kan tildele eller endre snarveistasten for en kommando du har valgt i funksjonslista. Velg da en snarvei i denne lista og deretter Endre." +msgstr "Lister opp snarveistastene og de beslektede kommandoene. Du kan tildele eller endre snarveistasten for en kommando du har valgt i funksjonslisten. Velg da en snarvei i denne listen og deretter Endre." #. MP3WF #: cui/uiconfig/ui/accelconfigpage.ui:139 @@ -4339,7 +4333,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:231 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 "Tilordne den tastekombinasjonen du har valgt i lista over hurtigtaster til kommandoen du har valgt i Funksjonslista." +msgstr "Tilordne den tastekombinasjonen du har valgt i listen over hurtigtaster til kommandoen du har valgt i Funksjonslisten." #. eFsw9 #: cui/uiconfig/ui/accelconfigpage.ui:250 @@ -4411,7 +4405,7 @@ #: cui/uiconfig/ui/accelconfigpage.ui:508 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 "Velg en funksjon du vil lage en snarvei til. Velg en tastekombinasjon i lista Hurtigtaster og trykk Endre. Hvis funksjonen du valgte allerede har en snarvei du kan bruke, vises den i lista Taster." +msgstr "Velg en funksjon du vil lage en snarvei til. Velg en tastekombinasjon i listen Hurtigtaster og trykk Endre. Hvis funksjonen du valgte allerede har en snarvei du kan bruke, vises den i listen Taster." #. CqdJF #: cui/uiconfig/ui/accelconfigpage.ui:575 @@ -4439,10 +4433,9 @@ #. 5B9tX #: cui/uiconfig/ui/acorexceptpage.ui:82 -#, 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 "Legg automatisk til forkortelser eller ord som begynner med to store bokstaver til lista over unntak. Denne funksjonen virker bare hvis du har valgt Rett opp to STore FOrbokstaver eller Stor bokstav først i alle setningar i [T]-spalten i fanen Innstillinger i dette dialogvinduet." +msgstr "Legg automatisk til forkortelser eller ord som begynner med to store bokstaver til unntakslisten. Denne funksjonen virker bare hvis du har valgt Rett opp to STore FOrbokstaver eller Stor bokstav først i alle setninger i [T]-spalten i fanen Innstillinger i dette dialogvinduet." #. tpV8t #: cui/uiconfig/ui/acorexceptpage.ui:109 @@ -4488,10 +4481,9 @@ #. 6fGTF #: cui/uiconfig/ui/acorexceptpage.ui:282 -#, 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 "Legg automatisk til forkortelser eller ord som begynner med to store bokstaver til lista over unntak. Denne funksjonen virker bare hvis du har valgt Rett opp to STore FOrbokstaver eller Stor bokstav først i alle setningar i [T]-spalten i fanen Innstillinger i dette dialogvinduet." +msgstr "Legg automatisk til forkortelser eller ord som begynner med to store bokstaver til listen over unntak. Denne funksjonen virker bare hvis du har valgt Rett opp to STore FOrbokstaver eller Stor bokstav først i alle setninger i [T]-spalten i fanen Innstillinger i dette dialogvinduet." #. AcEEf #: cui/uiconfig/ui/acorexceptpage.ui:309 @@ -4563,7 +4555,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:146 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 "" +msgstr "Viser oppføringene for automatisk å erstatte ord, forkortelser eller orddeler mens du skriver. For å legge til en oppføring, skriv inn tekst i boksene Erstatt og Med, og klikk deretter Ny. For å redigere en oppføring, velg den, endre teksten i Med-boksen, og klikk deretter Erstatt. For å slette en oppføring, velg den og klikk deretter Slett." #. p6tMV #: cui/uiconfig/ui/acorreplacepage.ui:168 @@ -4575,7 +4567,7 @@ #: cui/uiconfig/ui/acorreplacepage.ui:187 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 "" +msgstr "Skriv inn ordet, forkortelsen eller orddelen du vil erstatte mens du skriver. Jokertegnsekvens. * I slutten av ordet, erstatter ordet også før vilkårlige suffikser. Jokertegn-tegnsekvens. * Før ordet resulterer også i erstatning etter vilkårlige prefikser. For eksempel finner mønsteret \"i18n. *\" Med erstatningsteksten \"internasjonalisering\" og erstatter \"i18ns\" med \"internasjonaliseringer\", eller mønsteret \". * ...\" med erstatningsteksten \"...\" finner og erstatter tre prikker i \"ord ...\" med den typografisk riktige forhåndskomponerte Unicode horisontale ellipsen (\"ord ...\")." #. GLT9J #: cui/uiconfig/ui/acorreplacepage.ui:200 @@ -4611,7 +4603,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:12 msgctxt "customanimationfragment|90" msgid "Active version only" -msgstr "" +msgstr "Kun aktiv versjon" #. 6ZZPG #: cui/uiconfig/ui/additionsdialog.ui:25 @@ -4623,13 +4615,13 @@ #: cui/uiconfig/ui/additionsdialog.ui:34 msgctxt "menuassignpage|gear_textOnly" msgid "Voting" -msgstr "" +msgstr "Avstemming" #. KsZpM #: cui/uiconfig/ui/additionsdialog.ui:43 msgctxt "menuassignpage|gear_textOnly" msgid "Downloads" -msgstr "" +msgstr "Nedlastning" #. A4zUt #: cui/uiconfig/ui/additionsdialog.ui:52 @@ -4641,13 +4633,13 @@ #: cui/uiconfig/ui/additionsdialog.ui:71 msgctxt "menuassignpage|gear_iconAndText" msgid "Detail view" -msgstr "" +msgstr "Detaljert vy" #. SoASj #: cui/uiconfig/ui/additionsdialog.ui:82 msgctxt "menuassignpage|gear_iconAndText" msgid "Condensed list" -msgstr "" +msgstr "Kondensert liste" #. MdFgz #: cui/uiconfig/ui/additionsdialog.ui:98 @@ -4682,7 +4674,6 @@ #. iamTq #: cui/uiconfig/ui/additionsdialog.ui:212 -#, fuzzy msgctxt "additionsdialog|buttonGear" msgid "Gear Menu" msgstr "Tannhjulsmeny" @@ -4715,7 +4706,7 @@ #: cui/uiconfig/ui/additionsfragment.ui:68 msgctxt "additionsEntry|votingLabel" msgid "Voting:" -msgstr "" +msgstr "Avstemning" #. iMQas #: cui/uiconfig/ui/additionsfragment.ui:88 @@ -4739,7 +4730,7 @@ #: cui/uiconfig/ui/additionsfragment.ui:142 msgctxt "additionsEntry|labelComments" msgid "Downloads:" -msgstr "" +msgstr "Nedlastning" #. JRe5b #: cui/uiconfig/ui/additionsfragment.ui:356 @@ -4781,13 +4772,13 @@ #: cui/uiconfig/ui/agingdialog.ui:212 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 "" +msgstr "Alle piksler er satt til sine grå verdier, og deretter reduseres de grønne og blå fargekanalene med den verdien du spesifiserer. Den røde fargekanalen endres ikke." #. nxZTH #: cui/uiconfig/ui/applyautofmtpage.ui:55 msgctxt "applyautofmtpage|edit" msgid "_Edit..." -msgstr "R_ediger …" +msgstr "Rediger …" #. AYYCs #: cui/uiconfig/ui/applyautofmtpage.ui:64 @@ -4841,31 +4832,31 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:139 msgctxt "applylocalizedpage|extended_tip|list" msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]." -msgstr "" +msgstr "Velg å bruke erstatningene mens du skriver [T], eller når du endrer eksisterende tekst [M]." #. KM3Dj #: cui/uiconfig/ui/applylocalizedpage.ui:200 msgctxt "applylocalizedpage|extended_tip|checklist" msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]." -msgstr "" +msgstr "Velg å bruke erstatningene mens du skriver [T], eller når du endrer eksisterende tekst [M]." #. srHxL #: cui/uiconfig/ui/applylocalizedpage.ui:245 msgctxt "applylocalizedpage|singlereplace" msgid "Repla_ce" -msgstr "_Erstatt" +msgstr "Erstatt" #. ybjKY #: cui/uiconfig/ui/applylocalizedpage.ui:254 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 "" +msgstr "Erstatter automatisk standardsystemsymbolet for den gitte anførselstypen med spesialtegnet du angir." #. EQrEN #: cui/uiconfig/ui/applylocalizedpage.ui:269 msgctxt "applylocalizedpage|startquoteft" msgid "_Start quote:" -msgstr "_Starthermetegn:" +msgstr "Starthermetegn:" #. ASq8L #: cui/uiconfig/ui/applylocalizedpage.ui:293 @@ -4877,7 +4868,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:294 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 "" +msgstr "Velg spesialtegnet som automatisk erstatter det gjeldende anførselstegnet i dokumentet når du velger Verktøy - Autokorrigering - Bruk." #. FFEVA #: cui/uiconfig/ui/applylocalizedpage.ui:307 @@ -4889,7 +4880,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:323 msgctxt "applylocalizedpage|defaultsingle" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. QY58F #: cui/uiconfig/ui/applylocalizedpage.ui:331 @@ -4901,13 +4892,13 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:332 msgctxt "applylocalizedpage|extended_tip|defaultsingle" msgid "Resets the quotation marks to the default symbols." -msgstr "" +msgstr "Tilbakestiller anførselstegnene til standardsymbolene." #. GRDaT #: cui/uiconfig/ui/applylocalizedpage.ui:346 msgctxt "applylocalizedpage|endquoteft" msgid "_End quote:" -msgstr "_Slutthermetegn:" +msgstr "Slutthermetegn:" #. Am27U #: cui/uiconfig/ui/applylocalizedpage.ui:370 @@ -4919,7 +4910,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:371 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 "" +msgstr "Velg spesialtegnet som automatisk erstatter det gjeldende anførselstegnet i dokumentet når du velger Verktøy - Autokorrigering - Bruk." #. M4BCQ #: cui/uiconfig/ui/applylocalizedpage.ui:384 @@ -4937,19 +4928,19 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:441 msgctxt "applylocalizedpage|doublereplace" msgid "Repla_ce" -msgstr "_Erstatt" +msgstr "Erstatt" #. AADNo #: cui/uiconfig/ui/applylocalizedpage.ui:450 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 "" +msgstr "Erstatter automatisk standardsystemsymbolet for den gitte anførselstypen med spesialtegnet du angir." #. MAW53 #: cui/uiconfig/ui/applylocalizedpage.ui:465 msgctxt "applylocalizedpage|label6" msgid "_Start quote:" -msgstr "_Starthermetegn:" +msgstr "Starthermetegn:" #. BEFQi #: cui/uiconfig/ui/applylocalizedpage.ui:489 @@ -4961,7 +4952,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:490 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 "" +msgstr "Velg spesialtegnet som automatisk erstatter det gjeldende anførselstegnet i dokumentet når du velger Verktøy - Autokorrigering - Bruk." #. oqBJC #: cui/uiconfig/ui/applylocalizedpage.ui:503 @@ -4973,7 +4964,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:519 msgctxt "applylocalizedpage|defaultdouble" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. KFTqi #: cui/uiconfig/ui/applylocalizedpage.ui:527 @@ -4985,13 +4976,13 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:528 msgctxt "applylocalizedpage|extended_tip|defaultdouble" msgid "Resets the quotation marks to the default symbols." -msgstr "" +msgstr "Tilbakestiller anførselstegnene til standardsymbolene." #. cDwwK #: cui/uiconfig/ui/applylocalizedpage.ui:542 msgctxt "applylocalizedpage|label8" msgid "_End quote:" -msgstr "_Slutthermetegn:" +msgstr "Slutthermetegn:" #. 85hDi #: cui/uiconfig/ui/applylocalizedpage.ui:566 @@ -5003,7 +4994,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:567 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 "" +msgstr "Velg spesialtegnet som automatisk erstatter det gjeldende anførselstegnet i dokumentet når du velger Verktøy - Autokorrigering - Bruk." #. FBndB #: cui/uiconfig/ui/applylocalizedpage.ui:580 @@ -5021,7 +5012,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:632 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 "" +msgstr "Spesifiser alternativene for autokorrigering for anførselstegn og for alternativer som er spesifikke for språket i teksten." #. BXzDP #: cui/uiconfig/ui/areadialog.ui:8 @@ -5075,7 +5066,7 @@ #: 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 "" +msgstr "Angi fyllingsalternativene for det valgte tegneobjektet eller dokumentelementet." #. 2kC9i #: cui/uiconfig/ui/areatabpage.ui:51 @@ -5087,7 +5078,7 @@ #: cui/uiconfig/ui/areatabpage.ui:57 msgctxt "areatabpage|extended_tip|btnnone" msgid "Do not fill the selected object." -msgstr "" +msgstr "Ikke fyll det valgte objektet." #. AiEuM #: cui/uiconfig/ui/areatabpage.ui:69 @@ -5099,7 +5090,7 @@ #: cui/uiconfig/ui/areatabpage.ui:75 msgctxt "areatabpage|extended_tip|btncolor" msgid "Fills the object with a gradient selected on this page." -msgstr "" +msgstr "Fyller objektet med en gradient som er valgt på denne siden." #. zXDcA #: cui/uiconfig/ui/areatabpage.ui:87 @@ -5111,7 +5102,7 @@ #: cui/uiconfig/ui/areatabpage.ui:93 msgctxt "areatabpage|extended_tip|btngradient" msgid "Fills the object with a gradient selected on this page." -msgstr "" +msgstr "Fyller objektet med en gradient valgt på denne siden." #. MDHs7 #: cui/uiconfig/ui/areatabpage.ui:105 @@ -5123,7 +5114,7 @@ #: cui/uiconfig/ui/areatabpage.ui:111 msgctxt "areatabpage|extended_tip|btnbitmap" msgid "Fills the object with a hatching pattern selected on this page." -msgstr "" +msgstr "Fyller objektet med et skraverngsmønster som er valgt på denne siden." #. 9q7GD #: cui/uiconfig/ui/areatabpage.ui:123 @@ -5135,7 +5126,7 @@ #: cui/uiconfig/ui/areatabpage.ui:129 msgctxt "areatabpage|extended_tip|btnpattern" msgid "Fills the object with a hatching pattern selected on this page." -msgstr "" +msgstr "Fyller objektet med et skraverngsmønster som er valgt på denne siden." #. 5y6vj #: cui/uiconfig/ui/areatabpage.ui:141 @@ -5147,13 +5138,13 @@ #: cui/uiconfig/ui/areatabpage.ui:147 msgctxt "areatabpage|extended_tip|btnhatch" msgid "Fills the object with a hatching pattern selected on this page." -msgstr "" +msgstr "Fyller objektet med et skraveringsmønster valgt på denne siden." #. 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 "" +msgstr "Angi fyllingsalternativene for det valgte tegneobjektet eller dokumentelementet." #. GSXcM #: cui/uiconfig/ui/asiantypography.ui:25 @@ -5279,7 +5270,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:53 msgctxt "baselinksdialog|CHANGE_SOURCE" msgid "_Modify..." -msgstr "E_ndre …" +msgstr "Endre …" #. BhCKm #: cui/uiconfig/ui/baselinksdialog.ui:60 @@ -5291,7 +5282,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:72 msgctxt "baselinksdialog|BREAK_LINK" msgid "_Break Link" -msgstr "_Bryt lenke" +msgstr "Bryt lenke" #. EXexA #: cui/uiconfig/ui/baselinksdialog.ui:79 @@ -5303,7 +5294,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:91 msgctxt "baselinksdialog|UPDATE_NOW" msgid "_Update" -msgstr "_Oppdater" +msgstr "Oppdater" #. BmGAY #: cui/uiconfig/ui/baselinksdialog.ui:98 @@ -5369,7 +5360,7 @@ #: cui/uiconfig/ui/baselinksdialog.ui:356 msgctxt "baselinksdialog|AUTOMATIC" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. wkpVe #: cui/uiconfig/ui/baselinksdialog.ui:366 @@ -5381,31 +5372,31 @@ #: cui/uiconfig/ui/baselinksdialog.ui:377 msgctxt "baselinksdialog|MANUAL" msgid "Ma_nual" -msgstr "Ma_nuell" +msgstr "Manuell" #. x8SG6 #: cui/uiconfig/ui/baselinksdialog.ui:387 msgctxt "baselinksdialog|extended_tip|MANUAL" msgid "Only updates the link when you click the Update button." -msgstr "" +msgstr "Oppdater lenken bare når du klikker på Oppdater-knappen." #. D2J77 #: cui/uiconfig/ui/baselinksdialog.ui:427 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 "" +msgstr "Lar deg redigere egenskapene til hver lenke i det gjeldende dokumentet, inkludert banen til kildefilen. Denne kommandoen er ikke tilgjengelig hvis det gjeldende dokumentet ikke inneholder lenker til andre filer." #. D264D #: cui/uiconfig/ui/bitmaptabpage.ui:66 msgctxt "bitmaptabpage|BTN_IMPORT" msgid "Add / Import" -msgstr "Legg til / importer" +msgstr "Legg til/Importer" #. 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 "Finn bildet som du vil importere, og velg deretter Åpne. Bildet vil bli lagt til i bunnen av lista over mønstre." +msgstr "Finn bildet som du vil importere, og velg deretter Åpne. Bildet vil bli lagt til i bunnen av listen over mønstre." #. UYRCn #: cui/uiconfig/ui/bitmaptabpage.ui:90 @@ -5447,13 +5438,13 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:200 msgctxt "bitmaptabpage|label5" msgid "Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. CQHCj #: cui/uiconfig/ui/bitmaptabpage.ui:239 msgctxt "bitmaptabpage|label6" msgid "Height:" -msgstr "_Høyde:" +msgstr "Høyde:" #. D7XC6 #: cui/uiconfig/ui/bitmaptabpage.ui:271 @@ -5579,13 +5570,13 @@ #: cui/uiconfig/ui/bitmaptabpage.ui:612 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 "" +msgstr "Velg en punktgrafikk som du vil bruke som fyllbilde, eller legg til ditt eget punktgrafikkmønster." #. AYRA3 #: cui/uiconfig/ui/borderareatransparencydialog.ui:8 msgctxt "borderareatransparencydialog|BorderAreaTransparencyDialog" msgid "Border / Background" -msgstr "Kantlinje/bakgrunn" +msgstr "Kantlinje/Bakgrunn" #. ogcAy #: cui/uiconfig/ui/borderareatransparencydialog.ui:110 @@ -5609,7 +5600,7 @@ #: cui/uiconfig/ui/borderbackgrounddialog.ui:8 msgctxt "borderbackgrounddialog|BorderBackgroundDialog" msgid "Border / Background" -msgstr "Kantlinje/bakgrunn" +msgstr "Kantlinje/Bakgrunn" #. gVV2M #: cui/uiconfig/ui/borderbackgrounddialog.ui:113 @@ -5627,13 +5618,13 @@ #: cui/uiconfig/ui/borderpage.ui:94 msgctxt "borderpage|userdefft" msgid "_User-defined:" -msgstr "_Selvvalgt:" +msgstr "Selvvalgt:" #. NBk5A #: cui/uiconfig/ui/borderpage.ui:98 msgctxt "borderpage|userdefft" msgid "Click edge or corner to cycle through three states: set, unchanged, remove." -msgstr "" +msgstr "Klikk på kant eller hjørne for å bla gjennom tre tilstander: sett, uendret, fjern." #. sRXeg #: cui/uiconfig/ui/borderpage.ui:111 @@ -5645,7 +5636,7 @@ #: cui/uiconfig/ui/borderpage.ui:136 msgctxt "borderpage|rmadjcellbordersft" msgid "_Adjacent Cells:" -msgstr "_Naboceller:" +msgstr "Naboceller:" #. FHdEF #: cui/uiconfig/ui/borderpage.ui:149 @@ -5663,19 +5654,19 @@ #: cui/uiconfig/ui/borderpage.ui:209 msgctxt "borderpage|label15" msgid "St_yle:" -msgstr "_Stil:" +msgstr "Stil:" #. 8UGAB #: cui/uiconfig/ui/borderpage.ui:223 msgctxt "borderpage|label16" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. Dweon #: cui/uiconfig/ui/borderpage.ui:237 msgctxt "borderpage|label17" msgid "_Color:" -msgstr "_Farge:" +msgstr "Farge:" #. uwByw #: cui/uiconfig/ui/borderpage.ui:305 @@ -5687,7 +5678,7 @@ #: cui/uiconfig/ui/borderpage.ui:398 msgctxt "borderpage|leftft" msgid "_Left:" -msgstr "_Venstre:" +msgstr "Venstre:" #. nULKu #: cui/uiconfig/ui/borderpage.ui:412 @@ -5699,13 +5690,13 @@ #: cui/uiconfig/ui/borderpage.ui:426 msgctxt "borderpage|topft" msgid "_Top:" -msgstr "Ø_verst:" +msgstr "Øverst:" #. fRE8t #: cui/uiconfig/ui/borderpage.ui:440 msgctxt "borderpage|bottomft" msgid "_Bottom:" -msgstr "_Nederst:" +msgstr "Nederst:" #. M8CGp #: cui/uiconfig/ui/borderpage.ui:452 @@ -5723,25 +5714,25 @@ #: cui/uiconfig/ui/borderpage.ui:534 msgctxt "borderpage|label22" msgid "_Position:" -msgstr "_Posisjon:" +msgstr "Posisjon:" #. C7T8B #: cui/uiconfig/ui/borderpage.ui:548 msgctxt "borderpage|distanceft" msgid "Distan_ce:" -msgstr "_Avstand:" +msgstr "Avstand:" #. 8ojCs #: cui/uiconfig/ui/borderpage.ui:552 msgctxt "borderpage|distanceft" msgid "Width of shadow" -msgstr "" +msgstr "Skygge bredde" #. gEF6E #: cui/uiconfig/ui/borderpage.ui:578 msgctxt "borderpage|shadowcolorft" msgid "C_olor:" -msgstr "_Farge:" +msgstr "Farge:" #. RsGNr #: cui/uiconfig/ui/borderpage.ui:613 @@ -6065,19 +6056,19 @@ #: cui/uiconfig/ui/calloutpage.ui:84 msgctxt "calloutpage|liststore1" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. bzD84 #: cui/uiconfig/ui/calloutpage.ui:85 msgctxt "calloutpage|liststore1" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. StuZd #: cui/uiconfig/ui/calloutpage.ui:89 msgctxt "calloutpage|extended_tip|extension" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "Velg hvor forklaringslinja skal starte i forhold til forklaringsboksen." +msgstr "Velg hvor forklaringslinjen skal starte i forhold til forklaringsboksen." #. CGjKD #: cui/uiconfig/ui/calloutpage.ui:121 @@ -6155,13 +6146,13 @@ #: cui/uiconfig/ui/calloutpage.ui:219 msgctxt "calloutpage|extended_tip|position" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "Velg hvor forklaringslinja skal starte i forhold til forklaringsboksen." +msgstr "Velg hvor forklaringslinjen skal starte i forhold til forklaringsboksen." #. rj7LU #: cui/uiconfig/ui/calloutpage.ui:239 msgctxt "calloutpage|extended_tip|by" msgid "Select where you want to extend the callout line from, in relation to the callout box." -msgstr "Velg hvor forklaringslinja skal starte i forhold til forklaringsboksen." +msgstr "Velg hvor forklaringslinjen skal starte i forhold til forklaringsboksen." #. jG4AE #: cui/uiconfig/ui/calloutpage.ui:264 @@ -6215,25 +6206,25 @@ #: cui/uiconfig/ui/cellalignment.ui:87 msgctxt "cellalignment|extended_tip|spinDegrees" msgid "Enter the rotation angle from 0 to 360 for the text in the selected cell(s)." -msgstr "" +msgstr "Angi rotasjonsvinkelen fra 0 til 360 for teksten i de valgte cellene." #. D2Ebb #: cui/uiconfig/ui/cellalignment.ui:104 msgctxt "cellalignment|extended_tip|references" msgid "Specify the cell edge from which to write the rotated text." -msgstr "" +msgstr "Spesifiser cellekanten der du skal skrive den roterte teksten.Spesifiser cellekanten der du skal skrive den roterte teksten." #. Gwudo #: cui/uiconfig/ui/cellalignment.ui:127 msgctxt "cellalignment|checkVertStack" msgid "Vertically s_tacked" -msgstr "Loddrett stablet" +msgstr "Vertikalt stablet" #. MDQLn #: cui/uiconfig/ui/cellalignment.ui:137 msgctxt "cellalignment|extended_tip|checkVertStack" msgid "Aligns text vertically." -msgstr "Midtstill tekst loddrett." +msgstr "Midtstill tekst vertikal." #. XBFYt #: cui/uiconfig/ui/cellalignment.ui:148 @@ -6245,13 +6236,13 @@ #: cui/uiconfig/ui/cellalignment.ui:159 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 "" +msgstr "Justerer asiatiske tegn etter hverandre i de valgte cellene. Hvis cellen inneholder mer enn en tekstlinje, konverteres linjene til tekstkolonner som er ordnet fra høyre til venstre. Vestlige tegn i den konverterte teksten roteres 90 grader til høyre. Asiatiske tegn roteres ikke." #. rTfQa #: cui/uiconfig/ui/cellalignment.ui:183 msgctxt "cellalignment|extended_tip|dialcontrol" msgid "Click in the dial to set the text orientation." -msgstr "" +msgstr "Klikk på rattet for å angi tekstretningen." #. Kh9JE #: cui/uiconfig/ui/cellalignment.ui:201 @@ -6269,7 +6260,7 @@ #: cui/uiconfig/ui/cellalignment.ui:247 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 "" +msgstr "Pakk tekst inn på en annen linje ved cellegrensen. Antall linjer avhenger av bredden på cellen." #. GDRER #: cui/uiconfig/ui/cellalignment.ui:258 @@ -6293,7 +6284,7 @@ #: cui/uiconfig/ui/cellalignment.ui:291 msgctxt "cellalignment|extended_tip|checkHyphActive" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "" +msgstr "Aktiverer orddeling for tekstinnpakning til neste linje." #. pQLTe #: cui/uiconfig/ui/cellalignment.ui:309 @@ -6311,13 +6302,13 @@ #: cui/uiconfig/ui/cellalignment.ui:385 msgctxt "cellalignment|extended_tip|spinIndentFrom" msgid "Indents from the left edge of the cell by the amount that you enter." -msgstr "" +msgstr "Innrykk fra venstre kant av cellen med verdien du angir." #. dzBtA #: cui/uiconfig/ui/cellalignment.ui:398 msgctxt "cellalignment|labelHorzAlign" msgid "Hori_zontal:" -msgstr "Vannrett:" +msgstr "Horisontalt:" #. Ck3KU #: cui/uiconfig/ui/cellalignment.ui:412 @@ -6377,7 +6368,7 @@ #: cui/uiconfig/ui/cellalignment.ui:451 msgctxt "cellalignment|extended_tip|comboboxHorzAlign" msgid "Select the horizontal alignment option that you want to apply to the cell contents." -msgstr "" +msgstr "Velg det horisontale justeringsalternativet du vil bruke på celleinnholdet." #. Cu2BM #: cui/uiconfig/ui/cellalignment.ui:465 @@ -6419,7 +6410,7 @@ #: cui/uiconfig/ui/cellalignment.ui:474 msgctxt "cellalignment|extended_tip|comboboxVertAlign" msgid "Select the vertical alignment option that you want to apply to the cell contents." -msgstr "" +msgstr "Velg det vertikale justeringsalternativet du vil bruke på celleinnholdet." #. FT9GJ #: cui/uiconfig/ui/cellalignment.ui:497 @@ -6443,7 +6434,7 @@ #: cui/uiconfig/ui/cellalignment.ui:539 msgctxt "cellalignment|labelSTR_CELLLOCK" msgid "Text Extension Inside Cell" -msgstr "Tekstutvidelse inni celle" +msgstr "Tekstutvidelse inne i celle" #. EDRZX #: cui/uiconfig/ui/cellalignment.ui:550 @@ -6455,7 +6446,7 @@ #: cui/uiconfig/ui/cellalignment.ui:566 msgctxt "cellalignment|extended_tip|CellAlignPage" msgid "Sets the alignment options for the contents of the current cell, or the selected cells." -msgstr "" +msgstr "Angir justeringsalternativene for innholdet i den gjeldende cellen eller de valgte cellene." #. xPtim #: cui/uiconfig/ui/certdialog.ui:24 @@ -6473,13 +6464,13 @@ #: 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 "" +msgstr "Åpner en filvelger-dialog for å legge til en ny katalog for Network Security Services Certificate i listen." #. GFGjC #: cui/uiconfig/ui/certdialog.ui:139 msgctxt "certdialog|label2" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures:" -msgstr "Velg eller legg til den korrekte mappa med Network Security Services-sertifikatene som skal brukes til digitale signaturer." +msgstr "Velg eller legg til den korrekte mappen med Network Security Services-sertifikatene som skal brukes til digitale signaturer." #. BbEyB #: cui/uiconfig/ui/certdialog.ui:163 @@ -6515,7 +6506,7 @@ #: cui/uiconfig/ui/certdialog.ui:284 msgctxt "certdialog|extended_tip|CertDialog" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Velg eller legg til riktig Network Security Services Certificate-katalog som skal brukes til digitale signaturer." #. xXVpD #: cui/uiconfig/ui/charnamepage.ui:247 @@ -6527,7 +6518,7 @@ #: cui/uiconfig/ui/charnamepage.ui:345 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 "" +msgstr "Angi eller velg fontstørrelsen du vil bruke. For skalerbare fonter kan du også angi desimalverdier." #. YcKtn #: cui/uiconfig/ui/charnamepage.ui:377 @@ -6545,7 +6536,7 @@ #: cui/uiconfig/ui/charnamepage.ui:439 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 "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i lista." +msgstr "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i listen." #. NgZJ9 #: cui/uiconfig/ui/charnamepage.ui:458 @@ -6575,13 +6566,13 @@ #: cui/uiconfig/ui/charnamepage.ui:618 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 "" +msgstr "Angi eller velg fontstørrelsen du vil bruke. For skalerbare fonter kan du også angi desimalverdier." #. zCCrx #: cui/uiconfig/ui/charnamepage.ui:650 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 "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i lista." +msgstr "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i listen." #. qpSnT #: cui/uiconfig/ui/charnamepage.ui:679 @@ -6617,13 +6608,13 @@ #: cui/uiconfig/ui/charnamepage.ui:851 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 "" +msgstr "Angi eller velg fontstørrelsen du vil bruke. For skalerbare fonter kan du også angi desimalverdier." #. KLJQT #: cui/uiconfig/ui/charnamepage.ui:881 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 "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i lista." +msgstr "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i listen." #. 5uQYn #: cui/uiconfig/ui/charnamepage.ui:909 @@ -6659,13 +6650,13 @@ #: cui/uiconfig/ui/charnamepage.ui:1081 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 "" +msgstr "Angi eller velg fontstørrelsen du vil bruke. For skalerbare fonter kan du også angi desimalverdier." #. zCKxL #: cui/uiconfig/ui/charnamepage.ui:1111 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 "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i lista." +msgstr "Velg hvilket språk stavekontrollen skal bruke. Tilgjengelige språkmoduler har en hake foran seg i listen." #. Nobqa #: cui/uiconfig/ui/charnamepage.ui:1140 @@ -6893,7 +6884,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1010 msgctxt "colorconfigwin|notes" msgid "Notes background" -msgstr "Merknadbakgrunn" +msgstr "Merknadsbakgrunn" #. KdFAN #: cui/uiconfig/ui/colorconfigwin.ui:1040 @@ -7115,25 +7106,25 @@ #: cui/uiconfig/ui/colorpage.ui:507 msgctxt "colorpage|label10" msgid "_C" -msgstr "_C" +msgstr "C" #. LCfVw #: cui/uiconfig/ui/colorpage.ui:520 msgctxt "colorpage|label16" msgid "_K" -msgstr "_K" +msgstr "K" #. qmNUp #: cui/uiconfig/ui/colorpage.ui:533 msgctxt "colorpage|label17" msgid "_Y" -msgstr "_Y" +msgstr "Y" #. TSEpY #: cui/uiconfig/ui/colorpage.ui:598 msgctxt "colorpage|label15" msgid "_M" -msgstr "_M" +msgstr "M" #. VnCYq #: cui/uiconfig/ui/colorpage.ui:622 @@ -7163,19 +7154,19 @@ #: cui/uiconfig/ui/colorpage.ui:744 msgctxt "colorpage|label4" msgid "_B" -msgstr "_B" +msgstr "B" #. HXuEA #: cui/uiconfig/ui/colorpage.ui:757 msgctxt "colorpage|label3" msgid "_G" -msgstr "_G" +msgstr "G" #. Kd4oX #: cui/uiconfig/ui/colorpage.ui:770 msgctxt "colorpage|label2" msgid "_R" -msgstr "_R" +msgstr "R" #. FgaZg #: cui/uiconfig/ui/colorpage.ui:784 @@ -7193,25 +7184,25 @@ #: cui/uiconfig/ui/colorpage.ui:841 msgctxt "colorpage|label11" msgid "_C" -msgstr "_C" +msgstr "C" #. r3QVM #: cui/uiconfig/ui/colorpage.ui:854 msgctxt "colorpage|label12" msgid "_M" -msgstr "_M" +msgstr "M" #. 9C3nc #: cui/uiconfig/ui/colorpage.ui:867 msgctxt "colorpage|label13" msgid "_K" -msgstr "_K" +msgstr "K" #. KeYG5 #: cui/uiconfig/ui/colorpage.ui:906 msgctxt "colorpage|label14" msgid "_Y" -msgstr "_Y" +msgstr "Y" #. WPVmD #: cui/uiconfig/ui/colorpage.ui:950 @@ -7469,7 +7460,7 @@ #: cui/uiconfig/ui/comment.ui:223 msgctxt "comment|extended_tip|edit" msgid "Enter a comment for the recorded change." -msgstr "" +msgstr "Skriv inn en kommentar for den registrerte endringen." #. bEtYk #: cui/uiconfig/ui/comment.ui:245 @@ -7499,7 +7490,7 @@ #: cui/uiconfig/ui/comment.ui:319 msgctxt "comment|extended_tip|CommentDialog" msgid "Enter a comment for the recorded change." -msgstr "" +msgstr "Skriv inn en kommentar for den registrerte endringen." #. B73bz #: cui/uiconfig/ui/connectortabpage.ui:62 @@ -7559,49 +7550,49 @@ #: cui/uiconfig/ui/connectortabpage.ui:259 msgctxt "connectortabpage|FT_HORZ_1" msgid "_Begin horizontal:" -msgstr "Begynn vannrett:" +msgstr "Begynn Horisontalt:" #. jENzB #: cui/uiconfig/ui/connectortabpage.ui:273 msgctxt "connectortabpage|FT_HORZ_2" msgid "End _horizontal:" -msgstr "Avslutt vannrett" +msgstr "Avslutt Horisontalt" #. WSBhJ #: cui/uiconfig/ui/connectortabpage.ui:287 msgctxt "connectortabpage|FT_VERT_1" msgid "Begin _vertical:" -msgstr "Begynn loddrett:" +msgstr "Begynn vertikalt:" #. bGjTC #: cui/uiconfig/ui/connectortabpage.ui:301 msgctxt "connectortabpage|FT_VERT_2" msgid "_End vertical:" -msgstr "Avslutt loddrett:" +msgstr "Avslutt vertikalt:" #. md9nD #: cui/uiconfig/ui/connectortabpage.ui:321 msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_1" msgid "Enter the amount of horizontal space you want at the beginning of the connector." -msgstr "Angi hvor mye vannrett avstand du vil ha i begynnelsen av hver kobling." +msgstr "Angi hvor mye horisontal avstand du vil ha i begynnelsen av hver kobling." #. pUTnF #: cui/uiconfig/ui/connectortabpage.ui:340 msgctxt "connectortabpage|extended_tip|MTR_FLD_HORZ_2" msgid "Enter the amount of horizontal space you want at the end of the connector." -msgstr "Angi hvor mye vannrett avstand du vil ha i slutten av hver kobling." +msgstr "Angi hvor mye horisontal avstand du vil ha i slutten av hver kobling." #. 23o9a #: cui/uiconfig/ui/connectortabpage.ui:359 msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_1" msgid "Enter the amount of vertical space you want at the beginning of the connector." -msgstr "Angi hvor mye loddrett avstand det skal være på begynnelsen av koblinga." +msgstr "Angi hvor stor vertikal avstand det skal være på begynnelsen av koblingen." #. 22Tvd #: cui/uiconfig/ui/connectortabpage.ui:378 msgctxt "connectortabpage|extended_tip|MTR_FLD_VERT_2" msgid "Enter the amount of vertical space you want at the end of the connector." -msgstr "Angi hvor mye loddrett avstand det skal være på slutten av koblinga." +msgstr "Angi hvor stor vertikal avstand det skal være på slutten av koblingen." #. idTk6 #: cui/uiconfig/ui/connectortabpage.ui:395 @@ -7631,13 +7622,13 @@ #: cui/uiconfig/ui/connpooloptions.ui:59 msgctxt "connpooloptions|connectionpooling" msgid "Connection pooling enabled" -msgstr "Tilkoblingsforråd er slått på" +msgstr "Tilkoblings pakkebrønn er slått på" #. pPghH #: cui/uiconfig/ui/connpooloptions.ui:68 msgctxt "extended_tip|connectionpooling" msgid "Specifies whether the chosen connections are pooled." -msgstr "Angir om de valgte tilkoblingene skal samles i et forråd." +msgstr "Angir om de valgte tilkoblingene skal samles i en pakkebrønn." #. GHbky #: cui/uiconfig/ui/connpooloptions.ui:90 @@ -7655,13 +7646,13 @@ #: cui/uiconfig/ui/connpooloptions.ui:139 msgctxt "connpooloptions|enablepooling" msgid "Enable pooling for this driver" -msgstr "Slå på forråd for denne driveren" +msgstr "Slå på pakkebrønn for denne driveren" #. b26rn #: cui/uiconfig/ui/connpooloptions.ui:148 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 "Velg en driver fra lista og merk av for Slå på forråd for denne driveren for å legge til tilkoblingen til driveren i forrådet." +msgstr "Velg en driver fra listen og merk av for Slå på pakkebrønn for denne driveren for å legge til tilkoblingen til driveren i pakkebrønnen." #. uzbLN #: cui/uiconfig/ui/connpooloptions.ui:167 @@ -7673,7 +7664,7 @@ #: cui/uiconfig/ui/connpooloptions.ui:189 msgctxt "extended_tip|timeout" msgid "Defines the time in seconds after which a pooled connection is freed." -msgstr "Angir etter hvor mange sekunder en tilkobling i forrådet skal gjøres ledig." +msgstr "Angir etter hvor mange sekunder en tilkobling i pakkebrønnen skal gjøres ledig." #. gWFKz #: cui/uiconfig/ui/connpooloptions.ui:236 @@ -7697,7 +7688,7 @@ #: cui/uiconfig/ui/connpooloptions.ui:300 msgctxt "connpooloptions|label1" msgid "Connection Pool" -msgstr "Tilkoblingsforråd" +msgstr "Tilkoblings pakkebrønn" #. XfFi7 #: cui/uiconfig/ui/croppage.ui:87 @@ -7799,7 +7790,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:115 msgctxt "cuiimapdlg|extended_tip|urlentry" msgid "Enter the URL for the file that you want to open when you click the selected hotspot." -msgstr "" +msgstr "Skriv inn URL-adressen til filen du vil åpne når du klikker på valgt hotspot." #. FLKr9 #: cui/uiconfig/ui/cuiimapdlg.ui:143 @@ -7835,7 +7826,7 @@ #: cui/uiconfig/ui/cuiimapdlg.ui:265 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 "" +msgstr "Skriv inn teksten du vil vise når musen hviler på en sone i en nettleser." #. bsgYj #: cui/uiconfig/ui/cuiimapdlg.ui:293 @@ -7919,13 +7910,13 @@ #: cui/uiconfig/ui/databaselinkdialog.ui:112 msgctxt "databaselinkdialog|label1" msgid "_Database file:" -msgstr "_Databasefil:" +msgstr "Databasefil:" #. X5UnF #: cui/uiconfig/ui/databaselinkdialog.ui:160 msgctxt "databaselinkdialog|label4" msgid "Registered _name:" -msgstr "Registrert _navn:" +msgstr "Registrert navn:" #. qrTa8 #: cui/uiconfig/ui/databaselinkdialog.ui:180 @@ -7943,7 +7934,7 @@ #: cui/uiconfig/ui/databaselinkdialog.ui:225 msgctxt "extended_tip|DatabaseLinkDialog" msgid "Creates or edits an entry in the Databases tab page." -msgstr "" +msgstr "Oppretter eller redigerer en oppføring på fanen Databaser." #. ehaGT #: cui/uiconfig/ui/dbregisterpage.ui:74 @@ -7961,37 +7952,37 @@ #: cui/uiconfig/ui/dbregisterpage.ui:124 msgctxt "dbregisterpage|new" msgid "_New..." -msgstr "_Ny …" +msgstr "Ny …" #. AFdvd #: cui/uiconfig/ui/dbregisterpage.ui:131 msgctxt "extended_tip|new" msgid "Opens the Database Link dialog to create a new entry." -msgstr "" +msgstr "Åpner dialogboksen Databasekobling for å opprette en ny oppføring." #. zqFjG #: cui/uiconfig/ui/dbregisterpage.ui:143 msgctxt "dbregisterpage|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. ZqToY #: cui/uiconfig/ui/dbregisterpage.ui:150 msgctxt "extended_tip|delete" msgid "Removes the selected entry from the list." -msgstr "Fjerner den valgte oppføringen fra lista." +msgstr "Fjerner den valgte oppføringen fra listen." #. eiE2E #: cui/uiconfig/ui/dbregisterpage.ui:162 msgctxt "dbregisterpage|edit" msgid "_Edit..." -msgstr "R_ediger …" +msgstr "Rediger …" #. fAwt9 #: cui/uiconfig/ui/dbregisterpage.ui:169 msgctxt "extended_tip|edit" msgid "Opens the Database Link dialog to edit the selected entry." -msgstr "" +msgstr "Åpner dialogboksen Databasekobling for å redigere den valgte oppføringen." #. Q3nF4 #: cui/uiconfig/ui/dbregisterpage.ui:194 @@ -8003,43 +7994,43 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:77 msgctxt "dimensionlinestabpage|FT_LINE_DIST" msgid "Line _distance:" -msgstr "Linje_avstand:" +msgstr "Linjeavstand:" #. tQ8gk #: cui/uiconfig/ui/dimensionlinestabpage.ui:92 msgctxt "dimensionlinestabpage|FT_HELPLINE_OVERHANG" msgid "Guide _overhang:" -msgstr "_Overheng for hjelpelinje:" +msgstr "Overheng for hjelpelinje:" #. JvLym #: cui/uiconfig/ui/dimensionlinestabpage.ui:106 msgctxt "dimensionlinestabpage|FT_HELPLINE_DIST" msgid "_Guide distance:" -msgstr "Avstand mellom _hjelpelinjene:" +msgstr "Avstand mellom hjelpelinjene:" #. NFjhV #: cui/uiconfig/ui/dimensionlinestabpage.ui:120 msgctxt "dimensionlinestabpage|FT_HELPLINE1_LEN" msgid "_Left guide:" -msgstr "_Venstre hjelpelinje:" +msgstr "Venstre hjelpelinje:" #. Xwg2v #: cui/uiconfig/ui/dimensionlinestabpage.ui:134 msgctxt "dimensionlinestabpage|FT_HELPLINE2_LEN" msgid "_Right guide:" -msgstr "_Høyre hjelpelinje:" +msgstr "Høyre hjelpelinje:" #. pt5Gm #: cui/uiconfig/ui/dimensionlinestabpage.ui:148 msgctxt "dimensionlinestabpage|FT_DECIMALPLACES" msgid "Decimal _places:" -msgstr "_Desimalplasser:" +msgstr "Desimalplasser:" #. t7MZu #: cui/uiconfig/ui/dimensionlinestabpage.ui:160 msgctxt "dimensionlinestabpage|TSB_BELOW_REF_EDGE" msgid "Measure _below object" -msgstr "Målelinje _under objekt" +msgstr "Målelinje under objekt" #. DovuA #: cui/uiconfig/ui/dimensionlinestabpage.ui:171 @@ -8051,31 +8042,31 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:191 msgctxt "dimensionlinestabpage|extended_tip|MTR_LINE_DIST" msgid "Specifies the distance between the dimension line and the baseline (line distance = 0)." -msgstr "Angi avstanden mellom målelinja og grunnlinja (linjeavstand = 0)." +msgstr "Angi avstanden mellom målelinjen og grunnlinjen (linjeavstand = 0)." #. 6wKTs #: cui/uiconfig/ui/dimensionlinestabpage.ui:210 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 "Angi lengden på de venstre og høyre hjelpelinjene som begynner på grunnlinja (linjeavstand = 0). Positive verdier forlenger hjelpelinjene over grunnlinja, mens negative verdier forlenger hjelpelinjene under grunnlinja." +msgstr "Angi lengden på de venstre og høyre hjelpelinjene som begynner på grunnlinjen (linjeavstand = 0). Positive verdier forlenger hjelpelinjene over grunnlinjen, mens negative verdier forlenger hjelpelinjene under grunnlinjen." #. AdBKh #: cui/uiconfig/ui/dimensionlinestabpage.ui:229 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 "Angi lengden på de venstre og høyre hjelpelinjene som begynner på dimensjonslinja. Positive verdier forlenger hjelpelinjene over dimensjonslinja, mens negative verdier forlenger hjelpelinjene under dimensjonslinja." +msgstr "Angi lengden på de venstre og høyre hjelpelinjene som begynner på dimensjonslinjen. Positive verdier forlenger hjelpelinjene over dimensjonslinjen, mens negative verdier forlenger hjelpelinjene under dimensjonslinjen." #. hFGhD #: cui/uiconfig/ui/dimensionlinestabpage.ui:248 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 "Angi lengden på den venstre hjelpelinja som begynner på dimensjonslinja. Positive verdier forlenger hjelpelinja over dimensjonslinja, mens negative verdier forlenger hjelpelinja under dimensjonslinja." +msgstr "Angi lengden på den venstre hjelpelinjen som begynner på dimensjonslinjen. Positive verdier forlenger hjelpelinjen over dimensjonslinjen, mens negative verdier forlenger hjelpelinjen under dimensjonslinjen." #. 3bQD4 #: cui/uiconfig/ui/dimensionlinestabpage.ui:267 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 "Angi lengden på den høyre hjelpelinja som begynner på dimensjonslinja. Positive verdier forlenger hjelpelinja over dimensjonslinja, og negative verdier forlenger hjelpelinja under dimensjonslinja." +msgstr "Angi lengden på den høyre hjelpelinjen som begynner på dimensjonslinjen. Positive verdier forlenger hjelpelinjen over dimensjonslinjen, og negative verdier forlenger hjelpelinjen under dimensjonslinjen." #. BKJDe #: cui/uiconfig/ui/dimensionlinestabpage.ui:285 @@ -8093,7 +8084,7 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:338 msgctxt "dimensionlinestabpage|FT_POSITION" msgid "_Text position" -msgstr "_Tekstposisjon" +msgstr "Tekstposisjon" #. EBYZf #: cui/uiconfig/ui/dimensionlinestabpage.ui:381 @@ -8105,55 +8096,55 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:397 msgctxt "dimensionlinestabpage|TSB_AUTOPOSV" msgid "_AutoVertical" -msgstr "Auto_loddrett" +msgstr "Auto vertikal" #. mFwVB #: cui/uiconfig/ui/dimensionlinestabpage.ui:407 msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSV" msgid "Determines the optimal vertical position for the dimension text." -msgstr "Angi den optimale loddrette plasseringen av dimensjonsteksten." +msgstr "Angi den optimale vertikale plasseringen av dimensjonsteksten." #. KykMq #: cui/uiconfig/ui/dimensionlinestabpage.ui:419 msgctxt "dimensionlinestabpage|TSB_AUTOPOSH" msgid "A_utoHorizontal" -msgstr "Auto_vannrett" +msgstr "Auto horisontal" #. jepxb #: cui/uiconfig/ui/dimensionlinestabpage.ui:429 msgctxt "dimensionlinestabpage|extended_tip|TSB_AUTOPOSH" msgid "Determines the optimal horizontal position for the dimension text." -msgstr "Angi den optimale vannrette plasseringen av dimensjonsteksten." +msgstr "Angi den optimale horisontale plasseringen av dimensjonsteksten." #. yQtE3 #: cui/uiconfig/ui/dimensionlinestabpage.ui:450 msgctxt "dimensionlinestabpage|TSB_PARALLEL" msgid "_Parallel to line" -msgstr "_Parallell med linje" +msgstr "Parallell med linje" #. gZdFr #: cui/uiconfig/ui/dimensionlinestabpage.ui:460 msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL" msgid "Displays the text parallel to or at 90 degrees to the dimension line." -msgstr "Vis teksten parallelt med, eller 90 grader på dimensjonslinja." +msgstr "Vis teksten parallelt med, eller 90 grader på dimensjonslinjen." #. QNscD #: cui/uiconfig/ui/dimensionlinestabpage.ui:472 msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT" msgid "Show _measurement units" -msgstr "Vis _måleenheter" +msgstr "Vis måleenheter" #. cJRA9 #: cui/uiconfig/ui/dimensionlinestabpage.ui:482 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 "Vis eller skjul dimensjonsmåleenhetene. Du kan også velge en måleenhet du ønsker å vise fra lista." +msgstr "Vis eller skjul dimensjonsmåleenhetene. Du kan også velge en måleenhet du ønsker å vise fra listen." #. EEaqi #: cui/uiconfig/ui/dimensionlinestabpage.ui:500 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 "Vis eller skjul dimensjonsmåleenhetene. Du kan også velge en måleenhet du ønsker å vise fra lista." +msgstr "Vis eller skjul dimensjonsmåleenhetene. Du kan også velge en måleenhet du ønsker å vise fra listen." #. gX83d #: cui/uiconfig/ui/dimensionlinestabpage.ui:518 @@ -8375,7 +8366,7 @@ #: cui/uiconfig/ui/effectspage.ui:122 msgctxt "effectspage|extended_tip|effectslb" msgid "Select the font effects that you want to apply." -msgstr "" +msgstr "Velg fonteffektene du vil bruke." #. GJExJ #: cui/uiconfig/ui/effectspage.ui:136 @@ -8393,13 +8384,13 @@ #: cui/uiconfig/ui/effectspage.ui:138 msgctxt "effectspage|liststore2" msgid "Engraved" -msgstr "Utskåret" +msgstr "Inngravert" #. D49UU #: cui/uiconfig/ui/effectspage.ui:142 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 "" +msgstr "Velg enrelieffeffekt som skal brukes på den valgte teksten. Den pregede lettelsen får karakterene til å fremstå som om de er hevet over siden. Den graverte lettelsen får karakterene til å se ut som om de blir presset inn på siden." #. G8SPK #: cui/uiconfig/ui/effectspage.ui:156 @@ -8435,7 +8426,7 @@ #: cui/uiconfig/ui/effectspage.ui:164 msgctxt "effectspage|extended_tip|emphasislb" msgid "Select a character to display over or below the entire length of the selected text." -msgstr "" +msgstr "Velg et tegn som skal vises over eller under hele lengden på den valgte teksten." #. Z6WHC #: cui/uiconfig/ui/effectspage.ui:178 @@ -8453,7 +8444,7 @@ #: cui/uiconfig/ui/effectspage.ui:183 msgctxt "effectspage|extended_tip|positionlb" msgid "Specify where to display the emphasis marks." -msgstr "" +msgstr "Angi hvor vektleggingsmerkene skal vises." #. D848F #: cui/uiconfig/ui/effectspage.ui:196 @@ -8477,7 +8468,7 @@ #: cui/uiconfig/ui/effectspage.ui:232 msgctxt "effectspage|extended_tip|outlinecb" msgid "Displays the outline of the selected characters. This effect does not work with every font." -msgstr "" +msgstr "Viser disposisjonen til de valgte tegnene. Denne effekten fungerer ikke med alle fonter." #. umH7r #: cui/uiconfig/ui/effectspage.ui:243 @@ -8489,7 +8480,7 @@ #: cui/uiconfig/ui/effectspage.ui:253 msgctxt "effectspage|extended_tip|shadowcb" msgid "Adds a shadow that casts below and to the right of the selected characters." -msgstr "" +msgstr "Legger til en skygge som kaster under og til høyre for de valgte tegnene." #. KraW7 #: cui/uiconfig/ui/effectspage.ui:264 @@ -8501,7 +8492,7 @@ #: cui/uiconfig/ui/effectspage.ui:274 msgctxt "effectspage|extended_tip|hiddencb" msgid "Hides the selected characters." -msgstr "" +msgstr "Skjuler de valgte tegnene." #. GZX6U #: cui/uiconfig/ui/effectspage.ui:306 @@ -8633,13 +8624,13 @@ #: cui/uiconfig/ui/effectspage.ui:407 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 "" +msgstr "Velg stilen du vil bruke. Hvis du bare vil bruke overlappingen på ord, velger du boksen Individuelle ord." #. jbrhD #: cui/uiconfig/ui/effectspage.ui:441 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 "" +msgstr "Velg understrekingsstilen du vil bruke. Hvis du bare vil bruke understrekningen på ord, velger du boksen Individuelle ord." #. FgNij #: cui/uiconfig/ui/effectspage.ui:455 @@ -8681,19 +8672,19 @@ #: cui/uiconfig/ui/effectspage.ui:464 msgctxt "effectspage|extended_tip|strikeoutlb" msgid "Select a strikethrough style for the selected text." -msgstr "" +msgstr "Velg en gjennomstrekningsstil for den valgte teksten." #. qtErr #: cui/uiconfig/ui/effectspage.ui:486 msgctxt "effectspage|extended_tip|underlinecolorlb" msgid "Select the color for the underlining." -msgstr "Velg hvilken farge som skal brukes på linjene i skraveringa." +msgstr "Velg hvilken farge som skal brukes på linjene i skraveringen." #. vuxpt #: cui/uiconfig/ui/effectspage.ui:508 msgctxt "effectspage|extended_tip|overlinecolorlb" msgid "Select the color for the overlining." -msgstr "Velg hvilken farge som skal brukes på linjene i skraveringa." +msgstr "Velg hvilken farge som skal brukes på linjene i skraveringen." #. VYaEr #: cui/uiconfig/ui/effectspage.ui:519 @@ -8705,7 +8696,7 @@ #: cui/uiconfig/ui/effectspage.ui:528 msgctxt "effectspage|extended_tip|individualwordscb" msgid "Applies the selected effect only to words and ignores spaces." -msgstr "" +msgstr "Bruker den valgte effekten bare på ord og ignorerer mellomrom." #. oFKJN #: cui/uiconfig/ui/effectspage.ui:574 @@ -8723,7 +8714,7 @@ #: cui/uiconfig/ui/effectspage.ui:634 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 "" +msgstr "Angir fargen for den valgte teksten. Hvis du velger Automatisk, blir tekstfargen satt til svart for lys bakgrunn og til hvit for mørk bakgrunn." #. aAbzm #: cui/uiconfig/ui/effectspage.ui:646 @@ -8747,7 +8738,7 @@ #: cui/uiconfig/ui/effectspage.ui:710 msgctxt "effectspage|extended_tip|EffectsPage" msgid "Specify the font effects that you want to use." -msgstr "" +msgstr "Spesifiser fonteffektene du vil bruke." #. GypUU #: cui/uiconfig/ui/embossdialog.ui:8 @@ -8759,7 +8750,7 @@ #: cui/uiconfig/ui/embossdialog.ui:140 msgctxt "embossdialog|label2" msgid "_Light source:" -msgstr "_Lyskilde:" +msgstr "Lyskilde:" #. GPyhz #: cui/uiconfig/ui/embossdialog.ui:194 @@ -8771,7 +8762,7 @@ #: cui/uiconfig/ui/embossdialog.ui:219 msgctxt "embossdialog|extended_tip|EmbossDialog" msgid "Displays a dialog for creating reliefs." -msgstr "" +msgstr "Viser en dialog for å lage relieffer." #. RjncS #: cui/uiconfig/ui/entrycontextmenu.ui:12 @@ -8903,25 +8894,25 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:62 msgctxt "eventsconfigpage|macro" msgid "M_acro..." -msgstr "_Makro …" +msgstr "Makro …" #. TqHir #: cui/uiconfig/ui/eventsconfigpage.ui:69 msgctxt "eventsconfigpage|extended_tip|macro" msgid "Opens the Macro Selector to assign a macro to the selected event." -msgstr "" +msgstr "Åpner makrovelgeren for å tilordne en makro til den valgte hendelsen." #. gxSRb #: cui/uiconfig/ui/eventsconfigpage.ui:81 msgctxt "eventsconfigpage|delete" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. FGfuV #: cui/uiconfig/ui/eventsconfigpage.ui:88 msgctxt "eventsconfigpage|extended_tip|delete" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Sletter makro- eller komponenttildelingen for den valgte hendelsen." #. Ebcvv #: cui/uiconfig/ui/eventsconfigpage.ui:130 @@ -8933,7 +8924,7 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:147 msgctxt "eventsconfigpage|extended_tip|savein" msgid "Select first where to save the event binding, in the current document or in %PRODUCTNAME." -msgstr "" +msgstr "Velg først hvor du vil lagre hendelsesbindingen, i gjeldende dokument eller i %PRODUCTNAME." #. C6KwW #: cui/uiconfig/ui/eventsconfigpage.ui:186 @@ -8951,13 +8942,13 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:221 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 "" +msgstr "Den store listeboksen viser hendelsene og de tildelte makroene. Når du har valgt lagringsstedet i Lagre i-listeboksen, velger du en hendelse i den store listeboksen. Klikk deretter på Tildel makro." #. aCb4v #: cui/uiconfig/ui/eventsconfigpage.ui:246 msgctxt "eventsconfigpage|extended_tip|EventsConfigPage" msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs." -msgstr "" +msgstr "Tilordner makroer til programhendelser. Den tildelte makroen kjører automatisk hver gang den valgte hendelsen inntreffer." #. BvWSS #: cui/uiconfig/ui/fmsearchdialog.ui:8 @@ -8969,7 +8960,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:24 msgctxt "fmsearchdialog|pbSearchAgain" msgid "S_earch" -msgstr "_Søk" +msgstr "Søk" #. LBdux #: cui/uiconfig/ui/fmsearchdialog.ui:33 @@ -8987,25 +8978,25 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:149 msgctxt "fmsearchdialog|extended_tip|cmbSearchText" msgid "Enter the search term in the box or select it from the list." -msgstr "Skriv inn en søketekst i kombinasjonsboksen eller velg en fra lista." +msgstr "Skriv inn en søketekst i kombinasjonsboksen eller velg en fra listen." #. sC6j6 #: cui/uiconfig/ui/fmsearchdialog.ui:160 msgctxt "fmsearchdialog|rbSearchForText" msgid "_Text:" -msgstr "_Tekst:" +msgstr "Tekst:" #. Abepw #: cui/uiconfig/ui/fmsearchdialog.ui:170 msgctxt "fmsearchdialog|extended_tip|rbSearchForText" msgid "Enter the search term in the box or select it from the list." -msgstr "Skriv inn en søketekst i kombinasjonsboksen eller velg en fra lista." +msgstr "Skriv inn en søketekst i kombinasjonsboksen eller velg en fra listen." #. CrVGp #: cui/uiconfig/ui/fmsearchdialog.ui:188 msgctxt "fmsearchdialog|rbSearchForNull" msgid "Field content is _NULL" -msgstr "Feltinnholdet er _NULL" +msgstr "Feltinnholdet er NULL" #. CSSkE #: cui/uiconfig/ui/fmsearchdialog.ui:199 @@ -9017,7 +9008,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:211 msgctxt "fmsearchdialog|rbSearchForNotNull" msgid "Field content is not NU_LL" -msgstr "Feltinnholdet er ikke _NULL" +msgstr "Feltinnholdet er ikke NULL" #. oybVR #: cui/uiconfig/ui/fmsearchdialog.ui:222 @@ -9029,13 +9020,13 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:246 msgctxt "fmsearchdialog|flSearchFor" msgid "_Search for" -msgstr "_Søk etter" +msgstr "Søk etter" #. PGaCY #: cui/uiconfig/ui/fmsearchdialog.ui:305 msgctxt "fmsearchdialog|rbSingleField" msgid "_Single field:" -msgstr "_Enkeltfelt:" +msgstr "Enkeltfelt:" #. 9kRju #: cui/uiconfig/ui/fmsearchdialog.ui:315 @@ -9053,7 +9044,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:351 msgctxt "fmsearchdialog|rbAllFields" msgid "_All fields" -msgstr "_Alle felt" +msgstr "Alle felt" #. mWvzW #: cui/uiconfig/ui/fmsearchdialog.ui:362 @@ -9083,7 +9074,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:512 msgctxt "fmsearchdialog|ftPosition" msgid "_Position:" -msgstr "_Posisjon:" +msgstr "Posisjon:" #. BLRj3 #: cui/uiconfig/ui/fmsearchdialog.ui:530 @@ -9095,7 +9086,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:555 msgctxt "fmsearchdialog|HalfFullFormsCJK" msgid "Match character wi_dth" -msgstr "Tilpass til tegn_bredden" +msgstr "Tilpass til tegnbredden" #. wAKeF #: cui/uiconfig/ui/fmsearchdialog.ui:564 @@ -9107,7 +9098,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:581 msgctxt "fmsearchdialog|SoundsLikeCJK" msgid "Sounds like (_Japanese)" -msgstr "Høres ut som (_japansk)" +msgstr "Høres ut som (Japansk)" #. m2QkD #: cui/uiconfig/ui/fmsearchdialog.ui:590 @@ -9131,13 +9122,13 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:632 msgctxt "fmsearchdialog|cbApprox" msgid "S_imilarity search" -msgstr "_Likhetsssøk" +msgstr "Likhetsssøk" #. zDTS6 #: cui/uiconfig/ui/fmsearchdialog.ui:641 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 "" +msgstr "Finn termer som ligner på Finn-teksten. Merk av i denne avmerkingsboksen, og klikk deretter på Likheter-knappen for å definere likhetsalternativene." #. DNGxj #: cui/uiconfig/ui/fmsearchdialog.ui:652 @@ -9149,13 +9140,13 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:661 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 "" +msgstr "Finn termer som ligner på Finn-teksten. Merk av i denne avmerkingsboksen, og klikk deretter på Likheter-knappen for å definere likhetsalternativene." #. 6BpAF #: cui/uiconfig/ui/fmsearchdialog.ui:678 msgctxt "fmsearchdialog|cbCase" msgid "_Match case" -msgstr "_Treff på små/store bokstaver" +msgstr "Treff på små/store bokstaver" #. Gdo9i #: cui/uiconfig/ui/fmsearchdialog.ui:687 @@ -9167,7 +9158,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:698 msgctxt "fmsearchdialog|cbStartOver" msgid "Fr_om top" -msgstr "_Fram toppen" +msgstr "Fra toppen" #. y83im #: cui/uiconfig/ui/fmsearchdialog.ui:707 @@ -9179,7 +9170,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:718 msgctxt "fmsearchdialog|cbRegular" msgid "_Regular expression" -msgstr "_Regulært uttrykk" +msgstr "Regulært uttrykk" #. 4uneg #: cui/uiconfig/ui/fmsearchdialog.ui:727 @@ -9191,7 +9182,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:738 msgctxt "fmsearchdialog|cbUseFormat" msgid "Appl_y field format" -msgstr "Bruk _feltformat" +msgstr "Bruk feltformat" #. BdMDC #: cui/uiconfig/ui/fmsearchdialog.ui:747 @@ -9203,7 +9194,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:758 msgctxt "fmsearchdialog|cbBackwards" msgid "Search _backwards" -msgstr "Søk _bakover" +msgstr "Søk bakover" #. QvjG7 #: cui/uiconfig/ui/fmsearchdialog.ui:767 @@ -9215,7 +9206,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:778 msgctxt "fmsearchdialog|cbWildCard" msgid "_Wildcard expression" -msgstr "_Uttrykk med jokertegn" +msgstr "Uttrykk med jokertegn" #. BES8b #: cui/uiconfig/ui/fmsearchdialog.ui:787 @@ -9257,7 +9248,7 @@ #: cui/uiconfig/ui/fontfeaturesdialog.ui:10 msgctxt "fontfeaturesdialog|FontFeaturesDialog" msgid "Font Features" -msgstr "Font egenskaper" +msgstr "Fontegenskaper" #. 696Sw #: cui/uiconfig/ui/fontfeaturesdialog.ui:164 @@ -9269,7 +9260,7 @@ #: cui/uiconfig/ui/fontfeaturesdialog.ui:200 msgctxt "fontfeaturesdialog|extended_tip|FontFeaturesDialog" msgid "Select and apply font typographical features to characters." -msgstr "" +msgstr "Velg og bruk skrifttypografiske funksjoner på tegn." #. CJQFA #: cui/uiconfig/ui/formatcellsdialog.ui:8 @@ -9281,13 +9272,13 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:138 msgctxt "formatcellsdialog|name" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. zJZxA #: cui/uiconfig/ui/formatcellsdialog.ui:185 msgctxt "formatcellsdialog|effects" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. Pz8yJ #: cui/uiconfig/ui/formatcellsdialog.ui:233 @@ -9305,7 +9296,7 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:329 msgctxt "formatcellsdialog|shadow" msgid "Shadow" -msgstr "" +msgstr "Skygge" #. dpU36 #: cui/uiconfig/ui/formatnumberdialog.ui:8 @@ -9329,7 +9320,7 @@ #: cui/uiconfig/ui/galleryfilespage.ui:40 msgctxt "galleryfilespage|label1" msgid "_File type:" -msgstr "_Filtype:" +msgstr "Filtype:" #. p7EMZ #: cui/uiconfig/ui/galleryfilespage.ui:66 @@ -9347,13 +9338,13 @@ #: cui/uiconfig/ui/galleryfilespage.ui:117 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 "List opp tilgjengelige filer. Velg filene du vil legge til før du velger Legg til. For å legge til alle filene i lista, velg Legg til alle»." +msgstr "List opp tilgjengelige filer. Velg filene du vil legge til før du velger Legg til. For å legge til alle filene i listen, velg Legg til alle»." #. UnmAz #: cui/uiconfig/ui/galleryfilespage.ui:148 msgctxt "galleryfilespage|preview" msgid "Pr_eview" -msgstr "_Forhåndsvisning" +msgstr "Forhåndsvisning" #. sWLgt #: cui/uiconfig/ui/galleryfilespage.ui:157 @@ -9371,7 +9362,7 @@ #: cui/uiconfig/ui/galleryfilespage.ui:211 msgctxt "galleryfilespage|findfiles" msgid "_Find Files..." -msgstr "_Finn filer …" +msgstr "Finn filer …" #. iqzdT #: cui/uiconfig/ui/galleryfilespage.ui:218 @@ -9389,13 +9380,13 @@ #: cui/uiconfig/ui/galleryfilespage.ui:249 msgctxt "galleryfilespage|addall" msgid "A_dd All" -msgstr "Legg til _alle" +msgstr "Legg til alle" #. yHYBJ #: cui/uiconfig/ui/galleryfilespage.ui:256 msgctxt "galleryfilespage|extended_tip|addall" msgid "Adds all of the files in the list to the current theme." -msgstr "Legg alle filene i lista til gjeldende tema." +msgstr "Legg alle filene i listen til gjeldende tema." #. kfNzx #: cui/uiconfig/ui/gallerygeneralpage.ui:23 @@ -9407,7 +9398,7 @@ #: cui/uiconfig/ui/gallerygeneralpage.ui:59 msgctxt "gallerygeneralpage|label2" msgid "Type:" -msgstr "_Type:" +msgstr "Type:" #. EF8go #: cui/uiconfig/ui/gallerygeneralpage.ui:82 @@ -9510,13 +9501,13 @@ #: 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 "Legg til en egen fargeovergang i lista. Angi hvilke egenskaper fargeovergangen skal ha før du trykker på denne knappen." +msgstr "Legg til en egen fargeovergang i listen. Angi hvilke egenskaper fargeovergangen skal ha før du trykker på denne knappen." #. QfZFH #: cui/uiconfig/ui/gradientpage.ui:134 msgctxt "gradientpage|modify" msgid "_Modify" -msgstr "_Endre" +msgstr "Endre" #. EeXWP #: cui/uiconfig/ui/gradientpage.ui:141 @@ -9534,7 +9525,7 @@ #: cui/uiconfig/ui/gradientpage.ui:214 msgctxt "gradientpage|typeft" msgid "_Type:" -msgstr "_Type:" +msgstr "Type:" #. 8Qjgv #: cui/uiconfig/ui/gradientpage.ui:230 @@ -9600,25 +9591,25 @@ #: cui/uiconfig/ui/gradientpage.ui:351 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 "" +msgstr "Angi den horisontale forskyvningen for gradienten, der 0% tilsvarer den gjeldende horisontale plasseringen av endepunktsfargen i gradienten. Endepunktfargen er fargen som er valgt i Til farge-boksen." #. AP27S #: cui/uiconfig/ui/gradientpage.ui:370 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 "" +msgstr "Angi vertikal forskyvning for gradienten, der 0% tilsvarer den nåværende vertikale plasseringen av endepunktsfargen i gradienten. Endepunktfargen er fargen som er valgt i Til farge-boksen." #. ZZ7yo #: cui/uiconfig/ui/gradientpage.ui:405 msgctxt "gradientpage|borderft" msgid "_Border:" -msgstr "_Kantlinje:" +msgstr "Kantlinje:" #. iZbnF #: cui/uiconfig/ui/gradientpage.ui:439 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 "" +msgstr "Angi verdien du vil justere området med endepunktfarge på gradienten med. Endepunktfargen er fargen som er valgt i Til farge-boksen." #. qCvgc #: cui/uiconfig/ui/gradientpage.ui:456 @@ -9630,13 +9621,13 @@ #: cui/uiconfig/ui/gradientpage.ui:470 msgctxt "gradientpage|angleft" msgid "A_ngle:" -msgstr "Vi_nkel:" +msgstr "Vinkel:" #. fwB6f #: cui/uiconfig/ui/gradientpage.ui:489 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 "" +msgstr "Angi intensiteten for fargen i Til farge-boksen, der 0% tilsvarer svart og 100% den valgte fargen." #. C6iys #: cui/uiconfig/ui/gradientpage.ui:511 @@ -9660,7 +9651,7 @@ #: cui/uiconfig/ui/gradientpage.ui:565 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 "" +msgstr "Skriv inn intensiteten for fargen i Fra farge-boksen, der 0% tilsvarer svart og 100% den valgte fargen." #. TQFE8 #: cui/uiconfig/ui/gradientpage.ui:578 @@ -9714,7 +9705,7 @@ #: cui/uiconfig/ui/gradientpage.ui:770 msgctxt "gradientpage|extended_tip|GradientPage" msgid "Select a gradient, modify the properties of a gradient, or save a new gradient." -msgstr "" +msgstr "Velg en gradient, endre egenskapene til en gradient, eller lagre en ny gradient." #. 26WXC #: cui/uiconfig/ui/hangulhanjaadddialog.ui:8 @@ -9726,13 +9717,13 @@ #: cui/uiconfig/ui/hangulhanjaadddialog.ui:99 msgctxt "hangulhanjaadddialog|label2" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. haBfA #: cui/uiconfig/ui/hangulhanjaadddialog.ui:119 msgctxt "hangulhanjaadddialog|extended_tip|entry" msgid "Enter a name for the dictionary." -msgstr "Gi ordlista et navn." +msgstr "Gi ordlisten et navn." #. S2WpP #: cui/uiconfig/ui/hangulhanjaadddialog.ui:137 @@ -9756,7 +9747,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:120 msgctxt "hangulhanjaconversiondialog|extended_tip|originalword" msgid "Displays the current selection." -msgstr "" +msgstr "Viser gjeldende valg." #. P2Lhg #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:133 @@ -9768,19 +9759,19 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:156 msgctxt "hangulhanjaconversiondialog|extended_tip|wordinput" msgid "Displays the first replacement suggestion from the dictionary." -msgstr "" +msgstr "Viser det første erstatningsforslaget fra ordboken." #. JQfs4 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:168 msgctxt "hangulhanjaconversiondialog|find" msgid "_Find" -msgstr "_Finn" +msgstr "Finn" #. TqDEv #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:175 msgctxt "hangulhanjaconversiondialog|extended_tip|find" msgid "Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja." -msgstr "" +msgstr "Finner Hangul-inngangen din i ordboken og erstatter den med den tilsvarende Hanja." #. 3NS8C #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:195 @@ -9804,7 +9795,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:316 msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_above" msgid "The Hangul part will be displayed as ruby text above the Hanja part." -msgstr "" +msgstr "Hangul-delen vises som rubintekst over Hanja-delen." #. Crewa #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:330 @@ -9816,7 +9807,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:337 msgctxt "hangulhanjaconversiondialog|extended_tip|hanja_below" msgid "The Hangul part will be displayed as ruby text below the Hanja part." -msgstr "" +msgstr "Hangul-delen vises som rubintekst under Hanja-delen." #. haBun #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:351 @@ -9828,7 +9819,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:358 msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_above" msgid "The Hanja part will be displayed as ruby text above the Hangul part." -msgstr "" +msgstr "Hanja-delen vises som rubintekst over Hangul-delen." #. FfFPC #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:372 @@ -9840,19 +9831,19 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:379 msgctxt "hangulhanjaconversiondialog|extended_tip|hangul_below" msgid "The Hanja part will be displayed as ruby text below the Hangul part." -msgstr "" +msgstr "Hanja-delen vises som rubintekst under Hangul-delen." #. ZG2Bm #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:390 msgctxt "hangulhanjaconversiondialog|simpleconversion" msgid "_Hangul/Hanja" -msgstr "_Hangul/Hanja" +msgstr "Hangul/Hanja" #. tSGmu #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:401 msgctxt "hangulhanjaconversiondialog|extended_tip|simpleconversion" msgid "The original characters are replaced by the suggested characters." -msgstr "" +msgstr "De originale tegnene erstattes av de foreslåtte tegnene." #. xwknP #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:412 @@ -9864,7 +9855,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:422 msgctxt "hangulhanjaconversiondialog|extended_tip|hangulbracket" msgid "The Hangul part will be displayed in brackets after the Hanja part." -msgstr "" +msgstr "Hangul-delen vises i parenteser etter Hanja-delen." #. 6guxd #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:433 @@ -9876,7 +9867,7 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:443 msgctxt "hangulhanjaconversiondialog|extended_tip|hanjabracket" msgid "The Hanja part will be displayed in brackets after the Hangul part." -msgstr "" +msgstr "Hanja-delen vises i parentes etter Hangul-delen." #. 6CDaz #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:468 @@ -9888,85 +9879,85 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:485 msgctxt "hangulhanjaconversiondialog|hangulonly" msgid "Hangul _only" -msgstr "_Bare Hangul" +msgstr "Bare Hangul" #. 45H2A #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:494 msgctxt "hangulhanjaconversiondialog|extended_tip|hangulonly" msgid "Check to convert only Hangul. Do not convert Hanja." -msgstr "" +msgstr "Merk av for bare å konvertere Hangul. Ikke konverter Hanja." #. r3HDY #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:506 msgctxt "hangulhanjaconversiondialog|hanjaonly" msgid "Hanja onl_y" -msgstr "B_are Hanja" +msgstr "Bare Hanja" #. Fi82M #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:515 msgctxt "hangulhanjaconversiondialog|extended_tip|hanjaonly" msgid "Check to convert only Hanja. Do not convert Hangul." -msgstr "" +msgstr "Merk av for å bare konvertere Hanja. Ikke konverter Hangul." #. db8Nj #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:548 msgctxt "hangulhanjaconversiondialog|ignore" msgid "_Ignore" -msgstr "_Ignorer" +msgstr "Ignorer" #. 3mrTE #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:557 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 "" +msgstr "Ingen endringer vil bli gjort i det gjeldende valget. Neste ord eller tegn blir valgt for konvertering." #. QTqcN #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:569 msgctxt "hangulhanjaconversiondialog|ignoreall" msgid "Always I_gnore" -msgstr "Ignorer _alltid" +msgstr "Ignorer alltid" #. HBgLV #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:576 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 "" +msgstr "Ingen endringer vil bli gjort i det gjeldende valget, og hver gang det samme valget oppdages, hoppes det over automatisk." #. MVirc #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:588 msgctxt "hangulhanjaconversiondialog|replace" msgid "_Replace" -msgstr "_Erstatt" +msgstr "Erstatt" #. ECMPD #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:595 msgctxt "hangulhanjaconversiondialog|extended_tip|replace" msgid "Replaces the selection with the suggested characters or word according to the format options." -msgstr "" +msgstr "Erstatter valget med de foreslåtte tegnene eller ordet i henhold til formatalternativene." #. DwnC2 #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:607 msgctxt "hangulhanjaconversiondialog|replaceall" msgid "Always R_eplace" -msgstr "_Erstatt alltid" +msgstr "Erstatt alltid" #. 9itJD #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:614 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 "" +msgstr "Erstatter valget med de foreslåtte tegnene eller ordet i henhold til formatalternativene. Hver gang det samme valget oppdages, erstattes det automatisk." #. 7eniE #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:626 msgctxt "hangulhanjaconversiondialog|replacebychar" msgid "Replace b_y character" -msgstr "Erstatt _tegn for tegn" +msgstr "Erstatt tegn for tegn" #. F2QEt #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:635 msgctxt "hangulhanjaconversiondialog|extended_tip|replacebychar" msgid "Check to move character-by-character through the selected text. If not checked, full words are replaced." -msgstr "" +msgstr "Merk av for å flytte tegn for tegn gjennom den valgte teksten. Hvis det ikke er merket av, erstattes hele ordene." #. t2RXx #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:647 @@ -9978,13 +9969,13 @@ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:653 msgctxt "hangulhanjaconversiondialog|extended_tip|options" msgid "Opens the Hangul/Hanja Options dialog." -msgstr "" +msgstr "Åpner dialogboksen Hangul/Hanja Alternativer." #. omcyJ #: cui/uiconfig/ui/hangulhanjaconversiondialog.ui:689 msgctxt "hangulhanjaconversiondialog|extended_tip|HangulHanjaConversionDialog" msgid "Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul." -msgstr "" +msgstr "Konverterer den valgte koreanske teksten fra Hangul til Hanja eller fra Hanja til Hangul." #. XiQXK #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:8 @@ -9996,7 +9987,7 @@ #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:95 msgctxt "hangulhanjaeditdictdialog|extended_tip|book" msgid "Select the user-defined dictionary that you want to edit." -msgstr "Velg den selvvalgte ordlista du vil redigere." +msgstr "Velg den selvvalgte ordlisten du vil redigere." #. AnsSG #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:113 @@ -10008,13 +9999,13 @@ #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:166 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 "" +msgstr "Velg oppføringen i gjeldende ordbok du vil redigere. Hvis du vil, kan du også skrive inn en ny oppføring i denne boksen." #. GdYKP #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:192 msgctxt "hangulhanjaeditdictdialog|extended_tip|new" msgid "Adds the current replacement definition to the dictionary." -msgstr "Legg til dette erstatningsvilkåret i ordlista." +msgstr "Legg til dette erstatningsvilkåret i ordlisten." #. myWFD #: cui/uiconfig/ui/hangulhanjaeditdictdialog.ui:212 @@ -10080,7 +10071,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:145 msgctxt "hangulhanjaoptdialog|edit" msgid "Edit..." -msgstr "R_ediger …" +msgstr "Rediger …" #. NKvWY #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:151 @@ -10092,7 +10083,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:170 msgctxt "hangulhanjaoptdialog|extended_tip|delete" msgid "Deletes the selected user-defined dictionary." -msgstr "Slett den valgte selvlagde ordlista." +msgstr "Slett den valgte selvlagde ordlisten." #. v7Bkk #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:235 @@ -10128,7 +10119,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:315 msgctxt "hangulhanjaoptdialog|extended_tip|showrecentfirst" msgid "Shows the replacement suggestion that you selected the last time as the first entry on the list." -msgstr "Vis erstatningsforslaget du valgte sist gang øverst i lista." +msgstr "Vis erstatningsforslaget du valgte sist gang øverst i listen." #. MKAyM #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:326 @@ -10152,13 +10143,13 @@ #: 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 "Legg til et selvvalgt skraveringsmønster i lista. Angi egenskapene til skraveringsmønstret og trykk på denne knappen." +msgstr "Legg til et selvvalgt skraveringsmønster i listen. Angi egenskapene til skraveringsmønstret og trykk på denne knappen." #. TGiD7 #: cui/uiconfig/ui/hatchpage.ui:101 msgctxt "hatchpage|modify" msgid "_Modify" -msgstr "_Endre" +msgstr "Endre" #. 5VuZv #: cui/uiconfig/ui/hatchpage.ui:108 @@ -10176,7 +10167,7 @@ #: cui/uiconfig/ui/hatchpage.ui:174 msgctxt "hatchpage|distanceft" msgid "_Spacing:" -msgstr "_Avstand:" +msgstr "Avstand:" #. 5Psyb #: cui/uiconfig/ui/hatchpage.ui:193 @@ -10188,7 +10179,7 @@ #: cui/uiconfig/ui/hatchpage.ui:207 msgctxt "hatchpage|angleft" msgid "A_ngle:" -msgstr "Vi_nkel:" +msgstr "Vinkel:" #. UBmvt #: cui/uiconfig/ui/hatchpage.ui:245 @@ -10200,7 +10191,7 @@ #: cui/uiconfig/ui/hatchpage.ui:266 msgctxt "hatchpage|linetypeft" msgid "_Line type:" -msgstr "_Linjetype:" +msgstr "Linjetype:" #. mv3sN #: cui/uiconfig/ui/hatchpage.ui:282 @@ -10212,7 +10203,7 @@ #: cui/uiconfig/ui/hatchpage.ui:283 msgctxt "hatchpage|linetypelb" msgid "Crossed" -msgstr "Kryssa" +msgstr "Krysset" #. EBDMC #: cui/uiconfig/ui/hatchpage.ui:284 @@ -10224,19 +10215,19 @@ #: cui/uiconfig/ui/hatchpage.ui:288 msgctxt "hatchpage|extended_tip|linetypelb" msgid "Select the type of hatch lines that you want to use." -msgstr "Angi hva slags linjer som skal brukes på skraveringa." +msgstr "Angi hva slags linjer som skal brukes på skraveringen." #. VyTto #: cui/uiconfig/ui/hatchpage.ui:302 msgctxt "hatchpage|linecolorft" msgid "Line _color:" -msgstr "Linje_farge:" +msgstr "Linjefarge:" #. AwxCA #: cui/uiconfig/ui/hatchpage.ui:327 msgctxt "hatchpage|extended_tip|linecolorlb" msgid "Select the color of the hatch lines." -msgstr "Velg hvilken farge som skal brukes på linjene i skraveringa." +msgstr "Velg hvilken farge som skal brukes på linjene i skraveringen." #. 3hgCJ #: cui/uiconfig/ui/hatchpage.ui:339 @@ -10266,7 +10257,7 @@ #: cui/uiconfig/ui/hatchpage.ui:474 msgctxt "hatchpage|extended_tip|HatchPage" msgid "Set the properties of a hatching pattern, or save a new hatching pattern." -msgstr "" +msgstr "Angi egenskapene til et skraveringsmønster, eller lagre et nytt skraveringsmønster." #. QqjhD #: cui/uiconfig/ui/hyperlinkdialog.ui:10 @@ -10356,7 +10347,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:49 msgctxt "hyperlinkdocpage|path_label" msgid "_Path:" -msgstr "_Sti:" +msgstr "Sti:" #. zqiYj #: cui/uiconfig/ui/hyperlinkdocpage.ui:64 @@ -10386,7 +10377,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:147 msgctxt "hyperlinkdocpage|target_label" msgid "Targ_et:" -msgstr "_Mål:" +msgstr "Mål:" #. hUini #: cui/uiconfig/ui/hyperlinkdocpage.ui:162 @@ -10404,7 +10395,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:181 msgctxt "hyperlinkdocpage|extended_tip|browse" msgid "Opens the Target in Document dialog." -msgstr "Åpner dialogen forMålet i dokumentet." +msgstr "Åpner dialogen for Målet i dokumentet." #. 3ndEf #: cui/uiconfig/ui/hyperlinkdocpage.ui:198 @@ -10428,19 +10419,19 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:271 msgctxt "hyperlinkdocpage|frame_label" msgid "F_rame:" -msgstr "_Ramme:" +msgstr "Ramme:" #. cFnPM #: cui/uiconfig/ui/hyperlinkdocpage.ui:286 msgctxt "hyperlinkdocpage|indication_label" msgid "Te_xt:" -msgstr "_Tekst:" +msgstr "Tekst:" #. o2Fic #: cui/uiconfig/ui/hyperlinkdocpage.ui:301 msgctxt "hyperlinkdocpage|name_label" msgid "N_ame:" -msgstr "_Navn:" +msgstr "Navn:" #. PuhGD #: cui/uiconfig/ui/hyperlinkdocpage.ui:319 @@ -10500,7 +10491,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:43 msgctxt "hyperlinkinternetpage|linktyp_internet" msgid "_Web" -msgstr "_Nettside" +msgstr "Nettside" #. wL4we #: cui/uiconfig/ui/hyperlinkinternetpage.ui:53 @@ -10512,7 +10503,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:64 msgctxt "hyperlinkinternetpage|linktyp_ftp" msgid "_FTP" -msgstr "_FTP" +msgstr "FTP" #. dHmZB #: cui/uiconfig/ui/hyperlinkinternetpage.ui:75 @@ -10524,19 +10515,19 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:95 msgctxt "hyperlinkinternetpage|target_label" msgid "_URL:" -msgstr "_Nettadresse:" +msgstr "Nettadresse:" #. YLtwS #: cui/uiconfig/ui/hyperlinkinternetpage.ui:110 msgctxt "hyperlinkinternetpage|login_label" msgid "_Login name:" -msgstr "På_loggingsnavn:" +msgstr "Logg-in navn:" #. GGnn8 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:125 msgctxt "hyperlinkinternetpage|password_label" msgid "_Password:" -msgstr "_Passord:" +msgstr "Passord" #. kVJEB #: cui/uiconfig/ui/hyperlinkinternetpage.ui:144 @@ -10548,13 +10539,13 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:162 msgctxt "hyperlinkinternetpage|extended_tip|password" msgid "Specifies your password, if you are working with FTP addresses." -msgstr ">Avgir ditt passord, hvis du arbeider med FTP adresser." +msgstr "Angi ditt passord, hvis du arbeider med FTP adresser." #. HHhGY #: cui/uiconfig/ui/hyperlinkinternetpage.ui:173 msgctxt "hyperlinkinternetpage|anonymous" msgid "Anonymous _user" -msgstr "Anonym _bruker" +msgstr "Anonym bruker" #. Ttx68 #: cui/uiconfig/ui/hyperlinkinternetpage.ui:182 @@ -10572,7 +10563,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:219 msgctxt "hyperlinkinternetpage|indication_label" msgid "Te_xt:" -msgstr "_Tekst:" +msgstr "Tekst:" #. fFLgD #: cui/uiconfig/ui/hyperlinkinternetpage.ui:237 @@ -10596,7 +10587,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:312 msgctxt "hyperlinkinternetpage|frame_label" msgid "F_rame:" -msgstr "_Ramme:" +msgstr "Ramme:" #. wiRZD #: cui/uiconfig/ui/hyperlinkinternetpage.ui:327 @@ -10656,25 +10647,25 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:44 msgctxt "hyperlinkmailpage|receiver_label" msgid "Re_cipient:" -msgstr "_Mottaker:" +msgstr "Mottaker:" #. 3Q6NE #: cui/uiconfig/ui/hyperlinkmailpage.ui:59 msgctxt "hyperlinkmailpage|addressbook|tooltip_text" msgid "Data Sources..." -msgstr "" +msgstr "Datakilder..." #. mZ8Wv #: cui/uiconfig/ui/hyperlinkmailpage.ui:64 msgctxt "hyperlinkmailpage|extended_tip|addressbook" msgid "Hides or shows the data source browser." -msgstr "" +msgstr "Skjuler eller viser datakildeleseren." #. NJi4c #: cui/uiconfig/ui/hyperlinkmailpage.ui:79 msgctxt "hyperlinkmailpage|subject_label" msgid "_Subject:" -msgstr "_Emne:" +msgstr "Emne:" #. hseLC #: cui/uiconfig/ui/hyperlinkmailpage.ui:98 @@ -10686,7 +10677,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:122 msgctxt "hyperlinkmailpage|extended_tip|receiver" msgid "Assigns the specified email address to the hyperlink." -msgstr "" +msgstr "Tilordner den angitte e-postadressen til hyperkoblingen." #. eCvXD #: cui/uiconfig/ui/hyperlinkmailpage.ui:151 @@ -10698,19 +10689,19 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:191 msgctxt "hyperlinkmailpage|frame_label" msgid "F_rame:" -msgstr "_Ramme:" +msgstr "Ramme:" #. E6CWA #: cui/uiconfig/ui/hyperlinkmailpage.ui:206 msgctxt "hyperlinkmailpage|indication_label" msgid "Te_xt:" -msgstr "_Tekst:" +msgstr "Tekst:" #. BjAaB #: cui/uiconfig/ui/hyperlinkmailpage.ui:221 msgctxt "hyperlinkmailpage|name_label" msgid "N_ame:" -msgstr "_Navn:" +msgstr "Navn:" #. PJMVD #: cui/uiconfig/ui/hyperlinkmailpage.ui:239 @@ -10728,7 +10719,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:277 msgctxt "hyperlinkmailpage|form_label" msgid "F_orm:" -msgstr "Form:" +msgstr "Skjema:" #. ckEPR #: cui/uiconfig/ui/hyperlinkmailpage.ui:294 @@ -10764,7 +10755,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:374 msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage" msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses." -msgstr "" +msgstr "På e-post-siden i hyperkoblingsdialogen kan du redigere hyperkoblinger for e-postadresser." #. FiqBU #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:18 @@ -10776,13 +10767,13 @@ #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:33 msgctxt "hyperlinkmarkdialog|apply" msgid "_Apply" -msgstr "_Bruk" +msgstr "Bruk" #. jWKYr #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:49 msgctxt "hyperlinkmarkdialog|close" msgid "_Close" -msgstr "_Lukk" +msgstr "Lukk" #. CLEQK #: cui/uiconfig/ui/hyperlinkmarkdialog.ui:56 @@ -10806,7 +10797,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:59 msgctxt "hyperlinknewdocpage|editnow" msgid "Edit _now" -msgstr "Rediger _nå" +msgstr "Rediger nå" #. DENWb #: cui/uiconfig/ui/hyperlinknewdocpage.ui:69 @@ -10818,7 +10809,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:80 msgctxt "hyperlinknewdocpage|editlater" msgid "Edit _later" -msgstr "Rediger _senere" +msgstr "Rediger senere" #. CD5y6 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:91 @@ -10830,7 +10821,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:111 msgctxt "hyperlinknewdocpage|file_label" msgid "_File:" -msgstr "_Fil:" +msgstr "Fil:" #. PDNz4 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:126 @@ -10842,19 +10833,19 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:131 msgctxt "hyperlinknewdocpage|extended_tip|create" msgid "Opens the Select Path dialog, where you can select a path." -msgstr "ÅpnerVelg Sti dialogen, der du kan velge en sti." +msgstr "Åpner Velg Sti dialogen, der du kan velge en sti." #. NKd9R #: cui/uiconfig/ui/hyperlinknewdocpage.ui:146 msgctxt "hyperlinknewdocpage|types_label" msgid "File _type:" -msgstr "Fil_type:" +msgstr "Filtype:" #. TRstM #: cui/uiconfig/ui/hyperlinknewdocpage.ui:172 msgctxt "hyperlinknewdocpage|extended_tip|path" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr ">Skriv inn en nettadresse til filen du vil åpne når du klikker på hyperlenken." +msgstr "Skriv inn en nettadresse til filen du vil åpne når du klikker på hyperlenken." #. Ee4g2 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:212 @@ -10872,19 +10863,19 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:280 msgctxt "hyperlinknewdocpage|frame_label" msgid "F_rame:" -msgstr "_Ramme:" +msgstr "Ramme:" #. NG5VC #: cui/uiconfig/ui/hyperlinknewdocpage.ui:295 msgctxt "hyperlinknewdocpage|indication_label" msgid "Te_xt:" -msgstr "_Tekst:" +msgstr "Tekst:" #. SVEq9 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:310 msgctxt "hyperlinknewdocpage|name_label" msgid "N_ame:" -msgstr "_Navn:" +msgstr "Navn:" #. J9DQE #: cui/uiconfig/ui/hyperlinknewdocpage.ui:328 @@ -10902,7 +10893,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:366 msgctxt "hyperlinknewdocpage|form_label" msgid "F_orm:" -msgstr "Form:" +msgstr "Skjema:" #. fARTX #: cui/uiconfig/ui/hyperlinknewdocpage.ui:382 @@ -10980,7 +10971,7 @@ #: cui/uiconfig/ui/hyphenate.ui:146 msgctxt "hyphenate|extended_tip|delete" msgid "Removes the current hyphenation point from the displayed word." -msgstr "Fjernar orddelingen fra det viste ordet." +msgstr "Fjerner orddelingen fra det viste ordet." #. dsjvf #: cui/uiconfig/ui/hyphenate.ui:166 @@ -11032,13 +11023,13 @@ #: cui/uiconfig/ui/iconselectordialog.ui:145 msgctxt "iconselectordialog|label1" msgid "_Icons" -msgstr "_Ikoner" +msgstr "Ikoner" #. ZyFG4 #: cui/uiconfig/ui/iconselectordialog.ui:168 msgctxt "iconselectordialog|importButton" msgid "I_mport..." -msgstr "I_mporter …" +msgstr "Importer …" #. rAyQo #: cui/uiconfig/ui/iconselectordialog.ui:175 @@ -11050,13 +11041,13 @@ #: cui/uiconfig/ui/iconselectordialog.ui:187 msgctxt "iconselectordialog|deleteButton" msgid "_Delete..." -msgstr "_Slett …" +msgstr "Slett …" #. 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 "Fjern det valgte ikonet fra lista. Kun brukerdefinerte ikoner kan fjernes" +msgstr "Fjern det valgte ikonet fra listen. Kun brukerdefinerte ikoner kan fjernes" #. C4HU9 #: cui/uiconfig/ui/iconselectordialog.ui:223 @@ -11080,13 +11071,13 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:107 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 "" +msgstr "Skriv inn et navn for den flytende rammen. Navnet kan ikke inneholde mellomrom, spesialtegn eller begynne med en understreking (_)." #. dxeqd #: cui/uiconfig/ui/insertfloatingframe.ui:128 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 "" +msgstr "Skriv inn banen og navnet på filen du vil vise i den flytende rammen. Du kan også klikke på Bla gjennom-knappen og finne filen du vil vise." #. 6Zg6E #: cui/uiconfig/ui/insertfloatingframe.ui:143 @@ -11110,7 +11101,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:172 msgctxt "insertfloatingframe|extended_tip|buttonbrowse" msgid "Locate the file that you want to display in the selected floating frame, and then click Open." -msgstr "" +msgstr "Finn filen du vil vise i den valgte flytende rammen, og klikk deretter Åpne." #. CFNgz #: cui/uiconfig/ui/insertfloatingframe.ui:213 @@ -11122,7 +11113,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:223 msgctxt "insertfloatingframe|extended_tip|scrollbaron" msgid "Displays the scrollbar for the floating frame." -msgstr "" +msgstr "Viser rullefeltet for den flytende rammen." #. RTCXH #: cui/uiconfig/ui/insertfloatingframe.ui:235 @@ -11134,7 +11125,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:245 msgctxt "insertfloatingframe|extended_tip|scrollbaroff" msgid "Hides the scrollbar for the floating frame." -msgstr "" +msgstr "Skjuler rullefeltet for den flytende rammen." #. iucHE #: cui/uiconfig/ui/insertfloatingframe.ui:257 @@ -11146,7 +11137,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:267 msgctxt "insertfloatingframe|extended_tip|scrollbarauto" msgid "Mark this option if the currently active floating frame can have a scrollbar when needed." -msgstr "" +msgstr "Merk dette alternativet hvis den nåværende aktive flytende rammen kan ha en rullefelt når det er nødvendig." #. NTDhm #: cui/uiconfig/ui/insertfloatingframe.ui:285 @@ -11164,7 +11155,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:328 msgctxt "insertfloatingframe|extended_tip|borderon" msgid "Displays the border of the floating frame." -msgstr "" +msgstr "Viser kantene til den flytende rammen." #. P9vwv #: cui/uiconfig/ui/insertfloatingframe.ui:340 @@ -11176,7 +11167,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:350 msgctxt "insertfloatingframe|extended_tip|borderoff" msgid "Hides the border of the floating frame." -msgstr "" +msgstr "Skjuler grensen til den flytende rammen." #. xBDSb #: cui/uiconfig/ui/insertfloatingframe.ui:371 @@ -11188,25 +11179,25 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:408 msgctxt "insertfloatingframe|widthlabel" msgid "Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. DMLy9 #: cui/uiconfig/ui/insertfloatingframe.ui:421 msgctxt "insertfloatingframe|heightlabel" msgid "Height:" -msgstr "_Høyde:" +msgstr "Høyde:" #. ieZRs #: cui/uiconfig/ui/insertfloatingframe.ui:439 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 "" +msgstr "Angi hvor mye horisontal plass du vil ha mellom høyre og venstre kant av den flytende rammen og innholdet i rammen. Både dokumenter i og utenfor den flytende rammen må være HTML-dokumenter." #. R35J9 #: cui/uiconfig/ui/insertfloatingframe.ui:458 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 "" +msgstr "Angi hvor mye vertikalt rom du vil la mellom topp- og bunnkanten på den flytende rammen og innholdet i rammen. Både dokumenter i og utenfor den flytende rammen må være HTML-dokumenter." #. EEPAq #: cui/uiconfig/ui/insertfloatingframe.ui:469 @@ -11218,7 +11209,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:478 msgctxt "insertfloatingframe|extended_tip|defaultwidth" msgid "Applies the default horizontal spacing." -msgstr "" +msgstr "Bruker standard horisontal avstand." #. dQ8BY #: cui/uiconfig/ui/insertfloatingframe.ui:489 @@ -11230,7 +11221,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:498 msgctxt "insertfloatingframe|extended_tip|defaultheight" msgid "Applies the default vertical spacing." -msgstr "" +msgstr "Bruker standard vertikal avstand." #. YqkF7 #: cui/uiconfig/ui/insertfloatingframe.ui:515 @@ -11242,7 +11233,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:555 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 "" +msgstr "Endrer egenskapene til den valgte flytende rammen. Flytende rammer fungerer best når de inneholder et html-dokument, og når de settes inn i et annet html-dokument." #. DHyVM #: cui/uiconfig/ui/insertoleobject.ui:16 @@ -11278,7 +11269,7 @@ #: cui/uiconfig/ui/insertoleobject.ui:258 msgctxt "insertoleobject|linktofile" msgid "Link to file" -msgstr "Lenke til fila" +msgstr "Lenke til filen" #. FDCFK #: cui/uiconfig/ui/insertoleobject.ui:267 @@ -11302,7 +11293,7 @@ #: cui/uiconfig/ui/insertoleobject.ui:333 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 "" +msgstr "Setter inn et OLE-objekt i gjeldende dokument. OLE-objektet settes inn som en lenke eller et innebygd objekt." #. BCgnf #: cui/uiconfig/ui/insertrowcolumn.ui:15 @@ -11314,7 +11305,7 @@ #: cui/uiconfig/ui/insertrowcolumn.ui:111 msgctxt "insertrowcolumn|label3" msgid "_Number:" -msgstr "_Tall:" +msgstr "Tall:" #. P5PWM #: cui/uiconfig/ui/insertrowcolumn.ui:131 @@ -11332,7 +11323,7 @@ #: cui/uiconfig/ui/insertrowcolumn.ui:180 msgctxt "insertrowcolumn|insert_before" msgid "_Before" -msgstr "_Før" +msgstr "Før" #. bX93d #: cui/uiconfig/ui/insertrowcolumn.ui:190 @@ -11344,7 +11335,7 @@ #: cui/uiconfig/ui/insertrowcolumn.ui:202 msgctxt "insertrowcolumn|insert_after" msgid "A_fter" -msgstr "E_tter" +msgstr "Etter" #. Rqgws #: cui/uiconfig/ui/insertrowcolumn.ui:212 @@ -11368,7 +11359,7 @@ #: cui/uiconfig/ui/javaclasspathdialog.ui:105 msgctxt "javaclasspathdialog|label1" msgid "A_ssigned folders and archives" -msgstr "_Tilordnede mapper og arkiv" +msgstr "Tilordnede mapper og arkiv" #. ERHh7 #: cui/uiconfig/ui/javaclasspathdialog.ui:158 @@ -11380,7 +11371,7 @@ #: cui/uiconfig/ui/javaclasspathdialog.ui:185 msgctxt "javaclasspathdialog|archive" msgid "_Add Archive..." -msgstr "_Legg til arkiv …" +msgstr "Legg til arkiv …" #. xV5SQ #: cui/uiconfig/ui/javaclasspathdialog.ui:192 @@ -11392,7 +11383,7 @@ #: cui/uiconfig/ui/javaclasspathdialog.ui:204 msgctxt "javaclasspathdialog|folder" msgid "Add _Folder" -msgstr "Legg til _mappe" +msgstr "Legg til mappe" #. WP9Eo #: cui/uiconfig/ui/javaclasspathdialog.ui:211 @@ -11404,13 +11395,13 @@ #: cui/uiconfig/ui/javaclasspathdialog.ui:223 msgctxt "javaclasspathdialog|remove" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. 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 "Velg et arkiv eller en mappe i lista, og trykk «Fjern» for å fjerne objektet fra klassestien." +msgstr "Velg et arkiv eller en mappe i listen, og trykk «Fjern» for å fjerne objektet fra klassestien." #. De7GF #: cui/uiconfig/ui/javaclasspathdialog.ui:266 @@ -11428,19 +11419,19 @@ #: cui/uiconfig/ui/javastartparametersdialog.ui:105 msgctxt "javastartparametersdialog|label4" msgid "Java start _parameter" -msgstr "Java start-_parameter" +msgstr "Java start-parameter" #. Btkis #: cui/uiconfig/ui/javastartparametersdialog.ui:124 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 "Skriv inn en startparameter for Java-kjøremiljøet (JRE) på samme måte som du ville gjort det på kommandolinja. Trykk «Tildel» for å legge parameteren til i lista over tilgjengelige startparametre." +msgstr "Skriv inn en startparameter for Java-kjøremiljøet (JRE) på samme måte som du ville gjort det på kommandolinjen. Trykk «Tildel» for å legge parameteren til i listen over tilgjengelige startparametre." #. bbrtf #: cui/uiconfig/ui/javastartparametersdialog.ui:137 msgctxt "javastartparametersdialog|label5" msgid "Assig_ned start parameters" -msgstr "_Tilordnede startparameter" +msgstr "Tilordnede startparameter" #. xjKFh #: cui/uiconfig/ui/javastartparametersdialog.ui:179 @@ -11458,37 +11449,37 @@ #: cui/uiconfig/ui/javastartparametersdialog.ui:204 msgctxt "javastartparametersdialog|assignbtn" msgid "_Add" -msgstr "_Legg til" +msgstr "Legg til" #. 5DJCP #: cui/uiconfig/ui/javastartparametersdialog.ui:213 msgctxt "extended_tip|assignbtn" msgid "Adds the current JRE start parameter to the list." -msgstr "Legger den gjeldende JRE-startparameteren til i lista." +msgstr "Legger den gjeldende JRE-startparameteren til i listen." #. sNSWD #: cui/uiconfig/ui/javastartparametersdialog.ui:230 msgctxt "javastartparametersdialog|editbtn" msgid "_Edit" -msgstr "_Rediger" +msgstr "Rediger" #. 5FP58 #: cui/uiconfig/ui/javastartparametersdialog.ui:238 msgctxt "extended_tip|editbtn" msgid "Opens a dialog where the selected JRE start parameter can be edited." -msgstr "" +msgstr "Åpner en dialog der den valgte JRE startparameteren kan redigeres." #. fUGmG #: cui/uiconfig/ui/javastartparametersdialog.ui:250 msgctxt "javastartparametersdialog|removebtn" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. PhsGH #: cui/uiconfig/ui/javastartparametersdialog.ui:258 msgctxt "extended_tip|removebtn" msgid "Deletes the selected JRE start parameter." -msgstr "Sletter den valgte JRE-startparameteren." +msgstr "Sletter det valgte JRE-startparameteret." #. RdoKs #: cui/uiconfig/ui/linedialog.ui:8 @@ -11524,13 +11515,13 @@ #: cui/uiconfig/ui/lineendstabpage.ui:72 msgctxt "lineendstabpage|FT_TITLE" msgid "_Title:" -msgstr "_Tittel:" +msgstr "Tittel:" #. iGG25 #: cui/uiconfig/ui/lineendstabpage.ui:86 msgctxt "lineendstabpage|FT_LINE_END_STYLE" msgid "Arrow _style:" -msgstr "_Pilstil:" +msgstr "Pilstil:" #. y6SSb #: cui/uiconfig/ui/lineendstabpage.ui:136 @@ -11542,7 +11533,7 @@ #: cui/uiconfig/ui/lineendstabpage.ui:177 msgctxt "lineendstabpage|BTN_MODIFY" msgid "_Modify" -msgstr "_Endre" +msgstr "Endre" #. iQUys #: cui/uiconfig/ui/lineendstabpage.ui:198 @@ -11572,25 +11563,25 @@ #: cui/uiconfig/ui/linestyletabpage.ui:105 msgctxt "linestyletabpage|FT_TYPE" msgid "_Type:" -msgstr "_Type:" +msgstr "Type:" #. FELjh #: cui/uiconfig/ui/linestyletabpage.ui:119 msgctxt "linestyletabpage|FT_NUMBER" msgid "_Number:" -msgstr "_Tall:" +msgstr "Tall:" #. ApA5k #: cui/uiconfig/ui/linestyletabpage.ui:133 msgctxt "linestyletabpage|FT_LENGTH" msgid "_Length:" -msgstr "_Lengde:" +msgstr "Lengde:" #. UyY5P #: cui/uiconfig/ui/linestyletabpage.ui:147 msgctxt "linestyletabpage|FT_DISTANCE" msgid "_Spacing:" -msgstr "_Avstand:" +msgstr "Avstand:" #. LyV8a #: cui/uiconfig/ui/linestyletabpage.ui:163 @@ -11610,19 +11601,19 @@ #: cui/uiconfig/ui/linestyletabpage.ui:257 msgctxt "linestyletabpage|CBX_SYNCHRONIZE" msgid "_Fit to line width" -msgstr "_Tilpass til linjebredde" +msgstr "Tilpass til linjebredde" #. rBY7A #: cui/uiconfig/ui/linestyletabpage.ui:275 msgctxt "linestyletabpage|FT_LINESTYLE" msgid "Line _style:" -msgstr "Linje_stil:" +msgstr "Linjestil:" #. MAsFg #: cui/uiconfig/ui/linestyletabpage.ui:353 msgctxt "linestyletabpage|BTN_MODIFY" msgid "_Modify" -msgstr "_Endre" +msgstr "Endre" #. wuhfR #: cui/uiconfig/ui/linestyletabpage.ui:374 @@ -11652,55 +11643,55 @@ #: cui/uiconfig/ui/linetabpage.ui:78 msgctxt "linetabpage|menuitem1" msgid "_No Symbol" -msgstr "_Ingen symbol" +msgstr "Ingen symbol" #. 2q5YF #: cui/uiconfig/ui/linetabpage.ui:86 msgctxt "linetabpage|menuitem2" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. WA9YD #: cui/uiconfig/ui/linetabpage.ui:94 msgctxt "linetabpage|menuitem3" msgid "_From file..." -msgstr "_Fra fil …" +msgstr "Fra fil …" #. DYone #: cui/uiconfig/ui/linetabpage.ui:102 msgctxt "linetabpage|menuitem4" msgid "_Gallery" -msgstr "_Galleri" +msgstr "Galleri" #. EvAFu #: cui/uiconfig/ui/linetabpage.ui:116 msgctxt "linetabpage|menuitem5" msgid "_Symbols" -msgstr "_Symboler" +msgstr "Symboler" #. vFEBA #: cui/uiconfig/ui/linetabpage.ui:169 msgctxt "linetabpage|FT_LINE_STYLE" msgid "_Style:" -msgstr "_Stil:" +msgstr "Stil:" #. WBP2J #: cui/uiconfig/ui/linetabpage.ui:222 msgctxt "linetabpage|FT_COLOR" msgid "Colo_r:" -msgstr "_Farge:" +msgstr "Farge:" #. PtQxP #: cui/uiconfig/ui/linetabpage.ui:267 msgctxt "linetabpage|FT_LINE_WIDTH" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. MzAeD #: cui/uiconfig/ui/linetabpage.ui:309 msgctxt "linetabpage|FT_TRANSPARENT" msgid "_Transparency:" -msgstr "_Gjennomsiktighet:" +msgstr "Gjennomsiktighet:" #. 6TFWn #: cui/uiconfig/ui/linetabpage.ui:349 @@ -11712,43 +11703,43 @@ #: cui/uiconfig/ui/linetabpage.ui:396 msgctxt "linetabpage|FT_LINE_ENDS_STYLE" msgid "Start st_yle:" -msgstr "Startst_il:" +msgstr "Startstil:" #. aZYyn #: cui/uiconfig/ui/linetabpage.ui:440 msgctxt "linetabpage|TSB_CENTER_START" msgid "Ce_nter" -msgstr "_Midtstill" +msgstr "Midtstill" #. 5RYtu #: cui/uiconfig/ui/linetabpage.ui:458 msgctxt "linetabpage|FT_LINE_START_WIDTH" msgid "Wi_dth:" -msgstr "Bre_dde:" +msgstr "Bredde:" #. pQfyE #: cui/uiconfig/ui/linetabpage.ui:484 msgctxt "linetabpage|CBX_SYNCHRONIZE" msgid "Synchroni_ze ends" -msgstr "_Synkroniser endene" +msgstr "Synkroniser endene" #. cCsuG #: cui/uiconfig/ui/linetabpage.ui:553 msgctxt "linetabpage|label5" msgid "End sty_le:" -msgstr "Slutts_til:" +msgstr "Sluttstil:" #. zm8Ga #: cui/uiconfig/ui/linetabpage.ui:574 msgctxt "linetabpage|FT_LINE_END_WIDTH" msgid "W_idth:" -msgstr "Bre_idde:" +msgstr "Bredde:" #. g2gLY #: cui/uiconfig/ui/linetabpage.ui:600 msgctxt "linetabpage|TSB_CENTER_END" msgid "C_enter" -msgstr "_Midtstill" +msgstr "Midtstill" #. sged5 #: cui/uiconfig/ui/linetabpage.ui:646 @@ -11760,19 +11751,19 @@ #: cui/uiconfig/ui/linetabpage.ui:682 msgctxt "linetabpage|FT_EDGE_STYLE" msgid "_Corner style:" -msgstr "_Hjørnestil:" +msgstr "Hjørnestil:" #. kCtQm #: cui/uiconfig/ui/linetabpage.ui:696 msgctxt "linetabpage|FT_CAP_STYLE" msgid "Ca_p style:" -msgstr "Stil for _linjeslutt:" +msgstr "Stil for linjeslutt:" #. Qx3Ur #: cui/uiconfig/ui/linetabpage.ui:711 msgctxt "linetabpage|liststoreEDGE_STYLE" msgid "Rounded" -msgstr "Avrunda" +msgstr "Avrundet" #. XH7Z6 #: cui/uiconfig/ui/linetabpage.ui:712 @@ -11790,7 +11781,7 @@ #: cui/uiconfig/ui/linetabpage.ui:714 msgctxt "linetabpage|liststoreEDGE_STYLE" msgid "Beveled" -msgstr "Avfasa" +msgstr "Avfaset" #. biCBC #: cui/uiconfig/ui/linetabpage.ui:727 @@ -11826,19 +11817,19 @@ #: cui/uiconfig/ui/linetabpage.ui:806 msgctxt "linetabpage|FT_SYMBOL_WIDTH" msgid "Widt_h:" -msgstr "_Bredde:" +msgstr "Bredde:" #. yhVmm #: cui/uiconfig/ui/linetabpage.ui:831 msgctxt "linetabpage|CB_SYMBOL_RATIO" msgid "_Keep ratio" -msgstr "_Behold størrelsesforholdet" +msgstr "Behold størrelsesforholdet" #. oV6GJ #: cui/uiconfig/ui/linetabpage.ui:849 msgctxt "linetabpage|FT_SYMBOL_HEIGHT" msgid "Hei_ght:" -msgstr "_Høyde:" +msgstr "Høyde:" #. 9eaQs #: cui/uiconfig/ui/linetabpage.ui:887 @@ -11862,7 +11853,7 @@ #: 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 "" +msgstr "Tilordner makroer til programhendelser. Den tildelte makroen kjører automatisk hver gang den valgte hendelsen inntreffer." #. NGu7X #: cui/uiconfig/ui/macroassignpage.ui:65 @@ -11880,7 +11871,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:100 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 "" +msgstr "Den store listeboksen viser hendelsene og de tildelte makroene. Når du har valgt stedet i Lagre i-listeboksen, velger du en hendelse i den store listeboksen. Klikk deretter på Tildel makro." #. jfate #: cui/uiconfig/ui/macroassignpage.ui:113 @@ -11892,19 +11883,19 @@ #: cui/uiconfig/ui/macroassignpage.ui:146 msgctxt "macroassignpage|assign" msgid "M_acro..." -msgstr "_Makro …" +msgstr "Makro …" #. ECTjc #: cui/uiconfig/ui/macroassignpage.ui:153 msgctxt "macroassignpage|extended_tip|assign" msgid "Opens the Macro Selector to assign a macro to the selected event." -msgstr "" +msgstr "Åpner makrovelgeren for å tilordne en makro til den valgte hendelsen." #. nhxq7 #: cui/uiconfig/ui/macroassignpage.ui:165 msgctxt "macroassignpage|component" msgid "Com_ponent..." -msgstr "_Komponent …" +msgstr "Komponent …" #. UNHTV #: cui/uiconfig/ui/macroassignpage.ui:179 @@ -11916,7 +11907,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:186 msgctxt "macroassignpage|extended_tip|delete" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Sletter makro- eller komponenttildelingen for den valgte hendelsen." #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:204 @@ -11928,7 +11919,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:218 msgctxt "macroassignpage|extended_tip|MacroAssignPage" msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs." -msgstr "" +msgstr "Tilordner makroer til programhendelser. Den tildelte makroen kjører automatisk hver gang den valgte hendelsen inntreffer." #. RVDTA #: cui/uiconfig/ui/macroselectordialog.ui:26 @@ -11952,7 +11943,7 @@ #: 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 "For å legge til en kommando på verktøylinja, velg kategorien og deretter kommandoen. Dra kommandoen til lista Kommandoer på fanen Verktøylinjer i dialogvinduet Selvvalgt." +msgstr "For å legge til en kommando på verktøylinjen, velg kategorien og deretter kommandoen. Dra kommandoen til listen Kommandoer på fanen Verktøylinjer i dialogvinduet Selvvalgt." #. SuCLc #: cui/uiconfig/ui/macroselectordialog.ui:236 @@ -12000,25 +11991,25 @@ #: cui/uiconfig/ui/menuassignpage.ui:104 cui/uiconfig/ui/menuassignpage.ui:176 msgctxt "menuassignpage|gear_add" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. ekuNo #: cui/uiconfig/ui/menuassignpage.ui:112 cui/uiconfig/ui/menuassignpage.ui:184 msgctxt "menuassignpage|gear_delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. iRLgG #: cui/uiconfig/ui/menuassignpage.ui:120 cui/uiconfig/ui/menuassignpage.ui:192 msgctxt "menuassignpage|gear_rename" msgid "_Rename..." -msgstr "End_re navn …" +msgstr "Endre navn …" #. rE3BD #: cui/uiconfig/ui/menuassignpage.ui:128 cui/uiconfig/ui/menuassignpage.ui:200 msgctxt "menuassignpage|gear_move" msgid "_Move..." -msgstr "_Flytt …" +msgstr "Flytt …" #. iNnSq #: cui/uiconfig/ui/menuassignpage.ui:140 @@ -12078,19 +12069,19 @@ #: cui/uiconfig/ui/menuassignpage.ui:291 msgctxt "menuassignpage|extended_tip|desc" msgid "The text box contains a short description of the selected command." -msgstr "" +msgstr "Tekstboksen inneholder en kort beskrivelse av den valgte kommandoen." #. qiiBX #: cui/uiconfig/ui/menuassignpage.ui:308 msgctxt "menuassignpage|label33" msgid "D_escription" -msgstr "_Beskrivelse" +msgstr "Beskrivelse" #. KXCzA #: cui/uiconfig/ui/menuassignpage.ui:361 msgctxt "menuassignpage|extended_tip|functions" msgid "Displays the results of the combination of the search string and category of the desired function." -msgstr "" +msgstr "Viser resultatene av kombinasjonen av søkestrengen og kategorien til ønsket funksjon." #. wYjEi #: cui/uiconfig/ui/menuassignpage.ui:378 @@ -12102,7 +12093,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:394 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 "" +msgstr "Velg menykommandokategorien i rullegardinlisten for å begrense søket på kommandoer eller bla i listen nedenfor. Kommandoer for makroer og stiler er nederst på listen." #. ZrMmi #: cui/uiconfig/ui/menuassignpage.ui:409 @@ -12120,13 +12111,13 @@ #: cui/uiconfig/ui/menuassignpage.ui:427 msgctxt "menuassignpage|extended_tip|searchEntry" msgid "Enter a string in the text box to narrow the search of commands." -msgstr "" +msgstr "Skriv inn en streng i tekstboksen for å begrense søket etter kommandoer." #. 7gtLC #: cui/uiconfig/ui/menuassignpage.ui:451 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 "" +msgstr "Velg stedet der menyen skal festes. Hvis den er knyttet til en %PRODUCTNAME-modul, er menyen tilgjengelig for alle filer som er åpnet i den modulen. Hvis den er knyttet til filen, vil menyen bare være tilgjengelig når filen åpnes og er aktiv." #. D35vJ #: cui/uiconfig/ui/menuassignpage.ui:462 @@ -12138,7 +12129,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:494 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 "" +msgstr "Velg menyen der tilpasningen skal brukes. Gjeldende sett med funksjoner vises i ruten nedenfor." #. QN5Bd #: cui/uiconfig/ui/menuassignpage.ui:515 @@ -12198,7 +12189,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:797 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 "" +msgstr "Klikk på høyre pilknapp for å velge en funksjon i venstre skjermboks og kopiere til høyre skjermboks. Dette vil legge til funksjonen i den valgte menyen." #. iree8 #: cui/uiconfig/ui/menuassignpage.ui:823 @@ -12210,7 +12201,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:833 msgctxt "menuassignpage|extended_tip|remove" msgid "Click on the left arrow button to remove the selected command from the current menu." -msgstr "" +msgstr "Klikk på venstre pilknapp for å fjerne den valgte kommandoen fra gjeldende meny." #. t7BYP #: cui/uiconfig/ui/menuassignpage.ui:866 @@ -12222,7 +12213,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:870 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 "" +msgstr "Klikk på pil opp eller pil ned til høyre for å flytte den valgte kommandoen oppover eller nedover i listen over menykommandoer som vises." #. S6K2N #: cui/uiconfig/ui/menuassignpage.ui:884 @@ -12234,19 +12225,19 @@ #: cui/uiconfig/ui/menuassignpage.ui:888 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 "" +msgstr "Klikk på pil opp eller pil ned til høyre for å flytte den valgte kommandoen oppover eller nedover i listen over menykommandoer som vises." #. fto8m #: cui/uiconfig/ui/menuassignpage.ui:908 msgctxt "menuassignpage|scopelabel" msgid "S_cope" -msgstr "_Virkefelt" +msgstr "Virkefelt" #. SLinm #: cui/uiconfig/ui/menuassignpage.ui:921 msgctxt "menuassignpage|targetlabel" msgid "_Target" -msgstr "_Mål" +msgstr "Mål" #. cZEBZ #: cui/uiconfig/ui/menuassignpage.ui:934 @@ -12258,13 +12249,13 @@ #: cui/uiconfig/ui/menuassignpage.ui:947 msgctxt "menuassignpage|customizelabel" msgid "_Customize" -msgstr "_Tilpass" +msgstr "Tilpass" #. yFQHn #: cui/uiconfig/ui/menuassignpage.ui:1006 msgctxt "menuassignpage|extended_tip|MenuAssignPage" msgid "Lets you customize %PRODUCTNAME menus for all modules." -msgstr "" +msgstr "Lar deg tilpasse %PRODUCTNAME-menyer for alle moduler." #. Mcir5 #: cui/uiconfig/ui/mosaicdialog.ui:21 @@ -12282,7 +12273,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:177 msgctxt "mosaicdialog|label2" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. TsqoC #: cui/uiconfig/ui/mosaicdialog.ui:203 @@ -12300,13 +12291,13 @@ #: cui/uiconfig/ui/mosaicdialog.ui:222 msgctxt "mosaicdialog|label3" msgid "_Height:" -msgstr "_Høyde:" +msgstr "Høyde:" #. HPBw2 #: cui/uiconfig/ui/mosaicdialog.ui:240 msgctxt "mosaicdialog|edges" msgid "E_nhance edges" -msgstr "_Forbedre kantene" +msgstr "Forbedre kantene" #. mEUiS #: cui/uiconfig/ui/mosaicdialog.ui:249 @@ -12324,7 +12315,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:297 msgctxt "mosaicdialog|extended_tip|MosaicDialog" msgid "Joins small groups of pixels into rectangular areas of the same color." -msgstr "" +msgstr "Føyer sammen små grupper av piksler i rektangulære områder med samme farge." #. NcNCG #: cui/uiconfig/ui/movemenu.ui:26 @@ -12342,13 +12333,13 @@ #: cui/uiconfig/ui/movemenu.ui:130 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 "" +msgstr "Skriv inn et navn på menyen. For å spesifisere en bokstav i navnet som akselratornøkkel, skriv inn en tilde (~) før bokstaven." #. YV2LE #: cui/uiconfig/ui/movemenu.ui:159 msgctxt "movemenu|label1" msgid "Menu _position:" -msgstr "Meny_plassering:" +msgstr "Menyplassering:" #. HZFF5 #: cui/uiconfig/ui/movemenu.ui:232 @@ -12366,7 +12357,7 @@ #: cui/uiconfig/ui/movemenu.ui:301 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 "" +msgstr "Flytter den valgte menyoppføringen opp en posisjon eller ned en posisjon i menyen når du klikker på en pilknapp." #. qoE4K #: cui/uiconfig/ui/multipathdialog.ui:22 @@ -12504,7 +12495,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:91 msgctxt "numberingformatpage|extended_tip|formatted" msgid "Displays the number format code for the selected format. You can also enter a custom format." -msgstr "" +msgstr "Viser nummerformatkoden for det valgte formatet. Du kan også angi et tilpasset format." #. 5ATKM #: cui/uiconfig/ui/numberingformatpage.ui:105 @@ -12516,7 +12507,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:110 msgctxt "numberingformatpage|extended_tip|add" msgid "Adds the number format code that you entered to the user-defined category." -msgstr "" +msgstr "Legger til nummerformatkoden du skrev inn i den brukerdefinerte kategorien." #. Sjx7f #: cui/uiconfig/ui/numberingformatpage.ui:124 @@ -12528,7 +12519,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:129 msgctxt "numberingformatpage|extended_tip|edit" msgid "Enter a comment for the selected number format, and then click outside this box." -msgstr "" +msgstr "Skriv inn en kommentar for det valgte nummerformatet, og klikk deretter utenfor denne boksen." #. YidmA #: cui/uiconfig/ui/numberingformatpage.ui:143 @@ -12540,7 +12531,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:148 msgctxt "numberingformatpage|extended_tip|delete" msgid "Deletes the selected number format." -msgstr "" +msgstr "Sletter det valgte tallformatet." #. BFF82 #: cui/uiconfig/ui/numberingformatpage.ui:173 @@ -12552,31 +12543,31 @@ #: cui/uiconfig/ui/numberingformatpage.ui:177 msgctxt "numberingformatpage|extended_tip|commented" msgid "Adds a comment to the selected number format." -msgstr "" +msgstr "Legger til en kommentar til det valgte nummerformatet." #. XNdu6 #: cui/uiconfig/ui/numberingformatpage.ui:195 msgctxt "numberingformatpage|formatf" msgid "_Format Code" -msgstr "" +msgstr "Formatkode" #. 5GA9p #: cui/uiconfig/ui/numberingformatpage.ui:243 msgctxt "numberingformatpage|extended_tip|decimalsed" msgid "Enter the number of decimal places that you want to display." -msgstr "" +msgstr "Angi antall desimaler du vil vise." #. VnduH #: cui/uiconfig/ui/numberingformatpage.ui:261 msgctxt "numberingformatpage|extended_tip|denominatored" msgid "With fraction format, enter the number of places for the denominator that you want to display." -msgstr "" +msgstr "Med brøkformat, skriv inn antall plasser for nevneren du vil vise." #. zG6sE #: cui/uiconfig/ui/numberingformatpage.ui:285 msgctxt "numberingformatpage|extended_tip|leadzerosed" msgid "Enter the maximum number of zeroes to display in front of the decimal point." -msgstr "" +msgstr "Angi maksimalt antall nuller som skal vises foran desimaltegnet." #. ZiPyf #: cui/uiconfig/ui/numberingformatpage.ui:306 @@ -12606,7 +12597,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:362 msgctxt "numberingformatpage|extended_tip|negnumred" msgid "Changes the font color of negative numbers to red." -msgstr "" +msgstr "Endrer skriftfargen på negative tall til rødt." #. 9DhkC #: cui/uiconfig/ui/numberingformatpage.ui:380 @@ -12618,7 +12609,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:388 msgctxt "numberingformatpage|extended_tip|engineering" msgid "With scientific format, Engineering notation ensures that exponent is a multiple of 3." -msgstr "" +msgstr "Med vitenskapelig format sikrer ingeniørnotasjon at eksponenten er et multiplum av 3." #. rrDFo #: cui/uiconfig/ui/numberingformatpage.ui:400 @@ -12630,7 +12621,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:409 msgctxt "numberingformatpage|extended_tip|thousands" msgid "Inserts a separator between thousands. The type of separator that is used depends on your language settings." -msgstr "" +msgstr "Setter inn en skilletegn mellom tusenvis. Hvilken type separator som brukes, avhenger av språkinnstillingene dine." #. rsmBU #: cui/uiconfig/ui/numberingformatpage.ui:433 @@ -12642,7 +12633,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:499 msgctxt "numberingformatpage|extended_tip|categorylb" msgid "Select a category from the list, and then select a formatting style in the Format box." -msgstr "" +msgstr "Velg en kategori fra listen, og velg deretter en formateringsstil i Format-boksen." #. NTAb6 #: cui/uiconfig/ui/numberingformatpage.ui:512 @@ -12660,13 +12651,13 @@ #: cui/uiconfig/ui/numberingformatpage.ui:561 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 "" +msgstr "Velg en valuta, og gå deretter til toppen av Format-listen for å se formateringsalternativene for valutaen." #. TBLU5 #: cui/uiconfig/ui/numberingformatpage.ui:602 msgctxt "numberingformatpage|extended_tip|formatlb" msgid "Select how you want the contents of the selected field to be displayed." -msgstr "" +msgstr "Velg hvordan du vil at innholdet i det valgte feltet skal vises." #. Wxkzd #: cui/uiconfig/ui/numberingformatpage.ui:621 @@ -12678,7 +12669,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:662 msgctxt "numberingformatpage|extended_tip|languagelb" msgid "Specifies the language setting for the selected field." -msgstr "" +msgstr "Spesifiserer språkinnstillingen for det valgte feltet." #. hx9FX #: cui/uiconfig/ui/numberingformatpage.ui:673 @@ -12690,7 +12681,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:682 msgctxt "numberingformatpage|extended_tip|sourceformat" msgid "Uses the same number format as the cells containing the data for the chart." -msgstr "" +msgstr "Bruker samme tallformat som cellene som inneholder dataene for diagrammet." #. iCX4U #: cui/uiconfig/ui/numberingformatpage.ui:725 @@ -12702,7 +12693,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:747 msgctxt "numberingformatpage|extended_tip|NumberingFormatPage" msgid "Specify the formatting options for the selected cell(s)." -msgstr "" +msgstr "Spesifiser formateringsalternativene for de valgte cellene." #. XxX2T #: cui/uiconfig/ui/numberingoptionspage.ui:42 @@ -12738,19 +12729,19 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:193 msgctxt "numberingoptionspage|extended_tip|charstyle" msgid "Select the Character Style that you want to use in the numbered list." -msgstr "" +msgstr "Velg tegnstilen du vil bruke i den nummererte listen." #. UaFF9 #: cui/uiconfig/ui/numberingoptionspage.ui:212 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 "" +msgstr "Skriv inn antall tidligere nivåer som ska inkluderes i nummereringsstilen. Hvis du for eksempel skriver inn \"2\" og det forrige nivået bruker \"A, B, C ...\" nummereringsstil, blir nummereringsskjemaet for det nåværende nivået: \"A.1\"." #. ST2Co #: cui/uiconfig/ui/numberingoptionspage.ui:230 msgctxt "numberingoptionspage|extended_tip|startat" msgid "Enter a new starting number for the current level." -msgstr "Skriv inn et nytt nummer som gjeldende nivå skal starte nummereringa på." +msgstr "Skriv inn et nytt nummer som gjeldende nivå skal starte nummereringen på." #. xWX3x #: cui/uiconfig/ui/numberingoptionspage.ui:243 @@ -12816,19 +12807,19 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:389 msgctxt "numberingoptionspage|orientlb" msgid "Top of baseline" -msgstr "Øverst på grunnlinja" +msgstr "Øverst på grunnlinjen" #. YgzFa #: cui/uiconfig/ui/numberingoptionspage.ui:390 msgctxt "numberingoptionspage|orientlb" msgid "Center of baseline" -msgstr "Midt på grunnlinja" +msgstr "Midt på grunnlinjen" #. rRWyY #: cui/uiconfig/ui/numberingoptionspage.ui:391 msgctxt "numberingoptionspage|orientlb" msgid "Bottom of baseline" -msgstr "Nederst på grunnlinja" +msgstr "Nederst på grunnlinjen" #. GRqAC #: cui/uiconfig/ui/numberingoptionspage.ui:392 @@ -12852,19 +12843,19 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:395 msgctxt "numberingoptionspage|orientlb" msgid "Top of line" -msgstr "Øverst på linja" +msgstr "Øverst på linjen" #. UoEug #: cui/uiconfig/ui/numberingoptionspage.ui:396 msgctxt "numberingoptionspage|orientlb" msgid "Center of line" -msgstr "Midt på linja" +msgstr "Midt på linjen" #. 7dPkC #: cui/uiconfig/ui/numberingoptionspage.ui:397 msgctxt "numberingoptionspage|orientlb" msgid "Bottom of line" -msgstr "Nederst på linja" +msgstr "Nederst på linjen" #. Quwne #: cui/uiconfig/ui/numberingoptionspage.ui:401 @@ -12888,13 +12879,13 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:446 msgctxt "numberingoptionspage|extended_tip|color" msgid "Select a color for the current numbering style." -msgstr "" +msgstr "Velg en farge for gjeldende nummereringsstil." #. hJgCL #: cui/uiconfig/ui/numberingoptionspage.ui:464 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 "" +msgstr "Angi beløpet du vil endre størrelsen på punkttegnet med hensyn til skrifthøyden til gjeldende avsnitt." #. M4aPS #: cui/uiconfig/ui/numberingoptionspage.ui:475 @@ -12924,13 +12915,13 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:538 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 "Skriv inn et tegn eller en tekst som skal vies etter nummeret i lista. Hvis du vil lage en nummerert liste som bruker stilen «1.)», må du skrive inn «.)» i denne boksen." +msgstr "Skriv inn et tegn eller en tekst som skal vies etter nummeret i listen. Hvis du vil lage en nummerert liste som bruker stilen «1.)», må du skrive inn «.)» i denne boksen." #. wVrAN #: cui/uiconfig/ui/numberingoptionspage.ui:555 msgctxt "numberingoptionspage|extended_tip|prefix" msgid "Enter a character or the text to display in front of the number in the list." -msgstr "Skriv inn et tegn eller en tekst som skal stå før numrene i lista." +msgstr "Skriv inn et tegn eller en tekst som skal stå før numrene i listen." #. FLJWG #: cui/uiconfig/ui/numberingoptionspage.ui:568 @@ -12954,7 +12945,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:611 msgctxt "numberingoptionspage|relsizeft" msgid "_Relative size:" -msgstr "_Relativ størrelse:" +msgstr "Relativ størrelse:" #. 6r484 #: cui/uiconfig/ui/numberingoptionspage.ui:625 @@ -12978,13 +12969,13 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:703 msgctxt "numberingoptionspage|allsame" msgid "_Consecutive numbering" -msgstr "_Påfølgende nummerering" +msgstr "Påfølgende nummerering" #. 48AhR #: cui/uiconfig/ui/numberingoptionspage.ui:713 msgctxt "numberingoptionspage|extended_tip|allsame" msgid "Increases the numbering by one as you go down each level in the list hierarchy." -msgstr "" +msgstr "Øker nummereringen med en når du går ned hvert nivå i listehierarkiet." #. 9VSpp #: cui/uiconfig/ui/numberingoptionspage.ui:724 @@ -13008,7 +12999,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:103 msgctxt "numberingpositionpage|num2align" msgid "N_umbering alignment:" -msgstr "N_ummereringsjustering:" +msgstr "Nummereringsjustering:" #. xFfvt #: cui/uiconfig/ui/numberingpositionpage.ui:117 @@ -13080,19 +13071,19 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:256 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 "" +msgstr "Angi hvor mye plass det skal være mellom venstre sidemargin (eller venstre kant av tekstobjektet) og venstre kant av nummereringsområdet. Hvis den gjeldende avsnittstilen bruker et innrykk, blir verdien du oppgir her lagt til innrykk." #. YCZDg #: cui/uiconfig/ui/numberingpositionpage.ui:267 msgctxt "numberingpositionpage|relative" msgid "Relati_ve" -msgstr "Relati_v" +msgstr "Relativ" #. CCTdA #: cui/uiconfig/ui/numberingpositionpage.ui:277 msgctxt "numberingpositionpage|extended_tip|relative" msgid "Indents the current level relative to the previous level in the list hierarchy." -msgstr "" +msgstr "Innrykker gjeldende nivå i forhold til forrige nivå i listehierarkiet." #. bt7Fj #: cui/uiconfig/ui/numberingpositionpage.ui:291 @@ -13104,13 +13095,13 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:311 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 "" +msgstr "Angi bredden på nummereringsområdet. Nummereringssymbolet kan være venstre, midt eller høyre i dette området." #. zuD8v #: cui/uiconfig/ui/numberingpositionpage.ui:330 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 "" +msgstr "Justeringen av nummereringssymbolet justeres for å få ønsket minimumsplass. Hvis det ikke er mulig fordi nummereringsområdet ikke er bredt nok, justeres starten på teksten." #. EJUm3 #: cui/uiconfig/ui/numberingpositionpage.ui:343 @@ -13126,7 +13117,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:359 msgctxt "numberingpositionpage|numalign" msgid "N_umbering alignment:" -msgstr "N_ummereringsjustering:" +msgstr "Nummereringsjustering:" #. Bu2uC #: cui/uiconfig/ui/numberingpositionpage.ui:374 @@ -13186,7 +13177,7 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:563 msgctxt "numberingpositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "Velg nivå (er) du vil endre." #. jRE6s #: cui/uiconfig/ui/numberingpositionpage.ui:576 @@ -13204,13 +13195,13 @@ #: cui/uiconfig/ui/objectnamedialog.ui:85 msgctxt "objectnamedialog|object_name_label" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. uFBRJ #: cui/uiconfig/ui/objectnamedialog.ui:129 msgctxt "objectnamedialog|extended_tip|ObjectNameDialog" msgid "Enter a name for the selected object. The name will be visible in the Navigator." -msgstr "" +msgstr "Skriv inn et navn for det valgte objektet. Navnet vil være synlig i Navigator." #. 4TRWw #: cui/uiconfig/ui/objecttitledescdialog.ui:15 @@ -13222,7 +13213,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:92 msgctxt "objecttitledescdialog|object_title_label" msgid "_Title:" -msgstr "_Tittel:" +msgstr "Tittel:" #. mMZoM #: cui/uiconfig/ui/objecttitledescdialog.ui:112 @@ -13234,7 +13225,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:126 msgctxt "objecttitledescdialog|desc_label" msgid "_Description:" -msgstr "_Beskrivelse:" +msgstr "Beskrivelse:" #. vT3u9 #: cui/uiconfig/ui/objecttitledescdialog.ui:149 @@ -13252,19 +13243,19 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:31 msgctxt "optaccessibilitypage|acctool" msgid "Support _assistive technology tools (program restart required)" -msgstr "Bruk _tilgjengelighetsverktøy (program krever omstart)" +msgstr "Bruk tilgjengelighetsverktøy (program krever omstart)" #. 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 "Let deg bruka tilleggsverktøy som eksterne skjermlesarar, blindeskrift-verktøy eller taleattkjenning. Java Runtime Environment må vera installert på maskina." +msgstr "Lar deg bruke tilleggsverktøy som eksterne skjermleseren, blindeskrift-verktøy eller talegjenkjenning. Java Runtime Environment må være installert på maskinen." #. EZqPM #: cui/uiconfig/ui/optaccessibilitypage.ui:52 msgctxt "optaccessibilitypage|textselinreadonly" msgid "Use te_xt selection cursor in read-only text documents" -msgstr "_Bruk skrivemerke for tekstvalg i skrivebeskytta dokumenter" +msgstr "Bruk skrivemerke for tekstvalg i skrivebeskyttede dokumenter" #. KWSKn #: cui/uiconfig/ui/optaccessibilitypage.ui:61 @@ -13276,25 +13267,25 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:73 msgctxt "optaccessibilitypage|animatedgraphics" msgid "Allow animated _images" -msgstr "Tillat animerte _bilder" +msgstr "Tillat animerte bilder" #. vvmf3 #: cui/uiconfig/ui/optaccessibilitypage.ui:82 msgctxt "extended_tip|animatedgraphics" msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME." -msgstr "Førehandsviser animert grafikk, som til dømes GIF-bilete, i %PRODUCTNAME." +msgstr "Forhåndsviser animert grafikk, som for eksempel GIF-bilder, i %PRODUCTNAME." #. 3Q66x #: cui/uiconfig/ui/optaccessibilitypage.ui:94 msgctxt "optaccessibilitypage|animatedtext" msgid "Allow animated _text" -msgstr "Tillat animert _tekst" +msgstr "Tillat animert tekst" #. dcCgH #: cui/uiconfig/ui/optaccessibilitypage.ui:103 msgctxt "extended_tip|animatedtext" msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME." -msgstr "Førehandsviser animert tekst, til dømes blinking og rulling, i %PRODUCTNAME." +msgstr "Forhåndsvisning av animert tekst, for eksempel å blinke og skrolle, i %PRODUCTNAME." #. 2A83C #: cui/uiconfig/ui/optaccessibilitypage.ui:121 @@ -13306,19 +13297,19 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:154 msgctxt "optaccessibilitypage|autodetecthc" msgid "Automatically _detect high contrast mode of operating system" -msgstr "_Automatisk oppdagelse av høykontrastmodus i operativsystemet" +msgstr "Automatisk oppdagelse av høykontrastmodus i operativsystemet" #. 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 "Set %PRODUCTNAME i høgkontrastmodus når systembakgrunnen er veldig mørk." +msgstr "Set %PRODUCTNAME i høykontrastmodus når systembakgrunnen er veldig mørk." #. Sc8Cq #: cui/uiconfig/ui/optaccessibilitypage.ui:175 msgctxt "optaccessibilitypage|autofontcolor" msgid "Use automatic font _color for screen display" -msgstr "Bruk automatiske _skriftfarger ved visning på skjerm" +msgstr "Bruk automatiske skriftfarger ved visning på skjerm" #. DP3mg #: cui/uiconfig/ui/optaccessibilitypage.ui:184 @@ -13330,7 +13321,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:196 msgctxt "optaccessibilitypage|systempagepreviewcolor" msgid "_Use system colors for page previews" -msgstr "_Bruk systemfarger i forhåndsvisning av sider" +msgstr "Bruk systemfarger i forhåndsvisning av sider" #. DRkNv #: cui/uiconfig/ui/optaccessibilitypage.ui:205 @@ -13354,7 +13345,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:61 msgctxt "optadvancedpage|javaenabled" msgid "_Use a Java runtime environment" -msgstr "_Bruk et Java-kjøremiljø" +msgstr "Bruk et Java-kjøremiljø" #. xBxzA #: cui/uiconfig/ui/optadvancedpage.ui:70 @@ -13372,7 +13363,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:128 msgctxt "optadvancedpage|add" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. kbEGR #: cui/uiconfig/ui/optadvancedpage.ui:135 @@ -13384,7 +13375,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:147 msgctxt "optadvancedpage|parameters" msgid "_Parameters..." -msgstr "_Parametre …" +msgstr "Parametre …" #. DJxvJ #: cui/uiconfig/ui/optadvancedpage.ui:154 @@ -13396,7 +13387,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:166 msgctxt "optadvancedpage|classpath" msgid "_Class Path..." -msgstr "_Klassesti ..." +msgstr "Klassesti ..." #. qDrtT #: cui/uiconfig/ui/optadvancedpage.ui:173 @@ -13420,7 +13411,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:269 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 "Velg Java-kjøremiljøet du vil bruke. På noen systemer må du vente litt før lista fylles ut. Hvis du endrer innstillinger her, krever noen systemer også at du starter %PRODUCTNAME på nytt før de endrede innstillingene tas i bruk." +msgstr "Velg Java-kjøremiljøet du vil bruke. På noen systemer må du vente litt før listen fylles ut. Hvis du endrer innstillinger her, krever noen systemer også at du starter %PRODUCTNAME på nytt før de endrede innstillingene tas i bruk." #. erNBk #: cui/uiconfig/ui/optadvancedpage.ui:297 @@ -13450,7 +13441,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:393 msgctxt "extended_tip|experimental" msgid "Enable experimental features" -msgstr "" +msgstr "Aktiver eksperimentelle funksjoner" #. rMVcA #: cui/uiconfig/ui/optadvancedpage.ui:404 @@ -13462,7 +13453,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:413 msgctxt "extended_tip|macrorecording" msgid "Enable macro recording" -msgstr "" +msgstr "Aktiver makroopptak" #. NgRXw #: cui/uiconfig/ui/optadvancedpage.ui:424 @@ -13474,7 +13465,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:432 msgctxt "extended_tip|expertconfig" msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME." -msgstr "" +msgstr "Åpner dialogboksen Ekspertkonfigurasjon for avanserte innstillinger og konfigurasjon av %PRODUCTNAME." #. ZLtrh #: cui/uiconfig/ui/optadvancedpage.ui:449 @@ -13492,13 +13483,13 @@ #: cui/uiconfig/ui/optappearancepage.ui:38 msgctxt "optappearancepage|label3" msgid "_Scheme:" -msgstr "_Skjema:" +msgstr "Skjema:" #. k8ACj #: cui/uiconfig/ui/optappearancepage.ui:56 msgctxt "extended_tip|save" msgid "Saves the current settings as a color scheme that you can reload later." -msgstr "Lagrer gjeldende innstillingër som et fargeskjema slik at de kan hentes inn senere." +msgstr "Lagrer gjeldende innstillinger som et fargeskjema slik at de kan hentes inn senere." #. 4YuTW #: cui/uiconfig/ui/optappearancepage.ui:74 @@ -13564,19 +13555,19 @@ #: cui/uiconfig/ui/optasianpage.ui:41 msgctxt "extended_tip|charkerning" msgid "Specifies that kerning is only applied to western text." -msgstr "" +msgstr "Spesifiserer at kerning bare brukes på vestlig tekst." #. WEFrz #: cui/uiconfig/ui/optasianpage.ui:53 msgctxt "optasianpage|charpunctkerning" msgid "Western _text and Asian punctuation" -msgstr "Vestlig tekst og _asiatisk tegnsetting" +msgstr "Vestlig tekst og asiatisk tegnsetting" #. PCrHe #: cui/uiconfig/ui/optasianpage.ui:63 msgctxt "extended_tip|charpunctkerning" msgid "Specifies that kerning is applied to both western text and Asian punctuation." -msgstr "" +msgstr "Spesifiserer at kerning brukes på både vestlig tekst og asiatisk tegnsetting." #. 4wTpB #: cui/uiconfig/ui/optasianpage.ui:81 @@ -13588,37 +13579,37 @@ #: cui/uiconfig/ui/optasianpage.ui:113 msgctxt "optasianpage|nocompression" msgid "_No compression" -msgstr "_Ingen komprimering" +msgstr "Ingen komprimering" #. DGBhs #: cui/uiconfig/ui/optasianpage.ui:123 msgctxt "extended_tip|nocompression" msgid "Specifies that no compression at all will occur." -msgstr "" +msgstr "Spesifiserer at det ikke kommer noen komprimering i det hele tatt." #. GvJuV #: cui/uiconfig/ui/optasianpage.ui:135 msgctxt "optasianpage|punctcompression" msgid "_Compress punctuation only" -msgstr "_Komprimer bare tegnsettinga" +msgstr "Komprimer bare tegnsettingen" #. 8FYbX #: cui/uiconfig/ui/optasianpage.ui:145 msgctxt "extended_tip|punctcompression" msgid "Specifies that only the punctuation is compressed." -msgstr "" +msgstr "Spesifiserer at bare tegnsetting er komprimert." #. aGY7H #: cui/uiconfig/ui/optasianpage.ui:157 msgctxt "optasianpage|punctkanacompression" msgid "Compress punctuation and Japanese Kana" -msgstr "Komprimer tegnsettinga og japansk Kana" +msgstr "Komprimer tegnsettingen og japansk Kana" #. k2K9z #: cui/uiconfig/ui/optasianpage.ui:167 msgctxt "extended_tip|punctkanacompression" msgid "Specifies that punctuation and Japanese Kana are compressed." -msgstr "" +msgstr "Spesifiserer at tegnsetting og japansk Kana er komprimert." #. DAgwH #: cui/uiconfig/ui/optasianpage.ui:185 @@ -13630,49 +13621,49 @@ #: cui/uiconfig/ui/optasianpage.ui:240 msgctxt "extended_tip|language" msgid "Specifies the language for which you want to define first and last characters." -msgstr "" +msgstr "Spesifiserer språket du vil definere første og siste tegn for." #. CeSy8 #: cui/uiconfig/ui/optasianpage.ui:252 msgctxt "optasianpage|standard" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. bEKYg #: cui/uiconfig/ui/optasianpage.ui:261 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 "" +msgstr "Når du merker standard, fylles de følgende to tekstfeltene med standardtegnene for det valgte språket:" #. WmjE9 #: cui/uiconfig/ui/optasianpage.ui:281 msgctxt "optasianpage|languageft" msgid "_Language:" -msgstr "_Språk:" +msgstr "Språk:" #. 3Airv #: cui/uiconfig/ui/optasianpage.ui:295 msgctxt "optasianpage|startft" msgid "Not _at start of line:" -msgstr "Ikke ved _starten av linje:" +msgstr "Ikke ved starten av linje:" #. TiFfn #: cui/uiconfig/ui/optasianpage.ui:309 msgctxt "optasianpage|endft" msgid "Not at _end of line:" -msgstr "Ikke ved slutten _av linje:" +msgstr "Ikke ved slutten av linje:" #. ebuCA #: cui/uiconfig/ui/optasianpage.ui:328 msgctxt "extended_tip|start" msgid "Specifies the characters that should not appear alone at the beginning of a line." -msgstr "" +msgstr "Spesifiserer tegnene som ikke skal vises alene i begynnelsen av en linje." #. 6EoPs #: cui/uiconfig/ui/optasianpage.ui:346 msgctxt "extended_tip|end" msgid "Specifies the characters that should not appear alone at the end of a line." -msgstr "" +msgstr "Spesifiserer tegnene som ikke skal vises alene på slutten av en linje." #. dSvmP #: cui/uiconfig/ui/optasianpage.ui:366 @@ -13696,7 +13687,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:39 msgctxt "extended_tip|codecomplete_enable" msgid "Display methods of a Basic object." -msgstr "" +msgstr "Viser metodene til et Basic objekt" #. B8fvE #: cui/uiconfig/ui/optbasicidepage.ui:56 @@ -13714,7 +13705,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:98 msgctxt "extended_tip|autoclose_proc" msgid "Automatically insert closing statements for procedures." -msgstr "" +msgstr "Sett automatisk inn avslutningsuttalelser for prosedyrer." #. qKTPa #: cui/uiconfig/ui/optbasicidepage.ui:109 @@ -13726,7 +13717,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:118 msgctxt "extended_tip|autoclose_paren" msgid "Automatically close open parenthesis." -msgstr "" +msgstr "Automatisk lukking av åpen parentes." #. EExBY #: cui/uiconfig/ui/optbasicidepage.ui:129 @@ -13738,7 +13729,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:138 msgctxt "extended_tip|autoclose_quotes" msgid "Automatically close open quotes." -msgstr "" +msgstr "Lukk åpne sitat automatisk." #. CCtUM #: cui/uiconfig/ui/optbasicidepage.ui:149 @@ -13750,7 +13741,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:159 msgctxt "extended_tip|autocorrect" msgid "Correct cases of Basic variables and keywords while typing." -msgstr "" +msgstr "Rett Basicvariabler og nøkkelord mens du skriver." #. dJWhM #: cui/uiconfig/ui/optbasicidepage.ui:176 @@ -13762,13 +13753,13 @@ #: cui/uiconfig/ui/optbasicidepage.ui:209 msgctxt "optbasicidepage|extendedtypes_enable" msgid "Use extended types" -msgstr "Bruk utvida typer" +msgstr "Bruk utvidede typer" #. zYY9B #: cui/uiconfig/ui/optbasicidepage.ui:218 msgctxt "extended_tip|extendedtypes_enable" msgid "Allow UNO object types as valid Basic types." -msgstr "" +msgstr "Tillat UNO objekter som gyldige Basictyper" #. rG8Fi #: cui/uiconfig/ui/optbasicidepage.ui:235 @@ -13780,7 +13771,7 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:80 msgctxt "extended_tip|colors" msgid "Displays all the colors available for the data series." -msgstr "" +msgstr "Viser alle tilgjengelige farger for dataserien." #. vTZjC #: cui/uiconfig/ui/optchartcolorspage.ui:93 @@ -13792,13 +13783,13 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:166 msgctxt "optchartcolorspage|default" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. mpSKB #: cui/uiconfig/ui/optchartcolorspage.ui:173 msgctxt "extended_tip|default" msgid "Restores the color settings that were defined when the program was installed." -msgstr "" +msgstr "Gjenoppretter fargeinnstillingene som ble definert da programmet ble installert." #. KoHHw #: cui/uiconfig/ui/optchartcolorspage.ui:241 @@ -13810,37 +13801,37 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:256 msgctxt "extended_tip|OptChartColorsPage" msgid "Displays all the colors available for the data series." -msgstr "" +msgstr "Viser alle tilgjengelige farger for dataserien." #. fVDQp #: cui/uiconfig/ui/optctlpage.ui:32 msgctxt "optctlpage|sequencechecking" msgid "Use se_quence checking" -msgstr "_Bruk sekvenskontroll" +msgstr "Bruk sekvenskontroll" #. 47pP9 #: cui/uiconfig/ui/optctlpage.ui:41 msgctxt "extended_tip|sequencechecking" msgid "Enables sequence input checking for languages such as Thai." -msgstr "" +msgstr "Gjør det mulig å sjekke sekvensinngang for språk som Thai." #. DTWHd #: cui/uiconfig/ui/optctlpage.ui:63 msgctxt "optctlpage|restricted" msgid "Restricted" -msgstr "Avgrensa" +msgstr "Begrenset" #. HtGj9 #: cui/uiconfig/ui/optctlpage.ui:72 msgctxt "extended_tip|restricted" msgid "Prevents the use as well as the printing of illegal character combinations." -msgstr "" +msgstr "Hindrer bruk samt utskrift av ulovlige tegnkombinasjoner." #. wkSPW #: cui/uiconfig/ui/optctlpage.ui:83 msgctxt "optctlpage|typeandreplace" msgid "_Type and replace" -msgstr "_Skriv og erstatt" +msgstr "Skriv og erstatt" #. 4fM2r #: cui/uiconfig/ui/optctlpage.ui:112 @@ -13858,7 +13849,7 @@ #: cui/uiconfig/ui/optctlpage.ui:158 msgctxt "optctlpage|movementlogical" msgid "Lo_gical" -msgstr "Lo_gisk" +msgstr "Logisk" #. W9NrD #: cui/uiconfig/ui/optctlpage.ui:168 @@ -13870,7 +13861,7 @@ #: cui/uiconfig/ui/optctlpage.ui:179 msgctxt "optctlpage|movementvisual" msgid "_Visual" -msgstr "_Visuell" +msgstr "Visuell" #. wpUXS #: cui/uiconfig/ui/optctlpage.ui:189 @@ -13888,7 +13879,7 @@ #: cui/uiconfig/ui/optctlpage.ui:244 msgctxt "optctlpage|label5" msgid "_Numerals:" -msgstr "_Sifre:" +msgstr "Tall:" #. BdfCk #: cui/uiconfig/ui/optctlpage.ui:259 @@ -13942,7 +13933,7 @@ #: cui/uiconfig/ui/optemailpage.ui:55 msgctxt "extended_tip|url" msgid "Enter the email program path and name." -msgstr "" +msgstr "Skriv inn e-postprogrammets sti og navn." #. ACQCM #: cui/uiconfig/ui/optemailpage.ui:66 @@ -13954,7 +13945,7 @@ #: cui/uiconfig/ui/optemailpage.ui:73 msgctxt "extended_tip|browse" msgid "Opens a file dialog to select the email program." -msgstr "" +msgstr "Åpner en fildialog for å velge e-postprogrammet." #. EHBa5 #: cui/uiconfig/ui/optemailpage.ui:99 @@ -13978,7 +13969,7 @@ #: cui/uiconfig/ui/optemailpage.ui:202 msgctxt "extended_tip|OptEmailPage" msgid "Enter the email program path and name." -msgstr "" +msgstr "Skriv inn e-postprogrammets bane og navn." #. CnnM7 #. A column title, short for Load. This string is repeated as a prefix to an explanatory note under the widget @@ -13998,7 +13989,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:136 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 "" +msgstr "Avkrysningsruten [L] og [S] viser oppføringene for OLE-objektene som kan konverteres når de lastes inn i %PRODUCTNAME [L] og/eller når de lagres i et Microsoft-format [S]. " #. x5kfq #. The [L] here is repeated as the column title for the "Load" column of this options page @@ -14036,7 +14027,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:253 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 "" +msgstr "Microsoft Office har to karakterattributter som ligner på %PRODUCTNAME tegnbakgrunn. Velg riktig attributt (utheving eller skyggelegging) som du vil bruke under eksport til Microsoft Office-filformater." #. Dnrx7 #: cui/uiconfig/ui/optfltrembedpage.ui:265 @@ -14048,7 +14039,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:275 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 "" +msgstr "Microsoft Office har to karakterattributter som ligner på %PRODUCTNAME tegnbakgrunn. Velg riktig attributt (utheving eller skyggelegging) som du vil bruke under eksport til Microsoft Office-filformater." #. gKwdG #: cui/uiconfig/ui/optfltrembedpage.ui:300 @@ -14066,37 +14057,37 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:341 msgctxt "extended_tip|mso_lockfile" msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file." -msgstr "" +msgstr "Merk av i denne avkrysningsboksen for å generere en Microsoft Office-låsefil i tillegg til %PRODUCTNAME egen låsefil." #. Sg5Bw #: cui/uiconfig/ui/optfltrembedpage.ui:359 msgctxt "optfltrembedpage|label5" msgid "Lock Files" -msgstr "" +msgstr "Låsefiler" #. EUBnP #: cui/uiconfig/ui/optfltrembedpage.ui:373 msgctxt "extended_tip|OptFilterPage" msgid "Specifies the settings for importing and exporting Microsoft Office and other documents." -msgstr "" +msgstr "Spesifiserer innstillingene for import og eksport av Microsoft Office og andre dokumenter." #. ttAk5 #: cui/uiconfig/ui/optfltrpage.ui:31 msgctxt "optfltrpage|wo_basic" msgid "Load Basic _code" -msgstr "Last inn _Basic-kode" +msgstr "Last inn Basic-kode" #. q4wdN #: cui/uiconfig/ui/optfltrpage.ui:40 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 "" +msgstr "Laster inn og lagrer Basic-koden fra et Microsoft-dokument som en spesiell %PRODUCTNAME Basic-modul sammen med dokumentet. Den deaktiverte Microsoft Basic-koden er synlig i %PRODUCTNAME Basic IDE mellom Sub og End Sub." #. AChYC #: cui/uiconfig/ui/optfltrpage.ui:51 msgctxt "optfltrpage|wo_exec" msgid "E_xecutable code" -msgstr "_Kjørbar kode" +msgstr "Kjørbar kode" #. DrWP3 #: cui/uiconfig/ui/optfltrpage.ui:61 @@ -14108,13 +14099,13 @@ #: cui/uiconfig/ui/optfltrpage.ui:72 msgctxt "optfltrpage|wo_saveorig" msgid "Save _original Basic code" -msgstr "Lagre _opprinnelig Basic-kode" +msgstr "Lagre opprinnelig Basic-kode" #. 4pGYB #: cui/uiconfig/ui/optfltrpage.ui:81 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 "" +msgstr "Spesifiserer at den opprinnelige Microsoft Basic-koden i dokumentet oppbevares i et spesielt internminne så lenge dokumentet forblir lastet i% PRODUCTNAME. Når du lagrer dokumentet i Microsoft-format, lagres Microsoft Basic igjen med koden i uendret form." #. W6nED #: cui/uiconfig/ui/optfltrpage.ui:98 @@ -14126,19 +14117,19 @@ #: cui/uiconfig/ui/optfltrpage.ui:131 msgctxt "optfltrpage|ex_basic" msgid "Lo_ad Basic code" -msgstr "Last inn _Basic-kode" +msgstr "Last inn Basic-kode" #. QcFGD #: cui/uiconfig/ui/optfltrpage.ui:140 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 "" +msgstr "Laster inn og lagrer Basic-koden fra et Microsoft-dokument som en spesiell %PRODUCTNAME Basic-modul sammen med dokumentet. Den deaktiverte Microsoft Basic-koden er synlig i %PRODUCTNAME Basic IDE mellom Sub og End Sub." #. S6ozV #: cui/uiconfig/ui/optfltrpage.ui:151 msgctxt "optfltrpage|ex_exec" msgid "E_xecutable code" -msgstr "_Kjørbar kode" +msgstr "Kjørbar kode" #. qvcsz #: cui/uiconfig/ui/optfltrpage.ui:161 @@ -14150,13 +14141,13 @@ #: cui/uiconfig/ui/optfltrpage.ui:172 msgctxt "optfltrpage|ex_saveorig" msgid "Sa_ve original Basic code" -msgstr "Lagre _opprinnelig Basic-kode" +msgstr "Lagre opprinnelig Basic-kode" #. QzDgZ #: cui/uiconfig/ui/optfltrpage.ui:181 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 "" +msgstr "Spesifiserer at den opprinnelige Microsoft Basic-koden i dokumentet oppbevares i et spesielt internminne så lenge dokumentet forblir lastet i %PRODUCTNAME. Når du lagrer dokumentet i Microsoft-format, lagres Microsoft Basic igjen med koden i uendret form." #. a5EkB #: cui/uiconfig/ui/optfltrpage.ui:198 @@ -14168,25 +14159,25 @@ #: cui/uiconfig/ui/optfltrpage.ui:231 msgctxt "optfltrpage|pp_basic" msgid "Load Ba_sic code" -msgstr "Last inn _Basic-kode" +msgstr "Last inn Basic-kode" #. VR4v5 #: cui/uiconfig/ui/optfltrpage.ui:240 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 "" +msgstr "Laster inn og lagrer Basic-koden fra et Microsoft-dokument som en spesiell %PRODUCTNAME Basic-modul sammen med dokumentet. Den deaktiverte Microsoft Basic-koden er synlig i %PRODUCTNAME Basic IDE mellom Sub og End Sub." #. VSdyY #: cui/uiconfig/ui/optfltrpage.ui:251 msgctxt "optfltrpage|pp_saveorig" msgid "Sav_e original Basic code" -msgstr "Lagre _opprinnelig Basic-kode" +msgstr "Lagre opprinnelig Basic-kode" #. tTQXM #: cui/uiconfig/ui/optfltrpage.ui:260 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 "" +msgstr "Spesifiserer at den opprinnelige Microsoft Basic-koden i dokumentet oppbevares i et spesielt internminne så lenge dokumentet forblir lastet i %PRODUCTNAME. Når du lagrer dokumentet i Microsoft-format, lagres Microsoft Basic igjen med koden i uendret form." #. sazZt #: cui/uiconfig/ui/optfltrpage.ui:277 @@ -14204,13 +14195,13 @@ #: cui/uiconfig/ui/optfontspage.ui:87 msgctxt "optfontspage|label2" msgid "_Font:" -msgstr "Skrift_type:" +msgstr "Fonttype:" #. TAig5 #: cui/uiconfig/ui/optfontspage.ui:101 msgctxt "optfontspage|label3" msgid "Re_place with:" -msgstr "Erstatt _med:" +msgstr "Erstatt med:" #. ctZBz #: cui/uiconfig/ui/optfontspage.ui:141 @@ -14228,7 +14219,7 @@ #: cui/uiconfig/ui/optfontspage.ui:176 msgctxt "optfontspage|font" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. FELgv #: cui/uiconfig/ui/optfontspage.ui:190 @@ -14240,49 +14231,49 @@ #: cui/uiconfig/ui/optfontspage.ui:202 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 "Viser den opprinnelige skrifta og skrifta den skal byttes ut med. Velg Alltid for å bytte ut både skjermskriften og utskriftsskriften, selv om den opprinnelige skriften er installert på systemet. Velg Bare skjerm for å bytte ut bare skjermskriften." +msgstr "Viser den opprinnelige fonten og fonten den skal byttes ut med. Velg Alltid for å bytte ut både skjermfonten og utskriftss fonten, selv om den opprinnelige fonten er installert på systemet. Velg Bare skjerm for å bytte ut bare skjerm fonten." #. BGoZq #: cui/uiconfig/ui/optfontspage.ui:231 msgctxt "extended_tip | apply" msgid "Applies the selected font replacement." -msgstr "Tar i bruk den valgte skrifterstatningen." +msgstr "Tar i bruk den valgte fonterstatningen." #. sYmaA #: cui/uiconfig/ui/optfontspage.ui:250 msgctxt "extended_tip | delete" msgid "Deletes the selected font replacement." -msgstr "Sletter skrifteerstatningen du har valgt." +msgstr "Sletter fonterstatningen du har valgt." #. gtiJp #: cui/uiconfig/ui/optfontspage.ui:275 msgctxt "extended_tip | font2" msgid "Enter or select the name of the replacement font." -msgstr "Skriv inn eller velg navnet på skrifta du vil bytte ut med." +msgstr "Skriv inn eller velg navnet på fonten du vil bytte ut med." #. SABse #: cui/uiconfig/ui/optfontspage.ui:300 msgctxt "extended_tip | font1" msgid "Enter or select the name of the font that you want to replace." -msgstr "Skriv inn eller velg navnet på skrifta du vil bytte ut." +msgstr "Skriv inn eller velg navnet på fonten du vil bytte ut." #. k4PCs #: cui/uiconfig/ui/optfontspage.ui:311 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 "Erstatter en skrift med skrifta du velger. Erstatningsskrifta kan brukes bare til visning på skjermen, eller både til visning på skjermen og utskrift. Erstatninga endrer ikke skriftinnstillingene som er lagret i dokumentet." +msgstr "Erstatter en font med fonten du velger. Erstatningss fonten kan brukes bare til visning på skjermen, eller både til visning på skjermen og utskrift. Erstatningen endrer ikke fontinnstillingene som er lagret i dokumentet." #. 7ECDC #: cui/uiconfig/ui/optfontspage.ui:323 msgctxt "optfontspage|usetable" msgid "_Apply replacement table" -msgstr "_Bruk erstatningstabellen" +msgstr "Bruk erstatningstabellen" #. AVB5d #: cui/uiconfig/ui/optfontspage.ui:332 msgctxt "extended_tip | usetable" msgid "Enables the font replacement settings that you define." -msgstr "Slår på innstillingene du har valgt for skrifterstatning." +msgstr "Slår på innstillingene du har valgt for fonterstatning." #. wDa4A #: cui/uiconfig/ui/optfontspage.ui:350 @@ -14294,13 +14285,13 @@ #: cui/uiconfig/ui/optfontspage.ui:389 msgctxt "optfontspage|label8" msgid "Fon_ts:" -msgstr "Skrift_typer:" +msgstr "Fonter:" #. L9aT3 #: cui/uiconfig/ui/optfontspage.ui:404 msgctxt "optfontspage|label9" msgid "_Size:" -msgstr "_Størrelse:" +msgstr "Størrelse:" #. KXCQg #: cui/uiconfig/ui/optfontspage.ui:419 @@ -14312,37 +14303,37 @@ #: cui/uiconfig/ui/optfontspage.ui:423 msgctxt "extended_tip | fontname" msgid "Select the font for the display of HTML and Basic source code." -msgstr "Velg skrift for visning av HTML- og Basic-kildekode og SQL." +msgstr "Velg font for visning av HTML- og Basic-kildekode og SQL." #. Cc5tn #: cui/uiconfig/ui/optfontspage.ui:434 msgctxt "optfontspage|nonpropfontonly" msgid "_Non-proportional fonts only" -msgstr "_Bare skrifter med fast bredde" +msgstr "Bare fonter med fast bredde" #. aUYNh #: cui/uiconfig/ui/optfontspage.ui:443 msgctxt "extended_tip | nonpropfontonly" msgid "Check to display only non-proportional fonts in the Fonts list box." -msgstr "Merk av for å vise bare skrifter med fast bredde i listeboksen Skrifter." +msgstr "Merk av for å vise bare fonter med fast bredde i listeboksen Fonter." #. GAiec #: cui/uiconfig/ui/optfontspage.ui:460 msgctxt "extended_tip | fontheight" msgid "Select a font size for the display of HTML and Basic source code." -msgstr "Velg skriftstørrelse for visning av HTML- og kildekode for Basic og SQL." +msgstr "Velg fontstørrelse for visning av HTML- og kildekode for Basic og SQL." #. AafuA #: cui/uiconfig/ui/optfontspage.ui:480 msgctxt "optfontspage|label1" msgid "Font Settings for HTML, Basic and SQL Sources" -msgstr "Skriftinnstillinger for HTML-, Basic- og SQL-kilder" +msgstr "Fontinnstillinger for HTML-, Basic- og SQL-kilder" #. AFEDo #: cui/uiconfig/ui/optgeneralpage.ui:37 msgctxt "optgeneralpage|exthelp" msgid "_Extended tips" -msgstr "_Utvidede tips" +msgstr "Utvidede tips" #. ypuz2 #: cui/uiconfig/ui/optgeneralpage.ui:46 @@ -14372,7 +14363,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:124 msgctxt "optgeneralpage|filedlg" msgid "_Use %PRODUCTNAME dialogs" -msgstr "_Bruk dialogvinduene til %PRODUCTNAME" +msgstr "Bruk dialogvinduene til %PRODUCTNAME" #. ySSsA #: cui/uiconfig/ui/optgeneralpage.ui:158 @@ -14384,7 +14375,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:184 msgctxt "optgeneralpage|printdlg" msgid "Use %PRODUCTNAME _dialogs" -msgstr "Bruk _dialogvinduene til %PRODUCTNAME" +msgstr "Bruk dialogvinduene til %PRODUCTNAME" #. F6nzA #: cui/uiconfig/ui/optgeneralpage.ui:199 @@ -14396,7 +14387,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:225 msgctxt "optgeneralpage|docstatus" msgid "_Printing sets \"document modified\" status" -msgstr "_Utskrift skal anses som endring av dokumentet" +msgstr "Utskrift skal anses som endring av dokumentet" #. kPEpF #: cui/uiconfig/ui/optgeneralpage.ui:234 @@ -14504,103 +14495,103 @@ #: cui/uiconfig/ui/opthtmlpage.ui:107 msgctxt "extended_tip|size7" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til taggene." #. SfHVG #: cui/uiconfig/ui/opthtmlpage.ui:120 msgctxt "opthtmlpage|size6FT" msgid "Size _6:" -msgstr "Størrelse _6:" +msgstr "Størrelse 6:" #. wWFqw #: cui/uiconfig/ui/opthtmlpage.ui:137 msgctxt "extended_tip|size6" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til ." #. mbGGc #: cui/uiconfig/ui/opthtmlpage.ui:150 msgctxt "opthtmlpage|size5FT" msgid "Size _5:" -msgstr "Størrelse _5:" +msgstr "Størrelse 5:" #. GAy87 #: cui/uiconfig/ui/opthtmlpage.ui:167 msgctxt "extended_tip|size5" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til taggene." #. PwaSa #: cui/uiconfig/ui/opthtmlpage.ui:180 msgctxt "opthtmlpage|size4FT" msgid "Size _4:" -msgstr "Størrelse _4:" +msgstr "Størrelse 4:" #. QEA47 #: cui/uiconfig/ui/opthtmlpage.ui:197 msgctxt "extended_tip|size4" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til taggene." #. FSRpm #: cui/uiconfig/ui/opthtmlpage.ui:210 msgctxt "opthtmlpage|size3FT" msgid "Size _3:" -msgstr "Størrelse _3:" +msgstr "Størrelse 3:" #. drCYA #: cui/uiconfig/ui/opthtmlpage.ui:227 msgctxt "extended_tip|size3" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til taggene." #. unrKj #: cui/uiconfig/ui/opthtmlpage.ui:240 msgctxt "opthtmlpage|size2FT" msgid "Size _2:" -msgstr "Størrelse _2:" +msgstr "Størrelse 2:" #. tvwUA #: cui/uiconfig/ui/opthtmlpage.ui:257 msgctxt "extended_tip|size2" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til taggene." #. aiSoE #: cui/uiconfig/ui/opthtmlpage.ui:270 msgctxt "opthtmlpage|size1FT" msgid "Size _1:" -msgstr "Størrelse _1:" +msgstr "Størrelse 1:" #. 99HCd #: cui/uiconfig/ui/opthtmlpage.ui:287 msgctxt "extended_tip|size1" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Bruk spinneknappene Størrelse 1 til Størrelse 7 for å definere de respektive fontstørrelsene for HTML til taggene." #. rRkQd #: cui/uiconfig/ui/opthtmlpage.ui:304 msgctxt "opthtmlpage|label1" msgid "Font Sizes" -msgstr "Skriftstørrelser" +msgstr "Fontstørrelser" #. JRQrk #: cui/uiconfig/ui/opthtmlpage.ui:354 msgctxt "opthtmlpage|ignorefontnames" msgid "Ignore _font settings" -msgstr "Ignorer _skriftinnstillinger" +msgstr "Ignorer fontinnstillinger" #. kD39h #: cui/uiconfig/ui/opthtmlpage.ui:364 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 "Kryss av her for å ignorere alle skriftinnstillinger ved importering. Skriftene som er valgt for HTML sidestilen vil bli brukt. " +msgstr "Kryss av her for å ignorere alle fontinnstillinger ved importering. Fontene som er valgt for HTML sidestilen vil bli brukt. " #. 7bZSP #: cui/uiconfig/ui/opthtmlpage.ui:375 msgctxt "opthtmlpage|unknowntag" msgid "_Import unknown HTML tags as fields" -msgstr "_Importer ukjente HTML-tagger som felt" +msgstr "Importer ukjente HTML-tagger som felt" #. QvehA #: cui/uiconfig/ui/opthtmlpage.ui:385 @@ -14612,13 +14603,13 @@ #: cui/uiconfig/ui/opthtmlpage.ui:396 msgctxt "opthtmlpage|numbersenglishus" msgid "_Use '%ENGLISHUSLOCALE' locale for numbers" -msgstr "_Bruk «%ENGLISHUSLOCALE» for tall" +msgstr "Bruk «%ENGLISHUSLOCALE» for tall" #. c4j5A #: cui/uiconfig/ui/opthtmlpage.ui:406 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 "His ikke avkrysset vil tall bli tolket i henhold til instillingene iSpråkinnstillinger -Språk - Lokale innstillinger.. Hvis den er avkrysset vil tallene bli tolket som Engelsk(USA)." +msgstr "His ikke avkrysset vil tall bli tolket i henhold til instillingene i Språkinnstillinger -Språk - Lokale innstillinger.. Hvis den er avkrysset vil tallene bli tolket som Engelsk(USA)." #. Fnsdh #: cui/uiconfig/ui/opthtmlpage.ui:423 @@ -14630,7 +14621,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:469 msgctxt "opthtmlpage|charsetFT" msgid "Character _set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. bTGc4 #: cui/uiconfig/ui/opthtmlpage.ui:487 @@ -14642,19 +14633,19 @@ #: cui/uiconfig/ui/opthtmlpage.ui:504 msgctxt "opthtmlpage|savegrflocal" msgid "_Copy local images to Internet" -msgstr "_Kopier lokal grafikk til Internett" +msgstr "Kopier lokal grafikk til Internett" #. fPAEu #: cui/uiconfig/ui/opthtmlpage.ui:514 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 "Merk av i denne avkryssingsboksen for å automatisk laste opp innebygde bilder i dokumentet, til den valgte Internett-tjeneren når du laster opp ved hjelp av FTP. Bruk dialogvinduet Lagre som til å lagre dokumentet, og skriv inn en fullstendig FTP-nettadresse som filnavn på Internett." +msgstr "Merk av i denne avkryssingsboksen for å automatisk laste opp innebygde bilder i dokumentet, til den valgte Internett-serveren når du laster opp ved hjelp av FTP. Bruk dialogvinduet Lagre som til å lagre dokumentet, og skriv inn en fullstendig FTP-nettadresse som filnavn på Internett." #. Xc4iM #: cui/uiconfig/ui/opthtmlpage.ui:525 msgctxt "opthtmlpage|printextension" msgid "_Print layout" -msgstr "_Utskriftsutforming" +msgstr "Utskriftsutforming" #. CMsrc #: cui/uiconfig/ui/opthtmlpage.ui:535 @@ -14666,7 +14657,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:546 msgctxt "opthtmlpage|starbasicwarning" msgid "Display _warning" -msgstr "_Vis advarsler" +msgstr "Vis advarsler" #. wArnh #: cui/uiconfig/ui/opthtmlpage.ui:557 @@ -14726,61 +14717,61 @@ #: cui/uiconfig/ui/optjsearchpage.ui:35 msgctxt "optjsearchpage|matchcase" msgid "_uppercase/lowercase" -msgstr "_STORE/små bokstaver" +msgstr "STORE/små bokstaver" #. HLhzj #: cui/uiconfig/ui/optjsearchpage.ui:44 msgctxt "extended_tip|matchcase" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. MkLv3 #: cui/uiconfig/ui/optjsearchpage.ui:55 msgctxt "optjsearchpage|matchfullhalfwidth" msgid "_full-width/half-width forms" -msgstr "_fullbredde-/halvbreddeskjema" +msgstr "fullbredde-/halvbreddeskjema" #. 35mFr #: cui/uiconfig/ui/optjsearchpage.ui:64 msgctxt "extended_tip|matchfullhalfwidth" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. FPFmB #: cui/uiconfig/ui/optjsearchpage.ui:75 msgctxt "optjsearchpage|matchhiraganakatakana" msgid "_hiragana/katakana" -msgstr "_hiragana/katakana" +msgstr "hiragana/katakana" #. LUPFs #: cui/uiconfig/ui/optjsearchpage.ui:84 msgctxt "extended_tip|matchhiraganakatakana" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. vx6x8 #: cui/uiconfig/ui/optjsearchpage.ui:95 msgctxt "optjsearchpage|matchcontractions" msgid "_contractions (yo-on, sokuon)" -msgstr "_sammentrekkinger (yo-on, sokuon)" +msgstr "sammentrekkinger (yo-on, sokuon)" #. xYeGB #: cui/uiconfig/ui/optjsearchpage.ui:104 msgctxt "extended_tip|matchcontractions" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. DLxj9 #: cui/uiconfig/ui/optjsearchpage.ui:115 msgctxt "optjsearchpage|matchminusdashchoon" msgid "_minus/dash/cho-on" -msgstr "_minus/bindestrek/cho-on" +msgstr "minus/bindestrek/cho-on" #. pkg8E #: cui/uiconfig/ui/optjsearchpage.ui:124 msgctxt "extended_tip|matchminusdashchoon" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. hYq5H #: cui/uiconfig/ui/optjsearchpage.ui:135 @@ -14792,7 +14783,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:144 msgctxt "extended_tip|matchrepeatcharmarks" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. 62963 #: cui/uiconfig/ui/optjsearchpage.ui:155 @@ -14804,43 +14795,43 @@ #: cui/uiconfig/ui/optjsearchpage.ui:164 msgctxt "extended_tip|matchvariantformkanji" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. ghXPH #: cui/uiconfig/ui/optjsearchpage.ui:175 msgctxt "optjsearchpage|matcholdkanaforms" msgid "_old Kana forms" -msgstr "_gamle Kana-former" +msgstr "gamle Kana-former" #. 2WWSU #: cui/uiconfig/ui/optjsearchpage.ui:184 msgctxt "extended_tip|matcholdkanaforms" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. Wxc7u #: cui/uiconfig/ui/optjsearchpage.ui:195 msgctxt "optjsearchpage|matchdiziduzu" msgid "_di/zi, du/zu" -msgstr "_di/zi, du/zu" +msgstr "di/zi, du/zu" #. EBvfD #: cui/uiconfig/ui/optjsearchpage.ui:204 msgctxt "extended_tip|matchdiziduzu" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. mAzGZ #: cui/uiconfig/ui/optjsearchpage.ui:215 msgctxt "optjsearchpage|matchbavahafa" msgid "_ba/va, ha/fa" -msgstr "_ba/va, ha/fa" +msgstr "ba/va, ha/fa" #. QMJfK #: cui/uiconfig/ui/optjsearchpage.ui:224 msgctxt "extended_tip|matchbavahafa" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. MJAYD #: cui/uiconfig/ui/optjsearchpage.ui:235 @@ -14852,7 +14843,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:244 msgctxt "extended_tip|matchtsithichidhizi" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. CDA8F #: cui/uiconfig/ui/optjsearchpage.ui:255 @@ -14864,19 +14855,19 @@ #: cui/uiconfig/ui/optjsearchpage.ui:264 msgctxt "extended_tip|matchhyuiyubyuvyu" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. MsCme #: cui/uiconfig/ui/optjsearchpage.ui:275 msgctxt "optjsearchpage|matchseshezeje" msgid "_se/she, ze/je" -msgstr "_se/she, ze/je" +msgstr "se/she, ze/je" #. ZgHGb #: cui/uiconfig/ui/optjsearchpage.ui:284 msgctxt "extended_tip|matchseshezeje" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. nRKqj #: cui/uiconfig/ui/optjsearchpage.ui:295 @@ -14888,7 +14879,7 @@ #: cui/uiconfig/ui/optjsearchpage.ui:304 msgctxt "extended_tip|matchiaiya" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. 4i3uv #: cui/uiconfig/ui/optjsearchpage.ui:315 @@ -14900,19 +14891,19 @@ #: cui/uiconfig/ui/optjsearchpage.ui:324 msgctxt "extended_tip|matchkiku" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. eEXX5 #: cui/uiconfig/ui/optjsearchpage.ui:335 msgctxt "optjsearchpage|matchprolongedsoundmark" msgid "Prolon_ged vowels (ka-/kaa)" -msgstr "Forlengede _vokaler (ka-/kaa)" +msgstr "Forlengede vokaler (ka-/kaa)" #. rRCUA #: cui/uiconfig/ui/optjsearchpage.ui:344 msgctxt "extended_tip|matchprolongedsoundmark" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Spesifiserer alternativene som skal behandles som like i et søk." #. rPGGZ #: cui/uiconfig/ui/optjsearchpage.ui:361 @@ -14930,31 +14921,31 @@ #: cui/uiconfig/ui/optjsearchpage.ui:405 msgctxt "extended_tip|ignorepunctuation" msgid "Specifies the characters to be ignored." -msgstr "" +msgstr "Spesifiserer tegnene som skal ignoreres." #. 5JD7N #: cui/uiconfig/ui/optjsearchpage.ui:416 msgctxt "optjsearchpage|ignorewhitespace" msgid "_Whitespace characters" -msgstr "_Mellomromstegn" +msgstr "Mellomromstegn" #. vyC8h #: cui/uiconfig/ui/optjsearchpage.ui:425 msgctxt "extended_tip|ignorewhitespace" msgid "Specifies the characters to be ignored." -msgstr "" +msgstr "Spesifiserer tegnene som skal ignoreres." #. W92kS #: cui/uiconfig/ui/optjsearchpage.ui:436 msgctxt "optjsearchpage|ignoremiddledot" msgid "Midd_le dots" -msgstr "_Midtre prikker" +msgstr "Midtre prikker" #. kA2cf #: cui/uiconfig/ui/optjsearchpage.ui:445 msgctxt "extended_tip|ignoremiddledot" msgid "Specifies the characters to be ignored." -msgstr "" +msgstr "Spesifiserer tegnene som skal ignoreres." #. nZXcM #: cui/uiconfig/ui/optjsearchpage.ui:465 @@ -14966,7 +14957,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:67 msgctxt "optlanguagespage|label4" msgid "_User interface:" -msgstr "_Brukergrensesnitt:" +msgstr "Brukergrensesnitt:" #. PwNF7 #: cui/uiconfig/ui/optlanguagespage.ui:85 @@ -14984,19 +14975,19 @@ #: cui/uiconfig/ui/optlanguagespage.ui:159 msgctxt "extended_tip|westernlanguage" msgid "Specifies the language used for the spellcheck function in western alphabets." -msgstr "" +msgstr "Spesifiserer språket som brukes til stavekontrollfunksjonen i vestlige alfabeter." #. oP5CC #: cui/uiconfig/ui/optlanguagespage.ui:191 msgctxt "extended_tip|asianlanguage" msgid "Specifies the language used for the spellcheck function in Asian alphabets." -msgstr "" +msgstr "Spesifiserer språket som brukes til stavekontrollfunksjonen i asiatiske alfabeter." #. cZNNA #: cui/uiconfig/ui/optlanguagespage.ui:223 msgctxt "extended_tip|complexlanguage" msgid "Specifies the language for the complex text layout spellcheck." -msgstr "" +msgstr "Spesifiserer språket for den stavekontrollen for den komplekse tekstoppsettet." #. 3JLVm #: cui/uiconfig/ui/optlanguagespage.ui:234 @@ -15008,7 +14999,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:244 msgctxt "extended_tip|currentdoc" msgid "Specifies that the settings for default languages are valid only for the current document." -msgstr "" +msgstr "Spesifiserer at innstillingene for standardspråk bare er gyldige for det gjeldende dokumentet." #. zeaKX #: cui/uiconfig/ui/optlanguagespage.ui:255 @@ -15020,7 +15011,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:264 msgctxt "extended_tip|ctlsupport" msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME." -msgstr "" +msgstr "Aktiverer kompleks tekstoppsettstøtte. Du kan nå endre innstillingene som tilsvarer kompleks tekstoppsett i %PRODUCTNAME." #. mpLF7 #: cui/uiconfig/ui/optlanguagespage.ui:275 @@ -15032,7 +15023,7 @@ #: cui/uiconfig/ui/optlanguagespage.ui:284 msgctxt "extended_tip|asiansupport" msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME." -msgstr "" +msgstr "Aktiverer støtte for asiatiske språk. Du kan nå endre de tilsvarende asiatiske språkinnstillingene i %PRODUCTNAME." #. QwDAK #: cui/uiconfig/ui/optlanguagespage.ui:297 @@ -15050,13 +15041,13 @@ #: cui/uiconfig/ui/optlanguagespage.ui:350 msgctxt "optlanguagespage|ignorelanguagechange" msgid "Ignore s_ystem input language" -msgstr "_Ignorer inndataspråket til systemet" +msgstr "Ignorer inndataspråket til systemet" #. CCumn #: cui/uiconfig/ui/optlanguagespage.ui:359 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 "" +msgstr "Angir om endringer i systeminngangsspråket / tastaturet vil bli ignorert. Hvis den blir ignorert, når den nye teksten skrives, vil teksten følge språket i dokumentet eller gjeldende avsnitt, ikke gjeldende systemspråk." #. 83eTv #: cui/uiconfig/ui/optlanguagespage.ui:376 @@ -15080,31 +15071,31 @@ #: cui/uiconfig/ui/optlanguagespage.ui:442 msgctxt "optlanguagespage|defaultcurrency" msgid "_Default currency:" -msgstr "Standard_valuta:" +msgstr "Standardvaluta:" #. XmgPh #: cui/uiconfig/ui/optlanguagespage.ui:456 msgctxt "optlanguagespage|dataaccpatterns" msgid "Date acceptance _patterns:" -msgstr "Godkjente dato_mønstre:" +msgstr "Godkjente datomønstre:" #. yBkAN #: cui/uiconfig/ui/optlanguagespage.ui:474 msgctxt "extended_tip|localesetting" msgid "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure." -msgstr "" +msgstr "Spesifiserer landinnstillingen for landsinnstillingen. Dette påvirker innstillingene for nummerering, valuta og måleenheter." #. XqESm #: cui/uiconfig/ui/optlanguagespage.ui:491 msgctxt "extended_tip|currencylb" msgid "Specifies the default currency that is used for the currency format and the currency fields." -msgstr "" +msgstr "Angir standardvalutaen som brukes i valutaformatet og valutafeltene." #. eNFJn #: cui/uiconfig/ui/optlanguagespage.ui:510 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 "" +msgstr "Spesifiserer datomottakemønstre for gjeldende sted. Calc-regneark og Writer-tabellcelleinndata må samsvare med lokalavhengig datomottakemønster før det blir gjenkjent som en gyldig dato." #. WoNAA #: cui/uiconfig/ui/optlanguagespage.ui:521 @@ -15158,7 +15149,7 @@ #: cui/uiconfig/ui/optlingupage.ui:226 msgctxt "optlingupage|lingumodulesft" msgid "_Available Language Modules" -msgstr "" +msgstr "Tilgjengelige språkmoduler" #. efvBg #: cui/uiconfig/ui/optlingupage.ui:309 @@ -15212,7 +15203,7 @@ #: cui/uiconfig/ui/optlingupage.ui:420 msgctxt "optlingupage|lingudictsft" msgid "_User-defined Dictionaries" -msgstr "" +msgstr "Brukerdefinerte ordbøker" #. sE9tc #: cui/uiconfig/ui/optlingupage.ui:505 @@ -15242,7 +15233,7 @@ #: cui/uiconfig/ui/optlingupage.ui:554 msgctxt "optlingupage|moredictslink" msgid "Get more dictionaries online..." -msgstr "Finn flere ordlister på Internett …" +msgstr "Finn flere ordbøker på Internett …" #. gardH #: cui/uiconfig/ui/optlingupage.ui:597 @@ -15260,7 +15251,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:8 msgctxt "optnewdictionarydialog|OptNewDictionaryDialog" msgid "New Dictionary" -msgstr "Ny ordliste" +msgstr "Ny ordbok" #. oWC8W #: cui/uiconfig/ui/optnewdictionarydialog.ui:106 @@ -15302,7 +15293,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:195 msgctxt "optnewdictionarydialog|label1" msgid "Dictionary" -msgstr "Ordliste" +msgstr "Ordbok" #. Vbp6F #: cui/uiconfig/ui/optnewdictionarydialog.ui:220 @@ -15320,7 +15311,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:44 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 "" +msgstr "Marker for å se etter elektroniske oppdateringer med jevne mellomrom, og velg deretter tidsintervallet hvor ofte %PRODUCTNAME vil se etter onlineoppdateringer." #. Hbe2C #: cui/uiconfig/ui/optonlineupdatepage.ui:66 @@ -15392,7 +15383,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:242 msgctxt "extended_tip|autodownload" msgid "Enable the automatic download of updates to the specified folder." -msgstr "" +msgstr "Aktiver automatisk nedlasting av oppdateringer til den angitte mappen." #. AmVMh #: cui/uiconfig/ui/optonlineupdatepage.ui:266 @@ -15404,7 +15395,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:274 msgctxt "extended_tip|changepath" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "Klikk for å velge målmappen for nedlastede filer." #. iCVFj #: cui/uiconfig/ui/optonlineupdatepage.ui:292 @@ -15416,7 +15407,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:296 msgctxt "extended_tip|destpathlabel" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "Klikk for å velge målmappen for nedlastede filer." #. vDRC5 #: cui/uiconfig/ui/optonlineupdatepage.ui:342 @@ -15464,7 +15455,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:483 msgctxt "extended_tip|OptOnlineUpdatePage" msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME." -msgstr "" +msgstr "Spesifiserer noen alternativer for automatisk varsling og nedlasting av elektroniske oppdateringer til %PRODUCTNAME." #. QYxCN #: cui/uiconfig/ui/optopenclpage.ui:29 @@ -15548,7 +15539,7 @@ #: 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 "Denne delen inneholder standardstier til viktige mapper i %PRODUCTNAME. Disse banene kan redigeres av brukeren." +msgstr "Denne delen inneholder standardstier til viktige mapper i %PRODUCTNAME. Disse stiene kan redigeres av brukeren." #. pQEWv #: cui/uiconfig/ui/optproxypage.ui:31 @@ -15578,25 +15569,25 @@ #: cui/uiconfig/ui/optproxypage.ui:108 msgctxt "extended_tip|noproxy" msgid "Specifies the names of the servers that do not require any proxy servers, separated by semicolons." -msgstr "Inneholder navn på tjenere som ikke behøver noen mellomtjener. Bruk semikolon mellom hvert navn hvis du skriver inn navn på flere tjenere." +msgstr "Inneholder navn på servere som ikke behøver noen mellomtjener. Bruk semikolon mellom hvert navn hvis du skriver inn navn på flere servere." #. DyExz #: cui/uiconfig/ui/optproxypage.ui:129 msgctxt "extended_tip|httpport" msgid "Type the port for the corresponding proxy server." -msgstr "Angi hvilken port den tilhørende mellomtjeneren bruker." +msgstr "Angi hvilken port den tilhørende mellomserveren bruker." #. 5RqLF #: cui/uiconfig/ui/optproxypage.ui:150 msgctxt "extended_tip|httpsport" msgid "Type the port for the corresponding proxy server." -msgstr "Angi hvilken port den tilhørende mellomtjeneren bruker." +msgstr "Angi hvilken port den tilhørende mellomserveren bruker." #. sTzye #: cui/uiconfig/ui/optproxypage.ui:171 msgctxt "extended_tip|ftpport" msgid "Type the port for the corresponding proxy server." -msgstr "Angi hvilken port den tilhørende mellomtjeneren bruker." +msgstr "Angi hvilken port den tilhørende mellom serveren bruker." #. LBWG4 #: cui/uiconfig/ui/optproxypage.ui:185 @@ -15620,13 +15611,13 @@ #: cui/uiconfig/ui/optproxypage.ui:191 msgctxt "extended_tip|proxymode" msgid "Specifies the type of proxy definition." -msgstr "Angir definisjonstypen for mellomtjenere." +msgstr "Angir definisjonstypen for mellom servere." #. pkdvs #: cui/uiconfig/ui/optproxypage.ui:204 msgctxt "optproxypage|httpft" msgid "HT_TP proxy:" -msgstr "HTTP-mellomtjener:" +msgstr "HTTP-mellomserver:" #. dGMMs #: cui/uiconfig/ui/optproxypage.ui:218 @@ -15963,7 +15954,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:58 msgctxt "extended_tip|tsas" msgid "Opens the Time Stamping Authority URLs dialog." -msgstr "" +msgstr "Åpner dialogboksen URL-adresser for tidsstempling." #. vrbum #: cui/uiconfig/ui/optsecuritypage.ui:75 @@ -15975,7 +15966,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:113 msgctxt "optsecuritypage|label7" msgid "Select the Network Security Services certificate directory to use for digital signatures." -msgstr "Velg mappa med Network Security Services-sertifikater til bruk for digitale signaturer." +msgstr "Velg mappen med Network Security Services-sertifikater til bruk for digitale signaturer." #. DPGqn #: cui/uiconfig/ui/optsecuritypage.ui:126 @@ -16023,13 +16014,13 @@ #: cui/uiconfig/ui/optsecuritypage.ui:269 msgctxt "optsecuritypage|savepassword" msgid "Persistently _save passwords for web connections" -msgstr "_Bevar fortløpende passord for tilkoblinger til Internett" +msgstr "Bevar fortløpende passord for tilkoblinger til Internett" #. RHiBv #: cui/uiconfig/ui/optsecuritypage.ui:278 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 "Hvis det er satt et merke i denne boksen, vil %PRODUCTNAME bruke sikker lagring av alle passord som du bruker for å få tilgang til filer fra webtjenere. Du kan hente passordene fra lista når du har skrevet inn hovedpassordet." +msgstr "Hvis det er satt et merke i denne boksen, vil %PRODUCTNAME bruke sikker lagring av alle passord som du bruker for å få tilgang til filer fra webtjenere. Du kan hente passordene fra listen når du har skrevet inn hovedpassordet." #. Gyqwf #: cui/uiconfig/ui/optsecuritypage.ui:302 @@ -16041,7 +16032,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:320 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 "Passord beskyttes med et hovedpassord. Du vil bli spurt om å skrive det inn en gang per økt, hvis %PRODUCTNAME finner et passord fra den beskytta passordlista." +msgstr "Passord beskyttes med et hovedpassord. Du vil bli spurt om å skrive det inn en gang per økt, hvis %PRODUCTNAME finner et passord fra den beskyttede passordlisten." #. 7gzb7 #: cui/uiconfig/ui/optsecuritypage.ui:336 @@ -16051,9 +16042,9 @@ "\n" "Do you want to delete password list and reset master password?" msgstr "" -"Ved å slå av funksjonen for fortløpende lagring, vil den gjeldende lista med passord slettes og hovedpassordet nullstilles.\n" +"Ved å slå av funksjonen for fortløpende lagring, vil den gjeldende listen med passord slettes og hovedpassordet nullstilles.\n" "\n" -"Vil du slette lista med passord og nullstille hovedpassordet?" +"Vil du slette listen med passord og nullstille hovedpassordet?" #. hwg3F #: cui/uiconfig/ui/optsecuritypage.ui:376 @@ -16383,7 +16374,7 @@ #: cui/uiconfig/ui/optuserpage.ui:590 msgctxt "optuserpage|eastnameft" msgid "Last/first _name/initials:" -msgstr "Etternavn/fornavn/forbokstaver:" +msgstr "Etternavn/fornavn/initialer:" #. Emtmj #: cui/uiconfig/ui/optuserpage.ui:616 @@ -16785,7 +16776,7 @@ #: cui/uiconfig/ui/optviewpage.ui:404 msgctxt "optviewpage|label1" msgid "Icon Size" -msgstr "" +msgstr "Ikonstørrelse" #. 8CiB5 #: cui/uiconfig/ui/optviewpage.ui:443 @@ -16845,13 +16836,13 @@ #: cui/uiconfig/ui/optviewpage.ui:481 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" -msgstr "" +msgstr "Legg til flere ikontemaer via utvidelser" #. eMqmK #: cui/uiconfig/ui/optviewpage.ui:499 msgctxt "optviewpage|label1" msgid "Icon Style" -msgstr "" +msgstr "Ikonstil" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:540 @@ -16923,19 +16914,19 @@ #: cui/uiconfig/ui/optviewpage.ui:720 msgctxt "optviewpage|showfontpreview" msgid "Show p_review of fonts" -msgstr "Vis forhåndsvisning av skrifter" +msgstr "Vis forhåndsvisning av fonter" #. 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 "Viser navnene på skrifter som kan velges sammen med med den tilsvarende skrifta. Dette gjelder for eksempel skrifter i skriftboksen på formateringsverktøylinja." +msgstr "Viser navnene på fonter som kan velges sammen med med den tilsvarende fonten. Dette gjelder for eksempel fonter i fontboksen på formateringsverktøylinjen." #. 2FKuk #: cui/uiconfig/ui/optviewpage.ui:740 msgctxt "optviewpage|aafont" msgid "Screen font antialiasin_g" -msgstr "Utjevning av skrifter på skjermen" +msgstr "Utjevning av fonter på skjermen" #. 5QEjG #: cui/uiconfig/ui/optviewpage.ui:749 @@ -16953,7 +16944,7 @@ #: cui/uiconfig/ui/optviewpage.ui:788 msgctxt "extended_tip | aanf" msgid "Enter the smallest font size to apply antialiasing." -msgstr "Velg den minste skriftstørrelsen for utjevning av skrift." +msgstr "Velg den minste fontstørrelsen for utjevning av fonter." #. uZALs #: cui/uiconfig/ui/optviewpage.ui:850 @@ -17073,20 +17064,20 @@ #: cui/uiconfig/ui/pageformatpage.ui:543 msgctxt "pageformatpage|checkRegisterTrue" msgid "Use page li_ne-spacing" -msgstr "" +msgstr "Bruk sidelinjeavstand" #. DtZQG #. xdds #: cui/uiconfig/ui/pageformatpage.ui:547 msgctxt "pageformatpage|checkRegisterTrue" msgid "Enables page line-spacing (register-true) using the selected Reference Style" -msgstr "" +msgstr "Aktiverer linjeavstand på siden (register-sant) ved hjelp av den valgte referansestilen" #. p2egb #: cui/uiconfig/ui/pageformatpage.ui:553 msgctxt "extended_tip|checkRegisterTrue" msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "" +msgstr "Hvis aktivert, vil alle avsnittstiler med alternativet sidelinjeavstand aktivert bli påvirket, forutsatt at linjeavstanden til referansestilen er. Dette vil justere dem til et usynlig vertikalt sidegitter, uavhengig av fontstørrelse, slik at hver linje har samme høyde." #. 46djR #: cui/uiconfig/ui/pageformatpage.ui:567 @@ -17122,13 +17113,13 @@ #: cui/uiconfig/ui/pageformatpage.ui:604 msgctxt "pageformatpage|checkbuttonHorz" msgid "Hori_zontal" -msgstr "Vannrett" +msgstr "Horisontal" #. krxQZ #: cui/uiconfig/ui/pageformatpage.ui:619 msgctxt "pageformatpage|checkbuttonVert" msgid "_Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. FPLFK #: cui/uiconfig/ui/pageformatpage.ui:634 @@ -17332,7 +17323,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:167 msgctxt "paraindentspacing|checkCB_AUTO|tooltip_text" msgid "Indent paragraph automatically according to font size and line spacing." -msgstr "" +msgstr "Innrykk avsnittet automatisk i henhold til fontstørrelse og linjeavstand." #. L9iw7 #: cui/uiconfig/ui/paraindentspacing.ui:221 @@ -17362,7 +17353,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:336 msgctxt "paraindentspacing|checkCB_CONTEXTUALSPACING" msgid "Do not add space between paragraphs of the same style" -msgstr "" +msgstr "Ikke legg mellomrom mellom avsnitt i samme stil" #. hWQWQ #: cui/uiconfig/ui/paraindentspacing.ui:358 @@ -17422,20 +17413,20 @@ #: cui/uiconfig/ui/paraindentspacing.ui:486 msgctxt "paraindentspacing|checkCB_REGISTER" msgid "Activate page li_ne-spacing" -msgstr "" +msgstr "Aktiver linjeavstand på siden" #. uesRM #. xdds #: cui/uiconfig/ui/paraindentspacing.ui:489 msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text" msgid "Applies page line-spacing (register-true) if set for the Page Style." -msgstr "" +msgstr "Bruker sidelinjeavstand (register-sann) hvis det er angitt for sidestilen." #. MwL9j #: cui/uiconfig/ui/paraindentspacing.ui:495 msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER" msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "" +msgstr "Hvis sidelinjeavstand er aktivert og sidestilen bruker linjeavstand på siden, vil dette avsnittet justeres til et usynlig vertikalt sidegitter, uavhengig av skriftstørrelse, slik at hver linje er i samme høyde." #. GxJB6 #: cui/uiconfig/ui/paraindentspacing.ui:513 @@ -17555,13 +17546,13 @@ #: cui/uiconfig/ui/password.ui:102 msgctxt "password|extended_tip|newpassEntry" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "Skriv inn et passord. Et passord skiller mellom store og små bokstaver." #. QbKd2 #: cui/uiconfig/ui/password.ui:122 msgctxt "password|extended_tip|confirmpassEntry" msgid "Re-enter the password." -msgstr "" +msgstr "Skriv inn passordet på nytt." #. vMhFF #: cui/uiconfig/ui/password.ui:135 @@ -17603,7 +17594,7 @@ #: cui/uiconfig/ui/password.ui:330 msgctxt "password|extended_tip|expander" msgid "Click to show or hide the file sharing password options." -msgstr "" +msgstr "Klikk for å vise eller skjule alternativene for fildeling av passord." #. wqXmU #: cui/uiconfig/ui/password.ui:348 @@ -17639,13 +17630,13 @@ #: cui/uiconfig/ui/pastespecial.ui:116 msgctxt "pastespecial|extended_tip|source" msgid "Displays the source of the clipboard contents." -msgstr "" +msgstr "Viser kilden til utklippstavlenes innhold." #. 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 "" +msgstr "Velg et format for utklippstavlens innhold du vil lime inn. Det tilgjengelige formatet avhenger av det kopierte eller kutteformatet." #. gjnwU #: cui/uiconfig/ui/pastespecial.ui:194 @@ -17663,7 +17654,7 @@ #: 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 "" +msgstr "Legger til et tilpasset mønster i gjeldende liste. Spesifiser egenskapene til mønsteret ditt, og klikk deretter på denne knappen." #. 68KjX #: cui/uiconfig/ui/patterntabpage.ui:87 @@ -17675,7 +17666,7 @@ #: 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 "" +msgstr "Bruker gjeldende mønsteregenskaper på det valgte mønsteret. Hvis du vil, kan du lagre mønsteret under et annet navn." #. SnESZ #: cui/uiconfig/ui/patterntabpage.ui:119 @@ -17699,7 +17690,7 @@ #: 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 "" +msgstr "Tegn mønsteret i 8 x 8 pikselbrettet. Klikk på et mønsterpiksel for å aktivere det, klikk igjen for å deaktivere det." #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:229 @@ -17711,7 +17702,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:253 msgctxt "patterntabpage|extended_tip|LB_COLOR" msgid "Set the color of the activated pattern pixels." -msgstr "" +msgstr "Angi fargen på de aktiverte mønsterpikslene." #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:280 @@ -17723,7 +17714,7 @@ #: cui/uiconfig/ui/patterntabpage.ui:304 msgctxt "patterntabpage|extended_tip|LB_BACKGROUND_COLOR" msgid "Set the color of the deactivated pattern pixels." -msgstr "" +msgstr "Angi fargen på de deaktiverte mønsterpikslene. Angi fargen på de deaktiverte mønsterpikslene." #. hg7RL #: cui/uiconfig/ui/patterntabpage.ui:329 @@ -17747,7 +17738,7 @@ #: 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 "" +msgstr "Fyll objektet med et enkelt mønster i to farger valgt på denne siden." #. WCjNN #: cui/uiconfig/ui/percentdialog.ui:14 @@ -17789,7 +17780,7 @@ #: cui/uiconfig/ui/pickbulletpage.ui:43 msgctxt "pickbulletpage|extended_tip|valueset" msgid "Click the bullet style that you want to use." -msgstr "Velg den punktmerkinga du vil bruke." +msgstr "Velg den punktmerkingen du vil bruke." #. K4D8E #: cui/uiconfig/ui/pickbulletpage.ui:58 @@ -17807,7 +17798,7 @@ #: cui/uiconfig/ui/pickgraphicpage.ui:50 msgctxt "pickgraphicpage|extended_tip|valueset" msgid "Click the graphics that you want to use as bullets." -msgstr "" +msgstr "Klikk på grafikken du vil bruke som kuler." #. GkQdm #: cui/uiconfig/ui/pickgraphicpage.ui:67 @@ -17831,7 +17822,7 @@ #: cui/uiconfig/ui/pickgraphicpage.ui:113 msgctxt "pickgraphicpage|extended_tip|PickGraphicPage" msgid "Displays the different graphics that you can use as bullets in a bulleted list." -msgstr "" +msgstr "Viser de forskjellige grafikktypene du kan bruke som kuler i en punktliste." #. Qd4sn #: cui/uiconfig/ui/picknumberingpage.ui:43 @@ -18023,13 +18014,13 @@ #: cui/uiconfig/ui/possizetabpage.ui:97 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 "Velg hvor langt du vil flytte objektet vannrett i forhold til startpunktet i rutenettet." +msgstr "Velg hvor langt du vil flytte objektet horisontalt i forhold til startpunktet i rutenettet." #. 88ohS #: cui/uiconfig/ui/possizetabpage.ui:117 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 "Velg hvor langt du vil flytte objektet loddrett i forhold til startpunktet i rutenettet." +msgstr "Velg hvor langt du vil flytte objektet vertikalt i forhold til startpunktet i rutenettet." #. fo7DN #: cui/uiconfig/ui/possizetabpage.ui:159 @@ -18197,7 +18188,7 @@ #: cui/uiconfig/ui/posterdialog.ui:211 msgctxt "posterdialog|extended_tip|PosterDialog" msgid "Opens a dialog to determine the number of poster colors." -msgstr "" +msgstr "Åpner en dialog for å bestemme antall plakatfarger." #. YodDB #: cui/uiconfig/ui/qrcodegen.ui:14 @@ -18368,13 +18359,13 @@ #: cui/uiconfig/ui/querydeletedictionarydialog.ui:7 msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog" msgid "Delete Dictionary?" -msgstr "Slette ordboka?" +msgstr "Slette ordboken?" #. eTBd6 #: cui/uiconfig/ui/querydeletedictionarydialog.ui:14 msgctxt "querydeletedictionarydialog|QueryDeleteDictionaryDialog" msgid "Do you really want to delete the dictionary?" -msgstr "Vil du slette ordboka?" +msgstr "Vil du slette ordboken?" #. C5Jn9 #: cui/uiconfig/ui/querydeletedictionarydialog.ui:15 @@ -18404,7 +18395,7 @@ #: cui/uiconfig/ui/querydeletehatchdialog.ui:14 msgctxt "querydeletehatchdialog|AskDelHatchDialog" msgid "Do you want to delete the hatching?" -msgstr "Vil du slette skraveringa?" +msgstr "Vil du slette skraveringen?" #. Yu6Ve #: cui/uiconfig/ui/querydeletelineenddialog.ui:7 @@ -18542,7 +18533,7 @@ #: cui/uiconfig/ui/rotationtabpage.ui:110 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 "Velg loddrett avstand mellom rotasjonspunktet og toppen av siden." +msgstr "Velg vertikal avstand mellom rotasjonspunktet og toppen av siden." #. 6tTrN #: cui/uiconfig/ui/rotationtabpage.ui:150 @@ -18656,13 +18647,13 @@ #: cui/uiconfig/ui/scriptorganizer.ui:168 msgctxt "scriptorganizer|extended_tip|create" msgid "Creates a new script." -msgstr "" +msgstr "Oppretter et nytt skript." #. pUCto #: cui/uiconfig/ui/scriptorganizer.ui:187 msgctxt "scriptorganizer|extended_tip|edit" msgid "Opens the default script editor for your operating system." -msgstr "" +msgstr "Åpner standard skriptredigerer for operativsystemet ditt." #. 8iqip #: cui/uiconfig/ui/scriptorganizer.ui:199 @@ -18674,7 +18665,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:205 msgctxt "scriptorganizer|extended_tip|rename" msgid "Opens a dialog where you can change the name of the selected script." -msgstr "" +msgstr "Åpner en dialogboks der du kan endre navnet på det valgte skriptet." #. vvvff #: cui/uiconfig/ui/scriptorganizer.ui:217 @@ -18686,7 +18677,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:223 msgctxt "scriptorganizer|extended_tip|delete" msgid "Prompts you to delete the selected script." -msgstr "" +msgstr "Ber deg om å slette det valgte skriptet." #. fQdom #: cui/uiconfig/ui/scriptorganizer.ui:247 @@ -18698,7 +18689,7 @@ #: cui/uiconfig/ui/scriptorganizer.ui:272 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 "" +msgstr "Velg en makro eller et skript fra Mine makroer,% PRODUKTNAVN-makroer eller et åpent dokument. Dobbeltklikk på en oppføring for å se de tilgjengelige makroene eller skriptene." #. U3sDy #: cui/uiconfig/ui/searchattrdialog.ui:22 @@ -18710,7 +18701,7 @@ #: 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 "" +msgstr "Velg tekstattributtene du vil søke etter. Hvis du for eksempel søker etter Font-attributtet, blir alle forekomster av tekst som ikke bruker standard font, funnet. All tekst som har en direkte kodet fontattributt, og all tekst der en stil bytter fontattributtet, blir funnet." #. 2nKNE #: cui/uiconfig/ui/searchformatdialog.ui:8 @@ -18728,7 +18719,7 @@ #: cui/uiconfig/ui/searchformatdialog.ui:183 msgctxt "searchformatdialog|fonteffects" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. Wk2sQ #: cui/uiconfig/ui/searchformatdialog.ui:231 @@ -18788,7 +18779,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:119 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 "" +msgstr "Velg for å se en advarselsdialogboks når du prøver å lagre eller sende et dokument som inneholder registrerte endringer, versjoner eller kommentarer." #. 6f6yg #: cui/uiconfig/ui/securityoptionsdialog.ui:130 @@ -18800,7 +18791,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:139 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 "" +msgstr "Velg for å se en advarselsdialog når du prøver å signere et dokument som inneholder registrerte endringer, versjoner, felt, referanser til andre kilder (for eksempel koblede seksjoner eller koblede bilder) eller kommentarer." #. D6Lsv #: cui/uiconfig/ui/securityoptionsdialog.ui:150 @@ -18812,7 +18803,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:159 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 "" +msgstr "Velg for å se en advarselsdialog når du prøver å skrive ut et dokument som inneholder registrerte endringer eller kommentarer." #. 8BnPF #: cui/uiconfig/ui/securityoptionsdialog.ui:170 @@ -18824,7 +18815,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:179 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 "" +msgstr "Velg for å se en advarselsdialog når du prøver å eksportere et dokument til PDF-format som viser registrerte endringer i Writer, eller som viser kommentarer." #. pfCsh #: cui/uiconfig/ui/securityoptionsdialog.ui:251 @@ -18848,19 +18839,19 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:312 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 "" +msgstr "Velg for å alltid fjerne brukerdata fra filegenskapene. Hvis dette alternativet ikke er valgt, kan du fortsatt fjerne personlig informasjon for gjeldende dokument med Tilbakestill egenskaper-knappen på Fil - Egenskaper - Generelt." #. y5FFs #: cui/uiconfig/ui/securityoptionsdialog.ui:323 msgctxt "securityoptionsdialog|password" msgid "Recommend password protection on sa_ving" -msgstr "Anbefal passordbeskyttelse ved _lagring" +msgstr "Anbefal passordbeskyttelse ved lagring" #. kWgcV #: cui/uiconfig/ui/securityoptionsdialog.ui:333 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 "" +msgstr "Velg for å alltid aktivere alternativet Lagre med passord i fillagringsdialogen. Fjern markeringen for alternativet for å lagre filer som standard uten passord." #. i3F7P #: cui/uiconfig/ui/securityoptionsdialog.ui:344 @@ -18872,7 +18863,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:354 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 "" +msgstr "Hvis aktivert, må du holde Ctrl-tasten nede mens du klikker på en hyperkobling for å følge denne lenken. Hvis ikke aktivert, åpnes hyperkoblingen med et klikk." #. Ubb9Q #: cui/uiconfig/ui/securityoptionsdialog.ui:365 @@ -18884,7 +18875,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:375 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 "" +msgstr "Blokkerer bruken av koblede bilder av dokumenter som ikke er pålitelige steder definert i fanen Klarerte kilder i dialogboksen Makrosikkerhet." #. vQGT6 #: cui/uiconfig/ui/securityoptionsdialog.ui:441 @@ -18896,7 +18887,7 @@ #: cui/uiconfig/ui/securityoptionsdialog.ui:473 msgctxt "extended_tip|SecurityOptionsDialog" msgid "Set security related options and warnings about hidden information in documents." -msgstr "" +msgstr "Angi sikkerhetsrelaterte alternativer og advarsler om skjult informasjon i dokumenter." #. md3EB #: cui/uiconfig/ui/selectpathdialog.ui:16 @@ -18914,7 +18905,7 @@ #: cui/uiconfig/ui/selectpathdialog.ui:61 msgctxt "selectpathdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "Lukker dialogvindauet og avbryter alle endringene." +msgstr "Lukker dialogvinduet og avbryter alle endringene." #. oN39A #: cui/uiconfig/ui/selectpathdialog.ui:128 @@ -18938,7 +18929,7 @@ #: cui/uiconfig/ui/selectpathdialog.ui:202 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 "Inneholder en liste over stier som allerede er lagt til. Merk standardbanen for nye filer." +msgstr "Inneholder en liste over stier som allerede er lagt til. Merk standardstien for nye filer." #. oADTt #: cui/uiconfig/ui/selectpathdialog.ui:221 @@ -18956,25 +18947,25 @@ #: cui/uiconfig/ui/shadowtabpage.ui:55 msgctxt "shadowtabpage|extended_tip|TSB_SHOW_SHADOW" msgid "Adds a shadow to the selected drawing object." -msgstr "" +msgstr "Legger til en skygge til det valgte tegneobjektet." #. GGsRg #: cui/uiconfig/ui/shadowtabpage.ui:87 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 "" +msgstr "Angi en prosentandel fra 0% (ugjennomsiktig) til 100% (gjennomsiktig) for å spesifisere skyggenes gjennomsiktighet." #. FEWDn #: cui/uiconfig/ui/shadowtabpage.ui:120 msgctxt "shadowtabpage|extended_tip|MTR_FLD_DISTANCE" msgid "Enter the distance that you want the shadow to be offset from the selected object." -msgstr "" +msgstr "Angi avstanden du vil at skyggen skal forskyves fra det valgte objektet." #. 3PNWf #: cui/uiconfig/ui/shadowtabpage.ui:147 msgctxt "shadowtabpage|extended_tip|CTL_POSITION" msgid "Click where you want to cast the shadow." -msgstr "" +msgstr "Klikk der du vil kaste skyggen." #. BEyDS #: cui/uiconfig/ui/shadowtabpage.ui:173 @@ -19028,7 +19019,7 @@ #: cui/uiconfig/ui/shadowtabpage.ui:344 msgctxt "shadowtabpage|extended_tip|ShadowTabPage" msgid "Add a shadow to the selected drawing object, and define the properties of the shadow." -msgstr "" +msgstr "Legg til en skygge i det valgte tegneobjektet, og definer egenskapene til skyggen." #. C7Ct3 #: cui/uiconfig/ui/showcoldialog.ui:16 @@ -19058,7 +19049,7 @@ #: cui/uiconfig/ui/signatureline.ui:117 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 "" +msgstr "Skriv inn navnet ditt som undertegner dokumentet. Navnet ditt blir satt inn over den horisontale signaturlinjen." #. bMy9F #: cui/uiconfig/ui/signatureline.ui:132 @@ -19070,7 +19061,7 @@ #: cui/uiconfig/ui/signatureline.ui:136 msgctxt "signatureline|extended_tip|edit_title" msgid "Enter the title of the signer. The title is displayed in the signature line graphic box." -msgstr "" +msgstr "Skriv inn tittelen på underskriveren. Tittelen vises i grafikkboksen for signaturlinjen." #. 3SKcg #: cui/uiconfig/ui/signatureline.ui:151 @@ -19082,7 +19073,7 @@ #: cui/uiconfig/ui/signatureline.ui:155 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 "" +msgstr "Skriv inn e-postadressen til underskriveren. E-postmeldingen vises ikke i grafikkboksen for signaturlinjen, men brukes til den digitale signaturen." #. As8u6 #. Suggested Signer Name @@ -19121,7 +19112,7 @@ #: cui/uiconfig/ui/signatureline.ui:258 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 "" +msgstr "Aktiver signereren for å sette inn kommentarer i dialogboksen Signatur signaturlinje på tidspunktet for signaturen." #. BPMGM #: cui/uiconfig/ui/signatureline.ui:269 @@ -19133,7 +19124,7 @@ #: cui/uiconfig/ui/signatureline.ui:278 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 "" +msgstr "Merk av i denne avkrysningsboksen for å vise datoen for signaturen, på det tidspunktet dokumentet er signert digitalt." #. fSsbq #: cui/uiconfig/ui/signatureline.ui:292 @@ -19145,7 +19136,7 @@ #: cui/uiconfig/ui/signatureline.ui:317 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 "" +msgstr "Sett inn instruksjoner for underskriveren. Instruksjonene vises i dialogboksen Signatur signaturlinje på signeringstidspunktet." #. jqCPH #: cui/uiconfig/ui/signatureline.ui:336 @@ -19175,7 +19166,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:116 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 "" +msgstr "Skriv inn navnet ditt som undertegner dokumentet. Navnet ditt blir satt inn over den horisontale signaturlinjen." #. dgTR9 #. Name of the signer @@ -19201,7 +19192,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:161 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 "" +msgstr "Klikk på Velg Sertifikat-knappen for å åpne dialogboksen Velg Sertifikat, der sertifikatene dine er oppført. Velg sertifikatet som er egnet for signering av dokumentet." #. 3vSAS #. Name of the signer @@ -19244,7 +19235,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:310 msgctxt "signsignatureline|extended_tip|edit_comment" msgid "Enter comments about the signature. The comments are displayed in the Description field of the certificate." -msgstr "" +msgstr "Skriv inn kommentarer om signaturen. Kommentarene vises i feltet Beskrivelse av sertifikatet." #. k4PqT #: cui/uiconfig/ui/signsignatureline.ui:326 @@ -19256,7 +19247,7 @@ #: cui/uiconfig/ui/signsignatureline.ui:347 msgctxt "signsignatureline|extended_tip|label_hint_text" msgid "This area displays the instructions entered by the document creator when adding the signature line." -msgstr "" +msgstr "Dette området viser instruksjonene skrevet av dokumentskaperen når du legger til signaturlinjen." #. kVoG9 #: cui/uiconfig/ui/signsignatureline.ui:364 @@ -19304,7 +19295,7 @@ #: cui/uiconfig/ui/similaritysearchdialog.ui:176 msgctxt "similaritysearchdialog|extended_tip|otherfld" msgid "Enter the number of characters in the search term that can be exchanged." -msgstr "" +msgstr "Angi antall tegn i søkeordet som kan byttes ut." #. K5dwk #: cui/uiconfig/ui/similaritysearchdialog.ui:193 @@ -19322,7 +19313,7 @@ #: cui/uiconfig/ui/similaritysearchdialog.ui:238 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 "" +msgstr "Finn termer som ligner på Finn-teksten. Merk av i denne avmerkingsboksen, og klikk deretter på Likheter-knappen for å definere likhetsalternativene." #. VNDAt #: cui/uiconfig/ui/slantcornertabpage.ui:72 @@ -19334,7 +19325,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:93 msgctxt "slantcornertabpage|extended_tip|controlx1" msgid "Enter the X coordinate of the control point 1" -msgstr "" +msgstr "Angi X-koordinaten til kontrollpunktet 1" #. CkJx5 #: cui/uiconfig/ui/slantcornertabpage.ui:118 @@ -19346,7 +19337,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:139 msgctxt "slantcornertabpage|extended_tip|controly1" msgid "Enter the Y coordinate of the control point 1" -msgstr "" +msgstr "Skriv inn Y-koordinaten til kontrollpunktet 1" #. gpixF #: cui/uiconfig/ui/slantcornertabpage.ui:163 @@ -19400,7 +19391,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:370 msgctxt "slantcornertabpage|extended_tip|controlx2" msgid "Enter the X coordinate of the control point 2" -msgstr "" +msgstr "Skriv inn X-koordinaten til kontrollpunktet 2" #. 3EL7K #: cui/uiconfig/ui/slantcornertabpage.ui:395 @@ -19412,7 +19403,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:416 msgctxt "slantcornertabpage|extended_tip|controly2" msgid "Enter the Y coordinate of the control point 2" -msgstr "" +msgstr "Skriv inn Y-koordinaten til kontrollpunktet 2" #. FzWQs #: cui/uiconfig/ui/slantcornertabpage.ui:440 @@ -19484,7 +19475,7 @@ #: cui/uiconfig/ui/smoothdialog.ui:208 msgctxt "smoothdialog|extended_tip|SmoothDialog" msgid "Softens or blurs the image by applying a low pass filter." -msgstr "" +msgstr "Gjør bildet mykere eller uskarpt ved å bruke et lavpassfilter." #. xAH4y #: cui/uiconfig/ui/solarizedialog.ui:13 @@ -19526,7 +19517,7 @@ #: cui/uiconfig/ui/solarizedialog.ui:230 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 "" +msgstr "Åpner en dialog for å definere soloppgang. Solarisering refererer til en effekt som ser ut som hva som kan skje når det er for mye lys under fotoutviklingen. Fargene blir delvis omvendte." #. JpXVy #: cui/uiconfig/ui/specialcharacters.ui:8 @@ -19550,7 +19541,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:123 msgctxt "specialcharacters|fontft" msgid "Font:" -msgstr "Skrifttype:" +msgstr "Font:" #. 3LCFE #: cui/uiconfig/ui/specialcharacters.ui:137 @@ -19562,13 +19553,13 @@ #: cui/uiconfig/ui/specialcharacters.ui:166 msgctxt "specialcharacters|extended_tip|subsetlb" msgid "Select a Unicode category for the current font." -msgstr "Velg en Unicode-kategori for skrifta." +msgstr "Velg en Unicode-kategori for fonten." #. JPWW8 #: cui/uiconfig/ui/specialcharacters.ui:190 msgctxt "specialcharacters|extended_tip|fontlb" msgid "Select a font to display the special characters that are associated with it." -msgstr "" +msgstr "Velg en font for å vise spesialtegnene som er knyttet til den." #. LxRMr #: cui/uiconfig/ui/specialcharacters.ui:239 @@ -19610,7 +19601,7 @@ #: cui/uiconfig/ui/specialcharacters.ui:903 msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog" msgid "Allows a user to insert characters from the range of symbols found in the installed fonts." -msgstr "" +msgstr "Lar brukeren sette inn tegn fra symbolområdet i de installerte fontene." #. 2pg6B #: cui/uiconfig/ui/spellingdialog.ui:30 @@ -19634,7 +19625,7 @@ #: 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 "" +msgstr "Klikk for å angre den siste endringen i gjeldende setning. Klikk igjen for å angre forrige endring i samme setning." #. XESAQ #: cui/uiconfig/ui/spellingdialog.ui:146 @@ -19646,7 +19637,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:174 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 "Framhev setninga med det feilstavede ordet. du kan endre ordet eller setninga, eller velge et av forslagene i tekstboksen nedenfor." +msgstr "Framhev setningen med det feilstavede ordet. du kan endre ordet eller setningen, eller velge et av forslagene i tekstboksen nedenfor." #. 4E4ES #: cui/uiconfig/ui/spellingdialog.ui:191 @@ -19658,7 +19649,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:234 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 "" +msgstr "Lister foreslo ord for å erstatte det feilstavede ordet. Velg ordet du vil bruke, og klikk deretter på Rett eller Korriger alt." #. 7Lgq7 #: cui/uiconfig/ui/spellingdialog.ui:247 @@ -19670,13 +19661,13 @@ #: cui/uiconfig/ui/spellingdialog.ui:256 msgctxt "spellingdialog|extended_tip|checkgrammar" msgid "Enable Check grammar to work first on all spelling errors, then on all grammar errors." -msgstr "" +msgstr "Aktiver Kontroller grammatikk for å arbeide først med alle stavefeil, deretter for alle grammatikkfeil." #. gPGys #: cui/uiconfig/ui/spellingdialog.ui:277 msgctxt "spellingdialog|notindictft" msgid "_Not in dictionary" -msgstr "Finnes ikke i ordlista" +msgstr "Finnes ikke i ordlisten" #. R7k8J #: cui/uiconfig/ui/spellingdialog.ui:297 @@ -19730,7 +19721,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:456 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 "Bytt ut det ukjente ordet med forslaget. Hvis du har endret mer enn bare det feilstavede ordet, blir hele setninga byttet ut." +msgstr "Bytt ut det ukjente ordet med forslaget. Hvis du har endret mer enn bare det feilstavede ordet, blir hele setningen byttet ut." #. dZvFo #: cui/uiconfig/ui/spellingdialog.ui:467 @@ -19754,7 +19745,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:496 msgctxt "spellingdialog|extended_tip|autocorrect" msgid "Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table." -msgstr "Legg til kombinasjonen av det rette ordet og det ordet som var feil i lista over autorettinger." +msgstr "Legg til kombinasjonen av det rette ordet og det ordet som var feil i listen over autorettinger." #. DoqLo #: cui/uiconfig/ui/spellingdialog.ui:520 @@ -19778,7 +19769,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:549 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 "" +msgstr "Hopper over alle forekomster av det ukjente ordet til slutten av den gjeldende %PRODUCTNAME-økten og fortsetter med stavekontrollen." #. ZZNQM #: cui/uiconfig/ui/spellingdialog.ui:560 @@ -19808,7 +19799,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:609 msgctxt "spellingdialog|extended_tip|addmb" msgid "Adds the unknown word to a user-defined dictionary." -msgstr "Legg det ukjente ordet til i den selvvalgte ordlista." +msgstr "Legg det ukjente ordet til i den selvvalgte ordlisten." #. GSZVa #: cui/uiconfig/ui/spellingdialog.ui:650 @@ -19844,13 +19835,13 @@ #: cui/uiconfig/ui/splitcellsdialog.ui:184 msgctxt "splitcellsdialog|hori" msgid "H_orizontally" -msgstr "Vannrett" +msgstr "Horisontalt" #. MADh2 #: cui/uiconfig/ui/splitcellsdialog.ui:203 msgctxt "splitcellsdialog|vert" msgid "_Vertically" -msgstr "Loddrett" +msgstr "Vertikal" #. Qev7K #: cui/uiconfig/ui/splitcellsdialog.ui:226 @@ -19868,7 +19859,7 @@ #: cui/uiconfig/ui/splitcellsdialog.ui:281 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 "" +msgstr "Deler cellen eller gruppen av celler horisontalt eller vertikalt i antall celler du skriver inn." #. hbDka #: cui/uiconfig/ui/storedwebconnectiondialog.ui:18 @@ -19994,7 +19985,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:315 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 "Forankrer utvalget som tegn. Høyden til den gjeldende linja endres slik at den passer til høyden på utvalget." +msgstr "Forankrer utvalget som tegn. Høyden til den gjeldende linjen endres slik at den passer til høyden på utvalget." #. e4F9d #: cui/uiconfig/ui/swpossizepage.ui:326 @@ -20012,7 +20003,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:389 msgctxt "swpossizepage|horiposft" msgid "Hori_zontal:" -msgstr "Vannrett:" +msgstr "Horisontalt:" #. nCjCJ #: cui/uiconfig/ui/swpossizepage.ui:403 @@ -20036,37 +20027,37 @@ #: cui/uiconfig/ui/swpossizepage.ui:451 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 "Velg hvor stor avstand du vil ha mellom den venstre kanten av det valgte objektet og referansepunktet du velger i lista til høyre for til." +msgstr "Velg hvor stor avstand du vil ha mellom den venstre kanten av det valgte objektet og referansepunktet du velger i listen til høyre for i Til Boksen." #. 93Nyg #: cui/uiconfig/ui/swpossizepage.ui:466 msgctxt "swpossizepage|extended_tip|horianchor" msgid "Select the reference point for the selected horizontal alignment option." -msgstr "Velg referansepunkt for for det valgte vannrette justeringsalternativet." +msgstr "Velg referansepunkt for for det valgte horisontale justeringsalternativet." #. drz3i #: cui/uiconfig/ui/swpossizepage.ui:481 msgctxt "swpossizepage|extended_tip|horipos" msgid "Select the horizontal alignment option for the object." -msgstr "Velg den vannrette plasseringen av objektet." +msgstr "Velg den horisontale plasseringen av objektet." #. NKeEB #: cui/uiconfig/ui/swpossizepage.ui:494 msgctxt "swpossizepage|vertposft" msgid "_Vertical:" -msgstr "Loddrett:" +msgstr "Vertikal:" #. DRm4w #: cui/uiconfig/ui/swpossizepage.ui:510 msgctxt "swpossizepage|extended_tip|vertpos" msgid "Select the vertical alignment option for the object." -msgstr "Velg loddrett justering for objektet." +msgstr "Velg vertikal justering for objektet." #. ys5CR #: cui/uiconfig/ui/swpossizepage.ui:529 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 "Velg hvor stor avstand du vil ha mellom den øverste kanten av det valgte objektet og referansepunktet du velger i lista til høyre for til." +msgstr "Velg hvor stor avstand du vil ha mellom den øverste kanten av det valgte objektet og referansepunktet du velger i listen til høyre for til." #. 5jQc3 #: cui/uiconfig/ui/swpossizepage.ui:542 @@ -20078,7 +20069,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:558 msgctxt "swpossizepage|extended_tip|vertanchor" msgid "Select the reference point for the selected vertical alignment option." -msgstr "Velg referansepunktet for den valgte loddrette justeringen." +msgstr "Velg referansepunktet for den valgte vertikale justeringen." #. ZFE5p #: cui/uiconfig/ui/swpossizepage.ui:569 @@ -20090,13 +20081,13 @@ #: cui/uiconfig/ui/swpossizepage.ui:579 msgctxt "swpossizepage|extended_tip|mirror" msgid "Reverses the current horizontal alignment settings on even pages." -msgstr "Speilvender de gjeldende innstillingene for vannrett justering på partallssider." +msgstr "Speilvender de gjeldende innstillingene for horisontal justering på partallssider." #. NRKCh #: cui/uiconfig/ui/swpossizepage.ui:591 msgctxt "swpossizepage|followtextflow" msgid "Keep inside te_xt boundaries" -msgstr "" +msgstr "Hold deg innenfor tekstgrensene" #. zfpt5 #: cui/uiconfig/ui/swpossizepage.ui:601 @@ -20324,7 +20315,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:445 msgctxt "textanimtabpage|extended_tip|MTR_FLD_AMOUNT" msgid "Enter the number of increments by which to scroll the text." -msgstr "Angi hvor mange hakk av gangen teksten skal rulles." +msgstr "Angi hvor mange steg av gangen teksten skal rulles." #. n9msn #: cui/uiconfig/ui/textanimtabpage.ui:465 @@ -20396,7 +20387,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:114 msgctxt "textattrtabpage|extended_tip|TSB_FIT_TO_SIZE" msgid "Resizes the text to fit the entire area of the drawing or text object." -msgstr "" +msgstr "Endrer størrelsen på teksten slik at den passer til hele området på tegningen eller tekstobjektet." #. HNhqB #: cui/uiconfig/ui/textattrtabpage.ui:125 @@ -20408,7 +20399,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:135 msgctxt "textattrtabpage|extended_tip|TSB_CONTOUR" msgid "Adapts the text flow so that it matches the contours of the selected drawing object." -msgstr "" +msgstr "Tilpasser tekstflyten slik at den samsvarer med konturene til det valgte tegneobjektet." #. ZxFbp #: cui/uiconfig/ui/textattrtabpage.ui:152 @@ -20438,7 +20429,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:217 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 "Endre en selvvalgt form så den passer til teksten du skriver inn etter at du har ha dobbeltklikket på formen." +msgstr "Endre en selvvalgt form så den passer til teksten du skriver inn etter at du har dobbeltklikket på formen." #. CWdDn #: cui/uiconfig/ui/textattrtabpage.ui:234 @@ -20474,25 +20465,25 @@ #: cui/uiconfig/ui/textattrtabpage.ui:344 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 "Velg hvor stor avstand du vil ha mellom venstre kant av tegninga eller tekstobjektet, og venstre marg." +msgstr "Velg hvor stor avstand du vil ha mellom venstre kant av tegningen eller tekstobjektet, og venstre marg." #. Gscsa #: cui/uiconfig/ui/textattrtabpage.ui:363 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 "Velg hvor stor avstand du vil ha mellom høyre kant av tegninga eller tekstobjektet, og høyre marg." +msgstr "Velg hvor stor avstand du vil ha mellom høyre kant av tegningen eller tekstobjektet, og høyre marg." #. 7CCsd #: cui/uiconfig/ui/textattrtabpage.ui:382 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 "Velg hvor stor avstand du vil ha mellom øvre kant av tegninga eller tekstobjektet, og toppmargen." +msgstr "Velg hvor stor avstand du vil ha mellom øvre kant av tegningen eller tekstobjektet, og toppmargen." #. T3o9E #: cui/uiconfig/ui/textattrtabpage.ui:401 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 "Velg hvor stor avstand du vil ha mellom nedre kant av tegninga eller tekstobjektet, og bunnmargen." +msgstr "Velg hvor stor avstand du vil ha mellom nedre kant av tegningen eller tekstobjektet, og bunnmargen." #. aYFEA #: cui/uiconfig/ui/textattrtabpage.ui:418 @@ -20516,7 +20507,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:496 msgctxt "textattrtabpage|extended_tip|TSB_FULL_WIDTH" msgid "Anchors the text to the full width of the drawing object or text object." -msgstr "" +msgstr "Forankrer teksten til full bredde på tegneobjektet eller tekstobjektet." #. BP2Vk #: cui/uiconfig/ui/textattrtabpage.ui:514 @@ -20528,7 +20519,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:536 msgctxt "textattrtabpage|extended_tip|TextAttributesPage" msgid "Sets the layout and anchoring properties for text in the selected drawing or text object." -msgstr "Velg utseende og forankringsegenskapene for tekst i den valgte tegninga eller tekstobjektet." +msgstr "Velg utseende og forankringsegenskapene for tekst i den valgte tegningen eller tekstobjektet." #. 3Huae #: cui/uiconfig/ui/textdialog.ui:8 @@ -20570,13 +20561,13 @@ #: cui/uiconfig/ui/textflowpage.ui:125 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 "Velg det minste antallet tegn som skal stå først på linja etter bindestreker som settes inn." +msgstr "Velg det minste antallet tegn som skal stå først på linjen etter bindestreker som settes inn." #. FFGUz #: cui/uiconfig/ui/textflowpage.ui:146 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 "Velg det minste antallet tegn som skal stå igjen sist på linja foran bindestreker som settes inn." +msgstr "Velg det minste antallet tegn som skal stå igjen sist på linjen foran bindestreker som settes inn." #. c6KN2 #: cui/uiconfig/ui/textflowpage.ui:160 @@ -20828,31 +20819,31 @@ #: cui/uiconfig/ui/thesaurus.ui:152 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 "" +msgstr "Ordet eller ordene i tekstboksen \"Erstatt med\" erstatter det originale ordet i dokumentet når du klikker på Erstatt-knappen. Du kan også skrive tekst direkte i denne boksen." #. xW3j2 #: cui/uiconfig/ui/thesaurus.ui:172 msgctxt "thesaurus|extended_tip|left" msgid "Recalls the previous contents of the \"Current word\" text box." -msgstr "" +msgstr "Minner om det forrige innholdet i tekstboksen \"Gjeldende ord\"." #. MysZM #: cui/uiconfig/ui/thesaurus.ui:188 msgctxt "thesaurus|extended_tip|langcb" msgid "Select a language for the thesaurus." -msgstr "" +msgstr "Velg et språk for synonymordboken." #. 2GzjN #: cui/uiconfig/ui/thesaurus.ui:214 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 "" +msgstr "Viser det gjeldende ordet eller det relaterte begrepet du valgte ved å dobbeltklikke på en linje i Alternativer-listen. Du kan også skrive inn tekst direkte i denne boksen for å slå opp teksten." #. FGgNh #: cui/uiconfig/ui/thesaurus.ui:266 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 "" +msgstr "Klikk på en oppføring i Alternativer-listen for å kopiere den relaterte termen til \"Erstatt med\" tekstboksen. Dobbeltklikk på en oppføring for å kopiere den relaterte termen til tekstboksen \"Nåværende ord\" og for å slå opp den termen." #. qZ6KM #: cui/uiconfig/ui/thesaurus.ui:284 @@ -20864,7 +20855,7 @@ #: cui/uiconfig/ui/thesaurus.ui:323 msgctxt "thesaurus|extended_tip|ThesaurusDialog" msgid "Opens a dialog box to replace the current word with a synonym, or a related term." -msgstr "" +msgstr "Åpner en dialogboks for å erstatte det nåværende ordet med et synonym eller et beslektet begrep." #. BeTCk #: cui/uiconfig/ui/tipofthedaydialog.ui:8 @@ -20906,85 +20897,85 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:13 msgctxt "ToolbarmodeDialog|Name" msgid "Select Your Preferred User Interface" -msgstr "" +msgstr "Velg ditt foretrukne brukergrensesnitt" #. rSnx7 #: cui/uiconfig/ui/toolbarmodedialog.ui:30 msgctxt "ToolbarmodeDialog|applyall" msgid "A_pply to All" -msgstr "" +msgstr "Bruk på Alle" #. kPZub #: cui/uiconfig/ui/toolbarmodedialog.ui:46 msgctxt "ToolbarmodeDialog|applymodule" msgid "A_pply to %MODULE" -msgstr "" +msgstr "Bruk på %MODULE" #. odHug #: cui/uiconfig/ui/toolbarmodedialog.ui:111 msgctxt "ToolbarmodeDialog|radiobutton1" msgid "Standard Toolbar" -msgstr "" +msgstr "Standard verktøylinje" #. WRYEa #: cui/uiconfig/ui/toolbarmodedialog.ui:128 msgctxt "ToolbarmodeDialog|radiobutton4" msgid "Tabbed" -msgstr "" +msgstr "Faner" #. YvSd9 #: cui/uiconfig/ui/toolbarmodedialog.ui:146 msgctxt "ToolbarmodeDialog|radiobutton5" msgid "Tabbed Compact" -msgstr "" +msgstr "Tabbed Kompakt" #. yT3UT #: cui/uiconfig/ui/toolbarmodedialog.ui:164 msgctxt "ToolbarmodeDialog|radiobutton7" msgid "Groupedbar" -msgstr "" +msgstr "Gruppert Rad" #. jAJbo #: cui/uiconfig/ui/toolbarmodedialog.ui:182 msgctxt "ToolbarmodeDialog|radiobutton6" msgid "Groupedbar Compact" -msgstr "" +msgstr "Gruppert Kompakt" #. iSVgL #: cui/uiconfig/ui/toolbarmodedialog.ui:200 msgctxt "ToolbarmodeDialog|radiobutton8" msgid "Contextual Single" -msgstr "" +msgstr "Kontekstuell singel" #. TrcWq #: cui/uiconfig/ui/toolbarmodedialog.ui:218 msgctxt "ToolbarmodeDialog|radiobutton9" msgid "Contextual Groups" -msgstr "" +msgstr "Kontekstuelle grupper" #. wTDDF #: cui/uiconfig/ui/toolbarmodedialog.ui:236 msgctxt "ToolbarmodeDialog|radiobutton2" msgid "Single Toolbar" -msgstr "" +msgstr "Enkel Verktøyrad" #. AMgFL #: cui/uiconfig/ui/toolbarmodedialog.ui:254 msgctxt "ToolbarmodeDialog|radiobutton3" msgid "Sidebar" -msgstr "" +msgstr "Siderad" #. kGdXR #: cui/uiconfig/ui/toolbarmodedialog.ui:278 msgctxt "ToolbarmodeDialog|leftframe" msgid "UI variants" -msgstr "" +msgstr "UI-varianter" #. H7m7J #: cui/uiconfig/ui/toolbarmodedialog.ui:368 msgctxt "ToolbarmodeDialog|rightframe" msgid "Preview" -msgstr "" +msgstr "Forhåndsvisning" #. WChLB #: cui/uiconfig/ui/transparencytabpage.ui:78 @@ -21056,13 +21047,13 @@ #: cui/uiconfig/ui/transparencytabpage.ui:264 msgctxt "transparencytabpage|extended_tip|MTR_TRGR_CENTER_Y" msgid "Enter the vertical offset for the gradient." -msgstr "Velg hvor langt du vil forskyve fargeovergangen loddrett." +msgstr "Velg hvor langt du vil forskyve fargeovergangen vertikalt." #. nascp #: cui/uiconfig/ui/transparencytabpage.ui:282 msgctxt "transparencytabpage|extended_tip|MTR_TRGR_CENTER_X" msgid "Enter the horizontal offset for the gradient." -msgstr "Velg hvor langt du vil forskyve fargeovergangen vannrett." +msgstr "Velg hvor langt du vil forskyve fargeovergangen horisontalt." #. YgMd8 #: cui/uiconfig/ui/transparencytabpage.ui:296 @@ -21302,7 +21293,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:226 msgctxt "wordcompletionpage|extended_tip|maxentries" msgid "Enter the maximum number of words that you want to store in the Word Completion list." -msgstr "Angi hvor mange ord som skal kunne lagres i lista for fullføring av ord." +msgstr "Angi hvor mange ord som skal kunne lagres i listen for fullføring av ord." #. SzABn #: cui/uiconfig/ui/wordcompletionpage.ui:239 @@ -21314,7 +21305,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:255 msgctxt "wordcompletionpage|extended_tip|acceptwith" msgid "Select the key that you want to use to accept the automatic word completion." -msgstr "Velg hvilken tast du vil bruke for å godta den automatiske ordfullføringa." +msgstr "Velg hvilken tast du vil bruke for å godta den automatiske ordfullføringen." #. iedK3 #: cui/uiconfig/ui/wordcompletionpage.ui:291 @@ -21326,19 +21317,19 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:337 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 "" +msgstr "Lister opp de innsamlede ordene. Listen er gyldig til du lukker det gjeldende dokumentet. For å gjøre listen tilgjengelig for andre dokumenter i den gjeldende økten, deaktiver \"Når du lukker et dokument, fjern ordene som er samlet fra listen\"." #. Akygd #: cui/uiconfig/ui/wordcompletionpage.ui:350 msgctxt "wordcompletionpage|whenclosing" msgid "_When closing a document, remove the words collected from it from the list" -msgstr "Fjern de samlede ordene fra lista ved lukking av dokumentet." +msgstr "Fjern de samlede ordene fra listen ved lukking av dokumentet." #. RFvtW #: cui/uiconfig/ui/wordcompletionpage.ui:360 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 "" +msgstr "Når den er aktivert, blir listen tømt når du lukker det gjeldende dokumentet. Når den er deaktivert, gjør du gjeldende Word-ferdigstillelsesliste tilgjengelig for andre dokumenter etter at du har lukket det nåværende dokumentet. Listen forblir tilgjengelig til du avslutter %PRODUCTNAME." #. f7oAK #: cui/uiconfig/ui/wordcompletionpage.ui:375 @@ -21350,7 +21341,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:384 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 "Legg de ofte brukte ordene i en liste for gjenbruk. For å fjerne et ord fra lista, velg det først ordet og deretter Slett forslag." +msgstr "Legg de ofte brukte ordene i en liste for gjenbruk. For å fjerne et ord fra listen, velg det først ordet og deretter Slett forslag." #. yzZjo #: cui/uiconfig/ui/wordcompletionpage.ui:396 @@ -21362,7 +21353,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:405 msgctxt "wordcompletionpage|extended_tip|delete" msgid "Removes the selected word or words from the Word Completion list." -msgstr "Fjern de valgte ordene fra lista for fullføring av ord." +msgstr "Fjern de valgte ordene fra listen for fullføring av ord." #. zqnKv #: cui/uiconfig/ui/wordcompletionpage.ui:436 @@ -21386,7 +21377,7 @@ #: 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 "" +msgstr "Endrer størrelsen på skjermen slik at den passer til bredden på teksten i dokumentet i det øyeblikket kommandoen startes." #. RfuDU #: cui/uiconfig/ui/zoomdialog.ui:134 @@ -21398,7 +21389,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:144 msgctxt "zoomdialog|extended_tip|fitwandh" msgid "Displays the entire page on your screen." -msgstr "" +msgstr "Viser hele siden på skjermen." #. P9XGA #: cui/uiconfig/ui/zoomdialog.ui:156 @@ -21410,7 +21401,7 @@ #: 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 "" +msgstr "Viser hele bredden på dokumentsiden. Sidens øvre og nedre kant er kanskje ikke synlig." #. qeWB6 #: cui/uiconfig/ui/zoomdialog.ui:178 @@ -21422,7 +21413,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:188 msgctxt "zoomdialog|extended_tip|100pc" msgid "Displays the document at its actual size." -msgstr "" +msgstr "Viser dokumentet i sin faktiske størrelse." #. DE7hS #: cui/uiconfig/ui/zoomdialog.ui:205 @@ -21434,7 +21425,7 @@ #: 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 "" +msgstr "Angi zoomfaktoren der du vil vise dokumentet. Skriv inn en prosentandel i boksen." #. QGHoo #: cui/uiconfig/ui/zoomdialog.ui:240 @@ -21446,7 +21437,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:241 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 "" +msgstr "Angi zoomfaktoren der du vil vise dokumentet. Skriv inn en prosentandel i boksen." #. 8iPB6 #: cui/uiconfig/ui/zoomdialog.ui:266 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/nb/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-09-05 07:35+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563559934.000000\n" #. BiN6g @@ -228,7 +228,7 @@ #: dbaccess/inc/strings.hrc:55 msgctxt "RID_STR_FILE_DOES_NOT_EXIST" msgid "The file \"$file$\" does not exist." -msgstr "Fila «$file$» finnes ikke." +msgstr "Filen «$file$» finnes ikke." #. XMAYD #: dbaccess/inc/strings.hrc:56 @@ -356,7 +356,7 @@ #: dbaccess/inc/strings.hrc:74 msgctxt "RID_STR_ROW_ALREADY_DELETED" msgid "Current row is already deleted." -msgstr "Gjeldene rad er allerede sletta." +msgstr "Gjeldene rad er allerede slettet." #. DkbQp #: dbaccess/inc/strings.hrc:75 @@ -416,7 +416,7 @@ #: dbaccess/inc/strings.hrc:84 msgctxt "RID_STR_NO_BOOKMARK_DELETED" msgid "The current row is deleted, and thus doesn't have a bookmark." -msgstr "Den gjeldende raden er nå sletta, og har derfor ikke noe bokmerke." +msgstr "Den gjeldende raden er nå slettet, og har derfor ikke noe bokmerke." #. 935sJ #: dbaccess/inc/strings.hrc:85 @@ -452,7 +452,7 @@ #: dbaccess/inc/strings.hrc:91 msgctxt "STR_CONN_WITHOUT_QUERIES_OR_TABLES" msgid "The given connection is no valid query and/or tables supplier." -msgstr "Tilkoblinga er ikke en gyldig spørring og/eller tabelleverandør." +msgstr "Tilkoblingen er ikke en gyldig spørring og/eller tabelleverandør." #. 7J5ZA #: dbaccess/inc/strings.hrc:92 @@ -638,7 +638,7 @@ #: dbaccess/inc/strings.hrc:123 msgctxt "STR_QRY_ILLEGAL_JOIN" msgid "Join could not be processed" -msgstr "Sammenslåinga kunne ikke utføres" +msgstr "Sammenslåingen kunne ikke utføres" #. 3EkzD #: dbaccess/inc/strings.hrc:124 @@ -723,7 +723,7 @@ #: dbaccess/inc/strings.hrc:139 msgctxt "STR_STATEMENT_WITHOUT_RESULT_SET" msgid "The query does not create a result set, and thus cannot be part of another query." -msgstr "Spørringa gir intet resultatsett, og kan derfor ikke være en del av en annen spørring." +msgstr "Spørringen gir intet resultatsett, og kan derfor ikke være en del av en annen spørring." #. HErUD #: dbaccess/inc/strings.hrc:141 @@ -801,7 +801,7 @@ #: dbaccess/inc/strings.hrc:153 msgctxt "STR_ERROR_OCCURRED_WHILE_COPYING" msgid "An error occurred. Do you want to continue copying?" -msgstr "Det oppstod en feil. Vil du fortsette kopieringa?" +msgstr "Det oppstod en feil. Vil du fortsette kopieringen?" #. xnbDP #: dbaccess/inc/strings.hrc:154 @@ -813,7 +813,7 @@ #: dbaccess/inc/strings.hrc:155 msgctxt "STR_DATASOURCE_GRIDCONTROL_DESC" msgid "Shows the selected table or query." -msgstr "Viser den valgte tabellen eller spørringa." +msgstr "Viser den valgte tabellen eller spørringen." #. a8LWj #: dbaccess/inc/strings.hrc:157 @@ -1065,13 +1065,13 @@ #: dbaccess/inc/strings.hrc:202 msgctxt "STR_TBL_LABEL" msgid "~Table Name" -msgstr "~Tabellnavn" +msgstr "Tabellnavn" #. WPmUe #: dbaccess/inc/strings.hrc:203 msgctxt "STR_QRY_LABEL" msgid "~Query name" -msgstr "~Spørringsnavn" +msgstr "Spørringsnavn" #. cGPht #: dbaccess/inc/strings.hrc:204 @@ -1107,7 +1107,7 @@ #: dbaccess/inc/strings.hrc:210 msgctxt "RID_STR_CONNECTION_LOST" msgid "Connection lost" -msgstr "Tilkoblinga ble brutt" +msgstr "Tilkoblingen ble brutt" #. 5ELXe #: dbaccess/inc/strings.hrc:211 @@ -1161,7 +1161,7 @@ #: dbaccess/inc/strings.hrc:219 msgctxt "STR_LOADING_QUERY" msgid "Loading query $name$ ..." -msgstr "Henter spørringa «$name$» …" +msgstr "Henter spørringen «$name$» …" #. QfTUB #: dbaccess/inc/strings.hrc:220 @@ -1276,7 +1276,7 @@ #: dbaccess/inc/strings.hrc:240 msgctxt "STR_DEFAULT_VALUE" msgid "~Default value" -msgstr "~Standardverdi" +msgstr "Standardverdi" #. 3AyBV #: dbaccess/inc/strings.hrc:241 @@ -1508,7 +1508,7 @@ "\n" "does not exist. Should it be created?" msgstr "" -"Mappa\n" +"Mappen\n" "\n" "$path$\n" "\n" @@ -1518,13 +1518,13 @@ #: dbaccess/inc/strings.hrc:272 msgctxt "STR_COULD_NOT_CREATE_DIRECTORY" msgid "The directory $name$ could not be created." -msgstr "Klarte ikke å lage mappa $name$." +msgstr "Klarte ikke å lage mappen $name$." #. V9kGF #: dbaccess/inc/strings.hrc:273 msgctxt "STR_ALREADYEXISTOVERWRITE" msgid "The file already exists. Overwrite?" -msgstr "Fila finnes allerede. Vil du overskrive den?" +msgstr "Filen finnes allerede. Vil du overskrive den?" #. i47ye #: dbaccess/inc/strings.hrc:274 @@ -1679,7 +1679,7 @@ #: dbaccess/inc/strings.hrc:302 msgctxt "STR_BUTTON_TEXT_ALL" msgid "~All" -msgstr "~Alle" +msgstr "Alle" #. C8eBG #: dbaccess/inc/strings.hrc:303 @@ -1703,7 +1703,7 @@ #: dbaccess/inc/strings.hrc:306 msgctxt "STR_FILE_DOES_NOT_EXIST" msgid "The file \"$file$\" does not exist." -msgstr "Fila «$file$» finnes ikke." +msgstr "Filen «$file$» finnes ikke." #. 737k3 #: dbaccess/inc/strings.hrc:307 @@ -1876,19 +1876,19 @@ #: dbaccess/inc/strings.hrc:338 msgctxt "STR_HOSTNAME" msgid "~Host name" -msgstr "~Vertsnavn" +msgstr "Vertsnavn" #. Gdbjz #: dbaccess/inc/strings.hrc:339 msgctxt "STR_MOZILLA_PROFILE_NAME" msgid "~Mozilla profile name" -msgstr "~Mozilla-profilnavn" +msgstr "Mozilla-profilnavn" #. A6YJb #: dbaccess/inc/strings.hrc:340 msgctxt "STR_THUNDERBIRD_PROFILE_NAME" msgid "~Thunderbird profile name" -msgstr "~Thunderbird-profilnavn" +msgstr "Thunderbird-profilnavn" #. HnmRA #: dbaccess/inc/strings.hrc:341 @@ -1946,7 +1946,7 @@ #: dbaccess/inc/strings.hrc:350 msgctxt "STR_WIZ_PB_OK" msgid "C~reate" -msgstr "O~pprett" +msgstr "Opprett" #. 3XyRu #: dbaccess/inc/strings.hrc:351 @@ -2060,7 +2060,7 @@ #: dbaccess/inc/strings.hrc:370 msgctxt "STR_PAGETITLE_MYSQL_NATIVE" msgid "Set up MySQL server data" -msgstr "Sett opp tjenerdata for MySQL" +msgstr "Sett opp serverdata for MySQL" #. 6Fy7C #: dbaccess/inc/strings.hrc:371 @@ -2087,7 +2087,7 @@ "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" "Please contact your system administrator if you are unsure about the following settings." msgstr "" -"Oppgi informasjonen som trengs for å kobla til en MySQL-database med JDBC. Legg merke til at en JDBC-driverklasse må være installert på systemet og registrert med %PRODUCTNAME.\n" +"Oppgi informasjonen som trengs for å koble til en MySQL-database med JDBC. Legg merke til at en JDBC-driverklasse må være installert på systemet og registrert med %PRODUCTNAME.\n" "Kontakt systemadministratoren dersom du er usikker på de følgende innstillingene." #. uGTyY @@ -2112,7 +2112,7 @@ #: dbaccess/inc/strings.hrc:378 msgctxt "STR_DBASE_HELPTEXT" msgid "Select the folder where the dBASE files are stored." -msgstr "Velg mappa der dBASE-filene er lagret." +msgstr "Velg mappe der dBASE-filene er lagret." #. Ke4xP #: dbaccess/inc/strings.hrc:379 @@ -2124,7 +2124,7 @@ #: 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 "Velg mappa der CSV-tekstfilene (kommadelte verdier) er lagret. %PRODUCTNAME Base vil åpne disse filene som skrivebeskyttede." +msgstr "Velg mappe der CSV-tekstfilene (kommadelte verdier) er lagret. %PRODUCTNAME Base vil åpne disse filene som skrivebeskyttede." #. chkNh #: dbaccess/inc/strings.hrc:381 @@ -2244,7 +2244,7 @@ #: dbaccess/inc/strings.hrc:396 msgctxt "STR_SPREADSHEETPATH" msgid "~Location and file name" -msgstr "~Plassering og filnavn" +msgstr "Plassering og filnavn" #. og5kg #: dbaccess/inc/strings.hrc:398 @@ -2472,7 +2472,7 @@ #: dbaccess/inc/strings.hrc:441 msgctxt "STR_CTW_ERROR_INVALID_INTERACTIONHANDLER" msgid "The given interaction handler is invalid." -msgstr "Den angitte håndteringa for interaksjon er ugyldig." +msgstr "Den angitte håndteringen for interaksjon er ugyldig." #. ixrDD #: dbaccess/inc/strings.hrc:443 @@ -2644,25 +2644,25 @@ #: dbaccess/uiconfig/ui/authentificationpage.ui:60 msgctxt "authentificationpage|generalUserNameLabel" msgid "_User name" -msgstr "_Brukernavn" +msgstr "Brukernavn" #. ZE2AC #: dbaccess/uiconfig/ui/authentificationpage.ui:84 msgctxt "authentificationpage|passRequiredCheckbutton" msgid "Password re_quired" -msgstr "Krev _passord" +msgstr "Krev passord" #. zASUB #: dbaccess/uiconfig/ui/authentificationpage.ui:109 msgctxt "authentificationpage|testConnectionButton" msgid "_Test Connection" -msgstr "_Test tilkoblingen" +msgstr "Test tilkoblingen" #. AKLpS #: dbaccess/uiconfig/ui/autocharsetpage.ui:37 msgctxt "autocharsetpage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett" +msgstr "Tegnsett" #. tgPJD #: dbaccess/uiconfig/ui/autocharsetpage.ui:67 @@ -2680,7 +2680,7 @@ #: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:81 msgctxt "choosedatasourcedialog|organize" msgid "Or_ganize..." -msgstr "_Organiser …" +msgstr "Organiser …" #. auhD3 #: dbaccess/uiconfig/ui/choosedatasourcedialog.ui:114 @@ -2698,7 +2698,7 @@ #: dbaccess/uiconfig/ui/collectionviewdialog.ui:49 msgctxt "collectionviewdialog|ok" msgid "_Save" -msgstr "_Lagre" +msgstr "Lagre" #. mvCb2 #: dbaccess/uiconfig/ui/collectionviewdialog.ui:138 @@ -2722,7 +2722,7 @@ #: dbaccess/uiconfig/ui/collectionviewdialog.ui:221 msgctxt "collectionviewdialog|fileNameLabel" msgid "File _name:" -msgstr "Fil_navn:" +msgstr "Filnavn:" #. ZnGGB #: dbaccess/uiconfig/ui/colwidthdialog.ui:15 @@ -2734,7 +2734,7 @@ #: dbaccess/uiconfig/ui/colwidthdialog.ui:97 msgctxt "colwidthdialog|label1" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. j9AMh #: dbaccess/uiconfig/ui/colwidthdialog.ui:118 @@ -2746,7 +2746,7 @@ #: dbaccess/uiconfig/ui/colwidthdialog.ui:129 msgctxt "colwidthdialog|automatic" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. HWoLr #: dbaccess/uiconfig/ui/colwidthdialog.ui:138 @@ -2770,13 +2770,13 @@ #: dbaccess/uiconfig/ui/connectionpage.ui:52 msgctxt "connectionpage|create" msgid "_Create New" -msgstr "_Lag ny" +msgstr "Lag ny" #. zvUpu #: dbaccess/uiconfig/ui/connectionpage.ui:65 msgctxt "connectionpage|browse" msgid "_Browse…" -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. PxXFZ #: dbaccess/uiconfig/ui/connectionpage.ui:117 @@ -2788,7 +2788,7 @@ #: dbaccess/uiconfig/ui/connectionpage.ui:159 msgctxt "connectionpage|userNameLabel" msgid "_User name:" -msgstr "_Brukernavn:" +msgstr "Brukernavn:" #. VM8W3 #: dbaccess/uiconfig/ui/connectionpage.ui:183 @@ -2806,7 +2806,7 @@ #: dbaccess/uiconfig/ui/connectionpage.ui:247 msgctxt "connectionpage|javaDriverLabel" msgid "_JDBC driver class:" -msgstr "_JDBC-driverklasse:" +msgstr "JDBC-driverklasse:" #. iv6Vk #: dbaccess/uiconfig/ui/connectionpage.ui:273 @@ -2830,31 +2830,31 @@ #: dbaccess/uiconfig/ui/copytablepage.ui:37 msgctxt "copytablepage|defdata" msgid "De_finition and data" -msgstr "Definisjon og d_ata" +msgstr "Definisjon og data" #. SVMDA #: dbaccess/uiconfig/ui/copytablepage.ui:53 msgctxt "copytablepage|def" msgid "Def_inition" -msgstr "De_finisjon" +msgstr "Definisjon" #. MWhAZ #: dbaccess/uiconfig/ui/copytablepage.ui:69 msgctxt "copytablepage|view" msgid "A_s table view" -msgstr "Som _tabellvisning" +msgstr "Som tabellvisning" #. rhvDJ #: dbaccess/uiconfig/ui/copytablepage.ui:85 msgctxt "copytablepage|data" msgid "Append _data" -msgstr "Legg til _data" +msgstr "Legg til data" #. 8FEcc #: dbaccess/uiconfig/ui/copytablepage.ui:101 msgctxt "copytablepage|firstline" msgid "Use first _line as column names" -msgstr "Bruk første _linje som kolonnenavn" +msgstr "Bruk første linje som kolonnenavn" #. XdVmL #: dbaccess/uiconfig/ui/copytablepage.ui:116 @@ -2884,7 +2884,7 @@ #: dbaccess/uiconfig/ui/copytablepage.ui:222 msgctxt "copytablepage|label2" msgid "Ta_ble name:" -msgstr "_Tabellnavn:" +msgstr "Tabellnavn:" #. PUvDR #: dbaccess/uiconfig/ui/dbaseindexdialog.ui:44 @@ -2896,19 +2896,19 @@ #: dbaccess/uiconfig/ui/dbaseindexdialog.ui:130 msgctxt "dbaseindexdialog|label1" msgid "_Table:" -msgstr "_Tabell:" +msgstr "Tabell:" #. yKLwM #: dbaccess/uiconfig/ui/dbaseindexdialog.ui:188 msgctxt "dbaseindexdialog|label3" msgid "T_able indexes" -msgstr "_Tabellindekser" +msgstr "Tabellindekser" #. CeDzT #: dbaccess/uiconfig/ui/dbaseindexdialog.ui:202 msgctxt "dbaseindexdialog|label4" msgid "_Free indexes" -msgstr "_Frie indekser" +msgstr "Frie indekser" #. DqAFB #: dbaccess/uiconfig/ui/dbaseindexdialog.ui:368 @@ -2920,7 +2920,7 @@ #: dbaccess/uiconfig/ui/dbasepage.ui:37 msgctxt "dbasepage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. CT9hn #: dbaccess/uiconfig/ui/dbasepage.ui:67 @@ -2968,13 +2968,13 @@ #: dbaccess/uiconfig/ui/dbwizconnectionpage.ui:70 msgctxt "dbwizconnectionpage|create" msgid "_Create New" -msgstr "_Lag ny" +msgstr "Lag ny" #. PDgBn #: dbaccess/uiconfig/ui/dbwizconnectionpage.ui:83 msgctxt "dbwizconnectionpage|browse" msgid "_Browse…" -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. pXU9R #: dbaccess/uiconfig/ui/dbwizmysqlintropage.ui:36 @@ -3044,7 +3044,7 @@ #: dbaccess/uiconfig/ui/dbwizspreadsheetpage.ui:136 msgctxt "dbwizspreadsheetpage|passwordrequired" msgid "_Password required" -msgstr "_Krev passord" +msgstr "Krev erpassord" #. TQ6pX #: dbaccess/uiconfig/ui/dbwiztextpage.ui:62 @@ -3086,25 +3086,25 @@ #: dbaccess/uiconfig/ui/directsqldialog.ui:118 msgctxt "directsqldialog|sql_label" msgid "_Command to execute:" -msgstr "_Kommando som skal kjøres:" +msgstr "Kommando som skal kjøres:" #. gpXeL #: dbaccess/uiconfig/ui/directsqldialog.ui:136 msgctxt "directsqldialog|showoutput" msgid "_Show output of \"select\" statements" -msgstr "_Vis resultat fra «select»-uttrykk" +msgstr "Vis resultat fra «select»-uttrykk" #. xJT2B #: dbaccess/uiconfig/ui/directsqldialog.ui:151 msgctxt "directsqldialog|execute" msgid "_Execute" -msgstr "_Kjør" +msgstr "Kjør" #. FoYMP #: dbaccess/uiconfig/ui/directsqldialog.ui:184 msgctxt "directsqldialog|sqlhistory_label" msgid "_Previous commands:" -msgstr "_Tidligere kommandoer:" +msgstr "Tidligere kommandoer:" #. aqBRi #: dbaccess/uiconfig/ui/directsqldialog.ui:202 @@ -3243,19 +3243,19 @@ #: dbaccess/uiconfig/ui/finalpagewizard.ui:59 msgctxt "finalpagewizard|yesregister" msgid "_Yes, register the database for me" -msgstr "J_a, registrer databasen for meg" +msgstr "Ja, registrer databasen for meg" #. wLXis #: dbaccess/uiconfig/ui/finalpagewizard.ui:76 msgctxt "finalpagewizard|noregister" msgid "N_o, do not register the database" -msgstr "N_ei, ikke registrer databasen" +msgstr "Nei, ikke registrer databasen" #. 3AhL3 #: dbaccess/uiconfig/ui/finalpagewizard.ui:107 msgctxt "finalpagewizard|additionalText" msgid "After the database file has been saved, what do you want to do?" -msgstr "_Hva vil du gjøre etter at databasefila er lagret?" +msgstr "Hva vil du gjøre etter at databasefilen er lagret?" #. NCBKA #: dbaccess/uiconfig/ui/finalpagewizard.ui:120 @@ -3285,7 +3285,7 @@ #: dbaccess/uiconfig/ui/generalpagedialog.ui:32 msgctxt "generalpagedialog|datasourceTypeLabel" msgid "Database _type:" -msgstr "Database _type:" +msgstr "Database type:" #. CBhUu #: dbaccess/uiconfig/ui/generalpagedialog.ui:60 @@ -3295,7 +3295,7 @@ "\n" "The new settings you make will overwrite your existing settings." msgstr "" -"På de følgende sidene kan du velge detaljerte innstillinger for tilkoblinga.\n" +"På de følgende sidene kan du velge detaljerte innstillinger for tilkoblingen.\n" "\n" "De nye innstillingene du velger her vil overskrive de du har fra før." @@ -3321,25 +3321,25 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:61 msgctxt "generalpagewizard|createDatabase" msgid "Create a n_ew database" -msgstr "Lag en _ny database" +msgstr "Lag en ny database" #. BRSfR #: dbaccess/uiconfig/ui/generalpagewizard.ui:86 msgctxt "generalpagewizard|embeddeddbLabel" msgid "_Embedded database:" -msgstr "_Innebygd database:" +msgstr "Innebygd database:" #. S2RBe #: dbaccess/uiconfig/ui/generalpagewizard.ui:116 msgctxt "generalpagewizard|openExistingDatabase" msgid "Open an existing database _file" -msgstr "Åpne en eksisterende database_fil" +msgstr "Åpne en eksisterende databasefil" #. dfae2 #: dbaccess/uiconfig/ui/generalpagewizard.ui:142 msgctxt "generalpagewizard|docListLabel" msgid "_Recently used:" -msgstr "_Nylig brukt:" +msgstr "Nylig brukt:" #. dVAEy #: dbaccess/uiconfig/ui/generalpagewizard.ui:173 @@ -3351,7 +3351,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:188 msgctxt "generalpagewizard|connectDatabase" msgid "Connect to an e_xisting database" -msgstr "Koble til en _eksisterende database" +msgstr "Koble til en eksisterende database" #. emqeD #: dbaccess/uiconfig/ui/generalpagewizard.ui:230 @@ -3359,19 +3359,19 @@ msgid "" "It is not possible to create a new database, because neither HSQLDB, nor Firebird is\n" "available in this setup." -msgstr "" +msgstr "Det er ikke mulig å opprette en ny database, fordi verken HSQLDB eller Firebird er tilgjengelige i dette oppsettet." #. DQvKi #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:43 msgctxt "generalspecialjdbcdetailspage|label2" msgid "_Host name:" -msgstr "_Vertsnavn:" +msgstr "Vertsnavn:" #. NmRqx #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:57 msgctxt "generalspecialjdbcdetailspage|label3" msgid "_Port number:" -msgstr "_Portnummer:" +msgstr "Portnummer:" #. JjYBA #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:84 @@ -3395,13 +3395,13 @@ #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:174 msgctxt "generalspecialjdbcdetailspage|label1" msgid "Connection Settings" -msgstr "Tilkoblings innstillinger" +msgstr "Tilkoblingsinnstillinger" #. yPG6n #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:211 msgctxt "generalspecialjdbcdetailspage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett" +msgstr "Tegnsett" #. 3acBr #: dbaccess/uiconfig/ui/generalspecialjdbcdetailspage.ui:241 @@ -3413,19 +3413,19 @@ #: dbaccess/uiconfig/ui/generatedvaluespage.ui:30 msgctxt "generatedvaluespage|autoretrieve" msgid "Re_trieve generated values" -msgstr "_Hent ut de utregnede verdiene" +msgstr "Hent ut de utregnede verdiene" #. 3aTBK #: dbaccess/uiconfig/ui/generatedvaluespage.ui:67 msgctxt "generatedvaluespage|statementft" msgid "_Auto-increment statement:" -msgstr "_Automatisk økning:" +msgstr "Automatisk økning:" #. o7FfB #: dbaccess/uiconfig/ui/generatedvaluespage.ui:108 msgctxt "generatedvaluespage|queryft" msgid "_Query of generated values:" -msgstr "_Spørring på utregnede verdier" +msgstr "Spørring på utregnede verdier" #. oZ7DF #: dbaccess/uiconfig/ui/generatedvaluespage.ui:154 @@ -3479,7 +3479,7 @@ #: dbaccess/uiconfig/ui/indexdesigndialog.ui:270 msgctxt "indexdesigndialog|UNIQUE" msgid "_Unique" -msgstr "_Unik" +msgstr "Unik" #. GDL3o #: dbaccess/uiconfig/ui/indexdesigndialog.ui:290 @@ -3515,13 +3515,13 @@ #: dbaccess/uiconfig/ui/jdbcconnectionpage.ui:69 msgctxt "jdbcconnectionpage|create" msgid "_Create New" -msgstr "_Lag ny" +msgstr "Lag ny" #. D3Tg7 #: dbaccess/uiconfig/ui/jdbcconnectionpage.ui:82 msgctxt "jdbcconnectionpage|browse" msgid "_Browse…" -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. DDHsx #: dbaccess/uiconfig/ui/jdbcconnectionpage.ui:147 @@ -3533,7 +3533,7 @@ #: dbaccess/uiconfig/ui/jdbcconnectionpage.ui:179 msgctxt "jdbcconnectionpage|jdbcButton" msgid "_Test Class" -msgstr "_Testklasse" +msgstr "Testklasse" #. hNXMZ #: dbaccess/uiconfig/ui/joindialog.ui:8 @@ -3557,7 +3557,7 @@ #: dbaccess/uiconfig/ui/joindialog.ui:239 msgctxt "joindialog|label5" msgid "_Type:" -msgstr "_Type" +msgstr "Type" #. RAXzW #: dbaccess/uiconfig/ui/joindialog.ui:255 @@ -3605,13 +3605,13 @@ #: dbaccess/uiconfig/ui/jointablemenu.ui:12 msgctxt "jointablemenu|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. 2WDtr #: dbaccess/uiconfig/ui/joinviewmenu.ui:12 msgctxt "joinviewmenu|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. phaLD #: dbaccess/uiconfig/ui/joinviewmenu.ui:20 @@ -3641,13 +3641,13 @@ #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:63 msgctxt "ldapconnectionpage|hostNameLabel" msgid "_Server:" -msgstr "_Tjener:" +msgstr "Server:" #. Xp6uQ #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:77 msgctxt "ldapconnectionpage|portNumLabel" msgid "_Port number:" -msgstr "_Portnummer:" +msgstr "Portnummer:" #. Gcxv9 #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:125 @@ -3665,7 +3665,7 @@ #: dbaccess/uiconfig/ui/ldapconnectionpage.ui:175 msgctxt "ldapconnectionpage|useSSLCheckbutton" msgid "Use _secure connection (SSL)" -msgstr "Bruk _sikker tilkobling (SSL)" +msgstr "Bruk sikker tilkobling (SSL)" #. UyMMA #: dbaccess/uiconfig/ui/ldappage.ui:49 @@ -3683,13 +3683,13 @@ #: dbaccess/uiconfig/ui/ldappage.ui:92 msgctxt "ldappage|label2" msgid "_Port number:" -msgstr "_Portnummer:" +msgstr "Portnummer:" #. UMj7r #: dbaccess/uiconfig/ui/ldappage.ui:120 msgctxt "ldappage|label3" msgid "Maximum number of _records:" -msgstr "Maksimum antall _poster:" +msgstr "Maksimum antall poster:" #. azHuR #: dbaccess/uiconfig/ui/ldappage.ui:152 @@ -3737,7 +3737,7 @@ #: dbaccess/uiconfig/ui/mysqlnativepage.ui:89 msgctxt "mysqlnativepage|usernamelabel" msgid "_User name:" -msgstr "_Brukernavn:" +msgstr "Brukernavn:" #. oz8Rm #: dbaccess/uiconfig/ui/mysqlnativepage.ui:114 @@ -3755,7 +3755,7 @@ #: dbaccess/uiconfig/ui/mysqlnativepage.ui:176 msgctxt "mysqlnativepage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett" +msgstr "Tegnsett" #. VP2sP #: dbaccess/uiconfig/ui/mysqlnativepage.ui:207 @@ -3767,7 +3767,7 @@ #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:29 msgctxt "mysqlnativesettings|dbnamelabel" msgid "_Database name:" -msgstr "_Databasenavn:" +msgstr "Databasenavn:" #. CKY7R #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:70 @@ -3779,13 +3779,13 @@ #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:102 msgctxt "mysqlnativesettings|serverlabel" msgid "_Server:" -msgstr "_Tjener:" +msgstr "Server:" #. DH5Eg #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:116 msgctxt "mysqlnativesettings|portlabel" msgid "_Port:" -msgstr "_Port:" +msgstr "Port:" #. gFnmA #: dbaccess/uiconfig/ui/mysqlnativesettings.ui:145 @@ -3809,13 +3809,13 @@ #: dbaccess/uiconfig/ui/namematchingpage.ui:67 msgctxt "namematchingpage|all" msgid "_All" -msgstr "_Alle" +msgstr "Alle" #. db6rw #: dbaccess/uiconfig/ui/namematchingpage.ui:81 msgctxt "namematchingpage|none" msgid "Non_e" -msgstr "_Ingen" +msgstr "Ingen" #. yScg2 #: dbaccess/uiconfig/ui/namematchingpage.ui:113 @@ -3833,7 +3833,7 @@ #: dbaccess/uiconfig/ui/odbcpage.ui:37 msgctxt "odbcpage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. ebokD #: dbaccess/uiconfig/ui/odbcpage.ui:67 @@ -3845,7 +3845,7 @@ #: dbaccess/uiconfig/ui/odbcpage.ui:111 msgctxt "odbcpage|optionslabel" msgid "ODBC _options:" -msgstr "_ODBC-innstillinger:" +msgstr "ODBC-innstillinger:" #. siTp3 #: dbaccess/uiconfig/ui/odbcpage.ui:144 @@ -3869,19 +3869,19 @@ #: dbaccess/uiconfig/ui/parametersdialog.ui:158 msgctxt "parametersdialog|label2" msgid "_Value:" -msgstr "_Verdi:" +msgstr "Verdi:" #. BqYRw #: dbaccess/uiconfig/ui/parametersdialog.ui:190 msgctxt "parametersdialog|next" msgid "_Next" -msgstr "_Neste" +msgstr "Neste" #. xirKR #: dbaccess/uiconfig/ui/parametersdialog.ui:218 msgctxt "parametersdialog|label1" msgid "_Parameters" -msgstr "_Parametre" +msgstr "Parametre" #. cJozC #: dbaccess/uiconfig/ui/password.ui:8 @@ -3899,13 +3899,13 @@ #: dbaccess/uiconfig/ui/password.ui:146 msgctxt "password|label3" msgid "_Password:" -msgstr "_Passord:" +msgstr "Passord:" #. hWJs6 #: dbaccess/uiconfig/ui/password.ui:160 msgctxt "password|label4" msgid "_Confirm password:" -msgstr "_Bekreft passord:" +msgstr "Bekreft passord:" #. 8t7zU #: dbaccess/uiconfig/ui/password.ui:193 @@ -4235,19 +4235,19 @@ #: dbaccess/uiconfig/ui/relationdialog.ui:216 msgctxt "relationdialog|addaction" msgid "_No action" -msgstr "_Ingen handling" +msgstr "Ingen handling" #. uZGGW #: dbaccess/uiconfig/ui/relationdialog.ui:232 msgctxt "relationdialog|addcascade" msgid "_Update cascade" -msgstr "_Oppdater kaskade" +msgstr "Oppdater kaskade" #. PfRDx #: dbaccess/uiconfig/ui/relationdialog.ui:248 msgctxt "relationdialog|addnull" msgid "_Set NULL" -msgstr "_Set NULL" +msgstr "Set NULL" #. xNWHg #: dbaccess/uiconfig/ui/relationdialog.ui:264 @@ -4265,25 +4265,25 @@ #: dbaccess/uiconfig/ui/relationdialog.ui:320 msgctxt "relationdialog|delaction" msgid "_No action" -msgstr "_Ingen handling" +msgstr "Ingen handling" #. 3BAEe #: dbaccess/uiconfig/ui/relationdialog.ui:336 msgctxt "relationdialog|delcascade" msgid "Delete _cascade" -msgstr "_Slett kaskade" +msgstr "Slett kaskade" #. Zd5SC #: dbaccess/uiconfig/ui/relationdialog.ui:352 msgctxt "relationdialog|delnull" msgid "_Set NULL" -msgstr "_Set NULL" +msgstr "Set NULL" #. hZGB8 #: dbaccess/uiconfig/ui/relationdialog.ui:368 msgctxt "relationdialog|deldefault" msgid "Set _default" -msgstr "Velg standard_innstillinger" +msgstr "Velg standardinnstillinger" #. LLcup #: dbaccess/uiconfig/ui/relationdialog.ui:390 @@ -4331,7 +4331,7 @@ #: dbaccess/uiconfig/ui/rowheightdialog.ui:97 msgctxt "rowheightdialog|label1" msgid "_Height:" -msgstr "_Høyde:" +msgstr "Høyde:" #. cZCeF #: dbaccess/uiconfig/ui/rowheightdialog.ui:118 @@ -4343,7 +4343,7 @@ #: dbaccess/uiconfig/ui/rowheightdialog.ui:129 msgctxt "rowheightdialog|automatic" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. HKRpK #: dbaccess/uiconfig/ui/rowheightdialog.ui:138 @@ -4373,13 +4373,13 @@ #: dbaccess/uiconfig/ui/savedialog.ui:105 msgctxt "savedialog|catalogft" msgid "_Catalog:" -msgstr "_Katalog:" +msgstr "Katalog:" #. CGa85 #: dbaccess/uiconfig/ui/savedialog.ui:119 msgctxt "savedialog|schemaft" msgid "_Schema:" -msgstr "_Skjema:" +msgstr "Skjema:" #. FCptK #: dbaccess/uiconfig/ui/saveindexdialog.ui:7 @@ -4505,19 +4505,19 @@ #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:64 msgctxt "specialjdbcconnectionpage|dbNameLabel" msgid "_Database name:" -msgstr "_Databasenavn:" +msgstr "Databasenavn:" #. ZuWG7 #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:78 msgctxt "specialjdbcconnectionpage|hostNameLabel" msgid "_Server:" -msgstr "_Tjener:" +msgstr "Server:" #. iZmbB #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:92 msgctxt "specialjdbcconnectionpage|portNumLabel" msgid "_Port number:" -msgstr "_Portnummer:" +msgstr "Portnummer:" #. ECnjE #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:153 @@ -4535,7 +4535,7 @@ #: dbaccess/uiconfig/ui/specialjdbcconnectionpage.ui:212 msgctxt "specialjdbcconnectionpage|testDriverButton" msgid "_Test Class" -msgstr "_Testklasse" +msgstr "Testklasse" #. WKnRX #: dbaccess/uiconfig/ui/specialsettingspage.ui:24 @@ -4679,13 +4679,13 @@ #: dbaccess/uiconfig/ui/sqlexception.ui:69 msgctxt "sqlexception|label2" msgid "Error _list:" -msgstr "_Feilliste:" +msgstr "Feilliste:" #. AFG3c #: dbaccess/uiconfig/ui/sqlexception.ui:83 msgctxt "sqlexception|label3" msgid "_Description:" -msgstr "_Beskrivelse:" +msgstr "Beskrivelse:" #. Y3ZXm #: dbaccess/uiconfig/ui/tabledesignrowmenu.ui:12 @@ -4709,7 +4709,7 @@ #: dbaccess/uiconfig/ui/tabledesignrowmenu.ui:35 msgctxt "tabledesignrowmenu|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. PWZ9E #: dbaccess/uiconfig/ui/tabledesignrowmenu.ui:42 @@ -4823,7 +4823,7 @@ #: dbaccess/uiconfig/ui/textpage.ui:160 msgctxt "textpage|containsheaders" msgid "_Text contains headers" -msgstr "_Teksten inneholder topptekster" +msgstr "Teksten inneholder topptekster" #. PGqYA #: dbaccess/uiconfig/ui/textpage.ui:180 @@ -4895,7 +4895,7 @@ #: dbaccess/uiconfig/ui/textpage.ui:366 msgctxt "textpage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. 752ii #: dbaccess/uiconfig/ui/textpage.ui:397 @@ -4919,7 +4919,7 @@ #: dbaccess/uiconfig/ui/typeselectpage.ui:168 msgctxt "typeselectpage|autobutton" msgid "_Auto" -msgstr "_Automatisk" +msgstr "Automatisk" #. sTgpa #: dbaccess/uiconfig/ui/typeselectpage.ui:201 @@ -4949,7 +4949,7 @@ #: dbaccess/uiconfig/ui/useradminpage.ui:83 msgctxt "useradminpage|add" msgid "_Add User..." -msgstr "_Legg til bruker …" +msgstr "Legg til bruker …" #. L7EVW #: dbaccess/uiconfig/ui/useradminpage.ui:97 @@ -4961,7 +4961,7 @@ #: dbaccess/uiconfig/ui/useradminpage.ui:111 msgctxt "useradminpage|delete" msgid "_Delete User..." -msgstr "_Slett bruker …" +msgstr "Slett bruker …" #. gMJwT #: dbaccess/uiconfig/ui/useradminpage.ui:138 @@ -4979,25 +4979,25 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:44 msgctxt "userdetailspage|hostnameft" msgid "_Host name:" -msgstr "_Vertsnavn:" +msgstr "Vertsnavn:" #. eDvjr #: dbaccess/uiconfig/ui/userdetailspage.ui:60 msgctxt "userdetailspage|portnumberft" msgid "_Port number:" -msgstr "_Portnummer:" +msgstr "Portnummer:" #. rEGAs #: dbaccess/uiconfig/ui/userdetailspage.ui:99 msgctxt "userdetailspage|usecatalog" msgid "_Use catalog" -msgstr "_Bruk katalog" +msgstr "Bruk katalog" #. BzFdV #: dbaccess/uiconfig/ui/userdetailspage.ui:118 msgctxt "userdetailspage|optionslabel" msgid "_Driver settings:" -msgstr "_Driverinnstillinger:" +msgstr "Driverinnstillinger:" #. Gjovq #: dbaccess/uiconfig/ui/userdetailspage.ui:149 @@ -5009,10 +5009,10 @@ #: dbaccess/uiconfig/ui/userdetailspage.ui:186 msgctxt "userdetailspage|charsetlabel" msgid "_Character set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. 6ZS8N #: dbaccess/uiconfig/ui/userdetailspage.ui:217 msgctxt "userdetailspage|charsetheader" msgid "Data Conversion" -msgstr "" +msgstr "Data konvertering" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/desktop/messages.po libreoffice-7.1.3~rc2/translations/source/nb/desktop/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/desktop/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/desktop/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:42+0100\n" -"PO-Revision-Date: 2020-09-05 07:35+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1536693044.000000\n" #. v2iwK @@ -200,25 +200,25 @@ #: desktop/inc/strings.hrc:62 msgctxt "RID_CTX_ITEM_REMOVE" msgid "~Remove" -msgstr "~Fjern" +msgstr "Fjern" #. s6iho #: desktop/inc/strings.hrc:63 msgctxt "RID_CTX_ITEM_ENABLE" msgid "~Enable" -msgstr "~Skru på" +msgstr "Aktiver" #. CeKUw #: desktop/inc/strings.hrc:64 msgctxt "RID_CTX_ITEM_DISABLE" msgid "~Disable" -msgstr "~Skru av" +msgstr "Deaktiver" #. Z7G4r #: desktop/inc/strings.hrc:65 msgctxt "RID_CTX_ITEM_CHECK_UPDATE" msgid "~Update..." -msgstr "~Oppdater …" +msgstr "Oppdater …" #. iFBQd #: desktop/inc/strings.hrc:66 @@ -566,7 +566,7 @@ #: desktop/inc/strings.hrc:148 msgctxt "RID_DLG_UPDATE_NODESCRIPTION" msgid "No more details are available for this update." -msgstr "Ingen beskrivelser er tilgjengelige for denne oppdateringa." +msgstr "Ingen beskrivelser er tilgjengelige for denne oppdateringen." #. NECjC #: desktop/inc/strings.hrc:149 @@ -578,7 +578,7 @@ #: desktop/inc/strings.hrc:150 msgctxt "RID_DLG_UPDATE_NODEPENDENCY" msgid "Required %PRODUCTNAME version doesn't match:" -msgstr "%PRODUCTNAME-versjonen er ikke støtta;" +msgstr "%PRODUCTNAME-versjonen er ikke støttet;" #. fz5C3 #: desktop/inc/strings.hrc:151 @@ -602,7 +602,7 @@ #: desktop/inc/strings.hrc:154 msgctxt "RID_DLG_UPDATE_IGNORED_UPDATE" msgid "This update will be ignored.\n" -msgstr "Denne oppdateringa vil bli ignorert.\n" +msgstr "Denne oppdateringen vil bli ignorert.\n" #. Ea8Mi #: desktop/inc/strings.hrc:156 @@ -614,7 +614,7 @@ #: desktop/inc/strings.hrc:157 msgctxt "STR_BOOTSTRAP_ERR_DIR_MISSING" msgid "The configuration directory \"$1\" could not be found." -msgstr "Fant ikke oppsettmappa «$1»." +msgstr "Fant ikke konfigurasjonsmappen «$1»." #. bGWux #: desktop/inc/strings.hrc:158 @@ -632,19 +632,19 @@ #: desktop/inc/strings.hrc:160 msgctxt "STR_BOOTSTRAP_ERR_FILE_CORRUPT" msgid "The configuration file \"$1\" is corrupt." -msgstr "Oppsettfila «$1» er ødelagt." +msgstr "Konfigurasjonsfilen «$1» er ødelagt." #. CP9Qk #: desktop/inc/strings.hrc:161 msgctxt "STR_BOOTSTRAP_ERR_FILE_MISSING" msgid "The configuration file \"$1\" was not found." -msgstr "Fant ikke oppsettfila «$1»." +msgstr "Fant ikke konfigurasjonsfilen «$1»." #. maapb #: desktop/inc/strings.hrc:162 msgctxt "STR_BOOTSTRAP_ERR_NO_SUPPORT" msgid "The configuration file \"$1\" does not support the current version." -msgstr "Oppsettfila «$1» støtter ikke denne versjonen." +msgstr "Konfigurasjonsfilen «$1» støtter ikke denne versjonen." #. q2F59 #: desktop/inc/strings.hrc:163 @@ -662,13 +662,13 @@ #: desktop/inc/strings.hrc:165 msgctxt "STR_BOOTSTRAP_ERR_NO_CFG_SERVICE" msgid "The configuration service is not available." -msgstr "Oppsettstjenesten er ikke tilgjengelig." +msgstr "Konfigurasjonstjenesten er ikke tilgjengelig." #. wbj4W #: desktop/inc/strings.hrc:166 msgctxt "STR_ASK_START_SETUP_MANUALLY" msgid "Start the setup application to repair the installation from the CD or the folder containing the installation packages." -msgstr "Start oppsettsprogrammet for å reparere installasjonen fra CD-en eller fra mappa som inneholder installasjonspakkene." +msgstr "Start oppsettsprogrammet for å reparere installasjonen fra CD-en eller fra mappen som inneholder installasjonspakkene." #. d3or5 #: desktop/inc/strings.hrc:167 @@ -804,7 +804,7 @@ #: desktop/inc/strings.hrc:189 msgctxt "RID_STR_CONCURRENTINSTANCE" msgid "unopkg cannot be started. The lock file indicates it is already running. If this does not apply, delete the lock file at:" -msgstr "Kan ikke starte «unopkg». Låsefila angir at den kjøre allerede. Hvis dette ikke stemmer, så slett låsefila, som ligger i:" +msgstr "Kan ikke starte «unopkg». Låsefilen angir at den kjøre allerede. Hvis dette ikke stemmer, så slett låsefilen, som ligger i:" #. MLhHo #: desktop/inc/strings.hrc:191 @@ -882,7 +882,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:210 msgctxt "extensionmanager|optionsbtn" msgid "_Options" -msgstr "_Alternativer" +msgstr "Alternativer" #. DbuQS #: desktop/uiconfig/ui/extensionmanager.ui:217 @@ -906,7 +906,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:249 msgctxt "extensionmanager|addbtn" msgid "_Add" -msgstr "_Legg til" +msgstr "Legg til" #. MuigK #: desktop/uiconfig/ui/extensionmanager.ui:258 @@ -918,7 +918,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:271 msgctxt "extensionmanager|removebtn" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. AGoX7 #: desktop/uiconfig/ui/extensionmanager.ui:278 @@ -930,7 +930,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:291 msgctxt "extensionmanager|enablebtn" msgid "_Enable" -msgstr "_Aktiver" +msgstr "Aktiver" #. vz3Ti #: desktop/uiconfig/ui/extensionmanager.ui:321 @@ -972,13 +972,13 @@ #: desktop/uiconfig/ui/installforalldialog.ui:24 msgctxt "installforalldialog|no" msgid "_For all users" -msgstr "_For alle brukere" +msgstr "For alle brukere" #. nPnM4 #: desktop/uiconfig/ui/installforalldialog.ui:38 msgctxt "installforalldialog|yes" msgid "_Only for me" -msgstr "_Kun for meg" +msgstr "Kun for meg" #. feAcg #: desktop/uiconfig/ui/licensedialog.ui:8 @@ -1032,7 +1032,7 @@ #: desktop/uiconfig/ui/licensedialog.ui:173 msgctxt "licensedialog|down" msgid "_Scroll Down" -msgstr "_Rull ned" +msgstr "Rull ned" #. x4PCF #: desktop/uiconfig/ui/showlicensedialog.ui:8 @@ -1056,13 +1056,13 @@ #: desktop/uiconfig/ui/updatedialog.ui:55 msgctxt "updatedialog|INSTALL" msgid "_Install" -msgstr "_Installer" +msgstr "Installer" #. 3bJwo #: desktop/uiconfig/ui/updatedialog.ui:122 msgctxt "updatedialog|UPDATE_LABEL" msgid "_Available extension updates" -msgstr "_Tilgjengelige oppdateringer til utvidelsene" +msgstr "Tilgjengelige oppdateringer til utvidelsene" #. 3mtLC #: desktop/uiconfig/ui/updatedialog.ui:135 @@ -1074,7 +1074,7 @@ #: desktop/uiconfig/ui/updatedialog.ui:219 msgctxt "updatedialog|UPDATE_ALL" msgid "_Show all updates" -msgstr "_Vis alle oppdateringer" +msgstr "Vis alle oppdateringer" #. ihAhY #: desktop/uiconfig/ui/updatedialog.ui:229 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/dictionaries/da_DK.po libreoffice-7.1.3~rc2/translations/source/nb/dictionaries/da_DK.po --- libreoffice-7.1.2~rc2/translations/source/nb/dictionaries/da_DK.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/dictionaries/da_DK.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-27 14:58+0100\n" -"PO-Revision-Date: 2013-12-11 11:29+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-04-07 14:15+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1386761346.000000\n" #. M5yh2 @@ -39,3 +39,9 @@ "and Center for Sprogteknologi, Københavns Universitet\n" "Hyphenation dictionary Based on the TeX hyphenation tables.\n" msgstr "" +"Dansk ordbok fra Stavekontrolden.\n" +"Denne ordboken er basert på data fra Det Danske Sprog- og Litteraturselskab\n" +"(Det danske samfunn for språk og litteratur), http://www.dsl.dk.\n" +"Dansk synonymordbok basert på data fra Det Danske Sprog- og Litteraturselskab\n" +"og senter for språkteknologi, Københavns universitet\n" +"Orddeling for orddeling Basert på TeX-orddelingstabellene.\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/editeng/messages.po libreoffice-7.1.3~rc2/translations/source/nb/editeng/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/editeng/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/editeng/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-08-02 07:43+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1511005657.000000\n" #. BHYB4 @@ -21,7 +21,7 @@ #: editeng/inc/strings.hrc:17 msgctxt "RID_SVXITEMS_HORJUST_STANDARD" msgid "Horizontal alignment default" -msgstr "Vannrett standardjustering" +msgstr "Horisontal standardjustering" #. htWdf #: editeng/inc/strings.hrc:18 @@ -33,7 +33,7 @@ #: editeng/inc/strings.hrc:19 msgctxt "RID_SVXITEMS_HORJUST_CENTER" msgid "Centered horizontally" -msgstr "Midtstilt vannrett" +msgstr "Midtstilt horisontalt" #. JXEo9 #: editeng/inc/strings.hrc:20 @@ -58,7 +58,7 @@ #: editeng/inc/strings.hrc:28 msgctxt "RID_SVXITEMS_VERJUST_STANDARD" msgid "Vertical alignment default" -msgstr "Loddrett standardjustering" +msgstr "Vertikal standardjustering" #. xy2FG #: editeng/inc/strings.hrc:29 @@ -70,7 +70,7 @@ #: editeng/inc/strings.hrc:30 msgctxt "RID_SVXITEMS_VERJUST_CENTER" msgid "Centered vertically" -msgstr "Midtstilt loddrett" +msgstr "Midtstilt Vertikalt" #. G3X9R #: editeng/inc/strings.hrc:31 @@ -107,13 +107,13 @@ #: editeng/uiconfig/ui/spellmenu.ui:19 msgctxt "spellmenu|insert" msgid "_Add to Dictionary" -msgstr "Legg til i ordlista" +msgstr "Legg til i ordlisten" #. PEnQT #: editeng/uiconfig/ui/spellmenu.ui:33 msgctxt "spellmenu|add" msgid "_Add to Dictionary" -msgstr "Legg til i ordlista" +msgstr "Legg til i ordlisten" #. MFssd #: editeng/uiconfig/ui/spellmenu.ui:41 @@ -1236,13 +1236,13 @@ #: include/editeng/editrids.hrc:230 msgctxt "RID_SVXITEMS_HYPHEN_MINLEAD" msgid "%1 characters at end of line" -msgstr "%1 tegn på slutten av linja" +msgstr "%1 tegn på slutten av linjen" #. e8CgU #: include/editeng/editrids.hrc:231 msgctxt "RID_SVXITEMS_HYPHEN_MINTRAIL" msgid "%1 characters at beginning of line" -msgstr "%1 tegn på begynnelsen av linja" +msgstr "%1 tegn på begynnelsen av linjen" #. DocFx #: include/editeng/editrids.hrc:232 @@ -1441,7 +1441,7 @@ #: include/editeng/editrids.hrc:265 msgctxt "RID_SVXITEMS_PARAVERTALIGN_BASELINE" msgid "Text aligned to base line" -msgstr "Tekst justert til baselinja" +msgstr "Tekst justert til baselinjen" #. FBiBq #: include/editeng/editrids.hrc:266 @@ -1465,25 +1465,25 @@ #: include/editeng/editrids.hrc:269 msgctxt "RID_SVXITEMS_FRMDIR_HORI_LEFT_TOP" msgid "Text direction left-to-right (horizontal)" -msgstr "Tekstretning venstre-til-høyre) (vannrett)" +msgstr "Tekstretning venstre-til-høyre) (horisontalt)" #. eW3jB #: include/editeng/editrids.hrc:270 msgctxt "RID_SVXITEMS_FRMDIR_HORI_RIGHT_TOP" msgid "Text direction right-to-left (horizontal)" -msgstr "Tekstretning høyre-til-venstre (vannrett)" +msgstr "Tekstretning høyre-til-venstre (horisontalt)" #. o3Yee #: include/editeng/editrids.hrc:271 msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_RIGHT" msgid "Text direction right-to-left (vertical)" -msgstr "Tekstretning høyre-til-venstre (loddrett)" +msgstr "Tekstretning høyre-til-venstre (vertikalt)" #. GXXF8 #: include/editeng/editrids.hrc:272 msgctxt "RID_SVXITEMS_FRMDIR_VERT_TOP_LEFT" msgid "Text direction left-to-right (vertical)" -msgstr "Tekstretning venstre-til-høyre (loddrett)" +msgstr "Tekstretning venstre-til-høyre (vertikalt)" #. 2XBXr #: include/editeng/editrids.hrc:273 @@ -1642,20 +1642,20 @@ "Word cannot be added to dictionary\n" "due to unknown reason." msgstr "" -"Ordet kan ikke legges til i ordboka\n" +"Ordet kan ikke legges til i ordboken\n" "på grunn av en ukjent årsak." #. 4HCL4 #: include/editeng/editrids.hrc:303 msgctxt "RID_SVXSTR_DIC_ERR_FULL" msgid "The dictionary is already full." -msgstr "Ordboka er allerede full." +msgstr "Ordboken er allerede full." #. 5G8FX #: include/editeng/editrids.hrc:304 msgctxt "RID_SVXSTR_DIC_ERR_READONLY" msgid "The dictionary is read-only." -msgstr "Ordboka er skrivebeskyttet." +msgstr "Ordboken er skrivebeskyttet." #. SEotA #: include/editeng/editrids.hrc:306 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/nb/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-10-14 19:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554919830.000000\n" #. cBx8W @@ -416,19 +416,19 @@ #: extensions/inc/stringarrays.hrc:140 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_parent" -msgstr "_opphav" +msgstr "foreldre" #. pQZAG #: extensions/inc/stringarrays.hrc:141 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_self" -msgstr "_egen" +msgstr "egen" #. FwYDV #: extensions/inc/stringarrays.hrc:142 msgctxt "RID_RSC_ENUM_SUBMIT_TARGET" msgid "_top" -msgstr "_topp" +msgstr "topp" #. UEAHA #: extensions/inc/stringarrays.hrc:147 @@ -926,7 +926,7 @@ #: extensions/inc/strings.hrc:52 msgctxt "RID_STR_VERTICAL_ALIGN" msgid "Vert. Alignment" -msgstr "Loddrett justering" +msgstr "Vertikal justering" #. zbCdE #: extensions/inc/strings.hrc:53 @@ -986,13 +986,13 @@ #: extensions/inc/strings.hrc:62 msgctxt "RID_STR_HSCROLL" msgid "Horizontal scroll bar" -msgstr "Vannrett rullefelt" +msgstr "Horisontalt rullefelt" #. E4RcH #: extensions/inc/strings.hrc:63 msgctxt "RID_STR_VSCROLL" msgid "Vertical scroll bar" -msgstr "Loddrett rullefelt" +msgstr "Vertikalt rullefelt" #. 9VgN2 #: extensions/inc/strings.hrc:64 @@ -2399,7 +2399,7 @@ msgstr "" "Automatisk nedlasting av oppdateringer er for øyeblikket ikke tilgjengelig.\n" "\n" -"Trykk på «Last ned» for å laste ned %PRODUCTNAME %NEXTVERSION manuelt fra nettsida." +"Trykk på «Last ned» for å laste ned %PRODUCTNAME %NEXTVERSION manuelt fra nettsiden." #. D9AH2 #: extensions/inc/strings.hrc:303 @@ -2411,37 +2411,37 @@ #: extensions/inc/strings.hrc:304 msgctxt "RID_UPDATE_STR_READY_INSTALL" msgid "Download of %PRODUCTNAME %NEXTVERSION completed. Ready for installation." -msgstr "Nedlastinga av %PRODUCTNAME %NEXTVERSION er ferdig. Klar til installasjon." +msgstr "Nedlastingen av %PRODUCTNAME %NEXTVERSION er ferdig. Klar til installasjon." #. J4owe #: extensions/inc/strings.hrc:305 msgctxt "RID_UPDATE_STR_CANCEL_DOWNLOAD" msgid "Do you really want to cancel the download?" -msgstr "Vil du virkelig avbryte nedlastinga?" +msgstr "Vil du virkelig avbryte nedlastingen?" #. LSVZ5 #: extensions/inc/strings.hrc:306 msgctxt "RID_UPDATE_STR_BEGIN_INSTALL" msgid "To install the update, %PRODUCTNAME %PRODUCTVERSION needs to be closed. Do you want to install the update now?" -msgstr "%PRODUCTNAME %PRODUCTVERSION må lukkes for å installera oppdateringa. Vil du installera oppdateringa nå?" +msgstr "%PRODUCTNAME %PRODUCTVERSION må lukkes for å installere oppdatering. Vil du installere oppdateringen nå?" #. Z8pFW #: extensions/inc/strings.hrc:307 msgctxt "RID_UPDATE_STR_INSTALL_ERROR" msgid "Could not run the installer application, please run %FILE_NAME in %DOWNLOAD_PATH manually." -msgstr "Klarte ikke å kjøra installasjonsprogrammet. Kjør %FILE_NAME i %DOWNLOAD_PATH manuelt isteden." +msgstr "Klarte ikke å kjøre installasjonsprogrammet. Kjør %FILE_NAME i %DOWNLOAD_PATH manuelt isteden." #. uDjTe #: extensions/inc/strings.hrc:308 msgctxt "RID_UPDATE_STR_OVERWRITE_WARNING" msgid "A file with that name already exists! Do you want to overwrite the existing file?" -msgstr "Det finnes allerede en fil som heter det. Vil du skrive over den fila?" +msgstr "Det finnes allerede en fil som heter det. Vil du skrive over den filen?" #. 5trUL #: extensions/inc/strings.hrc:309 msgctxt "RID_UPDATE_STR_RELOAD_WARNING" msgid "A file with the name '%FILENAME' already exists in '%DOWNLOAD_PATH'! Do you want to continue with the download or delete and reload the file?" -msgstr "Det finnes allerede en fil med navnet «%FILENAME» i «%DOWNLOAD_PATH». Vil du fortsette med nedlastingen, eller slette og laste fila på nytt?" +msgstr "Det finnes allerede en fil med navnet «%FILENAME» i «%DOWNLOAD_PATH». Vil du fortsette med nedlastingen, eller slette og laste filen på nytt?" #. mPGGT #: extensions/inc/strings.hrc:310 @@ -2483,25 +2483,25 @@ #: extensions/inc/strings.hrc:316 msgctxt "RID_UPDATE_BTN_DOWNLOAD" msgid "~Download" -msgstr "~Last ned" +msgstr "Last ned" #. B4EXd #: extensions/inc/strings.hrc:317 msgctxt "RID_UPDATE_BTN_INSTALL" msgid "~Install" -msgstr "~Installer" +msgstr "Installer" #. 5KFYF #: extensions/inc/strings.hrc:318 msgctxt "RID_UPDATE_BTN_PAUSE" msgid "~Pause" -msgstr "~Pause" +msgstr "Pause" #. aigD7 #: extensions/inc/strings.hrc:319 msgctxt "RID_UPDATE_BTN_RESUME" msgid "~Resume" -msgstr "~Fortsett" +msgstr "Fortsett" #. 6bYDx #: extensions/inc/strings.hrc:320 @@ -2519,7 +2519,7 @@ #: extensions/inc/strings.hrc:322 msgctxt "RID_UPDATE_BUBBLE_UPDATE_AVAIL" msgid "Click the icon to start the download." -msgstr "Klikk på ikonet for å starte nedlastinga." +msgstr "Klikk på ikonet for å starte nedlastingen." #. 6Jk7H #: extensions/inc/strings.hrc:323 @@ -2543,13 +2543,13 @@ #: extensions/inc/strings.hrc:326 msgctxt "RID_UPDATE_BUBBLE_AUTO_START" msgid "Download of update begins." -msgstr "Starter å laste ned oppdateringa." +msgstr "Starter å laste ned nedlastingen." #. MoGgC #: extensions/inc/strings.hrc:327 msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOADING" msgid "Download of update in progress" -msgstr "Laster ned oppdateringa" +msgstr "Laster ned oppdateringen" #. uWDFF #: extensions/inc/strings.hrc:328 @@ -2561,7 +2561,7 @@ #: extensions/inc/strings.hrc:329 msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_PAUSED" msgid "Download of update paused" -msgstr "Pause i nedlastinga" +msgstr "Pause i nedlastingen" #. 7YgAT #: extensions/inc/strings.hrc:330 @@ -2573,7 +2573,7 @@ #: extensions/inc/strings.hrc:331 msgctxt "RID_UPDATE_BUBBLE_T_ERROR_DOWNLOADING" msgid "Download of update stalled" -msgstr "Nedlastinga stoppet" +msgstr "Nedlastingen stoppet" #. BMJfF #: extensions/inc/strings.hrc:332 @@ -2585,7 +2585,7 @@ #: extensions/inc/strings.hrc:333 msgctxt "RID_UPDATE_BUBBLE_T_DOWNLOAD_AVAIL" msgid "Download of update completed" -msgstr "Oppdateringa er ferdig nedlastet" +msgstr "Oppdateringen er ferdig nedlastet" #. 9fD6Q #: extensions/inc/strings.hrc:334 @@ -3053,7 +3053,7 @@ "På høyre side ser du alle tabellene fra skjemaets datakilde.\n" "\n" "\n" -"Velg tabellen som inneholder dataene som skal brukes som grunnlag for innholdet i lista:" +"Velg tabellen som inneholder dataene som skal brukes som grunnlag for innholdet i listen:" #. ovzSX #: extensions/uiconfig/sabpilot/ui/contenttablepage.ui:243 @@ -3155,7 +3155,7 @@ #: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:80 msgctxt "defaultfieldselectionpage|defaultselectionno" msgid "No, one particular field is not going to be selected." -msgstr "Nei, ingen falt vil bli valgt." +msgstr "Nei, ingen felt vil bli valgt." #. XXEB7 #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:15 @@ -3167,6 +3167,11 @@ "\n" "Click the button below to open another dialog where you can enter the settings for your data source." msgstr "" +"For å innlemme adressedataene i malene dine, må %PRODUCTNAME vite hvilke felt som inneholder hvilke data.\n" +"\n" +"For eksempel kunne du ha lagret e-postadressene i et felt som heter \"e-post\", eller \"E-post\" eller \"EM\" - eller noe helt annet.\n" +"\n" +"Klikk på knappen nedenfor for å åpne en annen dialog der du kan angi innstillingene for datakilden." #. RkyNf #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:38 @@ -3178,7 +3183,7 @@ #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:46 msgctxt "fieldassignpage|extended_tip|assign" msgid "Opens the Templates: Address Book Assignment dialog." -msgstr "Åpne dialogvinduet for tildeling av maler til adresseboka." +msgstr "Åpne dialogvinduet for tildeling av maler til adresseboken." #. CuPoK #: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:77 @@ -3202,7 +3207,7 @@ #: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:105 msgctxt "fieldlinkpage|label3" msgid "Field from the _List Table" -msgstr "Felt fra _listetabellen" +msgstr "Felt fra listetabellen" #. GDXGP #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:61 @@ -3268,7 +3273,7 @@ #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401 msgctxt "gridfieldsselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "Tabellelement" #. Xk7cV #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54 @@ -3298,19 +3303,19 @@ #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:216 msgctxt "groupradioselectionpage|label3" msgid "_Option fields" -msgstr "_Alternativfelt" +msgstr "Alternativfelt" #. CYqUP #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:236 msgctxt "groupradioselectionpage|toright" msgid "_>>" -msgstr "_>>" +msgstr ">>" #. HZc38 #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:250 msgctxt "groupradioselectionpage|toleft" msgid "_<<" -msgstr "_<<" +msgstr "<<" #. HYXrA #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:285 @@ -3322,7 +3327,7 @@ #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:310 msgctxt "groupradioselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "Tabellelement" #. 3dtcD #: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15 @@ -3374,7 +3379,7 @@ #: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:65 msgctxt "optiondbfieldpage|yesRadiobutton" msgid "_Yes, I want to save it in the following database field:" -msgstr "_Ja, jeg vil lagre det i dette databasefeltet:" +msgstr "Ja, jeg vil lagre det i dette databasefeltet:" #. Kw48Z #: extensions/uiconfig/sabpilot/ui/optiondbfieldpage.ui:81 @@ -3386,7 +3391,7 @@ #: extensions/uiconfig/sabpilot/ui/optionsfinalpage.ui:18 msgctxt "optionsfinalpage|label1" msgid "Which _caption is to be given to your option group?" -msgstr "Hvilken forklaringstekst vil du bruke for alternativgruppa?" +msgstr "Hvilken forklaringstekst vil du bruke for alternativgruppen?" #. aDe59 #: extensions/uiconfig/sabpilot/ui/optionsfinalpage.ui:49 @@ -3410,7 +3415,7 @@ #: extensions/uiconfig/sabpilot/ui/optionvaluespage.ui:107 msgctxt "optionvaluespage|label3" msgid "_Option fields" -msgstr "_Alternativfelt" +msgstr "Alternativfelt" #. AneBw #: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:23 @@ -3432,7 +3437,7 @@ #: extensions/uiconfig/sabpilot/ui/selecttablepage.ui:90 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 "Angir en tabell fra adresseboka i Seamonkey / Netscape som kilde til adresseboka i %PRODUCTNAME." +msgstr "Angir en tabell fra adresseboken i Seamonkey / Netscape som kilde til adresseboken i %PRODUCTNAME." #. bCndk #: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:15 @@ -3576,19 +3581,19 @@ #: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:96 msgctxt "tableselectionpage|datasourcelabel" msgid "_Data source:" -msgstr "_Datakilde:" +msgstr "Datakilde:" #. DZ3pT #: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:149 msgctxt "tableselectionpage|search" msgid "_..." -msgstr "_..." +msgstr "..." #. 6jyEV #: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:181 msgctxt "tableselectionpage|tablelabel" msgid "_Table / Query:" -msgstr "_Tabell/spørring:" +msgstr "Tabell/spørring:" #. YvYuw #: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:253 @@ -3624,13 +3629,13 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:35 msgctxt "generalpage|shortname" msgid "_Short name" -msgstr "_Kortnavn" +msgstr "Kortnavn" #. vaKMR #: extensions/uiconfig/sbibliography/ui/generalpage.ui:48 msgctxt "generalpage|authtype" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. G73uW #: extensions/uiconfig/sbibliography/ui/generalpage.ui:61 @@ -3642,13 +3647,13 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:74 msgctxt "generalpage|publisher" msgid "_Publisher" -msgstr "_Utgiver" +msgstr "Utgiver" #. xQfCE #: extensions/uiconfig/sbibliography/ui/generalpage.ui:87 msgctxt "generalpage|chapter" msgid "_Chapter" -msgstr "_Kapittel" +msgstr "Kapittel" #. TC6kG #: extensions/uiconfig/sbibliography/ui/generalpage.ui:100 @@ -3672,13 +3677,13 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:139 msgctxt "generalpage|year" msgid "_Year" -msgstr "_År" +msgstr "År" #. FBFh5 #: extensions/uiconfig/sbibliography/ui/generalpage.ui:152 msgctxt "generalpage|isbn" msgid "_ISBN" -msgstr "_ISBN" +msgstr "ISBN" #. HBcbt #: extensions/uiconfig/sbibliography/ui/generalpage.ui:181 @@ -3690,7 +3695,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:194 msgctxt "generalpage|booktitle" msgid "_Book title" -msgstr "_Boktittel" +msgstr "Boktittel" #. tfGGx #: extensions/uiconfig/sbibliography/ui/generalpage.ui:207 @@ -3714,7 +3719,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:246 msgctxt "generalpage|month" msgid "_Month" -msgstr "_Måned" +msgstr "Måned" #. 6XJ26 #: extensions/uiconfig/sbibliography/ui/generalpage.ui:259 @@ -3762,7 +3767,7 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:366 msgctxt "generalpage|note" msgid "_Note" -msgstr "_Merknad" +msgstr "Merknad" #. DVS8w #: extensions/uiconfig/sbibliography/ui/generalpage.ui:379 @@ -3780,31 +3785,31 @@ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:421 msgctxt "generalpage|custom1" msgid "User-defined field _1" -msgstr "Bruker definert felt_1" +msgstr "Brukerdefinert felt 1" #. ZgVyG #: extensions/uiconfig/sbibliography/ui/generalpage.ui:434 msgctxt "generalpage|custom4" msgid "User-defined field _4" -msgstr "Brukerdefinert felt_4" +msgstr "Brukerdefinert felt 4" #. aDQFC #: extensions/uiconfig/sbibliography/ui/generalpage.ui:447 msgctxt "generalpage|custom2" msgid "User-defined field _2" -msgstr "Brukerdefinert felt_2" +msgstr "Brukerdefinert felt 2" #. X8g3V #: extensions/uiconfig/sbibliography/ui/generalpage.ui:460 msgctxt "generalpage|custom5" msgid "User-defined field _5" -msgstr "Brukerdefinert felt_5" +msgstr "Brukerdefinert felt 5" #. ctDaZ #: extensions/uiconfig/sbibliography/ui/generalpage.ui:473 msgctxt "generalpage|custom3" msgid "User-defined field _3" -msgstr "Brukerdefinert felt_3" +msgstr "Brukerdefinert felt 3" #. x9s9K #: extensions/uiconfig/sbibliography/ui/generalpage.ui:618 @@ -3822,25 +3827,25 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:107 msgctxt "mappingdialog|label2" msgid "_Short name" -msgstr "_Kortnavn" +msgstr "Kortnavn" #. PcPgF #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:121 msgctxt "mappingdialog|label3" msgid "_Author(s)" -msgstr "_Forfatter(e)" +msgstr "Forfatter(e)" #. DBBiK #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:135 msgctxt "mappingdialog|label4" msgid "_Publisher" -msgstr "_Utgiver" +msgstr "Utgiver" #. 4TG3U #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:149 msgctxt "mappingdialog|label5" msgid "_Chapter" -msgstr "_Kapittel" +msgstr "Kapittel" #. DZwft #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:163 @@ -3852,13 +3857,13 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:223 msgctxt "mappingdialog|label7" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. TxEfY #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:237 msgctxt "mappingdialog|label8" msgid "_Year" -msgstr "_År" +msgstr "År" #. qLU7E #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:251 @@ -3876,7 +3881,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:315 msgctxt "mappingdialog|label11" msgid "_ISBN" -msgstr "_ISBN" +msgstr "ISBN" #. aeCGS #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:329 @@ -3894,7 +3899,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:405 msgctxt "mappingdialog|label14" msgid "_Book title" -msgstr "_Boktittel" +msgstr "Boktittel" #. FEe9P #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:419 @@ -3906,7 +3911,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:431 msgctxt "mappingdialog|label16" msgid "Publication t_ype" -msgstr "_Publikasjonstype" +msgstr "Publikasjonstype" #. KVHpY #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:481 @@ -3936,7 +3941,7 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:573 msgctxt "mappingdialog|label21" msgid "_Month" -msgstr "_Måned" +msgstr "Måned" #. EacrE #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:611 @@ -3978,31 +3983,31 @@ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:765 msgctxt "mappingdialog|label28" msgid "User-defined field _1" -msgstr "Bruker definert felt_1" +msgstr "Brukerdefinert felt 1" #. FDtfJ #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:779 msgctxt "mappingdialog|label29" msgid "User-defined field _2" -msgstr "Brukerdefinert felt_2" +msgstr "Brukerdefinert felt 2" #. EPoqo #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:793 msgctxt "mappingdialog|label30" msgid "User-defined field _3" -msgstr "Brukerdefinert felt_3" +msgstr "Brukerdefinert felt 3" #. LzUki #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:807 msgctxt "mappingdialog|label31" msgid "User-defined field _4" -msgstr "Brukerdefinert felt_4" +msgstr "Brukerdefinert felt 4" #. jY3cj #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:821 msgctxt "mappingdialog|label32" msgid "User-defined field _5" -msgstr "Brukerdefinert felt_5" +msgstr "Brukerdefinert felt 5" #. wkCw6 #: extensions/uiconfig/sbibliography/ui/mappingdialog.ui:1033 @@ -4092,7 +4097,7 @@ #: extensions/uiconfig/scanner/ui/griddialog.ui:125 msgctxt "griddialog|resetButton" msgid "_Set" -msgstr "_Sett" +msgstr "Sett" #. DEE74 #: extensions/uiconfig/scanner/ui/sanedialog.ui:46 @@ -4104,49 +4109,49 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:66 msgctxt "sanedialog|deviceInfoButton" msgid "About Dev_ice" -msgstr "Om _enhet" +msgstr "Om enhet" #. 3EeXn #: extensions/uiconfig/scanner/ui/sanedialog.ui:80 msgctxt "sanedialog|previewButton" msgid "Create Previe_w" -msgstr "Lag _forhåndsvisning" +msgstr "Lag forhåndsvisning" #. ihLsf #: extensions/uiconfig/scanner/ui/sanedialog.ui:94 msgctxt "sanedialog|scanButton" msgid "_Scan" -msgstr "_Skann" +msgstr "Skann" #. gFREe #: extensions/uiconfig/scanner/ui/sanedialog.ui:164 msgctxt "sanedialog|label3" msgid "_Left:" -msgstr "_Venstre:" +msgstr "Venstre:" #. ErDB4 #: extensions/uiconfig/scanner/ui/sanedialog.ui:178 msgctxt "sanedialog|label4" msgid "To_p:" -msgstr "_Øverst:" +msgstr "Øverst:" #. bSfBR #: extensions/uiconfig/scanner/ui/sanedialog.ui:192 msgctxt "sanedialog|label5" msgid "_Right:" -msgstr "_Høyre:" +msgstr "Høyre:" #. NGDq3 #: extensions/uiconfig/scanner/ui/sanedialog.ui:206 msgctxt "sanedialog|label6" msgid "_Bottom:" -msgstr "_Nederst:" +msgstr "Nederst:" #. YfU4m #: extensions/uiconfig/scanner/ui/sanedialog.ui:280 msgctxt "sanedialog|label1" msgid "Scan Area" -msgstr "" +msgstr "Skann område" #. FZ7Vw #: extensions/uiconfig/scanner/ui/sanedialog.ui:339 @@ -4158,13 +4163,13 @@ #: extensions/uiconfig/scanner/ui/sanedialog.ui:373 msgctxt "sanedialog|label7" msgid "Device _used" -msgstr "_Benyttet enhet" +msgstr "Benyttet enhet" #. W6hNP #: extensions/uiconfig/scanner/ui/sanedialog.ui:387 msgctxt "sanedialog|label8" msgid "Resolution [_DPI]" -msgstr "Oppløsning [_DPI]" +msgstr "Oppløsning [DPI]" #. t3Tuq #: extensions/uiconfig/scanner/ui/sanedialog.ui:442 @@ -4278,7 +4283,7 @@ #: extensions/uiconfig/spropctrlr/ui/labelselectiondialog.ui:166 msgctxt "labelselectiondialog|noassignment" msgid "_No assignment" -msgstr "_Ingen tildeling" +msgstr "Ingen tildeling" #. 8EkFC #: extensions/uiconfig/spropctrlr/ui/multiline.ui:72 @@ -4302,19 +4307,19 @@ #: extensions/uiconfig/spropctrlr/ui/taborder.ui:171 msgctxt "taborder|upB" msgid "_Move Up" -msgstr "Flytt _opp" +msgstr "Flytt opp" #. LNZFB #: extensions/uiconfig/spropctrlr/ui/taborder.ui:185 msgctxt "taborder|downB" msgid "Move _Down" -msgstr "Flytt _ned" +msgstr "Flytt ned" #. zAGWY #: extensions/uiconfig/spropctrlr/ui/taborder.ui:199 msgctxt "taborder|autoB" msgid "_Automatic Sort" -msgstr "_Automatisk sortering" +msgstr "Automatisk sortering" #. nQDDz #: extensions/uiconfig/spropctrlr/ui/taborder.ui:225 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/extras/source/autocorr/emoji.po libreoffice-7.1.3~rc2/translations/source/nb/extras/source/autocorr/emoji.po --- libreoffice-7.1.2~rc2/translations/source/nb/extras/source/autocorr/emoji.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/extras/source/autocorr/emoji.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-02-21 14:32+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1516236479.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -8874,7 +8874,7 @@ "CLOCK_FACE_ONE-THIRTY\n" "LngText.text" msgid "1.30" -msgstr "klokka 1.30" +msgstr "klokken 1.30" #. 🕝 (U+1F55D), see http://wiki.documentfoundation.org/Emoji #. ac4Kx @@ -8884,7 +8884,7 @@ "CLOCK_FACE_TWO-THIRTY\n" "LngText.text" msgid "2.30" -msgstr "klokka 2.30" +msgstr "klokken 2.30" #. 🕞 (U+1F55E), see http://wiki.documentfoundation.org/Emoji #. sd7EA @@ -8894,7 +8894,7 @@ "CLOCK_FACE_THREE-THIRTY\n" "LngText.text" msgid "3.30" -msgstr "klokka 3.30" +msgstr "klokken 3.30" #. 🕟 (U+1F55F), see http://wiki.documentfoundation.org/Emoji #. CZwtb @@ -8904,7 +8904,7 @@ "CLOCK_FACE_FOUR-THIRTY\n" "LngText.text" msgid "4.30" -msgstr "klokka 4.30" +msgstr "klokken 4.30" #. 🕠 (U+1F560), see http://wiki.documentfoundation.org/Emoji #. VunGj @@ -8914,7 +8914,7 @@ "CLOCK_FACE_FIVE-THIRTY\n" "LngText.text" msgid "5.30" -msgstr "klokka 5.30" +msgstr "klokken 5.30" #. 🕡 (U+1F561), see http://wiki.documentfoundation.org/Emoji #. WgH9r @@ -8924,7 +8924,7 @@ "CLOCK_FACE_SIX-THIRTY\n" "LngText.text" msgid "6.30" -msgstr "klokka 6.30" +msgstr "klokken 6.30" #. 🕢 (U+1F562), see http://wiki.documentfoundation.org/Emoji #. HfCBL @@ -8934,7 +8934,7 @@ "CLOCK_FACE_SEVEN-THIRTY\n" "LngText.text" msgid "7.30" -msgstr "klokka 7.30" +msgstr "klokken 7.30" #. 🕣 (U+1F563), see http://wiki.documentfoundation.org/Emoji #. GGeBZ @@ -8944,7 +8944,7 @@ "CLOCK_FACE_EIGHT-THIRTY\n" "LngText.text" msgid "8.30" -msgstr "klokka 8.30" +msgstr "klokken 8.30" #. 🕤 (U+1F564), see http://wiki.documentfoundation.org/Emoji #. DCtfy @@ -8954,7 +8954,7 @@ "CLOCK_FACE_NINE-THIRTY\n" "LngText.text" msgid "9.30" -msgstr "klokka 9.30" +msgstr "klokken 9.30" #. 🕥 (U+1F565), see http://wiki.documentfoundation.org/Emoji #. tJG5J @@ -8964,7 +8964,7 @@ "CLOCK_FACE_TEN-THIRTY\n" "LngText.text" msgid "10.30" -msgstr "klokka 10.30" +msgstr "klokken 10.30" #. 🕦 (U+1F566), see http://wiki.documentfoundation.org/Emoji #. g55YB @@ -8974,7 +8974,7 @@ "CLOCK_FACE_ELEVEN-THIRTY\n" "LngText.text" msgid "11.30" -msgstr "klokka 11.30" +msgstr "klokken 11.30" #. 🕧 (U+1F567), see http://wiki.documentfoundation.org/Emoji #. PGjbq @@ -8984,7 +8984,7 @@ "CLOCK_FACE_TWELVE-THIRTY\n" "LngText.text" msgid "12.30" -msgstr "klokka 12.30" +msgstr "klokken 12.30" #. 🗻 (U+1F5FB), see http://wiki.documentfoundation.org/Emoji #. yzedv @@ -9164,7 +9164,7 @@ "RELIEVED_FACE\n" "LngText.text" msgid "relieved" -msgstr "letta" +msgstr "lettet" #. 😍 (U+1F60D), see http://wiki.documentfoundation.org/Emoji #. BhNrx @@ -9344,7 +9344,7 @@ "DISAPPOINTED_FACE\n" "LngText.text" msgid "disappointed" -msgstr "skuffa" +msgstr "skuffet" #. 😟 (U+1F61F), see http://wiki.documentfoundation.org/Emoji #. H4sAW @@ -9544,7 +9544,7 @@ "ASTONISHED_FACE\n" "LngText.text" msgid "astonished" -msgstr "forbausa" +msgstr "forbauset" #. 😳 (U+1F633), see http://wiki.documentfoundation.org/Emoji #. QtFif @@ -12184,7 +12184,7 @@ "INCREASE_FONT_SIZE_SYMBOL\n" "LngText.text" msgid "font2" -msgstr "skrifttype2" +msgstr "font2" #. 🗕 (U+1F5D5), see http://wiki.documentfoundation.org/Emoji #. KeAPT @@ -13234,7 +13234,7 @@ "KAABA\n" "LngText.text" msgid "Kaaba" -msgstr "Kaamba" +msgstr "Kaaba" #. 🏐 (U+1F3D0), see http://wiki.documentfoundation.org/Emoji #. JnWWX @@ -14404,7 +14404,7 @@ "GIRAFFE\n" "LngText.text" msgid "giraffe" -msgstr "sjiraff" +msgstr "giraff" #. 🦔 (U+1F994), see http://wiki.documentfoundation.org/Emoji #. m5ZyA @@ -14864,7 +14864,7 @@ "SUBSCRIPT_ONE\n" "LngText.text" msgid "_1" -msgstr "_1" +msgstr "1" #. ₂ (U+02082), see http://wiki.documentfoundation.org/Emoji #. gL88Z @@ -14874,7 +14874,7 @@ "SUBSCRIPT_TWO\n" "LngText.text" msgid "_2" -msgstr "_2" +msgstr "2" #. ₃ (U+02083), see http://wiki.documentfoundation.org/Emoji #. gSTF9 @@ -14884,7 +14884,7 @@ "SUBSCRIPT_THREE\n" "LngText.text" msgid "_3" -msgstr "_3" +msgstr "3" #. ₄ (U+02084), see http://wiki.documentfoundation.org/Emoji #. qW6Ce @@ -14894,7 +14894,7 @@ "SUBSCRIPT_FOUR\n" "LngText.text" msgid "_4" -msgstr "_4" +msgstr "4" #. ₅ (U+02085), see http://wiki.documentfoundation.org/Emoji #. B4VTa @@ -14904,7 +14904,7 @@ "SUBSCRIPT_FIVE\n" "LngText.text" msgid "_5" -msgstr "_5" +msgstr "5" #. ₆ (U+02086), see http://wiki.documentfoundation.org/Emoji #. WsC7f @@ -14914,7 +14914,7 @@ "SUBSCRIPT_SIX\n" "LngText.text" msgid "_6" -msgstr "_6" +msgstr "6" #. ₇ (U+02087), see http://wiki.documentfoundation.org/Emoji #. 2rEnp @@ -14924,7 +14924,7 @@ "SUBSCRIPT_SEVEN\n" "LngText.text" msgid "_7" -msgstr "_7" +msgstr "7" #. ₈ (U+02088), see http://wiki.documentfoundation.org/Emoji #. 5SGSg @@ -14934,7 +14934,7 @@ "SUBSCRIPT_EIGHT\n" "LngText.text" msgid "_8" -msgstr "_8" +msgstr "8" #. ₉ (U+02089), see http://wiki.documentfoundation.org/Emoji #. Kaa2h @@ -14944,7 +14944,7 @@ "SUBSCRIPT_NINE\n" "LngText.text" msgid "_9" -msgstr "_9" +msgstr "9" #. ₀ (U+02080), see http://wiki.documentfoundation.org/Emoji #. op8an @@ -14954,7 +14954,7 @@ "SUBSCRIPT_ZERO\n" "LngText.text" msgid "_0" -msgstr "_0" +msgstr "0" #. ₊ (U+0208A), see http://wiki.documentfoundation.org/Emoji #. FE6Lq @@ -14964,7 +14964,7 @@ "SUBSCRIPT_PLUS_SIGN\n" "LngText.text" msgid "_+" -msgstr "_+" +msgstr "+" #. ₋ (U+0208B), see http://wiki.documentfoundation.org/Emoji #. PdL5c @@ -14974,7 +14974,7 @@ "SUBSCRIPT_MINUS\n" "LngText.text" msgid "_-" -msgstr "_-" +msgstr "-" #. ₌ (U+0208C), see http://wiki.documentfoundation.org/Emoji #. 97EG8 @@ -14984,7 +14984,7 @@ "SUBSCRIPT_EQUALS_SIGN\n" "LngText.text" msgid "_=" -msgstr "_=" +msgstr "=" #. ₍ (U+0208D), see http://wiki.documentfoundation.org/Emoji #. pF9N5 @@ -14994,7 +14994,7 @@ "SUBSCRIPT_LEFT_PARENTHESIS\n" "LngText.text" msgid "_(" -msgstr "_(" +msgstr "(" #. ₎ (U+0208E), see http://wiki.documentfoundation.org/Emoji #. kCT2R @@ -15004,7 +15004,7 @@ "SUBSCRIPT_RIGHT_PARENTHESIS\n" "LngText.text" msgid "_)" -msgstr "_)" +msgstr ")" #. ᵃ (U+01D43), see http://wiki.documentfoundation.org/Emoji #. huaxo @@ -15454,7 +15454,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_A\n" "LngText.text" msgid "_a" -msgstr "_a" +msgstr "a" #. ₑ (U+02091), see http://wiki.documentfoundation.org/Emoji #. AjRgG @@ -15464,7 +15464,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_E\n" "LngText.text" msgid "_e" -msgstr "_e" +msgstr "e" #. ₕ (U+02095), see http://wiki.documentfoundation.org/Emoji #. PEzPP @@ -15474,7 +15474,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_H\n" "LngText.text" msgid "_h" -msgstr "_h" +msgstr "h" #. ᵢ (U+01D62), see http://wiki.documentfoundation.org/Emoji #. oVoDX @@ -15484,7 +15484,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_I\n" "LngText.text" msgid "_i" -msgstr "_i" +msgstr "i" #. ⱼ (U+02C7C), see http://wiki.documentfoundation.org/Emoji #. eAM4q @@ -15494,7 +15494,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_J\n" "LngText.text" msgid "_j" -msgstr "_j" +msgstr "j" #. ₖ (U+02096), see http://wiki.documentfoundation.org/Emoji #. 5ZgCG @@ -15504,7 +15504,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_K\n" "LngText.text" msgid "_k" -msgstr "_k" +msgstr "k" #. ₗ (U+02097), see http://wiki.documentfoundation.org/Emoji #. xvYvD @@ -15514,7 +15514,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_L\n" "LngText.text" msgid "_l" -msgstr "_l" +msgstr "l" #. ₘ (U+02098), see http://wiki.documentfoundation.org/Emoji #. GCDfd @@ -15524,7 +15524,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_M\n" "LngText.text" msgid "_m" -msgstr "_m" +msgstr "m" #. ₙ (U+02099), see http://wiki.documentfoundation.org/Emoji #. GrwUs @@ -15534,7 +15534,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_N\n" "LngText.text" msgid "_n" -msgstr "_n" +msgstr "n" #. ₒ (U+02092), see http://wiki.documentfoundation.org/Emoji #. ZG9m2 @@ -15544,7 +15544,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_O\n" "LngText.text" msgid "_o" -msgstr "_o" +msgstr "o" #. ₚ (U+0209A), see http://wiki.documentfoundation.org/Emoji #. HaoJt @@ -15554,7 +15554,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_P\n" "LngText.text" msgid "_p" -msgstr "_p" +msgstr "p" #. ᵣ (U+01D63), see http://wiki.documentfoundation.org/Emoji #. Yeg7A @@ -15564,7 +15564,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_R\n" "LngText.text" msgid "_r" -msgstr "_r" +msgstr "r" #. ₛ (U+0209B), see http://wiki.documentfoundation.org/Emoji #. F3MHa @@ -15574,7 +15574,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_S\n" "LngText.text" msgid "_s" -msgstr "_s" +msgstr "s" #. ₜ (U+0209C), see http://wiki.documentfoundation.org/Emoji #. nKDsn @@ -15584,7 +15584,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_T\n" "LngText.text" msgid "_t" -msgstr "_t" +msgstr "t" #. ᵤ (U+01D64), see http://wiki.documentfoundation.org/Emoji #. NqYaD @@ -15594,7 +15594,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_U\n" "LngText.text" msgid "_u" -msgstr "_u" +msgstr "u" #. ᵥ (U+01D65), see http://wiki.documentfoundation.org/Emoji #. 6P9ZQ @@ -15604,7 +15604,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_V\n" "LngText.text" msgid "_v" -msgstr "_v" +msgstr "v" #. ₓ (U+02093), see http://wiki.documentfoundation.org/Emoji #. BCsM8 @@ -15614,7 +15614,7 @@ "LATIN_SUBSCRIPT_SMALL_LETTER_X\n" "LngText.text" msgid "_x" -msgstr "_x" +msgstr "x" #. ᵅ (U+01D45), see http://wiki.documentfoundation.org/Emoji #. gytmK @@ -15764,4 +15764,4 @@ "GREEK_SUBSCRIPT_SMALL_LETTER_CHI\n" "LngText.text" msgid "_chi" -msgstr "_chi" +msgstr "chi" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/filter/messages.po libreoffice-7.1.3~rc2/translations/source/nb/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-09-03 23:35+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563560127.000000\n" #. 5AQgJ @@ -237,7 +237,7 @@ #: filter/inc/strings.hrc:67 msgctxt "STR_WARN_PASSWORD_PDFA" msgid "PDF/A does not allow encryption. The exported PDF file will not be password protected." -msgstr "PDF/A tillater ikke kryptering. Den eksporterte PDF-fila vil ikke være passordbeskyttet." +msgstr "PDF/A tillater ikke kryptering. Den eksporterte PDF-filen vil ikke være passordbeskyttet." #. XX5fd #: filter/inc/strings.hrc:68 @@ -273,13 +273,13 @@ #: filter/inc/strings.hrc:73 msgctxt "STR_WARN_FORMACTION_PDFA" msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped" -msgstr "En skjemakontroll inneholder en handling som ikke er støtta av PDF/A-standarden. Handlingen ble hoppet over" +msgstr "En skjemakontroll inneholder en handling som ikke er støttet av PDF/A-standarden. Handlingen ble hoppet over" #. d2ndY #: filter/inc/strings.hrc:74 msgctxt "STR_WARN_TRANSP_CONVERTED" msgid "Some objects were converted to an image in order to remove transparencies, because the target PDF format does not support transparencies. Possibly better results can be achieved if you remove the transparent objects before exporting." -msgstr "Noen objekter ble omgjort til bilder for å fjerne gjennomsiktighet fordi mål-PDF-fila ikke støtter dette. Det er mulig at fjerning av gjennomsiktige objekter før eksportering vil gi et bedre resultat." +msgstr "Noen objekter ble omgjort til bilder for å fjerne gjennomsiktighet fordi mål-PDF-filen ikke støtter dette. Det er mulig at fjerning av gjennomsiktige objekter før eksportering vil gi et bedre resultat." #. qtCcB #: filter/inc/strings.hrc:75 @@ -309,7 +309,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:57 msgctxt "pdfgeneralpage|extended_tip|all" msgid "Exports all defined print ranges. If no print range is defined, exports the entire document." -msgstr "" +msgstr "Eksporterer alle definerte utskriftsområder. Hvis det ikke er definert noe utskriftsområde, eksporterer du hele dokumentet." #. NXztB #: filter/uiconfig/ui/pdfgeneralpage.ui:69 @@ -321,25 +321,25 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:84 msgctxt "pdfgeneralpage|extended_tip|range" msgid "Exports the pages you type in the box." -msgstr "" +msgstr "Eksporterer sidene du angir i boksen." #. WTSeS #: filter/uiconfig/ui/pdfgeneralpage.ui:95 msgctxt "pdfgeneralpage|selection" msgid "_Selection" -msgstr "_Utvalg" +msgstr "Utvalg" #. RQeDb #: filter/uiconfig/ui/pdfgeneralpage.ui:106 msgctxt "pdfgeneralpage|extended_tip|selection" msgid "Exports the current selection." -msgstr "" +msgstr "Eksporterer gjeldende utvalg." #. qQrdx #: filter/uiconfig/ui/pdfgeneralpage.ui:128 msgctxt "pdfgeneralpage|extended_tip|pages" msgid "Exports the pages you type in the box." -msgstr "" +msgstr "Eksporterer sidene du angir i boksen." #. tFeCH #: filter/uiconfig/ui/pdfgeneralpage.ui:142 @@ -357,7 +357,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:170 msgctxt "pdfgeneralpage|selectedsheets" msgid "_Selection/Selected sheet(s)" -msgstr "_Valg/Valgte ark" +msgstr "Valg/Valgte ark" #. MXtmZ #: filter/uiconfig/ui/pdfgeneralpage.ui:185 @@ -375,19 +375,19 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:230 msgctxt "pdfgeneralpage|extended_tip|losslesscompress" msgid "Selects a lossless compression of images. All pixels are preserved." -msgstr "" +msgstr "Velger en tapsfri komprimering av bilder. Alle piksler er bevart." #. ZTNFs #: filter/uiconfig/ui/pdfgeneralpage.ui:242 msgctxt "pdfgeneralpage|reduceresolution" msgid "Reduce ima_ge resolution" -msgstr "" +msgstr "Reduser bildeoppløsningen" #. bAtCV #: filter/uiconfig/ui/pdfgeneralpage.ui:255 msgctxt "pdfgeneralpage|extended_tip|reduceresolution" msgid "Select to resample or down-size the images to a lower number of pixels per inch." -msgstr "" +msgstr "Velg for å redusere størrelsen på bildene til et lavere antall piksler per tomme." #. XHeTx #: filter/uiconfig/ui/pdfgeneralpage.ui:270 @@ -429,31 +429,31 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:289 msgctxt "pdfgeneralpage|extended_tip|resolution" msgid "Select the target resolution for the images." -msgstr "" +msgstr "Velg måloppløsningen for bildene." #. mEbKx #: filter/uiconfig/ui/pdfgeneralpage.ui:313 msgctxt "pdfgeneralpage|extended_tip|quality" msgid "Enter the quality level for JPEG compression." -msgstr "" +msgstr "Angi kvalitetsnivået for JPEG-komprimering." #. FP56V #: filter/uiconfig/ui/pdfgeneralpage.ui:335 msgctxt "pdfgeneralpage|jpegcompress" msgid "_JPEG compression" -msgstr "_JPEG-komprimering" +msgstr "JPEG-komprimering" #. PZCPi #: filter/uiconfig/ui/pdfgeneralpage.ui:345 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 "" +msgstr "Velg et JPEG-kompresjonsnivå. Med et høyt kvalitetsnivå er nesten alle piksler bevart. Med et lavt kvalitetsnivå går noen piksler tapt og artefakter introduseres, men filstørrelsene reduseres." #. ST3Rc #: filter/uiconfig/ui/pdfgeneralpage.ui:363 msgctxt "pdfgeneralpage|label6" msgid "_Quality:" -msgstr "_Kvalitet:" +msgstr "Kvalitet:" #. cFwGA #: filter/uiconfig/ui/pdfgeneralpage.ui:389 @@ -465,7 +465,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:423 msgctxt "pdfgeneralpage|watermark" msgid "Sign with _watermark" -msgstr "Signer med _vannmerke" +msgstr "Signer med vannmerke" #. JtBsL #: filter/uiconfig/ui/pdfgeneralpage.ui:452 @@ -483,7 +483,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:518 msgctxt "pdfgeneralpage|embed" msgid "Hybrid PDF (em_bed ODF file)" -msgstr "Hybrid-PDF (_innebygd ODF-fil)" +msgstr "Hybrid-PDF (innebygd ODF-fil)" #. vzxG2 #: filter/uiconfig/ui/pdfgeneralpage.ui:522 @@ -495,13 +495,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:528 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 "" +msgstr "Denne innstillingen lar deg eksportere dokumentet som en PDF-fil som inneholder to filformater: PDF og ODF." #. RAvA6 #: filter/uiconfig/ui/pdfgeneralpage.ui:539 msgctxt "pdfgeneralpage|tagged" msgid "_Tagged PDF (add document structure)" -msgstr "_Tagget PDF (legg til dokumentstruktur)" +msgstr "Tagget PDF (legg til dokumentstruktur)" #. cAm8Z #: filter/uiconfig/ui/pdfgeneralpage.ui:543 @@ -513,13 +513,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:549 msgctxt "pdfgeneralpage|extended_tip|tagged" msgid "Select to write PDF tags. This can increase file size by huge amounts." -msgstr "" +msgstr "Velg, for å skrive PDF-koder. Dette kan vesentlig øke filstørrelsen." #. 6sDFd #: filter/uiconfig/ui/pdfgeneralpage.ui:560 msgctxt "pdfgeneralpage|forms" msgid "Create PDF for_m" -msgstr "" +msgstr "Opprett PDF skjema" #. 3Vg8V #: filter/uiconfig/ui/pdfgeneralpage.ui:564 @@ -531,19 +531,19 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:570 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 "" +msgstr "Velg å lage et PDF-skjema. Dette kan fylles ut og skrives ut av brukeren av PDF-dokumentet." #. B7zan #: filter/uiconfig/ui/pdfgeneralpage.ui:593 msgctxt "pdfgeneralpage|allowdups" msgid "Allow duplicate field _names" -msgstr "Tillat _duplisering av feltnavn" +msgstr "Tillat duplisering av feltnavn" #. D4MmM #: filter/uiconfig/ui/pdfgeneralpage.ui:602 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 "" +msgstr "Lar deg bruke samme feltnavn for flere felt i den genererte PDF-filen. Hvis deaktivert, vil feltnavn eksporteres ved hjelp av genererte unike navn." #. tkPCH #: filter/uiconfig/ui/pdfgeneralpage.ui:617 @@ -573,19 +573,19 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:624 msgctxt "pdfgeneralpage|extended_tip|format" msgid "Select the format of submitting forms from within the PDF file." -msgstr "" +msgstr "Velg formatet for å sende skjemaer fra PDF-filen." #. ECLBB #: filter/uiconfig/ui/pdfgeneralpage.ui:646 msgctxt "pdfgeneralpage|label7" msgid "Submit _format:" -msgstr "Innsendings_format:" +msgstr "Innsendingsformat:" #. hedQy #: filter/uiconfig/ui/pdfgeneralpage.ui:679 msgctxt "pdfgeneralpage|pdfa" msgid "Archive (P_DF/A, ISO 19005)" -msgstr "Arkiv P_DF/A (ISO 19005)" +msgstr "Arkiv PDF/A (ISO 19005)" #. qQjPA #: filter/uiconfig/ui/pdfgeneralpage.ui:683 @@ -597,19 +597,19 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:689 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 "" +msgstr "Konverterer til PDF/A-2b- eller PDF/A-1b-format. Dette er definert som et elektronisk dokumentfilformat for langvarig bevaring. Alle skriftene som ble brukt i kildedokumentet, blir innebygd i den genererte PDF-filen. PDF-koder blir skrevet." #. jmaDc #: filter/uiconfig/ui/pdfgeneralpage.ui:739 msgctxt "pdfgeneralpage|pdfaversion" msgid "PDF_/A version:" -msgstr "" +msgstr "PDF/A versjon:" #. VQGHi #: filter/uiconfig/ui/pdfgeneralpage.ui:773 msgctxt "pdfgeneralpage|pdfua" msgid "Universal Accessibilit_y (PDF/UA)" -msgstr "" +msgstr "Universell tilgjengelighet (PDF/UA)" #. 4B3FD #: filter/uiconfig/ui/pdfgeneralpage.ui:777 @@ -627,13 +627,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:828 msgctxt "pdfgeneralpage|bookmarks" msgid "Export outl_ines" -msgstr "" +msgstr "Eksporter disposisjoner" #. qw9My #: filter/uiconfig/ui/pdfgeneralpage.ui:837 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 "" +msgstr "Velg for å eksportere bokmerker eller Writer-dokumenter som PDF-bokmerker. Bokmerker opprettes for alle oversiktsavsnitt (Verktøy - Kapittelnummerering) og for alle innholdsfortegnelseoppføringer som du tilordnet hyperkoblinger i kildedokumentet." #. kQbPh #: filter/uiconfig/ui/pdfgeneralpage.ui:848 @@ -645,25 +645,25 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:863 msgctxt "pdfgeneralpage|comments" msgid "Comm_ents as PDF annotations" -msgstr "" +msgstr "Kommentarer som PDF-merknader" #. SijbK #: filter/uiconfig/ui/pdfgeneralpage.ui:872 msgctxt "pdfgeneralpage|extended_tip|comments" msgid "Select to export comments of Writer and Calc documents as PDF annotations." -msgstr "" +msgstr "Velg for å eksportere kommentarer til Writer- og Calc-dokumenter som PDF-merknader." #. y9evS #: filter/uiconfig/ui/pdfgeneralpage.ui:883 msgctxt "pdfgeneralpage|emptypages" msgid "Exp_ort automatically inserted blank pages" -msgstr "Eksporter automatisk innsatte _blanke sider" +msgstr "Eksporter automatisk innsatte blanke sider" #. ZkGWy #: filter/uiconfig/ui/pdfgeneralpage.ui:892 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 "" +msgstr "Hvis den er slått på, eksporteres automatisk tomme sider til PDF-filen. Dette er best hvis du skriver ut pdf-filen tosidig. Eksempel: I en bok er en kapittelavsnitt satt til å alltid starte med en oddetallsside. Hvis forrige kapittel ender på en oddetallsside, setter %PRODUCTNAME inn en tom side. Dette alternativet kontrollerer om partall siden skal eksporteres eller ikke." #. sHqKP #: filter/uiconfig/ui/pdfgeneralpage.ui:903 @@ -675,13 +675,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:918 msgctxt "pdfgeneralpage|hiddenpages" msgid "Export _hidden pages" -msgstr "Eksporter _skjulte sider" +msgstr "Eksporter skjulte sider" #. ghuXR #: filter/uiconfig/ui/pdfgeneralpage.ui:933 msgctxt "pdfgeneralpage|notes" msgid "Export _notes pages" -msgstr "Eksporter _merknadsider" +msgstr "Eksporter merknadsider" #. BGvC2 #: filter/uiconfig/ui/pdfgeneralpage.ui:953 @@ -705,7 +705,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:33 msgctxt "pdflinkspage|export" msgid "Export outlines as named destinations" -msgstr "" +msgstr "Eksporter disposisjoner som navngitte destinasjoner" #. BDf69 #: filter/uiconfig/ui/pdflinkspage.ui:43 @@ -723,19 +723,19 @@ #: filter/uiconfig/ui/pdflinkspage.ui:64 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 "" +msgstr "Aktiver denne avkrysningsruten for å konvertere URL-ene som refererer til andre ODF-filer til PDF-filer med samme navn. I de refererende URL-ene blir utvidelsene .odt, .odp, .ods, .odg og .odm konvertert til utvidelsen .pdf." #. 6Lyp3 #: filter/uiconfig/ui/pdflinkspage.ui:75 msgctxt "pdflinkspage|exporturl" msgid "Export _URLs relative to file system" -msgstr "Eksporter _URL-er relativt til filsystemet" +msgstr "Eksporter URL-er relativt til filsystemet" #. RcdUF #: filter/uiconfig/ui/pdflinkspage.ui:85 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 "" +msgstr "Aktiver denne avkrysningsruten for å eksportere URL-er til andre dokumenter som relative URL-er i filsystemet. Se \"relative hyperkoblinger\" i Hjelp." #. biumY #: filter/uiconfig/ui/pdflinkspage.ui:102 @@ -753,7 +753,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:145 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 "" +msgstr "Koblinger fra PDF-dokumentet til andre dokumenter vil bli håndtert slik det er spesifisert i operativsystemet." #. DNRK8 #: filter/uiconfig/ui/pdflinkspage.ui:156 @@ -765,19 +765,19 @@ #: filter/uiconfig/ui/pdflinkspage.ui:166 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 "" +msgstr "Tverrdokumentlenker åpnes med PDF-leserprogrammet som for øyeblikket viser dokumentet. PDF-leserprogrammet må kunne håndtere den angitte filtypen inne i hyperkoblingen." #. wPem9 #: filter/uiconfig/ui/pdflinkspage.ui:177 msgctxt "pdflinkspage|openinternet" msgid "Open _with Internet browser" -msgstr "Åpne med _nettleseren" +msgstr "Åpne med nettleseren" #. xfRr2 #: filter/uiconfig/ui/pdflinkspage.ui:187 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 "" +msgstr "Kryssdokumentkoblinger åpnes med nettleseren. Nettleseren må kunne håndtere den angitte filtypen inne i hyperkoblingen." #. B9TGg #: filter/uiconfig/ui/pdflinkspage.ui:204 @@ -795,7 +795,7 @@ #: filter/uiconfig/ui/pdfoptionsdialog.ui:41 msgctxt "pdfoptionsdialog|ok" msgid "E_xport" -msgstr "_Eksporter" +msgstr "Eksporter" #. Y2Mem #: filter/uiconfig/ui/pdfoptionsdialog.ui:138 @@ -837,13 +837,13 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:32 msgctxt "pdfsecuritypage|setpassword" msgid "Set _Passwords…" -msgstr "Angi _passord …" +msgstr "Angi passord …" #. C9DhC #: filter/uiconfig/ui/pdfsecuritypage.ui:40 msgctxt "pdfsecuritypage|extended_tip|setpassword" msgid "Click to open a dialog where you enter the passwords." -msgstr "" +msgstr "Klikk for å åpne en dialog der du skriver inn passordene." #. 63szB #: filter/uiconfig/ui/pdfsecuritypage.ui:59 @@ -921,37 +921,37 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:304 msgctxt "pdfsecuritypage|printnone" msgid "_Not permitted" -msgstr "_Ikke tillatt" +msgstr "Ikke tillatt" #. R3Gvm #: filter/uiconfig/ui/pdfsecuritypage.ui:314 msgctxt "pdfsecuritypage|extended_tip|printnone" msgid "Printing the document is not permitted." -msgstr "" +msgstr "Utskrift av dokumentet er ikke tillatt." #. kSfrd #: filter/uiconfig/ui/pdfsecuritypage.ui:325 msgctxt "pdfsecuritypage|printlow" msgid "_Low resolution (150 dpi)" -msgstr "_Lav oppløsing (150 dpi)" +msgstr "Lav oppløsing (150 dpi)" #. kB7dx #: filter/uiconfig/ui/pdfsecuritypage.ui:335 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 "" +msgstr "Dokumentet kan bare skrives ut i lav oppløsning (150 dpi). Ikke alle PDF-lesere kan håndtere denne innstillingen." #. CmQzT #: filter/uiconfig/ui/pdfsecuritypage.ui:346 msgctxt "pdfsecuritypage|printhigh" msgid "_High resolution" -msgstr "_Høy oppløsing" +msgstr "Høy oppløsing" #. iBC7m #: filter/uiconfig/ui/pdfsecuritypage.ui:356 msgctxt "pdfsecuritypage|extended_tip|printhigh" msgid "The document can be printed in high resolution." -msgstr "" +msgstr "Dokumentet kan skrives ut i høy oppløsning." #. Gjpp4 #: filter/uiconfig/ui/pdfsecuritypage.ui:373 @@ -963,61 +963,61 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:406 msgctxt "pdfsecuritypage|changenone" msgid "No_t permitted" -msgstr "Ikke _tillatt" +msgstr "Ikke tillatt" #. McdCx #: filter/uiconfig/ui/pdfsecuritypage.ui:416 msgctxt "pdfsecuritypage|extended_tip|changenone" msgid "No changes of the content are permitted." -msgstr "" +msgstr "Ingen endringer i innholdet er tillatt." #. Vt6Zn #: filter/uiconfig/ui/pdfsecuritypage.ui:427 msgctxt "pdfsecuritypage|changeinsdel" msgid "_Inserting, deleting, and rotating pages" -msgstr "_Innsetting, fjerning og rotasjon av sider" +msgstr "Innsetting, fjerning og rotasjon av sider" #. bpyjZ #: filter/uiconfig/ui/pdfsecuritypage.ui:437 msgctxt "pdfsecuritypage|extended_tip|changeinsdel" msgid "Only inserting, deleting, and rotating pages is permitted." -msgstr "" +msgstr "Bare innsetting, sletting og rotering av sider er tillatt." #. dAmDo #: filter/uiconfig/ui/pdfsecuritypage.ui:448 msgctxt "pdfsecuritypage|changeform" msgid "_Filling in form fields" -msgstr "_Utfylling av skjemafelt" +msgstr "Utfylling av skjemafelt" #. yXs9B #: filter/uiconfig/ui/pdfsecuritypage.ui:458 msgctxt "pdfsecuritypage|extended_tip|changeform" msgid "Only filling in form fields is permitted." -msgstr "" +msgstr "Bare utfylling av skjemafelt er tillatt." #. zGE7J #: filter/uiconfig/ui/pdfsecuritypage.ui:469 msgctxt "pdfsecuritypage|changecomment" msgid "_Commenting, filling in form fields" -msgstr "_Merknader, utfylling av skjemafelt" +msgstr "Merknader, utfylling av skjemafelt" #. aeLn4 #: filter/uiconfig/ui/pdfsecuritypage.ui:479 msgctxt "pdfsecuritypage|extended_tip|changecomment" msgid "Only commenting and filling in form fields is permitted." -msgstr "" +msgstr "Bare kommentering og utfylling av skjemafelt er tillatt." #. uP8VW #: filter/uiconfig/ui/pdfsecuritypage.ui:490 msgctxt "pdfsecuritypage|changeany" msgid "_Any except extracting pages" -msgstr "_Alt utenom å ta ut sider" +msgstr "Alt utenom å ta ut sider" #. 3RDPJ #: filter/uiconfig/ui/pdfsecuritypage.ui:500 msgctxt "pdfsecuritypage|extended_tip|changeany" msgid "All changes are permitted, except extracting pages." -msgstr "" +msgstr "Alle endringer er tillatt, unntatt å trekke ut sider." #. vLxXJ #: filter/uiconfig/ui/pdfsecuritypage.ui:517 @@ -1029,13 +1029,13 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:550 msgctxt "pdfsecuritypage|enablecopy" msgid "Ena_ble copying of content" -msgstr "_Tillat kopiering av innhold" +msgstr "Tillat kopiering av innhold" #. WJuNa #: filter/uiconfig/ui/pdfsecuritypage.ui:560 msgctxt "pdfsecuritypage|extended_tip|enablecopy" msgid "Select to enable copying of content to the clipboard." -msgstr "" +msgstr "Velg for å aktivere kopiering av innhold til utklippstavlen." #. 2EMgQ #: filter/uiconfig/ui/pdfsecuritypage.ui:571 @@ -1047,7 +1047,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:581 msgctxt "pdfsecuritypage|extended_tip|enablea11y" msgid "Select to enable text access for accessibility tools." -msgstr "" +msgstr "Velg for å aktivere teksttilgang for tilgjengelighetsverktøy." #. 2hi53 #: filter/uiconfig/ui/pdfsecuritypage.ui:598 @@ -1065,7 +1065,7 @@ #: filter/uiconfig/ui/pdfsignpage.ui:58 msgctxt "pdfsignpage|extended_tip|cert" msgid "Allows you to select a certificate to be used for signing this PDF export." -msgstr "" +msgstr "Lar deg velge et sertifikat som skal brukes til å signere denne PDF-eksporten." #. xgYD9 #: filter/uiconfig/ui/pdfsignpage.ui:74 @@ -1083,25 +1083,25 @@ #: filter/uiconfig/ui/pdfsignpage.ui:136 msgctxt "pdfsignpage|extended_tip|password" msgid "Enter the password used for protecting the private key associated with the selected certificate." -msgstr "" +msgstr "Skriv inn passordet som brukes til å beskytte den private nøkkelen som er tilknyttet det valgte sertifikatet." #. 9NEtS #: filter/uiconfig/ui/pdfsignpage.ui:154 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 "" +msgstr "Disse tre feltene lar deg valgfritt legge inn tilleggsinformasjon om den digitale signaturen som skal brukes på PDF-filen (Hvor, av hvem og hvorfor den ble laget). Den blir innebygd i de aktuelle PDF-feltene og vil være synlig for alle som ser PDF-filen. Hvert, eller alle de tre feltene kan være tomme." #. uVShK #: filter/uiconfig/ui/pdfsignpage.ui:172 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 "" +msgstr "Disse tre feltene lar deg valgfritt legge inn tilleggsinformasjon om den digitale signaturen som skal brukes på PDF-filen (Hvor, av hvem og hvorfor den ble laget). Den blir innebygd i de aktuelle PDF-feltene og vil være synlig for alle som ser PDF-filen. Hvert eller alle de tre feltene kan være tomme." #. 5QBRv #: filter/uiconfig/ui/pdfsignpage.ui:190 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 "" +msgstr "Disse tre feltene lar deg valgfritt legge inn tilleggsinformasjon om den digitale signaturen som skal brukes på PDF-filen (Hvor, av hvem og hvorfor den ble laget). Den blir innebygd i de aktuelle PDF-feltene og vil være synlig for alle som ser PDF-filen. Hvert eller alle de tre feltene kan være tomme." #. wHqcD #: filter/uiconfig/ui/pdfsignpage.ui:205 @@ -1149,49 +1149,49 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:47 msgctxt "pdfuserinterfacepage|center" msgid "_Center window on screen" -msgstr "_Sentrer vinduet på skjermen" +msgstr "Sentrer vinduet på skjermen" #. fGFCM #: filter/uiconfig/ui/pdfuserinterfacepage.ui:57 msgctxt "pdfuserinterfacepage|extended_tip|center" msgid "Select to generate a PDF file that is shown in a reader window centered on screen." -msgstr "" +msgstr "Velg for å generere en PDF-fil som vises i et leservindu sentrert på skjermen." #. ZEPFF #: filter/uiconfig/ui/pdfuserinterfacepage.ui:68 msgctxt "pdfuserinterfacepage|resize" msgid "_Resize window to initial page" -msgstr "_Endre størrelsen på vinduet til førstesida" +msgstr "Endre størrelsen på vinduet til førstesiden" #. 8RErB #: filter/uiconfig/ui/pdfuserinterfacepage.ui:78 msgctxt "pdfuserinterfacepage|extended_tip|resize" msgid "Select to generate a PDF file that is shown in a window displaying the whole initial page." -msgstr "" +msgstr "Velg for å generere en PDF-fil som vises i et vindu som viser hele startsiden." #. crBwn #: filter/uiconfig/ui/pdfuserinterfacepage.ui:89 msgctxt "pdfuserinterfacepage|open" msgid "_Open in full screen mode" -msgstr "_Åpne i fullskjermmodus" +msgstr "Åpne i fullskjermmodus" #. oWaHS #: filter/uiconfig/ui/pdfuserinterfacepage.ui:99 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 "" +msgstr "Velg for å generere en PDF-fil som vises i et fullskjermleservindu foran alle andre vinduer." #. Cvzzi #: filter/uiconfig/ui/pdfuserinterfacepage.ui:110 msgctxt "pdfuserinterfacepage|display" msgid "_Display document title" -msgstr "_Vis dokumenttittelen" +msgstr "Vis dokumenttittelen" #. tdVmB #: filter/uiconfig/ui/pdfuserinterfacepage.ui:120 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 "" +msgstr "Velg for å generere en PDF-fil som vises med dokumenttittelen i leserens tittellinje." #. BtMjV #: filter/uiconfig/ui/pdfuserinterfacepage.ui:137 @@ -1203,37 +1203,37 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:169 msgctxt "pdfuserinterfacepage|toolbar" msgid "Hide _toolbar" -msgstr "Skjul _verktøylinja" +msgstr "Skjul verktøylinjen" #. eBE9L #: filter/uiconfig/ui/pdfuserinterfacepage.ui:179 msgctxt "pdfuserinterfacepage|extended_tip|toolbar" msgid "Select to hide the reader's toolbar when the document is active." -msgstr "" +msgstr "Velg for å skjule leserens verktøylinje når dokumentet er aktivt." #. YLEgH #: filter/uiconfig/ui/pdfuserinterfacepage.ui:190 msgctxt "pdfuserinterfacepage|menubar" msgid "Hide _menubar" -msgstr "Skjul _menylinja" +msgstr "Skjul menylinjen" #. qBG8G #: filter/uiconfig/ui/pdfuserinterfacepage.ui:200 msgctxt "pdfuserinterfacepage|extended_tip|menubar" msgid "Select to hide the reader's menu bar when the document is active." -msgstr "" +msgstr "Velg for å skjule leserens menylinje når dokumentet er aktivt." #. Aw2aq #: filter/uiconfig/ui/pdfuserinterfacepage.ui:211 msgctxt "pdfuserinterfacepage|window" msgid "Hide _window controls" -msgstr "Skjul _vindukontroller" +msgstr "Skjul vindukontroller" #. EhwCr #: filter/uiconfig/ui/pdfuserinterfacepage.ui:221 msgctxt "pdfuserinterfacepage|extended_tip|window" msgid "Select to hide the reader's controls when the document is active." -msgstr "" +msgstr "Velg for å skjule leserkontrollene når dokumentet er aktivt." #. xm2Lh #: filter/uiconfig/ui/pdfuserinterfacepage.ui:238 @@ -1245,13 +1245,13 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:269 msgctxt "pdfuserinterfacepage|effects" msgid "_Use transition effects" -msgstr "Bruk _overgangseffekter" +msgstr "Bruk overgangseffekter" #. BMEGm #: filter/uiconfig/ui/pdfuserinterfacepage.ui:279 msgctxt "pdfuserinterfacepage|extended_tip|effects" msgid "Select to export Impress slide transition effects to respective PDF effects." -msgstr "" +msgstr "Velg for å eksportere Imponer lysbildovergangseffekter til respektive PDF-effekter." #. JgwC9 #: filter/uiconfig/ui/pdfuserinterfacepage.ui:296 @@ -1263,85 +1263,85 @@ #: filter/uiconfig/ui/pdfuserinterfacepage.ui:329 msgctxt "pdfuserinterfacepage|allbookmarks" msgid "Show _All" -msgstr "" +msgstr "Vis Alle" #. XLd4F #: filter/uiconfig/ui/pdfuserinterfacepage.ui:339 msgctxt "pdfuserinterfacepage|extended_tip|allbookmarks" msgid "Select to show all bookmark levels when the reader opens the PDF file." -msgstr "" +msgstr "Velg for å vise alle bokmerkenivåer når leseren åpner PDF-filen." #. WzoF3 #: filter/uiconfig/ui/pdfuserinterfacepage.ui:350 msgctxt "pdfuserinterfacepage|visiblebookmark" msgid "_Visible levels:" -msgstr "" +msgstr "Synlige nivåer" #. FqQPa #: filter/uiconfig/ui/pdfuserinterfacepage.ui:364 msgctxt "pdfuserinterfacepage|extended_tip|visiblebookmark" msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file." -msgstr "" +msgstr "Velg for å vise bokmerkenivåer ned til det valgte nivået når leseren åpner PDF-filen." #. NEDWP #: filter/uiconfig/ui/pdfuserinterfacepage.ui:384 msgctxt "pdfuserinterfacepage|extended_tip|visiblelevel" msgid "Select to show bookmark levels down to the selected level when the reader opens the PDF file." -msgstr "" +msgstr "Velg for å vise bokmerkenivåer ned til det valgte nivået når leseren åpner PDF-filen." #. x4kjV #: filter/uiconfig/ui/pdfuserinterfacepage.ui:404 msgctxt "pdfuserinterfacepage|label4" msgid "Collapse Outlines" -msgstr "" +msgstr "Skjul disposisjoner" #. ibYBv #: filter/uiconfig/ui/pdfviewpage.ui:52 msgctxt "pdfviewpage|pageonly" msgid "_Page only" -msgstr "_Kun side" +msgstr "Kun side" #. NCgWy #: filter/uiconfig/ui/pdfviewpage.ui:62 msgctxt "pdfviewpage|extended_tip|pageonly" msgid "Select to generate a PDF file that shows only the page contents." -msgstr "" +msgstr "Velg for å generere en PDF-fil som bare viser sideinnholdet." #. d2FAh #: filter/uiconfig/ui/pdfviewpage.ui:73 msgctxt "pdfviewpage|outline" msgid "Outl_ine and page" -msgstr "" +msgstr "Disposisjon og side" #. JAAHm #: filter/uiconfig/ui/pdfviewpage.ui:83 msgctxt "pdfviewpage|extended_tip|outline" msgid "Select to generate a PDF file that shows a bookmarks palette and the page contents." -msgstr "" +msgstr "Velg for å generere en PDF-fil som viser en bokmerkepalett og sideinnholdet." #. rT8gQ #: filter/uiconfig/ui/pdfviewpage.ui:94 msgctxt "pdfviewpage|thumbs" msgid "_Thumbnails and page" -msgstr "_Miniatyrer og side" +msgstr "Miniatyrer og side" #. gDHqJ #: filter/uiconfig/ui/pdfviewpage.ui:104 msgctxt "pdfviewpage|extended_tip|thumbs" msgid "Select to generate a PDF file that shows a thumbnails palette and the page contents." -msgstr "" +msgstr "Velg for å generere en PDF-fil som viser miniatyrbilder og sideinnholdet." #. EgKos #: filter/uiconfig/ui/pdfviewpage.ui:123 msgctxt "pdfviewpage|label4" msgid "Open on pa_ge:" -msgstr "Åpne på _side:" +msgstr "Åpne på side:" #. QrQ84 #: filter/uiconfig/ui/pdfviewpage.ui:142 msgctxt "pdfviewpage|extended_tip|page" msgid "Select to show the given page when the reader opens the PDF file." -msgstr "" +msgstr "Velg for å vise den angitte siden når leseren åpner PDF-filen." #. MxznY #: filter/uiconfig/ui/pdfviewpage.ui:165 @@ -1353,49 +1353,49 @@ #: filter/uiconfig/ui/pdfviewpage.ui:198 msgctxt "pdfviewpage|fitdefault" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. vQNHv #: filter/uiconfig/ui/pdfviewpage.ui:208 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 "" +msgstr "Velg for å generere en PDF-fil som viser sideinnholdet uten å zoome. Hvis leserprogramvaren er konfigurert til å bruke en zoomfaktor som standard, vises siden med den zoomfaktoren." #. kqho7 #: filter/uiconfig/ui/pdfviewpage.ui:219 msgctxt "pdfviewpage|fitwin" msgid "_Fit in window" -msgstr "_Tilpass til vinduet" +msgstr "Tilpass til vinduet" #. Z6P6B #: filter/uiconfig/ui/pdfviewpage.ui:229 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 "" +msgstr "Velg for å generere en PDF-fil som viser siden som er zoomet for å passe helt inn i leserens vindu." #. gcStc #: filter/uiconfig/ui/pdfviewpage.ui:240 msgctxt "pdfviewpage|fitwidth" msgid "Fit _width" -msgstr "Tilpass til _bredden" +msgstr "Tilpass til bredden" #. FkxYn #: filter/uiconfig/ui/pdfviewpage.ui:250 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 "" +msgstr "Velg for å generere en PDF-fil som viser siden som er zoomet for å passe til bredden på leservinduet." #. V6kwp #: filter/uiconfig/ui/pdfviewpage.ui:261 msgctxt "pdfviewpage|fitvis" msgid "Fit _visible" -msgstr "Tilpass til _synlige" +msgstr "Tilpass til synlige" #. FD8Pp #: filter/uiconfig/ui/pdfviewpage.ui:271 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 "" +msgstr "Velg for å generere en PDF-fil som viser teksten og grafikken på siden zoomet for å passe til bredden på leserens vindu." #. NGpWy #: filter/uiconfig/ui/pdfviewpage.ui:288 @@ -1407,13 +1407,13 @@ #: filter/uiconfig/ui/pdfviewpage.ui:301 msgctxt "pdfviewpage|extended_tip|fitzoom" msgid "Select a given zoom factor when the reader opens the PDF file." -msgstr "" +msgstr "Velg en gitt zoomfaktor når leseren åpner PDF-filen." #. BBoAW #: filter/uiconfig/ui/pdfviewpage.ui:322 msgctxt "pdfviewpage|extended_tip|zoom" msgid "Select a given zoom factor when the reader opens the PDF file." -msgstr "" +msgstr "Velg en gitt zoomfaktor når leseren åpner PDF-filen." #. LQKDP #: filter/uiconfig/ui/pdfviewpage.ui:345 @@ -1425,61 +1425,61 @@ #: filter/uiconfig/ui/pdfviewpage.ui:385 msgctxt "pdfviewpage|defaultlayout" msgid "D_efault" -msgstr "S_tandard" +msgstr "Standard" #. CtGeC #: filter/uiconfig/ui/pdfviewpage.ui:395 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 "" +msgstr "Velg for å generere en PDF-fil som viser sidene i henhold til layoutinnstillingen til leserprogramvaren." #. QBpan #: filter/uiconfig/ui/pdfviewpage.ui:406 msgctxt "pdfviewpage|singlelayout" msgid "_Single page" -msgstr "_Enkeltside" +msgstr "Enkeltside" #. 4PuqY #: filter/uiconfig/ui/pdfviewpage.ui:416 msgctxt "pdfviewpage|extended_tip|singlelayout" msgid "Select to generate a PDF file that shows one page at a time." -msgstr "" +msgstr "Velg for å generere en PDF-fil som viser en side om gangen." #. whE6p #: filter/uiconfig/ui/pdfviewpage.ui:427 msgctxt "pdfviewpage|contlayout" msgid "C_ontinuous" -msgstr "" +msgstr "Kontinuerlige" #. BRxps #: filter/uiconfig/ui/pdfviewpage.ui:437 msgctxt "pdfviewpage|extended_tip|contlayout" msgid "Select to generate a PDF file that shows pages in a continuous vertical column." -msgstr "" +msgstr "Velg for å generere en PDF-fil som viser sider i en kontinuerlig vertikal kolonne." #. ALQRE #: filter/uiconfig/ui/pdfviewpage.ui:448 msgctxt "pdfviewpage|contfacinglayout" msgid "Co_ntinuous facing" -msgstr "" +msgstr "Kontinuerlig vising" #. YyCT7 #: filter/uiconfig/ui/pdfviewpage.ui:458 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 "" +msgstr "Velg for å generere en PDF-fil som viser sider side om side i en sammenhengende kolonne. For mer enn to sider vises den første siden til høyre." #. 4DFBW #: filter/uiconfig/ui/pdfviewpage.ui:469 msgctxt "pdfviewpage|firstonleft" msgid "First page is _left" -msgstr "Første side er en _venstreside" +msgstr "Første side er en venstreside" #. xWdBk #: filter/uiconfig/ui/pdfviewpage.ui:479 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 "" +msgstr "Velg for å generere en PDF-fil som viser sider side om side i en sammenhengende kolonne. I mer enn to sider vises den første siden til venstre. Du må aktivere støtte for kompleks tekstoppsett i Språkinnstillinger - Språk i dialogboksen Alternativer." #. sYKod #: filter/uiconfig/ui/pdfviewpage.ui:496 @@ -1515,7 +1515,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:121 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 "" +msgstr "Finn filen du vil bruke XML-eksportfilteret til. XML-koden til den transformerte filen åpnes i standard XML-editoren etter transformasjon." #. F8CJd #: filter/uiconfig/ui/testxmlfilter.ui:132 @@ -1527,7 +1527,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:138 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 "" +msgstr "Den fremste åpne filen som samsvarer med XML-filterkriteriene, vil bli brukt til å teste filteret. Det nåværende XML-eksportfilteret forvandler filen, og den resulterende XML-koden vises i XML-filterutgangsvinduet." #. EPLxG #: filter/uiconfig/ui/testxmlfilter.ui:154 @@ -1563,7 +1563,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:245 msgctxt "testxmlfilter|extended_tip|importbrowse" msgid "Opens a file selection dialog. The selected file is opened using the current XML import filter." -msgstr "" +msgstr "Åpner en dialogbok for filvalg. Den valgte filen åpnes ved hjelp av det nåværende XML-importfilteret." #. RGb9P #: filter/uiconfig/ui/testxmlfilter.ui:256 @@ -1575,7 +1575,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:262 msgctxt "testxmlfilter|extended_tip|recentfile" msgid "Re-opens the document that was last opened with this dialog." -msgstr "" +msgstr "Åpner dokumentet som sist ble åpnet med denne dialogen." #. WRoGk #: filter/uiconfig/ui/testxmlfilter.ui:276 @@ -1599,7 +1599,7 @@ #: filter/uiconfig/ui/testxmlfilter.ui:311 msgctxt "testxmlfilter|extended_tip|displaysource" msgid "Opens the XML source of the selected document in your default XML editor after importing." -msgstr "" +msgstr "Åpner XML-kilden til det valgte dokumentet i standard XML-editoren etter import." #. AKfAy #: filter/uiconfig/ui/testxmlfilter.ui:325 @@ -1611,13 +1611,13 @@ #: filter/uiconfig/ui/testxmlfilter.ui:340 msgctxt "testxmlfilter|extended_tip|importxslttemplate" msgid "Displays the file name of the template that you entered on the Transformation tab page." -msgstr "" +msgstr "Viser filnavnet på malen du skrev inn på fanen Omforming." #. RHRHL #: filter/uiconfig/ui/testxmlfilter.ui:357 msgctxt "testxmlfilter|extended_tip|recentfilename" msgid "Re-opens the document that was last opened with this dialog." -msgstr "" +msgstr "Åpner dokumentet som sist ble åpnet med denne dialogen." #. 4MaaP #: filter/uiconfig/ui/testxmlfilter.ui:381 @@ -1653,7 +1653,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:41 msgctxt "xmlfiltersettings|extended_tip|help" msgid "Displays the help page for this dialog." -msgstr "" +msgstr "Viser hjelpesiden for denne dialogen." #. CmVSC #: filter/uiconfig/ui/xmlfiltersettings.ui:63 @@ -1677,115 +1677,115 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:134 msgctxt "xmlfiltersettings|extended_tip|filterlist" msgid "Select one or more filters, then click one of the buttons." -msgstr "" +msgstr "Velg ett eller flere filtre, og klikk deretter på en av knappene." #. VcMQo #: filter/uiconfig/ui/xmlfiltersettings.ui:156 msgctxt "xmlfiltersettings|new" msgid "_New..." -msgstr "_Ny …" +msgstr "Ny …" #. 5Enmj #: filter/uiconfig/ui/xmlfiltersettings.ui:163 msgctxt "xmlfiltersettings|extended_tip|new" msgid "Opens a dialog with the name of a new filter." -msgstr "" +msgstr "Åpner en dialog med navnet på et nytt filter." #. W6Ju3 #: filter/uiconfig/ui/xmlfiltersettings.ui:175 msgctxt "xmlfiltersettings|edit" msgid "_Edit..." -msgstr "_Rediger …" +msgstr "Rediger …" #. K8XRa #: filter/uiconfig/ui/xmlfiltersettings.ui:182 msgctxt "xmlfiltersettings|extended_tip|edit" msgid "Opens a dialog with the name of the selected file." -msgstr "" +msgstr "Åpner en dialog med navnet på den valgte filen." #. DAoSK #: filter/uiconfig/ui/xmlfiltersettings.ui:194 msgctxt "xmlfiltersettings|test" msgid "_Test XSLTs..." -msgstr "_Test XSLT …" +msgstr "Test XSLT …" #. zFrBM #: filter/uiconfig/ui/xmlfiltersettings.ui:201 msgctxt "xmlfiltersettings|extended_tip|test" msgid "Opens a dialog with the name of the selected file." -msgstr "" +msgstr "Åpner en dialog med navnet på den valgte filen." #. FE7Za #: filter/uiconfig/ui/xmlfiltersettings.ui:213 msgctxt "xmlfiltersettings|delete" msgid "_Delete..." -msgstr "_Slett …" +msgstr "Slett …" #. 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 "" +msgstr "Sletter den valgte filen etter at du har bekreftet dialogboksen som følger." #. DmuTA #: filter/uiconfig/ui/xmlfiltersettings.ui:232 msgctxt "xmlfiltersettings|save" msgid "_Save as Package..." -msgstr "_Lagre som pakke …" +msgstr "Lagre som pakke …" #. 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 "" +msgstr "Viser en Lagre som-dialog for å lagre den valgte filen som en XSLT-filterpakke (* .jar)." #. CuahL #: filter/uiconfig/ui/xmlfiltersettings.ui:251 msgctxt "xmlfiltersettings|open" msgid "_Open Package..." -msgstr "_Åpne pakke …" +msgstr "Åpne pakke …" #. 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 "" +msgstr "Viser en åpen dialog for å åpne et filter fra en XSLT-filterpakke (* .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 "" +msgstr "Åpner dialogboksen Innstillinger for XML-filter, der du kan opprette, redigere, slette og teste filtre for å importere og eksportere XML-filer." #. rLZ5z #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:23 msgctxt "xmlfiltertabpagegeneral|label2" msgid "_Filter name:" -msgstr "_Filternavn:" +msgstr "Filternavn:" #. dreFh #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:37 msgctxt "xmlfiltertabpagegeneral|label3" msgid "_Application:" -msgstr "_Program:" +msgstr "Program:" #. yQmBY #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:51 msgctxt "xmlfiltertabpagegeneral|label4" msgid "_Name of file type:" -msgstr "_Navn på filtype:" +msgstr "Navn på filtype:" #. NB3Gy #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:65 msgctxt "xmlfiltertabpagegeneral|label5" msgid "File _extension:" -msgstr "Fil_etternavn:" +msgstr "Filutvidelse:" #. fPxWA #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:79 msgctxt "xmlfiltertabpagegeneral|label6" msgid "Comment_s:" -msgstr "_Merknader:" +msgstr "Merknader:" #. rYNyn #: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:100 @@ -1827,7 +1827,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:24 msgctxt "xmlfiltertabpagetransformation|label2" msgid "_DocType:" -msgstr "_Dokumenttype:" +msgstr "Dokumenttype:" #. x2ex7 #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:44 @@ -1839,43 +1839,43 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:57 msgctxt "xmlfiltertabpagetransformation|label4" msgid "_XSLT for export:" -msgstr "_XSLT for eksportering:" +msgstr "XSLT for eksportering:" #. GwzvD #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:69 msgctxt "xmlfiltertabpagetransformation|browseexport" msgid "Brows_e..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. QLd25 #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:76 msgctxt "xmlfiltertabpagetransformation|extended_tip|browseexport" msgid "Opens a file selection dialog." -msgstr "" +msgstr "Åpner en dialogbok for filvalg." #. oZGZS #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:89 msgctxt "xmlfiltertabpagetransformation|label5" msgid "XSLT _for import:" -msgstr "XSLT for _importering:" +msgstr "XSLT for importering:" #. UNKTt #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:101 msgctxt "xmlfiltertabpagetransformation|browseimport" msgid "B_rowse..." -msgstr "Bla _gjennom …" +msgstr "Bla igjennom …" #. TecWL #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:108 msgctxt "xmlfiltertabpagetransformation|extended_tip|browseimport" msgid "Opens a file selection dialog." -msgstr "" +msgstr "Åpner en dialogbok for filvalg." #. 9nV9R #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:121 msgctxt "xmlfiltertabpagetransformation|label6" msgid "Template for _import:" -msgstr "Mal for _importering:" +msgstr "Mal for importering:" #. MNLtB #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:133 @@ -1887,7 +1887,7 @@ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:139 msgctxt "xmlfiltertabpagetransformation|extended_tip|browsetemp" msgid "Opens a file selection dialog." -msgstr "" +msgstr "Åpner en dialogbok for filvalg." #. sjWgJ #: filter/uiconfig/ui/xmlfiltertabpagetransformation.ui:162 @@ -1929,7 +1929,7 @@ #: filter/uiconfig/ui/xsltfilterdialog.ui:62 msgctxt "xsltfilterdialog|extended_tip|help" msgid "Displays the help page for this dialog." -msgstr "" +msgstr "Viser hjelpesiden for denne dialogen." #. Cvy2d #: filter/uiconfig/ui/xsltfilterdialog.ui:127 @@ -1947,4 +1947,4 @@ #: filter/uiconfig/ui/xsltfilterdialog.ui:200 msgctxt "xsltfilterdialog|extended_tip|XSLTFilterDialog" msgid "Opens a dialog with the name of a new filter." -msgstr "" +msgstr "Åpner en dialog med navnet på et nytt filter." diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/forms/messages.po libreoffice-7.1.3~rc2/translations/source/nb/forms/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/forms/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/forms/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,121 +3,146 @@ 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: 2018-02-27 13:56+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" +"X-POOTLE-MTIME: 1507244299.000000\n" +#. naBgZ #: forms/inc/strings.hrc:25 msgctxt "RID_BASELISTBOX_ERROR_FILLLIST" msgid "The contents of a combo box or list field could not be determined." msgstr "Klarte ikke å bestemme innholdet av kombinasjonsboksen eller listefeltet." +#. hiEhu #: forms/inc/strings.hrc:26 msgctxt "RID_STR_IMPORT_GRAPHIC" msgid "Insert Image" msgstr "Sett inn bilde" +#. FfrQA #: forms/inc/strings.hrc:27 msgctxt "RID_STR_CONTROL_SUBSTITUTED_NAME" msgid "substituted" msgstr "erstattet" +#. CHLAP #: forms/inc/strings.hrc:28 msgctxt "RID_STR_CONTROL_SUBSTITUTED_EPXPLAIN" msgid "An error occurred while this control was being loaded. It was therefore replaced with a placeholder." msgstr "En feil oppstod ved lasting av dette kontrollelementet. Det ble derfor erstattet med en plassholder." +#. CLzFr #: forms/inc/strings.hrc:29 msgctxt "RID_STR_READERROR" msgid "Error reading data from database" msgstr "Feil ved lesing av data fra database" +#. Q8pGP #: forms/inc/strings.hrc:30 msgctxt "RID_STR_CONNECTERROR" msgid "Connection failed" -msgstr "Tilkoblinga mislyktes" +msgstr "Tilkoblingen mislyktes" +#. EsJw2 #: forms/inc/strings.hrc:31 msgctxt "RID_ERR_LOADING_FORM" msgid "The data content could not be loaded." msgstr "Klarte ikke å laste inn dataene." +#. L9J7Z #: forms/inc/strings.hrc:32 msgctxt "RID_ERR_REFRESHING_FORM" msgid "The data content could not be updated" msgstr "Klarte ikke å oppdatere dataene." +#. LHxyL #: forms/inc/strings.hrc:33 msgctxt "RID_STR_ERR_INSERTRECORD" msgid "Error inserting the new record" msgstr "Feil ved innsetting av ny post" +#. DeE8J #: forms/inc/strings.hrc:34 msgctxt "RID_STR_ERR_UPDATERECORD" msgid "Error updating the current record" msgstr "Feil ved oppdatering av denne posten" +#. dKbFA #: forms/inc/strings.hrc:35 msgctxt "RID_STR_ERR_DELETERECORD" msgid "Error deleting the current record" msgstr "Feil ved sletting av denne posten" +#. KrWCL #: forms/inc/strings.hrc:36 msgctxt "RID_STR_ERR_DELETERECORDS" msgid "Error deleting the specified records" msgstr "Feil ved sletting av de valgte postene" +#. CgPPq #: forms/inc/strings.hrc:37 msgctxt "RID_STR_NEED_NON_NULL_OBJECT" msgid "The object cannot be NULL." msgstr "Objektet kan ikke være NULL." +#. DjPos #: forms/inc/strings.hrc:38 msgctxt "RID_STR_OPEN_GRAPHICS" msgid "Insert Image from..." msgstr "Sett inn bilde fra …" +#. 5xPFL #: forms/inc/strings.hrc:39 msgctxt "RID_STR_CLEAR_GRAPHICS" msgid "Remove Image" msgstr "Fjern bilde" +#. YepRu #: forms/inc/strings.hrc:40 msgctxt "RID_STR_INVALIDSTREAM" msgid "The given stream is invalid." msgstr "Strømmen er ugyldig." +#. zzFRi #: forms/inc/strings.hrc:41 msgctxt "RID_STR_SYNTAXERROR" msgid "Syntax error in query expression" msgstr "Syntaksfeil i spørringsuttrykket" +#. BQj6G #: forms/inc/strings.hrc:42 msgctxt "RID_STR_INCOMPATIBLE_TYPES" msgid "The value types supported by the binding cannot be used for exchanging data with this control." -msgstr "Verditypene som bindinga støtter kan ikke brukes til utveksling av data med dette kontrollelementet." +msgstr "Verditypene som bindingen støtter kan ikke brukes til utveksling av data med dette kontrollelementet." +#. KMteF #: forms/inc/strings.hrc:43 msgctxt "RID_STR_LABEL_RECORD" msgid "Record" msgstr "Post" +#. KkC2w #: forms/inc/strings.hrc:44 msgctxt "RID_STR_INVALID_VALIDATOR" msgid "The control is connected to an external value binding, which at the same time acts as validator. You need to revoke the value binding, before you can set a new validator." -msgstr "Kontrollelementet er knyttet til en ekstern verdi som samtidig fungerer som validator. Du må fjerne bindinga før du kan velge en ny validator." +msgstr "Kontrollelementet er knyttet til en ekstern verdi som samtidig fungerer som validator. Du må fjerne bindingen før du kan velge en ny validator." +#. HDFRj #: forms/inc/strings.hrc:45 msgctxt "RID_STR_LABEL_OF" msgid "of" msgstr "av" +#. pwvrd #: forms/inc/strings.hrc:46 msgctxt "RID_STR_QUERY_SAVE_MODIFIED_ROW" msgid "" @@ -127,181 +152,217 @@ "Innholdet i skjemaet er endret.\n" "Vil du lagre endringene?" +#. UUqEs #: forms/inc/strings.hrc:47 msgctxt "RID_STR_COULD_NOT_SET_ORDER" msgid "Error setting the sort criteria" msgstr "Feil ved valg av sorteringskriterium" +#. AsgK8 #: forms/inc/strings.hrc:48 msgctxt "RID_STR_COULD_NOT_SET_FILTER" msgid "Error setting the filter criteria" msgstr "Feil ved valg av filterkriterium" +#. x4f5J #: forms/inc/strings.hrc:49 msgctxt "RID_STR_FEATURE_REQUIRES_PARAMETERS" msgid "To execute this function, parameters are needed." msgstr "Denne funksjonen trenger parametre for å kjøre." +#. Bu48A #: forms/inc/strings.hrc:50 msgctxt "RID_STR_FEATURE_NOT_EXECUTABLE" msgid "This function cannot be executed, but is only for status queries." msgstr "Denne funksjonen kan ikke kjøres, bare brukes til statusspørringer." +#. LYhEn #: forms/inc/strings.hrc:51 msgctxt "RID_STR_FEATURE_UNKNOWN" msgid "Unknown function." msgstr "Ukjent funksjon." +#. X5wuE #: forms/inc/strings.hrc:53 msgctxt "RID_STR_XFORMS_NO_BINDING_EXPRESSION" msgid "Please enter a binding expression." msgstr "Skriv et bindingsuttrykk." +#. BnacN #: forms/inc/strings.hrc:54 msgctxt "RID_STR_XFORMS_INVALID_BINDING_EXPRESSION" msgid "This is an invalid binding expression." msgstr "Dette er et ugyldig bindingsuttrykk." +#. 75FBb #: forms/inc/strings.hrc:55 msgctxt "RID_STR_XFORMS_INVALID_VALUE" msgid "Value is invalid." msgstr "Verdien er ugyldig." +#. FBx5M #: forms/inc/strings.hrc:56 msgctxt "RID_STR_XFORMS_REQUIRED" msgid "A value is required." msgstr "Trenger en verdi." +#. cETRH #: forms/inc/strings.hrc:57 msgctxt "RID_STR_XFORMS_INVALID_CONSTRAINT" msgid "The constraint '$1' not validated." msgstr "Skranken «$1» er ikke sjekket." +#. a2kvh #: forms/inc/strings.hrc:58 msgctxt "RID_STR_XFORMS_VALUE_IS_NOT_A" msgid "The value is not of the type '$2'." msgstr "Verdien er ikke av type «$2»." +#. xr8Fy #: forms/inc/strings.hrc:59 msgctxt "RID_STR_XFORMS_VALUE_MAX_INCL" msgid "The value must be smaller than or equal to $2." msgstr "Verdien må være mindre enn eller lik $2." +#. 2FnXB #: forms/inc/strings.hrc:60 msgctxt "RID_STR_XFORMS_VALUE_MAX_EXCL" msgid "The value must be smaller than $2." msgstr "Verdien må være mindre enn $2." +#. yFzvb #: forms/inc/strings.hrc:61 msgctxt "RID_STR_XFORMS_VALUE_MIN_INCL" msgid "The value must be greater than or equal to $2." msgstr "Verdien må være større enn eller lik $2." +#. 8CqwC #: forms/inc/strings.hrc:62 msgctxt "RID_STR_XFORMS_VALUE_MIN_EXCL" msgid "The value must be greater than $2." msgstr "Verdien må være større enn $2." +#. zcC3f #: forms/inc/strings.hrc:63 msgctxt "RID_STR_XFORMS_VALUE_TOTAL_DIGITS" msgid "$2 digits allowed at most." msgstr "Kan ikke være flere enn $2 siffer." +#. EFgBN #: forms/inc/strings.hrc:64 msgctxt "RID_STR_XFORMS_VALUE_FRACTION_DIGITS" msgid "$2 fraction digits allowed at most." msgstr "Kan ikke være flere enn $2 siffer etter komma." +#. fFbKg #: forms/inc/strings.hrc:65 msgctxt "RID_STR_XFORMS_VALUE_LENGTH" msgid "The string must be $2 characters long." msgstr "Strengen må være $2 tegn lang." +#. CzF3L #: forms/inc/strings.hrc:66 msgctxt "RID_STR_XFORMS_VALUE_MIN_LENGTH" msgid "The string must be at least $2 characters long." msgstr "Strengen må minst være $2 tegn lang." +#. effSk #: forms/inc/strings.hrc:67 msgctxt "RID_STR_XFORMS_VALUE_MAX_LENGTH" msgid "The string can only be $2 characters long at most." msgstr "Strengen kan høyest være $2 tegn lang." +#. dfwAw #: forms/inc/strings.hrc:68 msgctxt "RID_STR_DATATYPE_STRING" msgid "String" msgstr "Streng" +#. 2VkkS #: forms/inc/strings.hrc:69 msgctxt "RID_STR_DATATYPE_URL" msgid "Hyperlink" msgstr "Hyperlenke" +#. wCcrk #: forms/inc/strings.hrc:70 msgctxt "RID_STR_DATATYPE_BOOLEAN" msgid "True/False (Boolean)" msgstr "Sann/usann (boolsk)" +#. o7BXD #: forms/inc/strings.hrc:71 msgctxt "RID_STR_DATATYPE_DECIMAL" msgid "Decimal" msgstr "Desimal" +#. X7yWD #: forms/inc/strings.hrc:72 msgctxt "RID_STR_DATATYPE_FLOAT" msgid "Floating point" msgstr "Flyttall" +#. kGdUi #: forms/inc/strings.hrc:73 msgctxt "RID_STR_DATATYPE_DOUBLE" msgid "Double" msgstr "Dobbel" +#. ki4Gz #: forms/inc/strings.hrc:74 msgctxt "RID_STR_DATATYPE_DATE" msgid "Date" msgstr "Dato" +#. Ehje9 #: forms/inc/strings.hrc:75 msgctxt "RID_STR_DATATYPE_TIME" msgid "Time" msgstr "Klokkeslett" +#. zC46Y #: forms/inc/strings.hrc:76 msgctxt "RID_STR_DATATYPE_DATETIME" msgid "Date and Time" msgstr "Dato og klokkeslett" +#. Ad6EV #: forms/inc/strings.hrc:77 msgctxt "RID_STR_DATATYPE_YEAR" msgid "Year" msgstr "År" +#. XfSWT #: forms/inc/strings.hrc:78 msgctxt "RID_STR_DATATYPE_MONTH" msgid "Month" msgstr "Måned" +#. rBHBA #: forms/inc/strings.hrc:79 msgctxt "RID_STR_DATATYPE_DAY" msgid "Day" msgstr "Dag" +#. VS33y #: forms/inc/strings.hrc:80 msgctxt "RID_STR_XFORMS_CANT_EVALUATE" msgid "Error during evaluation" msgstr "Feil under evaluering" +#. SFp7z #: forms/inc/strings.hrc:81 msgctxt "RID_STR_XFORMS_PATTERN_DOESNT_MATCH" msgid "The string '$1' does not match the required regular expression '$2'." msgstr "Strengen «$1» passer ikke til det påkrevde regulære uttrykket «$2»." +#. GdrwE #: forms/inc/strings.hrc:82 msgctxt "RID_STR_XFORMS_BINDING_UI_NAME" msgid "Binding" msgstr "Binding" +#. AGvgC #: forms/inc/strings.hrc:83 msgctxt "RID_STR_XFORMS_CANT_REMOVE_TYPE" msgid "This is a built-in type and cannot be removed." diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/fpicker/messages.po libreoffice-7.1.3~rc2/translations/source/nb/fpicker/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/fpicker/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/fpicker/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-08-18 11:35+0000\n" -"Last-Translator: kingu \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-07 14:15+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1538498040.000000\n" #. SJGCw @@ -71,7 +71,7 @@ "The file $name$ does not exist.\n" "Make sure you have entered the correct file name." msgstr "" -"Fila $name$ finnes ikke.\n" +"Filen $name$ finnes ikke.\n" "Pass på at du har skrevet inn det rette filnavnet." #. CahDV diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-12-17 14:17+0100\n" -"PO-Revision-Date: 2020-07-24 12:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:57+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554926198.000000\n" #. 6Kkin @@ -1013,7 +1013,7 @@ "bm_id3150402\n" "help.text" msgid "controls; in dialog editorpush button control in dialog editoricon controlbuttons; controlsimage controlcheck box controlradio button controloption button controlfixed text controllabel field controlediting; controlstext boxes; controlslist boxes; controlscombo box controlscroll bar controlhorizontal scrollbar controlvertical scrollbar controlgroup box controlprogress bar controlfixed line controlhorizontal line controlline controlvertical line controldate field controltime field controlnumerical field controlcurrency field controlformatted field controlpattern field controlmasked field controlfile selection controlselection options for controlstest mode control" -msgstr "kontroller; i dialogredigerarenkommandoknapp, kontroll i dialogredigererenikonkontrollknapper; kontrollerbildekontrollfeltavkryssingsboks, kontrollelementradioknapp, kontrollelementalternativ knapp, kontrollfast tekst, kontrolletikettfelt, kontrollredigere; kontrollelementtekstfelt; kontrollerlistefelt; kontrollerkombinasjonsfelt, kontrollrulleliste, kontrollvannrett rulleliste, kontrollloddrett rulleliste, kontrollgrupperingsboks, kontrollframdriftsindikator, kontrollfast linje, kontrollvannrett linje, kontrolllinje, kontrollloddrett linje, kontrolldatofelt, kontrolltidfelt, kontrollnumeriskt felt, kontrollvalutafelt, kontrollformatert felt, kontrollmaskert felt, kontrollmaskeringsfelt, kontrollfilvalg, kontrollutvaglsalternativr for kontrollertestmodus, kontroll" +msgstr "kontroller; i dialogredigererenkommandoknapp, kontroll i dialogredigererenkonkontrollknapper; kontrollerbildekontrollfeltavkryssingsboks, kontrollelementradioknapp, kontrollelementalternativ knapp, kontrollfast tekst, kontrolletikettfelt, kontrollredigere; kontrollelementtekstfelt; kontrollerlistefelt; kontrollerkombinasjonsfelt, kontrollrulleliste, kontrollhorisontal rulleliste, kontrollloddrett rulleliste, kontrollgrupperingsboks, kontrollframdriftsindikator, kontrollfast linje, kontrollhorisontal linje, kontrolllinje, kontrollvertikal linje, kontrolldatofelt, kontrolltidfelt, kontrollnumeriskt felt, kontrollvalutafelt, kontrollformatert felt, kontrollmaskert felt, kontrollmaskeringsfelt, kontrollfilvalg, kontrollutvaglsalternativr for kontrollertestmodus, kontroll" #. YL3Za #: 20000000.xhp @@ -1301,7 +1301,7 @@ "hd_id3154585\n" "help.text" msgid "Horizontal Scrollbar" -msgstr "Vannrett rullefelt" +msgstr "Horisontalt rullefelt" #. vjpAs #: 20000000.xhp @@ -1319,7 +1319,7 @@ "par_id3153232\n" "help.text" msgid "Adds a horizontal scrollbar to the dialog." -msgstr "Legger til et vannrett rullefelt i dialogvinduet." +msgstr "Legger til et horisontalt rullefelt i dialogvinduet." #. ECtLc #: 20000000.xhp @@ -1418,7 +1418,7 @@ "hd_id3145654\n" "help.text" msgid "Horizontal Line" -msgstr "Vannrett strek" +msgstr "Horisontal Linje" #. SdtNG #: 20000000.xhp @@ -1436,7 +1436,7 @@ "par_id3151000\n" "help.text" msgid "Adds a horizontal line to the dialog." -msgstr "Legger til en vannrett linje i dialogvinduet." +msgstr "Legger til en horisontal linje i dialogvinduet." #. UcBeW #: 20000000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-04-07 11:16+0000\n" -"Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-01 04:37+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551361467.000000\n" #. yzYVt @@ -617,7 +617,7 @@ "par_id161599082457466\n" "help.text" msgid "String functions" -msgstr "" +msgstr "Strengfunksjoner" #. CGSvh #: 00000003.xhp @@ -2403,21 +2403,23 @@ #. rs7qz #: 01020100.xhp +#, fuzzy msgctxt "" "01020100.xhp\n" "hd_id301576839713868\n" "help.text" msgid "Literals for integers" -msgstr "" +msgstr "Direkteverdi for heltall" #. PTiRZ #: 01020100.xhp +#, fuzzy msgctxt "" "01020100.xhp\n" "par_id1001576839723156\n" "help.text" msgid "Numbers can be encoded using octal and hexadecimal forms." -msgstr "" +msgstr "Tall kan kodes i åttetallsformat, og som heksadesimaler." #. nGGUD #: 01020100.xhp @@ -2444,7 +2446,7 @@ "par_id381599081637549\n" "help.text" msgid "In BASIC String functions, the first character of the string has index 1." -msgstr "" +msgstr "I BASIC-strengfunksjoner, har første tegn i strengen indeks 1." #. wDbuF #: 01020100.xhp @@ -2768,7 +2770,7 @@ "par_id3151114\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' din kode finner sted her" #. BG6rr #: 01020300.xhp @@ -2804,7 +2806,7 @@ "par_id3156284\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' din kode finner sted her" #. TwrZp #: 01020300.xhp @@ -2831,7 +2833,7 @@ "bas_id961584288948497\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' din kode finner sted her" #. meaRY #: 01020300.xhp @@ -2840,7 +2842,7 @@ "bas_id921584288951588\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' din kode finner sted her" #. 257BA #: 01020300.xhp @@ -2894,7 +2896,7 @@ "bas_id81584367761978\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' din kode finner sted her" #. WF4ND #: 01020300.xhp @@ -2912,7 +2914,7 @@ "hd_id161584366585035\n" "help.text" msgid "Defining Optional Parameters" -msgstr "" +msgstr "Definering av valgfrie parametre" #. 4Ghzx #: 01020300.xhp @@ -2930,7 +2932,7 @@ "bas_id111584366809406\n" "help.text" msgid "' your code goes here" -msgstr "" +msgstr "' din kode finner sted her" #. EHCCS #: 01020300.xhp @@ -39029,7 +39031,7 @@ "N0079\n" "help.text" msgid "' your code goes here …" -msgstr "" +msgstr "' din kode finner sted her …" #. wEaa3 #: ErrVBA.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/00.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/scalc/00.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/scalc/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-07-24 12:35+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554925506.000000\n" #. E9tti @@ -509,7 +509,7 @@ "par_id3159173\n" "help.text" msgid "Insert - Function - Category Logical" -msgstr "" +msgstr "Sett Inn - Funksjon - Kategori Logisk" #. FqeXh #: 00000404.xhp @@ -1949,7 +1949,7 @@ "par_id651551401041666\n" "help.text" msgid "This function is available since %PRODUCTNAME 7.1." -msgstr "" +msgstr "Denne funksjonen har vært tilgjengelig siden %PRODUCTNAME 7.1." #. LSPBz #: sheet_menu.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/05.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/scalc/05.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/scalc/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-03-08 23:16+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554926017.000000\n" #. Cxzki @@ -329,7 +329,7 @@ "par_id3145635\n" "help.text" msgid "Compiler: an identifier in the formula exceeds 64 kB in size. Interpreter: a result of a string operation exceeds 64 kB in size." -msgstr "" +msgstr "Kompilator: En identifikator i formelen overskrider 64 kb i størrelse. Tolk: Et resultat av en strengoperasjon overstiger 64 kb i størrelse." #. E7ohJ #: 02140000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/scalc.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/scalc.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/scalc.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-07-24 12:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548321811.000000\n" #. ZxQeC @@ -419,7 +419,7 @@ "par_id3145171\n" "help.text" msgid "The Format menu contains commands for formatting selected cells, objects, and cell contents in your document." -msgstr "" +msgstr " Format Menyen inneholder kommandoer for formatering av utvalgte celler, objekter, og celleinnehold i dokumentet ditt." #. Ly37n #: main0105.xhp @@ -545,7 +545,7 @@ "hd_id3148488\n" "help.text" msgid "ImageMap" -msgstr "" +msgstr "Bildekart" #. ToZU6 #: main0106.xhp @@ -797,7 +797,7 @@ "hd_id3155064\n" "help.text" msgid "Align Center Horizontally" -msgstr "Midtstilt vannrett" +msgstr "Midtstilt Horisontalt " #. Qz94y #: main0202.xhp @@ -977,7 +977,7 @@ "par_id2376476\n" "help.text" msgid "Horizontally centers the contents of the cell." -msgstr "Midtstiller innholdet i cellen vannrett." +msgstr "Midtstiller innholdet i cellen Horisontalt." #. bHQCG #: main0202.xhp @@ -1130,7 +1130,7 @@ "hd_id3155337\n" "help.text" msgid "Centered" -msgstr "Midtstilt vannrett" +msgstr "Midtstilt Horisontalt " #. 26EW2 #: main0205.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/schart/00.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/schart/00.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/schart/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/schart/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2019-05-22 13:27+0200\n" -"PO-Revision-Date: 2019-07-22 17:52+0000\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-15 15:57+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563817959.000000\n" +#. E9tti #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -24,6 +25,7 @@ msgid "To access this function..." msgstr "For å gjøre dette …" +#. GYYED #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -32,6 +34,7 @@ msgid "To access this function..." msgstr "For å gjøre dette …" +#. ug82V #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -40,6 +43,7 @@ msgid "Choose View - Chart Data Table (Charts)" msgstr "Velg Rediger → Diagramdatatabell (diagrammer)" +#. fU5ZG #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -48,6 +52,7 @@ msgid "On Formatting bar, click" msgstr "På formateringsverktøylinja trykker du" +#. GDpSu #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -56,6 +61,7 @@ msgid "Icon" msgstr "Ikon" +#. S6JmP #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -64,6 +70,7 @@ msgid "Chart Data" msgstr "Diagramdata" +#. GhdKK #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -72,6 +79,7 @@ msgid "Choose Insert - Titles (Charts)" msgstr "VelgSett inn - Tiler(Diagram)" +#. 3x5QB #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -80,6 +88,7 @@ msgid "Choose Insert - Legend (Charts)" msgstr "Velg Sett inn → Forklaring (diagrammer)" +#. HqMQr #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -88,6 +97,7 @@ msgid "Choose Format - Legend - Position tab (Charts)" msgstr "Velg fanen Plassering under Format → Forklaring (diagrammer)" +#. EH75q #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -96,6 +106,7 @@ msgid "Choose Insert - Data Labels (Charts)" msgstr "Velg Sett inn → Dataoverskrifter (diagrammer)" +#. zEfSg #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -104,6 +115,7 @@ msgid "Choose Format - Format Selection - Data Point/Data Series - Data Labels tab (for data series and data point) (Charts)" msgstr "Velg fanen Format → Formatvalg → Datapunkt/dataserier → Dataoverskrifter (for dataserier og datapunkt) (diagrammer)" +#. SQbvj #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -112,6 +124,7 @@ msgid "Choose Insert - Axes (Charts)" msgstr "Velg Sett inn → Akser (diagrammer) " +#. GttHw #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -120,6 +133,7 @@ msgid "Choose Insert - Grids (Charts)" msgstr "Velg Sett inn → Rutenett (diagrammer)" +#. LWyLt #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -128,6 +142,7 @@ msgid "On Formatting bar, click" msgstr "På formateringsverktøylinja trykker du" +#. zTF9a #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -136,14 +151,16 @@ msgid "Icon" msgstr "Ikon" +#. Abvw3 #: 00000004.xhp msgctxt "" "00000004.xhp\n" "par_id3155378\n" "help.text" msgid "Horizontal Grids" -msgstr "Vannrett rutenett" +msgstr "Horisontalt Rutenett" +#. 77NFv #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -152,6 +169,7 @@ msgid "Icon" msgstr "Ikon" +#. AeSzg #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -160,6 +178,7 @@ msgid "Vertical Grids" msgstr "Loddrett rutenett" +#. Twpy9 #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -168,6 +187,7 @@ msgid "Choose Insert - X Error Bars, or Insert - Y Error Bars (Charts)" msgstr "Velg Sett inn → X-feilstolper eller Sett inn → Y-feilstolper (diagram)" +#. ZD5K5 #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -176,6 +196,7 @@ msgid "Choose Insert - Trend Line (Charts)" msgstr "Velg Sett inn → Trendlinjer (i diagram)" +#. UzBjR #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -184,6 +205,7 @@ msgid "Choose Insert - Special Character (Charts)" msgstr "Velg Sett inn → Spesialtegn (diagrammer) " +#. 8TxLK #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -192,6 +214,7 @@ msgid "Choose Format - Format Selection (Charts)" msgstr "Åpne dialogvinduet Format → Formatvalg (diagrammer) " +#. DqsZe #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -200,6 +223,7 @@ msgid "Choose Format - Format Selection - Data Point dialog (Charts)" msgstr "Velg dialogvinduet Format → Formatvalg → Datapunkt (diagrammer) " +#. ASTDr #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -208,6 +232,7 @@ msgid "Choose Format - Format Selection - Data Series dialog (Charts)" msgstr "Åpne dialogvinduet Format → Formatvalg → Dataserier (diagrammer) " +#. p2eYn #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -216,6 +241,7 @@ msgid "Choose Format - Format Selection - Data Series - Options tab (Charts)" msgstr "Velg fanen Format → Formatvalg → Dataserier → Innstillinger (diagrammer) " +#. yRSaN #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -224,6 +250,7 @@ msgid "Choose Format - Title (Charts)" msgstr "Velg Format → Tittel (diagrammer) " +#. CExBh #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -232,6 +259,7 @@ msgid "Choose Format - Format Selection - Title dialog (Charts)" msgstr "Åpne dialogvinduet Format → Formatvalg → Tittel (diagrammer) " +#. icD4Y #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -240,6 +268,7 @@ msgid "Choose Format - Format Selection - Title dialog (Charts)" msgstr "Åpne dialogvinduet Format → Formatvalg → Tittel (diagrammer) " +#. aEnjy #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -248,6 +277,7 @@ msgid "Choose Format - Title (Charts)" msgstr "Velg Format → Tittel (diagrammer) " +#. arVPN #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -256,6 +286,7 @@ msgid "Choose Format - Axis (Charts)" msgstr "Velg Format → Akse (diagrammer) " +#. HDvN2 #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -264,6 +295,7 @@ msgid "Choose Format - Legend, or Format - Format Selection - Legend (Charts)" msgstr "Velg Format → Forklaring eller Format → FormatvalgForklaring (diagrammer) " +#. R5dmc #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -272,6 +304,7 @@ msgid "Choose Format - Axis - X Axis/Secondary X Axis/Z Axis/All Axes (Charts)" msgstr "Velg Format → Akse → X-akse/Sekundær X-akse/Z-akse/Alle aksene (diagrammer) " +#. Fphi2 #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -280,6 +313,7 @@ msgid "Choose Format - Axis - Y Axis/Secondary Y Axis (Charts)" msgstr "Velg Format → Akse → Y-akse/Sekundær Y-akse (diagrammer) " +#. BH3xT #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -288,6 +322,7 @@ msgid "Choose Format - Axis - Y Axis - Scale tab (Charts)" msgstr "Velg Format → Akse → Y-akse → Målestokk (diagrammer) " +#. DbZea #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -296,6 +331,7 @@ msgid "Choose Format - Axis - X Axis - Positioning tab (Charts)" msgstr "Velg Format → Akse → X-akse → Plassering (diagrammer) " +#. 7T8FZ #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -304,6 +340,7 @@ msgid "Choose Format - Axis - Y Axis - Positioning tab (Charts)" msgstr "Velg Format → Akse → Y-akse → Plassering (diagrammer) " +#. kLZUK #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -312,6 +349,7 @@ msgid "Choose Format - Grid (Charts)" msgstr "Velg Format → Rutenett (diagrammer) " +#. 8RRTD #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -320,6 +358,7 @@ msgid "Choose Format - Grid - X, Y, Z Axis Major Grid/ X, Y, Z Minor Grid/ All Axis Grids (Charts)" msgstr "Velg Format → Rutenett → Hovedrutenett for X-, Y-, Z-aksen/Støtterutenett for X-, Y-, Z-aksen/Alle rutenett for aksene (diagrammer) " +#. aRwaG #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -328,6 +367,7 @@ msgid "Choose Format - Chart Wall - Chart dialog (Charts)" msgstr "Åpne dialogvinduet Format → Diagramvegg → Diagram (diagrammer) " +#. F8nYw #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -336,6 +376,7 @@ msgid "Choose Format - Chart Floor (Charts)" msgstr "Velg Format → Diagramgulv (diagrammer) " +#. e3DQt #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -344,6 +385,7 @@ msgid "Choose Format - Chart Area (Charts)" msgstr "Velg Format → Diagramområde (diagrammer) " +#. DMVGy #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -352,6 +394,7 @@ msgid "Choose Format - Chart Type (Charts)" msgstr "Velg Format → Diagramtype (diagrammer)" +#. MoAXJ #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -360,6 +403,7 @@ msgid "On Formatting bar, click" msgstr "På formateringsverktøylinja trykker du" +#. sucpX #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -368,6 +412,7 @@ msgid "Icon" msgstr "Ikon" +#. sMG8t #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -376,6 +421,7 @@ msgid "Edit Chart Type" msgstr "Rediger diagramtype" +#. pcXEC #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -384,6 +430,7 @@ msgid "Choose Format - 3D View (Charts)" msgstr "Velg Format → 3D-visning (diagrammer) " +#. Fqrq7 #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -392,6 +439,7 @@ msgid "Choose Format - Arrangement (Charts)" msgstr "Velg Format → Oppstilling (diagrammer)" +#. fsASf #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -400,6 +448,7 @@ msgid "Open context menu - choose Arrangement (Charts)" msgstr "Åpne sprettoppmenyen og velg Oppstilling (diagrammer)" +#. YFGGY #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -408,14 +457,16 @@ msgid "Icon" msgstr "Ikon" +#. DENsj #: 00000004.xhp msgctxt "" "00000004.xhp\n" "par_id3150962\n" "help.text" msgid "Horizontal Grids" -msgstr "Vannrett rutenett" +msgstr "Horisontalt Rutenett" +#. sKqMD #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -424,6 +475,7 @@ msgid "Icon" msgstr "Ikon" +#. Mpmae #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -432,6 +484,7 @@ msgid "Show/Hide Axis Descriptions" msgstr "Vis/skjul aksebeskrivelser" +#. E8GSF #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -440,6 +493,7 @@ msgid "Icon" msgstr "Ikon" +#. RUv7H #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -448,6 +502,7 @@ msgid "Vertical Grids" msgstr "Loddrett rutenett" +#. HTXnr #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -456,6 +511,7 @@ msgid "Insert Chart" msgstr "Sett in - Diagram" +#. FMCni #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -464,6 +520,7 @@ msgid "Choose Insert - Chart..." msgstr "VelgSett inn - Diagram" +#. r4BHs #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -472,6 +529,7 @@ msgid "Choose Insert - Chart..." msgstr "VelgSett inn - Diagram" +#. foJgL #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -480,6 +538,7 @@ msgid "Double-click a chart, then choose Format - Data Ranges" msgstr "Dobbeltklikk på et diagram og velg så «Format → Dataområder»" +#. XCQwT #: 00000004.xhp msgctxt "" "00000004.xhp\n" @@ -488,6 +547,7 @@ msgid "In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type drop-down, then click the Properties button." msgstr "I dialogvinduet for diagramtype for et linjediagram eller XY-diagram (spreidningsdiagram) som viser linjer, kan du velge Stegvis i nedtrekkslisten Linjetype og deretter klikke på knappen Egenskaper." +#. ToFBi #: 00000004.xhp msgctxt "" "00000004.xhp\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/schart.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/schart.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/schart.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/schart.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2018-05-08 15:10+0200\n" -"PO-Revision-Date: 2019-01-23 13:10+0000\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548249025.000000\n" +#. wtFDe #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -24,6 +25,7 @@ msgid "Charts in $[officename]" msgstr "Diagrammer i $[officename]" +#. rTRMz #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -32,6 +34,7 @@ msgid "charts; overview HowTos for charts" msgstr "diagrammer; oversikt Gjennomganger for diagrammer" +#. MCTMA #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -40,6 +43,7 @@ msgid "Using Charts in %PRODUCTNAME" msgstr "Bruke diagrammer i %PRODUCTNAME" +#. MKzCA #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -48,6 +52,7 @@ msgid "$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations." msgstr "Med $[officename] kan du presentere data grafisk i et diagram, slik at du visuelt kan sammenligne dataserier og se trender i dataene. Du kan sette inn diagrammer i regneark, tekstdokumenter, tegninger og presentasjoner." +#. wFC6F #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -56,6 +61,7 @@ msgid "Chart Data" msgstr "Diagramdata" +#. SVCdj #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -64,6 +70,7 @@ msgid "Charts can be based on the following data:" msgstr "Diagrammer kan bygge på følgende data:" +#. upkcw #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -72,6 +79,7 @@ msgid "Spreadsheet values from Calc cell ranges" msgstr "Regnearkverdier fra celleområder i Calc" +#. xvPKt #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -80,6 +88,7 @@ msgid "Cell values from a Writer table" msgstr "Celleverdier fra en tabell i Writer" +#. pkLtG #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -88,6 +97,7 @@ msgid "Values that you enter in the Chart Data Table dialog (you can create these charts in Writer, Draw, or Impress, and you can copy and paste them also to Calc)" msgstr "Verdier du skriver inn i dialogvinduet ,Diagramdatatabell (du kan lage disse diagrammene i Writer, Draw eller Impress, og du kan også lime dem inn i Calc)" +#. yKUMz #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -96,6 +106,7 @@ msgid "Creates a chart in the current document. To use a continuous range of cells as the data source for your chart, click inside the cell range, and then choose this command. Alternatively, select some cells and choose this command to create a chart of the selected cells." msgstr "Skaper et diagram i det gjeldende dokumentet. For å bruke et samenhengende celleområde som datakilde for diagrammet, klikk inne i celleområdet og bruk denne kommandoen. Alternativt kan du markere neon celler og deretter bruk denne kommandoen for å skape et diagram med de valgte cellene." +#. MZr5A #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -104,6 +115,7 @@ msgid "To insert a chart" msgstr "Sette inn et diagram" +#. xMyYq #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -112,6 +124,7 @@ msgid "To edit a chart" msgstr "Redigere et diagram" +#. 2awPo #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -120,6 +133,7 @@ msgid "Click a chart to edit the object properties:" msgstr "Trykk på et diagram for å redigere egenskapene til diagramobjektet:" +#. MMYWv #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -128,6 +142,7 @@ msgid "Size and position on the current page." msgstr "størrelse og plassering på den gjeldende siden." +#. 7zPqd #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -136,6 +151,7 @@ msgid "Alignment, text wrap, outer borders, and more." msgstr "Justering, tekstbryting, ytre kantlinjer og mer." +#. X27Dw #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -144,6 +160,7 @@ msgid "Double-click a chart to enter the chart edit mode:" msgstr "Dobbeltklikk et diagram for å redigere det:" +#. cUADi #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -152,6 +169,7 @@ msgid "Chart data values (for charts with own data)." msgstr "Diagramdataverdier (for diagrammer med egne data)." +#. BGFEv #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -160,6 +178,7 @@ msgid "Chart type, axes, titles, walls, grid, and more." msgstr "Diagramtype, akser, titler, vegger, rutenett og mer." +#. aDGNk #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -168,6 +187,7 @@ msgid "Double-click a chart element in chart edit mode:" msgstr "Dobbeltklikk et diagramelement når du redigerer diagrammet:" +#. Ft8G5 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -176,6 +196,7 @@ msgid "Double-click an axis to edit the scale, type, color, and more." msgstr "Dobbeltklikk på en akse for å redigere skala, type, farge og mer." +#. BcUqt #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -184,6 +205,7 @@ msgid "Double-click a data point to select and edit the data series to which the data point belongs." msgstr "Dobbeltklikk et datapunkt for å redigere de grafiske verdiene i dataserien" +#. Drw6j #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -192,6 +214,7 @@ msgid "With a data series selected, click, then double-click a single data point to edit the properties of this data point (for example, a single bar in a bar chart)." msgstr "Når en dataserie er markert, kan du klikke og deretter dobbeltklikke på et datapunkt for å redigere egenskapene for dette datapunktet (for eksempel en enkelt stolpe i et stolpediagram)." +#. ZrY6M #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -200,6 +223,7 @@ msgid "Double-click the legend to select and edit the legend. Click, then double-click a symbol in the selected legend to edit the associated data series." msgstr "Dobbeltklikk på en forklaring for å redigere den. Klikk og deretter dobbeltklikk på et symbol i den valgte forklaringen for å redigere dataserien som hører til." +#. 2GvmD #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -208,6 +232,7 @@ msgid "Double-click any other chart element, or click the element and open the Format menu, to edit the properties." msgstr "Dobbeltklikk på alle andre diagramelement, eller klikk på elementet for å åpne formatmenyen, for å redigere egenskapene." +#. eCML4 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -216,6 +241,7 @@ msgid "Click outside the chart to leave the current edit mode." msgstr "Trykk utenfor diagrammet for å avslutte redigeringen." +#. Jcdvi #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -224,6 +250,7 @@ msgid "To print a chart in high quality, you can export the chart to a PDF file and print that file." msgstr "Du kan skrive ut et diagram i god kvalitet ved å eksportere det til en PDF-fil og deretter skrive ut denne filen." +#. dk7i6 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -232,6 +259,7 @@ msgid "In chart edit mode, you see the Formatting Bar for charts near the upper border of the document. The Drawing Bar for charts appears near the lower border of the document. The Drawing Bar shows a subset of the icons from the Drawing toolbar of Draw and Impress." msgstr "I redigeringsmodus for diagrammet blir Verktøylinjen Formatering» for diagrammet vist nær den øverste kanten av dokumentet. Verktøylinja for tegneverktøyene blir vist nederst i dokumentet. Denne verktøylinjen viser symbolene for Tegning fra Draw og Impress." +#. sNqMe #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -240,6 +268,7 @@ msgid "You can right-click an element of a chart to open the context menu. The context menu offers many commands to format the selected element." msgstr "Du kan høyreklikke et element i et diagram for å åpne sprettoppmenyen. Denne inneholder kommandoer for å formatere det valgte elementet." +#. dQSHt #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -248,6 +277,7 @@ msgid "Formats the selected title." msgstr "Formaterer den valgte tittelen." +#. orDAZ #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -256,6 +286,7 @@ msgid "Formats the chart area." msgstr "Formaterer diagramområdet." +#. FAkFX #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -264,6 +295,7 @@ msgid "Formats the chart wall." msgstr "Formaterer diagramveggen." +#. GBwcB #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -272,6 +304,7 @@ msgid "Formats the chart floor." msgstr "Formaterer diagramgulvet." +#. VsRbA #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -280,6 +313,7 @@ msgid "Formats the chart legend." msgstr "Formaterer diagramforklaringen." +#. dahmw #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -288,6 +322,7 @@ msgid "Formats the selected axis." msgstr "Formaterer den valgte aksen." +#. dnReG #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -296,6 +331,7 @@ msgid "Formats the selected data point." msgstr "Formaterer det valgte datapunktet." +#. Em2oQ #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -304,6 +340,7 @@ msgid "Formats the major grid." msgstr "Formaterer hovedrutenettet." +#. dSJTX #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -312,6 +349,7 @@ msgid "Formats the minor grid." msgstr "Formaterer hovedrutenettet." +#. 8Dius #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -320,6 +358,7 @@ msgid "Formats the data series." msgstr "Formaterer dataseriene." +#. 9FeGU #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -328,6 +367,7 @@ msgid "Formats the stock loss indicators." msgstr "Formaterer diagramområdet." +#. uhG9U #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -336,6 +376,7 @@ msgid "Formats the stock gain indicators." msgstr "Formaterer diagramgulvet." +#. RshCo #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -344,6 +385,7 @@ msgid "Formats the data labels." msgstr "Formaterer dataoverskriftene." +#. 7Gexq #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -352,6 +394,7 @@ msgid "Formats the Y error bars." msgstr "Formaterer diagramområdet." +#. MhtWH #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -360,6 +403,7 @@ msgid "Formats the mean value line." msgstr "Formaterer trendlinja." +#. H44aA #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -368,6 +412,7 @@ msgid "Formats the trendline." msgstr "Formaterer trendlinja." +#. QYEkZ #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -376,6 +421,7 @@ msgid "Formats the trendline equation." msgstr "Formaterer trendlinja." +#. zgFB3 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -384,6 +430,7 @@ msgid "Formats the selected data label." msgstr "Formaterer den valgte dataoverskriften." +#. AdNa8 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -392,6 +439,7 @@ msgid "Opens a dialog to insert chart titles." msgstr "Åpner et dialogvindu for å sette inn diagramoverskrifter." +#. fZZ6J #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -400,6 +448,7 @@ msgid "Opens a dialog to insert or delete axes." msgstr "Åpner et dialogvindu for å sette inn eller slette en akse." +#. CzaFt #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -408,6 +457,7 @@ msgid "Opens a dialog to insert an axis." msgstr "Åpner et dialogvindu for å sette inn en akse." +#. x9jBK #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -416,6 +466,7 @@ msgid "Opens a dialog to insert an axis title." msgstr "Åpner et dialogvindu for å sette inn en akseoverskrift." +#. tS9HE #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -424,6 +475,7 @@ msgid "Inserts a major grid." msgstr "Setter inn et hovedrutenett." +#. NUu58 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -432,6 +484,7 @@ msgid "Inserts a minor grid." msgstr "Setter inn et mindre rutenett." +#. B67hx #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -440,6 +493,7 @@ msgid "Inserts data labels." msgstr "Setter inn dataoverskrifter." +#. 2STaz #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -448,6 +502,7 @@ msgid "Inserts the trendline equation and the coefficient of determination R²." msgstr "Sett inn likningen for trendlinjen og determinasjonskoeffisienten R²." +#. CKUEM #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -456,6 +511,7 @@ msgid "Inserts the coefficient of determination R² value." msgstr "Sett inn verdien for bestemmelseskoeffisienten R²." +#. BsSAb #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -464,6 +520,7 @@ msgid "Inserts a single data label." msgstr "Setter inn en enkel dataoverskrift." +#. 35PWr #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -472,6 +529,7 @@ msgid "Deletes the chart legend." msgstr "Sletter diagramforklaringen." +#. CFDbR #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -480,6 +538,7 @@ msgid "Deletes the selected axis." msgstr "Sletter de valgte aksene." +#. jgG2M #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -488,6 +547,7 @@ msgid "Deletes the major grid." msgstr "Sletter hovedrutenettet." +#. bTycs #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -496,6 +556,7 @@ msgid "Deletes the minor grid." msgstr "Sletter det mindre rutenettet." +#. Qatm6 #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -504,6 +565,7 @@ msgid "Deletes all data labels." msgstr "Sletter alle dataoverskrifter." +#. NDa9X #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -512,6 +574,7 @@ msgid "Deletes the trendline equation." msgstr "Sletter de valgte aksene." +#. CbYXF #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -520,6 +583,7 @@ msgid "Deletes the R² value." msgstr "Sletter diagramforklaringen." +#. 3thAk #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -528,6 +592,7 @@ msgid "Deletes the selected data label." msgstr "Sletter den valgte dataoverskriften." +#. LQRZw #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -536,6 +601,7 @@ msgid "Deletes the mean value line." msgstr "Sletter diagramforklaringen." +#. WBA6w #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -544,6 +610,7 @@ msgid "Deletes the Y error bars." msgstr "Sletter hovedrutenettet." +#. d6WTf #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -552,6 +619,7 @@ msgid "Resets the selected data point to default format." msgstr "Tilbakestiller det valgte datapunktet til standardformatet." +#. xZ45w #: main0000.xhp msgctxt "" "main0000.xhp\n" @@ -560,6 +628,7 @@ msgid "Resets all data points to default format." msgstr "Tilbakestiller alle datapunkter til standardformatet." +#. XUCUB #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -568,6 +637,7 @@ msgid "Formatting Bar" msgstr "Verktøylinja «Formatering»" +#. WicyB #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -576,6 +646,7 @@ msgid "Formatting Bar" msgstr "Verktøylina «Formatering»" +#. bGXHw #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -584,6 +655,7 @@ msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode." msgstr "Formatteringslinjen vises når et diagram er i endringsmodus. Dobbelklikk diagrammet for å aktivere endringsmodus. Klikk utenfor diagrammet for å forlate endringsmodus." +#. ffA95 #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -592,6 +664,7 @@ msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar." msgstr "Du kan redigere formateringen av et diagram ved hjelp av kontrollelementene og ikonene på formateringslinja." +#. MnXYr #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -600,6 +673,7 @@ msgid "Select Chart Element" msgstr "Velg diagramelement" +#. eYgyC #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -608,6 +682,7 @@ msgid "Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element." msgstr "Merk elementet som du vil formatere. Det valgte elementet vises i forhåndsvising av diagrammet. Klikk på «Formater utvalget …« for å åpne dialogvinduet med valgene for det valgte elementet." +#. uGAFF #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -616,6 +691,7 @@ msgid "Format Selection" msgstr "Formatvalg" +#. BSwBH #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -624,6 +700,7 @@ msgid "Opens the properties dialog for the selected element." msgstr "Åpner Egenskaper-dialogen for det markerte elementet" +#. AUcrE #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -632,6 +709,7 @@ msgid "Chart Type" msgstr "Diagramtype" +#. Q4Sap #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -640,6 +718,7 @@ msgid "Opens the Chart Type dialog." msgstr "Åpner dialogvinduet for diagramtype." +#. wepEQ #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -648,6 +727,7 @@ msgid "Chart Data Table" msgstr "Diagramdatatabell" +#. c6Act #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -656,22 +736,25 @@ msgid "Opens the Data Table dialog where you can edit the chart data." msgstr "Åpner Datatabell dialogen hvor du kan redigerer diagramdataene" +#. aE624 #: main0202.xhp msgctxt "" "main0202.xhp\n" "hd_id0810200902300672\n" "help.text" msgid "Horizontal Grids" -msgstr "Vannrett rutenett" +msgstr "Horisontalt Rutenett" +#. uTeV8 #: main0202.xhp msgctxt "" "main0202.xhp\n" "par_id0810200902300630\n" "help.text" msgid "The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis." -msgstr "Ikonet \"Vis/skjul vannrett rutenett\" på verktøylinja, slår av og på vising av rutenettet på Y-aksen." +msgstr "Ikonet \"Vis/skjul horisontalt rutenett\" på verktøylinjen, slår av og på visning av rutenettet på Y-aksen." +#. dqfgM #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -680,6 +763,7 @@ msgid "Legend On/Off" msgstr "Forklaring på/av" +#. aAABk #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -688,6 +772,7 @@ msgid "To show or hide a legend, click Legend On/Off on the Formatting bar." msgstr "For å vise eller skjule en forklaring, klikk på \"Vis/skjul forklaring på verktøylinjen." +#. ACmgc #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -696,6 +781,7 @@ msgid "Scale Text" msgstr "Skaler tekst" +#. vUrp2 #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -704,6 +790,7 @@ msgid "Rescales the text in the chart when you change the size of the chart." msgstr "Endrer størrelsen på teksten i diagrammet i samsvar med endringene du gjør i størrelsen på diagrammet." +#. hsSrG #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -712,6 +799,7 @@ msgid "Automatic Layout" msgstr "Automatisk utseende" +#. gcAxi #: main0202.xhp msgctxt "" "main0202.xhp\n" @@ -720,6 +808,7 @@ msgid "Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements." msgstr "Flytter alle diagramdataene til standardplasseringene. Denne funksjonen endrer ikke diagramtypen eller andre egenskaper enn selve plasseringen av objektene." +#. NCrAu #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -728,6 +817,7 @@ msgid "$[officename] Chart Features" msgstr "$[officename] Chart-funksjoner" +#. dyCxy #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -736,6 +826,7 @@ msgid "$[officename] Chart Features" msgstr "$[officename] Chart-funksjoner" +#. DR7Ma #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -744,6 +835,7 @@ msgid "Charts allow you to present data so that it is easy to visualize." msgstr "Med diagrammer kan du presentere data på en oversiktlig måte." +#. ozGGL #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -752,6 +844,7 @@ msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data." msgstr "Du kan lage et diagram fra en datakilde i et Calc-regneark eller fra en Writer-tabell. Hvis diagrammet er innebygd i det samme dokumentet som dataene, bevares koblingene mellom dataene og diagrammet, slik at diagrammet oppdateres automatisk når dataene endres." +#. 5BKEB #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -760,6 +853,7 @@ msgid "Chart Types" msgstr "Diagramtyper" +#. imCSX #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -768,6 +862,7 @@ msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse." msgstr "Velg blant et utvalg av 3D- og 2D-diagrammer, for eksempel stolpediagrammer, linjediagrammer og kursdiagrammer. Du kan endre diagramtype med noen få museklikk." +#. xTCes #: main0503.xhp msgctxt "" "main0503.xhp\n" @@ -776,6 +871,7 @@ msgid "Individual Formatting" msgstr "Enkeltvis formatering" +#. AuSKr #: main0503.xhp msgctxt "" "main0503.xhp\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2020-09-10 05:35+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" #. ugSgG #: 02000000.xhp @@ -166,7 +166,7 @@ "hd_id3153379\n" "help.text" msgid "Query Design" -msgstr "" +msgstr "Spørre Design" #. 3JCfK #: 02000000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/00.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw/00.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:42+0100\n" -"PO-Revision-Date: 2019-12-06 11:59+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563829399.000000\n" #. EDSDr @@ -50,7 +50,7 @@ "par_id341556823034391\n" "help.text" msgid "Choose Page - Page Properties " -msgstr "" +msgstr "Velg Side - Sideegenskaper " #. h9HDn #: page_menu.xhp @@ -59,7 +59,7 @@ "par_id561556823042778\n" "help.text" msgid "Choose Page - Page Properties and then click the Page tab " -msgstr "" +msgstr "Velg Side - Pa Sideegenskaper og klikk så på Side fliken " #. 6eTqD #: page_menu.xhp @@ -68,7 +68,7 @@ "par_id321556823043909\n" "help.text" msgid "Choose Page - Page Properties and then click the Background tab " -msgstr "" +msgstr "Velg Side - Sideegenskaper og klikk så på Bakgrunn fanen " #. UqCyU #: page_menu.xhp @@ -77,7 +77,7 @@ "par_id941556823044342\n" "help.text" msgid "Choose Page - Master Page " -msgstr "" +msgstr "Velg Side - Hovedside " #. paRMk #: page_menu.xhp @@ -86,7 +86,7 @@ "par_id191556823044529\n" "help.text" msgid "Choose Page - New Page" -msgstr "" +msgstr "Velg Side - Ny Side" #. EpBTa #: page_menu.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/01.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw/01.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2020-07-07 14:34+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563829425.000000\n" #. ybhKD @@ -581,7 +581,7 @@ "hd_id641596204028276\n" "help.text" msgid "Title" -msgstr "" +msgstr "Tittel" #. waSME #: insert_layer.xhp @@ -590,7 +590,7 @@ "par_id271596204273624\n" "help.text" msgid "Enter the title of the layer." -msgstr "" +msgstr "Skriv inn tittelen på laget." #. GGy5s #: insert_layer.xhp @@ -599,7 +599,7 @@ "hd_id791596204033460\n" "help.text" msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. q5F9X #: insert_layer.xhp @@ -608,7 +608,7 @@ "par_id471596204283656\n" "help.text" msgid "Enter a description of the layer." -msgstr "" +msgstr "Skriv en beskrivelse på laget." #. WFSEL #: insert_layer.xhp @@ -923,7 +923,7 @@ "par_id691556822054550\n" "help.text" msgid "To change the background of all of the pages in the active file, select a background, click OK and click Yes in the Page Properties dialog." -msgstr "" +msgstr "For å endre bakgrunnen til alle sidene i den aktive filen, velg en bakgrunn, klikk OK og klikk Ja i Sideegenskapss dialogen." #. DA7cH #: rename_page.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-22 13:00+0100\n" -"PO-Revision-Date: 2020-02-26 17:15+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548252078.000000\n" #. cZbDh @@ -266,7 +266,7 @@ "par_idN108DA\n" "help.text" msgid "Select the horizontal and vertical distribution option and click OK." -msgstr "Velg de vannrette og loddrette fordelingsinnstillingene, og trykk OK." +msgstr "Velg de horisontelle og loddrette fordelingsinnstillingene, og trykk OK." #. cSeG5 #: align_arrange.xhp @@ -275,7 +275,7 @@ "par_id3150535\n" "help.text" msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the Distribution command is applied." -msgstr "Valgte objekter blir fordelt likt langs den vannrette eller loddrette aksen. De to ytterste objektene brukes som referansepunkter, og flyttes ikke når du bruker funksjonen Fordeling kjøres." +msgstr "Valgte objekter blir fordelt likt langs den horisontelle eller loddrette aksen. De to ytterste objektene brukes som referansepunkter, og flyttes ikke når du bruker funksjonen Fordeling kjøres." #. gpE73 #: color_define.xhp @@ -2705,7 +2705,7 @@ "par_id3159236\n" "help.text" msgid "To skew the object vertically or horizontally, drag one of the side handles." -msgstr "For å forskyve objektet loddrett eller vannrett, dra i et av håndtakene på siden av objektet." +msgstr "For å forskyve objektet loddrett eller horisontalt, dra i et av håndtakene på siden av objektet." #. SFGmo #: text_enter.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/sdraw.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-07-07 14:34+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563823117.000000\n" #. dHbww @@ -113,7 +113,7 @@ "tit\n" "help.text" msgid "View (menu in Draw)" -msgstr "" +msgstr "Vis (meny i Draw)" #. hWYJ3 #: main0103.xhp @@ -158,7 +158,7 @@ "par_idN105B2\n" "help.text" msgid "Master" -msgstr "" +msgstr "Hoved" #. eSnQZ #: main0103.xhp @@ -167,7 +167,7 @@ "par_idN105B6\n" "help.text" msgid "Switch to the master view." -msgstr "" +msgstr "Bytt til hoveddokument" #. nstgU #: main0103.xhp @@ -176,7 +176,7 @@ "hd_id221605492986383\n" "help.text" msgid "User Interface" -msgstr "" +msgstr "Brukergrensesnitt" #. tYxbF #: main0103.xhp @@ -185,7 +185,7 @@ "par_id761605493042236\n" "help.text" msgid "Opens dialog box for selecting layout of user interface." -msgstr "" +msgstr "Åpner dialogboksen for å velge utforming av brukergrensesnittet." #. JChXS #: main0103.xhp @@ -194,7 +194,7 @@ "hd_id102720151746522815\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Merknader" #. XjZkS #: main0103.xhp @@ -203,7 +203,7 @@ "par_id102720150112252143\n" "help.text" msgid "Show or hide annotations on the page." -msgstr "" +msgstr "Vis eller skjul kommentar på siden." #. Y3uKu #: main0103.xhp @@ -212,7 +212,7 @@ "hd_id961605560845125\n" "help.text" msgid "Shift" -msgstr "" +msgstr "Shift" #. 3Eaeo #: main0103.xhp @@ -221,7 +221,7 @@ "par_id301605560855098\n" "help.text" msgid "Use to shift the position of the page in the window. When enabled, the appearance of the mouse pointer changes. Click the page and drag to desired position." -msgstr "" +msgstr "Bruk til å bytte posisjonen på siden i vinduet. Når aktivert, endres utseendet på musepekeren. Klikk på siden og dra til ønsket posisjon." #. 7AgpR #: main0103.xhp @@ -563,7 +563,7 @@ "hd_id3146313\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fest til festeguider" #. eUTG8 #: main0213.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2020-08-02 13:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563822810.000000\n" #. 3B8ZN @@ -104,7 +104,7 @@ "par_id1094088\n" "help.text" msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally." -msgstr "I skjemakontroller er en rulleknapp en egenskap for et tallfelt, valutafelt, datofelt eller klokkeslettfelt. Hvis egenskapen «Rulleknapp» er slått på, viser feltet et par symboler med piler som peker i motsatt retning, enten vannrett eller loddrett." +msgstr "I skjemakontroller er en rulleknapp en egenskap for et tallfelt, valutafelt, datofelt eller klokkeslettfelt. Hvis egenskapen «Rulleknapp» er slått på, viser feltet et par symboler med piler som peker i motsatt retning, enten horisontalt eller vertikalt." #. QSFCN #: 00000001.xhp @@ -13235,7 +13235,7 @@ "par_id3153076\n" "help.text" msgid "Align Center HorizontallyCentered" -msgstr "Midtstilt vannrettMidtstilt" +msgstr "Midtstilt Horisontalt Midtstilt" #. FiPMC #: 00040502.xhp @@ -13694,7 +13694,7 @@ "par_id3153369\n" "help.text" msgid "Choose Shape - Flip - Horizontally ($[officename] Draw)." -msgstr "Velg Form → Speilvend → Vannrett ($[officename] Draw)" +msgstr "Velg Form → Speilvend → Horisontalt ($[officename] Draw)" #. qfb9D #: 00040503.xhp @@ -13712,7 +13712,7 @@ "par_id3156106\n" "help.text" msgid "Choose Format - Flip - Horizontally." -msgstr "Velg Format → Speilvend → Vannrett" +msgstr "Velg Format → Speilvend → Horisontalt " #. dSXom #: 00040503.xhp @@ -13721,7 +13721,7 @@ "par_id3152578\n" "help.text" msgid "Right-click a selected object - choose Flip - Horizontally ($[officename] Impress)." -msgstr "Høyreklikk et valgt objekt og velg Speilvend → Vannrett ($[officename] Impress)" +msgstr "Høyreklikk et valgt objekt og velg Speilvend → Horisontalt ($[officename] Impress)" #. yZ2Pt #: 00040503.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,17 +3,17 @@ 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-12-14 15:33+0100\n" -"PO-Revision-Date: 2020-08-02 13:35+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-15 15:57+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565212183.000000\n" #. 3u8hR @@ -932,7 +932,7 @@ "hd_id3159194\n" "help.text" msgid "Horizontal pitch" -msgstr "Vannrett avstand" +msgstr "Horisontal avstand" #. QfbC5 #: 01010202.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinkende" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" @@ -21992,7 +21965,7 @@ "par_id3145313\n" "help.text" msgid "If the Keep Scale option is selected, enter a positive amount to trim the left edge of the graphic, or a negative amount to add white space to the left of the graphic. If the Keep image size option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic." -msgstr "Hvis du velger Samme skala, skriv inn en positiv verdi for å klippe bort litt av den venstre delen av bildet, eller skriv inn en negativ verdi for å legge til et hvitt felt til venstre for bildet. Hvis du har valgtSamme bildestørrelse, skriv inn en positiv verdi for å skalere opp bildet vannrett. For å skalere ned må du skrive inn en negativ verdi." +msgstr "Hvis du velger Samme skala, skriv inn en positiv verdi for å klippe bort litt av den venstre delen av bildet, eller skriv inn en negativ verdi for å legge til et hvitt felt til venstre for bildet. Hvis du har valgtSamme bildestørrelse, skriv inn en positiv verdi for å skalere opp bildet horisontalt. For å skalere ned må du skrive inn en negativ verdi." #. HZJHc #: 05030800.xhp @@ -22010,7 +21983,7 @@ "par_id3145382\n" "help.text" msgid "If the Keep Scale option is selected, enter a positive amount to trim the right edge of the graphic, or a negative amount to add white space to the right of the graphic. If the Keep image size option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic." -msgstr "Hvis du velger Samme skala, skriv inn en positiv verdi for å klippe vekk litt av den høyre delen av bildet eller skriv inn en negativ verdi for å legge til et hvitt felt til høyre for bildet. Hvis du har valgt Behold størrelse, skriv inn en positiv verdi for å skalere opp bildet vannrett. For å skalere ned må du skrive inn en negativ verdi." +msgstr "Hvis du velger Samme skala, skriv inn en positiv verdi for å klippe vekk litt av den høyre delen av bildet eller skriv inn en negativ verdi for å legge til et hvitt felt til høyre for bildet. Hvis du har valgt Behold størrelse, skriv inn en positiv verdi for å skalere opp bildet horisontalt. For å skalere ned må du skrive inn en negativ verdi." #. PSJXo #: 05030800.xhp @@ -22865,7 +22838,7 @@ "par_id0522200809473845\n" "help.text" msgid "Centers the cells horizontally on the printed page." -msgstr "Justerer cellene vannrett på den utskrevne siden." +msgstr "Justerer cellene horisontalt på den utskrevne siden." #. CMpSv #: 05040200.xhp @@ -23873,7 +23846,7 @@ "tit\n" "help.text" msgid "Center Horizontal" -msgstr "Midtstill vannrett" +msgstr "Midtstill Horisontalt" #. XMBLu #: 05070200.xhp @@ -23882,7 +23855,7 @@ "hd_id3150278\n" "help.text" msgid "Center Horizontal" -msgstr "Midtstill vannrett" +msgstr "Midtstill Horisontalt " #. eBarq #: 05070200.xhp @@ -24422,7 +24395,7 @@ "hd_id3150568\n" "help.text" msgid "Horizontally" -msgstr "Vannrett" +msgstr "Horisontalt" #. 9DZaG #: 05100200.xhp @@ -27518,7 +27491,7 @@ "par_id3155583\n" "help.text" msgid "Enter the horizontal offset for the gradient." -msgstr "Velg hvor langt du vil forskyve fargeovergangen vannrett." +msgstr "Velg hvor langt du vil forskyve fargeovergangen horisontalt." #. kHDGR #: 05210700.xhp @@ -29048,7 +29021,7 @@ "par_id3145759\n" "help.text" msgid "Flips the selected object horizontally, or vertically." -msgstr "Speil det valgte objektet vannrett eller loddrett." +msgstr "Speil det valgte objektet horisontalt eller vertikalt." #. jQxB2 #: 05240100.xhp @@ -29084,7 +29057,7 @@ "tit\n" "help.text" msgid "Horizontally" -msgstr "Vannrett" +msgstr "Horisontalt" #. gDSQC #: 05240200.xhp @@ -29093,7 +29066,7 @@ "hd_id3147543\n" "help.text" msgid "Horizontally" -msgstr " Speil vannrett" +msgstr " Horisontalt " #. YqcCi #: 05240200.xhp @@ -29822,7 +29795,7 @@ "par_id3149983\n" "help.text" msgid "Slant Horizontal" -msgstr "Skråstill vannrett" +msgstr "Skråstill Horisontalt" #. q7vvg #: 05280000.xhp @@ -30182,7 +30155,7 @@ "hd_id3156537\n" "help.text" msgid "Horizontal Distance" -msgstr "Vannrett avstand" +msgstr "Horisontal Avstand" #. rEQCf #: 05280000.xhp @@ -31145,7 +31118,7 @@ "hd_id3153124\n" "help.text" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. HDGDd #: 05340300.xhp @@ -31235,7 +31208,7 @@ "par_id3154380\n" "help.text" msgid "Horizontally centers the contents of the cell." -msgstr "Midtstiller innholdet i cellen vannrett." +msgstr "Midtstiller innholdet i cellen Horisontalt." #. FtVca #: 05340300.xhp @@ -32666,7 +32639,7 @@ "hd_id3152909\n" "help.text" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. QcuYg #: 05350200.xhp @@ -34124,7 +34097,7 @@ "hd_id3149811\n" "help.text" msgid "Horizontally" -msgstr "Vannrett" +msgstr "Horisontalt" #. rPwFr #: 05360000.xhp @@ -34133,7 +34106,7 @@ "par_id3150355\n" "help.text" msgid "Specify the horizontal distribution for the selected objects." -msgstr "Angi den vannrette fordelinga for de valgte objektene." +msgstr "Angi den horisontale fordelingen for de valgte objektene." #. 8acTp #: 05360000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-07-24 12:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563822183.000000\n" #. Edm6o @@ -464,7 +464,7 @@ "par_id3154657\n" "help.text" msgid "Draws a text box with horizontal text direction where you drag in the current document. Drag a text box to the size you want anywhere in the document, and then type or paste your text. Rotate the text box to get rotated text." -msgstr "Tegner en tekstboks med vannrett tekstretning der du drar i dokumentet. Dra en tekstboks til den størrelsen du vil ha, hvor som helst i dokumentet, og skriv eller lim inn teksten. Du kan rotere teksten ved å rotere tekstboksen." +msgstr "Tegner en tekstboks med horisontal tekstretning der du drar i dokumentet. Dra en tekstboks til den størrelsen du vil ha, hvor som helst i dokumentet, og skriv eller lim inn teksten. Du kan rotere teksten ved å rotere tekstboksen." #. ZWAze #: 01140000.xhp @@ -491,7 +491,7 @@ "par_id3150826\n" "help.text" msgid "Inserts animated text with horizontal text direction into the current document. Drag a text box, and then type or paste your text. To assign an animation effect, choose Format - Text - Text Animation. Inserts animated text with horizontal text direction into the current document." -msgstr "Setter inn animert tekst med vannrett tekstretning i det gjeldende dokumentet. Dra ut en tekstboks og skriv eller lim inn teksten. Velg Format → Tekst → Tekstanimasjon for å legge til en animasjonseffekt. Setter inn animert tekst, vannrett, i det gjeldende dokumentet." +msgstr "Setter inn animert tekst med horisontal tekstretning i det gjeldende dokumentet. Dra ut en tekstboks og skriv eller lim inn teksten. Velg Format → Tekst → Tekstanimasjon for å legge til en animasjonseffekt. Setter inn animert tekst, horisontalt, i det gjeldende dokumentet." #. yp2DX #: 01140000.xhp @@ -518,7 +518,7 @@ "par_id3151274\n" "help.text" msgid "Draws a line that ends in a rectangular callout with horizontal text direction from where you drag in the current document. Drag a handle of the callout to resize the callout. To add text, click the edge of the callout, and then type or paste your text. To change a rectangular callout to a rounded callout, drag the largest corner handle when the pointer changes to a hand." -msgstr "Tegn en linje som ender i en rektangulær snakkeboble med vannrett tekstretning. Klikk og dra ut linja i dokumentet. Dra i et håndtak på snakkebobla for å endre størrelsen på den. Trykk på kanten av snakkebobla for å skrive eller lime inn tekst. For å endre fra en rektangulær rute til en oval rute kan du dra i de største hjørne-håndtakene når musepekeren skifter til en hånd." +msgstr "Tegn en linje som ender i en rektangulær snakkeboble med horisontal tekstretning. Klikk og dra ut linjen i dokumentet. Dra i et håndtak på snakkeboblen for å endre størrelsen på den. Trykk på kanten av snakkeboblen for å skrive eller lime inn tekst. For å endre fra en rektangulær rute til en oval rute kan du dra i de største hjørne-håndtakene når musepekeren skifter til en hånd." #. 3wvLq #: 01140000.xhp @@ -536,7 +536,7 @@ "par_idN10E60\n" "help.text" msgid "Enables you to edit points on your drawing." -msgstr "Lar deg redigere punkter i tegninga." +msgstr "Lar deg redigere punkter i tegningen." #. KAJbx #: 01140000.xhp @@ -590,7 +590,7 @@ "par_id3150492\n" "help.text" msgid "Draws a line that ends in a rectangular callout with vertical text direction from where you drag in the current document. Drag a handle of the callout to resize the callout. To add text, click the edge of the callout, and then type or paste your text. To change a rectangular callout to a rounded callout, drag the largest corner handle when the pointer changes to a hand. Only available when Asian language support is enabled." -msgstr "Tegner en linje som ender i en rektangulær snakkeboble med loddrett tekst. Linja kan lages hvor som helst i dokumentet ved å trykke ned venstre museknapp og dra. Du kan endre størrelse på snakkebobla ved å dra i ett av håndtakene. Du legger til tekst ved å trykke på kanten av snakkebobla og skrive eller lime inn teksten. Hvis du vil gjøre en rektangulær snakkeboble om til en oval snakkeboble, kan du dra i det største hjørnehåndtaket når pekeren endres til en hånd. Bare tilgjengelig når støtte for asiatiske språk er slått på." +msgstr "Tegner en linje som ender i en rektangulær snakkeboble med loddrett tekst. Linjen kan lages hvor som helst i dokumentet ved å trykke ned venstre museknapp og dra. Du kan endre størrelse på snakkeboblen ved å dra i ett av håndtakene. Du legger til tekst ved å trykke på kanten av snakkebobla og skrive eller lime inn teksten. Hvis du vil gjøre en rektangulær snakkeboble om til en oval snakkeboble, kan du dra i det største hjørnehåndtaket når pekeren endres til en hånd. Bare tilgjengelig når støtte for asiatiske språk er slått på." #. JJWjC #: 01140000.xhp @@ -1292,7 +1292,7 @@ "par_idN11D14\n" "help.text" msgid "Specifies the orientation of a scrollbar, that is, horizontal or vertical." -msgstr "Velg retningen på et rullefelt, det vil si vannrett eller loddrett." +msgstr "Velg retningen på et rullefelt, det vil si horisontalt eller vertikalt." #. fmsPT #: 01170000.xhp @@ -5324,7 +5324,7 @@ "par_idN12336\n" "help.text" msgid "Specifies the horizontal or vertical orientation for a scrollbar or spin button." -msgstr "Velg om et rullefelt eller en tallboks skal plasseres vannrett eller loddrett." +msgstr "Velg om et rullefelt eller en tallboks skal plasseres horisontalt eller vertikalt." #. CUeYM #: 01170102.xhp @@ -10949,7 +10949,7 @@ "par_id3153539\n" "help.text" msgid "Specifies the horizontal direction of the text." -msgstr "Angi den vannrette tekstretningen." +msgstr "Angi den horisontale tekstretningen." #. Cncyn #: 02040000.xhp @@ -16646,7 +16646,7 @@ "par_id3148520\n" "help.text" msgid "Initially the default tabs are shown on the horizontal ruler. Once you set a tab, only the default tabs to the right of the tab that you have set are available." -msgstr "I utgangspunktet er det standardtabulatorene som blir vist på den vannrette linjalen. Så snart du lager en ny tabulator, er det bare standardtabulatorene til høyre for den du har satt som er tilgjengelige." +msgstr "I utgangspunktet er det standardtabulatorene som blir vist på den horisontale linjalen. Så snart du lager en ny tabulator, er det bare standardtabulatorene til høyre for den du har satt som er tilgjengelige." #. Ra4PB #: 13020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/05.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/05.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-07-24 12:35+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548254391.000000\n" #. WPTtk @@ -1283,7 +1283,7 @@ "par_id131592238966436\n" "help.text" msgid "The page does not exist and must be created." -msgstr "" +msgstr "Siden eksisterer ikke og må opprettes." #. wBHiJ #: err_html.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/06.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/06.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/06.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/06.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-06-08 12:56+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1536707263.000000\n" #. EUcrc @@ -203,7 +203,7 @@ "tit\n" "help.text" msgid "Calc Screenshots" -msgstr "" +msgstr "Calc Skjermbilder" #. QaaKZ #: sc_screenshots.xhp @@ -212,7 +212,7 @@ "par_id2521\n" "help.text" msgid "XML Source Dialog" -msgstr "" +msgstr "XML Kilde Dialog" #. Ak6ph #: shared_cui_screenshots.xhp @@ -302,7 +302,7 @@ "par_id521601001943409\n" "help.text" msgid "Slant and Corner Radius tab page" -msgstr "" +msgstr "Hellning og Hjørne and Corner Radius faneside" #. agtWk #: simpress_screenshots.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared/explorer/database.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2020-08-12 11:35+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563742818.000000\n" #. fUPBC @@ -2903,7 +2903,7 @@ "par_id3154860\n" "help.text" msgid "To run an SQL query for filtering data in the database, use the Query Design View." -msgstr "" +msgstr "For å kjøre en SQL-spørring for filtreringsdata i databasen, bruk Spørringsdesignvisning ." #. Ck9G4 #: 11080000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2020-07-28 14:35+0000\n" -"Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-13 17:37+0000\n" +"Last-Translator: serval2412 \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548245266.000000\n" #. DBz3U @@ -905,7 +905,7 @@ "par_id3157910\n" "help.text" msgid "The Navigation bar is only visible for forms connected to a database. In the Design view of a form, the Navigation bar is not available. See also Table Data bar." -msgstr "" +msgstr "Navigasjonslinjen er bare synlig for skjemaer som er koblet til en database. I Designvisning av et skjema, er navigasjonslinjen ikke tilgjengelig. Se også Datatabell." #. tqTbR #: main0213.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/00.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/00.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:43+0100\n" -"PO-Revision-Date: 2020-08-12 11:35+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563818038.000000\n" #. sqmGT @@ -1400,7 +1400,7 @@ "par_id3155530\n" "help.text" msgid "Choose Slide - Slide Properties " -msgstr "" +msgstr "Velg Lysbilde - Lysbilde-egenskaper " #. FRMtM #: slide_menu.xhp @@ -1409,7 +1409,7 @@ "par_id3145386\n" "help.text" msgid "Choose Slide - Slide Properties and then click the Page tab " -msgstr "" +msgstr "Velg Lysbilde - Lysbilde-egenskaper og klikk deretter på Side fanen " #. DTpAq #: slide_menu.xhp @@ -1418,7 +1418,7 @@ "par_id3148866\n" "help.text" msgid "Choose Slide - Slide Properties and then click the Background tab " -msgstr "" +msgstr " Velg Lysbilde - Lysbilde-egenskaper og klikk deretter påe Bakgrunn fanen " #. y5oEX #: slide_menu.xhp @@ -1436,7 +1436,7 @@ "par_id3153012\n" "help.text" msgid "Choose Slide - Change Slide Master " -msgstr "" +msgstr "Velg Lysbilde - Endre Hovedlysbilde " #. Whnor #: slide_menu.xhp @@ -1445,7 +1445,7 @@ "par_id3134264\n" "help.text" msgid "Choose Slide - New Slide" -msgstr "" +msgstr "Velg Lysbilde - Nytt Lysbilde " #. 7tbCN #: slide_menu.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/02.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/02.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-02-26 17:15+0000\n" +"PO-Revision-Date: 2021-04-15 15:57+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563818183.000000\n" #. AiACn @@ -1382,7 +1382,7 @@ "hd_id3149755\n" "help.text" msgid "Glue Point Horizontal Left" -msgstr "Plasser festepunkt vannrett til venstre" +msgstr "Plasser festepunkt horisontalt til venstre" #. 3QrV9 #: 10030200.xhp @@ -1409,7 +1409,7 @@ "par_id3158405\n" "help.text" msgid "Glue Point Horizontal Left" -msgstr "Plasser festepunkt vannrett til venstre" +msgstr "Plasser festepunkt horisontalt til venstre" #. aFrew #: 10030200.xhp @@ -1418,7 +1418,7 @@ "hd_id3154214\n" "help.text" msgid "Glue Point Horizontal Center" -msgstr "Plasser festepunkt vannrett i midten" +msgstr "Plasser festepunkt horisontalt i midten" #. sFGAs #: 10030200.xhp @@ -1445,7 +1445,7 @@ "par_id3150706\n" "help.text" msgid "Glue Point Horizontal Center" -msgstr "Plasser festepunkt vannrett i midten" +msgstr "Plasser festepunkt horisontalt i midten" #. A3BTE #: 10030200.xhp @@ -1454,7 +1454,7 @@ "hd_id3153748\n" "help.text" msgid "Glue Point Horizontal Right" -msgstr "Plasser festepunkt vannrett til høyre" +msgstr "Plasser festepunkt horisontalt til høyre" #. j57kW #: 10030200.xhp @@ -1481,7 +1481,7 @@ "par_id3154799\n" "help.text" msgid "Glue Point Horizontal Right" -msgstr "Plasser festepunkt vannrett til høyre" +msgstr "Plasser festepunkt horisontalt til høyre" #. d92GD #: 10030200.xhp @@ -1715,7 +1715,7 @@ "par_id3153006\n" "help.text" msgid "Draws a line that ends in a rectangular callout from where you drag in the current document. The text direction is horizontal. Drag a handle of the callout to resize the callout. To change a rectangular callout to a rounded callout, drag the largest corner handle when the pointer changes to a hand. To add text, click the edge of the callout, and then type or paste your text." -msgstr "Tegner en linje som ender i en rektangulær snakkeboble i fra hvor du drar det gjeldende dokumentet. Tekstretningen er vannrett. Dra i et håndtak på snakkebobla for å endre størrelse på den. For å endre en rektangulær snakkeboble til en avrundet, kan du dra i det største hjørnehåndtaket når pekeren endrer seg til en hånd. For å legge til tekst kan du klikke på kanten av forklaringen og skrive eller sette inn din tekst." +msgstr "Tegner en linje som ender i en rektangulær snakkeboble fra hvor du drar det gjeldende dokumentet. Tekstretningen er horisontal. Dra i et håndtak på snakkeboblen for å endre størrelse på den. For å endre en rektangulær snakkeboble til en avrundet, kan du dra i det største hjørnehåndtaket når pekeren endrer seg til en hånd. For å legge til tekst kan du klikke på kanten av forklaringen og skrive eller sette inn din tekst." #. kuqjC #: 10050000.xhp @@ -3182,7 +3182,7 @@ "par_id3147511\n" "help.text" msgid "Draws a pyramid with a square base where you drag in the slide. To draw a pyramid with a rectangular base, hold down Shift while you drag. To define a different polygon for the base of the pyramid, open the 3D Effects dialog and click the Geometry tab. In the Segments area, enter the number of sides for the polygon in the box labeled Horizontal, and then click the green checkmark." -msgstr "Tegn en pyramide med et kvadrat som grunnflate. Hold nede «Shift» for å tegne en pyramide med en rektangulær grunnflate. For å angi en mangekant som grunnflate for pyramiden, åpne Format – 3D-effekter, og velg Geometri-fanen. I Segmenter angir du det antall sider som mangekanten skal ha i Vannrett-boksen. Til slutt trykker du på den grønne haken for å bruke de nye egenskapene til figuren du skal lage." +msgstr "Tegn en pyramide med et kvadrat som grunnflate. Hold nede «Shift» for å tegne en pyramide med en rektangulær grunnflate. For å angi en mangekant som grunnflate for pyramiden, åpne Format – 3D-effekter, og velg Geometri-fanen. I Segmenter angir du det antall sider som mangekanten skal ha i Horisontal-boksen. Til slutt trykker du på den grønne haken for å bruke de nye egenskapene til figuren du skal lage." #. foMAw #: 10090000.xhp @@ -5702,7 +5702,7 @@ "tit\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fest til festeguidene" #. DQ4DB #: 13140000.xhp @@ -5711,7 +5711,7 @@ "hd_id3153726\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fest til festeguidene" #. GXfRk #: 13140000.xhp @@ -5720,7 +5720,7 @@ "par_id3150717\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. wYSJV #: 13140000.xhp @@ -5729,7 +5729,7 @@ "par_id3154255\n" "help.text" msgid "Snap to Snap Guides" -msgstr "" +msgstr "Fest til festeguidene" #. oXWsX #: 13150000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/04.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/04.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/04.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/04.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-03-13 12:06+0100\n" -"PO-Revision-Date: 2020-04-07 11:16+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548255026.000000\n" #. mYCYv @@ -1499,7 +1499,7 @@ "par_id3148650\n" "help.text" msgid "Constrains the movement of the selected object horizontally or vertically." -msgstr "Begrenser bevegelsen av det valgte objektet vannrett eller loddrett." +msgstr "Begrenser bevegelsen av det valgte objektet horisontalt eller vertikalt." #. mybXe #: 01020000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/guide.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/guide.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-06-08 12:56+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548251765.000000\n" #. S83CC @@ -1355,7 +1355,7 @@ "hd_id3153191\n" "help.text" msgid "Adding a Header or a Footer to All Slides" -msgstr "" +msgstr "Topptekst eller Bunntekstpå alle Lysbilder" #. fRX2a #: footer.xhp @@ -1535,7 +1535,7 @@ "par_id171597939732335\n" "help.text" msgid "Normally the predefined elements of the master slide are set to visible in the presentation. You can control the visibility of the predefined elements by choosing Slide - Master Elements." -msgstr "" +msgstr "Normalt er de forhåndsdefinerte elementene i hovedlysbildet satt til synlig i presentasjonen. Du kan kontrollere synligheten til de forhåndsdefinerte elementene ved å velge Lysbilde - Hovedelement." #. MhrkU #: footer.xhp @@ -1571,7 +1571,7 @@ "par_id3147295\n" "help.text" msgid "On the Drawing bar, select the Text iconIcon." -msgstr "" +msgstr "På Tegnings linjen, velgTekst ikonetIkon." #. pV2Dh #: footer.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/simpress.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/simpress.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-07-07 14:34+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563818387.000000\n" #. 2Va4w @@ -779,7 +779,7 @@ "par_id3149666\n" "help.text" msgid "You can use vertical and horizontal rulers at the left and upper edges of the $[officename] Impress workspace to assist you in creating your slide. The sections of the rulers that cover the area of the slide are white." -msgstr "Du kan bruke loddrette og vannrette linjaler på venstre og øverste kant av arbeidsområdet i $[officename] Impress som et hjelpemiddel når du lager lysbilder. Delene av linjalene som lysbildet er innenfor, blir farget hvite." +msgstr "Du kan bruke vertikale og horisontale linjaler på venstre og øverste kant av arbeidsområdet i $[officename] Impress som et hjelpemiddel når du lager lysbilder. Delene av linjalene som lysbildet er innenfor, blir farget hvite." #. r9DKG #: main0209.xhp @@ -797,7 +797,7 @@ "par_id3150206\n" "help.text" msgid "When you select a text object on a slide, indents and tabs are displayed on the horizontal ruler. To change the indent or tab settings for the text object, drag an indent or a tab marker to a new location on the ruler." -msgstr "Når du velger et tekstobjekt på et lysbilde, vil innrykk og tabulatorer bli vist på den vannrette linjalen. Dra og slipp et tabulator- eller innrykkmerke for å endre plasseringen." +msgstr "Når du velger et tekstobjekt på et lysbilde, vil innrykk og tabulatorer bli vist på den horisontale linjalen. Dra og slipp et tabulator- eller innrykkmerke for å endre plasseringen." #. 88MNV #: main0209.xhp @@ -833,7 +833,7 @@ "par_id3149129\n" "help.text" msgid "To change the origin (0 point) of the rulers, drag the intersection of the two rulers in the top left corner into the workspace. Vertical and horizontal guides appear. Continue to drag until the vertical and horizontal guides are where you want the new origin to be, and then release. To reset the origins of the rulers to the default values, double-click the intersection." -msgstr "Du kan endre nullpunktet for linjalene ved å dra skjæringspunktet mellom de to linjalene i hjørnet øverst til venstre, inn i arbeidsområdet. Loddrette og vannrette hjelpelinjer vises. Fortsett å dra til den loddrette og vannrette hjelpelinja er der du vil ha nullpunktet, og slipp. Hvis du vil stille tilbake nullpunktet for linjalene, kan du dobbeltklikke skjæringspunktet." +msgstr "Du kan endre nullpunktet for linjalene ved å dra skjæringspunktet mellom de to linjalene i hjørnet øverst til venstre, inn i arbeidsområdet. Vertikale og horisontale hjelpelinjer vises. Fortsett å dra til den vertikale og horisontale hjelpelinjen er der du vil ha nullpunktet, og slipp. Hvis du vil stille tilbake nullpunktet for linjalene, kan du dobbeltklikke skjæringspunktet." #. uPJ4a #: main0209.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-08-02 13:34+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548254663.000000\n" #. QmNGE @@ -446,7 +446,7 @@ "bm_id3150342\n" "help.text" msgid "unary operatorsbinary operatorsoperators; unary and binaryplus signsplus/minus signsminus/plus signsmultiplication signsNOT operatorAND operatorlogical operatorsBoolean operatorsOR operatorconcatenating math symbolsaddition signssubtraction signsminus signsslash division signbackslash division signindexes; adding to formulaspowersdivision signsuser-defined operators;unary and binary" -msgstr "unære operatorerbinære operatoreroperatorer; unære og binæreplusstegnpluss-/minustegnminus-/plusstegngangetegnIKKE-operatorOG-operatorlogiske operatorerboolske operatorerELLER-operatorkonkatenerende matematikksymbolerplusstegnminustegndeletegn -skråstrekdeletegn -omvendt skråstrekindeks, legg til formlerpotensdeletegnbrukerdefinerte operatorer; unære og binære" +msgstr "uunære operatorerbinære operatorer operatorer; unære og binære pluss tegnpluss/minus tegnminus/pluss tegnmultiplikasjon tegnIKKE operatorOG operatorlogiske operatorer Boolean operatorer ELLER operatorsammenkoble matte symboleraddisjons tegnsubtrasjons tegnminus tegnskråstrek divisjon tegnbakovertast division tegnindekser; legg til formlereksponentdivision tegnbrukerdefinert operatorer, unære og binære" #. 3dhDh #: 03090100.xhp @@ -4640,7 +4640,7 @@ "bm_id3153150\n" "help.text" msgid "formatting;in $[officename] Math$[officename] Math; formattingsuperscriptsbinomialsvertical elementslines; inserting in formulassubscriptsstacksvertical arrangement of elementssmall gapsalignment; left (Math)left-justified alignment (Math)alignment; horizontally centered (Math)centered horizontally; alignment (Math)alignment; right (Math)right-justified alignment in %PRODUCTNAME Mathmatrices; arrangingspaces in formulasgaps in formulasinserting; gapsarranging;matricesformulas;aligningaligning formulas" -msgstr "formatering;i $[officename] Math$[officename] Math; formateringhevet skrift toleddede uttrykkloddrette elementerlinjer; sette inn i formlersenket skriftstablerloddrett oppstilling av elementersmå mellomromjustering; venstre (Math)venstrejustering; (math)justering; vannrett midtstilt (Math)vannrett midtstilt; justering (Math)justering; høyre (Math)høyrejustering i %PRODUCTNAME Mathmatriser, ordnemellomrom i formlertomrom i formlersette inn; tomromstille opp; matriserjustere formler" +msgstr "formatering;i $[officename] Math$[officename] Math; formatering superskript binomialvertikale elementerlinjer; sett inn i formlersubskriptstablervertilal arrangering av formlersmå mellomromjustering; venstre (Math)venstre-justert (Math) justering; horisontalt centered (Math)sentrert horisontalt; justering (Math) justering; høyre (Math)høyre-justering i %PRODUCTNAME Mathmatriser; arrangeremellomrom i formler mellomrom i formler sett inn; mellomromarranging;matriser formler; justering justere formler" #. bzxC7 #: 03090700.xhp @@ -11255,7 +11255,7 @@ "bm_id3149261\n" "help.text" msgid "mathematical symbols; otherreal part of complex numberssymbols;for complex numberspartial differentiation symbolinfinity symbolNabla operatorthere exists symbolthere does not exist symbolexistence quantor symbolfor all symboluniversal quantifier symbolh-bar symbollambda-bar symbolimaginary part of a complex numbercomplex numbers; symbolsweierstrass p symbolleft arrow symbolright arrow symbolup arrow symboldown arrow symbolarrows;symbols in %PRODUCTNAME Mathcenter dots symbolaxis-ellipsisvertical dots symboldiagonal upward dots;symboldiagonal downward dots;symbolepsilon; backback epsilon symbolplaceholders; inserting in formulasellipsis symbols" -msgstr "matematiske symboler; andrerealdel av komplekse tallsymboler;for komplekse talldelvis differensial-symboluendelighetssymbolNabla-operatordet finnes-symboleksistenskvantor-symbolfor alle-symbolallkvantor-symbolh-linje-symbollambda-linje-symbolimaginær del av et komplekst tallkomplekse tall; symbolerweierstrass p-symbolpil venstre-symbolpil høyre-symbolpil opp-symbolpil ned-symbolpiler;symboler i %PRODUCTNAME Mathvannrett ellipse-symbolvannrett ellipse (midt på)loddrett ellipse-symbolskråstilt ellipse oppover;symbolskråstilt ellipse nedover;symbolepsilon; bakvendtbakvendt epsilon-symbolplassholdere; sette inn i formlerellipse-symboler" +msgstr "matematiske symboler; øvrigerrealdel av komplekse tallsymboler;for komplekse talldelvis differensial-symboluendelighetssymbolNabla operatordet finnes-symboltdet finnes ikke-symboeksistenskvantor-symbolfor alle symboluniversiell kvantifierer symbolh-linje-symbolambda-linje symbolimaginær del av et komplekst tallomplekse tall; symbolerweierstrass p symbolvenstre pil-symbolhøyre pil-symbolopp pil symbolned pil symbolpil;symboler i %PRODUCTNAME Mathsenter-prikker symbolakse-ellipsevertikael prikker symboldiagonalt oppoverprikker;symboldiagonatl nedover-prikker;symbolepsilon; tilbaketilbake epsilon symbolplassholdere; sett inn i formerellipse symbols" #. GxuFD #: 03091600.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/smath.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/smath.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/smath.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/smath.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-03 12:43+0100\n" -"PO-Revision-Date: 2019-01-23 12:47+0000\n" +"PO-Revision-Date: 2021-04-12 11:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548247654.000000\n" #. yKBT5 @@ -176,7 +176,7 @@ "par_id3147338\n" "help.text" msgid "Sets the display scale and defines which elements you want to be visible. Most of the commands that you can enter into the Commands window can also be accessed through a mouse click if you have already opened the Elements pane with View - Elements." -msgstr "" +msgstr "Angir skjermskalaen og definerer hvilke elementer du vil være synlige. De fleste kommandoene som du kan legge inn i -kommandoene -vinduet, kan også nås via et museklikk hvis du allerede har åpnet Elements-panelet meVis - Elemente." #. ZJSDS #: main0103.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/00.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/00.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2020-07-24 12:34+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548247761.000000\n" #. E9tti @@ -401,7 +401,7 @@ "par_id3149502\n" "help.text" msgid "Choose View - Rulers - Rulers " -msgstr "" +msgstr "Velg Vis - Linjaler - Linjaler " #. 6RRMA #: 00000403.xhp @@ -410,7 +410,7 @@ "par_id3148871\n" "help.text" msgid "Choose View - Text Boundaries " -msgstr "" +msgstr "Velg vis - Tekst Grenser " #. nnySY #: 00000403.xhp @@ -419,7 +419,7 @@ "par_id3153248\n" "help.text" msgid "Choose View - Field Shadings" -msgstr "" +msgstr "Velg Vis - Felt-skyggelegging" #. JRFUp #: 00000403.xhp @@ -428,7 +428,7 @@ "par_id3154763\n" "help.text" msgid "CommandCtrl+F8" -msgstr "" +msgstr "CommandCtrl+F8" #. wYngB #: 00000403.xhp @@ -437,7 +437,7 @@ "par_id3149052\n" "help.text" msgid "Choose View - Field Names" -msgstr "" +msgstr "Velg Vis - Feltnavn" #. krDbj #: 00000403.xhp @@ -446,7 +446,7 @@ "par_id3151387\n" "help.text" msgid "CommandCtrl+F9" -msgstr "" +msgstr "CommandCtrl+F9" #. VgPmS #: 00000403.xhp @@ -455,7 +455,7 @@ "par_id3155625\n" "help.text" msgid "Choose View - Formatting Marks" -msgstr "" +msgstr "Velg Vis - Formateringsmerker" #. ZPf6L #: 00000403.xhp @@ -464,7 +464,7 @@ "par_id3145823\n" "help.text" msgid "CommandCtrl+F10" -msgstr "" +msgstr "CommandCtrl+F10" #. jRY7j #: 00000403.xhp @@ -500,7 +500,7 @@ "par_id3149712\n" "help.text" msgid "Choose View - Web" -msgstr "" +msgstr "Velg Vis - Web" #. owBsk #: 00000403.xhp @@ -536,7 +536,7 @@ "par_id3151176\n" "help.text" msgid "Choose View - Normal" -msgstr "" +msgstr "Velg Vis - Normal" #. xjXHF #: 00000403.xhp @@ -545,7 +545,7 @@ "par_id3149808\n" "help.text" msgid "Choose View - Hidden Paragraphs " -msgstr "" +msgstr " Velg Vis - Skjulte Avsnitt " #. yDXA6 #: 00000404.xhp @@ -572,7 +572,7 @@ "par_id3149130\n" "help.text" msgid "Choose Insert - More Breaks - Manual Break" -msgstr "" +msgstr " Velg Sett inn - Flere Brytninger - Manuell Brytning" #. qv3kV #: 00000404.xhp @@ -581,7 +581,7 @@ "par_id281601655468613\n" "help.text" msgid "Choose Insert - More Breaks" -msgstr "" +msgstr " Velg Sett Inn - Flere Brytninger" #. HX3xL #: 00000404.xhp @@ -824,7 +824,7 @@ "par_id3154197\n" "help.text" msgid "Choose Insert > Section > Indents tab or choose Format > Sections - Options button - Indents tab" -msgstr "" +msgstr " Velg Sett Inn > Seksjon > Innrykk fane eller velge Format > Seksjoner - Alternativ knappen - Innrykk fanen" #. oCG8Q #: 00000404.xhp @@ -1355,7 +1355,7 @@ "par_id3149627\n" "help.text" msgid "Choose Insert - Horizontal Rule" -msgstr "Velg Sett inn → Vannrett linje" +msgstr "Velg Sett inn → Horisontal linje" #. LePpP #: 00000404.xhp @@ -1490,7 +1490,7 @@ "par_id651578069976376\n" "help.text" msgid "Choose View - Styles (Command+TF11). Right-click any paragraph style. Choose New - Condition tab." -msgstr "" +msgstr "Velg Vis - Stiler (Command+TF11). Høyreklikk på hvilken som helst avsnittsstil. Velge Ny - Betingelse fanen." #. EtKWE #: 00000405.xhp @@ -1526,7 +1526,7 @@ "par_id51579866880596\n" "help.text" msgid "Press Command+TF11" -msgstr "" +msgstr "Trykk Command+TF11" #. Bkgcd #: 00000405.xhp @@ -1562,7 +1562,7 @@ "par_id3153536\n" "help.text" msgid "Choose View - Styles (Command+TF11) - choose Page Styles - open context menu for selected style - New/Modify." -msgstr "" +msgstr "Velg Vis - Stiler (Command+TF11) - Velg Sidestil - åpne opp kontekstmenyen for valgt stil - Ny/Endre." #. JW9yE #: 00000405.xhp @@ -1616,7 +1616,7 @@ "par_id3149298\n" "help.text" msgid "Choose View - Styles - Page Styles - open context menu for selected page style - Modify/New - Columns tab." -msgstr "" +msgstr "Velg Vis - Stiler - Sidestil - åpne kontekstmenyen for valgte sidestil - Endre/Ny - Kolonne fanen." #. 9sMo7 #: 00000405.xhp @@ -1643,7 +1643,7 @@ "par_id3143276\n" "help.text" msgid "Choose Insert - Section - Columns tab." -msgstr "" +msgstr "Velg Sett inn - Seksjon - Kolonne fanen." #. ZCfVD #: 00000405.xhp @@ -1652,7 +1652,7 @@ "par_id461604680991423\n" "help.text" msgid "Choose Format - Section - Options button - Columns tab." -msgstr "" +msgstr "Velg Format - Seksjon - Alternativ knappen - Kolonne fanen." #. Gdf8J #: 00000405.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-02-26 17:15+0000\n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548247020.000000\n" #. SGjBV @@ -41,7 +41,7 @@ "par_id3150240\n" "help.text" msgid "Adds or removes numbering from the selected paragraphs. To define the numbering format, choose Format - Bullets and Numbering. To display the Bullets and Numbering Bar, choose View - Toolbars - Bullets and Numbering." -msgstr "Legger til eller fjerner nummerering i de valgte avsnittene. Velg Format → Punkter og nummerering for å velge nummereringsformat. Du kan vise verktøylinja Punkter og nummerering ved å velge Vis → Verktøylinjer → Punkter og nummerering." +msgstr "Legger til eller fjerner nummerering i de valgte avsnittene. Velg Format → Punkter og nummerering for å velge nummereringsformat. Du kan vise verktøylinjen Punkter og nummerering ved å velge Vis → Verktøylinjer → Punkter og nummerering." #. 8MND6 #: 02110000.xhp @@ -464,7 +464,7 @@ "par_id3148771\n" "help.text" msgid "Click Apply to accept the sum formula as it appears in the entry line." -msgstr "Velg Bruk for å godkjenne summeringsformelen som vises i inndatalinja." +msgstr "Velg Bruk for å godkjenne summeringsformelen som vises i inndatalinjen." #. qVgPm #: 04250000.xhp @@ -833,7 +833,7 @@ "par_id3145078\n" "help.text" msgid "The displayed page (x) and the total number of pages (y) are shown in the form Page x/y When you scroll through a document with the mouse, the page number is displayed when you release the mouse button. When you scroll using the right scrollbar, the page numbers are displayed as a Help tip. The page numbering format of the status bar and scrollbar is identical." -msgstr "Den viste siden (x) og det totale antallet sider (y) vises på formen 
Side x/y. Når du blar gjennom et dokument med 
musa, vises sidetallet når du slipper museknappen. Når du blar med 
rullefeltet til høyre, vises sidetallet som et tips. Formatet for 
sidenummerering er det samme på både statuslinja og i rullefeltet." +msgstr "Den viste siden (x) og det totale antallet sider (y) vises på formen 
Side x/y. Når du blar gjennom et dokument med 
musa, vises sidetallet når du slipper museknappen. Når du blar med 
rullefeltet til høyre, vises sidetallet som et tips. Formatet for 
sidenummerering er det samme på både statuslinjen og i rullefeltet." #. B89AK #: 08010000.xhp @@ -1319,7 +1319,7 @@ "par_id3149096\n" "help.text" msgid "The formula appears in the input line. To specify a range of cells in a table, select the desired cells with the mouse. The corresponding cell references also appear in the input line. Enter additional parameters, as necessary, and click Apply to confirm your entry. You can also enter the formula directly if you know the appropriate syntax. This is necessary, for example, in the Insert Fields and Edit Fields dialogs." -msgstr "Formelen vises på inndatalinja. Du kan velge et celleområde i en tabell ved å merke cellene du vil ta med i området, med musa. Da vil de tilsvarende cellereferansene vises på inndatalinja. Skriv inn andre parametre du vil bruke, og trykk Bruk for å bekrefte det du har skrevet inn. Du kan også skrive inn formelen direkte hvis du kjenner syntaksen som brukes. Dette er nødvendig i noen sammenhenger, for eksempel i dialogvinduene Sett inn felter og Rediger felter." +msgstr "Formelen vises på inndatalinjen. Du kan velge et celleområde i en tabell ved å merke cellene du vil ta med i området, med musa. Da vil de tilsvarende cellereferansene vises på inndatalinjen. Skriv inn andre parametre du vil bruke, og trykk Bruk for å bekrefte det du har skrevet inn. Du kan også skrive inn formelen direkte hvis du kjenner syntaksen som brukes. Dette er nødvendig i noen sammenhenger, for eksempel i dialogvinduene Sett inn felter og Rediger felter." #. fdG9Y #: 14020000.xhp @@ -2723,7 +2723,7 @@ "par_id3149602\n" "help.text" msgid "Clears the contents of the input line and closes the formula bar." -msgstr "Tømmer skrivefeltet for innhold og lukker formellinja." +msgstr "Tømmer skrivefeltet for innhold og lukker formellinjen." #. kp7Vc #: 14030000.xhp @@ -2768,7 +2768,7 @@ "par_id3147173\n" "help.text" msgid "Transfers the contents of the input line into your document and closes the formula bar. The contents of the input line are inserted at the cursor position in the document." -msgstr "Overfører innholdet fra skrivefeltet til dokumentet og lukker formellinja. Innholdet i skrivefeltet blir satt inn ved skrivemerket i dokumentet." +msgstr "Overfører innholdet fra skrivefeltet til dokumentet og lukker formellinjen. Innholdet i skrivefeltet blir satt inn ved skrivemerket i dokumentet." #. YsphR #: 14040000.xhp @@ -2858,7 +2858,7 @@ "par_id3145244\n" "help.text" msgid "The toolbar contains various functions for inserting frames, graphics, tables, and other objects." -msgstr "Verktøylinja inneholder funksjoner for å sette inn rammer, bilder, tabeller og andre objekter." +msgstr "Verktøylinjen inneholder funksjoner for å sette inn rammer, bilder, tabeller og andre objekter." #. kdTjb #: 18010000.xhp @@ -3416,7 +3416,7 @@ "par_id3147167\n" "help.text" msgid "If the Images and Charts icon on the Tools bar is activated, no graphics are displayed - only empty frames as placeholders." -msgstr "Hvis knappen Bilder på/av er slått på i linja Verktøy, vises ingen bilder. Det eneste som vises, er tomme rammer som plassholdere." +msgstr "Hvis knappen Bilder på/av er slått på i linjen Verktøy, vises ingen bilder. Det eneste som vises, er tomme rammer som plassholdere." #. cpSji #: 18120000.xhp @@ -3479,7 +3479,7 @@ "par_id3151133\n" "help.text" msgid "On Tools bar, click" -msgstr "Når du er på verktøylinja, trykk på" +msgstr "Når du er på verktøylinjen, trykk på" #. DPCTF #: 18130000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/librelogo.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/librelogo.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/librelogo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/librelogo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-03-07 13:55+0000\n" -"Last-Translator: serval2412 \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-15 15:56+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548253647.000000\n" #. kypzs @@ -23,7 +23,7 @@ "title\n" "help.text" msgid "LibreLogo Toolbar" -msgstr "Verktøylinja LibreLogo" +msgstr "Verktøylinjen LibreLogo" #. nF3hB #: LibreLogo.xhp @@ -59,7 +59,7 @@ "hd_220\n" "help.text" msgid "LibreLogo toolbar" -msgstr "Verktøylinja LibreLogo" +msgstr "Verktøylinjen LibreLogo" #. SbjVB #: LibreLogo.xhp @@ -185,7 +185,7 @@ "par_360\n" "help.text" msgid "Hit Enter in the command line to execute its content. To stop the program use the icon “Stop”." -msgstr "Trykk på Enter i kommandolinja for å utføra kommandoen. Bruk knappen «Stopp» for å stoppe programmet." +msgstr "Trykk på Enter i kommandolinjen for å utføra kommandoen. Bruk knappen «Stopp» for å stoppe programmet." #. GZJWN #: LibreLogo.xhp @@ -194,7 +194,7 @@ "par_370\n" "help.text" msgid "Hold down the Enter to repeat the command line, for example, on the following command sequence:" -msgstr "Hold nede Enter-tasten for å gjenta kommandoen i kommandolinja. For eksempel med denne sekvensen:" +msgstr "Hold nede Enter-tasten for å gjenta kommandoen i kommandolinjen. For eksempel med denne sekvensen:" #. nQsMi #: LibreLogo.xhp @@ -230,7 +230,7 @@ "par_415\n" "help.text" msgid "Turtle shape of LibreLogo is a normal fixed size drawing object. You can positionate and rotate it on standard way, too, using the mouse and the Rotate icon of the Drawing Object Properties toolbar. Modify Line Width, Line Color and Area Color settings of the turtle shape to set PENSIZE, PENCOLOR and FILLCOLOR attributes of LibreLogo." -msgstr "Skilpaddefiguren i LibreLogo er et vanlig tegneobjekt med fast størrelse. Du kan plassere og rotere skilpadda også på vanlig måte ved å bruka datamusa og roteringsknappen på verktøylinja for tegning. Du kan også bruke linjebridde, linjefarge og områdefarge på den samme verktøylinja for å endre PENNSTØRRELSE, PENNFARGE og FYLLFARGE for LibreLogo." +msgstr "Skilpaddefiguren i LibreLogo er et vanlig tegneobjekt med fast størrelse. Du kan plassere og rotere skilpadden også på vanlig måte ved å bruka datamusen og roteringsknappen på verktøylinjen for tegning. Du kan også bruke linjebridde, linjefarge og områdefarge på den samme verktøylinjen for å endre PENNSTØRRELSE, PENNFARGE og FYLLFARGE for LibreLogo." #. fqYbT #: LibreLogo.xhp @@ -563,7 +563,7 @@ "par_780\n" "help.text" msgid "Lines or line parts are comments from a semicolon to the end of the line (paragraph):" -msgstr "Linjer eller deler av linjer ansees som kommentarer fra et semikolon til slutten av linja (avsniuttet):" +msgstr "Linjer eller deler av linjer ansees som kommentarer fra et semikolon til slutten av linjen (avsniuttet):" #. eFQ42 #: LibreLogo.xhp @@ -590,7 +590,7 @@ "par_810\n" "help.text" msgid "It’s possible to break a program line for more paragraphs using the character tilde at the end of the line:" -msgstr "Det er mulig å bryte en programlinje over flere linjer ved å bruke tilde-tegn et på slutten av linja:" +msgstr "Det er mulig å bryte en programlinje over flere linjer ved å bruke tilde-tegn et på slutten av linjen:" #. yXYPb #: LibreLogo.xhp @@ -1031,7 +1031,7 @@ "par_1220\n" "help.text" msgid "FILLCOLOR “blue” ; fill with blue color, see also PENCOLOR
FILLCOLOR “invisible” CIRCLE 10 ; unfilled circle
FILLCOLOR [“blue”, “red”] ; gradient between red and blue
FILLCOLOR [[255, 255, 255], [255, 128, 0]] ; between white and orange
FILLCOLOR [“blue”, “red”, 1, 0, 0] ; set axial gradient (with the required rotation and border settings), possible values: 0-5 = linear, axial, radial, elliptical, square and rectangle gradients
FILLCOLOR [“red”, “blue”, 0, 90, 20] ; linear with 20% border, rotated with 90 degrees from the actual heading of the turtle
FILLCOLOR [“red”, “blue”, 0, 90, 20, 0, 0, 200, 50] ; from 200% to 50% intensity
FILLCOLOR [ANY, ANY, 2, 0, 0, 50, 50] ; radial gradient with random colors and 50-50% horizontal and vertical positions of the center
" -msgstr "FYLLFARGE “blå” ; fyll med blå farge, sjå også PENNFARGE
FYLLFARGE “usynlig” SIRKEL 10 ; sirkel uten fyll
FYLLFARGE [“blå”, “rød”] ; fargeovergang fra rødt til blått
FYLLFARGE [[255, 255, 255], [255, 128, 0]] ; fra hvit til oransje
FYLLFARGE [“blå”, “rød”, 1, 0, 0] ; sett aksiell fargeovergang (med nødvendige innstillinger for rotering og kanter), muglige verdier: 0-5 = linjær, aksiell, radial, elliptisk, kvadratisk og rektangulær fargeovergang
FYLLFARGE [“rød”, “blå”, 0, 90, 20] ; lineær med 20% kant, rotert med 90 grader fra hodet på skilpadden
FYLLFARGE [“rød”, 'blå”, 0, 90, 20, 0, 0, 200, 50] ; fra 200% til 50% intensitet
FYLLFARGE [ALLE, ALLE, 2, 0, 0, 50, 50] ; radiell fargeovergang med tilfeldige farger og 50 % vannrett og loddrett plassering av sentrum.
" +msgstr "FYLLFARGE “blå” ; fyll med blå farge, sjå også PENNFARGE
FYLLFARGE “usynlig” SIRKEL 10 ; sirkel uten fyll
FYLLFARGE [“blå”, “rød”] ; fargeovergang fra rødt til blått
FYLLFARGE [[255, 255, 255], [255, 128, 0]] ; fra hvit til oransje
FYLLFARGE [“blå”, “rød”, 1, 0, 0] ; sett aksiell fargeovergang (med nødvendige innstillinger for rotering og kanter), muglie verdier: 0-5 = lineær, aksiell, radial, elliptisk, kvadratisk og rektangulær fargeovergang
FYLLFARGE [“rød”, “blå”, 0, 90, 20] ; lineær med 20% kant, rotert med 90 grader fra hodet på skilpadden
FYLLFARGE [“rød”, 'blå”, 0, 90, 20, 0, 0, 200, 50] ; fra 200% til 50% intensitet
FYLLFARGE [ALLE, ALLE, 2, 0, 0, 50, 50] ; radiell fargeovergang med tilfeldige farger og 50 % horisontal og vertikal plassering av sentrum.
" #. vhN7n #: LibreLogo.xhp @@ -1049,7 +1049,7 @@ "par_1226\n" "help.text" msgid "FILLTRANSPARENCY 80 ; set the transparency of the actual fill color to 80%
FILLTRANSPARENCY [80] ; set linear transparency gradient from 80% to 0%
FILLTRANSPARENCY [80, 20] ; set linear transparency gradient from 80% to 20%
FILLTRANSPARENCY [80, 20, 1, 90] ; set axial transparency gradient rotated with 90 degrees from the actual heading of the turtle
FILLTRANSPARENCY [80, 20, 2, 0, 20, 50, 50] ; set radial transparency gradient from outer 80% to inner 20% transparency with 20% border and with 50-50% horizontal and vertical positions of the center
" -msgstr "FYLLGJENNOMSIKTIGHET 80 ; sett gjennomsiktighet for den aktuelle fyllfargen til 80%
FYLLGJENNOMSIKTIGHET [80] ; sett linjær gjennomsiktig overgang fr 80 % til 0 %
FYLLGJENNOMSIKTIGHET [80, 20] ; sett linjær gjennomsiktig overgang fra 80 % til 20%
FYLLGJENNOMSIKTIGHET [80, 20, 1, 90] ; sett aksial gjennomsiktig overgang rotert 90 grader i forhold til skilpaddehodet
FYLLGJENNOMSIKTIGHET [80, 20, 2, 0, 20, 50, 50] ; sett radial gjennomsiktig overgang frå ytre 80 % til indre 20 % gjennomsikt med 20 % kant og sentrum 50 % vannrett og loddrett
i" +msgstr "FYLLGJENNOMSIKTIGHET 80 ; sett gjennomsiktighet for den aktuelle fyllfargen til 80%
FYLLGJENNOMSIKTIGHET [80] ; sett linjær gjennomsiktig overgang fr 80 % til 0 %
FYLLGJENNOMSIKTIGHET [80, 20] ; sett linjær gjennomsiktig overgang fra 80 % til 20%
FYLLGJENNOMSIKTIGHET [80, 20, 1, 90] ; sett aksial gjennomsiktig overgang rotert 90 grader i forhold til skilpaddehodet
FYLLGJENNOMSIKTIGHET [80, 20, 2, 0, 20, 50, 50] ; sett radial gjennomsiktig overgang fra ytre 80 % til indre 20 % gjennomsikt med 20 % kant og sentrum 50 % horisontalt og vertikalt
i" #. 9dQuv #: LibreLogo.xhp @@ -1067,7 +1067,7 @@ "par_1240\n" "help.text" msgid "FILLSTYLE 0 ; fill without hatches (default)
FILLSTYLE 1 ; black single hatches (horizontal)
FILLSTYLE 2 ; black single hatches (45 degrees)
FILLSTYLE 3 ; black single hatches (-45 degrees)
FILLSTYLE 4 ; black single hatches (vertical)
FILLSTYLE 5 ; red crossed hatches (45 degrees)
FILLSTYLE 6 ; red crossed hatches (0 degrees)
FILLSTYLE 7 ; blue crossed hatches (45 degrees)
FILLSTYLE 8 ; blue crossed hatches (0 degrees)
FILLSTYLE 9 ; blue triple crossed
FILLSTYLE 10 ; black wide single hatches (45 degrees)

; custom hatches specified by a list with the following arguments:
; – style (1 = single, 2 = double, 3 = triple hatching)
; – color
; – distance
; – degree

FILLSTYLE [2, “green”, 3pt, 15°] ; green crossed hatches (15 degrees)
" -msgstr "FYLLSTIL 0 ; fyll uten skravering (standard)
FYLLSTIL 1 ; svarte, vannrette streker
FYLLSTIL 2 ; svarte skråstreker (45°)
FYLLSTIL 3 ; svarte skråstreker (-45°)
FYLLSTIL 4 ; svarte, loddrette streker
FYLLSTIL 5 ; røde, kryssende skrådtreker (45°)
FYLLSTIL 6 ; røde, kryssende streker (0°)
FYLLSTIL 7 ; blå, kryssende streker (45 grader)
FYLLSTIL 8 ; blå, kryssende streker (0°)
FYLLSTIL 9 ; 3 blå streker, vannrett, loddrett og skrå
FYLLSTIL 10 ; svarte streker med stor avstand (45°)

; egendefinert skravering ut fra en liste med disse argumentene:
; – stil (1 = enkel, 2 = dobbel, 3 = trippel skravering)
; – farge
; – avstand
; – grader

FYLLSTIL [2, “grønn”, 3pt, 15] ; grønn, krysset skravering (15°)
" +msgstr "FYLLSTIL 0 ; fyll uten skravering (standard)
FYLLSTIL 1 ; svarte, horisontale streker
FYLLSTIL 2 ; svarte skråstreker (45°)
FYLLSTIL 3 ; svarte skråstreker (-45°)
FYLLSTIL 4 ; svarte, vertikale streker
FYLLSTIL 5 ; røde, kryssende skråstreker (45°)
FYLLSTIL 6 ; røde, kryssende streker (0°)
FYLLSTIL 7 ; blå, kryssende streker (45 grader)
FYLLSTIL 8 ; blå, kryssende streker (0°)
FYLLSTIL 9 ; 3 blå streker, horisontalt, vertikalt og skrå
FYLLSTIL 10 ; svarte streker med stor avstand (45°)

; egendefinert skravering ut fra en liste med disse argumentene:
; – stil (1 = enkel, 2 = dobbel, 3 = trippel skravering)
; – farge
; – avstand
; – grader

FYLLSTIL [2, “grønn”, 3pt, 15] ; grønn, krysset skravering (15°)
" #. S9sEF #: LibreLogo.xhp @@ -2273,7 +2273,7 @@ "par_2490\n" "help.text" msgid "; Python-like list generation
PRINT LIST RANGE 10 ; print [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
PRINT LIST RANGE 3 10 ; print [3, 4, 5, 6, 7, 8, 9]
PRINT LIST RANGE 3 10 3 ; print [3, 6, 9]

FOR i IN RANGE 10 50 10 [ ; loop for [10, 20, 30, 40]
FORWARD i
LEFT 90
]
" -msgstr "" +msgstr "; Python-lignende liste generering
Skriv ut listeområde 10; Skriv ut [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
Print List Range 3 10; Skriv ut [3, 4, 5, 6, 7, 8, 9]
Print List Range 3 10 3; Skriv ut [3, 6, 9]

for i i området 10 50 10 [; sløyfe for [10, 20, 30, 40]
fremover til
venstre 90
]
" #. 2849D #: LibreLogo.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/menu.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/menu.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter/menu.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter/menu.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2016-05-22 11:44+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1463917467.000000\n" #. tP5yN @@ -176,7 +176,7 @@ "tit\n" "help.text" msgid "More Breaks (submenu)" -msgstr "" +msgstr "Flere Brytninger (undermenyer)" #. smw7v #: submenu_more_breaks.xhp @@ -185,7 +185,7 @@ "hd_id651601651730204\n" "help.text" msgid "More Breaks" -msgstr "" +msgstr "Flere Brytninger" #. CLUjA #: submenu_more_breaks.xhp @@ -194,7 +194,7 @@ "par_id911601651828340\n" "help.text" msgid "Submenu with additional row, column, and page breaks" -msgstr "" +msgstr "Undermeny med ekstra rad, kolonne og sidebrytninger" #. t534N #: submenu_more_breaks.xhp @@ -203,7 +203,7 @@ "hd_id41601652439817\n" "help.text" msgid "Insert Manual Row Break" -msgstr "" +msgstr "Sett inn Manuelle Radbrytninger" #. AEbaf #: submenu_more_breaks.xhp @@ -212,7 +212,7 @@ "par_id41601888013000\n" "help.text" msgid "Manual Row Break Icon" -msgstr "" +msgstr "Manuelle Radbrytninger Ikon" #. QGmjC #: submenu_more_breaks.xhp @@ -221,7 +221,7 @@ "bm_id651604885957774\n" "help.text" msgid "text documents; inserting column breakscolumn breaks; insertinginserting; manual column breaksmanual column breaks" -msgstr "" +msgstr "tekstdokumenter; sette inn kolonnebrytninger kolonnebrytninger; sett innsett inn; manual kolonnebrytninger manuelle kolonnebrytninger " #. XBU67 #: submenu_more_breaks.xhp @@ -230,7 +230,7 @@ "hd_id531601652875225\n" "help.text" msgid "Insert Manual Column Break" -msgstr "" +msgstr "Sett inn Kolonnebrytninger" #. jBj9E #: submenu_more_breaks.xhp @@ -239,7 +239,7 @@ "par_id121601888786076\n" "help.text" msgid "Manual Column Break Icon" -msgstr "" +msgstr "Manuelt Kolonnebrytnings Ikon" #. Mx6DD #: submenu_more_breaks.xhp @@ -248,7 +248,7 @@ "hd_id281601654787535\n" "help.text" msgid "Manual Break" -msgstr "" +msgstr "Manuell Brytning" #. XACTx #: submenu_more_breaks.xhp @@ -257,4 +257,4 @@ "par_id621601889272427\n" "help.text" msgid "Manual Break icon" -msgstr "" +msgstr "Manuelt Brytnings Ikon" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/nb/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2020-07-24 12:35+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548252804.000000\n" #. P7iNX @@ -671,7 +671,7 @@ "par_id102920150120456660\n" "help.text" msgid "Opens a dialog box to enter which page number should be shown. (CommandCtrl+G)" -msgstr "" +msgstr "Åpner en dialogboks for å angi hvilket sidetal som skal vises. (CommandCtrl+G)" #. xFstf #: main0102.xhp @@ -680,7 +680,7 @@ "hd_id11603124968334\n" "help.text" msgid "Comment" -msgstr "" +msgstr "Kommentar" #. LCQEA #: main0102.xhp @@ -689,7 +689,7 @@ "par_id941603125587454\n" "help.text" msgid "Shows submenu that gives options to reply, resolve and delete comments." -msgstr "" +msgstr "Viser undermenyen som gir muligheter til å svare, løse opp og slette kommentarer." #. DNBDk #: main0102.xhp @@ -707,7 +707,7 @@ "hd_id0914201501170171\n" "help.text" msgid "Links to External Files" -msgstr "" +msgstr "Linker til eksterne Filer" #. pFCu3 #: main0102.xhp @@ -1076,7 +1076,7 @@ "par_id741602974888780\n" "help.text" msgid "Opens a submenu where you can align text and objects." -msgstr "" +msgstr "Åpner en undermeny hvor du kan justere tekst og objekter." #. 7iyia #: main0105.xhp @@ -1085,7 +1085,7 @@ "hd_id951602975070826\n" "help.text" msgid "Lists" -msgstr "" +msgstr "Lister" #. SkZuS #: main0105.xhp @@ -1130,7 +1130,7 @@ "hd_id871602976197055\n" "help.text" msgid "Title Page" -msgstr "" +msgstr "Tittelside" #. DyKLQ #: main0105.xhp @@ -1148,7 +1148,7 @@ "hd_id201602976343046\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Kommentarer" #. ercCs #: main0105.xhp @@ -1157,7 +1157,7 @@ "par_id61602976356685\n" "help.text" msgid "When comments are present, the character dialog is presented. Changes to font and font formatting are applied to all comments." -msgstr "" +msgstr "Når kommentarer er til stede, presenteres karakterdialogen. Endringer i skrifttype og skriftformatering brukes på alle kommentarer." #. Sib7N #: main0105.xhp @@ -1220,7 +1220,7 @@ "hd_id881602977719329\n" "help.text" msgid "Frame and Object" -msgstr "" +msgstr "Ramme og Objekt" #. hLVBp #: main0105.xhp @@ -1229,7 +1229,7 @@ "par_id951602977746649\n" "help.text" msgid "Opens a submenu to link and unlink frames, and edit properties of a selected frame." -msgstr "" +msgstr "Åpner en undermeny for å koble og koble fra rammer, og redigere egenskaper til en valgt ramme." #. JWALC #: main0105.xhp @@ -1238,7 +1238,7 @@ "hd_id871602978482880\n" "help.text" msgid "Rotate or Flip" -msgstr "" +msgstr "Roter eller Flipp" #. BpkEj #: main0105.xhp @@ -1247,7 +1247,7 @@ "par_id561602978499640\n" "help.text" msgid "Opens a submenu where you can rotate or and flip a selected shape or image. Text boxes can only be rotated." -msgstr "" +msgstr "Åpner en undermeny hvor du kan rotere eller og vende en valgt form eller et bilde. Tekstbokser kan bare roteres." #. r9nLs #: main0106.xhp @@ -1328,7 +1328,7 @@ "hd_id3156150\n" "help.text" msgid "ImageMap" -msgstr "" +msgstr "Bildekart" #. VY3FE #: main0106.xhp @@ -2219,7 +2219,7 @@ "par_idN10784\n" "help.text" msgid "left to right icon" -msgstr "" +msgstr "venstre til høyre ikon" #. Xg9vt #: main0202.xhp @@ -2246,7 +2246,7 @@ "par_idN107DF\n" "help.text" msgid "right to left icon" -msgstr "" +msgstr "høyre til venstre ikon" #. TMwGp #: main0202.xhp @@ -2489,7 +2489,7 @@ "tit\n" "help.text" msgid "Status Bar (Writer)" -msgstr "" +msgstr "Statuslinje (Writer)" #. bwSYr #: main0208.xhp @@ -2525,7 +2525,7 @@ "par_id8193914\n" "help.text" msgid "Displays the language for the selected text. Click to open a menu where you can choose another language for the selected text or for the current paragraph." -msgstr "" +msgstr "Viser språket for den valgte teksten. Klikk for å åpne en meny hvor du kan velge et annet språk for den valgte teksten, eller for gjeldende avsnitt." #. ADEdD #: main0208.xhp @@ -2534,7 +2534,7 @@ "par_id221603808238822\n" "help.text" msgid "Choose None to exclude the text from spellchecking and hyphenation." -msgstr "" +msgstr "Velg Ingen for å ekskludere teksten fra stavekontroll og ordeling." #. BrkYL #: main0208.xhp @@ -2543,7 +2543,7 @@ "par_id691603808343437\n" "help.text" msgid "Choose Reset to Default Language to re-apply the default language for the selection or the paragraph." -msgstr "" +msgstr "Velg Tilbakestill til standard språk til standard språk for valget eller avsnittet." #. YLVnp #: main0208.xhp @@ -2552,7 +2552,7 @@ "par_id291603808357876\n" "help.text" msgid "Choose More to open the character formatting dialog with more options." -msgstr "" +msgstr "Velg Mer for å åpne tegnformateringsdialogen med flere alternativer." #. zeCHC #: main0208.xhp @@ -2570,7 +2570,7 @@ "par_id0821200911015941\n" "help.text" msgid "Click to start digital signature process. You must have a digital certificate to complete the process. See also Digital Signatures." -msgstr "" +msgstr "Klikk for å starte digital signaturprosess. Du må ha et digitalt sertifikat for å fullføre prosessen. Se også Digitale Signaturer." #. DqFNG #: main0208.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.1.3~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.1.2~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/instsetoo_native/inc_openoffice/windows/msi_languages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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" -"PO-Revision-Date: 2020-08-18 11:35+0000\n" -"Last-Translator: kingu \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563561365.000000\n" #. tBfTE @@ -1121,7 +1121,7 @@ "OOO_CONTROL_6\n" "LngText.text" msgid "Browse to the destination folder." -msgstr "Gå til målmappa." +msgstr "Gå til målmappen." #. FrjD4 #: Control.ulf @@ -1454,7 +1454,7 @@ "OOO_CONTROL_53\n" "LngText.text" msgid "Click on an icon in the list below to change how a feature is installed." -msgstr "Trykk på et ikon i lista nedenfor for å velge hvordan funksjonen skal installeres." +msgstr "Trykk på et ikon i listen nedenfor for å velge hvordan funksjonen skal installeres." #. w5AqN #: Control.ulf @@ -1652,7 +1652,7 @@ "OOO_CONTROL_89\n" "LngText.text" msgid "Click Next to install to this folder, or click Change to install to a different folder." -msgstr "Trykk på «Neste» for å installere til denne mappa, eller velg «Endre» for å installere til en annen mappe." +msgstr "Trykk på «Neste» for å installere til denne mappen, eller velg «Endre» for å installere til en annen mappe." #. WQfEU #: Control.ulf @@ -1805,7 +1805,7 @@ "OOO_CONTROL_114\n" "LngText.text" msgid "Browse to the destination folder." -msgstr "Gå til målmappa." +msgstr "Gå til målmappen." #. CNjbv #: Control.ulf @@ -2993,7 +2993,7 @@ "OOO_CONTROL_301\n" "LngText.text" msgid "The destination folder specified below does not contain a [DEFINEDPRODUCT] [DEFINEDVERSION] version." -msgstr "Målmappa inneholder ikke en versjon av [DEFINEDPRODUCT] [DEFINEDVERSION]." +msgstr "Målmappen inneholder ikke en versjon av [DEFINEDPRODUCT] [DEFINEDVERSION]." #. Kv9ED #: Control.ulf @@ -3011,7 +3011,7 @@ "OOO_CONTROL_303\n" "LngText.text" msgid "The version specified in the folder below cannot be updated." -msgstr "Den versjonen som ble angitt i mappa kan ikke oppdateres." +msgstr "Den versjonen som ble angitt i mappen kan ikke oppdateres." #. 5B3xC #: Control.ulf @@ -3020,7 +3020,7 @@ "OOO_CONTROL_304\n" "LngText.text" msgid "Check the destination folder." -msgstr "Sjekk målmappa." +msgstr "Sjekk målmappen." #. 5VLAA #: Control.ulf @@ -3407,7 +3407,7 @@ "OOO_ERROR_25\n" "LngText.text" msgid "Error reading from file: [2]. {{ System error [3].}} Verify that the file exists and that you can access it." -msgstr "Feil ved lesing fra fil: [2]. {{ Systemfeil [3].}} Sjekk at fila finnes og at du har tilgang til den." +msgstr "Feil ved lesing fra fil: [2]. {{ Systemfeil [3].}} Sjekk at filen finnes og at du har tilgang til den." #. 68Tuw #: Error.ulf @@ -3416,7 +3416,7 @@ "OOO_ERROR_26\n" "LngText.text" msgid "Cannot create the file [3]. A directory with this name already exists. Cancel the installation and try installing to a different location." -msgstr "Kan ikke opprette fila [3]. Det finnes allerede en mappe med dette navnet. Avbryt installasjonen og prøv å installere et annet sted." +msgstr "Kan ikke opprette filen [3]. Det finnes allerede en mappe med dette navnet. Avbryt installasjonen og prøv å installere et annet sted." #. azxrB #: Error.ulf @@ -3434,7 +3434,7 @@ "OOO_ERROR_28\n" "LngText.text" msgid "The installer has insufficient privileges to access this directory: [2]. The installation cannot continue. Log on as an administrator or contact your system administrator." -msgstr "Installasjonsprogrammet har ikke tilstrekkelig tilgang til denne mappa: [2]. Installasjonen kan ikke gå videre. Logg inn som administrator eller kontakt systemadministratoren." +msgstr "Installasjonsprogrammet har ikke tilstrekkelig tilgang til denne mappen: [2]. Installasjonen kan ikke gå videre. Logg inn som administrator eller kontakt systemadministratoren." #. FBYxG #: Error.ulf @@ -3443,7 +3443,7 @@ "OOO_ERROR_29\n" "LngText.text" msgid "Error writing to file [2]. Verify that you have access to that directory." -msgstr "Feil ved skriving til fila [2]. Sjekk at du har tilgang til mappa." +msgstr "Feil ved skriving til filen [2]. Sjekk at du har tilgang til mappen." #. UbSyL #: Error.ulf @@ -3452,7 +3452,7 @@ "OOO_ERROR_30\n" "LngText.text" msgid "Error reading from file [2]. Verify that the file exists and that you can access it." -msgstr "Feil ved lesing fra fila [2]. Sjekk at fila finnes og at du har tilgang til den." +msgstr "Feil ved lesing fra filen [2]. Sjekk at filen finnes og at du har tilgang til den." #. AB6YZ #: Error.ulf @@ -3470,7 +3470,7 @@ "OOO_ERROR_32\n" "LngText.text" msgid "There is not enough disk space to install the file [2]. Free some disk space and click Retry, or click Cancel to exit." -msgstr "Det er ikke nok ledig diskplass til å installere fila [2]. Frigjør mer diskplass og trykk «Prøv igjen», eller velg «Avbryt» for å avslutte." +msgstr "Det er ikke nok ledig diskplass til å installere filen [2]. Frigjør mer diskplass og trykk «Prøv igjen», eller velg «Avbryt» for å avslutte." #. BTono #: Error.ulf @@ -3479,7 +3479,7 @@ "OOO_ERROR_33\n" "LngText.text" msgid "Source file not found: [2]. Verify that the file exists and that you can access it." -msgstr "Fant ikke kildefila: [2]. Sjekk at fila finnes og at du har tilgang til den." +msgstr "Fant ikke kildefilen: [2]. Sjekk at filen finnes og at du har tilgang til den." #. eTECb #: Error.ulf @@ -3488,7 +3488,7 @@ "OOO_ERROR_34\n" "LngText.text" msgid "Error reading from file: [3]. {{ System error [2].}} Verify that the file exists and that you can access it." -msgstr "Feil ved lesing fra fila: [3]. {{ Systemfeil [2].}} Sjekk at fila finnes og at du har tilgang til den." +msgstr "Feil ved lesing fra filen: [3]. {{ Systemfeil [2].}} Sjekk at filen finnes og at du har tilgang til den." #. eHTZD #: Error.ulf @@ -3497,7 +3497,7 @@ "OOO_ERROR_35\n" "LngText.text" msgid "Error writing to file: [3]. {{ System error [2].}} Verify that you have access to that directory." -msgstr "Feil ved skriving til fil: [3]. {{ Systemfeil [2].}} Sjekk at fila finnes og at du har tilgang til den." +msgstr "Feil ved skriving til fil: [3]. {{ Systemfeil [2].}} Sjekk at filen finnes og at du har tilgang til den." #. f7AGu #: Error.ulf @@ -3506,7 +3506,7 @@ "OOO_ERROR_36\n" "LngText.text" msgid "Source file not found{{(cabinet)}}: [2]. Verify that the file exists and that you can access it." -msgstr "Fant ikke kildefila {{(cabinet)}}: [2] Sjekk at fila finnes og at du har tilgang til den." +msgstr "Fant ikke kildefilen {{(cabinet)}}: [2] Sjekk at filen finnes og at du har tilgang til den." #. rdcGb #: Error.ulf @@ -3515,7 +3515,7 @@ "OOO_ERROR_37\n" "LngText.text" msgid "Cannot create the directory [2]. A file with this name already exists. Please rename or remove the file and click Retry, or click Cancel to exit." -msgstr "Klarte ikke å opprette mappa [2]. Det finnes allerede en fil med det navnet. Flytt eller fjern fila og trykk på «Prøv igjen», eller velg «Avbryt» for å avslutte." +msgstr "Klarte ikke å opprette mappen [2]. Det finnes allerede en fil med det navnet. Flytt eller fjern filen og trykk på «Prøv igjen», eller velg «Avbryt» for å avslutte." #. oCgqE #: Error.ulf @@ -3542,7 +3542,7 @@ "OOO_ERROR_40\n" "LngText.text" msgid "Unable to write to the specified folder [2]." -msgstr "Klarte ikke å skrive til den oppgitte mappa [2]." +msgstr "Klarte ikke å skrive til den oppgitte mappen [2]." #. bcJXd #: Error.ulf @@ -3551,7 +3551,7 @@ "OOO_ERROR_41\n" "LngText.text" msgid "A network error occurred while attempting to read from the file [2]" -msgstr "Det oppsto en nettverksfeil ved lesing fra fila [2]" +msgstr "Det oppsto en nettverksfeil ved lesing fra filen [2]" #. LEUou #: Error.ulf @@ -3560,7 +3560,7 @@ "OOO_ERROR_42\n" "LngText.text" msgid "An error occurred while attempting to create the directory [2]" -msgstr "Det oppsto en feil da mappa [2] ble opprettet" +msgstr "Det oppsto en feil da mappen [2] ble opprettet" #. r7jLo #: Error.ulf @@ -3569,7 +3569,7 @@ "OOO_ERROR_43\n" "LngText.text" msgid "A network error occurred while attempting to create the directory [2]" -msgstr "Det oppsto en nettverksfeil da mappa [2] ble opprettet" +msgstr "Det oppsto en nettverksfeil da mappen [2] ble opprettet" #. stYdV #: Error.ulf @@ -3578,7 +3578,7 @@ "OOO_ERROR_44\n" "LngText.text" msgid "A network error occurred while attempting to open the source file cabinet [2]." -msgstr "Det oppsto en nettverksfeil da kildefila [2] ble åpnet" +msgstr "Det oppsto en nettverksfeil da kildefilen [2] ble åpnet" #. usiDM #: Error.ulf @@ -3596,7 +3596,7 @@ "OOO_ERROR_46\n" "LngText.text" msgid "The Installer has insufficient privileges to modify the file [2]." -msgstr "Installasjonsprogrammet har ikke tilstrekkelige rettigheter til å endre fila [2]." +msgstr "Installasjonsprogrammet har ikke tilstrekkelige rettigheter til å endre filen [2]." #. V5Kzx #: Error.ulf @@ -3659,7 +3659,7 @@ "OOO_ERROR_53\n" "LngText.text" msgid "Error applying patch to file [2]. It has probably been updated by other means, and can no longer be modified by this patch. For more information contact your patch vendor. {{System Error: [3]}}" -msgstr "Feil ved lapping av fila [2]. Fila er trolig oppdatert på annen måte og kan ikke lenger endres av denne lappen. Du kan få mer informasjon fra forhandleren som ga deg lappen. {{Systemfeil: [3]}}" +msgstr "Feil ved patching av filen [2]. Filen er trolig oppdatert på annen måte og kan ikke lenger endres av denne patchen. Du kan få mer informasjon fra forhandleren som ga deg patchen. {{Systemfeil: [3]}}" #. 5A7BV #: Error.ulf @@ -3812,7 +3812,7 @@ "OOO_ERROR_70\n" "LngText.text" msgid "The file [2][3] is being held in use {by the following process: Name: [4], ID: [5], Window Title: [6]}. Close that application and retry." -msgstr "Fila [2][3] er i bruk {av den følgende prosessen: Navn: [4], ID: [5], Vindustittel: [6]}. Lukk det programmet og prøv på nytt." +msgstr "Filen [2][3] er i bruk {av den følgende prosessen: Navn: [4], ID: [5], Vindustittel: [6]}. Lukk det programmet og prøv på nytt." #. oF3Fv #: Error.ulf @@ -4028,7 +4028,7 @@ "OOO_ERROR_94\n" "LngText.text" msgid "The folder [2] does not exist. Please enter a path to an existing folder." -msgstr "Mappa [2] finnes ikke. Oppgi en sti til en mappe som finnes." +msgstr "Mappen [2] finnes ikke. Oppgi en sti til en mappe som finnes." #. p7SAc #: Error.ulf @@ -4037,7 +4037,7 @@ "OOO_ERROR_95\n" "LngText.text" msgid "You have insufficient privileges to read this folder." -msgstr "Du har ikke tilstrekkelig tilgang til å lese denne mappa." +msgstr "Du har ikke tilstrekkelig tilgang til å lese denne mappen." #. e7ts6 #: Error.ulf @@ -4064,7 +4064,7 @@ "OOO_ERROR_98\n" "LngText.text" msgid "Scheduling reboot operation: Renaming file [2] to [3]. Must reboot to complete operation." -msgstr "Planlegger omstart: Endrer navnet på fila [2] til [3]. Må starte om igjen for å fullføre operasjonen." +msgstr "Planlegger omstart: Endrer navnet på filen [2] til [3]. Må starte om igjen for å fullføre operasjonen." #. mtjE3 #: Error.ulf @@ -4073,7 +4073,7 @@ "OOO_ERROR_99\n" "LngText.text" msgid "Scheduling reboot operation: Deleting file [2]. Must reboot to complete operation." -msgstr "Planlegger omstart: Sletter fila [2]. Må starte om igjen for å fullføre operasjonen." +msgstr "Planlegger omstart: Sletter filen [2]. Må starte om igjen for å fullføre operasjonen." #. iEw33 #: Error.ulf @@ -4127,7 +4127,7 @@ "OOO_ERROR_105\n" "LngText.text" msgid "Could not create shortcut [2]. Verify that the destination folder exists and that you can access it." -msgstr "Klarte ikke å opprette snarveien [2]. Sjekk at målmappa finnes og at du har tilgang til den." +msgstr "Klarte ikke å opprette snarveien [2]. Sjekk at målmappen finnes og at du har tilgang til den." #. QXqrx #: Error.ulf @@ -4136,7 +4136,7 @@ "OOO_ERROR_106\n" "LngText.text" msgid "Could not remove shortcut [2]. Verify that the shortcut file exists and that you can access it." -msgstr "Klarte ikke å fjerne snarveien [2]. Sjekk at snarveisfila finnes og at du har tilgang til den." +msgstr "Klarte ikke å fjerne snarveien [2]. Sjekk at snarveisfilen finnes og at du har tilgang til den." #. 3MqnE #: Error.ulf @@ -4145,7 +4145,7 @@ "OOO_ERROR_107\n" "LngText.text" msgid "Could not register type library for file [2]. Contact your support personnel." -msgstr "Klarte ikke å registrere typebibliotek for fila [2]. Kontakt brukerstøtten." +msgstr "Klarte ikke å registrere typebibliotek for filen [2]. Kontakt brukerstøtten." #. jCuE6 #: Error.ulf @@ -4154,7 +4154,7 @@ "OOO_ERROR_108\n" "LngText.text" msgid "Could not unregister type library for file [2]. Contact your support personnel." -msgstr "Klarte ikke å avregistrere typebibliotek for fila [2]. Kontakt brukerstøtten." +msgstr "Klarte ikke å avregistrere typebibliotek for filen [2]. Kontakt brukerstøtten." #. 4pspZ #: Error.ulf @@ -4163,7 +4163,7 @@ "OOO_ERROR_109\n" "LngText.text" msgid "Could not update the INI file [2][3]. Verify that the file exists and that you can access it." -msgstr "Klarte ikke å oppdatere INI-fila [2][3]. Sjekk at fila finnes og at du har tilgang til den." +msgstr "Klarte ikke å oppdatere INI-filen [2][3]. Sjekk at filen finnes og at du har tilgang til den." #. dkhNT #: Error.ulf @@ -4172,7 +4172,7 @@ "OOO_ERROR_110\n" "LngText.text" msgid "Could not schedule file [2] to replace file [3] on reboot. Verify that you have write permissions to file [3]." -msgstr "Klarte ikke å planlegge at fila [2] skal erstatte [3] ved omstart. Sjekk at du har skrivetilgang til fila [3]." +msgstr "Klarte ikke å planlegge at filen [2] skal erstatte [3] ved omstart. Sjekk at du har skrivetilgang til filen [3]." #. DDg6R #: Error.ulf @@ -4208,7 +4208,7 @@ "OOO_ERROR_114\n" "LngText.text" msgid "Error installing ODBC driver [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it." -msgstr "Feil ved installering av ODBC-driveren [4]. ODBC-feil [2]: [3]. Sjekk at fila [4] finnes og at du har tilgang til den." +msgstr "Feil ved installering av ODBC-driveren [4]. ODBC-feil [2]: [3]. Sjekk at filen [4] finnes og at du har tilgang til den." #. X7EWG #: Error.ulf @@ -4217,7 +4217,7 @@ "OOO_ERROR_115\n" "LngText.text" msgid "Error configuring ODBC data source [4], ODBC error [2]: [3]. Verify that the file [4] exists and that you can access it." -msgstr "Feil ved oppsettet av ODBC-datakilden [4]. ODBC-feil [2]: [3]. Sjekk at fila [4] finnes og at du har tilgang til den." +msgstr "Feil ved oppsettet av ODBC-datakilden [4]. ODBC-feil [2]: [3]. Sjekk at filen [4] finnes og at du har tilgang til den." #. 6UdPx #: Error.ulf @@ -4280,7 +4280,7 @@ "OOO_ERROR_122\n" "LngText.text" msgid "Could not set file security for file [3]. Error: [2]. Verify that you have sufficient privileges to modify the security permissions for this file." -msgstr "Klarte ikke å angi filsikkerheten for fila [3]. Feil: [2]. Sjekk at du har tilstrekkelig tilgang til å endre på sikkerhetssinnstillingene for denne fila." +msgstr "Klarte ikke å angi filsikkerheten for filen [3]. Feil: [2]. Sjekk at du har tilstrekkelig tilgang til å endre på sikkerhetssinnstillingene for denne filen." #. GtDXr #: Error.ulf @@ -4325,7 +4325,7 @@ "OOO_ERROR_127\n" "LngText.text" msgid "The Windows Installer service cannot update the system file [2] because the file is protected by Windows. You may need to update your operating system for this program to work correctly. {{Package version: [3], OS Protected version: [4]}}" -msgstr "Windows Installer-tjenesten kan ikke oppdatere systemfila [2] fordi den er beskyttet av Windows. Du må kanskje oppdatere operativsystemet for at dette programmet skal kunne virke skikkelig. {{Pakkeversjon: [3], OS-beskyttet versjon: [4]}}" +msgstr "Windows Installer-tjenesten kan ikke oppdatere systemfilen [2] fordi den er beskyttet av Windows. Du må kanskje oppdatere operativsystemet for at dette programmet skal kunne virke skikkelig. {{Pakkeversjon: [3], OS-beskyttet versjon: [4]}}" #. BQQSh #: Error.ulf @@ -4334,7 +4334,7 @@ "OOO_ERROR_128\n" "LngText.text" msgid "The Windows Installer service cannot update the protected Windows file [2]. {{Package version: [3], OS Protected version: [4], SFP Error: [5]}}" -msgstr "Windows Installer-tjenesten kan ikke oppdatere den beskyttede Windows-fila [2]. {{Pakkeversjon: [3], OS-beskyttet versjon: [4], SFP-feil: [5]}}" +msgstr "Windows Installer-tjenesten kan ikke oppdatere den beskyttede Windows-filen [2]. {{Pakkeversjon: [3], OS-beskyttet versjon: [4], SFP-feil: [5]}}" #. PAdiR #: Error.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/librelogo/source/pythonpath.po libreoffice-7.1.3~rc2/translations/source/nb/librelogo/source/pythonpath.po --- libreoffice-7.1.2~rc2/translations/source/nb/librelogo/source/pythonpath.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/librelogo/source/pythonpath.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 40l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:09+0200\n" -"PO-Revision-Date: 2020-08-02 07:43+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1492417518.000000\n" #. tFoAo @@ -77,7 +77,7 @@ "HOME\n" "property.text" msgid "home" -msgstr "hjem|home" +msgstr "hjem" #. KpJ4z #: LibreLogo_en_US.properties @@ -86,7 +86,7 @@ "POINT\n" "property.text" msgid "point" -msgstr "punkt|point" +msgstr "punkt" #. qKQFP #: LibreLogo_en_US.properties @@ -95,7 +95,7 @@ "CIRCLE\n" "property.text" msgid "circle" -msgstr "sirkel|circle" +msgstr "sirkel" #. svw6Z #: LibreLogo_en_US.properties @@ -113,7 +113,7 @@ "SQUARE\n" "property.text" msgid "square" -msgstr "kvadrat|square" +msgstr "kvadrat" #. C8wfs #: LibreLogo_en_US.properties @@ -122,7 +122,7 @@ "RECTANGLE\n" "property.text" msgid "rectangle" -msgstr "rektangel|rectangle" +msgstr "rektangel" #. amFfu #: LibreLogo_en_US.properties @@ -131,7 +131,7 @@ "LABEL\n" "property.text" msgid "label" -msgstr "etikett|label" +msgstr "etikett" #. 2fBcU #: LibreLogo_en_US.properties @@ -149,7 +149,7 @@ "ANY\n" "property.text" msgid "any" -msgstr "alle|any" +msgstr "alle" #. WxpfM #: LibreLogo_en_US.properties @@ -194,7 +194,7 @@ "NONE\n" "property.text" msgid "none" -msgstr "ingen|none" +msgstr "ingen" #. f5mQa #: LibreLogo_en_US.properties @@ -203,7 +203,7 @@ "BEVEL\n" "property.text" msgid "bevel" -msgstr "skråkant|bevel" +msgstr "skråkant" #. R4Z7i #: LibreLogo_en_US.properties @@ -212,7 +212,7 @@ "MITER\n" "property.text" msgid "miter" -msgstr "skarp|miter" +msgstr "skarp" #. DX7nN #: LibreLogo_en_US.properties @@ -221,7 +221,7 @@ "ROUNDED\n" "property.text" msgid "round" -msgstr "avrundet|round" +msgstr "avrunde" #. VSaRQ #: LibreLogo_en_US.properties @@ -230,7 +230,7 @@ "SOLID\n" "property.text" msgid "solid" -msgstr "ensfarget|solid" +msgstr "ensfarget" #. P6PxY #: LibreLogo_en_US.properties @@ -239,7 +239,7 @@ "DASH\n" "property.text" msgid "dashed" -msgstr "stiplet|dashed" +msgstr "stiplet" #. NgY8n #: LibreLogo_en_US.properties @@ -248,7 +248,7 @@ "DOTTED\n" "property.text" msgid "dotted" -msgstr "prikket|dotted" +msgstr "prikket" #. ti8oV #: LibreLogo_en_US.properties @@ -257,7 +257,7 @@ "CLOSE\n" "property.text" msgid "close" -msgstr "lukk|close" +msgstr "lukk" #. btW32 #: LibreLogo_en_US.properties @@ -266,7 +266,7 @@ "FILL\n" "property.text" msgid "fill" -msgstr "fyll|fill" +msgstr "fyll" #. nGc2D #: LibreLogo_en_US.properties @@ -275,7 +275,7 @@ "FILLCOLOR\n" "property.text" msgid "fillcolor|fillcolour|fc" -msgstr "fyllfarge|ff|fillcolor" +msgstr "fyllfarge|ff|" #. PGzDC #: LibreLogo_en_US.properties @@ -302,7 +302,7 @@ "FILLSTYLE\n" "property.text" msgid "fillstyle" -msgstr "fyllstil|fillstyle" +msgstr "fyllstil" #. Z2nMa #: LibreLogo_en_US.properties @@ -311,7 +311,7 @@ "FONTCOLOR\n" "property.text" msgid "fontcolor|textcolor|textcolour" -msgstr "tekstfarge|textcolor" +msgstr "tekstfarge" #. 3G7jg #: LibreLogo_en_US.properties @@ -329,7 +329,7 @@ "FONTHEIGHT\n" "property.text" msgid "fontsize|textsize|textheight" -msgstr "tekststørrelse|teksthøyde|textsize" +msgstr "tekststørrelse|teksthøyde" #. amtRF #: LibreLogo_en_US.properties @@ -347,7 +347,7 @@ "FONTSTYLE\n" "property.text" msgid "fontstyle" -msgstr "skriftstil|fontstyle" +msgstr "fontstil" #. YKYPa #: LibreLogo_en_US.properties @@ -356,7 +356,7 @@ "BOLD\n" "property.text" msgid "bold" -msgstr "fet|bold" +msgstr "fet" #. Q2DmA #: LibreLogo_en_US.properties @@ -365,7 +365,7 @@ "ITALIC\n" "property.text" msgid "italic" -msgstr "kursiv|italic" +msgstr "kursiv" #. hC7sA #: LibreLogo_en_US.properties @@ -392,7 +392,7 @@ "FONTFAMILY\n" "property.text" msgid "fontfamily" -msgstr "skriftfamilie|fontfamily" +msgstr "fontfamilie" #. Fu2PZ #: LibreLogo_en_US.properties @@ -401,7 +401,7 @@ "CLEARSCREEN\n" "property.text" msgid "clearscreen|cs" -msgstr "tømskjermen|ts|clearscreen" +msgstr "tømskjermen|ts" #. 4eTcL #: LibreLogo_en_US.properties @@ -410,7 +410,7 @@ "TEXT\n" "property.text" msgid "text" -msgstr "tekst|text" +msgstr "tekst" #. oJ8GF #: LibreLogo_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po libreoffice-7.1.3~rc2/translations/source/nb/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po --- libreoffice-7.1.2~rc2/translations/source/nb/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-02-21 01:15+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1485286669.000000\n" #. XpeLj @@ -131,7 +131,7 @@ "par_id0503200917103766\n" "help.text" msgid "If disabled (default), the BCH Comparator is used. It compares two individuals by first looking at their constraint violations and only if those are equal, it measures their current solution." -msgstr "Hvis slått av (standardvalget), vil BCH-sammenligninga bli brukt. Den sammenligner to individer ved å først se på overskridelsene av begrensninger, og vil kun vurdere den gjeldende løsninga fra disse hvis verdiene samsvarer." +msgstr "Hvis slått av (standardvalget), vil BCH-sammenligningen bli brukt. Den sammenligner to individer ved å først se på overskridelsene av begrensninger, og vil kun vurdere den gjeldende løsningen fra disse hvis verdiene samsvarer." #. wHTo3 #: Options.xhp @@ -140,7 +140,7 @@ "par_id0503200917103744\n" "help.text" msgid "If enabled, the ACR Comparator is used. It compares two individuals dependent on the current iteration and measures their goodness with knowledge about the libraries worst known solutions (in regard to their constraint violations)." -msgstr "Hvis slått på, vil ACR-sammenligninga bli brukt. Den sammenligner to individer avhengig av den gjeldende gjentakelsen og vurderer validiteten basert på kunnskap om bibliotekenes dårligste løsninger (med tanke på overskridelser av begrensinger)." +msgstr "Hvis slått på, vil ACR-sammenligningen bli brukt. Den sammenligner to individer avhengig av den gjeldende gjentakelsen og vurderer validiteten basert på kunnskap om bibliotekenes dårligste løsninger (med tanke på overskridelser av begrensinger)." #. 5jPbx #: Options.xhp @@ -221,7 +221,7 @@ "par_id0503200917103832\n" "help.text" msgid "If enabled, an additional dialog is shown during the solving process which gives information about the current progress, the level of stagnation, the currently best known solution as well as the possibility, to stop or resume the solver." -msgstr "Hvis påslått vises et nytt dialogvindu med informasjon om fremgangen til løseprosessen, stagnasjonsnivået, den nåværende best kjente løsningen, i tillegg til muligheten til å stoppe eller fortsette med løsinga." +msgstr "Hvis påslått vises et nytt dialogvindu med informasjon om fremgangen til løseprosessen, stagnasjonsnivået, den nåværende best kjente løsningen, i tillegg til muligheten til å stoppe eller fortsette med løsingen." #. KH5yg #: Options.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/nlpsolver/src/locale.po libreoffice-7.1.3~rc2/translations/source/nb/nlpsolver/src/locale.po --- libreoffice-7.1.2~rc2/translations/source/nb/nlpsolver/src/locale.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/nlpsolver/src/locale.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-08-21 21:37+0200\n" -"PO-Revision-Date: 2019-11-25 16:27+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1386761362.000000\n" #. sv3GB @@ -302,7 +302,7 @@ "NLPSolverStatusDialog.Time.Nanoseconds\n" "property.text" msgid "Nanoseconds" -msgstr "nanosekunder" +msgstr "Nanosekunder" #. cUtXC #: NLPSolverStatusDialog_en_US.properties @@ -311,7 +311,7 @@ "NLPSolverStatusDialog.Time.Microseconds\n" "property.text" msgid "Microseconds" -msgstr "mikrosekunder" +msgstr "Mikrosekunder" #. B9Wui #: NLPSolverStatusDialog_en_US.properties @@ -320,7 +320,7 @@ "NLPSolverStatusDialog.Time.Milliseconds\n" "property.text" msgid "Milliseconds" -msgstr "millisekunder" +msgstr "Millisekunder" #. TzBHP #: NLPSolverStatusDialog_en_US.properties @@ -329,7 +329,7 @@ "NLPSolverStatusDialog.Time.Second\n" "property.text" msgid "Second" -msgstr "sekund" +msgstr "Sekund" #. AoHMv #: NLPSolverStatusDialog_en_US.properties @@ -338,7 +338,7 @@ "NLPSolverStatusDialog.Time.Seconds\n" "property.text" msgid "Seconds" -msgstr "sekunder" +msgstr "Sekunder" #. EBDm2 #: NLPSolverStatusDialog_en_US.properties @@ -347,7 +347,7 @@ "NLPSolverStatusDialog.Time.Minute\n" "property.text" msgid "Minute" -msgstr "minutt" +msgstr "Minutt" #. QWZYX #: NLPSolverStatusDialog_en_US.properties @@ -356,7 +356,7 @@ "NLPSolverStatusDialog.Time.Minutes\n" "property.text" msgid "Minutes" -msgstr "minutter" +msgstr "Minutter" #. sC73y #: NLPSolverStatusDialog_en_US.properties @@ -365,7 +365,7 @@ "NLPSolverStatusDialog.Time.Hour\n" "property.text" msgid "Hour" -msgstr "time" +msgstr "Time" #. AgYqD #: NLPSolverStatusDialog_en_US.properties @@ -374,7 +374,7 @@ "NLPSolverStatusDialog.Time.Hours\n" "property.text" msgid "Hours" -msgstr "timer" +msgstr "Timer" #. HURQy #: NLPSolverStatusDialog_en_US.properties @@ -383,7 +383,7 @@ "NLPSolverStatusDialog.Time.Day\n" "property.text" msgid "Day" -msgstr "dag" +msgstr "Dag" #. WBzAK #: NLPSolverStatusDialog_en_US.properties @@ -392,4 +392,4 @@ "NLPSolverStatusDialog.Time.Days\n" "property.text" msgid "Days" -msgstr "dager" +msgstr "Dager" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-11-10 19:35+0000\n" -"Last-Translator: kingu \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565984194.000000\n" #. W5ukN @@ -154,7 +154,7 @@ "Label\n" "value.text" msgid "Form Vertical Scroll Bar" -msgstr "Loddrett rullefelt for skjema" +msgstr "Vertikalt Rullefelt for Skjema" #. iAGGD #: BasicIDECommands.xcu @@ -164,7 +164,7 @@ "Label\n" "value.text" msgid "Form Horizontal Scroll Bar" -msgstr "Vannrett rullefelt for skjema" +msgstr "Horisontalt Rullefelt for Skjema" #. 6X6F7 #: BasicIDECommands.xcu @@ -354,7 +354,7 @@ "Label\n" "value.text" msgid "~Column Arrangement..." -msgstr "~Kolonneoppsett …" +msgstr "Kolonneoppsett …" #. vEcAH #: BibliographyCommands.xcu @@ -364,7 +364,7 @@ "Label\n" "value.text" msgid "~Filter..." -msgstr "~Filter …" +msgstr "Filter …" #. RnaE2 #: BibliographyCommands.xcu @@ -374,7 +374,7 @@ "Label\n" "value.text" msgid "Delete ~Record" -msgstr "Slett ~post" +msgstr "Slett post" #. 5DjVB #: BibliographyCommands.xcu @@ -384,7 +384,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "Start ~opptak" +msgstr "Start opptak" #. sLYH3 #: BibliographyCommands.xcu @@ -394,7 +394,7 @@ "Label\n" "value.text" msgid "~Choose Data Source..." -msgstr "Velg ~datakilde …" +msgstr "Velg datakilde …" #. DxfLZ #: BibliographyCommands.xcu @@ -454,7 +454,7 @@ "Label\n" "value.text" msgid "Flip Vertically" -msgstr "Speil loddrett" +msgstr "Flipp Vertikalt" #. wZRbB #: CalcCommands.xcu @@ -474,7 +474,7 @@ "Label\n" "value.text" msgid "Flip Horizontally" -msgstr "Speil vannrett" +msgstr "Flipp Horisontalt" #. wFQNy #: CalcCommands.xcu @@ -484,7 +484,7 @@ "Label\n" "value.text" msgid "Trace ~Precedents" -msgstr "Finn ~foregående" +msgstr "Finn foregående" #. dAYx8 #: CalcCommands.xcu @@ -524,7 +524,7 @@ "Label\n" "value.text" msgid "~Remove Precedents" -msgstr "~Fjern foregående" +msgstr "Fjern foregående" #. jDtxy #: CalcCommands.xcu @@ -534,7 +534,7 @@ "Label\n" "value.text" msgid "~Trace Dependents" -msgstr "Finn ~avhengige" +msgstr "Finn avhengige" #. 4wDz9 #: CalcCommands.xcu @@ -544,7 +544,7 @@ "Label\n" "value.text" msgid "~Split Window" -msgstr "D~el vindu" +msgstr "Del vindu" #. PFn4B #: CalcCommands.xcu @@ -554,7 +554,7 @@ "Label\n" "value.text" msgid "Remove ~Dependents" -msgstr "Fjern a~vhengige" +msgstr "Fjern avhengige" #. cogwE #: CalcCommands.xcu @@ -564,7 +564,7 @@ "Label\n" "value.text" msgid "Freeze ~Cells" -msgstr "Frys ~celler" +msgstr "Frys celler" #. p5wLA #: CalcCommands.xcu @@ -574,7 +574,7 @@ "Label\n" "value.text" msgid "Freeze ~Rows and Columns" -msgstr "Frys ~rader og kolonner" +msgstr "Frys rader og kolonner" #. GFfAZ #: CalcCommands.xcu @@ -604,7 +604,7 @@ "Label\n" "value.text" msgid "Trace ~Error" -msgstr "Finn f~eil" +msgstr "Finn feil" #. X5EJF #: CalcCommands.xcu @@ -624,7 +624,7 @@ "Label\n" "value.text" msgid "Trace ~Precedent" -msgstr "Finn ~foregående" +msgstr "Finn foregående" #. Eob2h #: CalcCommands.xcu @@ -644,7 +644,7 @@ "Label\n" "value.text" msgid "~Trace Dependent" -msgstr "~Finn avhengige" +msgstr "Finn avhengige" #. nSNFf #: CalcCommands.xcu @@ -674,7 +674,7 @@ "Label\n" "value.text" msgid "Remove ~All Traces" -msgstr "Fjern alle ~spor" +msgstr "Fjern alle spor" #. qyUAu #: CalcCommands.xcu @@ -684,7 +684,7 @@ "Label\n" "value.text" msgid "~Fill Mode" -msgstr "Spor~viser" +msgstr "Fyllmodus" #. tgNbT #: CalcCommands.xcu @@ -694,7 +694,7 @@ "Label\n" "value.text" msgid "~Mark Invalid Data" -msgstr "~Marker ugyldige data" +msgstr "Marker ugyldige data" #. tZSSA #: CalcCommands.xcu @@ -704,7 +704,7 @@ "Label\n" "value.text" msgid "Refresh Tra~ces" -msgstr "~Oppdater spor" +msgstr "Oppdater spor" #. thBTW #: CalcCommands.xcu @@ -714,7 +714,7 @@ "Label\n" "value.text" msgid "A~utoRefresh Traces" -msgstr "~Automatisk oppdatering av spor" +msgstr "Automatisk oppdatering av spor" #. SrsPm #: CalcCommands.xcu @@ -724,7 +724,7 @@ "ContextLabel\n" "value.text" msgid "A~utoRefresh" -msgstr "~Automatisk oppdatering" +msgstr "Automatisk oppdatering" #. 4JrVG #: CalcCommands.xcu @@ -754,7 +754,7 @@ "Label\n" "value.text" msgid "Link to E~xternal Data..." -msgstr "Lenke til ~eksterne data …" +msgstr "Lenke til eksterne data …" #. FTLfZ #: CalcCommands.xcu @@ -764,7 +764,7 @@ "Label\n" "value.text" msgid "~Hyphenation..." -msgstr "~Orddeling …" +msgstr "Orddeling …" #. AQgBD #: CalcCommands.xcu @@ -794,7 +794,7 @@ "Label\n" "value.text" msgid "~Select Sheets..." -msgstr "~Velg ark …" +msgstr "Velg ark …" #. UpH4K #: CalcCommands.xcu @@ -804,7 +804,7 @@ "Label\n" "value.text" msgid "Sheet ~Events..." -msgstr "~Arkhendelser …" +msgstr "Arkhendelser …" #. QfBmZ #: CalcCommands.xcu @@ -824,7 +824,7 @@ "PopupLabel\n" "value.text" msgid "~Filter..." -msgstr "~Filter …" +msgstr "Filter …" #. d2ih5 #: CalcCommands.xcu @@ -1064,7 +1064,7 @@ "Label\n" "value.text" msgid "Te~xt to Columns..." -msgstr "Tekst til ~kolonner …" +msgstr "Tekst til kolonner …" #. EAu5K #: CalcCommands.xcu @@ -1074,7 +1074,7 @@ "Label\n" "value.text" msgid "~Consolidate..." -msgstr "~Slå sammen …" +msgstr "Slå sammen …" #. gDEQt #: CalcCommands.xcu @@ -1134,7 +1134,7 @@ "Label\n" "value.text" msgid "~Insert or Edit..." -msgstr "sett inn eller rediger..." +msgstr "Sett inn eller rediger..." #. vqC2u #: CalcCommands.xcu @@ -1154,7 +1154,7 @@ "Label\n" "value.text" msgid "~Function..." -msgstr "~Funksjon …" +msgstr "Funksjon …" #. hnXBX #: CalcCommands.xcu @@ -1174,7 +1174,7 @@ "Label\n" "value.text" msgid "~Goal Seek..." -msgstr "~Tilpass verdi …" +msgstr "Tilpass verdi …" #. qtbpy #: CalcCommands.xcu @@ -1184,7 +1184,7 @@ "Label\n" "value.text" msgid "Sol~ver..." -msgstr "~Løser …" +msgstr "Løser …" #. iQYDu #: CalcCommands.xcu @@ -1204,7 +1204,7 @@ "Label\n" "value.text" msgid "~Multiple Operations..." -msgstr "~Flere operasjoner …" +msgstr "Flere operasjoner …" #. PRebF #: CalcCommands.xcu @@ -1224,7 +1224,7 @@ "Label\n" "value.text" msgid "Ch~art..." -msgstr "~Diagram …" +msgstr "Diagram …" #. rZLqF #: CalcCommands.xcu @@ -1564,7 +1564,7 @@ "ContextLabel\n" "value.text" msgid "~Define" -msgstr "~Angi område" +msgstr "Angi område" #. p8JoC #: CalcCommands.xcu @@ -1594,7 +1594,7 @@ "ContextLabel\n" "value.text" msgid "~Clear" -msgstr "~Slett" +msgstr "Slett" #. i6Ea2 #: CalcCommands.xcu @@ -1624,7 +1624,7 @@ "ContextLabel\n" "value.text" msgid "~Edit..." -msgstr "~Rediger …" +msgstr "Rediger …" #. iNsyn #: CalcCommands.xcu @@ -1654,7 +1654,7 @@ "ContextLabel\n" "value.text" msgid "~Add" -msgstr "~Legg til" +msgstr "Legg til" #. RxtBq #: CalcCommands.xcu @@ -1674,7 +1674,7 @@ "Label\n" "value.text" msgid "Cycle Cell Reference Types" -msgstr "Cycle Cell Referansetyper" +msgstr "Sykluscelle Referansetyper" #. 8Zduf #: CalcCommands.xcu @@ -1684,7 +1684,7 @@ "Label\n" "value.text" msgid "Paste ~Special..." -msgstr "~Lim inn utvalg …" +msgstr "Lim inn utvalg …" #. TPXQW #: CalcCommands.xcu @@ -1704,7 +1704,7 @@ "Label\n" "value.text" msgid "Delete C~ells..." -msgstr "Slett ~celler …" +msgstr "Slett celler …" #. R9Vru #: CalcCommands.xcu @@ -1734,7 +1734,7 @@ "Label\n" "value.text" msgid "~Delete Sheet..." -msgstr "~Slett ark …" +msgstr "Slett ark …" #. LpECW #: CalcCommands.xcu @@ -1744,7 +1744,7 @@ "Label\n" "value.text" msgid "Fill ~Down" -msgstr "Fyll ~ned" +msgstr "Fyll ned" #. GngK3 #: CalcCommands.xcu @@ -1764,7 +1764,7 @@ "Label\n" "value.text" msgid "Fill ~Right" -msgstr "Fyll til ~høyre" +msgstr "Fyll til høyre" #. pt8oQ #: CalcCommands.xcu @@ -1784,7 +1784,7 @@ "Label\n" "value.text" msgid "Fill ~Up" -msgstr "Fyll ~opp" +msgstr "Fyll opp" #. zUgTi #: CalcCommands.xcu @@ -1804,7 +1804,7 @@ "Label\n" "value.text" msgid "Fill ~Left" -msgstr "Fyll til ~venstre" +msgstr "Fyll til venstre" #. YhbaV #: CalcCommands.xcu @@ -1824,7 +1824,7 @@ "Label\n" "value.text" msgid "Fill Single ~Edit" -msgstr "~Fyll enkeltredigering" +msgstr "Fyll enkeltredigering" #. zvx7S #: CalcCommands.xcu @@ -1834,7 +1834,7 @@ "ContextLabel\n" "value.text" msgid "Single ~Edit" -msgstr "~Enkeltredigering" +msgstr "Enkeltredigering" #. 55MC3 #: CalcCommands.xcu @@ -1844,7 +1844,7 @@ "Label\n" "value.text" msgid "Fill ~Sheets..." -msgstr "Fyll ~ark …" +msgstr "Fyll ark …" #. XGGod #: CalcCommands.xcu @@ -1864,7 +1864,7 @@ "Label\n" "value.text" msgid "Fill S~eries..." -msgstr "Fyll ~serier …" +msgstr "Fyll serier …" #. R4ZP5 #: CalcCommands.xcu @@ -1884,7 +1884,7 @@ "Label\n" "value.text" msgid "Fill R~andom Number..." -msgstr "~Fyll inn tilfeldig tall …" +msgstr "Fyll inn tilfeldig tall …" #. hss5z #: CalcCommands.xcu @@ -1914,7 +1914,7 @@ "Label\n" "value.text" msgid "~Sampling..." -msgstr "~Prøvetaking …" +msgstr "Prøvetaking …" #. GybeN #: CalcCommands.xcu @@ -1924,7 +1924,7 @@ "Label\n" "value.text" msgid "~Descriptive Statistics..." -msgstr "~Beskrivende statistikk …" +msgstr "Beskrivende statistikk …" #. W5kCf #: CalcCommands.xcu @@ -1934,7 +1934,7 @@ "Label\n" "value.text" msgid "~Analysis of Variance (ANOVA)..." -msgstr "~Variansanalyse (ANOVA) …" +msgstr "Variansanalyse (ANOVA) …" #. zBmfD #: CalcCommands.xcu @@ -1944,7 +1944,7 @@ "Label\n" "value.text" msgid "~Correlation..." -msgstr "~Korrelasjon …" +msgstr "Korrelasjon …" #. 6yu8T #: CalcCommands.xcu @@ -1954,7 +1954,7 @@ "Label\n" "value.text" msgid "~Covariance..." -msgstr "Ko~varians …" +msgstr "Kovarians …" #. 4xr5v #: CalcCommands.xcu @@ -1964,7 +1964,7 @@ "Label\n" "value.text" msgid "~Exponential Smoothing..." -msgstr "~Eksponentiell glatting …" +msgstr "Eksponensiell glatting …" #. XjBZd #: CalcCommands.xcu @@ -1974,7 +1974,7 @@ "Label\n" "value.text" msgid "~Moving Average..." -msgstr "~Glidende gjennomsnitt …" +msgstr "Glidende gjennomsnitt …" #. nEyHU #: CalcCommands.xcu @@ -1984,7 +1984,7 @@ "Label\n" "value.text" msgid "~Regression..." -msgstr "~Regresjon …" +msgstr "Regresjon …" #. Ws4f4 #: CalcCommands.xcu @@ -2004,7 +2004,7 @@ "Label\n" "value.text" msgid "~F-test..." -msgstr "~F-test …" +msgstr "F-test …" #. Xg3BV #: CalcCommands.xcu @@ -2024,7 +2024,7 @@ "Label\n" "value.text" msgid "~Chi-square Test..." -msgstr "~Kjikvadrat-test …" +msgstr "Kjikvadrat-test …" #. eXA9f #: CalcCommands.xcu @@ -2044,7 +2044,7 @@ "Label\n" "value.text" msgid "~Headers and Footers..." -msgstr "~Topptekst og bunntekst …" +msgstr "Topptekst og bunntekst …" #. 9wsip #: CalcCommands.xcu @@ -2054,7 +2054,7 @@ "Label\n" "value.text" msgid "~Validity..." -msgstr "~Gyldighet …" +msgstr "Gyldighet …" #. B2Cir #: CalcCommands.xcu @@ -2154,7 +2154,7 @@ "Label\n" "value.text" msgid "Define ~Labels..." -msgstr "~Angi etiketter …" +msgstr "Angi etiketter …" #. w9nvu #: CalcCommands.xcu @@ -2164,7 +2164,7 @@ "ContextLabel\n" "value.text" msgid "~Labels..." -msgstr "~Etiketter …" +msgstr "Etiketter …" #. 6ZDVH #: CalcCommands.xcu @@ -2174,7 +2174,7 @@ "Label\n" "value.text" msgid "Show Comment" -msgstr "~Vis merknad" +msgstr "Vis merknad" #. pGKS4 #: CalcCommands.xcu @@ -2184,7 +2184,7 @@ "Label\n" "value.text" msgid "Show Comment" -msgstr "~Vis merknad" +msgstr "Vis merknad" #. 4V4vY #: CalcCommands.xcu @@ -2234,7 +2234,7 @@ "Label\n" "value.text" msgid "Comm~ent" -msgstr "~Merknad" +msgstr "Merknad" #. HAWW3 #: CalcCommands.xcu @@ -3254,7 +3254,7 @@ "Label\n" "value.text" msgid "Protect ~Spreadsheet Structure..." -msgstr "Beskytt ~ regnearkstruktur ..." +msgstr "Beskytt regnearkstruktur ..." #. i7G2v #: CalcCommands.xcu @@ -3684,7 +3684,7 @@ "Label\n" "value.text" msgid "Center Vertically" -msgstr "Midtstilt loddrett" +msgstr "Midtstilt Vertikalt" #. SsaBA #: CalcCommands.xcu @@ -3964,7 +3964,7 @@ "Label\n" "value.text" msgid "Anchor: To P~age" -msgstr "Forankre: til ~side" +msgstr "Forankre: til side" #. fn8YZ #: CalcCommands.xcu @@ -4174,7 +4174,7 @@ "Label\n" "value.text" msgid "Delete Page ~Break" -msgstr "Slett side~skift" +msgstr "Slett sideskift" #. bHJLV #: CalcCommands.xcu @@ -5614,7 +5614,7 @@ "Label\n" "value.text" msgid "Y Error ~Bars..." -msgstr "~Y-feilstolper …" +msgstr "Y-feilstolper …" #. EfDfA #: ChartCommands.xcu @@ -6144,7 +6144,7 @@ "Label\n" "value.text" msgid "Insert Tre~nd Line..." -msgstr "Sett inn tre~ndlinje …" +msgstr "Sett inn trendlinje …" #. ZgKMA #: ChartCommands.xcu @@ -6234,7 +6234,7 @@ "Label\n" "value.text" msgid "Insert Mean ~Value Line" -msgstr "Sett inn snitt~verdilinje" +msgstr "Sett inn snittverdilinje" #. Ks7U3 #: ChartCommands.xcu @@ -6244,7 +6244,7 @@ "Label\n" "value.text" msgid "Delete Mean ~Value Line" -msgstr "Slett snitt~verdilinje" +msgstr "Slett snittverdilinje" #. UvGTP #: ChartCommands.xcu @@ -6264,7 +6264,7 @@ "Label\n" "value.text" msgid "Insert X Error ~Bars..." -msgstr "Sett inn ~X-feilstolper …" +msgstr "Sett inn X-feilstolper …" #. 9FBEJ #: ChartCommands.xcu @@ -6454,7 +6454,7 @@ "Label\n" "value.text" msgid "Horizontal Grids" -msgstr "Vannrett rutenett" +msgstr "Horisontalt Rutenett" #. tN6WF #: ChartCommands.xcu @@ -6514,7 +6514,7 @@ "Label\n" "value.text" msgid "Vertical Grids" -msgstr "Loddrett rutenett" +msgstr "Vertikalt Rutenett" #. TaY4F #: ChartCommands.xcu @@ -7084,7 +7084,7 @@ "Label\n" "value.text" msgid "Paste ~Special..." -msgstr "~Lim inn utvalg …" +msgstr "Lim inn utvalg …" #. GLKEy #: DbuCommands.xcu @@ -7544,7 +7544,7 @@ "PopupLabel\n" "value.text" msgid "New ~Query (Design View)" -msgstr "Ny ~spørringsutforming" +msgstr "Ny spørringsutforming" #. Njo7R #: DbuCommands.xcu @@ -7584,7 +7584,7 @@ "PopupLabel\n" "value.text" msgid "New ~Table Design" -msgstr "Ny ~Tabellutforming" +msgstr "Ny Tabellutforming" #. Ky6Jx #: DbuCommands.xcu @@ -7604,7 +7604,7 @@ "PopupLabel\n" "value.text" msgid "New ~View Design" -msgstr "Ny ~Visningsutforming" +msgstr "Ny Visningsutforming" #. ETnKM #: DbuCommands.xcu @@ -7694,7 +7694,7 @@ "Label\n" "value.text" msgid "~Mail Merge..." -msgstr "Standard~brev …" +msgstr "Standardbrev …" #. PkuBG #: DbuCommands.xcu @@ -7754,7 +7754,7 @@ "Label\n" "value.text" msgid "Delete ~Record" -msgstr "Slett ~post" +msgstr "Slett post" #. dDpPk #: DbuCommands.xcu @@ -7764,7 +7764,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "Start ~opptak" +msgstr "Start opptak" #. EopjQ #: DbuCommands.xcu @@ -7854,7 +7854,7 @@ "Label\n" "value.text" msgid "Close ~Object" -msgstr "Lukk ~objekt" +msgstr "Lukk objekt" #. bbqyc #: DrawImpressCommands.xcu @@ -7934,7 +7934,7 @@ "Label\n" "value.text" msgid "~Rename Layer" -msgstr "~Endre navn på lag" +msgstr "Endre navn på lag" #. SZEUF #: DrawImpressCommands.xcu @@ -7984,7 +7984,7 @@ "Label\n" "value.text" msgid "~Rehearse Timings" -msgstr "Øv på ~tidsbruk" +msgstr "Øv på tidsbruk" #. vUCFf #: DrawImpressCommands.xcu @@ -8014,7 +8014,7 @@ "Label\n" "value.text" msgid "Sho~w Slide" -msgstr "~Vis lysbilde" +msgstr "Vis lysbilde" #. fZrfF #: DrawImpressCommands.xcu @@ -8024,7 +8024,7 @@ "Label\n" "value.text" msgid "~Hide Slide" -msgstr "~Skjul lysbilde" +msgstr "Skjul lysbilde" #. AVpQn #: DrawImpressCommands.xcu @@ -8034,7 +8034,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "" +msgstr "Tekstattributter ..." #. GR6Sf #: DrawImpressCommands.xcu @@ -8064,7 +8064,7 @@ "Label\n" "value.text" msgid "Fit Vertical Text to Frame" -msgstr "Tilpass loddrett tekst til ramme" +msgstr "Tilpass Vertikal Tekst til Ramme" #. Vk5pz #: DrawImpressCommands.xcu @@ -8134,7 +8134,7 @@ "Label\n" "value.text" msgid "~Glue Points" -msgstr "~Festepunkter" +msgstr "Festepunkter" #. fCCbz #: DrawImpressCommands.xcu @@ -8184,7 +8184,7 @@ "Label\n" "value.text" msgid "Glue Point Horizontal Center" -msgstr "Plasser festepunkt vannrett i midten" +msgstr "Plasser festepunkt horisontalt i midten" #. QPJ7j #: DrawImpressCommands.xcu @@ -8194,7 +8194,7 @@ "Label\n" "value.text" msgid "Glue Point Horizontal Left" -msgstr "Plasser festepunkt vannrett til venstre" +msgstr "Plasser festepunkt horisontalt til venstre" #. BxrDe #: DrawImpressCommands.xcu @@ -8204,7 +8204,7 @@ "Label\n" "value.text" msgid "Glue Point Horizontal Right" -msgstr "Plasser festepunkt vannrett til høyre" +msgstr "Plasser festepunkt horisontalt til høyre" #. TCnHk #: DrawImpressCommands.xcu @@ -8214,7 +8214,7 @@ "Label\n" "value.text" msgid "Glue Point Vertical Center" -msgstr "Plasser festepunkt loddrett i midten" +msgstr "Plasser festepunkt vertikalt i midten" #. ZQvPN #: DrawImpressCommands.xcu @@ -8224,7 +8224,7 @@ "Label\n" "value.text" msgid "Glue Point Vertical Top" -msgstr "Plasser festepunkt loddrett øverst" +msgstr "Plasser festepunkt vertikalt øverst" #. 2nEcc #: DrawImpressCommands.xcu @@ -8234,7 +8234,7 @@ "Label\n" "value.text" msgid "Glue Point Vertical Bottom" -msgstr "Plasser festepunkt loddrett nederst" +msgstr "Plasser festepunkt vertikalt nederst" #. NNo3V #: DrawImpressCommands.xcu @@ -8334,7 +8334,7 @@ "Label\n" "value.text" msgid "Grid to ~Front" -msgstr "~Rutenett øverst" +msgstr "Rutenett øverst" #. 5wF48 #: DrawImpressCommands.xcu @@ -8364,7 +8364,7 @@ "Label\n" "value.text" msgid "In Front of ~Object" -msgstr "~Foran objektet" +msgstr "Foran objektet" #. bgWfD #: DrawImpressCommands.xcu @@ -8404,7 +8404,7 @@ "Label\n" "value.text" msgid "~Connector..." -msgstr "~Forbindelseslinje …" +msgstr "Forbindelseslinje …" #. TcMxS #: DrawImpressCommands.xcu @@ -8414,7 +8414,7 @@ "Label\n" "value.text" msgid "S~lide Show Settings..." -msgstr "~Innstillinger for lysbildeframvisning …" +msgstr "Innstillinger for lysbildeframvisning …" #. ZLzEA #: DrawImpressCommands.xcu @@ -8424,7 +8424,7 @@ "Label\n" "value.text" msgid "~Hyphenation" -msgstr "O~rddeling" +msgstr "Orddeling" #. CQf4G #: DrawImpressCommands.xcu @@ -8434,7 +8434,7 @@ "Label\n" "value.text" msgid "Reset line skew" -msgstr "" +msgstr "Tilbakestill linjeforskyvning" #. avSPK #: DrawImpressCommands.xcu @@ -8464,7 +8464,7 @@ "Label\n" "value.text" msgid "E~xpand Slide" -msgstr "~Utvid lysbilde" +msgstr "Utvid lysbilde" #. D3B4G #: DrawImpressCommands.xcu @@ -8524,7 +8524,7 @@ "Label\n" "value.text" msgid "Dat~e (variable)" -msgstr "D~ato (variabel)" +msgstr "Dato (variabel)" #. gPjfB #: DrawImpressCommands.xcu @@ -8534,7 +8534,7 @@ "Label\n" "value.text" msgid "~Date (fixed)" -msgstr "~Dato (fast)" +msgstr "Dato (fast)" #. EFsBD #: DrawImpressCommands.xcu @@ -8544,7 +8544,7 @@ "Label\n" "value.text" msgid "T~ime (variable)" -msgstr "K~lokkeslett (variabelt)" +msgstr "Klokkeslett (variabelt)" #. q47Wn #: DrawImpressCommands.xcu @@ -8554,7 +8554,7 @@ "Label\n" "value.text" msgid "~Time (fixed)" -msgstr "~Klokkeslett (fast)" +msgstr "Klokkeslett (fast)" #. BGC6S #: DrawImpressCommands.xcu @@ -8564,7 +8564,7 @@ "Label\n" "value.text" msgid "~Page Number" -msgstr "Si~detall" +msgstr "Sidetall" #. Zmp82 #: DrawImpressCommands.xcu @@ -8584,7 +8584,7 @@ "Label\n" "value.text" msgid "Page Tit~le" -msgstr "Side~tittel" +msgstr "Sidetittel" #. uj26W #: DrawImpressCommands.xcu @@ -8604,7 +8604,7 @@ "Label\n" "value.text" msgid "Page ~Count" -msgstr "A~ntall sider" +msgstr "Antall sider" #. d4VCA #: DrawImpressCommands.xcu @@ -8624,7 +8624,7 @@ "Label\n" "value.text" msgid "F~ields..." -msgstr "Felte~r …" +msgstr "Felter …" #. tpDxJ #: DrawImpressCommands.xcu @@ -8634,7 +8634,7 @@ "Label\n" "value.text" msgid "~File Name" -msgstr "Fil~navn" +msgstr "Filnavn" #. dDLqa #: DrawImpressCommands.xcu @@ -8644,7 +8644,7 @@ "Label\n" "value.text" msgid "~Author" -msgstr "~Forfatter" +msgstr "Forfatter" #. snZ66 #: DrawImpressCommands.xcu @@ -8654,7 +8654,7 @@ "Label\n" "value.text" msgid "~Custom Slide Show..." -msgstr "~Tilpasset lysbildeframvisning …" +msgstr "Tilpasset lysbildeframvisning …" #. iTs8m #: DrawImpressCommands.xcu @@ -8664,7 +8664,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "~Farge" +msgstr "Farge" #. 9Fuwt #: DrawImpressCommands.xcu @@ -8674,7 +8674,7 @@ "Label\n" "value.text" msgid "~Grayscale" -msgstr "~Gråtoner" +msgstr "Gråtoner" #. n53DV #: DrawImpressCommands.xcu @@ -8684,7 +8684,7 @@ "Label\n" "value.text" msgid "~Black and White" -msgstr "~Svart-hvitt" +msgstr "Svart-hvitt" #. vAqSN #: DrawImpressCommands.xcu @@ -8694,7 +8694,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "~Farge" +msgstr "Farge" #. LW7Du #: DrawImpressCommands.xcu @@ -8704,7 +8704,7 @@ "Label\n" "value.text" msgid "~Grayscale" -msgstr "~Gråtoner" +msgstr "Gråtoner" #. hhymh #: DrawImpressCommands.xcu @@ -8714,7 +8714,7 @@ "Label\n" "value.text" msgid "~Black and White" -msgstr "~Svart-hvitt" +msgstr "Svart-hvitt" #. wTvxC #: DrawImpressCommands.xcu @@ -8724,7 +8724,7 @@ "Label\n" "value.text" msgid "To 3~D" -msgstr "Til ~3D" +msgstr "Til 3D" #. 2vbYM #: DrawImpressCommands.xcu @@ -8734,7 +8734,7 @@ "Label\n" "value.text" msgid "To 3D ~Rotation Object" -msgstr "Til 3D, ~dreieobjekt" +msgstr "Til 3D, dreieobjekt" #. jdvEJ #: DrawImpressCommands.xcu @@ -8744,7 +8744,7 @@ "Label\n" "value.text" msgid "To ~Bitmap" -msgstr "Til ~punktbilde" +msgstr "Til punktbilde" #. jEGve #: DrawImpressCommands.xcu @@ -8754,7 +8754,7 @@ "Label\n" "value.text" msgid "To ~Metafile" -msgstr "Til meta~fil" +msgstr "Til metafil" #. AqQ6w #: DrawImpressCommands.xcu @@ -8764,7 +8764,7 @@ "Label\n" "value.text" msgid "To C~ontour" -msgstr "Til ~omriss" +msgstr "Til omriss" #. L87xG #: DrawImpressCommands.xcu @@ -8774,7 +8774,7 @@ "Label\n" "value.text" msgid "~Hide Last Level" -msgstr "~Skjul siste nivå" +msgstr "Skjul siste nivå" #. CGhbB #: DrawImpressCommands.xcu @@ -8784,7 +8784,7 @@ "Label\n" "value.text" msgid "~Show Next Level" -msgstr "~Vis neste nivå" +msgstr "Vis neste nivå" #. 9yDTk #: DrawImpressCommands.xcu @@ -8824,7 +8824,7 @@ "ContextLabel\n" "value.text" msgid "Slide Properties..." -msgstr "" +msgstr "Lybilde egenskaper ..." #. bhvTx #: DrawImpressCommands.xcu @@ -8834,7 +8834,7 @@ "Label\n" "value.text" msgid "Paste ~Special..." -msgstr "~Lim inn utvalg …" +msgstr "Lim inn utvalg …" #. np27c #: DrawImpressCommands.xcu @@ -8844,7 +8844,7 @@ "Label\n" "value.text" msgid "Duplicat~e..." -msgstr "Lag ko~pi …" +msgstr "Lag kopi …" #. 9TAPb #: DrawImpressCommands.xcu @@ -8874,7 +8874,7 @@ "Label\n" "value.text" msgid "~Drawing View" -msgstr "~Tegnevisning" +msgstr "Tegnevisning" #. coDkB #: DrawImpressCommands.xcu @@ -8884,7 +8884,7 @@ "Label\n" "value.text" msgid "~Outline" -msgstr "~Disposisjon" +msgstr "Disposisjon" #. tCZBQ #: DrawImpressCommands.xcu @@ -8894,7 +8894,7 @@ "Label\n" "value.text" msgid "~High Contrast" -msgstr "~Høy kontrast" +msgstr "Høy kontrast" #. htx48 #: DrawImpressCommands.xcu @@ -8904,7 +8904,7 @@ "Label\n" "value.text" msgid "Sli~de Sorter" -msgstr "~Lysbildesortering" +msgstr "Lysbildesortering" #. rLZwB #: DrawImpressCommands.xcu @@ -8914,7 +8914,7 @@ "Label\n" "value.text" msgid "~High Contrast" -msgstr "~Høy kontrast" +msgstr "Høy kontrast" #. oGDd5 #: DrawImpressCommands.xcu @@ -8934,7 +8934,7 @@ "Label\n" "value.text" msgid "~New Slide" -msgstr "~Nytt lysbilde" +msgstr "Nytt lysbilde" #. uQGE2 #: DrawImpressCommands.xcu @@ -9394,7 +9394,7 @@ "Label\n" "value.text" msgid "~Delete Slide" -msgstr "~Slett lysbilde" +msgstr "Slett lysbilde" #. RG5Gq #: DrawImpressCommands.xcu @@ -9474,7 +9474,7 @@ "Label\n" "value.text" msgid "C~onnect" -msgstr "~Forbind" +msgstr "Koble" #. Hvsye #: DrawImpressCommands.xcu @@ -9484,7 +9484,7 @@ "Label\n" "value.text" msgid "~Break" -msgstr "~Del opp" +msgstr "Del opp" #. 9yBgu #: DrawImpressCommands.xcu @@ -9554,7 +9554,7 @@ "Label\n" "value.text" msgid "Be~hind Object" -msgstr "~Bak objektet" +msgstr "Bak objektet" #. XE3LV #: DrawImpressCommands.xcu @@ -9564,7 +9564,7 @@ "Label\n" "value.text" msgid "~Reverse" -msgstr "~Snu" +msgstr "Vend" #. FWsMK #: DrawImpressCommands.xcu @@ -10014,7 +10014,7 @@ "Label\n" "value.text" msgid "~Replace..." -msgstr "~Bytt ut …" +msgstr "Bytt ut …" #. VPEPU #: DrawImpressCommands.xcu @@ -10044,7 +10044,7 @@ "Label\n" "value.text" msgid "Save Background Image..." -msgstr "Lagra bakgrunnsbilde …" +msgstr "Lagre bakgrunnsbilde …" #. fSGTa #: DrawImpressCommands.xcu @@ -10074,7 +10074,7 @@ "Label\n" "value.text" msgid "E~dit Style..." -msgstr "Rediger ~stil …" +msgstr "Rediger stil …" #. tRG4u #: DrawImpressCommands.xcu @@ -10124,7 +10124,7 @@ "Label\n" "value.text" msgid "Rename Master" -msgstr "Gi nytt navn til hovedutforminga" +msgstr "Gi nytt navn til hovedutformingen" #. E7WHo #: DrawImpressCommands.xcu @@ -10184,7 +10184,7 @@ "Label\n" "value.text" msgid "~Modify" -msgstr "~Endre" +msgstr "Endre" #. JQHX9 #: DrawImpressCommands.xcu @@ -10194,7 +10194,7 @@ "Label\n" "value.text" msgid "Wor~kspace" -msgstr "A~rbeidsvisning" +msgstr "Arbeidsvisning" #. cr7UU #: DrawImpressCommands.xcu @@ -10204,7 +10204,7 @@ "Label\n" "value.text" msgid "~Flip" -msgstr "~Speil" +msgstr "Speil" #. g3Fx6 #: DrawImpressCommands.xcu @@ -10214,7 +10214,7 @@ "Label\n" "value.text" msgid "Pre~view Mode" -msgstr "~Kvalitet på forhåndsvisning" +msgstr "Kvalitet på forhåndsvisning" #. Bieif #: DrawImpressCommands.xcu @@ -10224,7 +10224,7 @@ "Label\n" "value.text" msgid "La~yer" -msgstr "La~g" +msgstr "Lag" #. hFGyc #: DrawImpressCommands.xcu @@ -10234,7 +10234,7 @@ "Label\n" "value.text" msgid "~Convert" -msgstr "Gjør o~m" +msgstr "Gjør om" #. 6TUDH #: DrawImpressCommands.xcu @@ -10244,7 +10244,7 @@ "Label\n" "value.text" msgid "~Arrange" -msgstr "~Still opp" +msgstr "Still opp" #. UFyrk #: DrawImpressCommands.xcu @@ -10254,7 +10254,7 @@ "Label\n" "value.text" msgid "~Color/Grayscale" -msgstr "~Farger/gråtoner" +msgstr "Farger/gråtoner" #. u8aXx #: DrawImpressCommands.xcu @@ -10264,7 +10264,7 @@ "Label\n" "value.text" msgid "~Slide Show" -msgstr "~Lysbildeframvisning" +msgstr "Lysbildeframvisning" #. EyFG4 #: DrawImpressCommands.xcu @@ -10274,7 +10274,7 @@ "Label\n" "value.text" msgid "~Group" -msgstr "Gr~upper" +msgstr "Grupper" #. CiUoe #: DrawImpressCommands.xcu @@ -10284,7 +10284,7 @@ "Label\n" "value.text" msgid "Sen~d" -msgstr "S~end" +msgstr "Send" #. CJ6WW #: DrawImpressCommands.xcu @@ -10294,7 +10294,7 @@ "Label\n" "value.text" msgid "Styl~es" -msgstr "Sti~ler" +msgstr "Stiler" #. cv8x3 #: DrawImpressCommands.xcu @@ -10314,7 +10314,7 @@ "Label\n" "value.text" msgid "~Master" -msgstr "Bakgr~unn" +msgstr "Bakgrunn" #. FE22A #: DrawImpressCommands.xcu @@ -10324,7 +10324,7 @@ "Label\n" "value.text" msgid "Master Lay~outs" -msgstr "Hoved~utforminger" +msgstr "Hovedutforminger" #. SqMAZ #: DrawImpressCommands.xcu @@ -10334,7 +10334,7 @@ "Label\n" "value.text" msgid "~Master Elements..." -msgstr "~Elementer i hovedutforming …" +msgstr "Elementer i hovedutforming …" #. V4Tud #: DrawImpressCommands.xcu @@ -10364,7 +10364,7 @@ "Label\n" "value.text" msgid "~Header and Footer..." -msgstr "~Topptekst og bunntekst …" +msgstr "Topptekst og bunntekst …" #. WESiK #: DrawImpressCommands.xcu @@ -10374,7 +10374,7 @@ "Label\n" "value.text" msgid "P~age Number..." -msgstr "~Sidenummer …" +msgstr "Sidenummer …" #. U8EGS #: DrawImpressCommands.xcu @@ -10394,7 +10394,7 @@ "Label\n" "value.text" msgid "Date and ~Time..." -msgstr "Dato og ~klokkeslett …" +msgstr "Dato og klokkeslett …" #. 8jggC #: DrawImpressCommands.xcu @@ -10404,7 +10404,7 @@ "Label\n" "value.text" msgid "~Normal" -msgstr "~Normal" +msgstr "Normal" #. vaTEi #: DrawImpressCommands.xcu @@ -10414,7 +10414,7 @@ "Label\n" "value.text" msgid "Sli~de Sorter" -msgstr "~Lysbildesortering" +msgstr "Lysbildesortering" #. mSBB5 #: DrawImpressCommands.xcu @@ -10434,7 +10434,7 @@ "Label\n" "value.text" msgid "~Page Pane" -msgstr "~Sidefelt" +msgstr "Sidefelt" #. 9W9yh #: DrawImpressCommands.xcu @@ -10444,7 +10444,7 @@ "Label\n" "value.text" msgid "Tas~k Pane" -msgstr "~Oppgaver" +msgstr "Oppgaver" #. EAawg #: DrawImpressCommands.xcu @@ -10504,7 +10504,7 @@ "Label\n" "value.text" msgid "Distribute Columns Evenly" -msgstr "~Fordel kolonner jevnt" +msgstr "Fordel kolonner jevnt" #. EEKov #: DrawImpressCommands.xcu @@ -10624,7 +10624,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "Slett Tabell" #. Lbfd9 #: DrawImpressCommands.xcu @@ -10684,7 +10684,7 @@ "Label\n" "value.text" msgid "Ta~ble Properties..." -msgstr "Tabell~egenskaper …" +msgstr "Tabell egenskaper …" #. wZN3D #: DrawImpressCommands.xcu @@ -10714,7 +10714,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "So~rter …" +msgstr "Sorter …" #. FNihz #: DrawImpressCommands.xcu @@ -10724,7 +10724,7 @@ "Label\n" "value.text" msgid "~Table..." -msgstr "~Tabell …" +msgstr "Tabell …" #. apmru #: DrawImpressCommands.xcu @@ -10734,7 +10734,7 @@ "Label\n" "value.text" msgid "Comme~nt" -msgstr "~Merknad" +msgstr "Merknad" #. XUrBD #: DrawImpressCommands.xcu @@ -10744,7 +10744,7 @@ "Label\n" "value.text" msgid "~Delete Comment" -msgstr "~Slett merknad" +msgstr "Slett merknad" #. dXVdv #: DrawImpressCommands.xcu @@ -10754,7 +10754,7 @@ "Label\n" "value.text" msgid "Delete ~All Comments" -msgstr "~Slett alle merknader" +msgstr "Slett alle merknader" #. Msttw #: DrawImpressCommands.xcu @@ -10804,7 +10804,7 @@ "Label\n" "value.text" msgid "Minimize ~Presentation..." -msgstr "Krymp ~presentasjonen …" +msgstr "Minimer presentasjonen …" #. mYRFz #: DrawImpressCommands.xcu @@ -10854,7 +10854,7 @@ "Label\n" "value.text" msgid "Go to Previous Page" -msgstr "Gå til førrige side" +msgstr "Gå til forrige side" #. GXaQT #: DrawImpressCommands.xcu @@ -10874,7 +10874,7 @@ "Label\n" "value.text" msgid "Go to Previous Slide" -msgstr "Gå til førrige lysbilde" +msgstr "Gå til forrige lysbilde" #. RmTdY #: DrawImpressCommands.xcu @@ -11254,7 +11254,7 @@ "Label\n" "value.text" msgid "Vertical Title, Vertical Text" -msgstr "Loddrett tittel, loddrett tekst" +msgstr "Vertikal Tittel, Vertikal Tekst" #. 3CuKy #: DrawImpressCommands.xcu @@ -11264,7 +11264,7 @@ "Label\n" "value.text" msgid "Vertical Title, Text, Chart" -msgstr "Loddrett tittel, tekst, diagram" +msgstr "Vertikal Tittel, Tekst, Diagram" #. BxHmH #: DrawImpressCommands.xcu @@ -11274,7 +11274,7 @@ "Label\n" "value.text" msgid "Title, Vertical Text" -msgstr "Tittel, loddrett tekst" +msgstr "Tittel, Vertikal Tekst" #. rHEMC #: DrawImpressCommands.xcu @@ -11284,7 +11284,7 @@ "Label\n" "value.text" msgid "Title, 2 Vertical Text, Clipart" -msgstr "Tittel, 2 loddrett tekst, utklippsbilde" +msgstr "Tittel, 2 Vertikal Tekst, Utklippsbilde" #. 3EaGa #: DrawImpressCommands.xcu @@ -11324,7 +11324,7 @@ "Label\n" "value.text" msgid "~Cell" -msgstr "~Celle" +msgstr "Celle" #. FMhgM #: DrawImpressCommands.xcu @@ -11334,7 +11334,7 @@ "Label\n" "value.text" msgid "~Row" -msgstr "~Rad" +msgstr "Rad" #. BxU6T #: DrawImpressCommands.xcu @@ -11354,7 +11354,7 @@ "Label\n" "value.text" msgid "Presentation ~Object..." -msgstr "Presentasjons ~Objekt..." +msgstr "Presentasjonsobjekt..." #. CBNFc #: DrawImpressCommands.xcu @@ -11514,7 +11514,7 @@ "UIName\n" "value.text" msgid "Layer Tabs bar" -msgstr "Tab linje for lag" +msgstr "Fanelinje for lag" #. GAQFS #: DrawWindowState.xcu @@ -12104,7 +12104,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Distribuer Utvalg" #. qQQAi #: Effects.xcu @@ -12854,7 +12854,7 @@ "Label\n" "value.text" msgid "Vertical Highlight" -msgstr "Loddrett framheving" +msgstr "Vertikal Framheving" #. iLhCZ #: Effects.xcu @@ -13574,7 +13574,7 @@ "Label\n" "value.text" msgid "Regular Triangle" -msgstr "" +msgstr "Vanlig Triangel" #. BUJ28 #: Effects.xcu @@ -14274,7 +14274,7 @@ "Label\n" "value.text" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikalt" #. Q4FZd #: Effects.xcu @@ -14284,7 +14284,7 @@ "Label\n" "value.text" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. YfNF9 #: Effects.xcu @@ -14414,7 +14414,7 @@ "Label\n" "value.text" msgid "Horizontal in" -msgstr "Vannrett inn" +msgstr "Horisontalt inn" #. w8aC7 #: Effects.xcu @@ -14424,7 +14424,7 @@ "Label\n" "value.text" msgid "Horizontal out" -msgstr "Vannrett ut" +msgstr "Horisontalt ut" #. xKkoL #: Effects.xcu @@ -14434,7 +14434,7 @@ "Label\n" "value.text" msgid "Vertical in" -msgstr "Loddrett inn" +msgstr "Vertikalt inn" #. eD7dT #: Effects.xcu @@ -14444,7 +14444,7 @@ "Label\n" "value.text" msgid "Vertical out" -msgstr "Loddrett ut" +msgstr "Vertikalt ut" #. Ey6bV #: Effects.xcu @@ -14624,7 +14624,7 @@ "Label\n" "value.text" msgid "Clockwise" -msgstr "Med klokka" +msgstr "Med klokken" #. ZDCXS #: Effects.xcu @@ -14634,7 +14634,7 @@ "Label\n" "value.text" msgid "Counter-clockwise" -msgstr "Mot klokka" +msgstr "Mot klokken" #. JuVNN #: Effects.xcu @@ -14654,7 +14654,7 @@ "Label\n" "value.text" msgid "From bottom-right horizontal" -msgstr "Nede fra høyre vannrett" +msgstr "Nede fra høyre horisontalt" #. 5ojSW #: Effects.xcu @@ -14664,7 +14664,7 @@ "Label\n" "value.text" msgid "From bottom-right vertical" -msgstr "Nede fra høyre loddrett" +msgstr "Nede fra høyre vertikalt" #. id9hr #: Effects.xcu @@ -14674,7 +14674,7 @@ "Label\n" "value.text" msgid "From center clockwise" -msgstr "Fra midten med klokka" +msgstr "Fra midten med klokken" #. iCXKC #: Effects.xcu @@ -14684,7 +14684,7 @@ "Label\n" "value.text" msgid "From center counter-clockwise" -msgstr "Fra midten mot klokka" +msgstr "Fra midten mot klokken" #. L9D8k #: Effects.xcu @@ -14694,7 +14694,7 @@ "Label\n" "value.text" msgid "From top-left clockwise" -msgstr "Oppe fra venstre med klokka" +msgstr "Oppe fra venstre med klokken" #. Fdwkc #: Effects.xcu @@ -14704,7 +14704,7 @@ "Label\n" "value.text" msgid "From top-left horizontal" -msgstr "Oppe fra venstre vannrett" +msgstr "Oppe fra venstre horisontalt" #. aBHFx #: Effects.xcu @@ -14714,7 +14714,7 @@ "Label\n" "value.text" msgid "From top-left vertical" -msgstr "Oppe fra venstre loddrett" +msgstr "Oppe fra venstre vertikalt" #. 8as8E #: Effects.xcu @@ -14724,7 +14724,7 @@ "Label\n" "value.text" msgid "From top-right counter-clockwise" -msgstr "Oppe fra høyre mot klokka" +msgstr "Oppe fra høyre mot klokken" #. Vtd7V #: Effects.xcu @@ -15264,7 +15264,7 @@ "Label\n" "value.text" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikalt" #. t5YNL #: Effects.xcu @@ -15274,7 +15274,7 @@ "Label\n" "value.text" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. RmYbb #: Effects.xcu @@ -15404,7 +15404,7 @@ "Label\n" "value.text" msgid "Horizontal In" -msgstr "Vannrett inn" +msgstr "Horisontalt inn" #. Bpr6S #: Effects.xcu @@ -15414,7 +15414,7 @@ "Label\n" "value.text" msgid "Horizontal Out" -msgstr "Vannrett ut" +msgstr "Horisontalt ut" #. DMEyG #: Effects.xcu @@ -15424,7 +15424,7 @@ "Label\n" "value.text" msgid "Vertical In" -msgstr "Loddrett inn" +msgstr "Vertikalt inn" #. yot78 #: Effects.xcu @@ -15434,7 +15434,7 @@ "Label\n" "value.text" msgid "Vertical Out" -msgstr "Loddrett ut" +msgstr "Vertikalt ut" #. UXKC7 #: Effects.xcu @@ -15444,7 +15444,7 @@ "Label\n" "value.text" msgid "Clockwise 1 Spoke" -msgstr "Med klokka 1 spile" +msgstr "Med klokken 1 spile" #. DBeid #: Effects.xcu @@ -15454,7 +15454,7 @@ "Label\n" "value.text" msgid "Clockwise 2 Spokes" -msgstr "Med klokka 2 spiler" +msgstr "Med klokken 2 spiler" #. tqfwa #: Effects.xcu @@ -15464,7 +15464,7 @@ "Label\n" "value.text" msgid "Clockwise 3 Spokes" -msgstr "Med klokka 3 spiler" +msgstr "Med klokken 3 spiler" #. J6dQT #: Effects.xcu @@ -15474,7 +15474,7 @@ "Label\n" "value.text" msgid "Clockwise 4 Spokes" -msgstr "Med klokka 4 spiler" +msgstr "Med klokken 4 spiler" #. itXUE #: Effects.xcu @@ -15484,7 +15484,7 @@ "Label\n" "value.text" msgid "Clockwise 8 Spokes" -msgstr "Med klokka 8 spiler" +msgstr "Med klokken 8 spiler" #. 6UJix #: Effects.xcu @@ -15494,7 +15494,7 @@ "Label\n" "value.text" msgid "Counterclockwise 1 Spoke" -msgstr "Mot klokka 1 spile" +msgstr "Mot klokken 1 spile" #. eS9ZY #: Effects.xcu @@ -15504,7 +15504,7 @@ "Label\n" "value.text" msgid "Counterclockwise 2 Spokes" -msgstr "Mot klokka 2 spiler" +msgstr "Mot klokken 2 spiler" #. vBA4C #: Effects.xcu @@ -15514,7 +15514,7 @@ "Label\n" "value.text" msgid "Counterclockwise 3 Spokes" -msgstr "Mot klokka 3 spiler" +msgstr "Mot klokken 3 spiler" #. EwATi #: Effects.xcu @@ -15524,7 +15524,7 @@ "Label\n" "value.text" msgid "Counterclockwise 4 Spokes" -msgstr "Mot klokka 4 spiler" +msgstr "Mot klokken 4 spiler" #. FRtBZ #: Effects.xcu @@ -15534,7 +15534,7 @@ "Label\n" "value.text" msgid "Counterclockwise 8 Spokes" -msgstr "Mot klokka 8 spiler" +msgstr "Mot klokken 8 spiler" #. vqCne #: Effects.xcu @@ -15994,7 +15994,7 @@ "Label\n" "value.text" msgid "Show Comme~nts" -msgstr "Vis ~merknader" +msgstr "Vis merknader" #. 2xzCY #: GenericCommands.xcu @@ -16014,7 +16014,7 @@ "Label\n" "value.text" msgid "~Replace with" -msgstr "~Erstatt _med" +msgstr "Erstatt med" #. hSijp #: GenericCommands.xcu @@ -17814,7 +17814,7 @@ "Label\n" "value.text" msgid "~Zoom..." -msgstr "Sk~alering …" +msgstr "Skalering …" #. xTbFE #: GenericCommands.xcu @@ -17874,7 +17874,7 @@ "Label\n" "value.text" msgid "~Text Box" -msgstr "~Tekstfelt" +msgstr "Tekstfelt" #. YXLUm #: GenericCommands.xcu @@ -18164,7 +18164,7 @@ "Label\n" "value.text" msgid "%PRODUCTNAME ~Help" -msgstr "~Hjelp for %PRODUCTNAME" +msgstr "Hjelp for %PRODUCTNAME" #. PpNqG #: GenericCommands.xcu @@ -18244,7 +18244,7 @@ "Label\n" "value.text" msgid "Close Find Bar" -msgstr "Lukk søkelinja" +msgstr "Lukk søkelinjen" #. T9Xoo #: GenericCommands.xcu @@ -18264,7 +18264,7 @@ "Label\n" "value.text" msgid "~Find..." -msgstr "~Finn …" +msgstr "Finn …" #. 3BAcD #: GenericCommands.xcu @@ -18284,7 +18284,7 @@ "Label\n" "value.text" msgid "~Extended Tips" -msgstr "~Utvidede tips" +msgstr "Utvidede tips" #. CdRTm #: GenericCommands.xcu @@ -18514,7 +18514,7 @@ "Label\n" "value.text" msgid "Position and Si~ze..." -msgstr "~Posisjon og størrelse …" +msgstr "Posisjon og størrelse …" #. czgXA #: GenericCommands.xcu @@ -18604,7 +18604,7 @@ "Label\n" "value.text" msgid "~Options..." -msgstr "~Innstillinger …" +msgstr "Innstillinger …" #. DAyDw #: GenericCommands.xcu @@ -18924,7 +18924,7 @@ "Label\n" "value.text" msgid "~Bibliography Database" -msgstr "~Litteraturdatabase" +msgstr "Litteraturdatabase" #. cckzf #: GenericCommands.xcu @@ -18954,7 +18954,7 @@ "Label\n" "value.text" msgid "~Data Sources..." -msgstr "~Datakilder …" +msgstr "Datakilder …" #. GEk5Z #: GenericCommands.xcu @@ -19014,7 +19014,7 @@ "ContextLabel\n" "value.text" msgid "~Replace..." -msgstr "~Bytt ut …" +msgstr "Bytt ut …" #. 8ya8G #: GenericCommands.xcu @@ -19064,7 +19064,7 @@ "Label\n" "value.text" msgid "~Original Size" -msgstr "~Orginal størrelse" +msgstr "Orginal størrelse" #. BK8Gm #: GenericCommands.xcu @@ -19144,7 +19144,7 @@ "Label\n" "value.text" msgid "~Open..." -msgstr "~Åpne …" +msgstr "Åpne …" #. PxfoC #: GenericCommands.xcu @@ -19224,7 +19224,7 @@ "Label\n" "value.text" msgid "Save ~As..." -msgstr "Lagre ~som …" +msgstr "Lagre som …" #. NSGwC #: GenericCommands.xcu @@ -19276,7 +19276,7 @@ "Label\n" "value.text" msgid "~Close" -msgstr "~Lukk" +msgstr "Lukk" #. Pm5wu #: GenericCommands.xcu @@ -19286,7 +19286,7 @@ "Label\n" "value.text" msgid "~Print..." -msgstr "Skriv ~ut …" +msgstr "Skriv ut …" #. c4qkT #: GenericCommands.xcu @@ -19306,7 +19306,7 @@ "Label\n" "value.text" msgid "~Save" -msgstr "La~gre" +msgstr "Lagre" #. aNGEA #: GenericCommands.xcu @@ -19416,7 +19416,7 @@ "Label\n" "value.text" msgid "Comme~nt" -msgstr "~Merknad" +msgstr "Merknad" #. DS3DK #: GenericCommands.xcu @@ -19466,7 +19466,7 @@ "Label\n" "value.text" msgid "~Rotate" -msgstr "~Roter" +msgstr "Roter" #. hwJBh #: GenericCommands.xcu @@ -19476,7 +19476,7 @@ "Label\n" "value.text" msgid "~Left" -msgstr "~Venstre" +msgstr "Venstre" #. GMmgk #: GenericCommands.xcu @@ -19486,7 +19486,7 @@ "Label\n" "value.text" msgid "~Centered" -msgstr "~Midtstilt" +msgstr "Midtstilt" #. i9ib2 #: GenericCommands.xcu @@ -19496,7 +19496,7 @@ "Label\n" "value.text" msgid "~Right" -msgstr "~Høyre" +msgstr "Høyre" #. AfdQE #: GenericCommands.xcu @@ -19506,7 +19506,7 @@ "Label\n" "value.text" msgid "~Top" -msgstr "Øv~erst" +msgstr "Øverst" #. zA3nR #: GenericCommands.xcu @@ -19516,7 +19516,7 @@ "Label\n" "value.text" msgid "C~enter" -msgstr "M~idt på" +msgstr "Midt på" #. EizAp #: GenericCommands.xcu @@ -19526,7 +19526,7 @@ "Label\n" "value.text" msgid "~Bottom" -msgstr "~Nederst" +msgstr "Nederst" #. V5niq #: GenericCommands.xcu @@ -19536,7 +19536,7 @@ "Label\n" "value.text" msgid "Vertical Text" -msgstr "Loddrett tekst" +msgstr "Vertikal Tekst" #. BDccV #: GenericCommands.xcu @@ -19556,7 +19556,7 @@ "Label\n" "value.text" msgid "Vertical Callouts" -msgstr "Loddrette snakkebobler" +msgstr "Vertikale Snakkebobler" #. 2GGwK #: GenericCommands.xcu @@ -19586,7 +19586,7 @@ "Label\n" "value.text" msgid "~Chart..." -msgstr "~Diagram …" +msgstr "Diagram …" #. fAncE #: GenericCommands.xcu @@ -19696,7 +19696,7 @@ "Label\n" "value.text" msgid "A~rea..." -msgstr "~Område …" +msgstr "Område …" #. H7kng #: GenericCommands.xcu @@ -19706,7 +19706,7 @@ "Label\n" "value.text" msgid "L~ine..." -msgstr "L~inje …" +msgstr "Linje …" #. cAVAA #: GenericCommands.xcu @@ -19776,7 +19776,7 @@ "Label\n" "value.text" msgid "~Sentence case" -msgstr "~Setningstørrelse" +msgstr "Setningstørrelse" #. BBSDG #: GenericCommands.xcu @@ -19786,7 +19786,7 @@ "Label\n" "value.text" msgid "~lowercase" -msgstr "~små bokstaver" +msgstr "små bokstaver" #. CDDzb #: GenericCommands.xcu @@ -19796,7 +19796,7 @@ "Label\n" "value.text" msgid "~UPPERCASE" -msgstr "~Store bokstaver" +msgstr "STORE BOKSTAVER" #. m4BD7 #: GenericCommands.xcu @@ -19806,7 +19806,7 @@ "Label\n" "value.text" msgid "~Capitalize Every Word" -msgstr "~Stor forbokstav på hvert ord" +msgstr "Stor forbokstav på hvert ord" #. JzAce #: GenericCommands.xcu @@ -19816,7 +19816,7 @@ "Label\n" "value.text" msgid "~tOGGLE cASE" -msgstr "~Slå bokstavstørrelse av/på" +msgstr "Slå bokstavstørrelse av/på" #. akUWc #: GenericCommands.xcu @@ -19846,7 +19846,7 @@ "Label\n" "value.text" msgid "H~alf-width" -msgstr "~Halv bredde" +msgstr "Halv bredde" #. JKFBx #: GenericCommands.xcu @@ -19916,7 +19916,7 @@ "Label\n" "value.text" msgid "~Hiragana" -msgstr "H~iragana" +msgstr "Hiragana" #. CbRAN #: GenericCommands.xcu @@ -19946,7 +19946,7 @@ "Label\n" "value.text" msgid "~Katakana" -msgstr "~Katakana" +msgstr "Katakana" #. uTkGG #: GenericCommands.xcu @@ -19956,7 +19956,7 @@ "Label\n" "value.text" msgid "Propert~ies..." -msgstr "Egenska~per …" +msgstr "Egenskaper …" #. jKBdE #: GenericCommands.xcu @@ -19986,7 +19986,7 @@ "Label\n" "value.text" msgid "~New" -msgstr "~Ny" +msgstr "Ny" #. E8Ykn #: GenericCommands.xcu @@ -20096,7 +20096,7 @@ "Label\n" "value.text" msgid "~Bullets and Numbering..." -msgstr "~Punkter og nummerering …" +msgstr "Punkter og nummerering …" #. NjgE2 #: GenericCommands.xcu @@ -20156,7 +20156,7 @@ "Label\n" "value.text" msgid "~Web View" -msgstr "~Nettsidevising" +msgstr "Nettsidevising" #. esbH8 #: GenericCommands.xcu @@ -20166,7 +20166,7 @@ "ContextLabel\n" "value.text" msgid "~Web" -msgstr "~Nett" +msgstr "Nett" #. EGGJz #: GenericCommands.xcu @@ -20186,7 +20186,7 @@ "Label\n" "value.text" msgid "Horizontal Line" -msgstr "Vannrett linje" +msgstr "Horisontal linje" #. mzZFQ #: GenericCommands.xcu @@ -20206,7 +20206,7 @@ "Label\n" "value.text" msgid "Vertical Line" -msgstr "Loddrett linje" +msgstr "Vertikal linje" #. PnADd #: GenericCommands.xcu @@ -20486,7 +20486,7 @@ "Label\n" "value.text" msgid "~OLE Object..." -msgstr "~OLE-objekt …" +msgstr "OLE-objekt …" #. 6B9a2 #: GenericCommands.xcu @@ -20496,7 +20496,7 @@ "Label\n" "value.text" msgid "Float~ing Frame..." -msgstr "~Flytende ramme …" +msgstr "Flytende ramme …" #. NMhAC #: GenericCommands.xcu @@ -20506,7 +20506,7 @@ "Label\n" "value.text" msgid "~Enter Group" -msgstr "Gå ~inn i gruppe" +msgstr "Gå inn i gruppe" #. CF5Aj #: GenericCommands.xcu @@ -20526,7 +20526,7 @@ "Label\n" "value.text" msgid "~Hide Details" -msgstr "~Skjul detaljer" +msgstr "Skjul detaljer" #. gQ7DC #: GenericCommands.xcu @@ -20546,7 +20546,7 @@ "Label\n" "value.text" msgid "~Show Details" -msgstr "~Vis detaljer" +msgstr "Vis detaljer" #. fe5CC #: GenericCommands.xcu @@ -20576,7 +20576,7 @@ "Label\n" "value.text" msgid "~Group..." -msgstr "~Grupper …" +msgstr "Grupper …" #. nEL3F #: GenericCommands.xcu @@ -20596,7 +20596,7 @@ "Label\n" "value.text" msgid "~Ungroup..." -msgstr "~Løs opp gruppe …" +msgstr "Løs opp gruppe …" #. emKjD #: GenericCommands.xcu @@ -20716,7 +20716,7 @@ "Label\n" "value.text" msgid "Ob~ject" -msgstr "Ob~jekt" +msgstr "Objekt" #. WQPXj #: GenericCommands.xcu @@ -20736,7 +20736,7 @@ "Label\n" "value.text" msgid "~XML Filter Settings..." -msgstr "Innstillinger for ~XML-filter …" +msgstr "Innstillinger for XML-filter …" #. mPdwa #: GenericCommands.xcu @@ -20806,7 +20806,7 @@ "Label\n" "value.text" msgid "Horizontal Scroll Bar" -msgstr "Vannrett rullefelt" +msgstr "Horisontalt rullefelt" #. ag3Lj #: GenericCommands.xcu @@ -20816,7 +20816,7 @@ "Label\n" "value.text" msgid "Vertical Scroll Bar" -msgstr "Loddrett rullefelt" +msgstr "Vertikalt rullefelt" #. F4eHS #: GenericCommands.xcu @@ -20916,7 +20916,7 @@ "Label\n" "value.text" msgid "Sp~readsheet" -msgstr "R~egneark" +msgstr "Regneark" #. XeaYs #: GenericCommands.xcu @@ -20956,7 +20956,7 @@ "Label\n" "value.text" msgid "~Wizards" -msgstr "~Veivisere" +msgstr "Veivisere" #. TWpTL #: GenericCommands.xcu @@ -20976,7 +20976,7 @@ "Label\n" "value.text" msgid "Show All Levels" -msgstr "Vis alle nivå" +msgstr "Vis alle nivåer" #. ihnRk #: GenericCommands.xcu @@ -20996,7 +20996,7 @@ "Label\n" "value.text" msgid "~New Window" -msgstr "~Nytt vindu" +msgstr "Nytt vindu" #. tEa3o #: GenericCommands.xcu @@ -21006,7 +21006,7 @@ "Label\n" "value.text" msgid "~Remove Outline" -msgstr "~Fjern omriss" +msgstr "Fjern omriss" #. pnDUB #: GenericCommands.xcu @@ -21056,7 +21056,7 @@ "Label\n" "value.text" msgid "F~ull Screen" -msgstr "~Fullskjerm" +msgstr "Fullskjerm" #. GQ5D7 #: GenericCommands.xcu @@ -21066,7 +21066,7 @@ "Label\n" "value.text" msgid "~Frame" -msgstr "~Ramme" +msgstr "Ramme" #. RHenb #: GenericCommands.xcu @@ -21086,7 +21086,7 @@ "Label\n" "value.text" msgid "~Image" -msgstr "~Bilde" +msgstr "Bilde" #. MaZLP #: GenericCommands.xcu @@ -21096,7 +21096,7 @@ "Label\n" "value.text" msgid "~Object and Shape" -msgstr "~Objekt og form" +msgstr "Objekt og form" #. zFyfF #: GenericCommands.xcu @@ -21106,7 +21106,7 @@ "Label\n" "value.text" msgid "~Filter" -msgstr "~Filter" +msgstr "Filter" #. RqEKi #: GenericCommands.xcu @@ -21126,7 +21126,7 @@ "Label\n" "value.text" msgid "~Spacing" -msgstr "~Mellomrom" +msgstr "Mellomrom" #. wYNMH #: GenericCommands.xcu @@ -21176,7 +21176,7 @@ "Label\n" "value.text" msgid "~Image..." -msgstr "~Bilde …" +msgstr "Bilde …" #. KjduA #: GenericCommands.xcu @@ -21226,7 +21226,7 @@ "Label\n" "value.text" msgid "~Spelling..." -msgstr "~Stavekontroll …" +msgstr "Stavekontroll …" #. zsXN6 #: GenericCommands.xcu @@ -21246,7 +21246,7 @@ "Label\n" "value.text" msgid "~Recheck Document..." -msgstr "~Sjekk dokumentet om igjen …" +msgstr "Sjekk dokumentet om igjen …" #. uBsma #: GenericCommands.xcu @@ -21306,7 +21306,7 @@ "Label\n" "value.text" msgid "~Spelling..." -msgstr "~Stavekontroll …" +msgstr "Stavekontroll …" #. LYqTn #: GenericCommands.xcu @@ -21336,7 +21336,7 @@ "Label\n" "value.text" msgid "~Shape" -msgstr "~Form" +msgstr "Form" #. bEBap #: GenericCommands.xcu @@ -21346,7 +21346,7 @@ "Label\n" "value.text" msgid "~Line" -msgstr "~Linje" +msgstr "Linje" #. ESaN2 #: GenericCommands.xcu @@ -21356,7 +21356,7 @@ "Label\n" "value.text" msgid "~Rulers" -msgstr "~Linjaler" +msgstr "Linjaler" #. aYEfp #: GenericCommands.xcu @@ -21366,7 +21366,7 @@ "Label\n" "value.text" msgid "~Scrollbars" -msgstr "~Rullefelt" +msgstr "Rullefelt" #. YASnq #: GenericCommands.xcu @@ -21376,7 +21376,7 @@ "Label\n" "value.text" msgid "~Sidebar" -msgstr "~Sidestolpe" +msgstr "Sidestolpe" #. B9A4B #: GenericCommands.xcu @@ -21396,7 +21396,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "S~ynonymordbok …" +msgstr "Synonymordbok …" #. XBzpL #: GenericCommands.xcu @@ -21406,7 +21406,7 @@ "Label\n" "value.text" msgid "~Text Box" -msgstr "~Tekstfelt" +msgstr "Tekstfelt" #. ntvU8 #: GenericCommands.xcu @@ -21436,7 +21436,7 @@ "Label\n" "value.text" msgid "F~ontwork" -msgstr "~Skriftforming" +msgstr "Skriftutforming" #. AiLcR #: GenericCommands.xcu @@ -21486,7 +21486,7 @@ "Label\n" "value.text" msgid "Split Frame Horizontally" -msgstr "Del ramme vannrett" +msgstr "Del Ramme Horisontalt" #. kkTHb #: GenericCommands.xcu @@ -21496,7 +21496,7 @@ "Label\n" "value.text" msgid "Split Frame Vertically" -msgstr "Del ramme loddrett" +msgstr "Del Ramme Vertikalt" #. 63whQ #: GenericCommands.xcu @@ -21506,7 +21506,7 @@ "Label\n" "value.text" msgid "Split FrameSet Horizontally" -msgstr "Del rammesett vannrett" +msgstr "Del Rammesett Horisontalt" #. rnjzF #: GenericCommands.xcu @@ -21516,7 +21516,7 @@ "Label\n" "value.text" msgid "Split FrameSet Vertically" -msgstr "Del rammesett loddrett" +msgstr "Del Rammesett Vertikalt" #. yFCL7 #: GenericCommands.xcu @@ -21586,7 +21586,7 @@ "Label\n" "value.text" msgid "~Bring to Front" -msgstr "Flytt f~remst" +msgstr "Flytt fremst" #. 7bpa4 #: GenericCommands.xcu @@ -21596,7 +21596,7 @@ "Label\n" "value.text" msgid "~Send to Back" -msgstr "Flytt b~akerst" +msgstr "Flytt bakerst" #. opXzM #: GenericCommands.xcu @@ -21606,7 +21606,7 @@ "Label\n" "value.text" msgid "HT~ML Source" -msgstr "HT~ML-kilde" +msgstr "HTML-kilde" #. UKg78 #: GenericCommands.xcu @@ -21616,7 +21616,7 @@ "Label\n" "value.text" msgid "~Hyperlink..." -msgstr "~Hyperlenke …" +msgstr "Hyperlenke …" #. TE7TG #: GenericCommands.xcu @@ -21636,7 +21636,7 @@ "Label\n" "value.text" msgid "~Merge" -msgstr "~Slå sammen" +msgstr "Slå sammen" #. 2gYcx #: GenericCommands.xcu @@ -21646,7 +21646,7 @@ "Label\n" "value.text" msgid "~Subtract" -msgstr "~Trekk fra" +msgstr "Trekk fra" #. aJNVZ #: GenericCommands.xcu @@ -21686,7 +21686,7 @@ "Label\n" "value.text" msgid "I~ntersect" -msgstr "S~nitt" +msgstr "Snitt" #. MHhAC #: GenericCommands.xcu @@ -21716,7 +21716,7 @@ "Label\n" "value.text" msgid "P~aragraph..." -msgstr "~Avsnitt …" +msgstr "Avsnitt …" #. 8htud #: GenericCommands.xcu @@ -21756,7 +21756,7 @@ "Label\n" "value.text" msgid "~Undo" -msgstr "~Angre" +msgstr "Angre" #. FhmGD #: GenericCommands.xcu @@ -21816,7 +21816,7 @@ "Label\n" "value.text" msgid "~Cut" -msgstr "~Kutt" +msgstr "Kutt" #. 2Y2sv #: GenericCommands.xcu @@ -21836,7 +21836,7 @@ "Label\n" "value.text" msgid "~Paste" -msgstr "~Lim inn" +msgstr "Lim inn" #. Z5gHF #: GenericCommands.xcu @@ -21856,7 +21856,7 @@ "PopupLabel\n" "value.text" msgid "~Unformatted Text" -msgstr "~Uformatert tekst" +msgstr "Uformatert tekst" #. nWivr #: GenericCommands.xcu @@ -21866,7 +21866,7 @@ "Label\n" "value.text" msgid "Delete C~ontents..." -msgstr "Slett inn~hold …" +msgstr "Slett innhold …" #. TBAWe #: GenericCommands.xcu @@ -21916,7 +21916,7 @@ "Label\n" "value.text" msgid "~Select Source..." -msgstr "~Velg kilde …" +msgstr "Velg kilde …" #. 2fVit #: GenericCommands.xcu @@ -21926,7 +21926,7 @@ "Label\n" "value.text" msgid "~Request..." -msgstr "~Forespørsel …" +msgstr "Forespørsel …" #. CWnNe #: GenericCommands.xcu @@ -21936,7 +21936,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "~Merk alt" +msgstr "Merk alt" #. hZnKV #: GenericCommands.xcu @@ -21946,7 +21946,7 @@ "Label\n" "value.text" msgid "~Edit Contour..." -msgstr "~Rediger omriss …" +msgstr "Rediger omriss …" #. 8NPaD #: GenericCommands.xcu @@ -21956,7 +21956,7 @@ "Label\n" "value.text" msgid "Select ~All" -msgstr "~Merk alt" +msgstr "Merk alt" #. qxfRr #: GenericCommands.xcu @@ -22026,7 +22026,7 @@ "Label\n" "value.text" msgid "Color ~Replacer" -msgstr "~Fargeerstatter" +msgstr "Fargeerstatter" #. j7ABH #: GenericCommands.xcu @@ -22056,7 +22056,7 @@ "Label\n" "value.text" msgid "To File End" -msgstr "Til slutten av fila" +msgstr "Til slutten av filen" #. wKTWE #: GenericCommands.xcu @@ -22066,7 +22066,7 @@ "Label\n" "value.text" msgid "To File Begin" -msgstr "Til starten av fila" +msgstr "Til starten av filen" #. FdWxo #: GenericCommands.xcu @@ -22096,7 +22096,7 @@ "Label\n" "value.text" msgid "Na~vigator" -msgstr "~Dokumentstruktur" +msgstr "Dokumentstruktur" #. CMEjB #: GenericCommands.xcu @@ -22156,7 +22156,7 @@ "Label\n" "value.text" msgid "Fit to Frame" -msgstr "Tilpass til ramma" +msgstr "Tilpass til rammen" #. puNNx #: GenericCommands.xcu @@ -22286,7 +22286,7 @@ "Label\n" "value.text" msgid "Select to File Begin" -msgstr "Merk til starten av fila" +msgstr "Merk til starten av filen" #. cBcqx #: GenericCommands.xcu @@ -22316,7 +22316,7 @@ "Label\n" "value.text" msgid "Select to File End" -msgstr "Merk til slutten av fila" +msgstr "Merk til slutten av filen" #. ZPCGE #: GenericCommands.xcu @@ -22516,7 +22516,7 @@ "ContextLabel\n" "value.text" msgid "~Display Grid" -msgstr "~Vis rutenett" +msgstr "Vis rutenett" #. fHgxf #: GenericCommands.xcu @@ -22556,7 +22556,7 @@ "Label\n" "value.text" msgid "~Color Bar" -msgstr "F~argelinje" +msgstr "Fargelinje" #. Ct7Bu #: GenericCommands.xcu @@ -22566,7 +22566,7 @@ "Label\n" "value.text" msgid "~AutoCorrect Options..." -msgstr "~Autorettingsvalg …" +msgstr "Autorettingsvalg …" #. R9Lcg #: GenericCommands.xcu @@ -22576,7 +22576,7 @@ "Label\n" "value.text" msgid "AutoPilot: Agenda" -msgstr "Veiviser: Møteplan" +msgstr "Veiviser: Agenda" #. wUCAN #: GenericCommands.xcu @@ -22706,7 +22706,7 @@ "Label\n" "value.text" msgid "Flip Horizontally" -msgstr "Speil vannrett" +msgstr "Flipp Horisontalt" #. fvKEC #: GenericCommands.xcu @@ -22716,7 +22716,7 @@ "Label\n" "value.text" msgid "Flip Vertically" -msgstr "Speil loddrett" +msgstr "Flipp Vertikalt" #. LfGBn #: GenericCommands.xcu @@ -22806,7 +22806,7 @@ "Label\n" "value.text" msgid "Expor~t..." -msgstr "E~ksporter …" +msgstr "Eksporter …" #. oQB7E #: GenericCommands.xcu @@ -22826,7 +22826,7 @@ "Label\n" "value.text" msgid "Navigation Bar Visible" -msgstr "Vis navigasjonslinja" +msgstr "Vis navigasjonslinjen" #. ferue #: GenericCommands.xcu @@ -22836,7 +22836,7 @@ "Label\n" "value.text" msgid "~Group" -msgstr "Gr~upper" +msgstr "Grupper" #. 5iDGS #: GenericCommands.xcu @@ -22846,7 +22846,7 @@ "Label\n" "value.text" msgid "~Ungroup" -msgstr "~Løs opp gruppe" +msgstr "Løs opp gruppe" #. aAbAV #: GenericCommands.xcu @@ -22866,7 +22866,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "Fjern ~direkte formatering" +msgstr "Fjern direkte formatering" #. knBUW #: GenericCommands.xcu @@ -23136,7 +23136,7 @@ "ContextLabel\n" "value.text" msgid "~Automatic Spell Checking" -msgstr "~Automatisk stavekontroll" +msgstr "Automatisk stavekontroll" #. aZ3bA #: GenericCommands.xcu @@ -23166,7 +23166,7 @@ "Label\n" "value.text" msgid "~Address Book Source..." -msgstr "Kilde for ~adressebok …" +msgstr "Kilde for adressebok …" #. ZfpKx #: GenericCommands.xcu @@ -23276,7 +23276,7 @@ "Label\n" "value.text" msgid "~Data Sources" -msgstr "~Datakilder" +msgstr "Datakilder" #. o7cUE #: GenericCommands.xcu @@ -23346,7 +23346,7 @@ "ContextLabel\n" "value.text" msgid "~Export as PDF..." -msgstr "~Eksporter som PDF" +msgstr "Eksporter som PDF" #. FnRm4 #: GenericCommands.xcu @@ -23546,7 +23546,7 @@ "Label\n" "value.text" msgid "~Customize..." -msgstr "~Tilpass …" +msgstr "Tilpass …" #. vC3Hn #: GenericCommands.xcu @@ -23556,7 +23556,7 @@ "Label\n" "value.text" msgid "~Object Bar" -msgstr "~Objektlinje" +msgstr "Objektlinje" #. ycsFJ #: GenericCommands.xcu @@ -23566,7 +23566,7 @@ "Label\n" "value.text" msgid "Customi~ze..." -msgstr "~Tilpass …" +msgstr "Tilpass …" #. 9W7qD #: GenericCommands.xcu @@ -23576,7 +23576,7 @@ "Label\n" "value.text" msgid "Main ~Toolbar" -msgstr "Hoved~verktøylinje" +msgstr "Hovedverktøylinje" #. ExkAA #: GenericCommands.xcu @@ -23586,7 +23586,7 @@ "Label\n" "value.text" msgid "~Function Bar" -msgstr "~Funksjonslinje" +msgstr "Funksjonslinje" #. u2sU2 #: GenericCommands.xcu @@ -23596,7 +23596,7 @@ "Label\n" "value.text" msgid "Optio~n Bar" -msgstr "~Innstillingslinje" +msgstr "Innstillingslinje" #. EoTCn #: GenericCommands.xcu @@ -23696,7 +23696,7 @@ "Label\n" "value.text" msgid "Status ~Bar" -msgstr "~Statuslinje" +msgstr "Statuslinje" #. Gj4dU #: GenericCommands.xcu @@ -23716,7 +23716,7 @@ "Label\n" "value.text" msgid "~Presentation" -msgstr "~Presentasjon" +msgstr "Presentasjon" #. p7Jow #: GenericCommands.xcu @@ -23826,7 +23826,7 @@ "Label\n" "value.text" msgid "Organize ~Dialogs..." -msgstr "Organiser ~dialogvinduer …" +msgstr "Organiser dialogvinduer …" #. jjjAC #: GenericCommands.xcu @@ -23836,7 +23836,7 @@ "Label\n" "value.text" msgid "~Organize Macros" -msgstr "Organiser ~makroer" +msgstr "Organiser makroer" #. yGrMV #: GenericCommands.xcu @@ -23846,7 +23846,7 @@ "Label\n" "value.text" msgid "R~un Macro..." -msgstr "~Kjør makro …" +msgstr "Kjør makro …" #. h7oCG #: GenericCommands.xcu @@ -23866,7 +23866,7 @@ "ContextLabel\n" "value.text" msgid "~Gallery" -msgstr "~Galleri" +msgstr "Galleri" #. EUM84 #: GenericCommands.xcu @@ -24256,7 +24256,7 @@ "Label\n" "value.text" msgid "~3D Effects" -msgstr "~3D-effekter" +msgstr "3D-effekter" #. wMrHc #: GenericCommands.xcu @@ -24266,7 +24266,7 @@ "Label\n" "value.text" msgid "E~xit" -msgstr "~Avslutt" +msgstr "Avslutt" #. LD7CW #: GenericCommands.xcu @@ -24286,7 +24286,7 @@ "Label\n" "value.text" msgid "P~rinter Settings..." -msgstr "Skriver~oppsett …" +msgstr "Skriveroppsett …" #. tYpzy #: GenericCommands.xcu @@ -24296,7 +24296,7 @@ "Label\n" "value.text" msgid "Sa~ve All" -msgstr "Lag~re alle" +msgstr "Lagre alle" #. FEiQk #: GenericCommands.xcu @@ -24396,7 +24396,7 @@ "Label\n" "value.text" msgid "Print Pr~eview" -msgstr "F~orhåndsvisning av utskrift" +msgstr "Forhåndsvisning av utskrift" #. GM8zL #: GenericCommands.xcu @@ -25036,7 +25036,7 @@ "Label\n" "value.text" msgid "~Toolbars" -msgstr "~Verktøylinjer" +msgstr "Verktøylinjer" #. cCvZp #: GenericCommands.xcu @@ -25056,7 +25056,7 @@ "Label\n" "value.text" msgid "User ~Interface..." -msgstr "" +msgstr "Brukergrensesnitt" #. i8oSn #: GenericCommands.xcu @@ -25066,7 +25066,7 @@ "TooltipLabel\n" "value.text" msgid "Shows a dialog to select the user interface" -msgstr "" +msgstr "Viser en dialogboks for å velge brukergrensesnitt" #. uQVBR #: GenericCommands.xcu @@ -25076,7 +25076,7 @@ "Label\n" "value.text" msgid "~Toolbars" -msgstr "~Verktøylinjer" +msgstr "Verktøylinjer" #. 2DysH #: GenericCommands.xcu @@ -25106,7 +25106,7 @@ "Label\n" "value.text" msgid "~Extension Manager..." -msgstr "~Utvidelser …" +msgstr "Utvidelser …" #. JwAqG #: GenericCommands.xcu @@ -25116,7 +25116,7 @@ "Label\n" "value.text" msgid "Digital Signatu~res..." -msgstr "~Digitale signaturer …" +msgstr "Digitale signaturer …" #. CgPg6 #: GenericCommands.xcu @@ -25446,7 +25446,7 @@ "Label\n" "value.text" msgid "Paste ~Special" -msgstr "Lim inn ~utvalg" +msgstr "Lim inn utvalg" #. mzYoM #: GenericCommands.xcu @@ -25466,7 +25466,7 @@ "Label\n" "value.text" msgid "~Help" -msgstr "~Hjelp" +msgstr "Hjelp" #. RB5Ch #: GenericCommands.xcu @@ -25506,7 +25506,7 @@ "Label\n" "value.text" msgid "~File" -msgstr "~Fil" +msgstr "Fil" #. 6US8G #: GenericCommands.xcu @@ -25516,7 +25516,7 @@ "Label\n" "value.text" msgid "Alig~n Objects" -msgstr "" +msgstr "Juster objekter" #. VK2hz #: GenericCommands.xcu @@ -25526,7 +25526,7 @@ "Label\n" "value.text" msgid "Align Tex~t" -msgstr "" +msgstr "Juster tekst" #. y3E2U #: GenericCommands.xcu @@ -25536,7 +25536,7 @@ "Label\n" "value.text" msgid "~Shapes" -msgstr "~Former" +msgstr "Former" #. Mwu8A #: GenericCommands.xcu @@ -25556,7 +25556,7 @@ "Label\n" "value.text" msgid "C~haracter..." -msgstr "T~egn …" +msgstr "Tegn …" #. XGzGG #: GenericCommands.xcu @@ -25586,7 +25586,7 @@ "Label\n" "value.text" msgid "~Object" -msgstr "~Objekt" +msgstr "Objekt" #. SQ76T #: GenericCommands.xcu @@ -25596,7 +25596,7 @@ "Label\n" "value.text" msgid "~Chart" -msgstr "~Diagram" +msgstr "Diagram" #. fLGQG #: GenericCommands.xcu @@ -25606,7 +25606,7 @@ "Label\n" "value.text" msgid "~Edit" -msgstr "~Rediger" +msgstr "Rediger" #. aKjG2 #: GenericCommands.xcu @@ -25616,7 +25616,7 @@ "Label\n" "value.text" msgid "~Insert" -msgstr "Sett ~inn" +msgstr "Sett inn" #. 6Xdhu #: GenericCommands.xcu @@ -25636,7 +25636,7 @@ "Label\n" "value.text" msgid "Sen~d" -msgstr "S~end" +msgstr "Send" #. ayDHt #: GenericCommands.xcu @@ -25666,7 +25666,7 @@ "Label\n" "value.text" msgid "~Macros" -msgstr "~Makroer" +msgstr "Makroer" #. MwNhh #: GenericCommands.xcu @@ -25676,7 +25676,7 @@ "Label\n" "value.text" msgid "~Media" -msgstr "~Media" +msgstr "Media" #. KYtGJ #: GenericCommands.xcu @@ -25686,7 +25686,7 @@ "Label\n" "value.text" msgid "~Window" -msgstr "Vi~ndu" +msgstr "Vindu" #. uKLES #: GenericCommands.xcu @@ -25696,7 +25696,7 @@ "Label\n" "value.text" msgid "Track Chan~ges" -msgstr "~Spor endringer" +msgstr "Spor endringer" #. fsAAM #: GenericCommands.xcu @@ -25726,7 +25726,7 @@ "Label\n" "value.text" msgid "~Filter" -msgstr "~Filter" +msgstr "Filter" #. AthEh #: GenericCommands.xcu @@ -25736,7 +25736,7 @@ "Label\n" "value.text" msgid "~Tools" -msgstr "V~erktøy" +msgstr "Verktøy" #. sDSy9 #: GenericCommands.xcu @@ -25746,7 +25746,7 @@ "Label\n" "value.text" msgid "~Spellcheck" -msgstr "~Stavekontroll" +msgstr "Stavekontroll" #. DyFAo #: GenericCommands.xcu @@ -25766,7 +25766,7 @@ "Label\n" "value.text" msgid "~View" -msgstr "~Vis" +msgstr "Vis" #. iEu6j #: GenericCommands.xcu @@ -25776,7 +25776,7 @@ "Label\n" "value.text" msgid "~Toolbars" -msgstr "~Verktøylinjer" +msgstr "Verktøylinjer" #. GEh5R #: GenericCommands.xcu @@ -25806,7 +25806,7 @@ "Label\n" "value.text" msgid "~Change Case" -msgstr "~Små/store bokstaver" +msgstr "Små/store bokstaver" #. yQvDN #: GenericCommands.xcu @@ -25816,7 +25816,7 @@ "Label\n" "value.text" msgid "~Group" -msgstr "Gr~upper" +msgstr "Grupper" #. fMMop #: GenericCommands.xcu @@ -25826,7 +25826,7 @@ "Label\n" "value.text" msgid "A~rrange" -msgstr "~Still opp" +msgstr "Still opp" #. GFrfB #: GenericCommands.xcu @@ -25856,7 +25856,7 @@ "Label\n" "value.text" msgid "Rot~ate or Flip" -msgstr "~Roter eller speilvend" +msgstr "Roter eller speilvend" #. 5aTnd #: GenericCommands.xcu @@ -25946,7 +25946,7 @@ "Label\n" "value.text" msgid "~Color" -msgstr "~Farge" +msgstr "Farge" #. 4XG4T #: GenericCommands.xcu @@ -26426,7 +26426,7 @@ "Label\n" "value.text" msgid "~Distribution" -msgstr "" +msgstr "Distribusjon" #. 2HWrF #: GenericCommands.xcu @@ -26436,7 +26436,7 @@ "TooltipLabel\n" "value.text" msgid "Select at least three objects to distribute" -msgstr "" +msgstr "Velg minst tre objekter du vil distribuere" #. zEiFi #: GenericCommands.xcu @@ -26446,7 +26446,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Distribuer utvalg" #. vDkBA #: GenericCommands.xcu @@ -26456,7 +26456,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Left" -msgstr "" +msgstr "Distribuer horisontalt til venstre" #. gjrG6 #: GenericCommands.xcu @@ -26466,7 +26466,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Left" -msgstr "" +msgstr "Horisontalt til venstre" #. BBazW #: GenericCommands.xcu @@ -26476,7 +26476,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "Distribuer Horisontalt Senter" #. SqFTB #: GenericCommands.xcu @@ -26486,7 +26486,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "Horisontalt Senter" #. QXntz #: GenericCommands.xcu @@ -26496,7 +26496,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Spacing" -msgstr "" +msgstr "Distribuer horisontalt avstand" #. GQEXJ #: GenericCommands.xcu @@ -26506,7 +26506,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Spacing" -msgstr "" +msgstr "Horisontalt avstand" #. Smk23 #: GenericCommands.xcu @@ -26516,7 +26516,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Right" -msgstr "" +msgstr "Distribuer horisontalt Høyre" #. SDkHd #: GenericCommands.xcu @@ -26526,7 +26526,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Right" -msgstr "" +msgstr "Horisontalt Høyre" #. iJB7y #: GenericCommands.xcu @@ -26536,7 +26536,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Top" -msgstr "" +msgstr "Distribuer vertikalt Topp" #. 9wa7z #: GenericCommands.xcu @@ -26546,7 +26546,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Top" -msgstr "" +msgstr "Vertikalt Topp" #. FAkxM #: GenericCommands.xcu @@ -26556,7 +26556,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Center" -msgstr "" +msgstr "Distribuer vertikalt Senter" #. PaLDT #: GenericCommands.xcu @@ -26566,7 +26566,7 @@ "ContextLabel\n" "value.text" msgid "Vertically C~enter" -msgstr "" +msgstr "Vertikalt Senter" #. jwLqM #: GenericCommands.xcu @@ -26576,7 +26576,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Spacing" -msgstr "" +msgstr "Distribuer vertikalt Avstand" #. 2RAqA #: GenericCommands.xcu @@ -26586,7 +26586,7 @@ "ContextLabel\n" "value.text" msgid "Vertically S~pacing" -msgstr "" +msgstr "Vertikalt Avstand" #. ELgnZ #: GenericCommands.xcu @@ -26596,7 +26596,7 @@ "Label\n" "value.text" msgid "Distribute Vertically Bottom" -msgstr "" +msgstr "Distribuer vertikalt Nederst" #. rankC #: GenericCommands.xcu @@ -26606,7 +26606,7 @@ "ContextLabel\n" "value.text" msgid "Vertically ~Bottom" -msgstr "" +msgstr "Vertikalt Nederst" #. uaVMn #: ImpressWindowState.xcu @@ -27386,7 +27386,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "Distribuer Utvalg" #. tpAhh #: MathCommands.xcu @@ -27396,7 +27396,7 @@ "Label\n" "value.text" msgid "~Fonts..." -msgstr "Skrift~er …" +msgstr "Skrifter …" #. CCmea #: MathCommands.xcu @@ -27406,7 +27406,7 @@ "Label\n" "value.text" msgid "F~ont Size..." -msgstr "~Skriftstørrelse …" +msgstr "Skriftstørrelse …" #. wDDa6 #: MathCommands.xcu @@ -27416,7 +27416,7 @@ "Label\n" "value.text" msgid "~Spacing..." -msgstr "~Avstand …" +msgstr "Avstand …" #. 4bPPd #: MathCommands.xcu @@ -27426,7 +27426,7 @@ "Label\n" "value.text" msgid "A~lignment..." -msgstr "~Justering …" +msgstr "Justering …" #. skPdY #: MathCommands.xcu @@ -27436,7 +27436,7 @@ "Label\n" "value.text" msgid "~AutoUpdate Display" -msgstr "O~ppdater visninga automatisk" +msgstr "Oppdater visningen automatisk" #. VafA5 #: MathCommands.xcu @@ -27446,7 +27446,7 @@ "Label\n" "value.text" msgid "~Text Mode" -msgstr "~Tekstmodus" +msgstr "Tekstmodus" #. 7tFbB #: MathCommands.xcu @@ -27456,7 +27456,7 @@ "Label\n" "value.text" msgid "~Import Formula..." -msgstr "Importer ~formel …" +msgstr "Importer formel …" #. PqBP6 #: MathCommands.xcu @@ -27526,7 +27526,7 @@ "Label\n" "value.text" msgid "Ne~xt Error" -msgstr "N~este feil" +msgstr "Neste feil" #. QGWxj #: MathCommands.xcu @@ -27536,7 +27536,7 @@ "Label\n" "value.text" msgid "Pr~evious Error" -msgstr "Fo~rrige feil" +msgstr "Forrige feil" #. FEYFG #: MathCommands.xcu @@ -27546,7 +27546,7 @@ "Label\n" "value.text" msgid "~Next Marker" -msgstr "~Neste merke" +msgstr "Neste merke" #. AyL9u #: MathCommands.xcu @@ -27556,7 +27556,7 @@ "Label\n" "value.text" msgid "Previous ~Marker" -msgstr "~Forrige merke" +msgstr "Forrige merke" #. EoNeT #: MathCommands.xcu @@ -27566,7 +27566,7 @@ "Label\n" "value.text" msgid "~Symbols…" -msgstr "~Symboler..." +msgstr "Symboler…" #. hkxh2 #: MathCommands.xcu @@ -27576,7 +27576,7 @@ "Label\n" "value.text" msgid "Z~oom In" -msgstr "V~is større" +msgstr "Vis større" #. XYVPg #: MathCommands.xcu @@ -27586,7 +27586,7 @@ "Label\n" "value.text" msgid "Zoo~m Out" -msgstr "Vis ~mindre" +msgstr "Vis mindre" #. J3EaC #: MathCommands.xcu @@ -27596,7 +27596,7 @@ "Label\n" "value.text" msgid "U~pdate" -msgstr "~Oppdater" +msgstr "Oppdater" #. GLcSy #: MathCommands.xcu @@ -27666,7 +27666,7 @@ "Label\n" "value.text" msgid "~Unary/Binary Operators" -msgstr "~Unære/binære operatører" +msgstr "Unære/binære operatorer" #. fU3Ww #: MathCommands.xcu @@ -27676,7 +27676,7 @@ "Label\n" "value.text" msgid "~Relations" -msgstr "~Relasjoner" +msgstr "Relasjoner" #. xE5UF #: MathCommands.xcu @@ -27686,7 +27686,7 @@ "Label\n" "value.text" msgid "~Set Operations" -msgstr "~Mengdeoperasjoner" +msgstr "Mengdeoperasjoner" #. NGa2A #: MathCommands.xcu @@ -27696,7 +27696,7 @@ "Label\n" "value.text" msgid "~Functions" -msgstr "~Funksjoner" +msgstr "Funksjoner" #. w7Af9 #: MathCommands.xcu @@ -27716,7 +27716,7 @@ "Label\n" "value.text" msgid "~Attributes" -msgstr "~Egenskaper" +msgstr "Egenskaper" #. rZPUN #: MathCommands.xcu @@ -27726,7 +27726,7 @@ "Label\n" "value.text" msgid "~Brackets" -msgstr "~Parenteser" +msgstr "Parenteser" #. DYtrW #: MathCommands.xcu @@ -27736,7 +27736,7 @@ "Label\n" "value.text" msgid "For~mats" -msgstr "~Formater" +msgstr "Formater" #. QBa62 #: MathCommands.xcu @@ -27746,7 +27746,7 @@ "Label\n" "value.text" msgid "~Others" -msgstr "~Andre" +msgstr "Andre" #. uXvss #: MathWindowState.xcu @@ -27826,7 +27826,7 @@ "Label\n" "value.text" msgid "~Ruler" -msgstr "~Linjaler" +msgstr "Linjaler" #. 8DYFD #: ReportCommands.xcu @@ -27836,7 +27836,7 @@ "Label\n" "value.text" msgid "~Sorting and Grouping" -msgstr "~Sortering og gruppering" +msgstr "Sortering og gruppering" #. jyNFG #: ReportCommands.xcu @@ -27846,7 +27846,7 @@ "Label\n" "value.text" msgid "~Add Field" -msgstr "~Legg til felt" +msgstr "Legg til felt" #. FX4aQ #: ReportCommands.xcu @@ -27856,7 +27856,7 @@ "Label\n" "value.text" msgid "~Conditional Formatting..." -msgstr "~Vilkårsformatering …" +msgstr "Vilkårsformatering …" #. ExGip #: ReportCommands.xcu @@ -27876,7 +27876,7 @@ "ContextLabel\n" "value.text" msgid "~Page..." -msgstr "Si~de …" +msgstr "Side …" #. 9GxFQ #: ReportCommands.xcu @@ -27886,7 +27886,7 @@ "Label\n" "value.text" msgid "~Clear Direct Formatting" -msgstr "Fjern ~direkte formatering" +msgstr "Fjern direkte formatering" #. ti7jv #: ReportCommands.xcu @@ -27896,7 +27896,7 @@ "Label\n" "value.text" msgid "~Page Numbers..." -msgstr "~Sidetall …" +msgstr "Sidetall …" #. Q5GAj #: ReportCommands.xcu @@ -27906,7 +27906,7 @@ "Label\n" "value.text" msgid "~Date and Time..." -msgstr "Dato og ~klokkeslett …" +msgstr "Dato og klokkeslett …" #. 378wM #: ReportCommands.xcu @@ -27916,7 +27916,7 @@ "Label\n" "value.text" msgid "~Select Report" -msgstr "~Velg rapport" +msgstr "Velg rapport" #. ff2NT #: ReportCommands.xcu @@ -27926,7 +27926,7 @@ "Label\n" "value.text" msgid "~Subreport in New Window..." -msgstr "~Delrapport i nytt vindu …" +msgstr "Delrapport i nytt vindu …" #. suBJb #: ReportCommands.xcu @@ -27946,7 +27946,7 @@ "Label\n" "value.text" msgid "Gr~id" -msgstr "~Rutenett" +msgstr "Rutenett" #. 44sUt #: ReportCommands.xcu @@ -27956,7 +27956,7 @@ "Label\n" "value.text" msgid "~Column Header/Footer" -msgstr "~Spaltetopptekstt/bunntekst" +msgstr "Spaltetopptekstt/bunntekst" #. 5CBUX #: ReportCommands.xcu @@ -27966,7 +27966,7 @@ "Label\n" "value.text" msgid "Paste ~Special..." -msgstr "~Lim inn utvalg …" +msgstr "Lim inn utvalg …" #. 7FSqN #: ReportCommands.xcu @@ -28076,7 +28076,7 @@ "Label\n" "value.text" msgid "~Select Objects in Section" -msgstr "~Velg objekter i seksjonen" +msgstr "Velg objekter i seksjonen" #. sFP2C #: ReportCommands.xcu @@ -28276,7 +28276,7 @@ "Label\n" "value.text" msgid "Edit Mode" -msgstr "Rediger Modus" +msgstr "Redigerings Modus" #. GZdEa #: ReportCommands.xcu @@ -28296,7 +28296,7 @@ "Label\n" "value.text" msgid "~Snap Lines" -msgstr "~Festelinjer" +msgstr "Festelinjer" #. GjVY4 #: ReportCommands.xcu @@ -28326,7 +28326,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "Stilinspektør" #. GEHrf #: Sidebar.xcu @@ -28476,7 +28476,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "" +msgstr "Stilinspektør" #. aCGNS #: Sidebar.xcu @@ -28546,7 +28546,7 @@ "Title\n" "value.text" msgid "Effect" -msgstr "" +msgstr "Effekt" #. GBNW2 #: Sidebar.xcu @@ -29286,7 +29286,7 @@ "Label\n" "value.text" msgid "AutoTe~xt..." -msgstr "~Autotekst …" +msgstr "Autotekst …" #. u385y #: WriterCommands.xcu @@ -29296,7 +29296,7 @@ "Label\n" "value.text" msgid "~Normal View" -msgstr "~Normalvisning" +msgstr "Normalvisning" #. DVeEj #: WriterCommands.xcu @@ -29306,7 +29306,7 @@ "ContextLabel\n" "value.text" msgid "~Normal" -msgstr "~Normal" +msgstr "Normal" #. DULqf #: WriterCommands.xcu @@ -29356,7 +29356,7 @@ "Label\n" "value.text" msgid "S~cript..." -msgstr "S~kript …" +msgstr "Skript …" #. Eddjt #: WriterCommands.xcu @@ -29376,7 +29376,7 @@ "ContextLabel\n" "value.text" msgid "To ~Character" -msgstr "Til ~tegn" +msgstr "Til tegn" #. Xpj6g #: WriterCommands.xcu @@ -29406,7 +29406,7 @@ "Label\n" "value.text" msgid "He~ader" -msgstr "To~pptekst" +msgstr "Topptekst" #. GstET #: WriterCommands.xcu @@ -29416,7 +29416,7 @@ "Label\n" "value.text" msgid "Foote~r" -msgstr "~Bunntekst" +msgstr "Bunntekst" #. ADFB6 #: WriterCommands.xcu @@ -29436,7 +29436,7 @@ "Label\n" "value.text" msgid "~Endnote" -msgstr "~Sluttnote" +msgstr "Sluttnote" #. DCdHL #: WriterCommands.xcu @@ -29506,7 +29506,7 @@ "Label\n" "value.text" msgid "~Bibliography Entry..." -msgstr "~Kilde …" +msgstr "Kilde …" #. jxZGG #: WriterCommands.xcu @@ -29816,7 +29816,7 @@ "Label\n" "value.text" msgid "~Links" -msgstr "~Lenker" +msgstr "Lenker" #. fQQgY #: WriterCommands.xcu @@ -29826,7 +29826,7 @@ "Label\n" "value.text" msgid "~Record" -msgstr "Start ~opptak" +msgstr "Start opptak" #. fUFWw #: WriterCommands.xcu @@ -29866,7 +29866,7 @@ "Label\n" "value.text" msgid "~Show" -msgstr "~Vis" +msgstr "Vis" #. yBTWr #: WriterCommands.xcu @@ -29886,7 +29886,7 @@ "Label\n" "value.text" msgid "Show ~Tracked Changes" -msgstr "" +msgstr "Vis sporede endringer" #. sMgCx #: WriterCommands.xcu @@ -29956,7 +29956,7 @@ "Label\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "Vis sporede slettinger i margen" #. 3GVrG #: WriterCommands.xcu @@ -29966,7 +29966,7 @@ "TooltipLabel\n" "value.text" msgid "Show tracked deletions in margin" -msgstr "" +msgstr "Vis sporede slettinger i margen" #. QFi68 #: WriterCommands.xcu @@ -29986,7 +29986,7 @@ "Label\n" "value.text" msgid "~Comment..." -msgstr "~Merknad …" +msgstr "Merknad …" #. hupz9 #: WriterCommands.xcu @@ -30006,7 +30006,7 @@ "Label\n" "value.text" msgid "~Update All" -msgstr "~Oppdater alt" +msgstr "Oppdater alt" #. R52B6 #: WriterCommands.xcu @@ -30016,7 +30016,7 @@ "Label\n" "value.text" msgid "En~velope..." -msgstr "Konvol~utt …" +msgstr "Konvolutt …" #. tHEgG #: WriterCommands.xcu @@ -30026,7 +30026,7 @@ "Label\n" "value.text" msgid "~Manage..." -msgstr "~Håndter..." +msgstr "Håndter..." #. ZtAC3 #: WriterCommands.xcu @@ -30056,7 +30056,7 @@ "Label\n" "value.text" msgid "~Bibliography Entry..." -msgstr "~Kilde …" +msgstr "Kilde …" #. SyBgc #: WriterCommands.xcu @@ -30066,7 +30066,7 @@ "Label\n" "value.text" msgid "~Charts" -msgstr "~Diagram" +msgstr "Diagram" #. 46XYv #: WriterCommands.xcu @@ -30076,7 +30076,7 @@ "Label\n" "value.text" msgid "Bookmar~k..." -msgstr "Bok~merke …" +msgstr "Bokmerke …" #. BBqAd #: WriterCommands.xcu @@ -30136,7 +30136,7 @@ "Label\n" "value.text" msgid "Manual ~Break..." -msgstr "Manuelt ~skift …" +msgstr "Manuelt skift …" #. EEwTF #: WriterCommands.xcu @@ -30156,7 +30156,7 @@ "Label\n" "value.text" msgid "~More Fields..." -msgstr "~Flere felt …" +msgstr "Flere felt …" #. dGxyV #: WriterCommands.xcu @@ -30266,7 +30266,7 @@ "Label\n" "value.text" msgid "~Page Break" -msgstr "~Sideskift" +msgstr "Sideskift" #. LRMzC #: WriterCommands.xcu @@ -30316,7 +30316,7 @@ "ContextLabel\n" "value.text" msgid "~Frame Interactively" -msgstr "~Ramme interaktivt" +msgstr "Ramme interaktivt" #. ZAeYC #: WriterCommands.xcu @@ -30356,7 +30356,7 @@ "Label\n" "value.text" msgid "~Index Entry..." -msgstr "Indeksoppf~øring …" +msgstr "Indeksoppføring …" #. iAFni #: WriterCommands.xcu @@ -30406,7 +30406,7 @@ "ContextLabel\n" "value.text" msgid "To P~age" -msgstr "Til ~side" +msgstr "Til side" #. cASxB #: WriterCommands.xcu @@ -30426,7 +30426,7 @@ "ContextLabel\n" "value.text" msgid "To ~Paragraph" -msgstr "Til ~avsnitt" +msgstr "Til avsnitt" #. 7cFXL #: WriterCommands.xcu @@ -30446,7 +30446,7 @@ "Label\n" "value.text" msgid "~Mail Merge..." -msgstr "Standard~brev …" +msgstr "Standard brev …" #. FT8oF #: WriterCommands.xcu @@ -30456,7 +30456,7 @@ "Label\n" "value.text" msgid "Mail Merge Wi~zard..." -msgstr "Veiviser for ~brevfletting …" +msgstr "Veiviser for brevfletting …" #. 4GmoX #: WriterCommands.xcu @@ -30576,7 +30576,7 @@ "ContextLabel\n" "value.text" msgid "To ~Frame" -msgstr "Til ~ramme" +msgstr "Til ramme" #. SfUgE #: WriterCommands.xcu @@ -30626,7 +30626,7 @@ "ContextLabel\n" "value.text" msgid "As C~haracter" -msgstr "Som t~egn" +msgstr "Som tegn" #. dapfz #: WriterCommands.xcu @@ -30686,7 +30686,7 @@ "Label\n" "value.text" msgid "~Date" -msgstr "~Dato" +msgstr "Dato" #. M9AfN #: WriterCommands.xcu @@ -30706,7 +30706,7 @@ "Label\n" "value.text" msgid "~Time" -msgstr "~Klokkeslett" +msgstr "Klokkeslett" #. AKBJc #: WriterCommands.xcu @@ -30716,7 +30716,7 @@ "Label\n" "value.text" msgid "~Page Number" -msgstr "Si~detall" +msgstr "Sidetall" #. Z7Y7v #: WriterCommands.xcu @@ -30726,7 +30726,7 @@ "Label\n" "value.text" msgid "Page ~Count" -msgstr "A~ntall sider" +msgstr "Antall sider" #. fNDX8 #: WriterCommands.xcu @@ -30736,7 +30736,7 @@ "Label\n" "value.text" msgid "~Subject" -msgstr "~Emne" +msgstr "Emne" #. ecNWn #: WriterCommands.xcu @@ -30746,7 +30746,7 @@ "Label\n" "value.text" msgid "T~itle" -msgstr "~Tittel" +msgstr "Tittel" #. Vf5oi #: WriterCommands.xcu @@ -30766,7 +30766,7 @@ "Label\n" "value.text" msgid "~Footnote" -msgstr "~Fotnote" +msgstr "Fotnote" #. BbSUw #: WriterCommands.xcu @@ -30786,7 +30786,7 @@ "Label\n" "value.text" msgid "Appl~y" -msgstr "~Bruk" +msgstr "Bruk" #. EV2yB #: WriterCommands.xcu @@ -30796,7 +30796,7 @@ "Label\n" "value.text" msgid "~While Typing" -msgstr "~Ved skriving" +msgstr "Ved skriving" #. FA8kc #: WriterCommands.xcu @@ -30826,7 +30826,7 @@ "Label\n" "value.text" msgid "Apply and Edit ~Changes" -msgstr "Utfør og rediger ~endringer" +msgstr "Utfør og rediger endringer" #. BZfML #: WriterCommands.xcu @@ -30896,7 +30896,7 @@ "Label\n" "value.text" msgid "Select to Top Line" -msgstr "Merk til den øverste linja" +msgstr "Merk til den øverste linjen" #. CEEG6 #: WriterCommands.xcu @@ -30916,7 +30916,7 @@ "Label\n" "value.text" msgid "Select to Begin of Line" -msgstr "Merk til begynnelsen av linja" +msgstr "Merk til begynnelsen av linjen" #. CxjEJ #: WriterCommands.xcu @@ -30926,7 +30926,7 @@ "Label\n" "value.text" msgid "Select to End of Line" -msgstr "Merk til slutten av linja" +msgstr "Merk til slutten av linjen" #. FaJ34 #: WriterCommands.xcu @@ -31006,7 +31006,7 @@ "Label\n" "value.text" msgid "Outline to ~Presentation" -msgstr "En disposisjon til pre~sentasjon" +msgstr "En disposisjon til presentasjon" #. 4wZZS #: WriterCommands.xcu @@ -31026,7 +31026,7 @@ "Label\n" "value.text" msgid "Outline to ~Clipboard" -msgstr "En disposisjon til ~utklippstavla" +msgstr "En disposisjon til utklippstavlen" #. ofEV6 #: WriterCommands.xcu @@ -31036,7 +31036,7 @@ "Label\n" "value.text" msgid "Rotate 90° ~Left" -msgstr "Roter 90° ~til venstre" +msgstr "Roter 90° til venstre" #. ysk9i #: WriterCommands.xcu @@ -31046,7 +31046,7 @@ "Label\n" "value.text" msgid "Rotate 90° ~Right" -msgstr "Roter 90° ~til høyre" +msgstr "Roter 90° til høyre" #. HqrLX #: WriterCommands.xcu @@ -31056,7 +31056,7 @@ "Label\n" "value.text" msgid "Rotate 1~80°" -msgstr "Roter 1-180°" +msgstr "Roter 1 - 180°" #. bF3xx #: WriterCommands.xcu @@ -31076,7 +31076,7 @@ "Label\n" "value.text" msgid "Create ~HTML Document" -msgstr "Lag ~HTML-dokument" +msgstr "Lag HTML-dokument" #. PVdFq #: WriterCommands.xcu @@ -31106,7 +31106,7 @@ "Label\n" "value.text" msgid "Select to End of Word" -msgstr "" +msgstr "Merk til slutten av Ordet" #. bpBoC #: WriterCommands.xcu @@ -31206,7 +31206,7 @@ "Label\n" "value.text" msgid "Create A~utoAbstract..." -msgstr "Lag ~autosammendrag …" +msgstr "Lag autosammendrag …" #. AAef2 #: WriterCommands.xcu @@ -31216,7 +31216,7 @@ "Label\n" "value.text" msgid "AutoAbst~ract to Presentation..." -msgstr "Autosammen~drag til presentasjon …" +msgstr "Autosammendrag til presentasjon …" #. y4rbs #: WriterCommands.xcu @@ -31316,7 +31316,7 @@ "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "~Egenskaper …" +msgstr "Egenskaper …" #. wwpGc #: WriterCommands.xcu @@ -31336,7 +31336,7 @@ "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "~Egenskaper …" +msgstr "Egenskaper …" #. qEuQj #: WriterCommands.xcu @@ -31346,7 +31346,7 @@ "Label\n" "value.text" msgid "Ta~ble Properties..." -msgstr "Tabell~egenskaper …" +msgstr "Tabell egenskaper …" #. EsGBT #: WriterCommands.xcu @@ -31356,7 +31356,7 @@ "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "~Egenskaper …" +msgstr "Egenskaper …" #. Ux9Rr #: WriterCommands.xcu @@ -31366,7 +31366,7 @@ "PopupLabel\n" "value.text" msgid "~Table Properties..." -msgstr "~Tabellegenskaper …" +msgstr "Tabellegenskaper …" #. bBVxV #: WriterCommands.xcu @@ -31376,7 +31376,7 @@ "Label\n" "value.text" msgid "~Footnotes and Endnotes..." -msgstr "~Fotnote og sluttnote …" +msgstr "Fotnote og sluttnote …" #. eE5gP #: WriterCommands.xcu @@ -31406,7 +31406,7 @@ "ContextLabel\n" "value.text" msgid "Clear ~Direct Formatting" -msgstr "Fjern ~direkte formatering" +msgstr "Fjern direkte formatering" #. eogPF #: WriterCommands.xcu @@ -31506,7 +31506,7 @@ "Label\n" "value.text" msgid "Close Preview" -msgstr "Lukk forhåndsvisninga" +msgstr "Lukk forhåndsvisningen" #. LmbRA #: WriterCommands.xcu @@ -31526,7 +31526,7 @@ "Label\n" "value.text" msgid "Center Horizontal" -msgstr "Midtstilt vannrett" +msgstr "Midtstilt horisontelt" #. MvzBT #: WriterCommands.xcu @@ -31576,7 +31576,7 @@ "Label\n" "value.text" msgid "F~ields..." -msgstr "Felte~r …" +msgstr "Felter …" #. Myv3t #: WriterCommands.xcu @@ -31606,7 +31606,7 @@ "Label\n" "value.text" msgid "Te~xt <-> Table..." -msgstr "Te~kst <-> Tabell..." +msgstr "Tekst <-> Tabell..." #. C4EeX #: WriterCommands.xcu @@ -31616,7 +31616,7 @@ "Label\n" "value.text" msgid "T~able to Text..." -msgstr "T~abell til tekst …" +msgstr "Tabell til tekst …" #. RPW5g #: WriterCommands.xcu @@ -31626,7 +31626,7 @@ "Label\n" "value.text" msgid "~Text to Table..." -msgstr "~Tekst til tabell …" +msgstr "Tekst til tabell …" #. RGGHV #: WriterCommands.xcu @@ -31646,7 +31646,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "So~rter …" +msgstr "Sorter …" #. yCEb9 #: WriterCommands.xcu @@ -31656,7 +31656,7 @@ "Label\n" "value.text" msgid "~Rows..." -msgstr "~Rader …" +msgstr "Rader …" #. bvFBT #: WriterCommands.xcu @@ -31676,7 +31676,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Above" -msgstr "Rader ~over" +msgstr "Rader over" #. zPPVF #: WriterCommands.xcu @@ -31696,7 +31696,7 @@ "ContextLabel\n" "value.text" msgid "Rows ~Below" -msgstr "Rader ~under" +msgstr "Rader under" #. bxCPN #: WriterCommands.xcu @@ -31706,7 +31706,7 @@ "Label\n" "value.text" msgid "~Columns..." -msgstr "~Kolonner …" +msgstr "Kolonner …" #. sVEB6 #: WriterCommands.xcu @@ -31756,7 +31756,7 @@ "Label\n" "value.text" msgid "Paste ~Special..." -msgstr "~Lim inn utvalg …" +msgstr "Lim inn utvalg …" #. 3QC4Z #: WriterCommands.xcu @@ -31766,7 +31766,7 @@ "PopupLabel\n" "value.text" msgid "~More Options..." -msgstr "~Flere Alternativer" +msgstr "Flere Alternativer" #. V36RP #: WriterCommands.xcu @@ -31846,7 +31846,7 @@ "ContextLabel\n" "value.text" msgid "~Rows" -msgstr "~Rader" +msgstr "Rader" #. mBMTr #: WriterCommands.xcu @@ -31876,7 +31876,7 @@ "ContextLabel\n" "value.text" msgid "~Columns" -msgstr "~Kolonner" +msgstr "Kolonner" #. rhbdp #: WriterCommands.xcu @@ -31906,7 +31906,7 @@ "ContextLabel\n" "value.text" msgid "~Table" -msgstr "~Tabell" +msgstr "Tabell" #. bFjMz #: WriterCommands.xcu @@ -31956,7 +31956,7 @@ "Label\n" "value.text" msgid "~Column Width..." -msgstr "~Kolonnebredde …" +msgstr "Kolonnebredde …" #. tu7ic #: WriterCommands.xcu @@ -31976,7 +31976,7 @@ "Label\n" "value.text" msgid "~Bullets and Numbering..." -msgstr "~Punkter og nummerering …" +msgstr "Punkter og nummerering …" #. J9Ut3 #: WriterCommands.xcu @@ -31996,7 +31996,7 @@ "Label\n" "value.text" msgid "~Index Entry..." -msgstr "~Indeksoppføring …" +msgstr "Indeksoppføring …" #. W4PVB #: WriterCommands.xcu @@ -32026,7 +32026,7 @@ "ContextLabel\n" "value.text" msgid "~Row" -msgstr "~Rad" +msgstr "Rad" #. xCwiq #: WriterCommands.xcu @@ -32066,7 +32066,7 @@ "Label\n" "value.text" msgid "To Top Line" -msgstr "Til den øverste linja" +msgstr "Til den øverste linjen" #. UHftG #: WriterCommands.xcu @@ -32086,7 +32086,7 @@ "ContextLabel\n" "value.text" msgid "~Column" -msgstr "~Kolonner" +msgstr "Kolonner" #. dmQVS #: WriterCommands.xcu @@ -32096,7 +32096,7 @@ "Label\n" "value.text" msgid "~Fields" -msgstr "Felte~r" +msgstr "Felter" #. tpc5P #: WriterCommands.xcu @@ -32116,7 +32116,7 @@ "ContextLabel\n" "value.text" msgid "~Table" -msgstr "~Tabell" +msgstr "Tabell" #. Af8EP #: WriterCommands.xcu @@ -32136,7 +32136,7 @@ "Label\n" "value.text" msgid "To Line Below" -msgstr "Til linja under" +msgstr "Til linjen under" #. CDTJM #: WriterCommands.xcu @@ -32146,7 +32146,7 @@ "Label\n" "value.text" msgid "To Line Begin" -msgstr "Til begynnelsen av linja" +msgstr "Til begynnelsen av linjen" #. qGp4h #: WriterCommands.xcu @@ -32176,7 +32176,7 @@ "Label\n" "value.text" msgid "To End of Line" -msgstr "Til slutten av linja" +msgstr "Til slutten av linjen" #. BvGD3 #: WriterCommands.xcu @@ -32566,7 +32566,7 @@ "Label\n" "value.text" msgid "Delete to End of Sentence" -msgstr "Slett til slutten av setninga" +msgstr "Slett til slutten av setningen" #. BcANW #: WriterCommands.xcu @@ -32586,7 +32586,7 @@ "Label\n" "value.text" msgid "Delete to Start of Sentence" -msgstr "Slett til starten av setninga" +msgstr "Slett til starten av setningen" #. zPCcG #: WriterCommands.xcu @@ -32616,7 +32616,7 @@ "Label\n" "value.text" msgid "Delete to End of Line" -msgstr "Slett til slutten av linja" +msgstr "Slett til slutten av linjen" #. yeEJu #: WriterCommands.xcu @@ -32626,7 +32626,7 @@ "Label\n" "value.text" msgid "Delete to Start of Line" -msgstr "Slett til starten av linja" +msgstr "Slett til starten av linjen" #. mQMuE #: WriterCommands.xcu @@ -32766,7 +32766,7 @@ "Label\n" "value.text" msgid "~Footnote or Endnote..." -msgstr "~Fotnote eller sluttnote …" +msgstr "Fotnote eller sluttnote …" #. 65L8a #: WriterCommands.xcu @@ -32826,7 +32826,7 @@ "Label\n" "value.text" msgid "~Sections..." -msgstr "~Seksjoner…" +msgstr "Seksjoner…" #. GDhGc #: WriterCommands.xcu @@ -33036,7 +33036,7 @@ "Label\n" "value.text" msgid "In ~Background" -msgstr "I b~akgrunnen" +msgstr "I bakgrunnen" #. U7dpe #: WriterCommands.xcu @@ -33076,7 +33076,7 @@ "Label\n" "value.text" msgid "Align to Top of Line" -msgstr "Juster til toppen av linja" +msgstr "Juster til toppen av linjen" #. SQuFa #: WriterCommands.xcu @@ -33096,7 +33096,7 @@ "Label\n" "value.text" msgid "Align to Bottom of Line" -msgstr "Juster til bunnen av linja" +msgstr "Juster til bunnen av linjen" #. kiyVH #: WriterCommands.xcu @@ -33116,7 +33116,7 @@ "Label\n" "value.text" msgid "Align to Vertical Center of Line" -msgstr "Juster til midten av linja loddrett" +msgstr "Juster til midten av Linjen Vertikalt" #. ZpCwj #: WriterCommands.xcu @@ -33196,7 +33196,7 @@ "Label\n" "value.text" msgid "Align to Vertical Center of Character" -msgstr "Juster til midten av tegnet, loddrett" +msgstr "Juster til midten av Tegnet, Vertikalt" #. GcYvN #: WriterCommands.xcu @@ -33206,7 +33206,7 @@ "Label\n" "value.text" msgid "Restart Numbering" -msgstr "Start nummereringa på nytt" +msgstr "Start nummereringen på nytt" #. ofjeC #: WriterCommands.xcu @@ -33316,7 +33316,7 @@ "ContextLabel\n" "value.text" msgid "~First Paragraph" -msgstr "~Første avsnitt" +msgstr "Første avsnitt" #. kCyrV #: WriterCommands.xcu @@ -33336,7 +33336,7 @@ "Label\n" "value.text" msgid "~Distribute Columns Evenly" -msgstr "~Fordel kolonner jevnt" +msgstr "Fordel kolonner jevnt" #. DpN8E #: WriterCommands.xcu @@ -33386,7 +33386,7 @@ "ContextLabel\n" "value.text" msgid "~Contour" -msgstr "~Omriss" +msgstr "Omriss" #. UTgiq #: WriterCommands.xcu @@ -33546,7 +33546,7 @@ "ContextLabel\n" "value.text" msgid "~Edit..." -msgstr "~Rediger …" +msgstr "Rediger …" #. 98uM3 #: WriterCommands.xcu @@ -33626,7 +33626,7 @@ "Label\n" "value.text" msgid "~Rulers" -msgstr "~Linjaler" +msgstr "Linjaler" #. tappr #: WriterCommands.xcu @@ -33636,7 +33636,7 @@ "Label\n" "value.text" msgid "~Line Numbering..." -msgstr "~Linjenummerering …" +msgstr "Linjenummerering …" #. TGCn2 #: WriterCommands.xcu @@ -33676,7 +33676,7 @@ "ContextLabel\n" "value.text" msgid "~Images and Charts" -msgstr "~Bilde og diagram" +msgstr "Bilde og diagram" #. oyqdt #: WriterCommands.xcu @@ -33696,7 +33696,7 @@ "Label\n" "value.text" msgid "Te~xt Boundaries" -msgstr "~Tekstgrenser" +msgstr "Tekstgrenser" #. aHFda #: WriterCommands.xcu @@ -33706,7 +33706,7 @@ "Label\n" "value.text" msgid "~Thesaurus..." -msgstr "S~ynonymordbok …" +msgstr "Synonymordbok …" #. MBE8P #: WriterCommands.xcu @@ -33746,7 +33746,7 @@ "Label\n" "value.text" msgid "Vertical Ruler" -msgstr "Loddrett linjal" +msgstr "Vertikal Linjal" #. mRqBc #: WriterCommands.xcu @@ -33756,7 +33756,7 @@ "Label\n" "value.text" msgid "~Hyphenation..." -msgstr "~Orddeling …" +msgstr "Orddeling …" #. ngTBv #: WriterCommands.xcu @@ -33766,7 +33766,7 @@ "Label\n" "value.text" msgid "Vertical Scroll Bar" -msgstr "Loddrett rullefelt" +msgstr "Vertikalt Rullefelt" #. zDBEP #: WriterCommands.xcu @@ -33786,7 +33786,7 @@ "Label\n" "value.text" msgid "Horizontal Scroll Bar" -msgstr "Vannrett rullefelt" +msgstr "Horisontalt Rullefelt" #. nH47Q #: WriterCommands.xcu @@ -33796,7 +33796,7 @@ "Label\n" "value.text" msgid "Chapter ~Numbering..." -msgstr "Kapittel~nummerering …" +msgstr "Kapittelnummerering …" #. ZiKEi #: WriterCommands.xcu @@ -33866,7 +33866,7 @@ "Label\n" "value.text" msgid "So~rt..." -msgstr "So~rter …" +msgstr "Sorter …" #. ejnAA #: WriterCommands.xcu @@ -33876,7 +33876,7 @@ "Label\n" "value.text" msgid "Fie~ld Shadings" -msgstr "F~eltskygge" +msgstr "Feltskygge" #. 9EBAK #: WriterCommands.xcu @@ -33886,7 +33886,7 @@ "Label\n" "value.text" msgid "Calculat~e" -msgstr "B~eregn" +msgstr "Beregn" #. AjNLg #: WriterCommands.xcu @@ -33896,7 +33896,7 @@ "Label\n" "value.text" msgid "~Field Names" -msgstr "~Feltnavn" +msgstr "Feltnavn" #. CcnG7 #: WriterCommands.xcu @@ -33956,7 +33956,7 @@ "Label\n" "value.text" msgid "~Standard" -msgstr "~Standard" +msgstr "Standard" #. 5S3gN #: WriterCommands.xcu @@ -33966,7 +33966,7 @@ "Label\n" "value.text" msgid "~Block Area" -msgstr "~Blokkområde" +msgstr "Blokkområde" #. 8C8u8 #: WriterCommands.xcu @@ -33976,7 +33976,7 @@ "Label\n" "value.text" msgid "~Open..." -msgstr "~Åpne …" +msgstr "Åpne …" #. K4vtX #: WriterCommands.xcu @@ -34056,7 +34056,7 @@ "Label\n" "value.text" msgid "~Select" -msgstr "~Velg" +msgstr "Velg" #. XC7Xk #: WriterCommands.xcu @@ -34066,7 +34066,7 @@ "Label\n" "value.text" msgid "~Convert" -msgstr "Gjør o~m" +msgstr "Gjør om" #. P8xfR #: WriterCommands.xcu @@ -34076,7 +34076,7 @@ "Label\n" "value.text" msgid "~Update" -msgstr "~Oppdater" +msgstr "Oppdater" #. FawhG #: WriterCommands.xcu @@ -34106,7 +34106,7 @@ "PopupLabel\n" "value.text" msgid "~Format All Comments..." -msgstr "~Formater alle merknader..." +msgstr "Formater alle merknader..." #. kivrj #: WriterCommands.xcu @@ -34136,7 +34136,7 @@ "Label\n" "value.text" msgid "Styl~es" -msgstr "Sti~ler" +msgstr "Stiler" #. YTNwv #: WriterCommands.xcu @@ -34146,7 +34146,7 @@ "Label\n" "value.text" msgid "~Wrap" -msgstr "T~ekstbryting" +msgstr "Tekstbryting" #. KTWTs #: WriterCommands.xcu @@ -34166,7 +34166,7 @@ "Label\n" "value.text" msgid "AutoCorr~ect" -msgstr "~Autoretting" +msgstr "Autoretting" #. 7DFV2 #: WriterCommands.xcu @@ -34256,7 +34256,7 @@ "Label\n" "value.text" msgid "Horizontal ~Line" -msgstr "Vannrett ~linje" +msgstr "Horisontal Linje" #. TcmND #: WriterCommands.xcu @@ -34306,7 +34306,7 @@ "Label\n" "value.text" msgid "~Title" -msgstr "~Tittel" +msgstr "Tittel" #. nTFs5 #: WriterCommands.xcu @@ -34366,7 +34366,7 @@ "Label\n" "value.text" msgid "Heading ~1" -msgstr "Overskrift ~1" +msgstr "Overskrift 1" #. eRnxM #: WriterCommands.xcu @@ -34396,7 +34396,7 @@ "Label\n" "value.text" msgid "Heading ~2" -msgstr "Overskrift ~2" +msgstr "Overskrift 2" #. FfmEY #: WriterCommands.xcu @@ -34426,7 +34426,7 @@ "Label\n" "value.text" msgid "Heading ~3" -msgstr "Overskrift ~3" +msgstr "Overskrift 3" #. iVgff #: WriterCommands.xcu @@ -34456,7 +34456,7 @@ "Label\n" "value.text" msgid "Heading ~4" -msgstr "Overskrift ~4" +msgstr "Overskrift 4" #. CjEN7 #: WriterCommands.xcu @@ -34466,7 +34466,7 @@ "Label\n" "value.text" msgid "Heading ~4" -msgstr "Overskrift ~4" +msgstr "Overskrift 4" #. fW95P #: WriterCommands.xcu @@ -34486,7 +34486,7 @@ "Label\n" "value.text" msgid "Heading ~5" -msgstr "Overskrift ~5" +msgstr "Overskrift 5" #. oyAXE #: WriterCommands.xcu @@ -34516,7 +34516,7 @@ "Label\n" "value.text" msgid "Heading ~6" -msgstr "Overskrift ~6" +msgstr "Overskrift 6" #. HEHGi #: WriterCommands.xcu @@ -34546,7 +34546,7 @@ "Label\n" "value.text" msgid "~Quotations" -msgstr "~Sitat" +msgstr "Sitat" #. evCdC #: WriterCommands.xcu @@ -34696,7 +34696,7 @@ "Label\n" "value.text" msgid "~Strong Emphasis" -msgstr "~Sterk utheving" +msgstr "Sterk utheving" #. PZ7tA #: WriterCommands.xcu @@ -35216,7 +35216,7 @@ "TooltipLabel\n" "value.text" msgid "Fold or unfold outline content in document" -msgstr "Skje eller vis innholdet i dokumentet" +msgstr "Fold eller vis innholdet i dokumentet" #. qaWQG #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2020-07-23 01:46+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1548318870.000000\n" #. HhMVS @@ -124,7 +124,7 @@ "Title\n" "value.text" msgid "~Text Document" -msgstr "~Tekstdokument" +msgstr "Tekstdokument" #. FUrRQ #: Common.xcu @@ -134,7 +134,7 @@ "Title\n" "value.text" msgid "~Spreadsheet" -msgstr "~Regneark" +msgstr "Regneark" #. ZHYGB #: Common.xcu @@ -144,7 +144,7 @@ "Title\n" "value.text" msgid "~Presentation" -msgstr "~Presentasjon" +msgstr "Presentasjon" #. S4oBC #: Common.xcu @@ -154,7 +154,7 @@ "Title\n" "value.text" msgid "~Drawing" -msgstr "~Tegning" +msgstr "Tegning" #. ANu2C #: Common.xcu @@ -164,7 +164,7 @@ "Title\n" "value.text" msgid "F~ormula" -msgstr "~Formel" +msgstr "Formel" #. 6bTyB #: Common.xcu @@ -184,7 +184,7 @@ "Title\n" "value.text" msgid "~HTML Document" -msgstr "~HTML-dokument" +msgstr "HTML-dokument" #. 4mAS3 #: Common.xcu @@ -194,7 +194,7 @@ "Title\n" "value.text" msgid "~XML Form Document" -msgstr "~XML-skjemadokument" +msgstr "XML-skjemadokument" #. WDLdc #: Common.xcu @@ -244,7 +244,7 @@ "Title\n" "value.text" msgid "~Letter..." -msgstr "~Brev …" +msgstr "Brev …" #. KkybS #: Common.xcu @@ -254,7 +254,7 @@ "Title\n" "value.text" msgid "~Fax..." -msgstr "~Faks …" +msgstr "Faks …" #. SDkbP #: Common.xcu @@ -264,7 +264,7 @@ "Title\n" "value.text" msgid "~Agenda..." -msgstr "~Møteplan …" +msgstr "Agenda …" #. TYVTR #: Common.xcu @@ -274,7 +274,7 @@ "Title\n" "value.text" msgid "Document ~Converter..." -msgstr "~Dokumentkonvertering …" +msgstr "Dokumentkonvertering …" #. Fcxxv #: Common.xcu @@ -684,7 +684,7 @@ "VerbUIName\n" "value.text" msgid "~Edit" -msgstr "~Rediger" +msgstr "Rediger" #. F8UQ6 #: Embedding.xcu @@ -694,7 +694,7 @@ "VerbUIName\n" "value.text" msgid "~Open" -msgstr "Å~pne" +msgstr "Åpne" #. CEfnC #: Embedding.xcu @@ -704,7 +704,7 @@ "VerbUIName\n" "value.text" msgid "Propert~ies..." -msgstr "~Egenskaper …" +msgstr "Egenskaper …" #. z43X7 #: Embedding.xcu @@ -714,7 +714,7 @@ "VerbUIName\n" "value.text" msgid "Save Copy ~as..." -msgstr "Lagre kopi so~m …" +msgstr "Lagre kopi som …" #. AhAtr #: Embedding.xcu @@ -834,7 +834,7 @@ "DisplayName\n" "value.text" msgid "Group Header" -msgstr "Topptekst for gruppa" +msgstr "Topptekst for gruppen" #. DJAB5 #: ExtendedColorScheme.xcu @@ -844,7 +844,7 @@ "DisplayName\n" "value.text" msgid "Group Footer" -msgstr "Bunntekst for gruppa" +msgstr "Bunntekst for gruppen" #. BUNdw #: ExtendedColorScheme.xcu @@ -1034,7 +1034,7 @@ "STR_NEXT\n" "value.text" msgid "~Next >" -msgstr "~Neste >" +msgstr "Neste >" #. CEAQn #: PresentationMinimizer.xcu @@ -1044,7 +1044,7 @@ "STR_FINISH\n" "value.text" msgid "~Finish" -msgstr "~Ferdig" +msgstr "Ferdig" #. DsMBa #: PresentationMinimizer.xcu @@ -1084,7 +1084,7 @@ "STR_CHOSE_SETTINGS\n" "value.text" msgid "~Choose settings for Presentation Minimizer" -msgstr "~Velg innstillinger for presentasjonskrymperen" +msgstr "Velg innstillinger for presentasjonskrymperen" #. BYrVG #: PresentationMinimizer.xcu @@ -1094,7 +1094,7 @@ "STR_REMOVE\n" "value.text" msgid "~Delete" -msgstr "~Slett" +msgstr "Slett" #. sD2FS #: PresentationMinimizer.xcu @@ -1124,7 +1124,7 @@ "STR_LOSSLESS_COMPRESSION\n" "value.text" msgid "~Lossless compression" -msgstr "~Tapsfri komprimering" +msgstr "Tapsfri komprimering" #. uzK38 #: PresentationMinimizer.xcu @@ -1134,7 +1134,7 @@ "STR_JPEG_COMPRESSION\n" "value.text" msgid "~JPEG compression" -msgstr "~JPEG-komprimering" +msgstr "JPEG-komprimering" #. 3tPiR #: PresentationMinimizer.xcu @@ -1144,7 +1144,7 @@ "STR_QUALITY\n" "value.text" msgid "~Quality in %" -msgstr "~Kvalitet i %" +msgstr "Kvalitet i %" #. DKdqg #: PresentationMinimizer.xcu @@ -1154,7 +1154,7 @@ "STR_REMOVE_CROP_AREA\n" "value.text" msgid "~Delete cropped image areas" -msgstr "~Slett de bortklipte grafikkområdene" +msgstr "Slett de bortklipte grafikkområdene" #. CWoEW #: PresentationMinimizer.xcu @@ -1164,7 +1164,7 @@ "STR_IMAGE_RESOLUTION\n" "value.text" msgid "Reduce ~image resolution" -msgstr "Reduser bilde~oppløsninga" +msgstr "Reduser bildeoppløsningen" #. z4pry #: PresentationMinimizer.xcu @@ -1234,7 +1234,7 @@ "STR_EMBED_LINKED_GRAPHICS\n" "value.text" msgid "~Embed external images" -msgstr "~Bygg inn eksterne bilder" +msgstr "Bygg inn eksterne bilder" #. hbwsE #: PresentationMinimizer.xcu @@ -1274,7 +1274,7 @@ "STR_ALL_OLE_OBJECTS\n" "value.text" msgid "For ~all OLE objects" -msgstr "For ~alle OLE-objekter" +msgstr "For alle OLE-objekter" #. FaEZs #: PresentationMinimizer.xcu @@ -1344,7 +1344,7 @@ "STR_DELETE_NOTES_PAGES\n" "value.text" msgid "~Clear notes" -msgstr "~Slett merknader" +msgstr "Slett merknader" #. hCFsk #: PresentationMinimizer.xcu @@ -1354,7 +1354,7 @@ "STR_DELETE_HIDDEN_SLIDES\n" "value.text" msgid "Delete hidden ~slides" -msgstr "Slett ~skjulte lysbilder" +msgstr "Slett skjulte lysbilder" #. zWbjb #: PresentationMinimizer.xcu @@ -1364,7 +1364,7 @@ "STR_CUSTOM_SHOW\n" "value.text" msgid "Delete slides that are not used for the ~custom slide show" -msgstr "Sletter lysbilder som ikke blir brukt i den ~tilpassede lysbildeframvisninga" +msgstr "Sletter lysbilder som ikke blir brukt i den tilpassede lysbildeframvisningen" #. yMqF5 #: PresentationMinimizer.xcu @@ -1404,7 +1404,7 @@ "STR_AUTOMATICALLY_OPEN\n" "value.text" msgid "~Open newly created presentation" -msgstr "~Åpne nylig opprettet presentasjon" +msgstr "Åpne nylig opprettet presentasjon" #. BVd3b #: PresentationMinimizer.xcu @@ -1414,7 +1414,7 @@ "STR_SAVE_SETTINGS\n" "value.text" msgid "~Save settings as" -msgstr "~Lagre innstillingene som" +msgstr "Lagre innstillingene som" #. DBFmU #: PresentationMinimizer.xcu @@ -1424,7 +1424,7 @@ "STR_SAVE_AS\n" "value.text" msgid "~Duplicate presentation before applying changes" -msgstr "~Lag en kopi av presentasjonen før endringene blir lagt til" +msgstr "Lag en kopi av presentasjonen før endringene blir lagt til" #. 3pPUW #: PresentationMinimizer.xcu @@ -1624,7 +1624,7 @@ "Name\n" "value.text" msgid "Email (96 DPI): minimize document size for sharing" -msgstr "" +msgstr "E-post (96 DPI): minimer dokumentstørrelsen for deling" #. mzFCD #: PresentationMinimizer.xcu @@ -1734,7 +1734,7 @@ "Text\n" "value.text" msgid "Restart" -msgstr "" +msgstr "Omstart" #. zYCFa #: PresenterScreen.xcu @@ -1744,7 +1744,7 @@ "Text\n" "value.text" msgid "Exchange" -msgstr "" +msgstr "Exchange" #. hAAEf #: PresenterScreen.xcu @@ -1754,7 +1754,7 @@ "Text\n" "value.text" msgid "Help" -msgstr "" +msgstr "Hjelp" #. AqwYo #: PresenterScreen.xcu @@ -1984,7 +1984,7 @@ "Right\n" "value.text" msgid "End slide show" -msgstr "Avslutt lysbildeframvisninga" +msgstr "Avslutt lysbildeframvisningen" #. 639XX #: PresenterScreen.xcu @@ -2024,7 +2024,7 @@ "Right\n" "value.text" msgid "Grow/Shrink size of notes font" -msgstr "Øk eller minsk størrelsen på skrifta for merknader" +msgstr "Øk eller minsk fontstørrelsen for merknader" #. JfMh5 #: PresenterScreen.xcu @@ -2514,7 +2514,7 @@ "Name\n" "value.text" msgid "ReorderLevel" -msgstr "Gjenbestillingsniva" +msgstr "Bestillingspunkt" #. bqDNZ #: TableWizard.xcu @@ -2524,7 +2524,7 @@ "ShortName\n" "value.text" msgid "ReordLevel" -msgstr "GjenbeNiva" +msgstr "Bestillingspunkt" #. cCJQe #: TableWizard.xcu @@ -2554,7 +2554,7 @@ "Name\n" "value.text" msgid "LeadTime" -msgstr "Leveringstid" +msgstr "Gjenanskaffelsestid" #. A9FA8 #: TableWizard.xcu @@ -2564,7 +2564,7 @@ "ShortName\n" "value.text" msgid "LeadTime" -msgstr "Leveringstid" +msgstr "Gjenanskaffelsestid" #. Q7q7T #: TableWizard.xcu @@ -2574,7 +2574,7 @@ "Name\n" "value.text" msgid "Suppliers" -msgstr "Leverandorer" +msgstr "Leverandører" #. GUsyy #: TableWizard.xcu @@ -2584,7 +2584,7 @@ "Name\n" "value.text" msgid "SupplierID" -msgstr "LeverandorID" +msgstr "LeverandørID" #. 9zuNX #: TableWizard.xcu @@ -2594,7 +2594,7 @@ "ShortName\n" "value.text" msgid "SupplierID" -msgstr "LeverandorID" +msgstr "LeverandørID" #. 3cftq #: TableWizard.xcu @@ -2604,7 +2604,7 @@ "Name\n" "value.text" msgid "SupplierName" -msgstr "Leverandornavn" +msgstr "Leverandørnavn" #. gy5rG #: TableWizard.xcu @@ -2614,7 +2614,7 @@ "ShortName\n" "value.text" msgid "SupplName" -msgstr "LevNavn" +msgstr "Leverandørnavn" #. vTPJj #: TableWizard.xcu @@ -2634,7 +2634,7 @@ "ShortName\n" "value.text" msgid "ContctName" -msgstr "KontktNavn" +msgstr "Kontaktnavn" #. VP49N #: TableWizard.xcu @@ -2654,7 +2654,7 @@ "ShortName\n" "value.text" msgid "ContctTitl" -msgstr "KontktTitl" +msgstr "Kontakttittel" #. tsUqe #: TableWizard.xcu @@ -2724,7 +2724,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "DelstatProvins" +msgstr "Delstat/Provins" #. L2kTq #: TableWizard.xcu @@ -2734,7 +2734,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "StatProv" +msgstr "Stat/Provins" #. 7vbwU #: TableWizard.xcu @@ -2744,7 +2744,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "LandRegion" +msgstr "Land/Region" #. DD6BN #: TableWizard.xcu @@ -2754,7 +2754,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "LandRegion" +msgstr "Land/Region" #. S54BS #: TableWizard.xcu @@ -2804,7 +2804,7 @@ "Name\n" "value.text" msgid "PaymentTerms" -msgstr "Betalingsvilkar" +msgstr "Betalingsvilkår" #. 6o6vG #: TableWizard.xcu @@ -2814,7 +2814,7 @@ "ShortName\n" "value.text" msgid "PaymntTerm" -msgstr "BetVilkar" +msgstr "Betalingsvilkår" #. JyCyG #: TableWizard.xcu @@ -2824,7 +2824,7 @@ "Name\n" "value.text" msgid "EmailAddress" -msgstr "Epostadresse" +msgstr "E-postadresse" #. zwHpn #: TableWizard.xcu @@ -2834,7 +2834,7 @@ "ShortName\n" "value.text" msgid "EmailAddr" -msgstr "Epostadr" +msgstr "E-postadresse" #. hADDx #: TableWizard.xcu @@ -2864,7 +2864,7 @@ "Name\n" "value.text" msgid "MailingList" -msgstr "Epostliste" +msgstr "E-postliste" #. jky3u #: TableWizard.xcu @@ -2874,7 +2874,7 @@ "Name\n" "value.text" msgid "MailingListID" -msgstr "EpostlisteID" +msgstr "E-postlisteID" #. TTFZc #: TableWizard.xcu @@ -2884,7 +2884,7 @@ "ShortName\n" "value.text" msgid "MailingID" -msgstr "EpostID" +msgstr "E-postID" #. pyP93 #: TableWizard.xcu @@ -3024,7 +3024,7 @@ "ShortName\n" "value.text" msgid "OrgName" -msgstr "OrgNavn" +msgstr "Organisasjonsnavn" #. 6QYSH #: TableWizard.xcu @@ -3094,7 +3094,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "DelstatProvins" +msgstr "Delstat/Provins" #. bCtze #: TableWizard.xcu @@ -3104,7 +3104,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "StatProv" +msgstr "Stat/Prov" #. opTNs #: TableWizard.xcu @@ -3114,7 +3114,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "LandRegion" +msgstr "Land/Region" #. yKEd8 #: TableWizard.xcu @@ -3124,7 +3124,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "LandRegion" +msgstr "Land/Region" #. PRTbv #: TableWizard.xcu @@ -3254,7 +3254,7 @@ "Name\n" "value.text" msgid "DateUpdated" -msgstr "DatoOppdatert" +msgstr "Dato Oppdatert" #. UsaZB #: TableWizard.xcu @@ -3264,7 +3264,7 @@ "ShortName\n" "value.text" msgid "DateUpdate" -msgstr "DatoOppdat" +msgstr "Dato Oppdatert" #. Hp4rj #: TableWizard.xcu @@ -3274,7 +3274,7 @@ "Name\n" "value.text" msgid "DateJoined" -msgstr "DatoInnmelding" +msgstr "Dato Innnmeldt" #. T5HPk #: TableWizard.xcu @@ -3284,7 +3284,7 @@ "ShortName\n" "value.text" msgid "DateJoined" -msgstr "DatoInnmelding" +msgstr "Dato Innnmeldt" #. fxgMF #: TableWizard.xcu @@ -3304,7 +3304,7 @@ "ShortName\n" "value.text" msgid "MemberStat" -msgstr "MedlemStat" +msgstr "Medlemskapsstatus" #. 6aNhJ #: TableWizard.xcu @@ -3314,7 +3314,7 @@ "Name\n" "value.text" msgid "PledgeAmount" -msgstr "Pantebelop" +msgstr "Pantebeløp" #. BrLPP #: TableWizard.xcu @@ -3324,7 +3324,7 @@ "ShortName\n" "value.text" msgid "PledgeAmnt" -msgstr "Pantebelop" +msgstr "Pantebeløp" #. Apdz9 #: TableWizard.xcu @@ -3334,7 +3334,7 @@ "Name\n" "value.text" msgid "PledgePaidDate" -msgstr "PantBetaltDato" +msgstr "Pantebeløp Betalt Dato" #. gQ9Ds #: TableWizard.xcu @@ -3344,7 +3344,7 @@ "ShortName\n" "value.text" msgid "PldgPdDate" -msgstr "PantBetDat" +msgstr "Pantebeløp Betalt Dato" #. mLczE #: TableWizard.xcu @@ -3354,7 +3354,7 @@ "Name\n" "value.text" msgid "DuesAmount" -msgstr "Gjeldsbelop" +msgstr "Skyldig Beløp" #. QxGp6 #: TableWizard.xcu @@ -3364,7 +3364,7 @@ "ShortName\n" "value.text" msgid "DuesAmount" -msgstr "Gjeldsbelop" +msgstr "Skyldig Beløp" #. fzG4p #: TableWizard.xcu @@ -3374,7 +3374,7 @@ "Name\n" "value.text" msgid "DuesPaidDate" -msgstr "GjeldBetaltDato" +msgstr "Betalingsdato Skyldig Beløp" #. XGFHH #: TableWizard.xcu @@ -3384,7 +3384,7 @@ "ShortName\n" "value.text" msgid "DuesPdDate" -msgstr "GjldBetDat" +msgstr "Betalingsdato Skyldig Beløp" #. SJrpn #: TableWizard.xcu @@ -3584,7 +3584,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "DelstatProvins" +msgstr "Delstat/Provins" #. FmUCY #: TableWizard.xcu @@ -3594,7 +3594,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "StatProv" +msgstr "Stat/Provins" #. CFsHm #: TableWizard.xcu @@ -3604,7 +3604,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "LandRegion" +msgstr "Land/Region" #. JTFSE #: TableWizard.xcu @@ -3614,7 +3614,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "LandRegion" +msgstr "Land/Region" #. 2TV22 #: TableWizard.xcu @@ -3684,7 +3684,7 @@ "Name\n" "value.text" msgid "EmailAddress" -msgstr "Epostadresse" +msgstr "E-postadresse" #. dUmtu #: TableWizard.xcu @@ -3694,7 +3694,7 @@ "ShortName\n" "value.text" msgid "EmailAddr" -msgstr "Epostadr" +msgstr "E-postadr" #. juinG #: TableWizard.xcu @@ -3724,7 +3724,7 @@ "Name\n" "value.text" msgid "Birthdate" -msgstr "Fodselsdag" +msgstr "Fødselsdag" #. DaDRX #: TableWizard.xcu @@ -3734,7 +3734,7 @@ "ShortName\n" "value.text" msgid "Birthdate" -msgstr "Fodselsdag" +msgstr "Fødselsdag" #. LHvdQ #: TableWizard.xcu @@ -3754,7 +3754,7 @@ "ShortName\n" "value.text" msgid "CntctTypID" -msgstr "KntktTypID" +msgstr "KontakttypeID" #. MG2BR #: TableWizard.xcu @@ -3784,7 +3784,7 @@ "Name\n" "value.text" msgid "SpouseName" -msgstr "EktefelleNavn" +msgstr "Ektefellenavn" #. CjuGx #: TableWizard.xcu @@ -3794,7 +3794,7 @@ "ShortName\n" "value.text" msgid "SpouseName" -msgstr "EktefelleNavn" +msgstr "Ektefellenavn" #. PmKQg #: TableWizard.xcu @@ -3814,7 +3814,7 @@ "ShortName\n" "value.text" msgid "SpouseIntr" -msgstr "EktefInter" +msgstr "EktefIntereresser" #. PMAZG #: TableWizard.xcu @@ -3834,7 +3834,7 @@ "ShortName\n" "value.text" msgid "CntctInter" -msgstr "KntktInter" +msgstr "KontaktInteresser" #. WHCBa #: TableWizard.xcu @@ -3844,7 +3844,7 @@ "Name\n" "value.text" msgid "ChildrenNames" -msgstr "NavnBarn" +msgstr "Navn på Barn" #. CqEcs #: TableWizard.xcu @@ -3854,7 +3854,7 @@ "ShortName\n" "value.text" msgid "ChildName" -msgstr "NavnBarn" +msgstr "Navn på Barn" #. MoQe6 #: TableWizard.xcu @@ -4084,7 +4084,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "StatProv" +msgstr "Stat/Provins" #. BwFKY #: TableWizard.xcu @@ -4094,7 +4094,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "LandRegion" +msgstr "Land/Region" #. MCsgJ #: TableWizard.xcu @@ -4104,7 +4104,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "LandRegion" +msgstr "Land/Region" #. h9GMq #: TableWizard.xcu @@ -4174,7 +4174,7 @@ "Name\n" "value.text" msgid "EmailAddress" -msgstr "Epostadresse" +msgstr "E-postadresse" #. KCCf2 #: TableWizard.xcu @@ -4184,7 +4184,7 @@ "ShortName\n" "value.text" msgid "EmailAddr" -msgstr "Epostadr" +msgstr "E-postadr" #. TAEpB #: TableWizard.xcu @@ -4364,7 +4364,7 @@ "Name\n" "value.text" msgid "SocialSecurityNumber" -msgstr "Fodselsnummer" +msgstr "Fødselsnummer" #. xXS3F #: TableWizard.xcu @@ -4374,7 +4374,7 @@ "ShortName\n" "value.text" msgid "SocSecNo" -msgstr "Fodselsnr" +msgstr "Fødselsnr" #. bgGyq #: TableWizard.xcu @@ -4404,7 +4404,7 @@ "Name\n" "value.text" msgid "EmailAddress" -msgstr "Epostadresse" +msgstr "E-postadresse" #. bWDH9 #: TableWizard.xcu @@ -4414,7 +4414,7 @@ "ShortName\n" "value.text" msgid "EmailAddr" -msgstr "Epostadr" +msgstr "E-postadr" #. Ho6id #: TableWizard.xcu @@ -4504,7 +4504,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "DelstatProvins" +msgstr "Delstat/Provins" #. BaA5m #: TableWizard.xcu @@ -4514,7 +4514,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "StatProv" +msgstr "Stat/Provins" #. GFCJY #: TableWizard.xcu @@ -4524,7 +4524,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "LandRegion" +msgstr "Land/Region" #. NtxhJ #: TableWizard.xcu @@ -4534,7 +4534,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "LandRegion" +msgstr "Land/Region" #. VJN6T #: TableWizard.xcu @@ -4604,7 +4604,7 @@ "Name\n" "value.text" msgid "Birthdate" -msgstr "Fodselsdag" +msgstr "Fødselsdag" #. FgEa7 #: TableWizard.xcu @@ -4614,7 +4614,7 @@ "ShortName\n" "value.text" msgid "Birthdate" -msgstr "Fodselsdag" +msgstr "Fødselsdag" #. EqHuQ #: TableWizard.xcu @@ -4624,7 +4624,7 @@ "Name\n" "value.text" msgid "DateHired" -msgstr "DatoAnsatt" +msgstr "Dato Ansatt" #. eWU8R #: TableWizard.xcu @@ -4634,7 +4634,7 @@ "ShortName\n" "value.text" msgid "DateHired" -msgstr "DatoAnsatt" +msgstr "Dato Ansatt" #. xTA4A #: TableWizard.xcu @@ -4664,7 +4664,7 @@ "Name\n" "value.text" msgid "Salary" -msgstr "Lonn" +msgstr "Lønn" #. fCBB2 #: TableWizard.xcu @@ -4674,7 +4674,7 @@ "ShortName\n" "value.text" msgid "Salary" -msgstr "Lonn" +msgstr "Lønn" #. tGEUq #: TableWizard.xcu @@ -4744,7 +4744,7 @@ "Name\n" "value.text" msgid "SpouseName" -msgstr "EktefelleNavn" +msgstr "Ektefellenavn" #. eEDFP #: TableWizard.xcu @@ -4754,7 +4754,7 @@ "ShortName\n" "value.text" msgid "SpouseName" -msgstr "EktefelleNavn" +msgstr "Ektefellenavn" #. xBGLG #: TableWizard.xcu @@ -4914,7 +4914,7 @@ "Name\n" "value.text" msgid "PurchaseOrderNumber" -msgstr "Innkjopsordrenummer" +msgstr "Innkjøpsordrenummer" #. pmtBC #: TableWizard.xcu @@ -4934,7 +4934,7 @@ "Name\n" "value.text" msgid "RequiredByDate" -msgstr "TrengsInnenDato" +msgstr "Behovsdato" #. 3G86K #: TableWizard.xcu @@ -4944,7 +4944,7 @@ "ShortName\n" "value.text" msgid "RequirDate" -msgstr "TrengsDato" +msgstr "Behovsdato" #. 8hDN3 #: TableWizard.xcu @@ -4954,7 +4954,7 @@ "Name\n" "value.text" msgid "PromisedByDate" -msgstr "LovetInnenDato" +msgstr "LovetInnen Dato" #. mGe99 #: TableWizard.xcu @@ -4964,7 +4964,7 @@ "ShortName\n" "value.text" msgid "PromisDate" -msgstr "LovetDato" +msgstr "Lovet Dato" #. PajGG #: TableWizard.xcu @@ -4974,7 +4974,7 @@ "Name\n" "value.text" msgid "ShipName" -msgstr "LeveringNavn" +msgstr "Leveringsnavn" #. bs2Bn #: TableWizard.xcu @@ -4984,7 +4984,7 @@ "ShortName\n" "value.text" msgid "ShipName" -msgstr "LeveringNavn" +msgstr "Leveringsnavn" #. A4S24 #: TableWizard.xcu @@ -4994,7 +4994,7 @@ "Name\n" "value.text" msgid "ShipAddress" -msgstr "LeveringAdresse" +msgstr "Leveringsadresse" #. 9TZph #: TableWizard.xcu @@ -5014,7 +5014,7 @@ "Name\n" "value.text" msgid "ShipCity" -msgstr "LeveringPoststed" +msgstr "Leverin/gPoststed" #. 5sLAQ #: TableWizard.xcu @@ -5024,7 +5024,7 @@ "ShortName\n" "value.text" msgid "ShipCity" -msgstr "LeveringPoststed" +msgstr "Levering/Poststed" #. ChHem #: TableWizard.xcu @@ -5034,7 +5034,7 @@ "Name\n" "value.text" msgid "ShipStateOrProvince" -msgstr "LeveringStatProvins" +msgstr "Leverings Stat/Provins" #. h96Fc #: TableWizard.xcu @@ -5044,7 +5044,7 @@ "ShortName\n" "value.text" msgid "ShpStatPro" -msgstr "LevStatPro" +msgstr "LevStat/Provins" #. DRUyL #: TableWizard.xcu @@ -5054,7 +5054,7 @@ "Name\n" "value.text" msgid "ShipPostalCode" -msgstr "LeveringPostnummer" +msgstr "Leveringspostnummer" #. RxAGo #: TableWizard.xcu @@ -5074,7 +5074,7 @@ "Name\n" "value.text" msgid "ShipCountryOrRegion" -msgstr "LeveringLandRegion" +msgstr "LeveringsLand/Region" #. u2r5G #: TableWizard.xcu @@ -5094,7 +5094,7 @@ "Name\n" "value.text" msgid "ShipPhoneNumber" -msgstr "LeveringTelefon" +msgstr "Leveringstelefon" #. ZDMkb #: TableWizard.xcu @@ -5134,7 +5134,7 @@ "Name\n" "value.text" msgid "ShippingMethodID" -msgstr "LeveringMetodeID" +msgstr "LeveringsmetodeID" #. kMCzA #: TableWizard.xcu @@ -6214,7 +6214,7 @@ "Name\n" "value.text" msgid "PaymentTerms" -msgstr "Betalingsvilkar" +msgstr "Betalingsvilkår" #. vkiyA #: TableWizard.xcu @@ -6224,7 +6224,7 @@ "ShortName\n" "value.text" msgid "PaymntTerm" -msgstr "BetVilkar" +msgstr "BetVilkår" #. GkSif #: TableWizard.xcu @@ -6324,7 +6324,7 @@ "Name\n" "value.text" msgid "PurchaseOrderNumber" -msgstr "Innkjopsordrenummer" +msgstr "Innkjøpsordrenummer" #. 2kZB7 #: TableWizard.xcu @@ -6654,7 +6654,7 @@ "Name\n" "value.text" msgid "RequiredStaffing" -msgstr "NodvendigPersonell" +msgstr "NødvendigPersonell" #. FwAjV #: TableWizard.xcu @@ -6664,7 +6664,7 @@ "ShortName\n" "value.text" msgid "ReqStaffng" -msgstr "NodvPersnl" +msgstr "NødvPersnl" #. osBZr #: TableWizard.xcu @@ -7264,7 +7264,7 @@ "Name\n" "value.text" msgid "DatePurchased" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. 2KarB #: TableWizard.xcu @@ -7274,7 +7274,7 @@ "ShortName\n" "value.text" msgid "DatePurchd" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. CJJ3F #: TableWizard.xcu @@ -7344,7 +7344,7 @@ "Name\n" "value.text" msgid "PaymentMethod" -msgstr "BetalingMate" +msgstr "BetalingMåte" #. xd7GG #: TableWizard.xcu @@ -7354,7 +7354,7 @@ "ShortName\n" "value.text" msgid "PaymntMeth" -msgstr "BetalMate" +msgstr "BetalMåte" #. rNTCg #: TableWizard.xcu @@ -7574,7 +7574,7 @@ "Name\n" "value.text" msgid "DestinationAddress" -msgstr "LeveringAdresse" +msgstr "LeveringsAdresse" #. 3rkj7 #: TableWizard.xcu @@ -7614,7 +7614,7 @@ "Name\n" "value.text" msgid "DestinationStateProvince" -msgstr "LeveringDelstatProvins" +msgstr "LeveringDelstat/Provins" #. uLVeW #: TableWizard.xcu @@ -7654,7 +7654,7 @@ "Name\n" "value.text" msgid "DestinationCountryRegion" -msgstr "LeveringLandRegion" +msgstr "LeveringLand/Region" #. N53eE #: TableWizard.xcu @@ -7664,7 +7664,7 @@ "ShortName\n" "value.text" msgid "DestCouReg" -msgstr "LevLandReg" +msgstr "LevLand/Reg" #. RA6nc #: TableWizard.xcu @@ -7674,7 +7674,7 @@ "Name\n" "value.text" msgid "ArrivalDate" -msgstr "FramkomstDato" +msgstr "AnkomstDato" #. zQCnq #: TableWizard.xcu @@ -7684,7 +7684,7 @@ "ShortName\n" "value.text" msgid "ArrivlDate" -msgstr "FramkDato" +msgstr "AnkomstkDato" #. tZD6q #: TableWizard.xcu @@ -7694,7 +7694,7 @@ "Name\n" "value.text" msgid "ArrivalTime" -msgstr "FramkomstTid" +msgstr "AnkomstTid" #. GxXJm #: TableWizard.xcu @@ -7704,7 +7704,7 @@ "ShortName\n" "value.text" msgid "ArrivlTime" -msgstr "FramkTid" +msgstr "AnkomstTid" #. 62BEZ #: TableWizard.xcu @@ -7714,7 +7714,7 @@ "Name\n" "value.text" msgid "CurrentLocation" -msgstr "NaverendeSted" +msgstr "NåverendeSted" #. BzFAL #: TableWizard.xcu @@ -7724,7 +7724,7 @@ "ShortName\n" "value.text" msgid "CurrLocatn" -msgstr "NavSted" +msgstr "NåvSted" #. 5FHB5 #: TableWizard.xcu @@ -8144,7 +8144,7 @@ "Name\n" "value.text" msgid "DateAcquired" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. 3NJUQ #: TableWizard.xcu @@ -8154,7 +8154,7 @@ "ShortName\n" "value.text" msgid "DateAcquir" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. bxEAA #: TableWizard.xcu @@ -8184,7 +8184,7 @@ "Name\n" "value.text" msgid "PurchasePrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. 8jaGC #: TableWizard.xcu @@ -8194,7 +8194,7 @@ "ShortName\n" "value.text" msgid "PurchPrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. bzZHg #: TableWizard.xcu @@ -8574,7 +8574,7 @@ "Name\n" "value.text" msgid "BuySellDate" -msgstr "KjopSalgDato" +msgstr "KjøpSalgDato" #. JcXF2 #: TableWizard.xcu @@ -8594,7 +8594,7 @@ "Name\n" "value.text" msgid "BuySellPrice" -msgstr "KjopSalgPris" +msgstr "KjøpSalgPris" #. 4XsGs #: TableWizard.xcu @@ -9064,7 +9064,7 @@ "Name\n" "value.text" msgid "StateOrProvince" -msgstr "DelstatProvins" +msgstr "Delstat/Provins" #. LfFya #: TableWizard.xcu @@ -9074,7 +9074,7 @@ "ShortName\n" "value.text" msgid "StateProvi" -msgstr "StatProv" +msgstr "Stat/Prov" #. 7AFVw #: TableWizard.xcu @@ -9084,7 +9084,7 @@ "Name\n" "value.text" msgid "CountryOrRegion" -msgstr "LandRegion" +msgstr "Land/Region" #. DyUE4 #: TableWizard.xcu @@ -9094,7 +9094,7 @@ "ShortName\n" "value.text" msgid "CountryReg" -msgstr "LandRegion" +msgstr "Land/Region" #. bieQa #: TableWizard.xcu @@ -9164,7 +9164,7 @@ "Name\n" "value.text" msgid "EmailAddress" -msgstr "Epostadresse" +msgstr "E-postadresse" #. geXZV #: TableWizard.xcu @@ -9174,7 +9174,7 @@ "ShortName\n" "value.text" msgid "EmailAddr" -msgstr "Epostadr" +msgstr "E-postadr" #. VPPve #: TableWizard.xcu @@ -9324,7 +9324,7 @@ "Name\n" "value.text" msgid "ChildrenNames" -msgstr "NavnBarn" +msgstr "Navn på Barn" #. 8nXA5 #: TableWizard.xcu @@ -9334,7 +9334,7 @@ "ShortName\n" "value.text" msgid "ChildName" -msgstr "NavnBarn" +msgstr "Navn på Barn" #. 5WKfX #: TableWizard.xcu @@ -9614,7 +9614,7 @@ "Name\n" "value.text" msgid "DatePurchased" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. GVCU2 #: TableWizard.xcu @@ -9624,7 +9624,7 @@ "ShortName\n" "value.text" msgid "DatePurch" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. bxNEc #: TableWizard.xcu @@ -9634,7 +9634,7 @@ "Name\n" "value.text" msgid "PlacePurchased" -msgstr "StedKjopt" +msgstr "StedKjøpt" #. gAqTG #: TableWizard.xcu @@ -9644,7 +9644,7 @@ "ShortName\n" "value.text" msgid "PlacePurch" -msgstr "StedKjopt" +msgstr "StedKjøpt" #. mMqaX #: TableWizard.xcu @@ -9654,7 +9654,7 @@ "Name\n" "value.text" msgid "PurchasePrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. EuvBB #: TableWizard.xcu @@ -9664,7 +9664,7 @@ "ShortName\n" "value.text" msgid "PurchPrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. wG7ZV #: TableWizard.xcu @@ -10054,7 +10054,7 @@ "Name\n" "value.text" msgid "CommonName" -msgstr "VanligNavn" +msgstr "Vanlig Navn" #. 23DVu #: TableWizard.xcu @@ -10064,7 +10064,7 @@ "ShortName\n" "value.text" msgid "CommonName" -msgstr "VanligNavn" +msgstr "Vanlig Navn" #. QEn6m #: TableWizard.xcu @@ -10214,7 +10214,7 @@ "Name\n" "value.text" msgid "DatePurchased" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. SbgFe #: TableWizard.xcu @@ -10224,7 +10224,7 @@ "ShortName\n" "value.text" msgid "DatePurch" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. kiCoe #: TableWizard.xcu @@ -10234,7 +10234,7 @@ "Name\n" "value.text" msgid "PlacePurchased" -msgstr "StedKjopt" +msgstr "StedKjøpt" #. ACAvm #: TableWizard.xcu @@ -10244,7 +10244,7 @@ "ShortName\n" "value.text" msgid "PlacePurch" -msgstr "StedKjopt" +msgstr "StedKjøpt" #. BoJie #: TableWizard.xcu @@ -10594,7 +10594,7 @@ "ShortName\n" "value.text" msgid "PrintSize" -msgstr "PapirkopiStorrelse" +msgstr "Utskriftsstørrelse" #. NTgCV #: TableWizard.xcu @@ -10734,7 +10734,7 @@ "Name\n" "value.text" msgid "FilmExpirationDate" -msgstr "FilmUtlopsdato" +msgstr "FilmUtløpsdato" #. G2igR #: TableWizard.xcu @@ -11044,7 +11044,7 @@ "Name\n" "value.text" msgid "DateAcquired" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. Azwoc #: TableWizard.xcu @@ -11054,7 +11054,7 @@ "ShortName\n" "value.text" msgid "DateAcquir" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. XtLap #: TableWizard.xcu @@ -11064,7 +11064,7 @@ "Name\n" "value.text" msgid "PurchasedAt" -msgstr "KjoptDato" +msgstr "KjøptDato" #. MtwpC #: TableWizard.xcu @@ -11074,7 +11074,7 @@ "ShortName\n" "value.text" msgid "PurchaseAt" -msgstr "KjoptDato" +msgstr "KjøptDato" #. buKBv #: TableWizard.xcu @@ -11084,7 +11084,7 @@ "Name\n" "value.text" msgid "PurchasePrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. rgihL #: TableWizard.xcu @@ -11094,7 +11094,7 @@ "ShortName\n" "value.text" msgid "PurchPrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. uEcGU #: TableWizard.xcu @@ -11374,7 +11374,7 @@ "Name\n" "value.text" msgid "PurchasedAt" -msgstr "KjoptDato" +msgstr "KjøptDato" #. gxpDt #: TableWizard.xcu @@ -11384,7 +11384,7 @@ "ShortName\n" "value.text" msgid "PurchaseAt" -msgstr "KjoptDato" +msgstr "KjøptDato" #. NyCdE #: TableWizard.xcu @@ -11394,7 +11394,7 @@ "Name\n" "value.text" msgid "PurchasePrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. QueuB #: TableWizard.xcu @@ -11404,7 +11404,7 @@ "ShortName\n" "value.text" msgid "PurchPrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. a9bYD #: TableWizard.xcu @@ -11544,7 +11544,7 @@ "Name\n" "value.text" msgid "CopyrightYear" -msgstr "OpphavsrettAr" +msgstr "Opphavsrettsår" #. GBAev #: TableWizard.xcu @@ -11554,7 +11554,7 @@ "ShortName\n" "value.text" msgid "CpyrightYr" -msgstr "OpphRettAr" +msgstr "Opphavsrettsår" #. 6fSz2 #: TableWizard.xcu @@ -11664,7 +11664,7 @@ "Name\n" "value.text" msgid "DatePurchased" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. fEkFA #: TableWizard.xcu @@ -11674,7 +11674,7 @@ "ShortName\n" "value.text" msgid "DatePurch" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. oT97C #: TableWizard.xcu @@ -11684,7 +11684,7 @@ "Name\n" "value.text" msgid "PurchasedAt" -msgstr "KjoptDato" +msgstr "KjøptDato" #. D8R2n #: TableWizard.xcu @@ -11694,7 +11694,7 @@ "ShortName\n" "value.text" msgid "PurchaseAt" -msgstr "KjoptDato" +msgstr "KjøptDato" #. x7uYL #: TableWizard.xcu @@ -11704,7 +11704,7 @@ "Name\n" "value.text" msgid "PurchasePrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. vxyCR #: TableWizard.xcu @@ -11714,7 +11714,7 @@ "ShortName\n" "value.text" msgid "PurchPrice" -msgstr "Kjopspris" +msgstr "Kjøpspris" #. Wscu7 #: TableWizard.xcu @@ -11744,7 +11744,7 @@ "Name\n" "value.text" msgid "EditionNumber" -msgstr "UtgaveNummer" +msgstr "Utgavenummer" #. beBBb #: TableWizard.xcu @@ -11874,7 +11874,7 @@ "Name\n" "value.text" msgid "Birthdate" -msgstr "Fodselsdag" +msgstr "Fødselsdag" #. 2HAuD #: TableWizard.xcu @@ -11884,7 +11884,7 @@ "ShortName\n" "value.text" msgid "Birthdate" -msgstr "Fodselsdag" +msgstr "Fødselsdag" #. bRu4G #: TableWizard.xcu @@ -11914,7 +11914,7 @@ "Name\n" "value.text" msgid "DateofDeath" -msgstr "Dodsdag" +msgstr "Dødsdag" #. tCgGF #: TableWizard.xcu @@ -11924,7 +11924,7 @@ "ShortName\n" "value.text" msgid "DatofDeath" -msgstr "Dodsdag" +msgstr "Dødsdag" #. dkGCG #: TableWizard.xcu @@ -12634,7 +12634,7 @@ "Name\n" "value.text" msgid "DateAcquired" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. GWu3Y #: TableWizard.xcu @@ -12644,7 +12644,7 @@ "ShortName\n" "value.text" msgid "DateAcquir" -msgstr "DatoKjopt" +msgstr "DatoKjøpt" #. VLPG6 #: TableWizard.xcu @@ -12654,7 +12654,7 @@ "Name\n" "value.text" msgid "WhichMeal" -msgstr "HvilketMaltid" +msgstr "HvilketMåltid" #. poC95 #: TableWizard.xcu @@ -12664,7 +12664,7 @@ "ShortName\n" "value.text" msgid "WhichMeal" -msgstr "HvilketMaltid" +msgstr "HvilketMåltid" #. BA9KY #: TableWizard.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/readlicense_oo/docs.po libreoffice-7.1.3~rc2/translations/source/nb/readlicense_oo/docs.po --- libreoffice-7.1.2~rc2/translations/source/nb/readlicense_oo/docs.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/readlicense_oo/docs.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-09-09 17:34+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1542916643.000000\n" #. q6Gg3 @@ -230,7 +230,7 @@ "s256we\n" "readmeitem.text" msgid "GTK version 3.20 or higher;" -msgstr "" +msgstr "GTK versjon 3.20 eller høyere;" #. nA9h9 #: readme.xrm @@ -644,7 +644,7 @@ "sdcc32asrc\n" "readmeitem.text" msgid "The Mozilla address book driver requires the SUNWzlib package. This package is not part of the minimum Solaris operating system installation. If you require access to the Mozilla address book, then add this package to your Solaris operating system using the command \"pkgadd\" from the installation CD." -msgstr "Driveren for adresseboken til Mozilla krever pakken SUNWzlib. Denne pakken er ikke en del av minimumsinstallasjonen i operativsystemet Solaris. Dersom du trenger tilgang til adressebokaen i Mozilla, legges denne pakken til operativsystemet med kommandoen pkgadd fra installasjons-CD-en." +msgstr "Driveren for adresseboken til Mozilla krever pakken SUNWzlib. Denne pakken er ikke en del av minimumsinstallasjonen i operativsystemet Solaris. Dersom du trenger tilgang til adresseboken i Mozilla, legges denne pakken til operativsystemet med kommandoen pkgadd fra installasjons-CD-en." #. YFEgC #: readme.xrm @@ -689,7 +689,7 @@ "pji76w\n" "readmeitem.text" msgid "File locking is enabled by default in ${PRODUCTNAME}. On a network that uses the Network File System protocol (NFS), the locking daemon for NFS clients must be active. To disable file locking, edit the soffice script and change the line \"export SAL_ENABLE_FILE_LOCKING\" to \"# export SAL_ENABLE_FILE_LOCKING\". If you disable file locking, the write access of a document is not restricted to the user who first opens the document." -msgstr "Låsing av filer er slått på som standard i ${PRODUCTNAME}. På et nettverk som bruker Network File System protocol (NFS), må låsetjenesten NFS-klienter være aktivert. For å slå av fillåsing, rediger skriptet soffice og endre linja «export SAL_ENABLE_FILE_LOCKING» til «# export SAL_ENABLE_FILE_LOCKING». Hvis låsing av filer slås av, vil skrivetilgangen ikke begrenses til den første brukeren som åpner dokumentet." +msgstr "Låsing av filer er slått på som standard i ${PRODUCTNAME}. På et nettverk som bruker Network File System protocol (NFS), må låsetjenesten NFS-klienter være aktivert. For å slå av fillåsing, rediger skriptet soffice og endre linjen «export SAL_ENABLE_FILE_LOCKING» til «# export SAL_ENABLE_FILE_LOCKING». Hvis låsing av filer slås av, vil skrivetilgangen ikke begrenses til den første brukeren som åpner dokumentet." #. cbpAz #: readme.xrm @@ -716,7 +716,7 @@ "gfh6w1\n" "readmeitem.text" msgid "Problems When Sending Documents as Emails From ${PRODUCTNAME}" -msgstr "" +msgstr "Problemer når du sender dokumenter som e-post fra ${PRODUCTNAME}" #. 2yRMH #: readme.xrm @@ -725,7 +725,7 @@ "pji76w1\n" "readmeitem.text" msgid "When sending a document via 'File - Send - Document as Email' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit https://www.microsoft.com to search the Microsoft Knowledge Base for \"mapi dll\"." -msgstr "" +msgstr "Når du sender et dokument via 'Fil - Send - Dokument som E-Post' eller 'Dokument som PDF Vedlegg', kan det oppstå problemer (program krasjer eller henger seg). Dette skyldes Windows-systemfilen \"Mapi\" (Messaging Application Programming Interface) som forårsaker problemer i noen filversjoner. Dessverre kan ikke problemet begrenses til et bestemt versjonsnummer. For mer informasjon besøk 1 https: //www.microsoft.com2 for å søke i Microsoft Knowledge Base etter \"folder dll\"." #. a426D #: readme.xrm @@ -806,7 +806,7 @@ "gettinginvolved2\n" "readmeitem.text" msgid "The ${PRODUCTNAME} Community would very much benefit from your active participation in the development of this important open source project." -msgstr "${PRODUCTNAME}-miljøet vil ha stor hjelp av at du deltar aktivt i utviklinga av dette viktige fri programvare-prosjektet." +msgstr "${PRODUCTNAME}-miljøet vil ha stor hjelp av at du deltar aktivt i utviklingen av dette viktige fri programvare-prosjektet." #. kAfhp #: readme.xrm diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/reportdesign/messages.po libreoffice-7.1.3~rc2/translations/source/nb/reportdesign/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/reportdesign/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/reportdesign/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-02-21 01:15+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1511369289.000000\n" #. FBVr9 @@ -386,7 +386,7 @@ #: reportdesign/inc/strings.hrc:60 msgctxt "RID_STR_ILLEGAL_POSITION" msgid "This position can not be set. It is invalid." -msgstr "Denne plasseringa er ugyldig." +msgstr "Denne plasseringen er ugyldig." #. R4v2R #: reportdesign/inc/strings.hrc:61 @@ -458,13 +458,13 @@ #: reportdesign/inc/strings.hrc:73 msgctxt "RID_STR_VERTICALALIGN" msgid "Vert. Alignment" -msgstr "Loddrett justering" +msgstr "Vertikal justering" #. Nm4Tr #: reportdesign/inc/strings.hrc:74 msgctxt "RID_STR_PARAADJUST" msgid "Horz. Alignment" -msgstr "Vannrett justering" +msgstr "Horisontal justering" #. BkLfC #: reportdesign/inc/strings.hrc:75 @@ -633,7 +633,7 @@ #: reportdesign/inc/strings.hrc:104 msgctxt "STR_RPT_LABEL" msgid "~Report name" -msgstr "~Rapportnavn" +msgstr "Rapportnavn" #. QeVn7 #: reportdesign/inc/strings.hrc:105 @@ -919,13 +919,13 @@ #: reportdesign/inc/strings.hrc:157 msgctxt "STR_RPT_HELP_HEADER" msgid "Display a header for this group?" -msgstr "Vis en topptekst for denne gruppa?" +msgstr "Vis en topptekst for denne gruppen?" #. 2eKET #: reportdesign/inc/strings.hrc:158 msgctxt "STR_RPT_HELP_FOOTER" msgid "Display a footer for this group?" -msgstr "Vis en bunntekst for denne gruppa?" +msgstr "Vis en bunntekst for denne gruppen?" #. DNABi #: reportdesign/inc/strings.hrc:159 @@ -943,7 +943,7 @@ #: reportdesign/inc/strings.hrc:161 msgctxt "STR_RPT_HELP_KEEP" msgid "Keep group together on one page?" -msgstr "Hold gruppa sammen på én side?" +msgstr "Hold gruppen sammen på én side?" #. 2FHLD #: reportdesign/inc/strings.hrc:162 @@ -981,13 +981,13 @@ #: reportdesign/inc/strings.hrc:172 msgctxt "RID_STR_GROUP_HEADER" msgid "Group Header" -msgstr "Topptekst for gruppa" +msgstr "Topptekst for gruppen" #. u85VE #: reportdesign/inc/strings.hrc:173 msgctxt "RID_STR_GROUP_FOOTER" msgid "Group Footer" -msgstr "Bunntekst for gruppa" +msgstr "Bunntekst for gruppen" #. LaroG #: reportdesign/inc/strings.hrc:174 @@ -1233,19 +1233,19 @@ #: reportdesign/uiconfig/dbreport/ui/datetimedialog.ui:94 msgctxt "datetimedialog|date" msgid "_Include Date" -msgstr "_Ta med dato" +msgstr "Inkluder dato" #. rtFMB #: reportdesign/uiconfig/dbreport/ui/datetimedialog.ui:114 msgctxt "datetimedialog|datelistbox_label" msgid "_Format:" -msgstr "_Format:" +msgstr "Format:" #. DRAAK #: reportdesign/uiconfig/dbreport/ui/datetimedialog.ui:126 msgctxt "datetimedialog|time" msgid "Include _Time" -msgstr "Ta med _klokkeslett" +msgstr "Inkluder klokkeslett" #. jWoqY #: reportdesign/uiconfig/dbreport/ui/datetimedialog.ui:146 @@ -1347,7 +1347,7 @@ #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:240 msgctxt "floatingsort|label8" msgid "Group Footer" -msgstr "Bunntekst for gruppa" +msgstr "Bunntekst for gruppen" #. GWWsG #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:254 @@ -1401,7 +1401,7 @@ #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:332 msgctxt "floatingsort|keep" msgid "Whole Group" -msgstr "Hele gruppa" +msgstr "Hele gruppen" #. uCpDA #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:333 @@ -1443,7 +1443,7 @@ #: reportdesign/uiconfig/dbreport/ui/groupsortmenu.ui:12 msgctxt "groupsortmenu|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. qYJKV #: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:12 @@ -1479,7 +1479,7 @@ #: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:70 msgctxt "navigatormenu|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. 7yvyd #: reportdesign/uiconfig/dbreport/ui/pagedialog.ui:8 @@ -1509,13 +1509,13 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:105 msgctxt "pagenumberdialog|pagen" msgid "_Page N" -msgstr "_Side N" +msgstr "Side N" #. MpNXo #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:122 msgctxt "pagenumberdialog|pagenofm" msgid "Page _N of M" -msgstr "Side _N av M" +msgstr "Side N av M" #. 2wFXb #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:145 @@ -1527,13 +1527,13 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:183 msgctxt "pagenumberdialog|toppage" msgid "_Top of Page (Header)" -msgstr "_Øverst på sida (topptekst)" +msgstr "Øverst på siden (topptekst)" #. Bt5Xv #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:200 msgctxt "pagenumberdialog|bottompage" msgid "_Bottom of Page (Footer)" -msgstr "Nederst på sida (bunnntekst)" +msgstr "Nederst på siden (bunnntekst)" #. eLQVW #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:224 @@ -1563,13 +1563,13 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:282 msgctxt "pagenumberdialog|alignment_label" msgid "_Alignment:" -msgstr "_Justering:" +msgstr "Justering:" #. yWyC7 #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:294 msgctxt "pagenumberdialog|shownumberonfirstpage" msgid "Show Number on First Page" -msgstr "Vis sidetall på den første sida" +msgstr "Vis sidetall på den første siden" #. B7qwT #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:316 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/sc/messages.po libreoffice-7.1.3~rc2/translations/source/nb/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-03 23:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563900008.000000\n" #. kBovX @@ -642,7 +642,7 @@ "Do you want the first line to be used as column header?" msgstr "" "Dette området inneholder ingen kolonneoverskrifter.\n" -"Vil du bruke den første linja som overskrift?" +"Vil du bruke den første linjen som overskrift?" #. W8DjC #: sc/inc/globstr.hrc:127 @@ -702,7 +702,7 @@ #: sc/inc/globstr.hrc:136 msgctxt "STR_MSSG_SOLVE_0" msgid "Goal Seek succeeded. Result: " -msgstr "Målsøkinga lykkes. Resultat: " +msgstr "Målsøkingen lykkes. Resultat: " #. nLBkx #: sc/inc/globstr.hrc:137 @@ -714,7 +714,7 @@ msgstr "" "\n" "\n" -"Sett inn resultatet i variabelcella?" +"Sett inn resultatet i variabelcellen?" #. 7fkiC #: sc/inc/globstr.hrc:138 @@ -736,7 +736,7 @@ #: sc/inc/globstr.hrc:140 msgctxt "STR_MSSG_SOLVE_4" msgid ") into the variable cell anyway?" -msgstr ") i variabelcella?" +msgstr ") i variabelcellen?" #. qoGmi #: sc/inc/globstr.hrc:141 @@ -1246,7 +1246,7 @@ #: sc/inc/globstr.hrc:235 msgctxt "STR_LONG_ERR_ILL_PAR" msgid "Error in parameter list" -msgstr "Feil i parameterlista" +msgstr "Feil i parameterlisten" #. iJfWD #: sc/inc/globstr.hrc:236 @@ -1306,7 +1306,7 @@ #: sc/inc/globstr.hrc:245 msgctxt "STR_LONG_ERR_NO_CONV" msgid "Error: Calculation does not converge" -msgstr "Feil: Beregninga konvergerer ikke" +msgstr "Feil: Beregningen konvergerer ikke" #. APCfx #. END error constants and error strings. @@ -1469,109 +1469,109 @@ #: sc/inc/globstr.hrc:272 msgctxt "STR_STYLENAME_STANDARD" msgid "Default" -msgstr "" +msgstr "Standard" #. TG9pD #: sc/inc/globstr.hrc:273 msgctxt "STR_STYLENAME_HEADING" msgid "Heading" -msgstr "" +msgstr "Overskrift" #. NM7R3 #: sc/inc/globstr.hrc:274 msgctxt "STR_STYLENAME_HEADING_1" msgid "Heading 1" -msgstr "" +msgstr "Overskrift 1" #. 8XF63 #: sc/inc/globstr.hrc:275 msgctxt "STR_STYLENAME_HEADING_2" msgid "Heading 2" -msgstr "" +msgstr "Overskrift 2" #. WBuWS #: sc/inc/globstr.hrc:276 msgctxt "STR_STYLENAME_TEXT" msgid "Text" -msgstr "" +msgstr "Tekst" #. tMJaD #: sc/inc/globstr.hrc:277 msgctxt "STR_STYLENAME_NOTE" msgid "Note" -msgstr "" +msgstr "Notat" #. Df8xB #: sc/inc/globstr.hrc:278 msgctxt "STR_STYLENAME_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "Fotnote" #. 2hk6H #: sc/inc/globstr.hrc:279 msgctxt "STR_STYLENAME_HYPERLINK" msgid "Hyperlink" -msgstr "" +msgstr "Hyperlenke" #. aeksB #: sc/inc/globstr.hrc:280 msgctxt "STR_STYLENAME_STATUS" msgid "Status" -msgstr "" +msgstr "Status" #. pxAhk #: sc/inc/globstr.hrc:281 msgctxt "STR_STYLENAME_GOOD" msgid "Good" -msgstr "" +msgstr "God" #. Ebk8F #: sc/inc/globstr.hrc:282 msgctxt "STR_STYLENAME_NEUTRAL" msgid "Neutral" -msgstr "" +msgstr "Nøytral" #. FdWhD #: sc/inc/globstr.hrc:283 msgctxt "STR_STYLENAME_BAD" msgid "Bad" -msgstr "" +msgstr "Dårlig" #. t6f8W #: sc/inc/globstr.hrc:284 msgctxt "STR_STYLENAME_WARNING" msgid "Warning" -msgstr "" +msgstr "Advarsel" #. 99BgJ #: sc/inc/globstr.hrc:285 msgctxt "STR_STYLENAME_ERROR" msgid "Error" -msgstr "" +msgstr "Feil" #. yGAVF #: sc/inc/globstr.hrc:286 msgctxt "STR_STYLENAME_ACCENT" msgid "Accent" -msgstr "" +msgstr "Utheving" #. fw24e #: sc/inc/globstr.hrc:287 msgctxt "STR_STYLENAME_ACCENT_1" msgid "Accent 1" -msgstr "" +msgstr "Utheving 1" #. nHhDx #: sc/inc/globstr.hrc:288 msgctxt "STR_STYLENAME_ACCENT_2" msgid "Accent 2" -msgstr "" +msgstr "Utheving 2" #. NsLP7 #: sc/inc/globstr.hrc:289 msgctxt "STR_STYLENAME_ACCENT_3" msgid "Accent 3" -msgstr "" +msgstr "Utheving 3" #. GATGM #: sc/inc/globstr.hrc:290 @@ -1595,7 +1595,7 @@ #: sc/inc/globstr.hrc:293 msgctxt "STR_THESAURUS_NO_STRING" msgid "Thesaurus can only be used in text cells!" -msgstr "Synonymordlista kan bare brukes i tekstceller." +msgstr "Synonymordlisten kan bare brukes i tekstceller." #. EMMdQ #: sc/inc/globstr.hrc:294 @@ -1611,7 +1611,7 @@ "Please check your installation and install \n" "the desired language if necessary" msgstr "" -"er ikke tilgjengelig for synonymordlista.\n" +"er ikke tilgjengelig for synonymordlisten.\n" "Sjekk oppsettet. Kanskje du må\n" "installere det språket du trenger." @@ -1619,7 +1619,7 @@ #: sc/inc/globstr.hrc:296 msgctxt "STR_SPELLING_STOP_OK" msgid "The spellcheck of this sheet has been completed." -msgstr "Stavekontrollen er ferdig med dette regnearket." +msgstr "Stavekontrollen er gjennomført." #. FjWF9 #: sc/inc/globstr.hrc:297 @@ -1745,7 +1745,7 @@ #: sc/inc/globstr.hrc:317 msgctxt "STR_QUERY_DELENTRY" msgid "Do you really want to delete the entry #?" -msgstr "Er du sikker på at du vil slette oppføringa #?" +msgstr "Er du sikker på at du vil slette oppføringen #?" #. dcGSL #: sc/inc/globstr.hrc:318 @@ -1885,7 +1885,7 @@ #: sc/inc/globstr.hrc:340 msgctxt "STR_LINKERROR" msgid "The link could not be updated." -msgstr "Lenka kunne ikke oppdateres." +msgstr "Lenken kunne ikke oppdateres." #. HBYTF #: sc/inc/globstr.hrc:341 @@ -1942,7 +1942,7 @@ "This file contains queries. The results of these queries were not saved.\n" "Do you want these queries to be repeated?" msgstr "" -"Denne fila inneholder spørringer. Resultatet av disse spørringene ble ikke lagret\n" +"Denne filen inneholder spørringer. Resultatet av disse spørringene ble ikke lagret\n" "Vil du gjenta disse spørringene?" #. HrjKf @@ -1971,7 +1971,7 @@ #: sc/inc/globstr.hrc:353 msgctxt "STR_PASTE_ERROR" msgid "The contents of the clipboard could not be pasted." -msgstr "Klarte ikke å lime inn innholdet av utklippstavla." +msgstr "Klarte ikke å lime inn innholdet av utklippstavlen." #. pBHSD #: sc/inc/globstr.hrc:354 @@ -1986,7 +1986,7 @@ "The content of the clipboard is bigger than the range selected.\n" "Do you want to insert it anyway?" msgstr "" -"Innholdet av utklippstavla er større enn det merkede\n" +"Innholdet av utklippstavlen er større enn det merkede\n" "området. Vil du sette det inn likevel?" #. 2Afxk @@ -2410,7 +2410,7 @@ msgstr "" "Det delte regnearket er låst fordi brukeren «%1» er i ferd med å flette.\n" "\n" -"Det er ikke mulig å slå av deling så lenge fila er låst. Prøv igjen senere." +"Det er ikke mulig å slå av deling så lenge filen er låst. Prøv igjen senere." #. tiq8b #: sc/inc/globstr.hrc:420 @@ -2584,7 +2584,7 @@ #: sc/inc/globstr.hrc:447 msgctxt "STR_ERR_NAME_INVALID" msgid "Invalid name. Start with a letter, use only letters, numbers and underscore." -msgstr "" +msgstr "Ugyldig navn. Start med en bokstav, bruk bare bokstaver, tall og understrek." #. owW4Y #: sc/inc/globstr.hrc:448 @@ -2776,7 +2776,7 @@ #: sc/inc/globstr.hrc:478 msgctxt "STR_COND_THISWEEK" msgid "this week" -msgstr "denne uka" +msgstr "denne uken" #. a8Hdp #: sc/inc/globstr.hrc:479 @@ -2846,7 +2846,7 @@ "\n" " Do you want to edit the existing conditional format?" msgstr "" -"Den valgte cella har allerede vilkårsforrmatering . Du kan redigere det eksisterende vilkårsformatet, eller angi et nytt og overlappende.\n" +"Den valgte cellen har allerede vilkårsforrmatering . Du kan redigere det eksisterende vilkårsformatet, eller angi et nytt og overlappende.\n" "\n" " Vil du redigere det eksisterende vilkårsformatet?" @@ -2902,13 +2902,13 @@ #: sc/inc/globstr.hrc:496 msgctxt "STR_DPFIELD_GROUP_BY_DAYS" msgid "Days" -msgstr "dager" +msgstr "Dager" #. pEFdE #: sc/inc/globstr.hrc:497 msgctxt "STR_DPFIELD_GROUP_BY_MONTHS" msgid "Months" -msgstr "måneder" +msgstr "Måneder" #. F6C2z #: sc/inc/globstr.hrc:498 @@ -2944,7 +2944,7 @@ #: sc/inc/globstr.hrc:503 msgctxt "STR_NOFORMULA" msgid "Formula cell must contain a formula." -msgstr "Formelcella må inneholde en formel." +msgstr "Formelcellen må inneholde en formel." #. TAUZn #: sc/inc/globstr.hrc:504 @@ -2966,7 +2966,7 @@ "#\n" "be deleted?" msgstr "" -"Skal oppføringa\n" +"Skal oppføringen\n" "#\n" "slettes?" @@ -3022,7 +3022,7 @@ #: sc/inc/globstr.hrc:515 msgctxt "STR_UNQUOTED_STRING" msgid "Strings without quotes are interpreted as column/row labels." -msgstr "Strengar uten hermetegn blir tolket som kolonne-/rad-etiketter." +msgstr "Strenger uten hermetegn blir tolket som kolonne-/rad-etiketter." #. rHjns #: sc/inc/globstr.hrc:516 @@ -3342,7 +3342,7 @@ #: sc/inc/scerrors.hrc:61 msgctxt "RID_ERRHDLSC" msgid "Connection to the file could not be established." -msgstr "Klarte ikke å opprette en forbindelse til fila." +msgstr "Klarte ikke å opprette en forbindelse til filen." #. BeyFY #: sc/inc/scerrors.hrc:63 @@ -3415,13 +3415,13 @@ #: sc/inc/scerrors.hrc:85 msgctxt "RID_ERRHDLSC" msgid "Corresponding FM3-File could not be opened." -msgstr "Klarte ikke å åpne den tilhørende FM3-fila." +msgstr "Klarte ikke å åpne den tilhørende FM3-filen." #. CfYgQ #: sc/inc/scerrors.hrc:87 msgctxt "RID_ERRHDLSC" msgid "Error in file structure of corresponding FM3-File." -msgstr "Feil i filstrukturen til den tilhørende FM3-fila." +msgstr "Feil i filstrukturen til den tilhørende FM3-filen." #. AoqGL #: sc/inc/scerrors.hrc:89 @@ -4093,7 +4093,7 @@ #: sc/inc/scfuncs.hrc:211 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "The start date for calculating the difference in days." -msgstr "Startdato for å beregne forskjellen i dager." +msgstr "Startdato for å beregne differansen i dager." #. wWHWp #: sc/inc/scfuncs.hrc:212 @@ -4105,7 +4105,7 @@ #: sc/inc/scfuncs.hrc:213 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "The end date for calculating the difference in days." -msgstr "Sluttdato for å beregne forskjellen i dager." +msgstr "Sluttdato for å beregne differansen i dager." #. snNiF #: sc/inc/scfuncs.hrc:214 @@ -4117,7 +4117,7 @@ #: sc/inc/scfuncs.hrc:215 msgctxt "SC_OPCODE_GET_DIFF_DATE_360" msgid "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." -msgstr "Metoden som brukes for å beregne forskjellene: Type=0 bruker den amerikanske metoden (NASD), Type=1 bruker den europeiske metoden." +msgstr "Metoden som brukes for å beregne differansene: Type=0 bruker den amerikanske metoden (NASD), Type=1 bruker den europeiske metoden." #. WxBru #: sc/inc/scfuncs.hrc:221 @@ -4453,7 +4453,7 @@ #: sc/inc/scfuncs.hrc:331 msgctxt "SC_OPCODE_GET_DAY_OF_WEEK" msgid "Fixes the beginning of the week and the type of calculation to be used." -msgstr "Bestemmer når uka starter og beregningsmetoden som skal brukes." +msgstr "Bestemmer når uken starter og beregningsmetoden som skal brukes." #. 54GgL #: sc/inc/scfuncs.hrc:337 @@ -4549,7 +4549,7 @@ #: sc/inc/scfuncs.hrc:367 msgctxt "SC_OPCODE_WEEK" msgid "Calculates the calendar week corresponding to the given date." -msgstr "Regner ut kalenderuka som tilsvarer den angitte datoen." +msgstr "Regner ut kalenderuken som tilsvarer den angitte datoen." #. wSYNs #: sc/inc/scfuncs.hrc:368 @@ -4751,7 +4751,7 @@ #: sc/inc/scfuncs.hrc:424 msgctxt "SC_OPCODE_FV" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Faste utbetalinger. Den konstante livrenta som skal betales i hver periode." +msgstr "Faste utbetalinger. Den konstante livrenten som skal betales i hver periode." #. RHEUR #: sc/inc/scfuncs.hrc:425 @@ -4805,7 +4805,7 @@ #: sc/inc/scfuncs.hrc:438 msgctxt "SC_OPCODE_NPER" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Faste utbetalinger. Den konstante livrenta som skal betales i hver periode." +msgstr "Faste utbetalinger. Den konstante livrenten som skal betales i hver periode." #. UHQkU #: sc/inc/scfuncs.hrc:439 @@ -4847,7 +4847,7 @@ #: sc/inc/scfuncs.hrc:450 msgctxt "SC_OPCODE_PMT" msgid "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate." -msgstr "Regelmessig betaling. Gir den periodiske betalinga av en livrente, basert på jevnlige betalinger og fast rente." +msgstr "Regelmessig betaling. Gir den periodiske betalingen av en livrente, basert på jevnlige betalinger og fast rente." #. FBNre #: sc/inc/scfuncs.hrc:451 @@ -4913,7 +4913,7 @@ #: sc/inc/scfuncs.hrc:466 msgctxt "SC_OPCODE_RATE" msgid "Calculates the constant interest rate of an investment with regular payments." -msgstr "Beregn den konstante renta til en investering med jevnlige betalinger." +msgstr "Beregn den konstante renten til en investering med jevnlige betalinger." #. MeabD #: sc/inc/scfuncs.hrc:467 @@ -4937,7 +4937,7 @@ #: sc/inc/scfuncs.hrc:470 msgctxt "SC_OPCODE_RATE" msgid "Regular payments. The constant annuity to be paid in each period." -msgstr "Faste utbetalinger. Den konstante livrenta som skal betales i hver periode." +msgstr "Faste utbetalinger. Den konstante livrenten som skal betales i hver periode." #. CfjNt #: sc/inc/scfuncs.hrc:471 @@ -5303,7 +5303,7 @@ #: sc/inc/scfuncs.hrc:556 msgctxt "SC_OPCODE_SYD" msgid "Calculates the arithmetically declining value of an asset (depreciation) for a specified period." -msgstr "Beregn den aritmetiske avskrivinga av en verdigjenstand over en bestemt periode." +msgstr "Beregn den aritmetiske avskrivingen av en verdigjenstand over en bestemt periode." #. omwrF #: sc/inc/scfuncs.hrc:557 @@ -5357,7 +5357,7 @@ #: sc/inc/scfuncs.hrc:570 msgctxt "SC_OPCODE_SLN" msgid "Calculates the linear depreciation per period." -msgstr "Beregn den lineære avskrivninga per periode." +msgstr "Beregn den lineære avskrivningen pr. periode." #. tm58T #: sc/inc/scfuncs.hrc:571 @@ -5399,7 +5399,7 @@ #: sc/inc/scfuncs.hrc:582 msgctxt "SC_OPCODE_DDB" msgid "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor." -msgstr "Beregn avskrivninga av en verdigjenstand for en bestemt periode ved hjelp av dobbel degressiv avskrivning eller degressiv avskrivning." +msgstr "Beregn avskrivningen av en verdigjenstand for en bestemt periode ved hjelp av dobbel degressiv avskrivning eller degressiv avskrivning." #. ECRmm #: sc/inc/scfuncs.hrc:583 @@ -5459,13 +5459,13 @@ #: sc/inc/scfuncs.hrc:592 msgctxt "SC_OPCODE_DDB" msgid "Factor. The factor for balance decline. F = 2 means a double declining balance factor" -msgstr "Faktor. Faktoren for degressiv avskrivning. F=2 betyr at avskrivninga synker med en faktor på to." +msgstr "Faktor. Faktoren for degressiv avskrivning. F=2 betyr at avskrivningen synker med en faktor på to." #. PAWDA #: sc/inc/scfuncs.hrc:598 msgctxt "SC_OPCODE_DB" msgid "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method." -msgstr "Gir den virkelige avskrivinga på en verdigjenstand over en bestemt periode ved hjelp av fast degressiv avskrivning." +msgstr "Gir den virkelige avskrivingen på en verdigjenstand over en bestemt periode ved hjelp av fast degressiv avskrivning." #. w3E7K #: sc/inc/scfuncs.hrc:599 @@ -5513,7 +5513,7 @@ #: sc/inc/scfuncs.hrc:606 msgctxt "SC_OPCODE_DB" msgid "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life." -msgstr "Periode. Perioden avskrivninga er beregnet for, i samme tidsformat som den samlede økonomiske levetiden." +msgstr "Periode. Perioden avskrivningen er beregnet for, i samme tidsformat som den samlede økonomiske levetiden." #. vz9CU #: sc/inc/scfuncs.hrc:607 @@ -5531,7 +5531,7 @@ #: sc/inc/scfuncs.hrc:614 msgctxt "SC_OPCODE_VBD" msgid "Variable declining balance. Returns the declining balance depreciation for a particular period." -msgstr "Variabel degressiv avskrivning. Gir den degressive avskrivinga for en bestemt periode." +msgstr "Variabel degressiv avskrivning. Gir den degressive avskrivingen for en bestemt periode." #. 6B2pr #: sc/inc/scfuncs.hrc:615 @@ -5651,7 +5651,7 @@ #: sc/inc/scfuncs.hrc:644 msgctxt "SC_OPCODE_NOMINAL" msgid "Calculates the yearly nominal interest rate as an effective interest rate." -msgstr "Beregn den årlige nominelle renta som effektiv rente." +msgstr "Beregn den årlige nominelle renten som effektiv rente." #. N93Eg #: sc/inc/scfuncs.hrc:645 @@ -5663,7 +5663,7 @@ #: sc/inc/scfuncs.hrc:646 msgctxt "SC_OPCODE_NOMINAL" msgid "The effective interest rate" -msgstr "Den effektive renta" +msgstr "Den effektive renten" #. rBAgM #: sc/inc/scfuncs.hrc:647 @@ -5735,7 +5735,7 @@ #: sc/inc/scfuncs.hrc:668 msgctxt "SC_OPCODE_IRR" msgid "Guess. An estimated value of the rate of return to be used for the iteration calculation." -msgstr "Gjett. Estimering av renta for den gjentagende beregningsmetoden." +msgstr "Gjett. Estimering av renten for den gjentagende beregningsmetoden." #. 9kYck #: sc/inc/scfuncs.hrc:674 @@ -5807,7 +5807,7 @@ #: sc/inc/scfuncs.hrc:690 msgctxt "SC_OPCODE_ISPMT" msgid "Number of amortization periods for the calculation of the interest." -msgstr "Antall nedbetalingsperioder som er grunnlag for beregninga av renta." +msgstr "Antall nedbetalingsperioder som er grunnlag for beregningen av renten." #. g4ATk #: sc/inc/scfuncs.hrc:691 @@ -5849,7 +5849,7 @@ #: sc/inc/scfuncs.hrc:702 msgctxt "SC_OPCODE_PDURATION" msgid "The constant rate of interest." -msgstr "Fastrenta." +msgstr "Fastrenten." #. ZWepN #: sc/inc/scfuncs.hrc:703 @@ -5891,7 +5891,7 @@ #: sc/inc/scfuncs.hrc:714 msgctxt "SC_OPCODE_RRI" msgid "The number of periods used in the calculation." -msgstr "Antall perioder som blir brukt i beregninga." +msgstr "Antall perioder som blir brukt i beregningen." #. ioZ9Y #: sc/inc/scfuncs.hrc:715 @@ -6185,7 +6185,7 @@ #: sc/inc/scfuncs.hrc:838 msgctxt "SC_OPCODE_CELL" msgid "The position of the cell you want to examine." -msgstr "Plasseringa av cellen du vil undersøke." +msgstr "Plasseringen av cellen du vil undersøke." #. Dyn4C #: sc/inc/scfuncs.hrc:844 @@ -6737,7 +6737,7 @@ #: sc/inc/scfuncs.hrc:1049 msgctxt "SC_OPCODE_SQRT" msgid "Returns the square root of a number." -msgstr "Gir kvadratrota av et tall." +msgstr "Gir kvadratroten av et tall." #. Cr4oc #: sc/inc/scfuncs.hrc:1050 @@ -6749,7 +6749,7 @@ #: sc/inc/scfuncs.hrc:1051 msgctxt "SC_OPCODE_SQRT" msgid "A positive value for which the square root is to be calculated." -msgstr "En positiv verdi som kvadratrota skal beregnes for." +msgstr "En positiv verdi som kvadratroten skal beregnes for." #. KJ7e9 #: sc/inc/scfuncs.hrc:1057 @@ -7223,7 +7223,7 @@ #: sc/inc/scfuncs.hrc:1255 msgctxt "SC_OPCODE_COSECANT_HYP" msgid "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated." -msgstr "Den hyperbolske vinkelen i radianer som skal brukes i utregninga av den hyperbolske cosecansen." +msgstr "Den hyperbolske vinkelen i radianer som skal brukes i utregningen av den hyperbolske cosecansen." #. P8KDD #: sc/inc/scfuncs.hrc:1261 @@ -7241,7 +7241,7 @@ #: sc/inc/scfuncs.hrc:1263 msgctxt "SC_OPCODE_SECANT_HYP" msgid "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated." -msgstr "Den hyperbolske vinkelen i radianer som skal brukes i utregninga av den hyperbolske sekanten." +msgstr "Den hyperbolske vinkelen i radianer som skal brukes i utregningen av den hyperbolske sekanten." #. dnE9t #: sc/inc/scfuncs.hrc:1269 @@ -7743,7 +7743,7 @@ #: sc/inc/scfuncs.hrc:1446 msgctxt "SC_OPCODE_CEIL_PRECISE" msgid "Significance" -msgstr "signifikans" +msgstr "Signifikans" #. MaoHR #: sc/inc/scfuncs.hrc:1447 @@ -7803,7 +7803,7 @@ #: sc/inc/scfuncs.hrc:1466 msgctxt "SC_OPCODE_CEIL" msgid "Significance" -msgstr "signifikans" +msgstr "Signifikans" #. tp6SD #: sc/inc/scfuncs.hrc:1467 @@ -7845,7 +7845,7 @@ #: sc/inc/scfuncs.hrc:1478 msgctxt "SC_OPCODE_CEIL_MATH" msgid "Significance" -msgstr "signifikans" +msgstr "Signifikans" #. 3RoYe #: sc/inc/scfuncs.hrc:1479 @@ -7857,7 +7857,7 @@ #: sc/inc/scfuncs.hrc:1480 msgctxt "SC_OPCODE_CEIL_MATH" msgid "Mode" -msgstr "modus" +msgstr "Modus" #. xT75H #: sc/inc/scfuncs.hrc:1481 @@ -7887,7 +7887,7 @@ #: sc/inc/scfuncs.hrc:1490 msgctxt "SC_OPCODE_FLOOR" msgid "Significance" -msgstr "signifikans" +msgstr "Signifikans" #. gV64T #: sc/inc/scfuncs.hrc:1491 @@ -7899,7 +7899,7 @@ #: sc/inc/scfuncs.hrc:1492 msgctxt "SC_OPCODE_FLOOR" msgid "Mode" -msgstr "modus" +msgstr "Modus" #. QQWo6 #: sc/inc/scfuncs.hrc:1493 @@ -8023,13 +8023,13 @@ #: sc/inc/scfuncs.hrc:1532 msgctxt "SC_OPCODE_GCD" msgid "Integer " -msgstr "heltall " +msgstr "Heltall " #. QMVyz #: sc/inc/scfuncs.hrc:1533 msgctxt "SC_OPCODE_GCD" msgid "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated." -msgstr "heltall 1; heltall 2, … er heltall som største fellesnevner skal beregnes for." +msgstr "Heltall 1; heltall 2, … er heltall som største fellesnevner skal beregnes for." #. 8Bp3W #: sc/inc/scfuncs.hrc:1539 @@ -8041,7 +8041,7 @@ #: sc/inc/scfuncs.hrc:1540 msgctxt "SC_OPCODE_LCM" msgid "Integer " -msgstr "heltall " +msgstr "Heltall " #. cbExQ #: sc/inc/scfuncs.hrc:1541 @@ -8143,7 +8143,7 @@ #: sc/inc/scfuncs.hrc:1582 msgctxt "SC_OPCODE_MATRIX_UNIT" msgid "Dimensions" -msgstr "størrelse" +msgstr "Dimensjoner" #. 4teei #: sc/inc/scfuncs.hrc:1583 @@ -8167,7 +8167,7 @@ #: sc/inc/scfuncs.hrc:1591 msgctxt "SC_OPCODE_SUM_PRODUCT" msgid "Array 1, array 2, ... are arrays whose arguments are to be multiplied." -msgstr "vektor 1, vektor 2, … der argumentene skal multipliseres." +msgstr "Vektor 1, vektor 2, … der argumentene skal multipliseres." #. uPVf6 #: sc/inc/scfuncs.hrc:1597 @@ -8263,7 +8263,7 @@ #: sc/inc/scfuncs.hrc:1627 msgctxt "SC_OPCODE_FREQUENCY" msgid "Returns a frequency distribution as a vertical array." -msgstr "Gir en frekvensfordeling som loddrett matrise." +msgstr "Gir en frekvensfordeling som vertikal matrise." #. iHT4A #: sc/inc/scfuncs.hrc:1628 @@ -8509,7 +8509,7 @@ #: sc/inc/scfuncs.hrc:1693 msgctxt "SC_OPCODE_COUNT" msgid "Counts how many numbers are in the list of arguments." -msgstr "Teller hvor mange tall det er i lista med argumenter." +msgstr "Teller hvor mange tall det er i listen med argumenter." #. iDFDE #: sc/inc/scfuncs.hrc:1694 @@ -8527,7 +8527,7 @@ #: sc/inc/scfuncs.hrc:1701 msgctxt "SC_OPCODE_COUNT_2" msgid "Counts how many values are in the list of arguments." -msgstr "Teller hvor mange verdier det er i lista med argumenter." +msgstr "Teller hvor mange verdier det er i listen med argumenter." #. iqtKK #: sc/inc/scfuncs.hrc:1702 @@ -8611,7 +8611,7 @@ #: sc/inc/scfuncs.hrc:1735 msgctxt "SC_OPCODE_MIN_A" msgid "Value 1; value 2;... are arguments whose smallest number is to be determined." -msgstr "verdi 1, verdi 2, … er argumenter der den minste verdien skal finnes." +msgstr "Verdi 1, verdi 2, … er argumenter der den minste verdien skal finnes." #. wGyMr #: sc/inc/scfuncs.hrc:1741 @@ -8683,7 +8683,7 @@ #: sc/inc/scfuncs.hrc:1767 msgctxt "SC_OPCODE_VAR_P" msgid "Number 1, number 2, ... are numerical arguments which represent a population." -msgstr "tall 1, tall 2, … er tallargumenter som representerer en populasjon." +msgstr "Tall 1, tall 2, … er tallargumenter som representerer en populasjon." #. AFynp #: sc/inc/scfuncs.hrc:1773 @@ -8701,7 +8701,7 @@ #: sc/inc/scfuncs.hrc:1775 msgctxt "SC_OPCODE_VAR_P_MS" msgid "Number 1, number 2, ... are numerical arguments which represent a population." -msgstr "tall 1, tall 2, … er tallargumenter som representerer en populasjon." +msgstr "Tall 1, tall 2, … er tallargumenter som representerer en populasjon." #. 7BF8p #: sc/inc/scfuncs.hrc:1781 @@ -8743,7 +8743,7 @@ #: sc/inc/scfuncs.hrc:1797 msgctxt "SC_OPCODE_ST_DEV_S" msgid "Calculates the standard deviation based on a sample." -msgstr "Regnrr ut standardavviket i et utvalg." +msgstr "Beregnrert standardavviket av et utvalg." #. cGxRb #: sc/inc/scfuncs.hrc:1798 @@ -8761,7 +8761,7 @@ #: sc/inc/scfuncs.hrc:1805 msgctxt "SC_OPCODE_ST_DEV_A" msgid "Returns the standard deviation based on a sample. Text is evaluated as zero." -msgstr "Gir standardavviket i et utvalg. Tekst regnes som 0." +msgstr "Gir standardavviket av et utvalg. Tekst regnes som 0." #. Smbhk #: sc/inc/scfuncs.hrc:1806 @@ -8797,7 +8797,7 @@ #: sc/inc/scfuncs.hrc:1821 msgctxt "SC_OPCODE_ST_DEV_P_MS" msgid "Calculates the standard deviation based on the entire population." -msgstr "Regnrr ut standardavviket i hele populasjonen." +msgstr "Regner ut standardavviket i hele populasjonen." #. 4JaDC #: sc/inc/scfuncs.hrc:1822 @@ -8815,7 +8815,7 @@ #: sc/inc/scfuncs.hrc:1829 msgctxt "SC_OPCODE_ST_DEV_P_A" msgid "Returns the standard deviation based on the entire population. Text is evaluated as zero." -msgstr "Gir standardavviket i hele populasjonen. Tekst regnes som 0." +msgstr "Gir standardavviket av hele populasjonen. Tekst regnes som 0." #. XaMUA #: sc/inc/scfuncs.hrc:1830 @@ -8845,7 +8845,7 @@ #: sc/inc/scfuncs.hrc:1839 msgctxt "SC_OPCODE_AVERAGE" msgid "Number 1, number 2;...are numeric arguments representing a population sample." -msgstr "tall 1, tall 2, … er tallargumenter som representerer en stikkprøve av en populasjon." +msgstr "Tall 1, tall 2, … er tallargumenter som representerer en stikkprøve av en populasjon." #. UZBe5 #: sc/inc/scfuncs.hrc:1845 @@ -8899,13 +8899,13 @@ #: sc/inc/scfuncs.hrc:1863 msgctxt "SC_OPCODE_AVE_DEV" msgid "Number 1, number 2;...are numerical arguments representing a sample." -msgstr "tall 1, tall 2, … er tallargumenter som representerer en stikkprøve." +msgstr "Tall 1, tall 2, … er tallargumenter som representerer en stikkprøve." #. d8XUA #: sc/inc/scfuncs.hrc:1869 msgctxt "SC_OPCODE_SKEW" msgid "Returns the skewness of a distribution." -msgstr "Gir skjevheten i fordelinga." +msgstr "Gir skjevheten i fordelingen." #. JPi88 #: sc/inc/scfuncs.hrc:1870 @@ -8953,7 +8953,7 @@ #: sc/inc/scfuncs.hrc:1887 msgctxt "SC_OPCODE_KURT" msgid "Number 1, number 2, ... are numerical arguments, representing a sample of the distribution." -msgstr "tall 1, tall 2, … er tallargumenter som representerer en stikkprøve av fordelingen." +msgstr "Tall 1, tall 2, … er tallargumenter som representerer en stikkprøve av fordelingen." #. KkCFM #: sc/inc/scfuncs.hrc:1893 @@ -8977,7 +8977,7 @@ #: sc/inc/scfuncs.hrc:1901 msgctxt "SC_OPCODE_HAR_MEAN" msgid "Returns the harmonic mean of a sample." -msgstr "Gir veid gjennomsnitt av et utvalg." +msgstr "Returnerer veid gjennomsnitt av et utvalg." #. Yz89m #: sc/inc/scfuncs.hrc:1902 @@ -8995,7 +8995,7 @@ #: sc/inc/scfuncs.hrc:1909 msgctxt "SC_OPCODE_MODAL_VALUE" msgid "Returns the most common value in a sample." -msgstr "Gir den vanligste verdien i et utvalg." +msgstr "Returnerer den vanligste verdien i et utvalg." #. TyDim #: sc/inc/scfuncs.hrc:1910 @@ -9049,7 +9049,7 @@ #: sc/inc/scfuncs.hrc:1933 msgctxt "SC_OPCODE_MEDIAN" msgid "Returns the median of a given sample." -msgstr "Gir medianen av et gitt utvalg." +msgstr "Returnerer medianen av et gitt utvalg." #. izbAC #: sc/inc/scfuncs.hrc:1934 @@ -9085,7 +9085,7 @@ #: sc/inc/scfuncs.hrc:1944 msgctxt "SC_OPCODE_PERCENTILE" msgid "Alpha" -msgstr "alfa" +msgstr "Alfa" #. BGTaw #: sc/inc/scfuncs.hrc:1945 @@ -9157,7 +9157,7 @@ #: sc/inc/scfuncs.hrc:1971 msgctxt "SC_OPCODE_QUARTILE" msgid "Returns the quartile of a sample." -msgstr "Gir kvartilen av et utvalg." +msgstr "Returnerer kvartilen av et utvalg." #. 5ACij #: sc/inc/scfuncs.hrc:1972 @@ -9247,7 +9247,7 @@ #: sc/inc/scfuncs.hrc:2001 msgctxt "SC_OPCODE_LARGE" msgid "Returns the k-th largest value of a sample." -msgstr "Gir den k-te største verdien i utvalget." +msgstr "Returnerer den k-te største verdien i utvalget." #. tyCQN #: sc/inc/scfuncs.hrc:2002 @@ -9271,13 +9271,13 @@ #: sc/inc/scfuncs.hrc:2005 msgctxt "SC_OPCODE_LARGE" msgid "The ranking of the value." -msgstr "Rangeringa av verdien." +msgstr "Rangeringen av verdien." #. HCszB #: sc/inc/scfuncs.hrc:2011 msgctxt "SC_OPCODE_SMALL" msgid "Returns the k-th smallest value of a sample." -msgstr "Gir den k-te minste verdien i utvalget." +msgstr "Returnerer den k-te minste verdien i utvalget." #. jFtou #: sc/inc/scfuncs.hrc:2012 @@ -9301,13 +9301,13 @@ #: sc/inc/scfuncs.hrc:2015 msgctxt "SC_OPCODE_SMALL" msgid "The ranking of the value." -msgstr "Rangeringa av verdien." +msgstr "Rangeringen av verdien." #. tfvUj #: sc/inc/scfuncs.hrc:2021 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "Returns the percentage rank of a value in a sample." -msgstr "Gir den prosentmessige fordelinga av en verdi i utvalget." +msgstr "Gir den prosentmessige fordelingen av en verdi i utvalget." #. rLBSp #: sc/inc/scfuncs.hrc:2022 @@ -9331,7 +9331,7 @@ #: sc/inc/scfuncs.hrc:2025 msgctxt "SC_OPCODE_PERCENT_RANK" msgid "The value for which percentage ranking is to be determined." -msgstr "Verdien den prosentmessige rangeringa skal beregnes for." +msgstr "Verdien den prosentmessige rangeringen skal beregnes for." #. gTAAs #: sc/inc/scfuncs.hrc:2026 @@ -9349,7 +9349,7 @@ #: sc/inc/scfuncs.hrc:2033 msgctxt "SC_OPCODE_PERCENT_RANK_EXC" msgid "Returns the percentage rank (0..1, exclusive) of a value in a sample." -msgstr "Returnerer prosentfordelinga (0 … 1, eksklusiv) av ein verdi i ein stikkprøve." +msgstr "Returnerer prosentfordelingen (0 … 1, eksklusiv) av ein verdi i ein stikkprøve." #. xnpWg #: sc/inc/scfuncs.hrc:2034 @@ -9391,7 +9391,7 @@ #: sc/inc/scfuncs.hrc:2045 msgctxt "SC_OPCODE_PERCENT_RANK_INC" msgid "Returns the percentage rank (0..1, inclusive) of a value in a sample." -msgstr "Returnerer prosentfordelinga (0 … 1, inklusiv) av en verdi i en stikkprøve." +msgstr "Returnerer prosentfordelingen (0 … 1, inklusiv) av en verdi i en stikkprøve." #. XYEDP #: sc/inc/scfuncs.hrc:2046 @@ -9433,7 +9433,7 @@ #: sc/inc/scfuncs.hrc:2057 msgctxt "SC_OPCODE_RANK" msgid "Returns the ranking of a value in a sample." -msgstr "Gir rangeringa av en verdi i et utvalg." +msgstr "Returnerer rangeringen av en verdi i et utvalg." #. p2juz #: sc/inc/scfuncs.hrc:2058 @@ -9445,7 +9445,7 @@ #: sc/inc/scfuncs.hrc:2059 msgctxt "SC_OPCODE_RANK" msgid "The value for which the rank is to be determined." -msgstr "Verdien rangeringa skal beregnes for." +msgstr "Verdien rangeringen skal beregnes for." #. e3CY7 #: sc/inc/scfuncs.hrc:2060 @@ -9475,7 +9475,7 @@ #: sc/inc/scfuncs.hrc:2069 msgctxt "SC_OPCODE_RANK_EQ" msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned." -msgstr "Returnerer rangeringen av en verdi i en stikkprøve. Hvis mer enn en verdi har den samme rangeringa, blir den med høyest rangering i verdisettet returnert." +msgstr "Returnerer rangeringen av en verdi i en stikkprøve. Hvis mer enn en verdi har den samme rangeringen, blir den med høyest rangering i verdisettet returnert." #. GuZrj #: sc/inc/scfuncs.hrc:2070 @@ -9511,13 +9511,13 @@ #: sc/inc/scfuncs.hrc:2075 msgctxt "SC_OPCODE_RANK_EQ" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "Rekkefølgje: 0 eller sløyfet betyr synkende. Alle andre verdier betyr stigende." +msgstr "Rekkefølge: 0 eller sløyfet betyr synkende. Alle andre verdier betyr stigende." #. 6VJyB #: sc/inc/scfuncs.hrc:2081 msgctxt "SC_OPCODE_RANK_AVG" msgid "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned." -msgstr "Returnerer rangeringa av en verdi i en stikkprøve. Hvis flere verdier har samme rangering, blir gjennomsnittsrangeringa returnert." +msgstr "Returnerer rangeringen av en verdi i en stikkprøve. Hvis flere verdier har samme rangering, blir gjennomsnittsrangeringen returnert." #. wYAYF #: sc/inc/scfuncs.hrc:2082 @@ -9553,7 +9553,7 @@ #: sc/inc/scfuncs.hrc:2087 msgctxt "SC_OPCODE_RANK_AVG" msgid "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." -msgstr "Rekkefølgje: 0 eller sløyfet betyr synkende. Alle andre verdier betyr stigende." +msgstr "Rekkefølge: 0 eller sløyfet betyr synkende. Alle andre verdier betyr stigende." #. i5gm7 #: sc/inc/scfuncs.hrc:2093 @@ -9619,7 +9619,7 @@ #: sc/inc/scfuncs.hrc:2108 msgctxt "SC_OPCODE_PROB" msgid "Start" -msgstr "start" +msgstr "Start" #. EAFpQ #: sc/inc/scfuncs.hrc:2109 @@ -9631,7 +9631,7 @@ #: sc/inc/scfuncs.hrc:2110 msgctxt "SC_OPCODE_PROB" msgid "End" -msgstr "slutt" +msgstr "Slutt" #. HFi7t #: sc/inc/scfuncs.hrc:2111 @@ -9709,7 +9709,7 @@ #: sc/inc/scfuncs.hrc:2133 msgctxt "SC_OPCODE_PHI" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "Verdiene som standardnormalfordelinga beregnes ut fra." +msgstr "Verdiene som standardnormalfordelingen beregnes ut fra." #. WsS4w #: sc/inc/scfuncs.hrc:2139 @@ -9727,7 +9727,7 @@ #: sc/inc/scfuncs.hrc:2141 msgctxt "SC_OPCODE_GAUSS" msgid "The value for which the integral value of the standard normal distribution is to be calculated." -msgstr "Verdien som integralverdien av standardnormalfordelinga skal beregnes ut fra." +msgstr "Verdien som integralverdien av standardnormalfordelingen skal beregnes ut fra." #. kv48J #: sc/inc/scfuncs.hrc:2147 @@ -9769,7 +9769,7 @@ #: sc/inc/scfuncs.hrc:2163 msgctxt "SC_OPCODE_BINOM_DIST" msgid "Values of the binomial distribution." -msgstr "Verdier i binomialfordelinga." +msgstr "Verdier i binomialfordelingen." #. 35XRK #: sc/inc/scfuncs.hrc:2164 @@ -9877,7 +9877,7 @@ #: sc/inc/scfuncs.hrc:2191 msgctxt "SC_OPCODE_NEG_BINOM_VERT" msgid "Values of the negative binomial distribution." -msgstr "Verdier i den negative binomialfordelinga." +msgstr "Verdier i den negative binomialfordelingen." #. tUTgu #: sc/inc/scfuncs.hrc:2192 @@ -9919,7 +9919,7 @@ #: sc/inc/scfuncs.hrc:2203 msgctxt "SC_OPCODE_NEG_BINOM_DIST_MS" msgid "Values of the negative binomial distribution." -msgstr "Verdier i den negative binomialfordelinga." +msgstr "Verdier i den negative binomialfordelingen." #. kcgW7 #: sc/inc/scfuncs.hrc:2204 @@ -9973,7 +9973,7 @@ #: sc/inc/scfuncs.hrc:2217 msgctxt "SC_OPCODE_CRIT_BINOM" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Returnerer den minste verdien der den kumulative binomialfordelinga er større enn eller lik en kriterieverdi." +msgstr "Returnerer den minste verdien der den kumulative binomialfordelingen er større enn eller lik en kriterieverdi." #. RNvff #: sc/inc/scfuncs.hrc:2218 @@ -10015,7 +10015,7 @@ #: sc/inc/scfuncs.hrc:2229 msgctxt "SC_OPCODE_BINOM_INV" msgid "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." -msgstr "Returnerer den minste verdien der den kumulative binomialfordelinga er større enn eller lik en kriterieverdi." +msgstr "Returnerer den minste verdien der den kumulative binomialfordelingen er større enn eller lik en kriterieverdi." #. 5HwPz #: sc/inc/scfuncs.hrc:2230 @@ -10057,7 +10057,7 @@ #: sc/inc/scfuncs.hrc:2241 msgctxt "SC_OPCODE_POISSON_DIST" msgid "Returns the Poisson distribution." -msgstr "Gir Poisson-fordelinga." +msgstr "Gir Poisson-fordelingen." #. SzTsq #: sc/inc/scfuncs.hrc:2242 @@ -10069,7 +10069,7 @@ #: sc/inc/scfuncs.hrc:2243 msgctxt "SC_OPCODE_POISSON_DIST" msgid "The value for which the Poisson distribution is to be calculated." -msgstr "Verdiene som Poisson-fordelinga skal beregnes ut i fra." +msgstr "Verdiene som Poisson-fordelingen skal beregnes ut i fra." #. mYHfJ #: sc/inc/scfuncs.hrc:2244 @@ -10081,7 +10081,7 @@ #: sc/inc/scfuncs.hrc:2245 msgctxt "SC_OPCODE_POISSON_DIST" msgid "Mean. The mean value of the Poisson distribution." -msgstr "Gjennomsnittsverdien av Poisson-fordelinga." +msgstr "Gjennomsnittsverdien av Poisson-fordelingen." #. KThWA #: sc/inc/scfuncs.hrc:2246 @@ -10099,7 +10099,7 @@ #: sc/inc/scfuncs.hrc:2253 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "Returns the Poisson distribution." -msgstr "Gir Poisson-fordelinga." +msgstr "Returnerer Poisson-fordelingen." #. 97a86 #: sc/inc/scfuncs.hrc:2254 @@ -10111,7 +10111,7 @@ #: sc/inc/scfuncs.hrc:2255 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "The value for which the Poisson distribution is to be calculated." -msgstr "Verdiene som Poisson-fordelinga skal beregnes ut i fra." +msgstr "Verdiene som Poisson-fordelingen skal beregnes ut i fra." #. jEvi7 #: sc/inc/scfuncs.hrc:2256 @@ -10123,7 +10123,7 @@ #: sc/inc/scfuncs.hrc:2257 msgctxt "SC_OPCODE_POISSON_DIST_MS" msgid "Mean. The mean value of the Poisson distribution." -msgstr "Gjennomsnitt. Gjennomsnittsverdien av Poisson-fordelinga." +msgstr "Gjennomsnitt. Gjennomsnittsverdien av Poisson-fordelingen." #. kfFbC #: sc/inc/scfuncs.hrc:2258 @@ -10141,7 +10141,7 @@ #: sc/inc/scfuncs.hrc:2265 msgctxt "SC_OPCODE_NORM_DIST" msgid "Values of the normal distribution." -msgstr "Verdier i normalfordelinga." +msgstr "Verdier i normalfordelingen." #. RPzKS #: sc/inc/scfuncs.hrc:2266 @@ -10153,7 +10153,7 @@ #: sc/inc/scfuncs.hrc:2267 msgctxt "SC_OPCODE_NORM_DIST" msgid "The value for which the normal distribution is to be calculated." -msgstr "Verdiene som normalfordelinga skal beregnes ut fra." +msgstr "Verdiene som normalfordelingen skal beregnes ut fra." #. fXJBs #: sc/inc/scfuncs.hrc:2268 @@ -10165,7 +10165,7 @@ #: sc/inc/scfuncs.hrc:2269 msgctxt "SC_OPCODE_NORM_DIST" msgid "The mean value. The mean value of the normal distribution." -msgstr "Gjennomsnittsverdien av normalfordelinga." +msgstr "Gjennomsnittsverdien av normalfordelingen." #. F8RCc #: sc/inc/scfuncs.hrc:2270 @@ -10177,7 +10177,7 @@ #: sc/inc/scfuncs.hrc:2271 msgctxt "SC_OPCODE_NORM_DIST" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Standardavviket av normalfordelinga." +msgstr "Standardavviket av normalfordelingen." #. qMewn #: sc/inc/scfuncs.hrc:2272 @@ -10195,7 +10195,7 @@ #: sc/inc/scfuncs.hrc:2279 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "Values of the normal distribution." -msgstr "Verdier i normalfordelinga." +msgstr "Verdier i normalfordelingen." #. SkS5e #: sc/inc/scfuncs.hrc:2280 @@ -10207,7 +10207,7 @@ #: sc/inc/scfuncs.hrc:2281 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "The value for which the normal distribution is to be calculated." -msgstr "Verdiene som normalfordelinga skal regnes ut fra." +msgstr "Verdiene som normalfordelingen skal regnes ut fra." #. dESaP #: sc/inc/scfuncs.hrc:2282 @@ -10219,7 +10219,7 @@ #: sc/inc/scfuncs.hrc:2283 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "The mean value. The mean value of the normal distribution." -msgstr "Gjennomsnittsverdien av normalfordelinga." +msgstr "Gjennomsnittsverdien av normalfordelingen." #. n48EF #: sc/inc/scfuncs.hrc:2284 @@ -10231,7 +10231,7 @@ #: sc/inc/scfuncs.hrc:2285 msgctxt "SC_OPCODE_NORM_DIST_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Standardavviket av normalfordelinga." +msgstr "Standardavviket av normalfordelingen." #. CqHN6 #: sc/inc/scfuncs.hrc:2286 @@ -10249,7 +10249,7 @@ #: sc/inc/scfuncs.hrc:2293 msgctxt "SC_OPCODE_NORM_INV" msgid "Values of the inverse normal distribution." -msgstr "Verdien av den inverse normalfordelinga." +msgstr "Verdien av den inverse normalfordelingen." #. uNoei #: sc/inc/scfuncs.hrc:2294 @@ -10261,7 +10261,7 @@ #: sc/inc/scfuncs.hrc:2295 msgctxt "SC_OPCODE_NORM_INV" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse normalfordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse normalfordelingen skal beregnes ut fra." #. C8XB9 #: sc/inc/scfuncs.hrc:2296 @@ -10273,7 +10273,7 @@ #: sc/inc/scfuncs.hrc:2297 msgctxt "SC_OPCODE_NORM_INV" msgid "The mean value. The mean value of the normal distribution." -msgstr "Gjennomsnittsverdien av normalfordelinga." +msgstr "Gjennomsnittsverdien av normalfordelingen." #. AdBuo #: sc/inc/scfuncs.hrc:2298 @@ -10285,13 +10285,13 @@ #: sc/inc/scfuncs.hrc:2299 msgctxt "SC_OPCODE_NORM_INV" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Standardavviket av normalfordelinga." +msgstr "Standardavviket av normalfordelingen." #. wodEb #: sc/inc/scfuncs.hrc:2305 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Values of the inverse normal distribution." -msgstr "Verdien av den inverse normalfordelinga." +msgstr "Verdien av den inverse normalfordelingen." #. 4Nbw3 #: sc/inc/scfuncs.hrc:2306 @@ -10303,7 +10303,7 @@ #: sc/inc/scfuncs.hrc:2307 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "The probability value for which the inverse normal distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse normalfordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse normalfordelingen skal regnes ut fra." #. LEy4H #: sc/inc/scfuncs.hrc:2308 @@ -10315,7 +10315,7 @@ #: sc/inc/scfuncs.hrc:2309 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "The mean value. The mean value of the normal distribution." -msgstr "Gjennomsnittsverdien av normalfordelinga." +msgstr "Gjennomsnittsverdien av normalfordelingen." #. pRhBy #: sc/inc/scfuncs.hrc:2310 @@ -10327,13 +10327,13 @@ #: sc/inc/scfuncs.hrc:2311 msgctxt "SC_OPCODE_NORM_INV_MS" msgid "Standard deviation. The standard deviation of the normal distribution." -msgstr "Standardavviket av normalfordelinga." +msgstr "Standardavviket av normalfordelingen." #. yX9mS #: sc/inc/scfuncs.hrc:2317 msgctxt "SC_OPCODE_STD_NORM_DIST" msgid "The values of the standard normal cumulative distribution." -msgstr "Verdiene i den kumulative standardnormalfordelinga." +msgstr "Verdiene i den kumulative standardnormalfordelingen." #. KAfpq #: sc/inc/scfuncs.hrc:2318 @@ -10345,7 +10345,7 @@ #: sc/inc/scfuncs.hrc:2319 msgctxt "SC_OPCODE_STD_NORM_DIST" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "Verdiene som standardnormalfordelinga beregnes ut fra." +msgstr "Verdiene som standardnormalfordelingen beregnes ut fra." #. zuSQk #: sc/inc/scfuncs.hrc:2325 @@ -10363,7 +10363,7 @@ #: sc/inc/scfuncs.hrc:2327 msgctxt "SC_OPCODE_STD_NORM_DIST_MS" msgid "The value for which the standard normal distribution is to be calculated." -msgstr "Verdiene som standardnormalfordelinga blir regnet ut fra." +msgstr "Verdiene som standardnormalfordelingen blir regnet ut fra." #. FEB7N #: sc/inc/scfuncs.hrc:2328 @@ -10381,7 +10381,7 @@ #: sc/inc/scfuncs.hrc:2335 msgctxt "SC_OPCODE_S_NORM_INV" msgid "Values of the inverse standard normal distribution." -msgstr "Verdier i den inverse standardnormalfordelinga." +msgstr "Verdier i den inverse standardnormalfordelingen." #. N2AAw #: sc/inc/scfuncs.hrc:2336 @@ -10393,7 +10393,7 @@ #: sc/inc/scfuncs.hrc:2337 msgctxt "SC_OPCODE_S_NORM_INV" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse standardnormalfordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse standardnormalfordelingen skal beregnes ut fra." #. Cd7DU #: sc/inc/scfuncs.hrc:2343 @@ -10411,13 +10411,13 @@ #: sc/inc/scfuncs.hrc:2345 msgctxt "SC_OPCODE_S_NORM_INV_MS" msgid "The probability value for which the inverse standard normal distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse standardnormalfordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse standardnormalfordelingen skal regnes ut fra." #. iDXnR #: sc/inc/scfuncs.hrc:2351 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "Values of the log normal distribution." -msgstr "Verdier i lognormalfordelinga." +msgstr "Verdier i lognormalfordelingen." #. Ki8Dr #: sc/inc/scfuncs.hrc:2352 @@ -10429,7 +10429,7 @@ #: sc/inc/scfuncs.hrc:2353 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The value for which the log normal distribution is to be calculated." -msgstr "Verdiene som lognormalfordelinga skal beregnes fra." +msgstr "Verdiene som lognormalfordelingen skal beregnes fra." #. kXpBc #: sc/inc/scfuncs.hrc:2354 @@ -10441,7 +10441,7 @@ #: sc/inc/scfuncs.hrc:2355 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The mean value of the log normal distribution. It is set to 0 if omitted." -msgstr "Gjennomsnittsverdien til lognormalfordelinga. Hvis du ikke angir en verdi settes den til 0." +msgstr "Gjennomsnittsverdien til lognormalfordelingen. Hvis du ikke angir en verdi settes den til 0." #. aJf8v #: sc/inc/scfuncs.hrc:2356 @@ -10453,7 +10453,7 @@ #: sc/inc/scfuncs.hrc:2357 msgctxt "SC_OPCODE_LOG_NORM_DIST" msgid "The standard deviation of the log normal distribution. It is set to 1 if omitted." -msgstr "Standardavviket av lognormalfordelinga. Hvis du ikke angir noe settes den til 1." +msgstr "Standardavviket av lognormalfordelingen. Hvis du ikke angir noe settes den til 1." #. VsLsD #: sc/inc/scfuncs.hrc:2358 @@ -10471,7 +10471,7 @@ #: sc/inc/scfuncs.hrc:2365 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "Values of the log normal distribution." -msgstr "Verdier i lognormalfordelinga." +msgstr "Verdier i lognormalfordelingen." #. tG5vo #: sc/inc/scfuncs.hrc:2366 @@ -10483,7 +10483,7 @@ #: sc/inc/scfuncs.hrc:2367 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The value for which the log normal distribution is to be calculated." -msgstr "Verdiene som lognormalfordelinga skal regnes ut fra." +msgstr "Verdiene som lognormalfordelingen skal regnes ut fra." #. FHmKU #: sc/inc/scfuncs.hrc:2368 @@ -10495,7 +10495,7 @@ #: sc/inc/scfuncs.hrc:2369 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The mean value of the log normal distribution." -msgstr "Gjennomsnittsverdien av lognormalfordelinga." +msgstr "Gjennomsnittsverdien av lognormalfordelingen." #. HSDAn #: sc/inc/scfuncs.hrc:2370 @@ -10507,7 +10507,7 @@ #: sc/inc/scfuncs.hrc:2371 msgctxt "SC_OPCODE_LOG_NORM_DIST_MS" msgid "The standard deviation of the log normal distribution." -msgstr "Standardavviket for lognormalfordelinga." +msgstr "Standardavviket for lognormalfordelingen." #. JeiQB #: sc/inc/scfuncs.hrc:2372 @@ -10525,7 +10525,7 @@ #: sc/inc/scfuncs.hrc:2379 msgctxt "SC_OPCODE_LOG_INV" msgid "Values of the inverse of the lognormal distribution." -msgstr "Verdiene i den inverse lognormalfordelinga." +msgstr "Verdiene i den inverse lognormalfordelingen." #. sUwE4 #: sc/inc/scfuncs.hrc:2380 @@ -10537,7 +10537,7 @@ #: sc/inc/scfuncs.hrc:2381 msgctxt "SC_OPCODE_LOG_INV" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse lognormalfordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse lognormalfordelingen skal beregnes ut fra." #. DcZBh #: sc/inc/scfuncs.hrc:2382 @@ -10549,7 +10549,7 @@ #: sc/inc/scfuncs.hrc:2383 msgctxt "SC_OPCODE_LOG_INV" msgid "Mean value. The mean value of the log normal distribution." -msgstr "Gjennomsnittsverdi. Gjennomsnittsverdien av lognormalfordelinga." +msgstr "Gjennomsnittsverdi. Gjennomsnittsverdien av lognormalfordelingen." #. aMDvP #: sc/inc/scfuncs.hrc:2384 @@ -10561,13 +10561,13 @@ #: sc/inc/scfuncs.hrc:2385 msgctxt "SC_OPCODE_LOG_INV" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "Standardavvik. Standardavviket av lognormalfordelinga." +msgstr "Standardavvik. Standardavviket av lognormalfordelingen." #. T4N5D #: sc/inc/scfuncs.hrc:2391 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Values of the inverse of the lognormal distribution." -msgstr "Verdiene i den inverse lognormalfordelinga." +msgstr "Verdiene i den inverse lognormalfordelingen." #. CX2EQ #: sc/inc/scfuncs.hrc:2392 @@ -10579,7 +10579,7 @@ #: sc/inc/scfuncs.hrc:2393 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "The probability value for which the inverse log normal distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse lognormalfordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse lognormalfordelingen skal regnes ut fra." #. BgAcE #: sc/inc/scfuncs.hrc:2394 @@ -10591,7 +10591,7 @@ #: sc/inc/scfuncs.hrc:2395 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Mean value. The mean value of the log normal distribution." -msgstr "Gjennomsnittsverdien av lognormalfordelinga." +msgstr "Gjennomsnittsverdien av lognormalfordelingen." #. rzAiX #: sc/inc/scfuncs.hrc:2396 @@ -10603,13 +10603,13 @@ #: sc/inc/scfuncs.hrc:2397 msgctxt "SC_OPCODE_LOG_INV_MS" msgid "Standard deviation. The standard deviation of the log normal distribution." -msgstr "Standardavvik. Standardavviket av lognormalfordelinga." +msgstr "Standardavvik. Standardavviket av lognormalfordelingen." #. 8wWP2 #: sc/inc/scfuncs.hrc:2403 msgctxt "SC_OPCODE_EXP_DIST" msgid "Values of the exponential distribution." -msgstr "Verdiene i eksponentialfordelinga." +msgstr "Verdiene i eksponentialfordelingen." #. FU5Fy #: sc/inc/scfuncs.hrc:2404 @@ -10621,7 +10621,7 @@ #: sc/inc/scfuncs.hrc:2405 msgctxt "SC_OPCODE_EXP_DIST" msgid "The value to which the exponential distribution is to be calculated." -msgstr "Verdiene som eksponentialfordelinga skal beregnes fra." +msgstr "Verdiene som eksponentialfordelingen skal beregnes fra." #. VTtEt #: sc/inc/scfuncs.hrc:2406 @@ -10633,7 +10633,7 @@ #: sc/inc/scfuncs.hrc:2407 msgctxt "SC_OPCODE_EXP_DIST" msgid "The parameters of the exponential distribution." -msgstr "Parametrene til eksponentialfordelinga." +msgstr "Parametrene til eksponentialfordelingen." #. DaEE7 #: sc/inc/scfuncs.hrc:2408 @@ -10645,13 +10645,13 @@ #: sc/inc/scfuncs.hrc:2409 msgctxt "SC_OPCODE_EXP_DIST" msgid "Cumulated. C=0 calculates the density function, C=1 the distribution." -msgstr "Kumulert. K=0 beregner tetthetsfunksjonen, K=1 beregner fordelinga." +msgstr "Kumulert. K=0 beregner tetthetsfunksjonen, K=1 beregner fordelingen." #. 7i2aN #: sc/inc/scfuncs.hrc:2415 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "Values of the exponential distribution." -msgstr "Verdiene i eksponentialfordelinga." +msgstr "Verdiene i eksponentialfordelingen." #. E3Fwz #: sc/inc/scfuncs.hrc:2416 @@ -10663,7 +10663,7 @@ #: sc/inc/scfuncs.hrc:2417 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "The value to which the exponential distribution is to be calculated." -msgstr "Verdiene som eksponentialfordelinga skal beregnes fra." +msgstr "Verdiene som eksponentialfordelingen skal beregnes fra." #. U2dx6 #: sc/inc/scfuncs.hrc:2418 @@ -10675,7 +10675,7 @@ #: sc/inc/scfuncs.hrc:2419 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "The parameters of the exponential distribution." -msgstr "Parametrene til eksponentialfordelinga." +msgstr "Parametrene til eksponentialfordelingen." #. KJ8Eo #: sc/inc/scfuncs.hrc:2420 @@ -10687,13 +10687,13 @@ #: sc/inc/scfuncs.hrc:2421 msgctxt "SC_OPCODE_EXP_DIST_MS" msgid "Cumulated. C=0 calculates the density function, C=1 the distribution." -msgstr "Kumulert. K=0 reknar ut tetthetsfunksjonen, K=1 regner ut fordelinga." +msgstr "Kumulert. K=0 reknar ut tetthetsfunksjonen, K=1 regner ut fordelingen." #. QJrVu #: sc/inc/scfuncs.hrc:2427 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "Beregner sannsynligheten til tetthetsfunksjonen eller den kumulative fordelingsfunksjonen til gammafordelinga." +msgstr "Beregner sannsynligheten til tetthetsfunksjonen eller den kumulative fordelingsfunksjonen til gammafordelingen." #. D32pE #: sc/inc/scfuncs.hrc:2428 @@ -10705,7 +10705,7 @@ #: sc/inc/scfuncs.hrc:2429 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "The value for which the gamma distribution is to be calculated." -msgstr "Verdien som gammafordelinga skal beregnes ut fra." +msgstr "Verdien som gammafordelingen skal beregnes ut fra." #. ptWdK #: sc/inc/scfuncs.hrc:2430 @@ -10717,7 +10717,7 @@ #: sc/inc/scfuncs.hrc:2431 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "The Alpha parameter of the Gamma distribution." -msgstr "Alfaparameteren til gammafordelinga." +msgstr "Alfaparameteren til gammafordelingen." #. LUBxW #: sc/inc/scfuncs.hrc:2432 @@ -10729,13 +10729,13 @@ #: sc/inc/scfuncs.hrc:2433 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "The Beta parameter of the Gamma distribution." -msgstr "Betaparameteren til gammafordelinga." +msgstr "Betaparameteren til gammafordelingen." #. MsyLG #: sc/inc/scfuncs.hrc:2434 msgctxt "SC_OPCODE_GAMMA_DIST" msgid "Cumulative" -msgstr "kumulativ" +msgstr "Kumulativ" #. 4uBHp #: sc/inc/scfuncs.hrc:2435 @@ -10747,7 +10747,7 @@ #: sc/inc/scfuncs.hrc:2441 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." -msgstr "Gir verdien til tetthetsfunksjonen eller den kumulative fordelingsfunksjonen for gammafordelinga." +msgstr "Gir verdien til tetthetsfunksjonen eller den kumulative fordelingsfunksjonen for gammafordelingen." #. 5Vm8n #: sc/inc/scfuncs.hrc:2442 @@ -10759,7 +10759,7 @@ #: sc/inc/scfuncs.hrc:2443 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "The value for which the gamma distribution is to be calculated." -msgstr "Verdien som gammafordelinga skal regnes ut fra." +msgstr "Verdien som gammafordelingen skal regnes ut fra." #. VHMzm #: sc/inc/scfuncs.hrc:2444 @@ -10771,7 +10771,7 @@ #: sc/inc/scfuncs.hrc:2445 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "The Alpha parameter of the Gamma distribution." -msgstr "Alfa-parameteren til gammafordelinga." +msgstr "Alfa-parameteren til gammafordelingen." #. 2XRcY #: sc/inc/scfuncs.hrc:2446 @@ -10783,7 +10783,7 @@ #: sc/inc/scfuncs.hrc:2447 msgctxt "SC_OPCODE_GAMMA_DIST_MS" msgid "The Beta parameter of the Gamma distribution." -msgstr "Beta-parameteren til gammafordelinga." +msgstr "Beta-parameteren til gammafordelingen." #. KbAwa #: sc/inc/scfuncs.hrc:2448 @@ -10801,7 +10801,7 @@ #: sc/inc/scfuncs.hrc:2455 msgctxt "SC_OPCODE_GAMMA_INV" msgid "Values of the inverse gamma distribution." -msgstr "Verdier i den inverse gammafordelinga." +msgstr "Verdier i den inverse gammafordelingen." #. JKWZq #: sc/inc/scfuncs.hrc:2456 @@ -10813,7 +10813,7 @@ #: sc/inc/scfuncs.hrc:2457 msgctxt "SC_OPCODE_GAMMA_INV" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse gammafordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse gammafordelingen skal beregnes ut fra." #. EuDN4 #: sc/inc/scfuncs.hrc:2458 @@ -10825,7 +10825,7 @@ #: sc/inc/scfuncs.hrc:2459 msgctxt "SC_OPCODE_GAMMA_INV" msgid "The Alpha (shape) parameter of the Gamma distribution." -msgstr "Alfaparameteren (form) til gammafordelinga." +msgstr "Alfaparameteren (form) til gammafordelingen." #. B9wai #: sc/inc/scfuncs.hrc:2460 @@ -10837,13 +10837,13 @@ #: sc/inc/scfuncs.hrc:2461 msgctxt "SC_OPCODE_GAMMA_INV" msgid "The Beta (scale) parameter of the Gamma distribution." -msgstr "Betaparameteren (form) til gammafordelinga." +msgstr "Betaparameteren (form) til gammafordelingen." #. k5hjT #: sc/inc/scfuncs.hrc:2467 msgctxt "SC_OPCODE_GAMMA_INV_MS" msgid "Values of the inverse gamma distribution." -msgstr "Verdier i den inverse gammafordelinga." +msgstr "Verdier i den inverse gammafordelingen." #. EiRMA #: sc/inc/scfuncs.hrc:2468 @@ -10855,7 +10855,7 @@ #: sc/inc/scfuncs.hrc:2469 msgctxt "SC_OPCODE_GAMMA_INV_MS" msgid "The probability value for which the inverse gamma distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse gammafordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse gammafordelingen skal regnes ut fra." #. hs5zh #: sc/inc/scfuncs.hrc:2470 @@ -10867,7 +10867,7 @@ #: sc/inc/scfuncs.hrc:2471 msgctxt "SC_OPCODE_GAMMA_INV_MS" msgid "The Alpha (shape) parameter of the Gamma distribution." -msgstr "Alfa-parameteren (form) til gammafordelinga." +msgstr "Alfa-parameteren (form) til gammafordelingen." #. tWzGv #: sc/inc/scfuncs.hrc:2472 @@ -10879,13 +10879,13 @@ #: sc/inc/scfuncs.hrc:2473 msgctxt "SC_OPCODE_GAMMA_INV_MS" msgid "The Beta (scale) parameter of the Gamma distribution." -msgstr "Beta-parameteren (skala) til gammafordelinga." +msgstr "Beta-parameteren (skala) til gammafordelingen." #. iwMRE #: sc/inc/scfuncs.hrc:2479 msgctxt "SC_OPCODE_GAMMA_LN" msgid "Returns the natural logarithm of the gamma function." -msgstr "Gir den naturlige logaritmen av gammafunksjonen." +msgstr "Gir den naturlige logaritmen av gammafordelingen." #. TAHfb #: sc/inc/scfuncs.hrc:2480 @@ -10939,7 +10939,7 @@ #: sc/inc/scfuncs.hrc:2505 msgctxt "SC_OPCODE_BETA_DIST" msgid "Values of the beta distribution." -msgstr "Verdier i betafordelinga." +msgstr "Verdier i betafordelingen." #. eGoe3 #: sc/inc/scfuncs.hrc:2506 @@ -10951,7 +10951,7 @@ #: sc/inc/scfuncs.hrc:2507 msgctxt "SC_OPCODE_BETA_DIST" msgid "The value for which the beta distribution is to be calculated." -msgstr "Verdien som betafordelinga skal beregnes ut fra." +msgstr "Verdien som betafordelingen skal beregnes ut fra." #. puCdD #: sc/inc/scfuncs.hrc:2508 @@ -10963,7 +10963,7 @@ #: sc/inc/scfuncs.hrc:2509 msgctxt "SC_OPCODE_BETA_DIST" msgid "The Alpha parameter of the Beta distribution." -msgstr "Alfaparameteren til betafordelinga." +msgstr "Alfaparameteren til betafordelingen." #. kBL9m #: sc/inc/scfuncs.hrc:2510 @@ -10975,7 +10975,7 @@ #: sc/inc/scfuncs.hrc:2511 msgctxt "SC_OPCODE_BETA_DIST" msgid "The Beta parameter of the Beta distribution." -msgstr "Betaparameteren til betafordelinga." +msgstr "Betaparameteren til betafordelingen." #. DawE4 #: sc/inc/scfuncs.hrc:2512 @@ -10987,19 +10987,19 @@ #: sc/inc/scfuncs.hrc:2513 msgctxt "SC_OPCODE_BETA_DIST" msgid "The starting value for the value interval of the distribution." -msgstr "Startverdien for verdiintervallet til fordelinga." +msgstr "Startverdien for verdiintervallet til betafordelingen." #. zTPsU #: sc/inc/scfuncs.hrc:2514 msgctxt "SC_OPCODE_BETA_DIST" msgid "End" -msgstr "slutt" +msgstr "Slutt" #. Muuss #: sc/inc/scfuncs.hrc:2515 msgctxt "SC_OPCODE_BETA_DIST" msgid "The final value for the value interval of the distribution." -msgstr "Sluttverdien for verdiintervallet til fordelinga." +msgstr "Sluttverdien for verdiintervallet til fordelingen." #. EKtCA #: sc/inc/scfuncs.hrc:2516 @@ -11017,7 +11017,7 @@ #: sc/inc/scfuncs.hrc:2523 msgctxt "SC_OPCODE_BETA_INV" msgid "Values of the inverse beta distribution." -msgstr "Verdiene til den inverse betafordelinga." +msgstr "Verdiene til den inverse betafordelingen." #. JJCZU #: sc/inc/scfuncs.hrc:2524 @@ -11029,7 +11029,7 @@ #: sc/inc/scfuncs.hrc:2525 msgctxt "SC_OPCODE_BETA_INV" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse betafordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse betafordelingen skal beregnes ut fra." #. vD8cE #: sc/inc/scfuncs.hrc:2526 @@ -11041,7 +11041,7 @@ #: sc/inc/scfuncs.hrc:2527 msgctxt "SC_OPCODE_BETA_INV" msgid "The Alpha parameter of the Beta distribution." -msgstr "Alfaparameteren til betafordelinga." +msgstr "Alfaparameteren til betafordelingen." #. G6NjF #: sc/inc/scfuncs.hrc:2528 @@ -11053,31 +11053,31 @@ #: sc/inc/scfuncs.hrc:2529 msgctxt "SC_OPCODE_BETA_INV" msgid "The Beta parameter of the Beta distribution." -msgstr "Betaparameteren til betafordelinga." +msgstr "Betaparameteren til betafordelingen." #. KzjDM #: sc/inc/scfuncs.hrc:2530 msgctxt "SC_OPCODE_BETA_INV" msgid "Start" -msgstr "start" +msgstr "Start" #. tBHKE #: sc/inc/scfuncs.hrc:2531 msgctxt "SC_OPCODE_BETA_INV" msgid "The starting value for the value interval of the distribution." -msgstr "Startverdien for verdiintervallet til fordelinga." +msgstr "Startverdien for verdiintervallet til fordelingen." #. tQNGz #: sc/inc/scfuncs.hrc:2532 msgctxt "SC_OPCODE_BETA_INV" msgid "End" -msgstr "slutt" +msgstr "Slutt" #. CaC33 #: sc/inc/scfuncs.hrc:2533 msgctxt "SC_OPCODE_BETA_INV" msgid "The final value for the value interval of the distribution." -msgstr "Sluttverdien for verdiintervallet til fordelinga." +msgstr "Sluttverdien for verdiintervallet til fordelingen." #. 6aRHE #: sc/inc/scfuncs.hrc:2539 @@ -11143,7 +11143,7 @@ #: sc/inc/scfuncs.hrc:2549 msgctxt "SC_OPCODE_BETA_DIST_MS" msgid "The starting value for the value interval of the distribution." -msgstr "Startverdien for verdiintervallet til fordelinga." +msgstr "Startverdien for verdiintervallet til fordelingen." #. UmfwG #: sc/inc/scfuncs.hrc:2550 @@ -11155,13 +11155,13 @@ #: sc/inc/scfuncs.hrc:2551 msgctxt "SC_OPCODE_BETA_DIST_MS" msgid "The final value for the value interval of the distribution." -msgstr "Sluttverdien for verdiintervallet til fordelinga." +msgstr "Sluttverdien for verdiintervallet til fordelingen." #. 5kAK6 #: sc/inc/scfuncs.hrc:2557 msgctxt "SC_OPCODE_BETA_INV_MS" msgid "Values of the inverse beta distribution." -msgstr "Verdiene til den inverse betafordelinga." +msgstr "Verdiene til den inverse betafordelingen." #. iXRBL #: sc/inc/scfuncs.hrc:2558 @@ -11173,7 +11173,7 @@ #: sc/inc/scfuncs.hrc:2559 msgctxt "SC_OPCODE_BETA_INV_MS" msgid "The probability value for which the inverse beta distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse betafordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse betafordelingen skal regnes ut fra." #. EKDBU #: sc/inc/scfuncs.hrc:2560 @@ -11185,7 +11185,7 @@ #: sc/inc/scfuncs.hrc:2561 msgctxt "SC_OPCODE_BETA_INV_MS" msgid "The Alpha parameter of the Beta distribution." -msgstr "Alfaparameteren til betafordelinga." +msgstr "Alfaparameteren til betafordelingen." #. LbnDc #: sc/inc/scfuncs.hrc:2562 @@ -11197,7 +11197,7 @@ #: sc/inc/scfuncs.hrc:2563 msgctxt "SC_OPCODE_BETA_INV_MS" msgid "The Beta parameter of the Beta distribution." -msgstr "Betaparameteren til betafordelinga." +msgstr "Betaparameteren til betafordelingen." #. jBtqf #: sc/inc/scfuncs.hrc:2564 @@ -11209,7 +11209,7 @@ #: sc/inc/scfuncs.hrc:2565 msgctxt "SC_OPCODE_BETA_INV_MS" msgid "The starting value for the value interval of the distribution." -msgstr "Startverdien for verdiintervallet til fordelinga." +msgstr "Startverdien for verdiintervallet til fordelingen." #. GWDpp #: sc/inc/scfuncs.hrc:2566 @@ -11221,13 +11221,13 @@ #: sc/inc/scfuncs.hrc:2567 msgctxt "SC_OPCODE_BETA_INV_MS" msgid "The final value for the value interval of the distribution." -msgstr "Sluttverdien for verdiintervallet til fordelinga." +msgstr "Sluttverdien for verdiintervallet til fordelingen." #. BT53q #: sc/inc/scfuncs.hrc:2573 msgctxt "SC_OPCODE_WEIBULL" msgid "Returns the values of the Weibull distribution." -msgstr "Gir verdiene til Weibull-fordelinga." +msgstr "Gir verdiene til Weibull-fordelingen." #. hy9dU #: sc/inc/scfuncs.hrc:2574 @@ -11239,19 +11239,19 @@ #: sc/inc/scfuncs.hrc:2575 msgctxt "SC_OPCODE_WEIBULL" msgid "The value for which the Weibull distribution is to be calculated." -msgstr "Verdien som Weibull-fordelinga skal beregnes ut fra." +msgstr "Verdien som Weibull-fordelingen skal beregnes ut fra." #. GEeYu #: sc/inc/scfuncs.hrc:2576 msgctxt "SC_OPCODE_WEIBULL" msgid "Alpha" -msgstr "alfa" +msgstr "Alfa" #. JREDG #: sc/inc/scfuncs.hrc:2577 msgctxt "SC_OPCODE_WEIBULL" msgid "The Alpha parameter of the Weibull distribution." -msgstr "Alfaparameteren til Weibull-fordelinga." +msgstr "Alfaparameteren til Weibull-fordelingen." #. D5SKk #: sc/inc/scfuncs.hrc:2578 @@ -11263,7 +11263,7 @@ #: sc/inc/scfuncs.hrc:2579 msgctxt "SC_OPCODE_WEIBULL" msgid "The Beta parameter of the Weibull distribution." -msgstr "Betaparameteren til Weibull-fordelinga." +msgstr "Betaparameteren til Weibull-fordelingen." #. tQHbF #: sc/inc/scfuncs.hrc:2580 @@ -11275,13 +11275,13 @@ #: sc/inc/scfuncs.hrc:2581 msgctxt "SC_OPCODE_WEIBULL" msgid "Cumulated. C=0 calculates the density function, C=1 the distribution." -msgstr "Kumulert. K=0 beregner tetthetsfunksjonen, K=1 beregner fordelinga." +msgstr "Kumulert. K=0 beregner tetthetsfunksjonen, K=1 beregner fordelingen." #. 3cKfF #: sc/inc/scfuncs.hrc:2587 msgctxt "SC_OPCODE_WEIBULL_MS" msgid "Returns the values of the Weibull distribution." -msgstr "Gir verdiene til Weibull-fordelinga." +msgstr "Gir verdiene til Weibull-fordelingen." #. Dx7qt #: sc/inc/scfuncs.hrc:2588 @@ -11293,7 +11293,7 @@ #: sc/inc/scfuncs.hrc:2589 msgctxt "SC_OPCODE_WEIBULL_MS" msgid "The value for which the Weibull distribution is to be calculated." -msgstr "Verdien som Weibull-fordelinga skal beregnes ut fra." +msgstr "Verdien som Weibull-fordelingen skal beregnes ut fra." #. np6gD #: sc/inc/scfuncs.hrc:2590 @@ -11305,7 +11305,7 @@ #: sc/inc/scfuncs.hrc:2591 msgctxt "SC_OPCODE_WEIBULL_MS" msgid "The Alpha parameter of the Weibull distribution." -msgstr "Alfaparameteren til Weibull-fordelinga." +msgstr "Alfaparameteren til Weibull-fordelingen." #. EEVBC #: sc/inc/scfuncs.hrc:2592 @@ -11317,7 +11317,7 @@ #: sc/inc/scfuncs.hrc:2593 msgctxt "SC_OPCODE_WEIBULL_MS" msgid "The Beta parameter of the Weibull distribution." -msgstr "Betaparameteren til Weibull-fordelinga." +msgstr "Betaparameteren til Weibull-fordelingen." #. zsBgB #: sc/inc/scfuncs.hrc:2594 @@ -11329,13 +11329,13 @@ #: sc/inc/scfuncs.hrc:2595 msgctxt "SC_OPCODE_WEIBULL_MS" msgid "Cumulated. C=0 calculates the density function, C=1 the distribution." -msgstr "Kumulert. K=0 regner ut tetthetsfunksjonen, K=1 regner ut fordelinga." +msgstr "Kumulert. K=0 regner ut tetthetsfunksjonen, K=1 regner ut fordelingen." #. X6EvS #: sc/inc/scfuncs.hrc:2601 msgctxt "SC_OPCODE_HYP_GEOM_DIST" msgid "Values of the hypergeometric distribution." -msgstr "Verdiene til den hypergeometriske fordelinga." +msgstr "Verdiene til den hypergeometriske fordelingen." #. Mpxny #: sc/inc/scfuncs.hrc:2602 @@ -11401,7 +11401,7 @@ #: sc/inc/scfuncs.hrc:2617 msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS" msgid "Values of the hypergeometric distribution." -msgstr "Verdiene til den hypergeometriske fordelinga." +msgstr "Verdiene til den hypergeometriske fordelingen." #. EujFt #: sc/inc/scfuncs.hrc:2618 @@ -11467,7 +11467,7 @@ #: sc/inc/scfuncs.hrc:2633 msgctxt "SC_OPCODE_T_DIST" msgid "Returns the t-distribution." -msgstr "Gir t-fordelinga." +msgstr "Returnerer t-fordelingen." #. uGqDD #: sc/inc/scfuncs.hrc:2634 @@ -11479,7 +11479,7 @@ #: sc/inc/scfuncs.hrc:2635 msgctxt "SC_OPCODE_T_DIST" msgid "The value for which the T distribution is to be calculated." -msgstr "Verdiene som t-fordelinga skal beregnes ut fra." +msgstr "Verdiene som t-fordelingen skal beregnes ut fra." #. FAbRc #: sc/inc/scfuncs.hrc:2636 @@ -11491,7 +11491,7 @@ #: sc/inc/scfuncs.hrc:2637 msgctxt "SC_OPCODE_T_DIST" msgid "The degrees of freedom of the T distribution." -msgstr "Frihetsgrader i t-fordelinga." +msgstr "Frihetsgrader i t-fordelingen." #. jJ9k2 #: sc/inc/scfuncs.hrc:2638 @@ -11521,7 +11521,7 @@ #: sc/inc/scfuncs.hrc:2647 msgctxt "SC_OPCODE_T_DIST_2T" msgid "The value for which the T distribution is to be calculated." -msgstr "Verdiene som t-fordelinga skal regnes ut fra." +msgstr "Verdiene som t-fordelingen skal regnes ut fra." #. 7jWjn #: sc/inc/scfuncs.hrc:2648 @@ -11533,13 +11533,13 @@ #: sc/inc/scfuncs.hrc:2649 msgctxt "SC_OPCODE_T_DIST_2T" msgid "The degrees of freedom of the T distribution." -msgstr "Fridomsgrader i t-fordelinga." +msgstr "Fridomsgrader i t-fordelingen." #. 8Sznm #: sc/inc/scfuncs.hrc:2655 msgctxt "SC_OPCODE_T_DIST_MS" msgid "Returns the t-distribution." -msgstr "Returnerer t-fordelinga." +msgstr "Returnerer t-fordelingen." #. j8Fn8 #: sc/inc/scfuncs.hrc:2656 @@ -11551,7 +11551,7 @@ #: sc/inc/scfuncs.hrc:2657 msgctxt "SC_OPCODE_T_DIST_MS" msgid "The value for which the T distribution is to be calculated." -msgstr "Verdiene som t-fordelinga skal regnes ut fra." +msgstr "Verdiene som t-fordelingen skal regnes ut fra." #. fSAAC #: sc/inc/scfuncs.hrc:2658 @@ -11563,7 +11563,7 @@ #: sc/inc/scfuncs.hrc:2659 msgctxt "SC_OPCODE_T_DIST_MS" msgid "The degrees of freedom of the T distribution." -msgstr "Fridomsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. PGwSD #: sc/inc/scfuncs.hrc:2660 @@ -11581,7 +11581,7 @@ #: sc/inc/scfuncs.hrc:2667 msgctxt "SC_OPCODE_T_DIST_RT" msgid "Returns the right-tailed t-distribution." -msgstr "Returnerer høyresida av t-fordelinga." +msgstr "Returnerer høyresiden av t-fordelingen." #. ao7MQ #: sc/inc/scfuncs.hrc:2668 @@ -11593,7 +11593,7 @@ #: sc/inc/scfuncs.hrc:2669 msgctxt "SC_OPCODE_T_DIST_RT" msgid "The value for which the T distribution is to be calculated." -msgstr "Verdiene som t-fordelinga skal regnes ut fra." +msgstr "Verdiene som t-fordelingen skal regnes ut fra." #. pArVD #: sc/inc/scfuncs.hrc:2670 @@ -11605,13 +11605,13 @@ #: sc/inc/scfuncs.hrc:2671 msgctxt "SC_OPCODE_T_DIST_RT" msgid "The degrees of freedom of the T distribution." -msgstr "Fridomsgrader i t-fordelinga." +msgstr "Fridomsgrader i t-fordelingen." #. P4JED #: sc/inc/scfuncs.hrc:2677 msgctxt "SC_OPCODE_T_INV" msgid "Values of the inverse t-distribution." -msgstr "Verdiene til den inverse t-fordelinga." +msgstr "Verdiene til den inverse t-fordelingen." #. Gs2p4 #: sc/inc/scfuncs.hrc:2678 @@ -11623,7 +11623,7 @@ #: sc/inc/scfuncs.hrc:2679 msgctxt "SC_OPCODE_T_INV" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse t-fordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse t-fordelingen skal beregnes ut fra." #. Gd98u #: sc/inc/scfuncs.hrc:2680 @@ -11635,7 +11635,7 @@ #: sc/inc/scfuncs.hrc:2681 msgctxt "SC_OPCODE_T_INV" msgid "The degrees of freedom of the T distribution." -msgstr "Frihetsgrader i t-fordelinga." +msgstr "Frihetsgrader i t-fordelingen." #. xbXUk #: sc/inc/scfuncs.hrc:2687 @@ -11653,7 +11653,7 @@ #: sc/inc/scfuncs.hrc:2689 msgctxt "SC_OPCODE_T_INV_MS" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse t-fordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse t-fordelingen skal regnes ut fra." #. qSp6G #: sc/inc/scfuncs.hrc:2690 @@ -11665,13 +11665,13 @@ #: sc/inc/scfuncs.hrc:2691 msgctxt "SC_OPCODE_T_INV_MS" msgid "The degrees of freedom of the T distribution." -msgstr "Fridomsgrader i t-fordelinga." +msgstr "Frihetsgrader i t-fordelingen." #. sjJCx #: sc/inc/scfuncs.hrc:2697 msgctxt "SC_OPCODE_T_INV_2T" msgid "Values of the two-tailed inverse t-distribution." -msgstr "Verdiene til begge sidene av den inverse t-fordelinga." +msgstr "Verdiene til begge sidene av den inverse t-fordelingen." #. B9uvE #: sc/inc/scfuncs.hrc:2698 @@ -11683,7 +11683,7 @@ #: sc/inc/scfuncs.hrc:2699 msgctxt "SC_OPCODE_T_INV_2T" msgid "The probability value for which the inverse T distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse t-fordelinga skal regnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse t-fordelingen skal regnes ut fra." #. Nj3Wi #: sc/inc/scfuncs.hrc:2700 @@ -11695,13 +11695,13 @@ #: sc/inc/scfuncs.hrc:2701 msgctxt "SC_OPCODE_T_INV_2T" msgid "The degrees of freedom of the T distribution." -msgstr "Fridomsgrader i t-fordelinga." +msgstr "Frihetsgrader i t-fordelingen." #. 29d9Q #: sc/inc/scfuncs.hrc:2707 msgctxt "SC_OPCODE_F_DIST" msgid "Values of the F probability distribution." -msgstr "Verdiene til F-sannsynlighetsfordelinga." +msgstr "Verdiene til F-sannsynlighetsfordelingen." #. B2Ytr #: sc/inc/scfuncs.hrc:2708 @@ -11713,7 +11713,7 @@ #: sc/inc/scfuncs.hrc:2709 msgctxt "SC_OPCODE_F_DIST" msgid "The value for which the F distribution is to be calculated." -msgstr "Verdien som F-fordelinga skal beregnes ut fra." +msgstr "Verdien som F-fordelingen skal beregnes ut fra." #. usscA #: sc/inc/scfuncs.hrc:2710 @@ -11725,7 +11725,7 @@ #: sc/inc/scfuncs.hrc:2711 msgctxt "SC_OPCODE_F_DIST" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "Frihetsgrader i telleren i F-fordelinga." +msgstr "Frihetsgrader i telleren i F-fordelingen." #. TyDai #: sc/inc/scfuncs.hrc:2712 @@ -11737,13 +11737,13 @@ #: sc/inc/scfuncs.hrc:2713 msgctxt "SC_OPCODE_F_DIST" msgid "The degrees of freedom in the denominator of the F distribution." -msgstr "Frihetsgrader i nevneren i F-fordelinga." +msgstr "Frihetsgrader i nevneren i F-fordelingen." #. ZB7wi #: sc/inc/scfuncs.hrc:2719 msgctxt "SC_OPCODE_F_DIST_LT" msgid "Values of the left tail F probability distribution." -msgstr "Verdiene til den venstresidige F-sannsynlighetsfordelinga." +msgstr "Verdiene til den venstresidige F-sannsynlighetsfordelingen." #. GwxtM #: sc/inc/scfuncs.hrc:2720 @@ -11755,7 +11755,7 @@ #: sc/inc/scfuncs.hrc:2721 msgctxt "SC_OPCODE_F_DIST_LT" msgid "The value for which the F distribution is to be calculated." -msgstr "Verdien som F-fordelinga skal beregnes ut fra." +msgstr "Verdien som F-fordelingen skal beregnes ut fra." #. 9kzwT #: sc/inc/scfuncs.hrc:2722 @@ -11767,7 +11767,7 @@ #: sc/inc/scfuncs.hrc:2723 msgctxt "SC_OPCODE_F_DIST_LT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "Frihetsgrader i telleren i F-fordelinga." +msgstr "Frihetsgrader i telleren i F-fordelingen." #. CnoyJ #: sc/inc/scfuncs.hrc:2724 @@ -11779,7 +11779,7 @@ #: sc/inc/scfuncs.hrc:2725 msgctxt "SC_OPCODE_F_DIST_LT" msgid "The degrees of freedom in the denominator of the F distribution." -msgstr "Frihetsgrader i nevneren i F-fordelinga." +msgstr "Frihetsgrader i nevneren i F-fordelingen." #. xKDTG #: sc/inc/scfuncs.hrc:2726 @@ -11797,7 +11797,7 @@ #: sc/inc/scfuncs.hrc:2733 msgctxt "SC_OPCODE_F_DIST_RT" msgid "Values of the right tail F probability distribution." -msgstr "Verdiene til den høyresidige F-sannsynlighetsfordelinga." +msgstr "Verdiene til den høyresidige F-sannsynlighetsfordelingen." #. oLHty #: sc/inc/scfuncs.hrc:2734 @@ -11809,7 +11809,7 @@ #: sc/inc/scfuncs.hrc:2735 msgctxt "SC_OPCODE_F_DIST_RT" msgid "The value for which the F distribution is to be calculated." -msgstr "Verdien som F-fordelinga skal beregnes ut fra." +msgstr "Verdien som F-fordelingen skal beregnes ut fra." #. Bmgkr #: sc/inc/scfuncs.hrc:2736 @@ -11821,7 +11821,7 @@ #: sc/inc/scfuncs.hrc:2737 msgctxt "SC_OPCODE_F_DIST_RT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "Frihetsgrader i telleren i F-fordelinga." +msgstr "Frihetsgrader i telleren i F-fordelingen." #. AoMi2 #: sc/inc/scfuncs.hrc:2738 @@ -11833,13 +11833,13 @@ #: sc/inc/scfuncs.hrc:2739 msgctxt "SC_OPCODE_F_DIST_RT" msgid "The degrees of freedom in the denominator of the F distribution." -msgstr "Frihetsgrader i nevneren i F-fordelinga." +msgstr "Frihetsgrader i nevneren i F-fordelingen." #. YvZEM #: sc/inc/scfuncs.hrc:2745 msgctxt "SC_OPCODE_F_INV" msgid "Values of the inverse F distribution." -msgstr "Verdiene i den inverse F-fordelinga." +msgstr "Verdiene i den inverse F-fordelingen." #. enGxV #: sc/inc/scfuncs.hrc:2746 @@ -11851,7 +11851,7 @@ #: sc/inc/scfuncs.hrc:2747 msgctxt "SC_OPCODE_F_INV" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse F-fordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse F-fordelingen skal beregnes ut fra." #. BPFpF #: sc/inc/scfuncs.hrc:2748 @@ -11863,7 +11863,7 @@ #: sc/inc/scfuncs.hrc:2749 msgctxt "SC_OPCODE_F_INV" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "Frihetsgrader i telleren i F-fordelinga." +msgstr "Frihetsgrader i telleren i F-fordelingen." #. AMSnq #: sc/inc/scfuncs.hrc:2750 @@ -11875,13 +11875,13 @@ #: sc/inc/scfuncs.hrc:2751 msgctxt "SC_OPCODE_F_INV" msgid "The degrees of freedom in the denominator of the F distribution." -msgstr "Frihetsgrader i nevneren i F-fordelinga." +msgstr "Frihetsgrader i nevneren i F-fordelingen." #. ZUjMG #: sc/inc/scfuncs.hrc:2757 msgctxt "SC_OPCODE_F_INV_LT" msgid "Values of the inverse left tail F distribution." -msgstr "Verdiene til den inverse venstredels F-fordelinga." +msgstr "Verdiene til den inverse venstredels F-fordelingen." #. ak9PS #: sc/inc/scfuncs.hrc:2758 @@ -11893,7 +11893,7 @@ #: sc/inc/scfuncs.hrc:2759 msgctxt "SC_OPCODE_F_INV_LT" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse F-fordelinga skal regnes av." +msgstr "Sannsynlighetsverdien som den inverse F-fordelingen skal regnes av." #. RBD7F #: sc/inc/scfuncs.hrc:2760 @@ -11905,7 +11905,7 @@ #: sc/inc/scfuncs.hrc:2761 msgctxt "SC_OPCODE_F_INV_LT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "Frihetsgrader i telleren i F-fordelinga." +msgstr "Frihetsgrader i telleren i F-fordelingen." #. 6DY5e #: sc/inc/scfuncs.hrc:2762 @@ -11917,13 +11917,13 @@ #: sc/inc/scfuncs.hrc:2763 msgctxt "SC_OPCODE_F_INV_LT" msgid "The degrees of freedom in the denominator of the F distribution." -msgstr "Frihetsgrader i nevneren i F-fordelinga." +msgstr "Frihetsgrader i nevneren i F-fordelingen." #. Ab33s #: sc/inc/scfuncs.hrc:2769 msgctxt "SC_OPCODE_F_INV_RT" msgid "Values of the inverse right tail F distribution." -msgstr "Verdiene til den inverse høyredels F-fordelinga." +msgstr "Verdiene til den inverse høyredels F-fordelingen." #. CFTP5 #: sc/inc/scfuncs.hrc:2770 @@ -11935,7 +11935,7 @@ #: sc/inc/scfuncs.hrc:2771 msgctxt "SC_OPCODE_F_INV_RT" msgid "The probability value for which the inverse F distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse F-fordelinga skal regnes av." +msgstr "Sannsynlighetsverdien som den inverse F-fordelingen skal regnes av." #. PCwAD #: sc/inc/scfuncs.hrc:2772 @@ -11947,7 +11947,7 @@ #: sc/inc/scfuncs.hrc:2773 msgctxt "SC_OPCODE_F_INV_RT" msgid "The degrees of freedom in the numerator of the F distribution." -msgstr "Frihetsgrader i telleren i F-fordelinga." +msgstr "Frihetsgrader i telleren i F-fordelingen." #. 8E9Co #: sc/inc/scfuncs.hrc:2774 @@ -11959,13 +11959,13 @@ #: sc/inc/scfuncs.hrc:2775 msgctxt "SC_OPCODE_F_INV_RT" msgid "The degrees of freedom in the denominator of the F distribution." -msgstr "Frihetsgrader i nevneren i F-fordelinga." +msgstr "Frihetsgrader i nevneren i F-fordelingen." #. EPpFa #: sc/inc/scfuncs.hrc:2781 msgctxt "SC_OPCODE_CHI_DIST" msgid "Returns the right-tail probability of the chi-square distribution." -msgstr "Gir høyrehalen til sannsynligheten av kjikvadratfordelinga." +msgstr "Gir høyrehalen til sannsynligheten av kjikvadratfordelingen." #. sASJa #: sc/inc/scfuncs.hrc:2782 @@ -11977,7 +11977,7 @@ #: sc/inc/scfuncs.hrc:2783 msgctxt "SC_OPCODE_CHI_DIST" msgid "The value for which the chi square distribution is to be calculated." -msgstr "Verdiene som kjikvadratfordelinga skal beregnes ut fra." +msgstr "Verdiene som kjikvadratfordelingen skal beregnes ut fra." #. Z3q7j #: sc/inc/scfuncs.hrc:2784 @@ -11989,13 +11989,13 @@ #: sc/inc/scfuncs.hrc:2785 msgctxt "SC_OPCODE_CHI_DIST" msgid "The degrees of freedom of the chi square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. DhUAr #: sc/inc/scfuncs.hrc:2791 msgctxt "SC_OPCODE_CHI_DIST_MS" msgid "Returns the right-tail probability of the chi-square distribution." -msgstr "Gir høyrehalen til sannsynligheten av kjikvadratfordelinga." +msgstr "Gir høyrehalen til sannsynligheten av kjikvadratfordelingen." #. DnW2U #: sc/inc/scfuncs.hrc:2792 @@ -12007,7 +12007,7 @@ #: sc/inc/scfuncs.hrc:2793 msgctxt "SC_OPCODE_CHI_DIST_MS" msgid "The value for which the chi square distribution is to be calculated." -msgstr "Verdiene som kjikvadratfordelinga skal beregnes ut fra." +msgstr "Verdiene som kjikvadratfordelingen skal beregnes ut fra." #. PNzLq #: sc/inc/scfuncs.hrc:2794 @@ -12019,13 +12019,13 @@ #: sc/inc/scfuncs.hrc:2795 msgctxt "SC_OPCODE_CHI_DIST_MS" msgid "The degrees of freedom of the chi square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. 6tL8y #: sc/inc/scfuncs.hrc:2802 msgctxt "SC_OPCODE_CHISQ_DIST" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "Gir venstrehalen til sannsynligheten av den kumulative fordelingsfunksjonen eller verdien av sannsynligheten til tetthetsfunksjonen til kjikvadratfordelinga." +msgstr "Gir venstrehalen til sannsynligheten av den kumulative fordelingsfunksjonen eller verdien av sannsynligheten til tetthetsfunksjonen til kjikvadratfordelingen." #. 9GsxA #: sc/inc/scfuncs.hrc:2803 @@ -12049,13 +12049,13 @@ #: sc/inc/scfuncs.hrc:2806 msgctxt "SC_OPCODE_CHISQ_DIST" msgid "The degrees of freedom of the chi-square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. LnN7o #: sc/inc/scfuncs.hrc:2807 msgctxt "SC_OPCODE_CHISQ_DIST" msgid "Cumulative" -msgstr "kumulativ" +msgstr "Kumulativ" #. 8vo6m #: sc/inc/scfuncs.hrc:2808 @@ -12067,7 +12067,7 @@ #: sc/inc/scfuncs.hrc:2815 msgctxt "SC_OPCODE_CHISQ_DIST_MS" msgid "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." -msgstr "Gir venstrehalen for sannsynligheten til den kumulative fordelingsfunksjonen eller verdien av sannsynligheten til tetthetsfunksjonen til kjikvadratfordelinga." +msgstr "Gir venstrehalen for sannsynligheten til den kumulative fordelingsfunksjonen eller verdien av sannsynligheten til tetthetsfunksjonen til kjikvadratfordelingen." #. DrvkR #: sc/inc/scfuncs.hrc:2816 @@ -12091,7 +12091,7 @@ #: sc/inc/scfuncs.hrc:2819 msgctxt "SC_OPCODE_CHISQ_DIST_MS" msgid "The degrees of freedom of the chi-square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. fgBPQ #: sc/inc/scfuncs.hrc:2820 @@ -12121,7 +12121,7 @@ #: sc/inc/scfuncs.hrc:2830 msgctxt "SC_OPCODE_CHI_INV" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse kjikvadratfordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse kjikvadratfordelingen skal beregnes ut fra." #. iGVea #: sc/inc/scfuncs.hrc:2831 @@ -12133,7 +12133,7 @@ #: sc/inc/scfuncs.hrc:2832 msgctxt "SC_OPCODE_CHI_INV" msgid "The degrees of freedom of the chi square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. AqhLE #: sc/inc/scfuncs.hrc:2839 @@ -12151,7 +12151,7 @@ #: sc/inc/scfuncs.hrc:2841 msgctxt "SC_OPCODE_CHI_INV_MS" msgid "The probability value for which the inverse chi square distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse kjikvadratfordelinga skal regnes ut for." +msgstr "Sannsynlighetsverdien som den inverse kjikvadratfordelingen skal regnes ut for." #. KvM8C #: sc/inc/scfuncs.hrc:2842 @@ -12163,7 +12163,7 @@ #: sc/inc/scfuncs.hrc:2843 msgctxt "SC_OPCODE_CHI_INV_MS" msgid "The degrees of freedom of the chi square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. vA5pq #: sc/inc/scfuncs.hrc:2850 @@ -12181,7 +12181,7 @@ #: sc/inc/scfuncs.hrc:2852 msgctxt "SC_OPCODE_CHISQ_INV" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "Sannsynlighetsverdien som den inverse kjikvadratfordelinga skal beregnes ut fra." +msgstr "Sannsynlighetsverdien som den inverse kjikvadratfordelingen skal beregnes ut fra." #. AebLU #: sc/inc/scfuncs.hrc:2853 @@ -12193,7 +12193,7 @@ #: sc/inc/scfuncs.hrc:2854 msgctxt "SC_OPCODE_CHISQ_INV" msgid "The degrees of freedom of the chi square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. M8PMA #: sc/inc/scfuncs.hrc:2861 @@ -12211,7 +12211,7 @@ #: sc/inc/scfuncs.hrc:2863 msgctxt "SC_OPCODE_CHISQ_INV_MS" msgid "The probability value for which the inverse of the chi square distribution is to be calculated." -msgstr "Den sannsynlige verdien som inversen av kjikvadratfordelinga skal regnes ut for." +msgstr "Den sannsynlige verdien som inversen av kjikvadratfordelingen skal regnes ut for." #. jEF5F #: sc/inc/scfuncs.hrc:2864 @@ -12223,7 +12223,7 @@ #: sc/inc/scfuncs.hrc:2865 msgctxt "SC_OPCODE_CHISQ_INV_MS" msgid "The degrees of freedom of the chi square distribution." -msgstr "Frihetsgrader i kjikvadratfordelinga." +msgstr "Frihetsgrader i kjikvadratfordelingen." #. ycGVn #: sc/inc/scfuncs.hrc:2872 @@ -12331,7 +12331,7 @@ #: sc/inc/scfuncs.hrc:2904 msgctxt "SC_OPCODE_CONFIDENCE" msgid "Returns a (1-alpha) confidence interval for a normal distribution." -msgstr "Gir konfidensintervallet (1 alfa) for normalfordelinga." +msgstr "Gir konfidensintervallet (1 alfa) for normalfordelingen." #. CHTCY #: sc/inc/scfuncs.hrc:2905 @@ -12799,7 +12799,7 @@ #: sc/inc/scfuncs.hrc:3042 msgctxt "SC_OPCODE_INTERCEPT" msgid "Returns the intercept of the linear regression line and the Y axis." -msgstr "Gir krysningspunktet mellom den lineære regresjonslinja og Y-aksen." +msgstr "Gir krysningspunktet mellom den lineære regresjonslinjen og Y-aksen." #. Hb98a #: sc/inc/scfuncs.hrc:3043 @@ -12829,7 +12829,7 @@ #: sc/inc/scfuncs.hrc:3052 msgctxt "SC_OPCODE_SLOPE" msgid "Returns the slope of the linear regression line." -msgstr "Gir stigningstallet til den lineære regresjonslinja." +msgstr "Gir stigningstallet til den lineære regresjonslinjen." #. FiZJT #: sc/inc/scfuncs.hrc:3053 @@ -13051,7 +13051,7 @@ #: sc/inc/scfuncs.hrc:3124 msgctxt "SC_OPCODE_FORECAST" msgid "The X value for which the Y value on the regression linear is to be calculated." -msgstr "X-verdien som Y-verdien på regresjonslinja skal beregnes ut fra." +msgstr "X-verdien som Y-verdien på regresjonslinjen skal beregnes ut fra." #. bxLgC #: sc/inc/scfuncs.hrc:3125 @@ -13639,7 +13639,7 @@ #: sc/inc/scfuncs.hrc:3262 msgctxt "SC_OPCODE_FORECAST_LIN" msgid "The X value for which the Y value on the regression linear is to be calculated." -msgstr "X-verdien som Y-verdien på regresjonslinja skal beregnes ut fra." +msgstr "X-verdien som Y-verdien på regresjonslinjen skal beregnes ut fra." #. gZDa7 #: sc/inc/scfuncs.hrc:3263 @@ -13759,7 +13759,7 @@ #: sc/inc/scfuncs.hrc:3297 msgctxt "SC_OPCODE_CHOOSE" msgid "Index" -msgstr "indeks" +msgstr "Indeks" #. GUMqQ #: sc/inc/scfuncs.hrc:3298 @@ -13891,7 +13891,7 @@ #: sc/inc/scfuncs.hrc:3354 msgctxt "SC_OPCODE_H_LOOKUP" msgid "Horizontal search and reference to the cells located below." -msgstr "Loddrett søk og referanser til cellene nedenfor." +msgstr "Horisontalt søk og referanser til cellene nedenfor." #. 7X7gX #: sc/inc/scfuncs.hrc:3355 @@ -13945,13 +13945,13 @@ #: sc/inc/scfuncs.hrc:3368 msgctxt "SC_OPCODE_V_LOOKUP" msgid "Vertical search and reference to indicated cells." -msgstr "Vannrett søk og referanser til gitte celler." +msgstr "Horisontalt søk og referanser til gitte celler." #. K5MyL #: sc/inc/scfuncs.hrc:3369 msgctxt "SC_OPCODE_V_LOOKUP" msgid "Search criterion" -msgstr "søkekriterium" +msgstr "Søkekriterium" #. uJXUC #: sc/inc/scfuncs.hrc:3370 @@ -13975,7 +13975,7 @@ #: sc/inc/scfuncs.hrc:3373 msgctxt "SC_OPCODE_V_LOOKUP" msgid "Index" -msgstr "indeks" +msgstr "Indeks" #. xpSFz #: sc/inc/scfuncs.hrc:3374 @@ -14089,19 +14089,19 @@ #: sc/inc/scfuncs.hrc:3407 msgctxt "SC_OPCODE_LOOKUP" msgid "Search criterion" -msgstr "søkekriterium" +msgstr "Søkekriterium" #. pPzq4 #: sc/inc/scfuncs.hrc:3408 msgctxt "SC_OPCODE_LOOKUP" msgid "The value to be used for comparison." -msgstr "Verdien som skal brukes til sammenligninga." +msgstr "Verdien som skal brukes til sammenligningen." #. TXZS5 #: sc/inc/scfuncs.hrc:3409 msgctxt "SC_OPCODE_LOOKUP" msgid "Search vector" -msgstr "søkevektor" +msgstr "Søkevektor" #. DCfYa #: sc/inc/scfuncs.hrc:3410 @@ -14131,13 +14131,13 @@ #: sc/inc/scfuncs.hrc:3419 msgctxt "SC_OPCODE_MATCH" msgid "Search criterion" -msgstr "søkekriterium" +msgstr "Søkekriterium" #. MPAAm #: sc/inc/scfuncs.hrc:3420 msgctxt "SC_OPCODE_MATCH" msgid "The value to be used for comparison." -msgstr "Verdien som skal brukes til sammenligninga." +msgstr "Verdien som skal brukes til sammenligningen." #. svVHi #: sc/inc/scfuncs.hrc:3421 @@ -14179,7 +14179,7 @@ #: sc/inc/scfuncs.hrc:3432 msgctxt "SC_OPCODE_OFFSET" msgid "The reference (cell) from which to base the movement." -msgstr "Referansen (cellen) som er utgangspunkt for flyttinga." +msgstr "Referansen (cellen) som er utgangspunkt for flyttingen." #. ZSZKE #: sc/inc/scfuncs.hrc:3433 @@ -14377,7 +14377,7 @@ #: sc/inc/scfuncs.hrc:3490 msgctxt "SC_OPCODE_HYPERLINK" msgid "The clickable URL." -msgstr "DEn klikkbare URLen" +msgstr "Den klikkbare URLen" #. AufAt #: sc/inc/scfuncs.hrc:3491 @@ -14683,7 +14683,7 @@ #: sc/inc/scfuncs.hrc:3606 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value." -msgstr "" +msgstr "Sammenligner uttrykk mot liste over verdi/resultatpar, og returresultatet for første verdi som samsvarer med uttrykket. Hvis uttrykket ikke samsvarer med noen verdi, returneres et standardresultat, hvis det er plassert som siste element i parameterliste uten verdi." #. PneN8 #: sc/inc/scfuncs.hrc:3607 @@ -14695,7 +14695,7 @@ #: sc/inc/scfuncs.hrc:3608 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to be compared against value1…valueN (N ≤ 127)" -msgstr "" +msgstr "Verdien skal sammenlignes med verdi1 ... Verdi (N ≤ 127)" #. 9wcvj #: sc/inc/scfuncs.hrc:3609 @@ -14707,7 +14707,7 @@ #: sc/inc/scfuncs.hrc:3610 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to compare against expression. If no result is given, then value is returned as default result." -msgstr "" +msgstr "Verdi for å sammenligne mot uttrykk. Hvis det ikke er gitt noe resultat, blir verdien returnert som standardresultat." #. dsARv #: sc/inc/scfuncs.hrc:3611 @@ -15145,7 +15145,7 @@ #: sc/inc/scfuncs.hrc:3751 msgctxt "SC_OPCODE_FIXED" msgid "No thousands separators" -msgstr "uten tusenskille" +msgstr "Uten tusenskille" #. ShGvi #: sc/inc/scfuncs.hrc:3752 @@ -15361,7 +15361,7 @@ #: sc/inc/scfuncs.hrc:3822 msgctxt "SC_OPCODE_REGEX" msgid "Matches and extracts or optionally replaces text using regular expressions." -msgstr "Matcher og ekstrakterer eller erstatter eventuelt tekst ved hjelp av vanlige uttrykk." +msgstr "Matcher og ekstrakterer eller erstatter eventuelt tekst ved hjelp av regulære uttrykk." #. BADTk #: sc/inc/scfuncs.hrc:3823 @@ -15673,7 +15673,7 @@ #: sc/inc/scfuncs.hrc:3916 msgctxt "SC_OPCODE_EUROCONVERT" msgid "If omitted or 0 or FALSE, the result is rounded to the decimals of To_currency. Else the result is not rounded." -msgstr "Hvis verdien utelates, er lik 0 eller er USANN, rundes resultatet av til tallet på desimaler i til_valuta. Hvis ikke, avrundes ikke resultatet." +msgstr "Hvis verdien utelates, er lik 0 eller er USANN, rundes resultatet av til tallet på desimaler i til valuta. Hvis ikke, avrundes ikke resultatet." #. g9PkE #: sc/inc/scfuncs.hrc:3917 @@ -15686,7 +15686,7 @@ #: sc/inc/scfuncs.hrc:3919 msgctxt "SC_OPCODE_EUROCONVERT" msgid "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded." -msgstr "Hvis denne verdien finnes og er større enn eller lik 3, rundes mellomresultatet i triangulæromregninga av til dette antallet desimaler. Hvis verdien utelates, avrundes ikke resultatet." +msgstr "Hvis denne verdien finnes og er større enn eller lik 3, rundes mellomresultatet i triangulærkonverteringen av til dette antallet desimaler. Hvis verdien utelates, avrundes ikke resultatet." #. upY2X #: sc/inc/scfuncs.hrc:3924 @@ -16682,7 +16682,7 @@ #: sc/inc/strings.hrc:63 msgctxt "SCSTR_END" msgid "~End" -msgstr "~Slutt" +msgstr "Slutt" #. XNnTf #: sc/inc/strings.hrc:64 @@ -16694,19 +16694,19 @@ #: sc/inc/strings.hrc:65 msgctxt "SCSTR_VALID_MINIMUM" msgid "~Minimum" -msgstr "~Minimum" +msgstr "Minimum" #. gKahz #: sc/inc/strings.hrc:66 msgctxt "SCSTR_VALID_MAXIMUM" msgid "~Maximum" -msgstr "~Maksimum" +msgstr "Maksimum" #. nmeHF #: sc/inc/strings.hrc:67 msgctxt "SCSTR_VALID_VALUE" msgid "~Value" -msgstr "~Verdi" +msgstr "Verdi" #. g8Cow #: sc/inc/strings.hrc:68 @@ -16718,13 +16718,13 @@ #: sc/inc/strings.hrc:69 msgctxt "SCSTR_VALID_RANGE" msgid "~Source" -msgstr "~Kilde" +msgstr "Kilde" #. FA84s #: sc/inc/strings.hrc:70 msgctxt "SCSTR_VALID_LIST" msgid "~Entries" -msgstr "~Oppføringer" +msgstr "Oppføringer" #. vhcaA #. for dialogues: @@ -16787,7 +16787,7 @@ #: sc/inc/strings.hrc:82 msgctxt "STR_DLG_SELECTTABLES_LBNAME" msgid "~Selected sheets" -msgstr "~Valgte ark" +msgstr "Valgte ark" #. SfEhE #: sc/inc/strings.hrc:83 @@ -16925,7 +16925,7 @@ #: sc/inc/strings.hrc:105 msgctxt "SCSTR_PRINTOPT_SUPPRESSEMPTY" msgid "~Suppress output of empty pages" -msgstr "~Hindre sending av tomme sider" +msgstr "Hindre sending av tomme sider" #. GQNVf #: sc/inc/strings.hrc:106 @@ -16991,7 +16991,7 @@ #: sc/inc/strings.hrc:116 msgctxt "SCSTR_EXTDOC_NOT_LOADED" msgid "The following external file could not be loaded. Data linked from this file did not get updated." -msgstr "Den følgende eksterne fila kunne ikke lastes inn. Data lenket fra denne fila ble ikke oppdatert." +msgstr "Den følgende eksterne filen kunne ikke lastes inn. Data lenket fra denne filen ble ikke oppdatert." #. BvtFc #: sc/inc/strings.hrc:117 @@ -17021,13 +17021,13 @@ #: sc/inc/strings.hrc:121 msgctxt "SCSTR_COL_LABEL" msgid "Range contains column la~bels" -msgstr "Området inneholder ~kolonneoverskrifter" +msgstr "Området inneholder kolonneoverskrifter" #. mJyFP #: sc/inc/strings.hrc:122 msgctxt "SCSTR_ROW_LABEL" msgid "Range contains ~row labels" -msgstr "Området inneholder ~radoverskrifter" +msgstr "Området inneholder radoverskrifter" #. ujjcx #: sc/inc/strings.hrc:123 @@ -17105,7 +17105,7 @@ #: sc/inc/strings.hrc:135 msgctxt "STR_BTN_AUTOFORMAT_CLOSE" msgid "~Close" -msgstr "~Lukk" +msgstr "Lukk" #. DAuNm #: sc/inc/strings.hrc:136 @@ -17322,7 +17322,7 @@ #: sc/inc/strings.hrc:175 msgctxt "SCSTR_QHELP_EXPAND_FORMULA" msgid "Expand Formula Bar" -msgstr "Fold ut formellinja" +msgstr "Fold ut formellinjen" #. ENx2Q #: sc/inc/strings.hrc:176 @@ -18515,79 +18515,79 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:176 msgctxt "advancedfilterdialog|label1" msgid "Read _Filter Criteria From" -msgstr "Les _filterkriteriene fra" +msgstr "Les filterkriteriene fra" #. HBUJA #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:219 msgctxt "advancedfilterdialog|case" msgid "_Case sensitive" -msgstr "_Skil mellom store og små bokstaver" +msgstr "Skil mellom store og små bokstaver" #. VewXr #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:229 msgctxt "advancedfilterdialog|extended_tip|case" msgid "Distinguishes between uppercase and lowercase letters when filtering the data." -msgstr "" +msgstr "Skiller mellom store og små bokstaver når du filtrerer dataene." #. FHGUG #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:240 msgctxt "advancedfilterdialog|header" msgid "Range c_ontains column labels" -msgstr "Området inneholder _kolonneoverskrifter" +msgstr "Området inneholder kolonneoverskrifter" #. BzTmz #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:250 msgctxt "advancedfilterdialog|extended_tip|header" msgid "Includes the column labels in the first row of a cell range." -msgstr "" +msgstr "Inkluderer kolonnemerkene i den første raden i et celleområde." #. WfvCG #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:261 msgctxt "advancedfilterdialog|regexp" msgid "Regular _expressions" -msgstr "Regulære _uttrykk" +msgstr "Regulære uttrykk" #. DN78o #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:271 msgctxt "advancedfilterdialog|extended_tip|regexp" msgid "Allows you to use regular expressions in the filter definition." -msgstr "" +msgstr "Lar deg bruke regulære uttrykk i filterdefinisjonen." #. tDDfr #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:282 msgctxt "advancedfilterdialog|unique" msgid "_No duplications" -msgstr "_Ingen duplikater" +msgstr "Ingen duplikater" #. gEg7S #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:292 msgctxt "advancedfilterdialog|extended_tip|unique" msgid "Excludes duplicate rows in the list of filtered data." -msgstr "Utelater like rader lista over filtrerte data." +msgstr "Utelater like rader listen over filtrerte data." #. DbA9A #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:303 msgctxt "advancedfilterdialog|copyresult" msgid "Co_py results to:" -msgstr "_Kopier resultatet til:" +msgstr "Kopier resultatet til:" #. tx6QF #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:317 msgctxt "advancedfilterdialog|extended_tip|copyresult" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "" +msgstr "Merk av i boksen, og velg deretter celleområdet der du vil vise filterresultatene." #. 2c6r8 #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:328 msgctxt "advancedfilterdialog|destpers" msgid "_Keep filter criteria" -msgstr "Behold _filterkriteria" +msgstr "Behold filterkriteriene" #. KpECC #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:338 msgctxt "advancedfilterdialog|extended_tip|destpers" msgid "Select the Copy results to check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under Data - Define range as a database range." -msgstr "" +msgstr "Velg avkrysningsboksen Kopier, og angi deretter destinasjonsområdet der du vil vise de filtrerte dataene. Hvis denne boksen er merket, forblir destinasjonsområdet knyttet til kildeområdet. Du må ha definert kildeområdet under Data - Definer område som et databasesortiment." #. NLz5G #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:370 @@ -18599,7 +18599,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:371 msgctxt "advancedfilterdialog|extended_tip|lbcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "" +msgstr "Merk av i boksen, og velg deretter celleområdet der du vil vise filterresultatene." #. TDWTt #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:393 @@ -18611,7 +18611,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:394 msgctxt "advancedfilterdialog|extended_tip|edcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "" +msgstr "Merk av i boksen, og velg deretter celleområdet der du vil vise filterresultatene." #. YCsyS #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:413 @@ -18635,13 +18635,13 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:471 msgctxt "advancedfilterdialog|label2" msgid "Op_tions" -msgstr "_Valg" +msgstr "Valg" #. he2CY #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:477 msgctxt "advancedfilterdialog|extended_tip|more" msgid "Shows additional filter options." -msgstr "" +msgstr "Viser ytterligere filteralternativer." #. 3CXjk #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:499 @@ -18815,7 +18815,7 @@ #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:466 msgctxt "analysisofvariancedialog|extended_tip|AnalysisOfVarianceDialog" msgid "Produces the analysis of variance (ANOVA) of a given data set" -msgstr "" +msgstr "Produserer analysen av variansen (ANOVA) av et gitt datasett" #. ETqet #: sc/uiconfig/scalc/ui/autoformattable.ui:16 @@ -18851,7 +18851,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:210 msgctxt "autoformattable|extended_tip|add" msgid "Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats." -msgstr "" +msgstr "Lar deg legge til dagens formatering av en rekkevidde på minst 4 x 4 celler til listen over forhåndsdefinerte autoformat." #. DYbCK #: sc/uiconfig/scalc/ui/autoformattable.ui:229 @@ -18869,7 +18869,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:247 msgctxt "autoformattable|extended_tip|rename" msgid "Opens a dialog where you can change the name of the selected AutoFormat." -msgstr "" +msgstr "Åpner en dialogboks hvor du kan endre navnet på den valgte autoformatet." #. SEACv #: sc/uiconfig/scalc/ui/autoformattable.ui:271 @@ -18935,13 +18935,13 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:394 msgctxt "autoformattable|extended_tip|alignmentcb" msgid "When marked, specifies that you want to retain the alignment of the selected format." -msgstr "Angi om du vil beholde justeringa til det valgte formatet." +msgstr "Angi om du vil beholde justeringen til det valgte formatet." #. oSEWM #: sc/uiconfig/scalc/ui/autoformattable.ui:405 msgctxt "autoformattable|autofitcb" msgid "A_utoFit width and height" -msgstr "_Tilpass bredde og høyde automatisk" +msgstr "Tilpass bredde og høyde automatisk" #. YUhEA #: sc/uiconfig/scalc/ui/autoformattable.ui:414 @@ -18995,7 +18995,7 @@ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:37 msgctxt "cellprotectionpage|checkProtected" msgid "_Protected" -msgstr "_Beskyttet" +msgstr "Beskyttet" #. jkUCZ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:49 @@ -19007,7 +19007,7 @@ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:60 msgctxt "cellprotectionpage|checkHideFormula" msgid "Hide _formula" -msgstr "_Skjul formel" +msgstr "Skjul formel" #. jCAZ4 #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:71 @@ -19019,7 +19019,7 @@ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:82 msgctxt "cellprotectionpage|checkHideAll" msgid "Hide _all" -msgstr "Skjul _alt" +msgstr "Skjul alt" #. 5v3YW #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:93 @@ -19049,7 +19049,7 @@ #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:163 msgctxt "cellprotectionpage|checkHidePrinting" msgid "Hide _when printing" -msgstr "_Skjul ved utskrift" +msgstr "Skjul ved utskrift" #. ZosAc #: sc/uiconfig/scalc/ui/cellprotectionpage.ui:173 @@ -19085,13 +19085,13 @@ #: sc/uiconfig/scalc/ui/changesourcedialog.ui:99 msgctxt "changesourcedialog|col" msgid "First _column as label" -msgstr "Bruk første _kolonne som etikett" +msgstr "Bruk første kolonne som etikett" #. hP7cu #: sc/uiconfig/scalc/ui/changesourcedialog.ui:114 msgctxt "changesourcedialog|row" msgid "First _row as label" -msgstr "Bruk første _rad som etikett" +msgstr "Bruk første rad som etikett" #. kCVCr #: sc/uiconfig/scalc/ui/changesourcedialog.ui:135 @@ -19109,13 +19109,13 @@ #: sc/uiconfig/scalc/ui/chardialog.ui:136 msgctxt "chardialog|font" msgid "Font" -msgstr "Skrifttype" +msgstr "Font" #. TnnrC #: sc/uiconfig/scalc/ui/chardialog.ui:183 msgctxt "chardialog|fonteffects" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. nvprJ #: sc/uiconfig/scalc/ui/chardialog.ui:231 @@ -19175,13 +19175,13 @@ #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:221 msgctxt "chisquaretestdialog|groupedby-columns-radio" msgid "_Columns" -msgstr "_Kolonner" +msgstr "Kolonner" #. y75Gj #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:237 msgctxt "chisquaretestdialog|groupedby-rows-radio" msgid "_Rows" -msgstr "_Rader" +msgstr "Rader" #. 2Cttx #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:259 @@ -19193,7 +19193,7 @@ #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:284 msgctxt "chisquaretestdialog|extended_tip|ChiSquareTestDialog" msgid "Calculates the Chi-square test of a data sample." -msgstr "" +msgstr "Beregner Kjikvadrat Test av et datautvalg." #. L8JmP #: sc/uiconfig/scalc/ui/colorrowdialog.ui:8 @@ -19205,7 +19205,7 @@ #: sc/uiconfig/scalc/ui/colorrowdialog.ui:97 msgctxt "colorrowdialog|columns" msgid "_Columns" -msgstr "_Kolonner" +msgstr "Kolonner" #. orYEB #: sc/uiconfig/scalc/ui/colorrowdialog.ui:107 @@ -19217,7 +19217,7 @@ #: sc/uiconfig/scalc/ui/colorrowdialog.ui:119 msgctxt "colorrowdialog|rows" msgid "_Rows" -msgstr "_Rader" +msgstr "Rader" #. CCfoS #: sc/uiconfig/scalc/ui/colorrowdialog.ui:129 @@ -19259,7 +19259,7 @@ #: sc/uiconfig/scalc/ui/colwidthdialog.ui:121 msgctxt "colwidthdialog|default" msgid "_Default value" -msgstr "_Standardverdi" +msgstr "Standardverdi" #. rov8K #: sc/uiconfig/scalc/ui/colwidthdialog.ui:130 @@ -19295,7 +19295,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:157 msgctxt "condformatmanager|extended_tip|CONTAINER" msgid "The Conditional Formats list displays the active conditional formatting rules set in the current spreadsheet." -msgstr "" +msgstr "Listen over betinget formater viser de aktive betingede formateringsreglene som er angitt i det nåværende regnearket." #. rCgD4 #: sc/uiconfig/scalc/ui/condformatmanager.ui:177 @@ -19307,7 +19307,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:183 msgctxt "condformatmanager|extended_tip|add" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "Her kan du legge til, redigere eller fjerne en eller flere betingede formateringer." #. 8XXd8 #: sc/uiconfig/scalc/ui/condformatmanager.ui:195 @@ -19319,7 +19319,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:201 msgctxt "condformatmanager|extended_tip|edit" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "Her kan du legge til, redigere eller fjerne en eller flere betingede formateringer." #. oLc2f #: sc/uiconfig/scalc/ui/condformatmanager.ui:213 @@ -19331,7 +19331,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:219 msgctxt "condformatmanager|extended_tip|remove" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "Her kan du legge til, redigere eller fjerne en eller flere betingede formateringer." #. dV9US #: sc/uiconfig/scalc/ui/condformatmanager.ui:244 @@ -19343,7 +19343,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:269 msgctxt "condformatmanager|extended_tip|CondFormatManager" msgid "This dialog allows you to see all the conditional formatting defined in the spreadsheet." -msgstr "" +msgstr "Denne dialogboksen lar deg se all betinget formatering som er definert i regnearket." #. E8ANs #: sc/uiconfig/scalc/ui/conditionalentry.ui:75 @@ -19937,13 +19937,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:162 msgctxt "conditionalformatdialog|extended_tip|list" msgid "List of the conditions defined for the cell range in order of evaluation." -msgstr "" +msgstr "Liste over forholdene som er definert for celleområdet i evalueringsordningen." #. oEPbA #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:191 msgctxt "conditionalformatdialog|extended_tip|add" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "Her kan du legge til, redigere eller fjerne en eller flere betingede formateringer." #. ejKTF #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:210 @@ -19955,13 +19955,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:229 msgctxt "conditionalformatdialog|extended_tip|up" msgid "Increase priority of the selected condition." -msgstr "" +msgstr "Øk prioriteten til det valgte utvalget." #. ykMES #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:248 msgctxt "conditionalformatdialog|extended_tip|down" msgid "Decrease priority of the selected condition." -msgstr "" +msgstr "Minsk prioriteten til det valgte utvalget." #. Q6Ag7 #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:273 @@ -19991,7 +19991,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:386 msgctxt "conditionalformatdialog|extended_tip|ConditionalFormatDialog" msgid "Choose Conditional Formatting to define format styles depending on certain conditions." -msgstr "" +msgstr "Velg betinget formatering for å definere formatstiler avhengig av visse forhold." #. XFw3E #: sc/uiconfig/scalc/ui/conditionaliconset.ui:22 @@ -20033,13 +20033,13 @@ #: sc/uiconfig/scalc/ui/conflictsdialog.ui:37 msgctxt "conflictsdialog|keepallmine" msgid "_Keep All Mine" -msgstr "~Bruk alle mine" +msgstr "Bruk alle mine" #. czHPv #: sc/uiconfig/scalc/ui/conflictsdialog.ui:51 msgctxt "conflictsdialog|keepallothers" msgid "Keep _All Others" -msgstr "Bruk a_lle andre" +msgstr "Bruk alle andre" #. VvYCZ #: sc/uiconfig/scalc/ui/conflictsdialog.ui:112 @@ -20075,13 +20075,13 @@ #: sc/uiconfig/scalc/ui/conflictsdialog.ui:207 msgctxt "conflictsdialog|keepmine" msgid "Keep _Mine" -msgstr "Bruk _mine" +msgstr "Bruk mine" #. KRAHP #: sc/uiconfig/scalc/ui/conflictsdialog.ui:221 msgctxt "conflictsdialog|keepother" msgid "Keep _Other" -msgstr "Bruk _andre" +msgstr "Bruk andre" #. 3AtCK #: sc/uiconfig/scalc/ui/consolidatedialog.ui:16 @@ -20105,13 +20105,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:110 msgctxt "consolidatedialog|label1" msgid "_Function:" -msgstr "_Funksjon:" +msgstr "Funksjon:" #. SVBz4 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:125 msgctxt "consolidatedialog|label2" msgid "_Consolidation ranges:" -msgstr "_Konsolideringsområde:" +msgstr "Konsolideringsområde:" #. AtpDx #: sc/uiconfig/scalc/ui/consolidatedialog.ui:141 @@ -20183,7 +20183,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:155 msgctxt "consolidatedialog|extended_tip|func" msgid "Select the function that you want to use to consolidate the data." -msgstr "Velg hvilken funksjon du vil bruke for sammenslåinga." +msgstr "Velg hvilken funksjon du vil bruke for sammenslåingen." #. aG9xb #: sc/uiconfig/scalc/ui/consolidatedialog.ui:199 @@ -20195,13 +20195,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:238 msgctxt "consolidatedialog|extended_tip|lbdataarea" msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select the name of a predefined cell from the Source data range list." -msgstr "" +msgstr "Angir celleområdet du vil konsolidere med celleområdene som er oppført i konsolideringsområdet. Velg et celleområde i et ark, og klikk deretter Legg til. Du kan også velge navnet på en forhåndsdefinert celle fra kildedata-serien." #. 6x7He #: sc/uiconfig/scalc/ui/consolidatedialog.ui:257 msgctxt "consolidatedialog|extended_tip|eddataarea" msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select the name of a predefined cell from the Source data range list." -msgstr "" +msgstr "Angir celleområdet du vil konsolidere med celleområdene som er oppført i konsolideringsområdet. Velg et celleområde i et ark, og klikk deretter Legg til. Du kan også velge navnet på en forhåndsdefinert celle fra kildedata-serien." #. N6jCs #: sc/uiconfig/scalc/ui/consolidatedialog.ui:276 @@ -20231,7 +20231,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:376 msgctxt "consolidatedialog|extended_tip|add" msgid "Adds the cell range specified in the Source data range box to the Consolidation ranges box." -msgstr "Legg celleområdet angitt i lista over Kildedataområder til i boksen for sammenslåingsområder." +msgstr "Legg celleområdet angitt i listen over Kildedataområder til i boksen for sammenslåingsområder." #. 6SMrn #: sc/uiconfig/scalc/ui/consolidatedialog.ui:396 @@ -20243,19 +20243,19 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:416 msgctxt "consolidatedialog|ftdataarea" msgid "_Source data ranges:" -msgstr "Dataområde for _kilde:" +msgstr "Dataområde for kilde:" #. VZzRg #: sc/uiconfig/scalc/ui/consolidatedialog.ui:430 msgctxt "consolidatedialog|ftdestarea" msgid "Copy results _to:" -msgstr "Kopier resultatene _til:" +msgstr "Kopier resultatene til:" #. Zhibj #: sc/uiconfig/scalc/ui/consolidatedialog.ui:488 msgctxt "consolidatedialog|byrow" msgid "_Row labels" -msgstr "_Radoverskrifter" +msgstr "Radoverskrifter" #. mfhWz #: sc/uiconfig/scalc/ui/consolidatedialog.ui:498 @@ -20267,7 +20267,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:509 msgctxt "consolidatedialog|bycol" msgid "C_olumn labels" -msgstr "_Kolonneoverskrifter" +msgstr "Kolonneoverskrifter" #. AD5mx #: sc/uiconfig/scalc/ui/consolidatedialog.ui:519 @@ -20285,7 +20285,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:568 msgctxt "consolidatedialog|refs" msgid "_Link to source data" -msgstr "_Lenke til kildedata" +msgstr "Lenke til kildedata" #. AFQD3 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:578 @@ -20309,7 +20309,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:613 msgctxt "consolidatedialog|extended_tip|more" msgid "Shows additional options." -msgstr "" +msgstr "Viser flere alternativer." #. HEHFf #: sc/uiconfig/scalc/ui/consolidatedialog.ui:635 @@ -20363,7 +20363,7 @@ #: sc/uiconfig/scalc/ui/correlationdialog.ui:283 msgctxt "correlationdialog|extended_tip|CorrelationDialog" msgid "Calculates the correlation of two sets of numeric data." -msgstr "" +msgstr "Beregner korrelasjonen av to sett med numeriske data." #. XYtja #: sc/uiconfig/scalc/ui/covariancedialog.ui:8 @@ -20411,7 +20411,7 @@ #: sc/uiconfig/scalc/ui/covariancedialog.ui:283 msgctxt "covariancedialog|extended_tip|CovarianceDialog" msgid "Calculates the covariance of two sets of numeric data." -msgstr "" +msgstr "Beregner kovariansen med to sett med numeriske data." #. F22h3 #: sc/uiconfig/scalc/ui/createnamesdialog.ui:8 @@ -20423,7 +20423,7 @@ #: sc/uiconfig/scalc/ui/createnamesdialog.ui:99 msgctxt "createnamesdialog|top" msgid "_Top row" -msgstr "_Topptekst" +msgstr "Topptekst" #. 8QHEC #: sc/uiconfig/scalc/ui/createnamesdialog.ui:108 @@ -20435,7 +20435,7 @@ #: sc/uiconfig/scalc/ui/createnamesdialog.ui:120 msgctxt "createnamesdialog|left" msgid "_Left column" -msgstr "_Venstre kolonne" +msgstr "Venstre kolonne" #. C6Cjs #: sc/uiconfig/scalc/ui/createnamesdialog.ui:129 @@ -20447,7 +20447,7 @@ #: sc/uiconfig/scalc/ui/createnamesdialog.ui:141 msgctxt "createnamesdialog|bottom" msgid "_Bottom row" -msgstr "_Bunntekst" +msgstr "Bunntekst" #. t6Zop #: sc/uiconfig/scalc/ui/createnamesdialog.ui:152 @@ -20459,7 +20459,7 @@ #: sc/uiconfig/scalc/ui/createnamesdialog.ui:164 msgctxt "createnamesdialog|right" msgid "_Right column" -msgstr "_Høyre kolonne" +msgstr "Høyre kolonne" #. VAW7M #: sc/uiconfig/scalc/ui/createnamesdialog.ui:173 @@ -20489,31 +20489,31 @@ #: sc/uiconfig/scalc/ui/dapiservicedialog.ui:110 msgctxt "dapiservicedialog|label2" msgid "_Service" -msgstr "_Tjeneste" +msgstr "Tjeneste" #. sBB3n #: sc/uiconfig/scalc/ui/dapiservicedialog.ui:124 msgctxt "dapiservicedialog|label3" msgid "So_urce" -msgstr "_Kilde" +msgstr "Kilde" #. phRhR #: sc/uiconfig/scalc/ui/dapiservicedialog.ui:138 msgctxt "dapiservicedialog|label4" msgid "_Name" -msgstr "_Navn" +msgstr "Navn" #. cRSBE #: sc/uiconfig/scalc/ui/dapiservicedialog.ui:152 msgctxt "dapiservicedialog|label5" msgid "Us_er" -msgstr "_Bruker" +msgstr "Bruker" #. B8mzb #: sc/uiconfig/scalc/ui/dapiservicedialog.ui:166 msgctxt "dapiservicedialog|label6" msgid "_Password" -msgstr "_Passord" +msgstr "Passord" #. xhe7G #: sc/uiconfig/scalc/ui/dapiservicedialog.ui:246 @@ -20669,13 +20669,13 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:355 msgctxt "databaroptions|label8" msgid "Position of vertical axis:" -msgstr "Posisjonen til den loddrette aksen:" +msgstr "Posisjonen til den vertikale aksen:" #. 4oGae #: sc/uiconfig/scalc/ui/databaroptions.ui:369 msgctxt "databaroptions|label9" msgid "Color of vertical axis:" -msgstr "Fargen til den loddrette aksen:" +msgstr "Fargen til den vertikale aksen:" #. 5j8jz #: sc/uiconfig/scalc/ui/databaroptions.ui:384 @@ -20741,7 +20741,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:152 msgctxt "datafielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "" +msgstr "Klikk på typen subtotal du vil beregne. Dette alternativet er bare tilgjengelig hvis alternativet Brukerdefinert er valgt." #. oY6n8 #: sc/uiconfig/scalc/ui/datafielddialog.ui:171 @@ -20753,13 +20753,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:185 msgctxt "datafielddialog|checkbutton1" msgid "Show it_ems without data" -msgstr "Vis _elementer uten data" +msgstr "Vis elementer uten data" #. 4S4kV #: sc/uiconfig/scalc/ui/datafielddialog.ui:194 msgctxt "datafielddialog|extended_tip|checkbutton1" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Inkluderer tomme kolonner og rader i resultatstabellen." #. CNVLs #: sc/uiconfig/scalc/ui/datafielddialog.ui:213 @@ -20771,19 +20771,19 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:262 msgctxt "datafielddialog|label4" msgid "_Type:" -msgstr "_Type:" +msgstr "Type:" #. h82Rf #: sc/uiconfig/scalc/ui/datafielddialog.ui:277 msgctxt "datafielddialog|basefieldft" msgid "_Base field:" -msgstr "_Basisfelt:" +msgstr "Basisfelt:" #. bJVVt #: sc/uiconfig/scalc/ui/datafielddialog.ui:292 msgctxt "datafielddialog|baseitemft" msgid "Ba_se item:" -msgstr "Basis_element:" +msgstr "Basiselement:" #. b9eEa #: sc/uiconfig/scalc/ui/datafielddialog.ui:308 @@ -20843,13 +20843,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:320 msgctxt "datafielddialog|extended_tip|type" msgid "Select the type of calculating of the displayed value for the data field." -msgstr "" +msgstr "Velg hvilken type beregning av den viste verdien for datafeltet." #. DdvoS #: sc/uiconfig/scalc/ui/datafielddialog.ui:335 msgctxt "datafielddialog|extended_tip|basefield" msgid "Select the field from which the respective value is taken as base for the calculation." -msgstr "" +msgstr "Velg feltet hvorfra den respektive verdien tas som base for beregningen." #. u5kvr #: sc/uiconfig/scalc/ui/datafielddialog.ui:349 @@ -20867,13 +20867,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:354 msgctxt "datafielddialog|extended_tip|baseitem" msgid "Select the item of the base field from which the respective value is taken as base for the calculation." -msgstr "" +msgstr "Velg elementet på basisfeltet hvorfra den respektive verdien tas som base for beregningen." #. XxEhf #: sc/uiconfig/scalc/ui/datafielddialog.ui:371 msgctxt "datafielddialog|label3" msgid "Displayed Value" -msgstr "" +msgstr "Vist Verdi" #. mk9vJ #: sc/uiconfig/scalc/ui/datafielddialog.ui:376 @@ -20891,43 +20891,43 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:129 msgctxt "datafieldoptionsdialog|ascending" msgid "_Ascending" -msgstr "_Stigende" +msgstr "Stigende" #. u8pkE #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:139 msgctxt "datafieldoptionsdialog|extended_tip|ascending" msgid "Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field." -msgstr "" +msgstr "Sorterer verdiene fra den laveste verdien til den høyeste verdien. Hvis det valgte feltet er feltet som dialogboksen ble åpnet, er elementene sortert etter navn. Hvis et datafelt ble valgt, er elementene sortert etter den resulterende verdien av det valgte datafeltet." #. yk5PT #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:150 msgctxt "datafieldoptionsdialog|descending" msgid "_Descending" -msgstr "_Synkende" +msgstr "Synkende" #. qyGGy #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:160 msgctxt "datafieldoptionsdialog|extended_tip|descending" msgid "Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field." -msgstr "" +msgstr "Sorterer verdiene som faller ned fra den høyeste verdien til den laveste verdien. Hvis det valgte feltet er feltet som dialogboksen ble åpnet, er elementene sortert etter navn. Hvis et datafelt ble valgt, er elementene sortert etter den resulterende verdien av det valgte datafeltet." #. WoRxx #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:171 msgctxt "datafieldoptionsdialog|manual" msgid "_Manual" -msgstr "_Manuelt" +msgstr "Manuelt" #. Sy9uF #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:181 msgctxt "datafieldoptionsdialog|extended_tip|manual" msgid "Sorts values alphabetically." -msgstr "" +msgstr "Sorterer verdier alfabetisk alfabetisk." #. cdBMn #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:198 msgctxt "datafieldoptionsdialog|extended_tip|sortby" msgid "Select the data field that you want to sort columns or rows by." -msgstr "" +msgstr "Velg datafeltet du vil sortere kolonner eller rader av." #. tP8DZ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:219 @@ -20939,25 +20939,25 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:252 msgctxt "datafieldoptionsdialog|repeatitemlabels" msgid "_Repeat item labels" -msgstr "_Gjenta elementetiketter" +msgstr "Gjenta elementetiketter" #. VmmHC #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:268 msgctxt "datafieldoptionsdialog|emptyline" msgid "_Empty line after each item" -msgstr "_Tom linje etter hvert element" +msgstr "Tom linje etter hvert element" #. AxAtj #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:277 msgctxt "datafieldoptionsdialog|extended_tip|emptyline" msgid "Adds an empty row after the data for each item in the pivot table." -msgstr "" +msgstr "Legger til en tom rad etter dataene for hvert element i pivottabellen." #. xA7WG #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:291 msgctxt "datafieldoptionsdialog|label3" msgid "_Layout:" -msgstr "_Utforming:" +msgstr "Utforming:" #. ACFGW #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:307 @@ -20981,7 +20981,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:313 msgctxt "datafieldoptionsdialog|extended_tip|layout" msgid "Select the layout mode for the field in the list box." -msgstr "" +msgstr "Velg Layout-modus for feltet i listeboksen." #. qSCvn #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:330 @@ -20993,25 +20993,25 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:363 msgctxt "datafieldoptionsdialog|show" msgid "_Show:" -msgstr "_Vis:" +msgstr "Vis:" #. XRAd3 #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:375 msgctxt "datafieldoptionsdialog|extended_tip|show" msgid "Turns on the automatic show feature." -msgstr "" +msgstr "Slår på den automatiske visningsfunksjonen." #. n8bpz #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:388 msgctxt "datafieldoptionsdialog|showfromft" msgid "_From:" -msgstr "_Fra:" +msgstr "Fra:" #. C9kFV #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:402 msgctxt "datafieldoptionsdialog|usingft" msgid "_Using field:" -msgstr "_Bruker felt:" +msgstr "Brukerfelt:" #. XVkqZ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:422 @@ -21023,7 +21023,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:443 msgctxt "datafieldoptionsdialog|extended_tip|items" msgid "Enter the maximum number of items that you want to show automatically." -msgstr "" +msgstr "Skriv inn maksimalt antall elementer du vil vise automatisk." #. 6WBE7 #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:463 @@ -21041,13 +21041,13 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:468 msgctxt "datafieldoptionsdialog|extended_tip|from" msgid "Shows the top or bottom items in the specified sort order." -msgstr "" +msgstr "Viser øverste eller nedre elementer i den angitte sorteringsordren." #. 7dxVF #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:483 msgctxt "datafieldoptionsdialog|extended_tip|using" msgid "Select the data field that you want to sort the data by." -msgstr "" +msgstr "Velg datafeltet du vil sortere dataene du vil sortere dataene." #. sVRqx #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:500 @@ -21059,7 +21059,7 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:577 msgctxt "datafieldoptionsdialog|extended_tip|hideitems" msgid "Select the items that you want to hide from the calculations." -msgstr "" +msgstr "Velg elementene du vil skjule fra beregningene." #. FDavv #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:590 @@ -21071,13 +21071,13 @@ #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:614 msgctxt "datafieldoptionsdialog|extended_tip|hierarchy" msgid "Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies." -msgstr "" +msgstr "Velg hierarkiet du vil bruke. Pivottabellen må være basert på en ekstern kildedata som inneholder datahierarkier." #. qTAzs #: sc/uiconfig/scalc/ui/datafieldoptionsdialog.ui:627 msgctxt "datafieldoptionsdialog|hierarchyft" msgid "Hierarch_y:" -msgstr "_Hierarki:" +msgstr "Hierarki:" #. MmXfs #: sc/uiconfig/scalc/ui/dataform.ui:8 @@ -21089,7 +21089,7 @@ #: sc/uiconfig/scalc/ui/dataform.ui:37 msgctxt "dataform|close" msgid "_Close" -msgstr "_Lukk" +msgstr "Lukk" #. gbAzv #: sc/uiconfig/scalc/ui/dataform.ui:166 @@ -21101,37 +21101,37 @@ #: sc/uiconfig/scalc/ui/dataform.ui:177 msgctxt "dataform|new" msgid "_New" -msgstr "_Ny" +msgstr "Ny" #. Epdm6 #: sc/uiconfig/scalc/ui/dataform.ui:193 msgctxt "dataform|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. SCweE #: sc/uiconfig/scalc/ui/dataform.ui:207 msgctxt "dataform|restore" msgid "_Restore" -msgstr "_Gjenopprett" +msgstr "Gjenopprett" #. GAxdr #: sc/uiconfig/scalc/ui/dataform.ui:221 msgctxt "dataform|prev" msgid "_Previous Record" -msgstr "_Forrige oppføring" +msgstr "Forrige oppføring" #. hpzLC #: sc/uiconfig/scalc/ui/dataform.ui:236 msgctxt "dataform|next" msgid "Ne_xt Record" -msgstr "Ne_ste oppføring" +msgstr "Neste oppføring" #. Gqqaq #: sc/uiconfig/scalc/ui/dataform.ui:273 msgctxt "dataform|extended_tip|DataFormDialog" msgid "Data Entry Form is a tool to make table data entry easy in spreadsheets." -msgstr "" +msgstr "Velg hierarkiet du vil bruke. Pivottabellen må være basert på en ekstern kildedata som inneholder datahierarkier." #. xGUSZ #: sc/uiconfig/scalc/ui/dataproviderdlg.ui:112 @@ -21185,7 +21185,7 @@ #: sc/uiconfig/scalc/ui/datastreams.ui:140 msgctxt "datastreams|browse" msgid "_Browse..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. Kyv5C #: sc/uiconfig/scalc/ui/datastreams.ui:180 @@ -21251,7 +21251,7 @@ #: sc/uiconfig/scalc/ui/datastreams.ui:433 msgctxt "datastreams|unlimited" msgid "_Unlimited" -msgstr "_Ubegrenset" +msgstr "Ubegrenset" #. DvF6M #: sc/uiconfig/scalc/ui/datastreams.ui:459 @@ -21263,7 +21263,7 @@ #: sc/uiconfig/scalc/ui/datastreams.ui:498 msgctxt "datastreams|extended_tip|DataStreamDialog" msgid "Live data stream for spreadsheets" -msgstr "" +msgstr "Live Data Strøm for regneark" #. 7s8rq #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:22 @@ -21413,13 +21413,13 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:63 msgctxt "definedatabaserangedialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "Lukker dialogvindauet og avbryter alle endringene." +msgstr "Lukker dialogvinduet og avbryter alle endringene." #. RMghE #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:176 msgctxt "definedatabaserangedialog|extended_tip|entry" msgid "Enter a name for the database range that you want to define, or select an existing name from the list." -msgstr "Skriv inn ett navn på databaseområdet, eller velg et navn fra lista." +msgstr "Skriv inn ett navn på databaseområdet, eller velg et navn fra listen." #. 4FqWF #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:193 @@ -21449,13 +21449,13 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:297 msgctxt "definedatabaserangedialog|extended_tip|add" msgid "Adds the selected cell range to the database range list, or modifies an existing database range." -msgstr "Trykk her for å legge det valgte databaseområdet til i lista, eller for å endre ett som finnes fra før." +msgstr "Trykk her for å legge det valgte databaseområdet til i listen, eller for å endre ett som finnes fra før." #. N8Lui #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:309 msgctxt "definedatabaserangedialog|modify" msgid "M_odify" -msgstr "_Endre" +msgstr "Endre" #. AGETd #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:330 @@ -21467,7 +21467,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:368 msgctxt "definedatabaserangedialog|ContainsColumnLabels" msgid "Co_ntains column labels" -msgstr "Inneholder _kolonneetiketter" +msgstr "Inneholder kolonneetiketter" #. FYwzQ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:377 @@ -21479,25 +21479,25 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:389 msgctxt "definedatabaserangedialog|ContainsTotalsRow" msgid "Contains _totals row" -msgstr "Inneholder _summeringrekke" +msgstr "Inneholder summeringrekke" #. AeZB2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:405 msgctxt "definedatabaserangedialog|InsertOrDeleteCells" msgid "Insert or delete _cells" -msgstr "Sett inn eller slett _celler" +msgstr "Sett inn eller slett celler" #. bJdCS #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:414 msgctxt "definedatabaserangedialog|extended_tip|InsertOrDeleteCells" msgid "Automatically inserts new rows and columns into the database range in your document when new records are added to the database." -msgstr "" +msgstr "Setter automatisk nye rader og kolonner i databasesområdet i dokumentet ditt når nye poster legges til databasen." #. EveBu #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:426 msgctxt "definedatabaserangedialog|KeepFormatting" msgid "Keep _formatting" -msgstr "Behold _formateringa" +msgstr "Behold formateringen" #. nwtDB #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:435 @@ -21509,7 +21509,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:447 msgctxt "definedatabaserangedialog|DontSaveImportedData" msgid "Don't save _imported data" -msgstr "Ikke lagre _importerte data" +msgstr "Ikke lagre importerte data" #. mDon4 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:456 @@ -21545,7 +21545,7 @@ #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:518 msgctxt "definedatabaserangedialog|extended_tip|more" msgid "Shows additional options." -msgstr "" +msgstr "Viser flere alternativer." #. swLE2 #: sc/uiconfig/scalc/ui/definedatabaserangedialog.ui:547 @@ -21563,7 +21563,7 @@ #: sc/uiconfig/scalc/ui/definename.ui:48 msgctxt "definename|extended_tip|add" msgid "Click the Add button to add a new defined name." -msgstr "" +msgstr "Klikk på Legg til-knappen for å legge til et nytt definert navn." #. 6EGaz #: sc/uiconfig/scalc/ui/definename.ui:96 @@ -21587,19 +21587,19 @@ #: sc/uiconfig/scalc/ui/definename.ui:142 msgctxt "definename|extended_tip|edit" msgid "Enter the name of the area for which you want to define a reference or a formula expression." -msgstr "" +msgstr "Skriv inn navnet på området som du vil definere en referanse eller et formeluttrykk på." #. yDeUA #: sc/uiconfig/scalc/ui/definename.ui:166 msgctxt "definename|extended_tip|range" msgid "The reference of the selected area name is shown here as an absolute value." -msgstr "" +msgstr "Henvisningen til det valgte områdeavnet er vist her som en absolutt verdi." #. BjrLE #: sc/uiconfig/scalc/ui/definename.ui:201 msgctxt "definename|extended_tip|scope" msgid "Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document." -msgstr "" +msgstr "Velg omfanget av det navngitte området eller kalt formel. Dokument (global) betyr at navnet er gyldig for hele dokumentet." #. KZfrH #: sc/uiconfig/scalc/ui/definename.ui:214 @@ -21611,67 +21611,67 @@ #: sc/uiconfig/scalc/ui/definename.ui:246 msgctxt "definename|printarea" msgid "_Print range" -msgstr "_Utskriftsområde" +msgstr "Utskriftsområde" #. uHfBu #: sc/uiconfig/scalc/ui/definename.ui:255 msgctxt "definename|extended_tip|printarea" msgid "Defines the area as a print range." -msgstr "" +msgstr "Definerer området som et utskriftsområde." #. L5Ebf #: sc/uiconfig/scalc/ui/definename.ui:266 msgctxt "definename|filter" msgid "_Filter" -msgstr "_Filter" +msgstr "Filter" #. KPv69 #: sc/uiconfig/scalc/ui/definename.ui:275 msgctxt "definename|extended_tip|filter" msgid "Defines the selected area to be used in an advanced filter." -msgstr "" +msgstr "Definerer det valgte området som skal brukes i et avansert filter." #. 6W3iB #: sc/uiconfig/scalc/ui/definename.ui:286 msgctxt "definename|colheader" msgid "Repeat _column" -msgstr "_Gjenta kolonne" +msgstr "Gjenta kolonne" #. bLAGo #: sc/uiconfig/scalc/ui/definename.ui:295 msgctxt "definename|extended_tip|colheader" msgid "Defines the area as a repeating column." -msgstr "" +msgstr "Definerer området som en gjentatt kolonne." #. jfJFq #: sc/uiconfig/scalc/ui/definename.ui:306 msgctxt "definename|rowheader" msgid "Repeat _row" -msgstr "_Gjenta rad" +msgstr "Gjenta rad" #. WGYtk #: sc/uiconfig/scalc/ui/definename.ui:315 msgctxt "definename|extended_tip|rowheader" msgid "Defines the area as a repeating row." -msgstr "" +msgstr "Definerer området som en gjentatt rad." #. 47nrA #: sc/uiconfig/scalc/ui/definename.ui:330 msgctxt "definename|label5" msgid "Range _Options" -msgstr "Område_valg" +msgstr "Områdevalg" #. eNLRt #: sc/uiconfig/scalc/ui/definename.ui:336 msgctxt "definename|extended_tip|more" msgid "Allows you to specify the Area type (optional) for the reference." -msgstr "" +msgstr "Lar deg spesifisere områdets type (valgfritt) for referansen." #. gBKqi #: sc/uiconfig/scalc/ui/definename.ui:365 msgctxt "definename|extended_tip|DefineNameDialog" msgid "Opens a dialog where you can specify a name for a selected area or a name for a formula expression." -msgstr "" +msgstr "Åpner en dialog hvor du kan angi et navn for et valgt område eller et navn for et formeluttrykk." #. uA5Nz #: sc/uiconfig/scalc/ui/deletecells.ui:8 @@ -21683,7 +21683,7 @@ #: sc/uiconfig/scalc/ui/deletecells.ui:96 msgctxt "deletecells|up" msgid "Shift cells _up" -msgstr "Flytt celler _oppover" +msgstr "Flytt celler oppover" #. 7nz4V #: sc/uiconfig/scalc/ui/deletecells.ui:106 @@ -21695,7 +21695,7 @@ #: sc/uiconfig/scalc/ui/deletecells.ui:118 msgctxt "deletecells|left" msgid "Shift cells _left" -msgstr "Flytt celler mot _venstre" +msgstr "Flytt celler mot venstre" #. GPMfP #: sc/uiconfig/scalc/ui/deletecells.ui:128 @@ -21707,7 +21707,7 @@ #: sc/uiconfig/scalc/ui/deletecells.ui:140 msgctxt "deletecells|rows" msgid "Delete entire _row(s)" -msgstr "_Slett hele rader" +msgstr "Slett hele rader" #. S2ECx #: sc/uiconfig/scalc/ui/deletecells.ui:150 @@ -21719,7 +21719,7 @@ #: sc/uiconfig/scalc/ui/deletecells.ui:162 msgctxt "deletecells|cols" msgid "Delete entire _column(s)" -msgstr "_Slett hele kolonner" +msgstr "Slett hele kolonner" #. PEddf #: sc/uiconfig/scalc/ui/deletecells.ui:172 @@ -21767,7 +21767,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:96 msgctxt "deletecontents|deleteall" msgid "Delete _all" -msgstr "_Slett alt" +msgstr "Slett alt" #. EzX8U #: sc/uiconfig/scalc/ui/deletecontents.ui:105 @@ -21779,7 +21779,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:125 msgctxt "deletecontents|text" msgid "_Text" -msgstr "_Tekst" +msgstr "Tekst" #. BzXFc #: sc/uiconfig/scalc/ui/deletecontents.ui:134 @@ -21791,7 +21791,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:145 msgctxt "deletecontents|numbers" msgid "_Numbers" -msgstr "_Tall" +msgstr "Tall" #. HdAdi #: sc/uiconfig/scalc/ui/deletecontents.ui:154 @@ -21803,7 +21803,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:165 msgctxt "deletecontents|datetime" msgid "_Date & time" -msgstr "_Dato og klokkeslett" +msgstr "Dato og klokkeslett" #. uYNYA #: sc/uiconfig/scalc/ui/deletecontents.ui:174 @@ -21815,7 +21815,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:185 msgctxt "deletecontents|formulas" msgid "_Formulas" -msgstr "_Formler" +msgstr "Formler" #. XTY3K #: sc/uiconfig/scalc/ui/deletecontents.ui:194 @@ -21827,7 +21827,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:205 msgctxt "deletecontents|comments" msgid "_Comments" -msgstr "_Merknader" +msgstr "Merknader" #. psiqN #: sc/uiconfig/scalc/ui/deletecontents.ui:214 @@ -21839,7 +21839,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:225 msgctxt "deletecontents|formats" msgid "For_mats" -msgstr "_Formater" +msgstr "Formater" #. 4F3RM #: sc/uiconfig/scalc/ui/deletecontents.ui:234 @@ -21851,7 +21851,7 @@ #: sc/uiconfig/scalc/ui/deletecontents.ui:245 msgctxt "deletecontents|objects" msgid "_Objects" -msgstr "_Objekter" +msgstr "Objekter" #. 4GgHE #: sc/uiconfig/scalc/ui/deletecontents.ui:254 @@ -21899,13 +21899,13 @@ #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:221 msgctxt "descriptivestatisticsdialog|groupedby-columns-radio" msgid "_Columns" -msgstr "_Kolonner" +msgstr "Kolonner" #. 45rGR #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:237 msgctxt "descriptivestatisticsdialog|groupedby-rows-radio" msgid "_Rows" -msgstr "_Rader" +msgstr "Rader" #. MKEzF #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:259 @@ -21917,7 +21917,7 @@ #: sc/uiconfig/scalc/ui/descriptivestatisticsdialog.ui:284 msgctxt "descriptivestatisticsdialog|extended_tip|DescriptiveStatisticsDialog" msgid "Fill a table in the spreadsheet with the main statistical properties of the data set." -msgstr "" +msgstr "Fyll et bord i regnearket med de viktigste statistiske egenskapene til datasettet." #. f98e2 #: sc/uiconfig/scalc/ui/doubledialog.ui:8 @@ -21929,7 +21929,7 @@ #: sc/uiconfig/scalc/ui/doubledialog.ui:115 msgctxt "doubledialog|extended_tip|DoubleDialog" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Skriv inn eller endre verdien av den valgte innstillingen." #. Bp3Fw #: sc/uiconfig/scalc/ui/dropmenu.ui:12 @@ -21959,7 +21959,7 @@ #: sc/uiconfig/scalc/ui/dropmenu.ui:43 msgctxt "dropmenu|extended_tip|link" msgid "Creates a link when you drag-and-drop an object from the Navigator into a document." -msgstr ">Lag en lenke når du drar og slipper et objekt fra dokumentstrukturvinduet til dokumentet." +msgstr "Lag en lenke når du drar og slipper et objekt fra dokumentstrukturvinduet til dokumentet." #. HHS5F #: sc/uiconfig/scalc/ui/dropmenu.ui:52 @@ -21983,25 +21983,25 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:15 msgctxt "erroralerttabpage-mobile|tsbshow" msgid "Show error _message when invalid values are entered" -msgstr "" +msgstr "Vis feilmelding når ugyldige verdier er oppgitt" #. yMbrW #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:44 msgctxt "erroralerttabpage-mobile|action_label" msgid "_Action:" -msgstr "" +msgstr "Handling" #. 2sruM #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:58 msgctxt "erroralerttabpage-mobile|title_label" msgid "_Title:" -msgstr "" +msgstr "Tittel:" #. DALxA #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:106 msgctxt "erroralerttabpage-mobile|errormsg_label" msgid "_Error message:" -msgstr "" +msgstr "Feilmelding:" #. ZzEdw #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:119 @@ -22013,7 +22013,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:135 msgctxt "erroralerttabpage-mobile|actionCB" msgid "Stop" -msgstr "" +msgstr "Stopp" #. fcLJh #: sc/uiconfig/scalc/ui/erroralerttabpage-mobile.ui:136 @@ -22037,43 +22037,43 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:26 msgctxt "erroralerttabpage|extended_tip|tsbshow" msgid "Displays the error message that you enter in the Contents area when invalid data is entered in a cell." -msgstr "" +msgstr "Viser feilmeldingen du skriver inn i innholdsområdet når ugyldige data er angitt i en celle." #. pFAUd #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:65 msgctxt "erroralerttabpage|action_label" msgid "_Action:" -msgstr "_Handling:" +msgstr "Handling:" #. 6uRXn #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:79 msgctxt "erroralerttabpage|title_label" msgid "_Title:" -msgstr "_Tittel:" +msgstr "Tittel:" #. awD2D #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:103 msgctxt "erroralerttabpage|extended_tip|errorMsg" msgid "Enter the message that you want to display when invalid data is entered in a cell." -msgstr "Skriv inn meldinga som skal vises når det blir skrevet inn ugyldige verdier i en celle." +msgstr "Skriv inn meldingen som skal vises når det blir skrevet inn ugyldige verdier i en celle." #. HS6Tu #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:132 msgctxt "erroralerttabpage|errormsg_label" msgid "_Error message:" -msgstr "_Feilmelding:" +msgstr "Feilmelding:" #. gFYoH #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:145 msgctxt "erroralerttabpage|browseBtn" msgid "_Browse..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. pWEXG #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:152 msgctxt "erroralerttabpage|extended_tip|browseBtn" msgid "Opens the Macro dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed." -msgstr "" +msgstr "Åpner makro-dialogboksen der du kan velge makroen som skal kjøres når ugyldige data er oppgitt i en celle. Makroen kjøres etter at feilmeldingen vises." #. BKReu #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:167 @@ -22103,7 +22103,7 @@ #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:174 msgctxt "erroralerttabpage|extended_tip|actionCB" msgid "Select the action that you want to occur when invalid data is entered in a cell." -msgstr "" +msgstr "Velg handlingens som skal kje når ugyldige data er oppgitt i en celle." #. 88Yb3 #: sc/uiconfig/scalc/ui/erroralerttabpage.ui:191 @@ -22175,7 +22175,7 @@ #: sc/uiconfig/scalc/ui/exponentialsmoothingdialog.ui:362 msgctxt "exponentialsmoothingdialog|extended_tip|ExponentialSmoothingDialog" msgid "Results in a smoothed data series" -msgstr "" +msgstr "Resulterer i en jevn dataserie" #. DbhH8 #: sc/uiconfig/scalc/ui/externaldata.ui:23 @@ -22193,37 +22193,37 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:141 msgctxt "externaldata|extended_tip|url" msgid "Enter the URL or the file name that contains the data that you want to insert, and then press Enter." -msgstr "" +msgstr "Skriv inn nettadressen eller filnavnet som inneholder dataene du vil sette inn, og trykk deretter ENTER." #. 2sbsJ #: sc/uiconfig/scalc/ui/externaldata.ui:153 msgctxt "externaldata|browse" msgid "_Browse..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. jrW22 #: sc/uiconfig/scalc/ui/externaldata.ui:160 msgctxt "externaldata|extended_tip|browse" msgid "Open a file dialog to locate the file containing the data you want to insert." -msgstr "" +msgstr "Åpne en fildialog for å finne filen som inneholder dataene du vil sette inn." #. FpyfT #: sc/uiconfig/scalc/ui/externaldata.ui:185 msgctxt "externaldata|label1" msgid "URL of _External Data Source" -msgstr "URL til _ekstern datakilde" +msgstr "URL til ekstern datakilde" #. x9ENQ #: sc/uiconfig/scalc/ui/externaldata.ui:255 msgctxt "externaldata|extended_tip|ranges" msgid "Select the table or the data range that you want to insert." -msgstr "" +msgstr "Velg tabellen eller dataområdet du vil sette inn." #. EhEDC #: sc/uiconfig/scalc/ui/externaldata.ui:274 msgctxt "externaldata|reload" msgid "_Update every:" -msgstr "_Oppdater hvert:" +msgstr "Oppdater hvert:" #. kidEA #: sc/uiconfig/scalc/ui/externaldata.ui:286 @@ -22241,19 +22241,19 @@ #: sc/uiconfig/scalc/ui/externaldata.ui:327 msgctxt "externaldata|secondsft" msgid "_seconds" -msgstr "_sekunder" +msgstr "sekunder" #. iBSZx #: sc/uiconfig/scalc/ui/externaldata.ui:358 msgctxt "externaldata|label2" msgid "_Available Tables/Ranges" -msgstr "_Tilgjengelige tabeller/områder" +msgstr "Tilgjengelige tabeller/områder" #. b9pvu #: sc/uiconfig/scalc/ui/externaldata.ui:392 msgctxt "externaldata|extended_tip|ExternalDataDialog" msgid "Inserts data from an HTML, Calc, CSV or Excel file into the current sheet as a link. The data must be located within a named range." -msgstr "" +msgstr "Setter inn data fra en HTML, Calc, CSV eller Excel-fil i det nåværende arket som en lenke. Dataene må være plassert innenfor et navngitt område." #. tKoGc #: sc/uiconfig/scalc/ui/filldlg.ui:8 @@ -22265,7 +22265,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:105 msgctxt "filldlg|down" msgid "_Down" -msgstr "_Ned" +msgstr "Ned" #. FK3U8 #: sc/uiconfig/scalc/ui/filldlg.ui:115 @@ -22277,7 +22277,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:127 msgctxt "filldlg|right" msgid "_Right" -msgstr "_Høyre" +msgstr "Høyre" #. UGDpf #: sc/uiconfig/scalc/ui/filldlg.ui:137 @@ -22289,7 +22289,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:149 msgctxt "filldlg|up" msgid "_Up" -msgstr "_Opp" +msgstr "Opp" #. y6hB6 #: sc/uiconfig/scalc/ui/filldlg.ui:159 @@ -22301,7 +22301,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:171 msgctxt "filldlg|left" msgid "_Left" -msgstr "_Venstre" +msgstr "Venstre" #. CZSAg #: sc/uiconfig/scalc/ui/filldlg.ui:181 @@ -22319,7 +22319,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:235 msgctxt "filldlg|linear" msgid "Li_near" -msgstr "Li_neær" +msgstr "Lineær" #. ANeeA #: sc/uiconfig/scalc/ui/filldlg.ui:245 @@ -22331,7 +22331,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:257 msgctxt "filldlg|growth" msgid "_Growth" -msgstr "_Vekst" +msgstr "Vekst" #. Ve8TQ #: sc/uiconfig/scalc/ui/filldlg.ui:267 @@ -22343,7 +22343,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:279 msgctxt "filldlg|date" msgid "Da_te" -msgstr "Da_to" +msgstr "Dato" #. 7VCDM #: sc/uiconfig/scalc/ui/filldlg.ui:289 @@ -22355,13 +22355,13 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:301 msgctxt "filldlg|autofill" msgid "_AutoFill" -msgstr "_Autofyll" +msgstr "Autofyll" #. pzZdq #: sc/uiconfig/scalc/ui/filldlg.ui:311 msgctxt "filldlg|extended_tip|autofill" msgid "Forms a series directly in the sheet." -msgstr "" +msgstr "Danner en serie direkte i arket." #. GhoPg #: sc/uiconfig/scalc/ui/filldlg.ui:330 @@ -22373,7 +22373,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:365 msgctxt "filldlg|day" msgid "Da_y" -msgstr "D_ag" +msgstr "Dag" #. HF9aC #: sc/uiconfig/scalc/ui/filldlg.ui:375 @@ -22385,7 +22385,7 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:387 msgctxt "filldlg|week" msgid "_Weekday" -msgstr "_Ukedag" +msgstr "Ukedag" #. X597m #: sc/uiconfig/scalc/ui/filldlg.ui:398 @@ -22397,19 +22397,19 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:410 msgctxt "filldlg|month" msgid "_Month" -msgstr "_Måned" +msgstr "Måned" #. 5AG5E #: sc/uiconfig/scalc/ui/filldlg.ui:420 msgctxt "filldlg|extended_tip|month" msgid "Use the Date series type and this option to form a series which unit of Increment is month." -msgstr ">Bruk serietypen Dato og dette alternativet for å lage en serie med syv dager.Inkrement enheten er dag" +msgstr "Bruk serietypen Dato og dette alternativet for å lage en serie med syv dager.Inkrement enheten er dag" #. zwDGB #: sc/uiconfig/scalc/ui/filldlg.ui:432 msgctxt "filldlg|year" msgid "Y_ear" -msgstr "_År" +msgstr "År" #. ME4Da #: sc/uiconfig/scalc/ui/filldlg.ui:442 @@ -22427,19 +22427,19 @@ #: sc/uiconfig/scalc/ui/filldlg.ui:484 msgctxt "filldlg|startL" msgid "_Start value:" -msgstr "_Startverdi:" +msgstr "Startverdi:" #. mQQjH #: sc/uiconfig/scalc/ui/filldlg.ui:498 msgctxt "filldlg|endL" msgid "End _value:" -msgstr "Slutt_verdi:" +msgstr "Sluttverdi:" #. UUkTb #: sc/uiconfig/scalc/ui/filldlg.ui:512 msgctxt "filldlg|incrementL" msgid "In_crement:" -msgstr "_Steg:" +msgstr "Steg:" #. keEyA #: sc/uiconfig/scalc/ui/filldlg.ui:530 @@ -22455,41 +22455,40 @@ #. LMokQ #: sc/uiconfig/scalc/ui/filldlg.ui:564 -#, fuzzy msgctxt "filldlg|extended_tip|increment" msgid "Determines the value by which the series of the selected type increases by each step." -msgstr " Her kan du angi verdien som den valgte serietypen økes med for hvert steg." +msgstr "Her kan du angi verdien som den valgte serietypen økes med for hvert steg." #. AvMwH #: sc/uiconfig/scalc/ui/filldlg.ui:602 msgctxt "filldlg|extended_tip|FillSeriesDialog" msgid "Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type." -msgstr "" +msgstr "Generer automatisk serier med alternativene i denne dialogboksen. Bestem retning, økning, tidsenhet og serie type." #. cd5X5 #: sc/uiconfig/scalc/ui/filterdropdown.ui:121 #: sc/uiconfig/scalc/ui/filterdropdown.ui:124 msgctxt "filterdropdown|STR_EDIT_SEARCH_ITEMS" msgid "Search items..." -msgstr "" +msgstr "Søk elementer ..." #. zKwWE #: sc/uiconfig/scalc/ui/filterdropdown.ui:158 msgctxt "filterdropdown|STR_BTN_TOGGLE_ALL" msgid "All" -msgstr "" +msgstr "Alle" #. JsSz6 #: sc/uiconfig/scalc/ui/filterdropdown.ui:178 msgctxt "filterdropdown|STR_BTN_SELECT_CURRENT" msgid "Show only the current item." -msgstr "" +msgstr "Vis bare det nåværende elementet." #. vBQYB #: sc/uiconfig/scalc/ui/filterdropdown.ui:193 msgctxt "filterdropdown|STR_BTN_UNSELECT_CURRENT" msgid "Hide only the current item." -msgstr "" +msgstr "Gjem bare det nåværende elementet." #. AfnFz #: sc/uiconfig/scalc/ui/floatingborderstyle.ui:34 @@ -22591,7 +22590,7 @@ #: sc/uiconfig/scalc/ui/floatinglinestyle.ui:26 msgctxt "floatinglinestyle|more" msgid "_More Options..." -msgstr "_Flere alternativer" +msgstr "Flere alternativer" #. 6jM6K #: sc/uiconfig/scalc/ui/footerdialog.ui:8 @@ -22735,7 +22734,7 @@ #: sc/uiconfig/scalc/ui/formulacalculationoptions.ui:220 msgctxt "extended_tip|FormulaCalculationOptions" msgid "Sets the rules for conversion from strings values to numeric values, string values to cell references, and strings values to date and time values. This affects built-in functions such as INDIRECT that takes a reference as a string value or date and time functions that takes arguments as string values in local or ISO 8601 formats." -msgstr "" +msgstr "Angir reglene for konvertering fra strengeverdier til numeriske verdier, strengverdier til cellehenvisninger og strengeverdier til dato og tidsverdier. Dette påvirker innebygde funksjoner som indirekte som tar en referanse som en strengverdi eller dato- og tidsfunksjoner som tar argumenter som strengverdier i lokale eller ISO 8601-formater." #. qUwp9 #: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:15 @@ -22813,7 +22812,7 @@ #: sc/uiconfig/scalc/ui/fourieranalysisdialog.ui:425 msgctxt "fourieranalysisdialog|extended_tip|FourierAnalysisDialog" msgid "Produces the Fourier analysis of a data set by computing the Discrete Fourier Transform (DFT) of an input array of complex numbers using a couple of Fast Fourier Transform (FFT) algorithms." -msgstr "" +msgstr "Produserer Fourier-analysen av et datasett ved å beregne den diskrete Fourier-transformasjonen (DFT) av et inngangsanvisning av komplekse tall ved hjelp av et par hurtige Fourier-transformasjons (FFT) algoritmer." #. FEwZR #: sc/uiconfig/scalc/ui/functionpanel.ui:63 @@ -22903,13 +22902,13 @@ #: sc/uiconfig/scalc/ui/functionpanel.ui:93 msgctxt "functionpanel|extended_tip|category" msgid "Displays the available functions." -msgstr "" +msgstr "Viser de tilgjengelige funksjonene." #. V9ATp #: sc/uiconfig/scalc/ui/functionpanel.ui:140 msgctxt "functionpanel|extended_tip|funclist" msgid "Displays the available functions." -msgstr "" +msgstr "Viser de tilgjengelige funksjonene." #. rmQie #: sc/uiconfig/scalc/ui/functionpanel.ui:174 @@ -22939,7 +22938,7 @@ #: sc/uiconfig/scalc/ui/goalseekdlg.ui:110 msgctxt "goalseekdlg|formulatext" msgid "_Formula cell:" -msgstr "_Formelcelle:" +msgstr "Formelcelle:" #. t8oEF #: sc/uiconfig/scalc/ui/goalseekdlg.ui:123 @@ -22951,7 +22950,7 @@ #: sc/uiconfig/scalc/ui/goalseekdlg.ui:136 msgctxt "goalseekdlg|vartext" msgid "Variable _cell:" -msgstr "_Ved å endre celle:" +msgstr "Ved å endre celle:" #. gA4H9 #: sc/uiconfig/scalc/ui/goalseekdlg.ui:155 @@ -23005,13 +23004,13 @@ #: sc/uiconfig/scalc/ui/groupbydate.ui:126 msgctxt "groupbydate|auto_start" msgid "_Automatically" -msgstr "_Automatisk" +msgstr "Automatisk" #. u9esd #: sc/uiconfig/scalc/ui/groupbydate.ui:142 msgctxt "groupbydate|manual_start" msgid "_Manually at:" -msgstr "_Manuelt ved:" +msgstr "Manuelt ved:" #. uLqPc #: sc/uiconfig/scalc/ui/groupbydate.ui:183 @@ -23023,13 +23022,13 @@ #: sc/uiconfig/scalc/ui/groupbydate.ui:219 msgctxt "groupbydate|auto_end" msgid "A_utomatically" -msgstr "_Automatisk" +msgstr "Automatisk" #. c77d8 #: sc/uiconfig/scalc/ui/groupbydate.ui:235 msgctxt "groupbydate|manual_end" msgid "Ma_nually at:" -msgstr "_Manuelt ved:" +msgstr "Manuelt ved:" #. 7atAW #: sc/uiconfig/scalc/ui/groupbydate.ui:277 @@ -23041,13 +23040,13 @@ #: sc/uiconfig/scalc/ui/groupbydate.ui:317 msgctxt "groupbydate|days" msgid "Number of _days:" -msgstr "Antall _dager:" +msgstr "Antall dager:" #. GGREf #: sc/uiconfig/scalc/ui/groupbydate.ui:336 msgctxt "groupbydate|intervals" msgid "_Intervals:" -msgstr "_Intervall:" +msgstr "Intervall:" #. aQKHp #: sc/uiconfig/scalc/ui/groupbydate.ui:437 @@ -23065,13 +23064,13 @@ #: sc/uiconfig/scalc/ui/groupbynumber.ui:108 msgctxt "groupbynumber|auto_start" msgid "_Automatically" -msgstr "_Automatisk" +msgstr "Automatisk" #. nbnZC #: sc/uiconfig/scalc/ui/groupbynumber.ui:124 msgctxt "groupbynumber|manual_start" msgid "_Manually at:" -msgstr "_Manuelt ved:" +msgstr "Manuelt ved:" #. Dr8cH #: sc/uiconfig/scalc/ui/groupbynumber.ui:168 @@ -23083,13 +23082,13 @@ #: sc/uiconfig/scalc/ui/groupbynumber.ui:204 msgctxt "groupbynumber|auto_end" msgid "A_utomatically" -msgstr "_Automatisk" +msgstr "Automatisk" #. qdFNk #: sc/uiconfig/scalc/ui/groupbynumber.ui:220 msgctxt "groupbynumber|manual_end" msgid "Ma_nually at:" -msgstr "_Manuell ved:" +msgstr "Manuell ved:" #. 3Fakb #: sc/uiconfig/scalc/ui/groupbynumber.ui:263 @@ -23113,19 +23112,19 @@ #: sc/uiconfig/scalc/ui/groupdialog.ui:99 msgctxt "groupdialog|rows" msgid "_Rows" -msgstr "_Rader" +msgstr "Rader" #. MFqB6 #: sc/uiconfig/scalc/ui/groupdialog.ui:116 msgctxt "groupdialog|cols" msgid "_Columns" -msgstr "_Kolonner" +msgstr "Kolonner" #. EAEmh #: sc/uiconfig/scalc/ui/groupdialog.ui:140 msgctxt "groupdialog|includeLabel" msgid "Include" -msgstr "Ta med" +msgstr "Inkluder" #. KCAWf #: sc/uiconfig/scalc/ui/headerdialog.ui:8 @@ -23167,19 +23166,19 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:86 msgctxt "headerfootercontent|labelFT_LEFT" msgid "_Left area" -msgstr "_Venstre område" +msgstr "Venstre område" #. wFDyu #: sc/uiconfig/scalc/ui/headerfootercontent.ui:100 msgctxt "headerfootercontent|labelFT_CENTER" msgid "_Center area" -msgstr "_Midt på" +msgstr "Midt på" #. wADmv #: sc/uiconfig/scalc/ui/headerfootercontent.ui:114 msgctxt "headerfootercontent|labelFT_RIGHT" msgid "R_ight area" -msgstr "_Høyre område" +msgstr "Høyre område" #. skPBa #: sc/uiconfig/scalc/ui/headerfootercontent.ui:141 @@ -23203,13 +23202,13 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:238 msgctxt "headerfootercontent|labelFT_H_DEFINED" msgid "_Header" -msgstr "_Topptekst" +msgstr "Topptekst" #. di3Ad #: sc/uiconfig/scalc/ui/headerfootercontent.ui:253 msgctxt "headerfootercontent|labelFT_F_DEFINED" msgid "_Footer" -msgstr "_Bunntekst" +msgstr "Bunntekst" #. z9EEa #: sc/uiconfig/scalc/ui/headerfootercontent.ui:280 @@ -23233,7 +23232,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:322 msgctxt "headerfootercontent|extended_tip|buttonBTN_TEXT" msgid "Opens a dialog to assign formats to new or selected text." -msgstr "" +msgstr "Åpner en dialog for å tilordne formater til ny eller valgt tekst." #. 9XxsD #: sc/uiconfig/scalc/ui/headerfootercontent.ui:337 @@ -23287,7 +23286,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:417 msgctxt "headerfootercontent|buttonBTN_DATE|tooltip_text" msgid "Date" -msgstr "dato" +msgstr "Dato" #. XvcER #: sc/uiconfig/scalc/ui/headerfootercontent.ui:421 @@ -23311,7 +23310,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:462 msgctxt "headerfootercontent|extended_tip|comboLB_DEFINED" msgid "Select a predefined header or footer from the list." -msgstr "Velg en forhåndsbestemt topptekst eller bunntekst fra lista." +msgstr "Velg en forhåndsbestemt topptekst eller bunntekst fra listen." #. 2TJzJ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:494 @@ -23401,13 +23400,13 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:109 msgctxt "imoptdialog|charsetft" msgid "_Character set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. YzedG #: sc/uiconfig/scalc/ui/imoptdialog.ui:122 msgctxt "imoptdialog|fieldft" msgid "_Field delimiter:" -msgstr "_Feltavgrenser:" +msgstr "Feltavgrenser:" #. bhjBy #: sc/uiconfig/scalc/ui/imoptdialog.ui:136 @@ -23419,25 +23418,25 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:148 msgctxt "imoptdialog|asshown" msgid "Save cell content as _shown" -msgstr "Lagre celleinnhold som _vist" +msgstr "Lagre celleinnhold som vist" #. kWBhB #: sc/uiconfig/scalc/ui/imoptdialog.ui:157 msgctxt "imoptdialog|extended_tip|asshown" msgid "Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software." -msgstr "Denne er normalt avkrysset og gjør at data lagres slik som de blir viste, inklusive det brukte tallformatet. Dersom dentt ikkj er avkrysset, blir data lagret slik som i tidlegere utgaver av programmet." +msgstr "Denne er normalt avkrysset og gjør at data lagres slik som de blir viste, inklusive det brukte tallformatet. Dersom den ikke er avkrysset, blir data lagret slik som i tidlegere utgaver av programmet." #. Fn8ts #: sc/uiconfig/scalc/ui/imoptdialog.ui:169 msgctxt "imoptdialog|formulas" msgid "Save cell fo_rmulas instead of calculated values" -msgstr "Lagre cellefo~rmler i stedet for utregnede verdier" +msgstr "Lagre celleformler i stedet for utregnede verdier" #. DAEFJ #: sc/uiconfig/scalc/ui/imoptdialog.ui:185 msgctxt "imoptdialog|quoteall" msgid "_Quote all text cells" -msgstr "Sett alle tekstceller i _hermetegn" +msgstr "Sett alle tekstceller i hermetegn" #. vboDu #: sc/uiconfig/scalc/ui/imoptdialog.ui:194 @@ -23449,7 +23448,7 @@ #: sc/uiconfig/scalc/ui/imoptdialog.ui:206 msgctxt "imoptdialog|fixedwidth" msgid "Fixed column _width" -msgstr "Fast kolonne_bredde" +msgstr "Fast kolonnebredde" #. TfB45 #: sc/uiconfig/scalc/ui/imoptdialog.ui:215 @@ -23491,7 +23490,7 @@ #: sc/uiconfig/scalc/ui/inputstringdialog.ui:108 msgctxt "inputstringdialog|extended_tip|name_entry" msgid "Enter a new name for the sheet here." -msgstr "" +msgstr "Skriv inn et nytt navn for arket her." #. MwM2i #: sc/uiconfig/scalc/ui/inputstringdialog.ui:137 @@ -23509,7 +23508,7 @@ #: sc/uiconfig/scalc/ui/insertcells.ui:96 msgctxt "insertcells|down" msgid "Shift cells _down" -msgstr "Flytt celler _nedover" +msgstr "Flytt celler nedover" #. FA4mZ #: sc/uiconfig/scalc/ui/insertcells.ui:106 @@ -23521,7 +23520,7 @@ #: sc/uiconfig/scalc/ui/insertcells.ui:118 msgctxt "insertcells|right" msgid "Shift cells _right" -msgstr "Flytt celler mot _høyre" +msgstr "Flytt celler mot høyre" #. 9UVgc #: sc/uiconfig/scalc/ui/insertcells.ui:128 @@ -23533,19 +23532,19 @@ #: sc/uiconfig/scalc/ui/insertcells.ui:140 msgctxt "insertcells|rows" msgid "Entire ro_w" -msgstr "Hele _raden" +msgstr "Hele raden" #. GZc24 #: sc/uiconfig/scalc/ui/insertcells.ui:150 msgctxt "insertcells|extended_tip|rows" msgid "Inserts an entire row. The position of the row is determined by the selection on the sheet." -msgstr "Sett inn en hel rad. Plasseringa av raden er avhengig av det valgte området." +msgstr "Sett inn en hel rad. Plasseringen av raden er avhengig av det valgte området." #. 6UZ5M #: sc/uiconfig/scalc/ui/insertcells.ui:162 msgctxt "insertcells|cols" msgid "Entire _column" -msgstr "Hele _kolonnen" +msgstr "Hele kolonnen" #. oXcQW #: sc/uiconfig/scalc/ui/insertcells.ui:172 @@ -23575,19 +23574,19 @@ #: sc/uiconfig/scalc/ui/insertname.ui:51 msgctxt "insertname|pasteall" msgid "_Paste All" -msgstr "_Lim inn alt" +msgstr "Lim inn alt" #. TuwoL #: sc/uiconfig/scalc/ui/insertname.ui:58 msgctxt "insertname|extended_tip|pasteall" msgid "Inserts a list of all named areas and the corresponding cell references at the current cursor position." -msgstr "" +msgstr "Setter inn en liste over alle navngitte områder og de tilsvarende cellehenvisninger på gjeldende markørposisjon." #. TNPzH #: sc/uiconfig/scalc/ui/insertname.ui:79 msgctxt "insertname|extended_tip|paste" msgid "Inserts the selected named area and the corresponding cell reference at the current cursor position." -msgstr "" +msgstr "Setter inn det valgte navngitte området og den tilsvarende cellehenvisningen på den nåværende markørposisjonen." #. CJqeA #: sc/uiconfig/scalc/ui/insertname.ui:137 @@ -23611,7 +23610,7 @@ #: sc/uiconfig/scalc/ui/insertname.ui:174 msgctxt "insertname|extended_tip|ctrl" msgid "Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position." -msgstr "" +msgstr "Viser alle definerte celleområder. Dobbeltklikk på en oppføring for å sette inn det navngitte området til det aktive arket på den nåværende markørposisjonen." #. xuLCu #: sc/uiconfig/scalc/ui/insertname.ui:199 @@ -23629,7 +23628,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:117 msgctxt "insertsheet|before" msgid "B_efore current sheet" -msgstr "_Før dette arket" +msgstr "Før dette arket" #. YRB9E #: sc/uiconfig/scalc/ui/insertsheet.ui:127 @@ -23641,7 +23640,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:139 msgctxt "insertsheet|after" msgid "_After current sheet" -msgstr "_Etter dette arket" +msgstr "Etter dette arket" #. uiKdA #: sc/uiconfig/scalc/ui/insertsheet.ui:149 @@ -23659,7 +23658,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:213 msgctxt "insertsheet|new" msgid "_New sheet" -msgstr "_Nytt ark" +msgstr "Nytt ark" #. CyX37 #: sc/uiconfig/scalc/ui/insertsheet.ui:223 @@ -23671,13 +23670,13 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:251 msgctxt "insertsheet|countft" msgid "N_o. of sheets:" -msgstr "_Antall ark:" +msgstr "Antall ark:" #. xnBgf #: sc/uiconfig/scalc/ui/insertsheet.ui:265 msgctxt "insertsheet|nameft" msgid "Na_me:" -msgstr "Na_vn:" +msgstr "Navn:" #. JqDES #: sc/uiconfig/scalc/ui/insertsheet.ui:285 @@ -23701,7 +23700,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:340 msgctxt "insertsheet|fromfile" msgid "_From file" -msgstr "_Fra fil" +msgstr "Fra fil" #. j9uBX #: sc/uiconfig/scalc/ui/insertsheet.ui:350 @@ -23725,7 +23724,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:439 msgctxt "insertsheet|browse" msgid "_Browse..." -msgstr "B_la gjennom …" +msgstr "Bla gjennom …" #. LnzZX #: sc/uiconfig/scalc/ui/insertsheet.ui:446 @@ -23737,7 +23736,7 @@ #: sc/uiconfig/scalc/ui/insertsheet.ui:457 msgctxt "insertsheet|link" msgid "Lin_k" -msgstr "_Lenke" +msgstr "Lenke" #. 5skfF #: sc/uiconfig/scalc/ui/insertsheet.ui:468 @@ -23761,13 +23760,13 @@ #: sc/uiconfig/scalc/ui/integerdialog.ui:14 msgctxt "integerdialog|IntegerDialog" msgid "Edit Setting" -msgstr "Rediger innstillinga" +msgstr "Rediger innstillingen" #. hCsQF #: sc/uiconfig/scalc/ui/integerdialog.ui:123 msgctxt "integerdialog|extended_tip|IntegerDialog" msgid "Enter or change the value of the selected setting." -msgstr "" +msgstr "Skriv inn eller endre verdien av den valgte innstillingen." #. ihAsa #: sc/uiconfig/scalc/ui/leftfooterdialog.ui:8 @@ -23833,7 +23832,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:170 msgctxt "managenamesdialog|extended_tip|names" msgid "Select a named range or named formula from the list to modify its properties." -msgstr "" +msgstr "Velg et navngitt område eller navngitt formel fra listen for å endre egenskapene." #. enGg7 #: sc/uiconfig/scalc/ui/managenamesdialog.ui:194 @@ -23857,13 +23856,13 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:246 msgctxt "managenamesdialog|extended_tip|scope" msgid "Select the scope of the named range or named formula. Document (Global) means the name is valid for the whole document." -msgstr "" +msgstr "Velg omfanget av det navngitte området eller navngitt formel. Dokument (global) betyr at navnet er gyldig for hele dokumentet." #. 2dF7g #: sc/uiconfig/scalc/ui/managenamesdialog.ui:271 msgctxt "managenamesdialog|extended_tip|range" msgid "The reference of the selected area name is shown here as an absolute value." -msgstr "" +msgstr "Henvisningen til det valgte områdeavnet er vist her som en absolutt verdi." #. EJrBk #: sc/uiconfig/scalc/ui/managenamesdialog.ui:288 @@ -23881,73 +23880,73 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:328 msgctxt "managenamesdialog|extended_tip|name" msgid "Enter the name of the area for which you want to define a reference or a formula expression." -msgstr "" +msgstr "Skriv inn navnet på området som du vil definere en referanse eller et formeluttrykk på." #. dGcEm #: sc/uiconfig/scalc/ui/managenamesdialog.ui:365 msgctxt "managenamesdialog|printrange" msgid "_Print range" -msgstr "_Utskriftsområde" +msgstr "Utskriftsområde" #. GEWKN #: sc/uiconfig/scalc/ui/managenamesdialog.ui:374 msgctxt "managenamesdialog|extended_tip|printrange" msgid "Defines the area as a print range." -msgstr "" +msgstr "Definerer området som et utskriftsområde." #. EjtHY #: sc/uiconfig/scalc/ui/managenamesdialog.ui:385 msgctxt "managenamesdialog|filter" msgid "_Filter" -msgstr "_Filter" +msgstr "Filter" #. DoQMz #: sc/uiconfig/scalc/ui/managenamesdialog.ui:394 msgctxt "managenamesdialog|extended_tip|filter" msgid "Defines the selected area to be used in an advanced filter." -msgstr "" +msgstr "Definerer det valgte området som skal brukes i et avansert filter." #. UdLJc #: sc/uiconfig/scalc/ui/managenamesdialog.ui:405 msgctxt "managenamesdialog|colheader" msgid "Repeat _column" -msgstr "_Gjenta kolonne" +msgstr "Gjenta kolonne" #. oipaa #: sc/uiconfig/scalc/ui/managenamesdialog.ui:414 msgctxt "managenamesdialog|extended_tip|colheader" msgid "Defines the area as a repeating column." -msgstr "" +msgstr "Definerer området som en gjentatt kolonne." #. c3b8v #: sc/uiconfig/scalc/ui/managenamesdialog.ui:425 msgctxt "managenamesdialog|rowheader" msgid "Repeat _row" -msgstr "_Gjenta rad" +msgstr "Gjenta rad" #. RbPrc #: sc/uiconfig/scalc/ui/managenamesdialog.ui:434 msgctxt "managenamesdialog|extended_tip|rowheader" msgid "Defines the area as a repeating row." -msgstr "" +msgstr "Definerer området som en gjentatt rad." #. Rujwh #: sc/uiconfig/scalc/ui/managenamesdialog.ui:451 msgctxt "managenamesdialog|label1" msgid "Range _Options" -msgstr "Område_valg" +msgstr "Områdevalg" #. MFz5S #: sc/uiconfig/scalc/ui/managenamesdialog.ui:457 msgctxt "managenamesdialog|extended_tip|more" msgid "Allows you to specify the Area type (optional) for the reference." -msgstr "" +msgstr "Lar deg spesifisere områdets type (valgfritt) for referansen." #. vVAh3 #: sc/uiconfig/scalc/ui/managenamesdialog.ui:482 msgctxt "managenamesdialog|extended_tip|add" msgid "Click the Add button to add a new defined name." -msgstr "" +msgstr "Klikk på Legg til-knappen for å legge til et nytt definert navn." #. MBAnE #: sc/uiconfig/scalc/ui/managenamesdialog.ui:501 @@ -23959,7 +23958,7 @@ #: sc/uiconfig/scalc/ui/managenamesdialog.ui:537 msgctxt "managenamesdialog|extended_tip|ManageNamesDialog" msgid "Opens a dialog where you can specify a name for a selected area or a name for a formula expression." -msgstr "" +msgstr "Åpner en dialog hvor du kan angi et navn for et valgt område eller et navn for et formeluttrykk." #. 96fTt #: sc/uiconfig/scalc/ui/managenamesdialog.ui:542 @@ -24001,7 +24000,7 @@ #: sc/uiconfig/scalc/ui/mergecellsdialog.ui:205 msgctxt "mergecellsdialog|extended_tip|MergeCellsDialog" msgid "Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered." -msgstr "" +msgstr "Kombinerer de valgte cellene i en enkelt celle eller splitter fusjonerte celler. Justerer celleinnhold sentrert." #. rG3G4 #: sc/uiconfig/scalc/ui/mergecolumnentry.ui:22 @@ -24037,13 +24036,13 @@ #: sc/uiconfig/scalc/ui/movecopysheet.ui:99 msgctxt "movecopysheet|move" msgid "_Move" -msgstr "_Flytt" +msgstr "Flytt" #. zRtFK #: sc/uiconfig/scalc/ui/movecopysheet.ui:117 msgctxt "movecopysheet|copy" msgid "C_opy" -msgstr "K_opier" +msgstr "Kopier" #. GPAxW #: sc/uiconfig/scalc/ui/movecopysheet.ui:128 @@ -24061,7 +24060,7 @@ #: sc/uiconfig/scalc/ui/movecopysheet.ui:195 msgctxt "movecopysheet|toDocumentLabel" msgid "To _document" -msgstr "Til _dokument" +msgstr "Til dokument" #. jfC53 #: sc/uiconfig/scalc/ui/movecopysheet.ui:212 @@ -24085,7 +24084,7 @@ #: sc/uiconfig/scalc/ui/movecopysheet.ui:246 msgctxt "movecopysheet|insertBeforeLabel" msgid "_Insert before" -msgstr "Sett inn _før" +msgstr "Sett inn før" #. 8C2Bk #: sc/uiconfig/scalc/ui/movecopysheet.ui:290 @@ -24121,7 +24120,7 @@ #: sc/uiconfig/scalc/ui/movecopysheet.ui:442 msgctxt "movecopysheet|newNameLabel" msgid "New _name" -msgstr "_Nytt navn" +msgstr "Nytt navn" #. qqKL9 #: sc/uiconfig/scalc/ui/movecopysheet.ui:468 @@ -24193,7 +24192,7 @@ #: sc/uiconfig/scalc/ui/movingaveragedialog.ui:379 msgctxt "movingaveragedialog|extended_tip|MovingAverageDialog" msgid "Calculates the moving average of a time series" -msgstr "" +msgstr "Beregner det bevegelige gjennomsnittet av en tidsserie" #. EME6W #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:8 @@ -24217,37 +24216,37 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:110 msgctxt "multipleoperationsdialog|formulasft" msgid "_Formulas:" -msgstr "_Formler:" +msgstr "Formler:" #. ddjsT #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:124 msgctxt "multipleoperationsdialog|rowft" msgid "_Row input cell:" -msgstr "_Radcelle for inndata:" +msgstr "Radcelle for inndata:" #. AELsJ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:138 msgctxt "multipleoperationsdialog|colft" msgid "_Column input cell:" -msgstr "_Kolonnecelle for inndata:" +msgstr "Kolonnecelle for inndata:" #. 5RfAg #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:158 msgctxt "multipleoperationsdialog|extended_tip|formulas" msgid "Enter the cell references for the cells containing the formulas that you want to use in the multiple operation." -msgstr "" +msgstr "Skriv inn cellehenvisninger for cellene som inneholder formlene du vil bruke i flere operasjoner." #. Dcu9R #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:177 msgctxt "multipleoperationsdialog|extended_tip|row" msgid "Enter the input cell reference that you want to use as a variable for the rows in the data table." -msgstr "" +msgstr "Skriv inn inngangscelle-referansen som du vil bruke som en variabel for rader i datatabellen." #. E5T7X #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:196 msgctxt "multipleoperationsdialog|extended_tip|col" msgid "Enter the input cell reference that you want to use as a variable for the columns in the data table." -msgstr "" +msgstr "Skriv inn inngangscelle-referansen som du vil bruke som en variabel for kolonnene i datatabellen." #. uQeAG #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:212 @@ -24277,7 +24276,7 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:286 msgctxt "multipleoperationsdialog|extended_tip|MultipleOperationsDialog" msgid "Applies the same formula to different cells, but with different parameter values." -msgstr "" +msgstr "Gjelder den samme formelen til forskjellige celler, men med forskjellige parameterverdier." #. jbFci #: sc/uiconfig/scalc/ui/namerangesdialog.ui:16 @@ -24313,7 +24312,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:180 msgctxt "namerangesdialog|colhead" msgid "Contains _column labels" -msgstr "Inneholder _kolonneoverskrifter" +msgstr "Inneholder kolonneoverskrifter" #. LTnyf #: sc/uiconfig/scalc/ui/namerangesdialog.ui:191 @@ -24325,7 +24324,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:202 msgctxt "namerangesdialog|rowhead" msgid "Contains _row labels" -msgstr "Inneholder _radoverskrifter" +msgstr "Inneholder radoverskrifter" #. bsL9T #: sc/uiconfig/scalc/ui/namerangesdialog.ui:213 @@ -24337,7 +24336,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:232 msgctxt "namerangesdialog|datarange" msgid "For _data range" -msgstr "For _dataområde" +msgstr "For dataområde" #. Lhn9n #: sc/uiconfig/scalc/ui/namerangesdialog.ui:258 @@ -24355,7 +24354,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:308 msgctxt "namerangesdialog|extended_tip|add" msgid "Adds the current label range to the list." -msgstr "Legg gjeldende etikettområde til i lista." +msgstr "Legg gjeldende etikettområde til i listen." #. ozH98 #: sc/uiconfig/scalc/ui/namerangesdialog.ui:327 @@ -24403,7 +24402,7 @@ #: sc/uiconfig/scalc/ui/navigatorpanel.ui:43 msgctxt "navigatorpanel|extended_tip|link" msgid "Creates a link when you drag-and-drop an object from the Navigator into a document." -msgstr ">Lag en lenke når du drar og slipper et objekt fra dokumentstrukturvinduet til dokumentet." +msgstr "Lag en lenke når du drar og slipper et objekt fra dokumentstrukturvinduet til dokumentet." #. 97BBT #: sc/uiconfig/scalc/ui/navigatorpanel.ui:52 @@ -25025,7 +25024,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3685 msgctxt "notebookbar_groupedbar_compact|formatb" msgid "F_ont" -msgstr "Skrifttype" +msgstr "Font" #. LFB3L #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3920 @@ -25215,13 +25214,13 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653 msgctxt "notebookbar_groupedbar_full|Header1" msgid "Heading 1" -msgstr "" +msgstr "Overskrift 1" #. 6Ej4G #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661 msgctxt "notebookbar_groupedbar_full|Header2" msgid "Heading 2" -msgstr "" +msgstr "Overskrift 2" #. sqE94 #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675 @@ -25443,7 +25442,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9478 msgctxt "notebookbar_groupedbar_full|formatd" msgid "F_ont" -msgstr "Skrifttype" +msgstr "Font" #. ZDEax #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:9743 @@ -25947,13 +25946,13 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:70 msgctxt "optcalculatepage|label4" msgid "CPU Threading Settings" -msgstr "" +msgstr "CPU-trådings-innstillinger" #. XyA9j #: sc/uiconfig/scalc/ui/optcalculatepage.ui:103 msgctxt "optcalculatepage|case" msgid "Case se_nsitive" -msgstr "_Skill store og små bokstaver" +msgstr "Skill store og små bokstaver" #. FF8Nh #: sc/uiconfig/scalc/ui/optcalculatepage.ui:107 @@ -25971,7 +25970,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:124 msgctxt "optcalculatepage|calc" msgid "_Precision as shown" -msgstr "_Presisjon som vist" +msgstr "Presisjon som vist" #. YGAFd #: sc/uiconfig/scalc/ui/optcalculatepage.ui:133 @@ -26001,7 +26000,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:165 msgctxt "optcalculatepage|lookup" msgid "_Automatically find column and row labels" -msgstr "_Finn automatisk kolonne- og radoverskrifter" +msgstr "Finn automatisk kolonne- og radoverskrifter" #. XVS3t #: sc/uiconfig/scalc/ui/optcalculatepage.ui:174 @@ -26013,7 +26012,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:185 msgctxt "optcalculatepage|generalprec" msgid "_Limit decimals for general number format" -msgstr "_Begrens desimaler for generelt nummerformat" +msgstr "Begrens desimaler for generelt nummerformat" #. hufmT #: sc/uiconfig/scalc/ui/optcalculatepage.ui:194 @@ -26025,7 +26024,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:217 msgctxt "optcalculatepage|precft" msgid "_Decimal places:" -msgstr "_Desimalplasser:" +msgstr "Desimalplasser:" #. riZoc #: sc/uiconfig/scalc/ui/optcalculatepage.ui:236 @@ -26043,7 +26042,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:295 msgctxt "optcalculatepage|iterate" msgid "_Iterations" -msgstr "_Repetisjoner" +msgstr "Repetisjoner" #. pBKcn #: sc/uiconfig/scalc/ui/optcalculatepage.ui:304 @@ -26055,13 +26054,13 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:330 msgctxt "optcalculatepage|stepsft" msgid "_Steps:" -msgstr "_Steg:" +msgstr "Steg:" #. aJT9u #: sc/uiconfig/scalc/ui/optcalculatepage.ui:344 msgctxt "optcalculatepage|minchangeft" msgid "_Minimum change:" -msgstr "_Minste endring:" +msgstr "Minste endring:" #. GmKgv #: sc/uiconfig/scalc/ui/optcalculatepage.ui:363 @@ -26085,7 +26084,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:439 msgctxt "optcalculatepage|datestd" msgid "12/30/1899 (defa_ult)" -msgstr "30.12.1899 (_standard)" +msgstr "30.12.1899 (standard)" #. ApqYV #: sc/uiconfig/scalc/ui/optcalculatepage.ui:443 @@ -26103,7 +26102,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:461 msgctxt "optcalculatepage|datesc10" msgid "01/01/1900 (Star_Calc 1.0)" -msgstr "01.01.1900 (Star_Calc 1.0)" +msgstr "01.01.1900 (StarCalc 1.0)" #. etLCb #: sc/uiconfig/scalc/ui/optcalculatepage.ui:465 @@ -26121,7 +26120,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:483 msgctxt "optcalculatepage|date1904" msgid "_01/01/1904" -msgstr "_01.01.1904" +msgstr "01.01.1904" #. aBzk5 #: sc/uiconfig/scalc/ui/optcalculatepage.ui:487 @@ -26139,7 +26138,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:511 msgctxt "optcalculatepage|label3" msgid "Date" -msgstr "dato" +msgstr "Dato" #. Hd6CV #: sc/uiconfig/scalc/ui/optcalculatepage.ui:542 @@ -26157,13 +26156,13 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:553 msgctxt "extended_tip|formulawildcards" msgid "Specifies that wildcards are enabled when searching and also for character string comparisons." -msgstr "Angir at jokertegn er slått på ved søking og ved samanligning av tekststrenger." +msgstr "Angir at jokertegn er slått på ved søking og ved sammenligning av tekststrenger." #. Gghyb #: sc/uiconfig/scalc/ui/optcalculatepage.ui:564 msgctxt "optcalculatepage|formularegex" msgid "Enable r_egular expressions in formulas" -msgstr "_Bruk regulære uttrykk i formler" +msgstr "Bruk regulære uttrykk i formler" #. D9B3G #: sc/uiconfig/scalc/ui/optcalculatepage.ui:574 @@ -26181,37 +26180,37 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:595 msgctxt "extended_tip|formulaliteral" msgid "Specifies that only literal strings are used when searching and also for character string comparisons." -msgstr "Angir at jokertegn er slått på ved søking og ved samanligning av tekststrenger." +msgstr "Angir at jokertegn er slått på ved søking og ved sammenligning av tekststrenger." #. XEPCe #: sc/uiconfig/scalc/ui/optcalculatepage.ui:612 msgctxt "optcalculatepage|label5" msgid "Formulas Wildcards" -msgstr "" +msgstr "Formel jokertegn." #. Umdv5 #: sc/uiconfig/scalc/ui/optchangespage.ui:37 msgctxt "optchangespage|label2" msgid "Chan_ges:" -msgstr "_Endringer:" +msgstr "Endringer:" #. yrmgC #: sc/uiconfig/scalc/ui/optchangespage.ui:51 msgctxt "optchangespage|label3" msgid "_Deletions:" -msgstr "_Slettinger:" +msgstr "Slettinger:" #. bJb2E #: sc/uiconfig/scalc/ui/optchangespage.ui:65 msgctxt "optchangespage|label4" msgid "_Insertions:" -msgstr "_Innsettinger:" +msgstr "Innsettinger:" #. ikfvj #: sc/uiconfig/scalc/ui/optchangespage.ui:79 msgctxt "optchangespage|label5" msgid "_Moved entries:" -msgstr "_Flyttede oppføringer:" +msgstr "Flyttede oppføringer:" #. BiCsr #: sc/uiconfig/scalc/ui/optchangespage.ui:103 @@ -26253,7 +26252,7 @@ #: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:42 msgctxt "optcompatibilitypage|label2" msgid "Select desired _key binding type. Changing the key binding type may overwrite some of the existing key bindings." -msgstr "Velg den ønskede kombinasjonen for _hurtigtaster. Endring av hurtigtaster kan overskrive eksisterende hurtigtaster." +msgstr "Velg den ønskede kombinasjonen for hurtigtaster. Endring av hurtigtaster kan overskrive eksisterende hurtigtaster." #. CER9u #: sc/uiconfig/scalc/ui/optcompatibilitypage.ui:62 @@ -26307,19 +26306,19 @@ #: sc/uiconfig/scalc/ui/optdefaultpage.ui:129 msgctxt "extended_tip|OptDefaultPage" msgid "Defines default settings for new spreadsheet documents." -msgstr "" +msgstr "Definerer standardinnstillinger for nye regnearkdokumenter." #. TueVT #: sc/uiconfig/scalc/ui/optdlg.ui:31 msgctxt "optdlg|forceBreaksCB" msgid "_Always apply manual breaks" -msgstr "Bruk _alltid manuelle sideskift" +msgstr "Bruk alltid manuelle sideskift" #. gbrKD #: sc/uiconfig/scalc/ui/optdlg.ui:47 msgctxt "optdlg|suppressCB" msgid "_Suppress output of empty pages" -msgstr "_Undertrykk utskriving av blanke sider" +msgstr "Undertrykk utskriving av blanke sider" #. 6chh5 #: sc/uiconfig/scalc/ui/optdlg.ui:56 @@ -26367,7 +26366,7 @@ #: sc/uiconfig/scalc/ui/optformula.ui:67 msgctxt "optformula|formulasyntaxlabel" msgid "Formula _syntax:" -msgstr "Formel_syntaks:" +msgstr "Formelsyntaks:" #. 6ioPy #: sc/uiconfig/scalc/ui/optformula.ui:90 @@ -26457,25 +26456,25 @@ #: sc/uiconfig/scalc/ui/optformula.ui:325 msgctxt "optformula|label6" msgid "_Function:" -msgstr "_Funksjon:" +msgstr "Funksjon:" #. vnh8f #: sc/uiconfig/scalc/ui/optformula.ui:339 msgctxt "optformula|label7" msgid "Array co_lumn:" -msgstr "Tabell_kolonne:" +msgstr "Tabellkolonne:" #. 6sZYU #: sc/uiconfig/scalc/ui/optformula.ui:353 msgctxt "optformula|label8" msgid "Array _row:" -msgstr "Tabell_rad:" +msgstr "Tabellrad:" #. GQdGa #: sc/uiconfig/scalc/ui/optformula.ui:410 msgctxt "optformula|reset" msgid "Rese_t Separators Settings" -msgstr "_Tilbakestill innstillingene for skilletegn" +msgstr "Tilbakestill innstillingene for skilletegn" #. 9oMMw #: sc/uiconfig/scalc/ui/optformula.ui:436 @@ -26505,25 +26504,25 @@ #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:111 msgctxt "optimalcolwidthdialog|extended_tip|value" msgid "Defines additional spacing between the longest entry in a column and the vertical column borders." -msgstr "Legg til ekstra mellomrom mellom den lengste oppføringen i en kolonne og de loddrette kantlinjene rundt den." +msgstr "Legg til ekstra mellomrom mellom den lengste oppføringen i en kolonne og de vertikale kantlinjene rundt den." #. r7hJD #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:122 msgctxt "optimalcolwidthdialog|default" msgid "_Default value" -msgstr "_Standardverdi" +msgstr "Standardverdi" #. RMGd4 #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:131 msgctxt "optimalcolwidthdialog|extended_tip|default" msgid "Defines the optimal column width in order to display the entire contents of the column." -msgstr "" +msgstr "Definerer den optimale kolonnebredden for å vise hele innholdet i kolonnen." #. KssXT #: sc/uiconfig/scalc/ui/optimalcolwidthdialog.ui:162 msgctxt "optimalcolwidthdialog|extended_tip|OptimalColWidthDialog" msgid "Defines the optimal column width for selected columns." -msgstr "" +msgstr "Definerer den optimale kolonnebredden for utvalgte kolonner." #. QxNwS #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:8 @@ -26547,7 +26546,7 @@ #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:121 msgctxt "optimalrowheightdialog|default" msgid "_Default value" -msgstr "_Standardverdi" +msgstr "Standardverdi" #. vCDBD #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:130 @@ -26559,13 +26558,13 @@ #: sc/uiconfig/scalc/ui/optimalrowheightdialog.ui:161 msgctxt "optimalrowheightdialog|extended_tip|OptimalRowHeightDialog" msgid "Determines the optimal row height for the selected rows." -msgstr "" +msgstr "Bestemmer den optimale radhøyden for de valgte rader." #. AePrG #: sc/uiconfig/scalc/ui/optsortlists.ui:31 msgctxt "optsortlists|copy" msgid "_Copy" -msgstr "_Kopier" +msgstr "Kopier" #. FprUE #: sc/uiconfig/scalc/ui/optsortlists.ui:38 @@ -26577,7 +26576,7 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:57 msgctxt "optsortlists|copyfromlabel" msgid "Copy list _from:" -msgstr "Kopier liste _fra:" +msgstr "Kopier liste fra:" #. QEyMs #: sc/uiconfig/scalc/ui/optsortlists.ui:77 @@ -26589,13 +26588,13 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:107 msgctxt "optsortlists|listslabel" msgid "_Lists" -msgstr "_Lister" +msgstr "Lister" #. EBMmZ #: sc/uiconfig/scalc/ui/optsortlists.ui:121 msgctxt "optsortlists|entrieslabel" msgid "_Entries" -msgstr "_Oppføringer" +msgstr "Oppføringer" #. qqKLe #: sc/uiconfig/scalc/ui/optsortlists.ui:163 @@ -26613,7 +26612,7 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:213 msgctxt "optsortlists|new" msgid "_New" -msgstr "_Ny" +msgstr "Ny" #. uH79F #: sc/uiconfig/scalc/ui/optsortlists.ui:220 @@ -26625,13 +26624,13 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:232 msgctxt "optsortlists|discard" msgid "_Discard" -msgstr "_Forkast" +msgstr "Forkast" #. KiBRx #: sc/uiconfig/scalc/ui/optsortlists.ui:246 msgctxt "optsortlists|add" msgid "_Add" -msgstr "_Legg til" +msgstr "Legg til" #. pZWBh #: sc/uiconfig/scalc/ui/optsortlists.ui:253 @@ -26643,13 +26642,13 @@ #: sc/uiconfig/scalc/ui/optsortlists.ui:265 msgctxt "optsortlists|modify" msgid "Modif_y" -msgstr "_Endre" +msgstr "Endre" #. yN2Fo #: sc/uiconfig/scalc/ui/optsortlists.ui:279 msgctxt "optsortlists|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. FAswN #: sc/uiconfig/scalc/ui/optsortlists.ui:286 @@ -26835,43 +26834,43 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:185 msgctxt "pastespecial|extended_tip|paste_all" msgid "Pastes all cell contents, comments, formats, and objects into the current document." -msgstr "" +msgstr "Limerinn alt celleinnhold, kommentarer, formater og objekter i det nåværende dokumentet." #. BSEWE #: sc/uiconfig/scalc/ui/pastespecial.ui:197 msgctxt "pastespecial|text" msgid "Te_xt" -msgstr "_Tekst" +msgstr "Tekst" #. JWDk5 #: sc/uiconfig/scalc/ui/pastespecial.ui:206 msgctxt "pastespecial|extended_tip|text" msgid "Inserts cells containing text." -msgstr "" +msgstr "Setter inn celler som inneholder tekst." #. qzFbg #: sc/uiconfig/scalc/ui/pastespecial.ui:218 msgctxt "pastespecial|numbers" msgid "_Numbers" -msgstr "T_all" +msgstr "Tall" #. SCVEu #: sc/uiconfig/scalc/ui/pastespecial.ui:227 msgctxt "pastespecial|extended_tip|numbers" msgid "Inserts cells containing numbers." -msgstr "" +msgstr "Setter inn celler som inneholder tall." #. DBaJD #: sc/uiconfig/scalc/ui/pastespecial.ui:239 msgctxt "pastespecial|datetime" msgid "_Date & time" -msgstr "_Dato og klokkeslett" +msgstr "Dato og klokkeslett" #. jq6Md #: sc/uiconfig/scalc/ui/pastespecial.ui:248 msgctxt "pastespecial|extended_tip|datetime" msgid "Inserts cells containing date and time values." -msgstr "" +msgstr "Setter inn celler som inneholder dato og tidsverdier." #. MSe4m #: sc/uiconfig/scalc/ui/pastespecial.ui:260 @@ -26883,31 +26882,31 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:269 msgctxt "pastespecial|extended_tip|formulas" msgid "Inserts cells containing formulae." -msgstr "" +msgstr "Setter inn celler som inneholder formel." #. NT4Am #: sc/uiconfig/scalc/ui/pastespecial.ui:281 msgctxt "pastespecial|comments" msgid "_Comments" -msgstr "_Merknader" +msgstr "Merknader" #. 3uP7i #: sc/uiconfig/scalc/ui/pastespecial.ui:290 msgctxt "pastespecial|extended_tip|comments" msgid "Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation." -msgstr "" +msgstr "Setter inn kommentarer som er festet til celler. Hvis du vil legge til kommentarene til det eksisterende celleinnholdet, velger du \"Legg til\" -operasjonen." #. aHXF8 #: sc/uiconfig/scalc/ui/pastespecial.ui:302 msgctxt "pastespecial|formats" msgid "For_mats" -msgstr "F_ormater" +msgstr "Formater" #. ehyEf #: sc/uiconfig/scalc/ui/pastespecial.ui:311 msgctxt "pastespecial|extended_tip|formats" msgid "Inserts cell format attributes." -msgstr "" +msgstr "Setter innattributter for celleformat." #. Umb86 #: sc/uiconfig/scalc/ui/pastespecial.ui:323 @@ -26919,7 +26918,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:332 msgctxt "pastespecial|extended_tip|objects" msgid "Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects." -msgstr "" +msgstr "Setter inn objekter inneholdt i det valgte celleområdet. Disse kan være OLE-objekter, diagram-objekter eller tegne-objekter." #. gjnwU #: sc/uiconfig/scalc/ui/pastespecial.ui:350 @@ -26931,37 +26930,37 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:384 msgctxt "pastespecial|none" msgid "Non_e" -msgstr "_Ingen" +msgstr "Ingen" #. 7GKDG #: sc/uiconfig/scalc/ui/pastespecial.ui:394 msgctxt "pastespecial|extended_tip|none" msgid "Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents." -msgstr "" +msgstr "Påfører ikke en operasjon når du setter inn celleområdet fra utklippstavlen. Innholdet i utklippstavlen erstatter eksisterende celleinnhold." #. CEsbt #: sc/uiconfig/scalc/ui/pastespecial.ui:406 msgctxt "pastespecial|add" msgid "_Add" -msgstr "_Legg til" +msgstr "Legg til" #. bNyh2 #: sc/uiconfig/scalc/ui/pastespecial.ui:416 msgctxt "pastespecial|extended_tip|add" msgid "Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells." -msgstr "" +msgstr "Legger til verdiene i utklippstavlent tii verdiene i målcellene. Også, hvis utklippstavlen bare inneholder kommentarer, legges til kommentarene til målcellene." #. iFTvh #: sc/uiconfig/scalc/ui/pastespecial.ui:428 msgctxt "pastespecial|subtract" msgid "_Subtract" -msgstr "_Subtraher" +msgstr "Subtraher" #. 2SKbT #: sc/uiconfig/scalc/ui/pastespecial.ui:438 msgctxt "pastespecial|extended_tip|subtract" msgid "Subtracts the values in the clipboard cells from the values in the target cells." -msgstr "" +msgstr "Subtraherer verdiene i utklippstavlen fra verdiene i målcellene." #. pn4re #: sc/uiconfig/scalc/ui/pastespecial.ui:450 @@ -26973,7 +26972,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:460 msgctxt "pastespecial|extended_tip|multiply" msgid "Multiplies the values in the clipboard cells with the values in the target cells." -msgstr "" +msgstr "Multipliserer verdiene i utklippsbordet cellene med verdiene i målcellene." #. ND3Xd #: sc/uiconfig/scalc/ui/pastespecial.ui:472 @@ -26985,7 +26984,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:482 msgctxt "pastespecial|extended_tip|divide" msgid "Divides the values in the target cells by the values in the clipboard cells." -msgstr "" +msgstr "Dividerer verdiene i målcellene med verdiene i utklippstavlen." #. 9otLM #: sc/uiconfig/scalc/ui/pastespecial.ui:500 @@ -27009,7 +27008,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:544 msgctxt "pastespecial|extended_tip|skip_empty" msgid "Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the \"Multiply\" or the \"Divide\" operation, the operation is not applied to the target cell of an empty cell in the clipboard." -msgstr "" +msgstr "Tomme celler fra utklippstavlen erstatter ikke målceller. Hvis du bruker dette alternativet i forbindelse med \"Ganger\" eller \"Del\" -operasjonen, blir operasjonen ikke påført målcellen i en tom celle i utklippstavlen." #. aDeKR #: sc/uiconfig/scalc/ui/pastespecial.ui:556 @@ -27021,7 +27020,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:565 msgctxt "pastespecial|extended_tip|transpose" msgid "The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows." -msgstr "" +msgstr "Rorene i området i utklippstavlen er limet for å bli kolonner i utgangsområdet. Kolonnene i området i utklippstavlen er limet for å bli rader." #. eJ6zh #: sc/uiconfig/scalc/ui/pastespecial.ui:577 @@ -27033,7 +27032,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:586 msgctxt "pastespecial|extended_tip|link" msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected." -msgstr "" +msgstr "Setter inn celleområdet som en lenke, slik at endringer som er gjort i cellene i kildefilen, oppdateres i målfilen. For å sikre at endringer som er gjort i tomme celler i kildefilen, er oppdatert i målfilen, må du kontrollere at alternativet \"Lim inn alt\" velges." #. HCco8 #: sc/uiconfig/scalc/ui/pastespecial.ui:604 @@ -27045,13 +27044,13 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:638 msgctxt "pastespecial|no_shift" msgid "Don't sh_ift" -msgstr "_Ikke flytt" +msgstr "Ikke flytt" #. q3Xv3 #: sc/uiconfig/scalc/ui/pastespecial.ui:648 msgctxt "pastespecial|extended_tip|no_shift" msgid "Inserted cells replace the target cells." -msgstr "" +msgstr "Innsatte celler erstatter målcellene." #. 4HpJ2 #: sc/uiconfig/scalc/ui/pastespecial.ui:660 @@ -27063,19 +27062,19 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:670 msgctxt "pastespecial|extended_tip|move_down" msgid "Target cells are shifted downward when you insert cells from the clipboard." -msgstr "" +msgstr "Målceller flyttes nedover når du setter inn celler fra utklippstavlen." #. obSAt #: sc/uiconfig/scalc/ui/pastespecial.ui:682 msgctxt "pastespecial|move_right" msgid "_Right" -msgstr "_Høyre" +msgstr "Høyre" #. GEFe7 #: sc/uiconfig/scalc/ui/pastespecial.ui:692 msgctxt "pastespecial|extended_tip|move_right" msgid "Target cells are shifted to the right when you insert cells from the clipboard." -msgstr "" +msgstr "Målceller skiftes til høyre når du setter inn celler fra utklippstavlen." #. fzYTm #: sc/uiconfig/scalc/ui/pastespecial.ui:710 @@ -27099,7 +27098,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:34 msgctxt "pivotfielddialog|options" msgid "_Options..." -msgstr "_Valg …" +msgstr "Valg …" #. G7ky9 #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:41 @@ -27111,13 +27110,13 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:140 msgctxt "pivotfielddialog|none" msgid "_None" -msgstr "I_ngen" +msgstr "Ingen" #. ABmZC #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:157 msgctxt "pivotfielddialog|auto" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. mHvW7 #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:173 @@ -27129,7 +27128,7 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:222 msgctxt "pivotfielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "" +msgstr "Klikk på typen av subtotal du vil beregne. Dette alternativet er bare tilgjengelig hvis alternativet Brukerdefinert er valgt." #. vDXUZ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:241 @@ -27141,13 +27140,13 @@ #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:255 msgctxt "pivotfielddialog|showall" msgid "Show it_ems without data" -msgstr "Vis elementer _uten data" +msgstr "Vis elementer uten data" #. 7GAbs #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:264 msgctxt "pivotfielddialog|extended_tip|showall" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "Inkluderer tomme kolonner og rader i resultatstabellen." #. aUWEK #: sc/uiconfig/scalc/ui/pivotfielddialog.ui:283 @@ -27177,7 +27176,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:116 msgctxt "pivotfilterdialog|extended_tip|connect1" msgid "Select a logical operator for the filter." -msgstr "" +msgstr "Velg en logisk operator for filteret." #. TW6Uf #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:130 @@ -27195,7 +27194,7 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:135 msgctxt "pivotfilterdialog|extended_tip|connect2" msgid "Select a logical operator for the filter." -msgstr "" +msgstr "Velg en logisk operator for filteret." #. rDPh7 #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:148 @@ -27225,55 +27224,55 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:197 msgctxt "pivotfilterdialog|extended_tip|field1" msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed." -msgstr "" +msgstr "Velg feltet du vil bruke i filteret. Hvis feltnavn ikke er tilgjengelige, er kolonnemerkene oppført." #. mDaxf #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:215 msgctxt "pivotfilterdialog|extended_tip|field2" msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed." -msgstr "" +msgstr "Velg feltet du vil bruke i filteret. Hvis feltnavn ikke er tilgjengelige, er kolonnemerkene oppført." #. 3N44y #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:233 msgctxt "pivotfilterdialog|extended_tip|field3" msgid "Select the field that you want to use in the filter. If field names are not available, the column labels are listed." -msgstr "" +msgstr "Velg feltet du vil bruke i filteret. Hvis feltnavn ikke er tilgjengelige, er kolonnemerkene oppført." #. jTLFv #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:259 msgctxt "pivotfilterdialog|extended_tip|cond1" msgid "Select an operator to compare the Field name and Value entries." -msgstr "" +msgstr "Velg en operator for å sammenligne feltnavnet og verdioppføringer." #. LW6w7 #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:285 msgctxt "pivotfilterdialog|extended_tip|cond2" msgid "Select an operator to compare the Field name and Value entries." -msgstr "" +msgstr "Velg en operator for å sammenligne feltnavnet og verdioppføringer." #. vhSZ7 #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:311 msgctxt "pivotfilterdialog|extended_tip|cond3" msgid "Select an operator to compare the Field name and Value entries." -msgstr "" +msgstr "Velg en operator for å sammenligne feltnavnet og verdioppføringer." #. dDii2 #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:338 msgctxt "pivotfilterdialog|extended_tip|val1" msgid "Select the value that you want to compare to the selected field." -msgstr "" +msgstr "Velg en operator for å sammenligne feltnavnet og verdioppføringer." #. BiRxu #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:365 msgctxt "pivotfilterdialog|extended_tip|val2" msgid "Select the value that you want to compare to the selected field." -msgstr "" +msgstr "Velg en verdi for å sammenligne feltet." #. oWXWk #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:392 msgctxt "pivotfilterdialog|extended_tip|val3" msgid "Select the value that you want to compare to the selected field." -msgstr "" +msgstr "Velg en verdi for å sammenligne feltet." #. 9X5GC #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:412 @@ -27285,37 +27284,37 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:452 msgctxt "pivotfilterdialog|case" msgid "_Case sensitive" -msgstr "_Skill mellom store og små bokstaver" +msgstr "Skill mellom store og små bokstaver" #. nENeC #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:462 msgctxt "pivotfilterdialog|extended_tip|case" msgid "Distinguishes between uppercase and lowercase letters." -msgstr "" +msgstr "Skiller mellom store og små bokstaver" #. ECBBQ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:473 msgctxt "pivotfilterdialog|regexp" msgid "Regular _expressions" -msgstr "Regulære _uttrykk" +msgstr "Regulære uttrykk" #. MB4Ab #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:483 msgctxt "pivotfilterdialog|extended_tip|regexp" msgid "Allows you to use regular expressions in the filter definition." -msgstr "" +msgstr "Lar deg bruke regulære uttrykk i filterdefinisjonen." #. cirEo #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:494 msgctxt "pivotfilterdialog|unique" msgid "_No duplications" -msgstr "_Ingen duplikater" +msgstr "Ingen duplikater" #. QCGpa #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:504 msgctxt "pivotfilterdialog|extended_tip|unique" msgid "Excludes duplicate rows in the list of filtered data." -msgstr "Utelater like rader lista over filtrerte data." +msgstr "Utelater like rader I listen over filtrerte data." #. GcFuF #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:532 @@ -27333,13 +27332,13 @@ #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:549 msgctxt "pivotfilterdialog|extended_tip|dbarea" msgid "Displays the name of the filtered data range in the table." -msgstr "" +msgstr "Viser navnet på det filtrerte dataområdet i tabellen." #. SxeCx #: sc/uiconfig/scalc/ui/pivotfilterdialog.ui:570 msgctxt "pivotfilterdialog|label6" msgid "Op_tions" -msgstr "_Valg" +msgstr "Valg" #. ztfNB #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:48 @@ -27369,7 +27368,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:215 msgctxt "pivottablelayoutdialog|extended_tip|listbox-column" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas." -msgstr "" +msgstr "For å definere utformingen av en pivottabell, dra og slipp datafeltknapper på sidelinjen, radfelt, kolonnefelt og datafeltområder." #. WWrpy #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:246 @@ -27381,7 +27380,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:297 msgctxt "pivottablelayoutdialog|extended_tip|listbox-data" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas." -msgstr "" +msgstr "For å definere utformingen av en pivottabell, dra og slipp datafeltknapper på sidelinjen, radfelt, kolonnefelt og datafeltområder." #. BhTuC #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:328 @@ -27393,7 +27392,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:377 msgctxt "pivottablelayoutdialog|extended_tip|listbox-row" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas." -msgstr "" +msgstr "For å definere utformingen av en pivottabell, dra og slipp datafeltknapper på sidelinjen, radfelt, kolonnefelt og datafeltområder." #. 4XvEh #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:408 @@ -27405,7 +27404,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:459 msgctxt "pivottablelayoutdialog|extended_tip|listbox-page" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas." -msgstr "" +msgstr "For å definere utformingen av en pivottabell, dra og slipp datafeltknapper på sidelinjen, radfelt, kolonnefelt og datafeltområder." #. Scoht #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:496 @@ -27417,7 +27416,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:546 msgctxt "pivottablelayoutdialog|extended_tip|listbox-fields" msgid "To define the layout of a pivot table, drag and drop data field buttons onto the Page Fields, Row Fields, Column Fields, and Data Fields areas." -msgstr "" +msgstr "For å definere utformingen av en pivottabell, dra og slipp datafeltknapper på sidelinjen, radfelt, kolonnefelt og datafeltområder." #. BL7Ff #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:577 @@ -27447,7 +27446,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:634 msgctxt "pivottablelayoutdialog|extended_tip|check-identify-categories" msgid "Automatically assigns rows without labels to the category of the row above." -msgstr "" +msgstr "Tilordnes automatisk rader uten etiketter til kategorien av raden ovenfor." #. U6pzh #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:645 @@ -27459,7 +27458,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:654 msgctxt "pivottablelayoutdialog|extended_tip|check-total-rows" msgid "Calculates and displays the grand total of the row calculation." -msgstr "Regner ut og viser summen av radberegninga." +msgstr "Regner ut og viser summen av radberegningen." #. Br8BE #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:665 @@ -27471,7 +27470,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:674 msgctxt "pivottablelayoutdialog|extended_tip|check-total-columns" msgid "Calculates and displays the grand total of the column calculation." -msgstr "Regner ut og viser summen av kolonneberegninga." +msgstr "Regner ut og viser summen av kolonneberegningen." #. VXEdh #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:685 @@ -27483,7 +27482,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:694 msgctxt "pivottablelayoutdialog|extended_tip|check-add-filter" msgid "Adds a Filter button to pivot tables that are based on spreadsheet data." -msgstr "" +msgstr "Legger til en filterknapp for å dreie tabeller som er basert på regnearkdata." #. ud4H8 #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:705 @@ -27519,7 +27518,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:820 msgctxt "pivottablelayoutdialog|extended_tip|destination-edit" msgid "Select the area where you want to display the results of the pivot table." -msgstr "" +msgstr "Velg området der du vil vise resultatene av pivot-tabellen." #. WEQjx #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:836 @@ -27531,7 +27530,7 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:851 msgctxt "pivottablelayoutdialog|extended_tip|destination-list" msgid "Select the area where you want to display the results of the pivot table." -msgstr "" +msgstr "Velg området der du vil vise resultatene av pivot-tabellen." #. UjyGK #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:863 @@ -27555,13 +27554,13 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:943 msgctxt "pivottablelayoutdialog|extended_tip|source-edit" msgid "Select the area that contains the data for the current pivot table." -msgstr "" +msgstr "Velg området som inneholder dataene for gjeldende pivot-tabell." #. uq7zD #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:959 msgctxt "pivottablelayoutdialog|extended_tip|source-button" msgid "Select the area that contains the data for the current pivot table." -msgstr "" +msgstr "Velg området som inneholder dataene for gjeldende pivot-tabell." #. 6s5By #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:970 @@ -27585,13 +27584,13 @@ #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1030 msgctxt "pivottablelayoutdialog|extended_tip|more" msgid "Displays or hides additional options for defining the pivot table." -msgstr "" +msgstr "Viser eller skjuler flere alternativer for å definere pivot-tabellen." #. rSsEg #: sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui:1056 msgctxt "pivottablelayoutdialog|extended_tip|PivotTableLayout" msgid "Specify the layout of the table that is generated by the pivot table." -msgstr "" +msgstr "Angi utformingen av bordet som genereres av pivot-tabellen." #. bzj3c #: sc/uiconfig/scalc/ui/printareasdialog.ui:8 @@ -27663,7 +27662,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:226 msgctxt "printareasdialog|extended_tip|edrepeatrow" msgid "Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\"." -msgstr "" +msgstr "Velg en eller flere rader som skal skrives ut på hver side. I høyre tekstboks Angi radreferansen, for eksempel \"1\" eller \"$ 1\" eller \"$ 2: $ 3\"." #. J22Vh #: sc/uiconfig/scalc/ui/printareasdialog.ui:245 @@ -27687,7 +27686,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:264 msgctxt "printareasdialog|extended_tip|lbrepeatrow" msgid "Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\"." -msgstr "" +msgstr "Velg en eller flere rader som skal skrives ut på hver side. I høyre tekstboks Angi radreferansen, for eksempel \"1\" eller \"$ 1\" eller \"$ 2: $ 3\"." #. EFCSq #: sc/uiconfig/scalc/ui/printareasdialog.ui:281 @@ -27699,7 +27698,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:326 msgctxt "printareasdialog|extended_tip|edrepeatcol" msgid "Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\"." -msgstr "" +msgstr "Velg en eller flere kolonner som skal skrives ut på hver side. I høyre tekstboks Angi kolonnereferansen, for eksempel \"A\" eller \"AB\" eller \"$ C: $ E\"." #. MG6GD #: sc/uiconfig/scalc/ui/printareasdialog.ui:345 @@ -27723,7 +27722,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:364 msgctxt "printareasdialog|extended_tip|lbrepeatcol" msgid "Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\"." -msgstr "" +msgstr "Velg en eller flere kolonner som skal skrives ut på hver side. I høyre tekstboks Angi kolonnereferansen, for eksempel \"A\" eller \"AB\" eller \"$ C: $ E\"." #. Ushqp #: sc/uiconfig/scalc/ui/printareasdialog.ui:381 @@ -27759,19 +27758,19 @@ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:106 msgctxt "protectsheetdlg|protect" msgid "P_rotect this sheet and the contents of protected cells" -msgstr "_Beskytt dette arket og innholdet i de låste cellene" +msgstr "Beskytt dette arket og innholdet i de låste cellene" #. MvZAZ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:133 msgctxt "protectsheetdlg|label1" msgid "_Password:" -msgstr "_Passord:" +msgstr "Passord:" #. sBBwy #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:148 msgctxt "protectsheetdlg|label2" msgid "_Confirm:" -msgstr "_Bekreft:" +msgstr "Bekreft:" #. 7ccwU #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:216 @@ -27783,7 +27782,7 @@ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:294 msgctxt "protectsheetdlg|protected" msgid "Select protected cells" -msgstr "Velg beskytta celler" +msgstr "Velg beskyttede celler" #. qQhAG #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:306 @@ -27819,7 +27818,7 @@ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:395 msgctxt "protectsheetdlg|extended_tip|ProtectSheetDialog" msgid "Protects the cells in the current sheet from being modified." -msgstr "" +msgstr "Beskytter cellene i det nåværende arket fra å bli endret." #. 3n2mh #: sc/uiconfig/scalc/ui/queryrunstreamscriptdialog.ui:13 @@ -27831,7 +27830,7 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:31 msgctxt "randomnumbergenerator|RandomNumberGeneratorDialog" msgid "Random Number Generator" -msgstr "Generator for tilfeldige tall" +msgstr "Generator for slumpmessige tall" #. EG6VJ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:137 @@ -27843,7 +27842,7 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:159 msgctxt "randomnumbergenerator|extended_tip|cell-range-edit" msgid "Define the range of cells to fill with random numbers. If you have previously selected a range, it will be displayed here." -msgstr "Definer celleområdet som skal fylles med tilfeldige tall. Hvis du tidligere har valgt et område, vil det bli vist her." +msgstr "Definer celleområdet som skal fylles med slumpmessige tall. Hvis du tidligere har valgt et område, vil det bli vist her." #. Jy5mE #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:189 @@ -27915,7 +27914,7 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:256 msgctxt "randomnumbergenerator|extended_tip|distribution-combo" msgid "The distribution function for the random number generator." -msgstr "Fordelingsfunksjonen for generering av tilfeldige tall." +msgstr "Fordelingsfunksjonen for generering av slumpmessige tall." #. vMADv #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:270 @@ -27933,7 +27932,7 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:336 msgctxt "randomnumbergenerator|label2" msgid "Random Number Generator" -msgstr "Generator for tilfeldige tall" +msgstr "Generator for slumpmessige tall" #. DAFgG #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:372 @@ -27957,7 +27956,7 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:416 msgctxt "randomnumbergenerator|extended_tip|seed-spin" msgid "Value set to initiate the random number generator algorithm. It is used to initialize (seed) the random number generator in order to reproduce the same sequence of pseudorandom numbers. Specify a positive integer number (1, 2, ...) to produce a specific sequence, or leave the field blank if you don't need this particular feature." -msgstr "dette er en verdi som slumpgeneratoren bruker som utgangspunkt for å lage den samme sekvensen av pseudotilfeldige tall. Angi et positivt heltallnummer (1, 2, ...) for å lage en bestemt sekvens, eller la feltet være tomt hvis du ikke trenger denne spesifikke funksjonen." +msgstr "Dette er en verdi som slumpgeneratoren bruker som utgangspunkt for å lage den samme sekvensen av pseudotilfeldige tall. Angi et positivt heltallnummer (1, 2, ...) for å lage en bestemt sekvens, eller la feltet være tomt hvis du ikke trenger denne spesifikke funksjonen." #. sEjpT #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:427 @@ -27993,13 +27992,13 @@ #: sc/uiconfig/scalc/ui/randomnumbergenerator.ui:517 msgctxt "randomnumbergenerator|extended_tip|RandomNumberGeneratorDialog" msgid "Populate a cell range with automatically generated pseudo random numbers with the selected distribution function and its parameters." -msgstr "Populere et celleområde med automatisk genererte pseudo-tilfeldige tall med den valgte distribusjonsfunksjonen og dens parametere." +msgstr "Populere et celleområde med automatisk genererte pseudo-slump tall med den valgte distribusjonsfunksjonen og dens parametere." #. kbBoD #: sc/uiconfig/scalc/ui/recalcquerydialog.ui:30 msgctxt "recalcquerydialog|ask" msgid "Always perform this without prompt in the future." -msgstr "Ikke spør om å gjøre dette i framtida." +msgstr "Ikke spør om å gjøre dette i framtiden." #. YJJFq #: sc/uiconfig/scalc/ui/regressiondialog.ui:14 @@ -28107,7 +28106,7 @@ #: sc/uiconfig/scalc/ui/regressiondialog.ui:549 msgctxt "regressiondialog|extended_tip|RegressionDialog" msgid "Produces the regression analysis of a data set" -msgstr "" +msgstr "Gjør en regresjonsanalyse av et datasett" #. LEWRz #: sc/uiconfig/scalc/ui/replacenulltransformationentry.ui:22 @@ -28143,7 +28142,7 @@ #: sc/uiconfig/scalc/ui/retypepassdialog.ui:96 msgctxt "retypepassdialog|descLabel" msgid "The document you are about to export has one or more protected items with password that cannot be exported. Please re-type your password to be able to export your document." -msgstr "Dokumentet som skal eksporteres har en eller flere passordbeskytta oppføringer, disse kan ikke eksporteres. Skriv inn passordet på nytt for å eksportere dokumentet." +msgstr "Dokumentet som skal eksporteres har en eller flere passordbeskyttede oppføringer, disse kan ikke eksporteres. Skriv inn passordet på nytt for å eksportere dokumentet." #. DGfRA #: sc/uiconfig/scalc/ui/retypepassdialog.ui:128 @@ -28155,43 +28154,43 @@ #: sc/uiconfig/scalc/ui/retypepassdialog.ui:138 msgctxt "retypepassdialog|retypeDocButton" msgid "_Re-type" -msgstr "_Gjenta" +msgstr "Gjenta" #. gdBXs #: sc/uiconfig/scalc/ui/retypepassdialog.ui:158 msgctxt "retypepassdialog|label2" msgid "Document Protection" -msgstr "" +msgstr "Dokumentbeskyttelse" #. TriyK #: sc/uiconfig/scalc/ui/retypepassdialog.ui:221 msgctxt "retypepassdialog|label3" msgid "Sheet Protection" -msgstr "" +msgstr "Arkbeskyttelse" #. eGMrC #: sc/uiconfig/scalc/ui/retypepassworddialog.ui:8 msgctxt "retypepassworddialog|RetypePasswordDialog" msgid "Re-type Password" -msgstr "Skriv inn passordet _en gang til" +msgstr "Skriv inn passordet en gang til" #. ZvhnQ #: sc/uiconfig/scalc/ui/retypepassworddialog.ui:87 msgctxt "retypepassworddialog|retypepassword" msgid "Re-type password" -msgstr "Skriv inn passordet _en gang til" +msgstr "Skriv inn passordet en gang til" #. ZPR7e #: sc/uiconfig/scalc/ui/retypepassworddialog.ui:151 msgctxt "retypepassworddialog|label4" msgid "Pa_ssword:" -msgstr "_Passord:" +msgstr "Passord:" #. VgQFk #: sc/uiconfig/scalc/ui/retypepassworddialog.ui:165 msgctxt "retypepassworddialog|label5" msgid "Confi_rm:" -msgstr "_Bekreft:" +msgstr "Bekreft:" #. DrKUe #: sc/uiconfig/scalc/ui/retypepassworddialog.ui:177 @@ -28251,13 +28250,13 @@ #: sc/uiconfig/scalc/ui/rowheightdialog.ui:121 msgctxt "rowheightdialog|default" msgid "_Default value" -msgstr "_Standardverdi" +msgstr "Standardverdi" #. stFFG #: sc/uiconfig/scalc/ui/rowheightdialog.ui:130 msgctxt "rowheightdialog|extended_tip|default" msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents." -msgstr "" +msgstr "Justerer radhøyden til størrelsen basert på standardmalen. Eksisterende innhold kan bli vist vertikalt beskåret. Høyden øker ikke lenger automatisk når du skriver inn større innhold." #. qEa9T #: sc/uiconfig/scalc/ui/rowheightdialog.ui:161 @@ -28269,7 +28268,7 @@ #: sc/uiconfig/scalc/ui/samplingdialog.ui:20 msgctxt "samplingdialog|SamplingDialog" msgid "Sampling" -msgstr "Prøvetaking" +msgstr "Prøvetaging" #. E5wq9 #: sc/uiconfig/scalc/ui/samplingdialog.ui:113 @@ -28335,7 +28334,7 @@ #: sc/uiconfig/scalc/ui/samplingdialog.ui:397 msgctxt "samplingdialog|extended_tip|SamplingDialog" msgid "Create a table with data sampled from another table." -msgstr "" +msgstr "Lag et bord med data hentet fra en annen tabell." #. WMPmE #: sc/uiconfig/scalc/ui/scenariodialog.ui:8 @@ -28347,7 +28346,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:110 msgctxt "scenariodialog|extended_tip|name" msgid "Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario." -msgstr "" +msgstr "Definerer navnet på scenariet. Bruk et klart og unikt navn, slik at du enkelt kan identifisere scenariet." #. xwJe3 #: sc/uiconfig/scalc/ui/scenariodialog.ui:121 @@ -28359,7 +28358,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:170 msgctxt "scenariodialog|extended_tip|comment" msgid "Specifies additional information about the scenario. This information will be displayed in the Navigator when you click the Scenarios icon and select the desired scenario." -msgstr "" +msgstr "Angir ytterligere informasjon om scenariet. Denne informasjonen vil bli vist i Navigator når du klikker på scenari-ikonet og velger ønsket scenario." #. X9GgG #: sc/uiconfig/scalc/ui/scenariodialog.ui:185 @@ -28371,7 +28370,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:220 msgctxt "scenariodialog|copyback" msgid "Copy _back" -msgstr "Kopier _tilbake" +msgstr "Kopier tilbake" #. AFrxj #: sc/uiconfig/scalc/ui/scenariodialog.ui:229 @@ -28383,11 +28382,10 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:240 msgctxt "scenariodialog|copysheet" msgid "Copy _entire sheet" -msgstr "Kopier _hele arket" +msgstr "Kopier hele arket" #. awzT2 #: sc/uiconfig/scalc/ui/scenariodialog.ui:249 -#, fuzzy msgctxt "scenariodialog|extended_tip|copysheet" msgid "Copies the entire sheet into an additional scenario sheet." msgstr "Kopier hele regnearket til et ekstra scenarie-regneark." @@ -28396,7 +28394,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:260 msgctxt "scenariodialog|preventchanges" msgid "_Prevent changes" -msgstr "_Hindre endringer" +msgstr "Hindre endringer" #. QJLrA #: sc/uiconfig/scalc/ui/scenariodialog.ui:269 @@ -28408,19 +28406,19 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:286 msgctxt "scenariodialog|showframe" msgid "_Display border" -msgstr "Vis _kantlinje" +msgstr "Vis kantlinje" #. NuN3J #: sc/uiconfig/scalc/ui/scenariodialog.ui:298 msgctxt "scenariodialog|extended_tip|showframe" msgid "Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option." -msgstr "" +msgstr "Fremhever scenariet i bordet ditt med en kantlinje. Fargen til kantlinjen er spesifisert i feltet til høyre for dette alternativet." #. cTLu7 #: sc/uiconfig/scalc/ui/scenariodialog.ui:323 msgctxt "scenariodialog|extended_tip|bordercolor" msgid "Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option." -msgstr "" +msgstr "Fremhever scenariet i bordet ditt med en kantlinje. Fargen til kantlinjen er spesifisert i feltet til høyre for dette alternativet." #. R8AVm #: sc/uiconfig/scalc/ui/scenariodialog.ui:346 @@ -28450,7 +28448,7 @@ #: sc/uiconfig/scalc/ui/scenariodialog.ui:422 msgctxt "scenariodialog|extended_tip|ScenarioDialog" msgid "Defines a scenario for the selected sheet area." -msgstr "" +msgstr "Definerer et scenario for det valgte arkområdet." #. 9fG2A #: sc/uiconfig/scalc/ui/scenariomenu.ui:12 @@ -28480,13 +28478,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:41 msgctxt "scgeneralpage|label4" msgid "Measurement _unit:" -msgstr "_Måleenhet:" +msgstr "Måleenhet:" #. qfwjd #: sc/uiconfig/scalc/ui/scgeneralpage.ui:55 msgctxt "scgeneralpage|label5" msgid "_Tab stops:" -msgstr "_Tabulatorer:" +msgstr "Tabulatorer:" #. akEMb #: sc/uiconfig/scalc/ui/scgeneralpage.ui:74 @@ -28516,13 +28514,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:156 msgctxt "scgeneralpage|requestrb" msgid "_On request" -msgstr "_På forespørsel" +msgstr "På forespørsel" #. AESok #: sc/uiconfig/scalc/ui/scgeneralpage.ui:174 msgctxt "scgeneralpage|neverrb" msgid "_Never" -msgstr "_Aldri" +msgstr "Aldri" #. GDxLR #: sc/uiconfig/scalc/ui/scgeneralpage.ui:198 @@ -28546,25 +28544,25 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:254 msgctxt "scgeneralpage|formatcb" msgid "Expand _formatting" -msgstr "Utvid _formatering" +msgstr "Utvid formatering" #. 8fqgH #: sc/uiconfig/scalc/ui/scgeneralpage.ui:263 msgctxt "extended_tip|formatcb" msgid "Specifies whether to automatically apply the formatting attributes of the selected cell to the empty adjacent cells." -msgstr "Angir om formateringsegenskapene til den valgte cella automatisk skal brukes på tomme naboceller." +msgstr "Angir om formateringsegenskapene til den valgte cellen automatisk skal brukes på tomme naboceller." #. AzkVC #: sc/uiconfig/scalc/ui/scgeneralpage.ui:275 msgctxt "scgeneralpage|exprefcb" msgid "Expand _references when new columns/rows are inserted" -msgstr "Utvid _referanser når det blir satt inn nye kolonner/rader" +msgstr "Utvid referanser når det blir satt inn nye kolonner/rader" #. yybGX #: sc/uiconfig/scalc/ui/scgeneralpage.ui:284 msgctxt "extended_tip|exprefcb" msgid "Specifies whether to expand references when inserting columns or rows adjacent to the reference range. This is only possible if the reference range, where the column or row is inserted, originally spanned at least two cells in the desired direction." -msgstr "Angir om referansene skal utvides når kolonner eller rader settes inn ved siden av referanseområdet. Dette er bare mulig hvis referanseområdet der kolonnen eller raden settes inn, opprinnelig gikk over minst to celler i den ønskede retninga." +msgstr "Angir om referansene skal utvides når kolonner eller rader settes inn ved siden av referanseområdet. Dette er bare mulig hvis referanseområdet der kolonnen eller raden settes inn, opprinnelig gikk over minst to celler i den ønskede retningen." #. 6oRpB #: sc/uiconfig/scalc/ui/scgeneralpage.ui:301 @@ -28600,7 +28598,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:319 msgctxt "scgeneralpage|aligncb" msgid "Press Enter to _move selection" -msgstr "Trykk Enter for å _flytte utvalget" +msgstr "Trykk Enter for å flytte utvalget" #. UStnu #: sc/uiconfig/scalc/ui/scgeneralpage.ui:334 @@ -28612,7 +28610,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:343 msgctxt "extended_tip|legacy_cell_selection_cb" msgid "With the option set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column that was added as last to the initial selection. When the option is not set, expanding a selection (with Ctrl + Shift + Down/Up) jumps to the end of the range in the column where selecting the cell range was started. The same of course applies when extending a selection on rows, with Ctrl + Shift + Left/Right." -msgstr "" +msgstr "Med alternativet Sett, utvider et valg (med CTRL + SHIFT + DOWN / UP) til slutten av området i kolonnen som ble lagt til som sist til det opprinnelige valget. Når alternativet ikke er satt, hopper ekspandering (med CTRL + SHIFT + DOWN / UP) til enden av området i kolonnen der det ble startet å velge celleområdet. Det samme gjelder selvfølgelig når du utvider et utvalg på rader, med CTRL + SHIFT + venstre / høyre." #. S2fGF #: sc/uiconfig/scalc/ui/scgeneralpage.ui:355 @@ -28624,13 +28622,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:364 msgctxt "extended_tip|replwarncb" msgid "Specifies that, when you paste cells from the clipboard to a cell range that is not empty, a warning appears." -msgstr "Angir at det skal vises en advarsel når du limer inn celler fra utklippstavla til et celleområde som ikke er tomt." +msgstr "Angir at det skal vises en advarsel når du limer inn celler fra utklippstavlen til et celleområde som ikke er tomt." #. H477x #: sc/uiconfig/scalc/ui/scgeneralpage.ui:376 msgctxt "scgeneralpage|enter_paste_mode_cb" msgid "Press Enter to paste and clear clipboard" -msgstr "" +msgstr "Trykk ENTER for å lime inn og tømme utklippstavlen" #. LFenu #: sc/uiconfig/scalc/ui/scgeneralpage.ui:392 @@ -28648,7 +28646,7 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:412 msgctxt "scgeneralpage|markhdrcb" msgid "Highlight sele_ction in column/row headers" -msgstr "Uthev _markering i kolonne-/radoverskrifter" +msgstr "Uthev markering i kolonne-/radoverskrifter" #. payBv #: sc/uiconfig/scalc/ui/scgeneralpage.ui:421 @@ -28714,13 +28712,13 @@ #: sc/uiconfig/scalc/ui/selectdatasource.ui:101 msgctxt "selectdatasource|label2" msgid "_Database:" -msgstr "_Database:" +msgstr "Database:" #. FUXnG #: sc/uiconfig/scalc/ui/selectdatasource.ui:115 msgctxt "selectdatasource|label4" msgid "_Type:" -msgstr "_Type:" +msgstr "Type:" #. C2J5p #: sc/uiconfig/scalc/ui/selectdatasource.ui:132 @@ -28756,13 +28754,13 @@ #: sc/uiconfig/scalc/ui/selectdatasource.ui:154 msgctxt "selectdatasource|extended_tip|type" msgid "Click the source type of for the selected data source." -msgstr "" +msgstr "Klikk på kildetypen for den valgte datakilden." #. 3tKUG #: sc/uiconfig/scalc/ui/selectdatasource.ui:167 msgctxt "selectdatasource|label3" msgid "Data so_urce:" -msgstr "Data_kilde:" +msgstr "Datakilde:" #. 7hEo7 #: sc/uiconfig/scalc/ui/selectdatasource.ui:192 @@ -28798,7 +28796,7 @@ #: sc/uiconfig/scalc/ui/selectrange.ui:170 msgctxt "selectrange|extended_tip|SelectRangeDialog" msgid "Selects a database range that you defined under Data - Define Range." -msgstr "" +msgstr "Velger et databaseområde som du definerte under Data - Definer område." #. EzRBz #: sc/uiconfig/scalc/ui/selectsource.ui:8 @@ -28810,43 +28808,43 @@ #: sc/uiconfig/scalc/ui/selectsource.ui:104 msgctxt "selectsource|namedrange" msgid "_Named range:" -msgstr "_Navngitt område:" +msgstr "Navngitt område:" #. ECBru #: sc/uiconfig/scalc/ui/selectsource.ui:146 msgctxt "selectsource|selection" msgid "_Current selection" -msgstr "_Merket område" +msgstr "Merket område" #. gBdW4 #: sc/uiconfig/scalc/ui/selectsource.ui:156 msgctxt "selectsource|extended_tip|selection" msgid "Uses the selected cells as the data source for the pivot table." -msgstr "" +msgstr "Bruker de valgte cellene som datakilde for pivot-tabellen." #. gsMej #: sc/uiconfig/scalc/ui/selectsource.ui:168 msgctxt "selectsource|database" msgid "_Data source registered in %PRODUCTNAME" -msgstr "_Datakilde registrert i %PRODUCTNAME" +msgstr "Datakilde registrert i %PRODUCTNAME" #. whAZ5 #: sc/uiconfig/scalc/ui/selectsource.ui:178 msgctxt "selectsource|extended_tip|database" msgid "Uses a table or query in a database that is registered in %PRODUCTNAME as the data source for the pivot table." -msgstr "" +msgstr "Bruker en tabell eller spørringen i en database som er registrert i %ProductName som datakilde for pivot-tabellen." #. ZDghg #: sc/uiconfig/scalc/ui/selectsource.ui:190 msgctxt "selectsource|external" msgid "_External source/interface" -msgstr "_Ekstern kilde/grensesnitt" +msgstr "Ekstern kilde/grensesnitt" #. S9LNt #: sc/uiconfig/scalc/ui/selectsource.ui:200 msgctxt "selectsource|extended_tip|external" msgid "Opens the External Source dialog where you can select the OLAP data source for the pivot table." -msgstr "" +msgstr "Åpner dialogboksen Ekstern kilde der du kan velge OLAP datakilde for pivot-tabellen." #. 8ZtBt #: sc/uiconfig/scalc/ui/selectsource.ui:218 @@ -28858,7 +28856,7 @@ #: sc/uiconfig/scalc/ui/selectsource.ui:240 msgctxt "selectsource|extended_tip|SelectSourceDialog" msgid "Opens a dialog where you can select the source for your pivot table, and then create your table." -msgstr "" +msgstr "Åpner en dialogboks hvor du kan velge kilden til pivot-tabellen, og deretter skape tabellen." #. DEDQP #: sc/uiconfig/scalc/ui/sharedfooterdialog.ui:8 @@ -28918,7 +28916,7 @@ #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:106 msgctxt "sharedocumentdlg|share" msgid "_Share this spreadsheet with other users" -msgstr "_Del dette regnearket med andre brukere" +msgstr "Del dette regnearket med andre brukere" #. xpXCL #: sc/uiconfig/scalc/ui/sharedocumentdlg.ui:130 @@ -28966,31 +28964,31 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:77 msgctxt "sheetprintpage|radioBTN_TOPDOWN" msgid "_Top to bottom, then right" -msgstr "_Ovenfra og ned, deretter mot høyre" +msgstr "Ovenfra og ned, deretter mot høyre" #. Fjdpq #: sc/uiconfig/scalc/ui/sheetprintpage.ui:88 msgctxt "sheetprintpage|extended_tip|radioBTN_TOPDOWN" msgid "Prints vertically from the left column to the bottom of the sheet." -msgstr "Velg dette alternativet for å skrive ut loddrett fra kolonnen lengst til venstre til bunnen av arket." +msgstr "Velg dette alternativet for å skrive ut vertikalt fra kolonnen lengst til venstre til bunnen av arket." #. a2f9m #: sc/uiconfig/scalc/ui/sheetprintpage.ui:99 msgctxt "sheetprintpage|radioBTN_LEFTRIGHT" msgid "_Left to right, then down" -msgstr "_Venstre til høyre, deretter nedover" +msgstr "Venstre til høyre, deretter nedover" #. 9Koax #: sc/uiconfig/scalc/ui/sheetprintpage.ui:112 msgctxt "sheetprintpage|extended_tip|radioBTN_LEFTRIGHT" msgid "Prints horizontally from the top row of the sheet to the right column." -msgstr "Velg dette alternativet for å skrive ut vannrett fra den øverste raden til kolonnen lengst til høyre." +msgstr "Velg dette alternativet for å skrive ut horisontalt fra den øverste raden til kolonnen lengst til høyre." #. Zmz6D #: sc/uiconfig/scalc/ui/sheetprintpage.ui:123 msgctxt "sheetprintpage|checkBTN_PAGENO" msgid "First _page number:" -msgstr "Første _sidetall:" +msgstr "Første sidetall:" #. SDefG #: sc/uiconfig/scalc/ui/sheetprintpage.ui:135 @@ -29014,7 +29012,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:238 msgctxt "sheetprintpage|checkBTN_HEADER" msgid "_Column and row headers" -msgstr "_Kolonne- og radoverskrifter" +msgstr "Kolonne- og radoverskrifter" #. tB2MC #: sc/uiconfig/scalc/ui/sheetprintpage.ui:247 @@ -29026,31 +29024,31 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:258 msgctxt "sheetprintpage|checkBTN_GRID" msgid "_Grid" -msgstr "_Rutenett" +msgstr "Rutenett" #. V7t5z #: sc/uiconfig/scalc/ui/sheetprintpage.ui:268 msgctxt "sheetprintpage|extended_tip|checkBTN_GRID" msgid "Prints out the borders of the individual cells as a grid." -msgstr "" +msgstr "Skriver ut kantlinjene til de enkelte cellene som et rutenett." #. gwu4K #: sc/uiconfig/scalc/ui/sheetprintpage.ui:279 msgctxt "sheetprintpage|checkBTN_NOTES" msgid "_Comments" -msgstr "_Merknader" +msgstr "Merknader" #. UJ7Js #: sc/uiconfig/scalc/ui/sheetprintpage.ui:288 msgctxt "sheetprintpage|extended_tip|checkBTN_NOTES" msgid "Prints the comments defined in your spreadsheet." -msgstr "" +msgstr "Skriver ut kommentarene som er definert i regnearket ditt." #. JDNDB #: sc/uiconfig/scalc/ui/sheetprintpage.ui:299 msgctxt "sheetprintpage|checkBTN_OBJECTS" msgid "_Objects/Images" -msgstr "_Objekter/bilder" +msgstr "Objekter/bilder" #. PVDXS #: sc/uiconfig/scalc/ui/sheetprintpage.ui:308 @@ -29074,7 +29072,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:339 msgctxt "sheetprintpage|checkBTN_DRAWINGS" msgid "_Drawing objects" -msgstr "_Tegneobjekter" +msgstr "Tegneobjekter" #. iqL8r #: sc/uiconfig/scalc/ui/sheetprintpage.ui:348 @@ -29086,7 +29084,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:359 msgctxt "sheetprintpage|checkBTN_FORMULAS" msgid "_Formulas" -msgstr "_Formler" +msgstr "Formler" #. 9PVBj #: sc/uiconfig/scalc/ui/sheetprintpage.ui:368 @@ -29098,7 +29096,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:379 msgctxt "sheetprintpage|checkBTN_NULLVALS" msgid "_Zero values" -msgstr "_Nullverdier" +msgstr "Nullverdier" #. gNEsv #: sc/uiconfig/scalc/ui/sheetprintpage.ui:388 @@ -29116,7 +29114,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:451 msgctxt "sheetprintpage|labelScalingMode" msgid "Scaling _mode:" -msgstr "Skalerings_modus:" +msgstr "Skaleringsmodus:" #. 4B48Q #: sc/uiconfig/scalc/ui/sheetprintpage.ui:476 @@ -29128,37 +29126,37 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:496 msgctxt "sheetprintpage|extended_tip|spinED_SCALEALL" msgid "Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages." -msgstr "" +msgstr "Skriv inn en skaleringsfaktor. Faktorer Mindre enn 100 Reduser sidene, høyere faktorer forstørre sidene." #. AgUiF #: sc/uiconfig/scalc/ui/sheetprintpage.ui:523 msgctxt "sheetprintpage|labelWP" msgid "_Width in pages:" -msgstr "_Bredde i sider" +msgstr "Bredde på sidene" #. FVuA4 #: sc/uiconfig/scalc/ui/sheetprintpage.ui:541 msgctxt "sheetprintpage|labelHP" msgid "_Height in pages:" -msgstr "_Høyde i sider:" +msgstr "Høyde på sidene:" #. AqCkB #: sc/uiconfig/scalc/ui/sheetprintpage.ui:570 msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEWIDTH" msgid "Enter the maximum number of pages to be printed horizontally across." -msgstr "Angi høyeste antall sider som skal skrives ut vannrett." +msgstr "Angi høyeste antall sider som skal skrives ut horisontalt." #. Tpcb3 #: sc/uiconfig/scalc/ui/sheetprintpage.ui:592 msgctxt "sheetprintpage|extended_tip|spinED_SCALEPAGEHEIGHT" msgid "Enter the maximum number of pages to be printed vertically stacked." -msgstr "Angi høyeste antall sider som skal skrives ut loddrett." +msgstr "Angi høyeste antall sider som skal skrives ut vertikalt." #. SeMBt #: sc/uiconfig/scalc/ui/sheetprintpage.ui:617 msgctxt "sheetprintpage|labelNP" msgid "N_umber of pages:" -msgstr "A_ntall sider:" +msgstr "Antall sider:" #. KeXD7 #: sc/uiconfig/scalc/ui/sheetprintpage.ui:637 @@ -29188,7 +29186,7 @@ #: sc/uiconfig/scalc/ui/sheetprintpage.ui:671 msgctxt "sheetprintpage|extended_tip|comboLB_SCALEMODE" msgid "Select a scaling mode from the list box. Appropriate controls will be shown below the list box." -msgstr "" +msgstr "Velg en skaleringsmodus fra listeboksen. Egnede kontroller vil bli vist under listeboksen." #. zeMqg #: sc/uiconfig/scalc/ui/sheetprintpage.ui:691 @@ -29212,37 +29210,37 @@ #: sc/uiconfig/scalc/ui/showchangesdialog.ui:89 msgctxt "showchangesdialog|showchanges" msgid "_Show changes in spreadsheet" -msgstr "_Vis endringer i regnearket" +msgstr "Vis endringer i regnearket" #. auWzB #: sc/uiconfig/scalc/ui/showchangesdialog.ui:98 msgctxt "showchangesdialog|extended_tip|showchanges" msgid "Shows or hides recorded changes." -msgstr "" +msgstr "Viser eller skjuler registrerte endringer." #. au2jE #: sc/uiconfig/scalc/ui/showchangesdialog.ui:127 msgctxt "showchangesdialog|showaccepted" msgid "Show _accepted changes" -msgstr "Vis _godtatte endringer" +msgstr "Vis aksepterte endringer" #. f7GQr #: sc/uiconfig/scalc/ui/showchangesdialog.ui:136 msgctxt "showchangesdialog|extended_tip|showaccepted" msgid "Shows or hides the changes that were accepted." -msgstr "" +msgstr "Viser eller skjuler endringene som ble akseptert." #. KBgdT #: sc/uiconfig/scalc/ui/showchangesdialog.ui:147 msgctxt "showchangesdialog|showrejected" msgid "Show _rejected changes" -msgstr "Vis _avviste endringer" +msgstr "Vis avviste endringer" #. vUrkK #: sc/uiconfig/scalc/ui/showchangesdialog.ui:156 msgctxt "showchangesdialog|extended_tip|showrejected" msgid "Shows or hides the changes that were rejected." -msgstr "" +msgstr "Viser eller skjuler endringene som ble avvist." #. PHqfD #: sc/uiconfig/scalc/ui/showchangesdialog.ui:187 @@ -29254,7 +29252,7 @@ #: sc/uiconfig/scalc/ui/showchangesdialog.ui:262 msgctxt "showchangesdialog|extended_tip|ShowChangesDialog" msgid "Shows or hides recorded changes." -msgstr "" +msgstr "Viser eller skjuler registrerte endringer." #. qmxGg #: sc/uiconfig/scalc/ui/showdetaildialog.ui:18 @@ -29266,7 +29264,7 @@ #: sc/uiconfig/scalc/ui/showdetaildialog.ui:100 msgctxt "showdetaildialog|label1" msgid "_Choose the field containing the detail you want to show" -msgstr "_Velg feltet som inneholder detaljen du vil vise" +msgstr "Velg feltet som inneholder den detaljen du vil vise" #. GJu4j #: sc/uiconfig/scalc/ui/showdetaildialog.ui:146 @@ -29290,19 +29288,19 @@ #: sc/uiconfig/scalc/ui/showsheetdialog.ui:165 msgctxt "showsheetdialog|extended_tip|ShowSheetDialog" msgid "Displays a list of all hidden sheets in your spreadsheet document." -msgstr "" +msgstr "Viser en liste over alle skjulte ark i regnearkdokumentet." #. ktHTz #: sc/uiconfig/scalc/ui/sidebaralignment.ui:53 msgctxt "sidebaralignment|horizontalalignment|tooltip_text" msgid "Horizontal Alignment" -msgstr "Vannrett justering" +msgstr "Horisontal justering" #. U8BWH #: sc/uiconfig/scalc/ui/sidebaralignment.ui:114 msgctxt "sidebaralignment|verticalalignment|tooltip_text" msgid "Vertical Alignment" -msgstr "Loddrett justering" +msgstr "Vertikal Justering" #. Ume2A #: sc/uiconfig/scalc/ui/sidebaralignment.ui:208 @@ -29332,13 +29330,13 @@ #: sc/uiconfig/scalc/ui/sidebaralignment.ui:296 msgctxt "sidebaralignment|orientationlabel" msgid "Text _orientation:" -msgstr "Tekst_retning:" +msgstr "Tekstretning:" #. KEG9k #: sc/uiconfig/scalc/ui/sidebaralignment.ui:313 msgctxt "sidebaralignment|stacked" msgid "Vertically stacked" -msgstr "Loddrett stablet" +msgstr "Vertiklalt stablet" #. ZE4wU #: sc/uiconfig/scalc/ui/sidebaralignment.ui:339 @@ -29386,13 +29384,13 @@ #: sc/uiconfig/scalc/ui/sidebaralignment.ui:445 msgctxt "sidebaralignment|leftindentlabel" msgid "_Indent:" -msgstr "_Innrykk:" +msgstr "Innrykk:" #. BBGFK #: sc/uiconfig/scalc/ui/sidebarcellappearance.ui:23 msgctxt "sidebarcellappearance|cellbackgroundlabel" msgid "_Background:" -msgstr "_Bakgrunn" +msgstr "Bakgrunn" #. bjHWc #: sc/uiconfig/scalc/ui/sidebarcellappearance.ui:37 @@ -29518,7 +29516,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:123 msgctxt "sidebarnumberformat|decimalplaceslabel" msgid "_Decimal places:" -msgstr "_Desimalplasser:" +msgstr "Desimalplasser:" #. xen2B #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:137 @@ -29554,7 +29552,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:222 msgctxt "sidebarnumberformat|leadingzeroeslabel" msgid "Leading _zeroes:" -msgstr "_Innledende nuller:" +msgstr "Innledende nuller:" #. 35pSE #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:237 @@ -29572,7 +29570,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:262 msgctxt "sidebarnumberformat|negativenumbersred" msgid "_Negative numbers in red" -msgstr "_Negative tall i rødt" +msgstr "Negative tall i rødt" #. apRL8 #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:266 @@ -29584,7 +29582,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:279 msgctxt "sidebarnumberformat|thousandseparator" msgid "_Thousands separator" -msgstr "_Tusenskille" +msgstr "Tusenskille" #. ykEWn #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:283 @@ -29596,7 +29594,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:296 msgctxt "sidebarnumberformat|engineeringnotation" msgid "_Engineering notation" -msgstr "_Teknisk notasjon" +msgstr "Teknisk notasjon" #. 9CEjC #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:299 @@ -29620,7 +29618,7 @@ #: sc/uiconfig/scalc/ui/simplerefdialog.ui:142 msgctxt "simplerefdialog|extended_tip|SimpleRefDialog" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "" +msgstr "Filtre listen over endringer i henhold til rekkevidden av celler du angir. For å velge en rekke celler i arket, klikk på Sett Referanse-knappen (...)." #. GGUrx #: sc/uiconfig/scalc/ui/solverdlg.ui:8 @@ -29632,31 +29630,31 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:39 msgctxt "solverdlg|resetall" msgid "_Reset All" -msgstr "" +msgstr "Tilbakestill Alt" #. bz78K #: sc/uiconfig/scalc/ui/solverdlg.ui:53 msgctxt "solverdlg|options" msgid "O_ptions..." -msgstr "Innstillinger …" +msgstr "Alternativer …" #. UABF3 #: sc/uiconfig/scalc/ui/solverdlg.ui:60 msgctxt "solverdlg|extended_tip|options" msgid "Opens the Solver Options dialog." -msgstr "" +msgstr "Åpner dialogboksen Løser Alternativer." #. 8hMNV #: sc/uiconfig/scalc/ui/solverdlg.ui:72 msgctxt "solverdlg|solve" msgid "_Solve" -msgstr "_Løs" +msgstr "Løs" #. Spxjy #: sc/uiconfig/scalc/ui/solverdlg.ui:128 msgctxt "solverdlg|targetlabel" msgid "_Target cell" -msgstr "_Målcelle" +msgstr "Målcelle" #. CgmTB #: sc/uiconfig/scalc/ui/solverdlg.ui:141 @@ -29668,7 +29666,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:155 msgctxt "solverdlg|changelabel" msgid "_By changing cells" -msgstr "_Ved endring av celler" +msgstr "Ved endring av celler" #. mGFbf #: sc/uiconfig/scalc/ui/solverdlg.ui:166 @@ -29680,67 +29678,67 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:179 msgctxt "solverdlg|extended_tip|min" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Skriv inn celleområdet som kan endres." #. gB8JN #: sc/uiconfig/scalc/ui/solverdlg.ui:190 msgctxt "solverdlg|max" msgid "_Maximum" -msgstr "_Maksimum" +msgstr "Maksimum" #. CCUEf #: sc/uiconfig/scalc/ui/solverdlg.ui:204 msgctxt "solverdlg|extended_tip|max" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Skriv inn celleområdet som kan endres." #. fqxHx #: sc/uiconfig/scalc/ui/solverdlg.ui:229 msgctxt "solverdlg|extended_tip|changeedit" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Skriv inn celleområdet som kan endres." #. qsQDn #: sc/uiconfig/scalc/ui/solverdlg.ui:272 msgctxt "solverdlg|extended_tip|targetedit" msgid "Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized." -msgstr "" +msgstr "Skriv inn eller klikk på celle-referansen til målcellen. Dette feltet tar adressen til cellen hvis verdi skal optimaliseres." #. ze8nv #: sc/uiconfig/scalc/ui/solverdlg.ui:308 msgctxt "solverdlg|value" msgid "_Value of" -msgstr "_Verdien av" +msgstr "Verdien av" #. VyrGQ #: sc/uiconfig/scalc/ui/solverdlg.ui:321 msgctxt "solverdlg|extended_tip|value" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Skriv inn celleområdet som kan endres." #. uzDam #: sc/uiconfig/scalc/ui/solverdlg.ui:346 msgctxt "solverdlg|extended_tip|valueedit" msgid "Enter the cell range that can be changed." -msgstr "" +msgstr "Skriv inn celleområdet som kan endres." #. UWsBu #: sc/uiconfig/scalc/ui/solverdlg.ui:438 msgctxt "solverdlg|cellreflabel" msgid "_Cell reference" -msgstr "_Cellereferanse" +msgstr "Cellereferanse" #. Fj7m7 #: sc/uiconfig/scalc/ui/solverdlg.ui:452 msgctxt "solverdlg|oplabel" msgid "_Operator" -msgstr "_Operator" +msgstr "Operator" #. qsDhL #: sc/uiconfig/scalc/ui/solverdlg.ui:466 msgctxt "solverdlg|constraintlabel" msgid "V_alue" -msgstr "V_erdi" +msgstr "Verdi" #. ergok #: sc/uiconfig/scalc/ui/solverdlg.ui:486 @@ -29968,7 +29966,7 @@ #: sc/uiconfig/scalc/ui/solverdlg.ui:907 msgctxt "solverdlg|extended_tip|SolverDialog" msgid "Opens the Solver dialog. A solver allows you to solve mathematical problems with multiple unknown variables and a set of constraints on the variables by goal-seeking methods." -msgstr "" +msgstr "Åpner dialogboksen Løser. En Løser lar deg løse matematiske problemer med flere ukjente variabler og et sett med begrensninger på variablene av målsøkende metoder." #. DFfjo #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:22 @@ -29986,7 +29984,7 @@ #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:121 msgctxt "solveroptionsdialog|extended_tip|engine" msgid "Select a solver engine. The listbox is disabled if only one solver engine is installed." -msgstr "" +msgstr "Velg en Løser-motor. Listeboksen er deaktivert hvis bare en løsermotor er installert." #. JVMDt #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:148 @@ -30004,7 +30002,7 @@ #: sc/uiconfig/scalc/ui/solveroptionsdialog.ui:224 msgctxt "solveroptionsdialog|extended_tip|edit" msgid "If the current entry in the Settings listbox allows you to edit a value, you can click the Edit button. A dialog opens where you can change the value." -msgstr "" +msgstr "Hvis den gjeldende oppføringen i Listboksinnstillinger lar deg redigere en verdi, kan du klikke på Rediger-knappen. En dialogboks åpnes der du kan endre verdien." #. GHJGp #: sc/uiconfig/scalc/ui/solverprogressdialog.ui:8 @@ -30088,31 +30086,31 @@ #: sc/uiconfig/scalc/ui/sortkey.ui:33 msgctxt "sortkey|extended_tip|sortlb" msgid "Select the column that you want to use as the primary sort key." -msgstr "" +msgstr "Velg kolonnen du vil bruke som den primære sorteringsnøkkelen." #. HSoQ2 #: sc/uiconfig/scalc/ui/sortkey.ui:45 msgctxt "sortkey|up" msgid "_Ascending" -msgstr "St_igende" +msgstr "Stigende" #. BUxPb #: sc/uiconfig/scalc/ui/sortkey.ui:55 msgctxt "sortkey|extended_tip|up" msgid "Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options." -msgstr "" +msgstr "Sorterer valget fra den laveste verdien til den høyeste verdien. Sorteringsreglene er gitt av de lokale innstillingene. Du kan definere sorteringsreglene på data - Sorter - Alternativer." #. TfqAv #: sc/uiconfig/scalc/ui/sortkey.ui:66 msgctxt "sortkey|down" msgid "_Descending" -msgstr "_Synkende" +msgstr "Synkende" #. gqJji #: sc/uiconfig/scalc/ui/sortkey.ui:76 msgctxt "sortkey|extended_tip|down" msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options." -msgstr "" +msgstr "Sorterer valget fra den høyeste verdien til den laveste verdien. Du kan definere sorteringsreglene på data - Sorter - Alternativer." #. Svy7B #: sc/uiconfig/scalc/ui/sortkey.ui:93 @@ -30124,19 +30122,19 @@ #: sc/uiconfig/scalc/ui/sortkey.ui:101 msgctxt "sortkey|extended_tip|SortKeyFrame" msgid "Select the column that you want to use as the primary sort key." -msgstr "" +msgstr "Velg kolonnen du vil bruke som den primære sorteringsnøkkelen." #. 9FBK2 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:32 msgctxt "sortoptionspage|case" msgid "Case _sensitive" -msgstr "Skill mellom _store/små bokstaver" +msgstr "Skill mellom store/små bokstaver" #. F9BE3 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:41 msgctxt "sortoptionspage|extended_tip|case" msgid "Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies." -msgstr "" +msgstr "Sorter først ved store bokstaver og deretter med små bokstaver. For asiatiske språk gjelder spesiell håndtering." #. fTCGJ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:52 @@ -30148,7 +30146,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:61 msgctxt "sortoptionspage|extended_tip|header" msgid "Omits the first row or the first column in the selection from the sort." -msgstr "" +msgstr "Utelater den første raden eller den første kolonnen i valget fra sorteringen." #. RM629 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:72 @@ -30158,10 +30156,9 @@ #. KbJnq #: sc/uiconfig/scalc/ui/sortoptionspage.ui:81 -#, fuzzy msgctxt "sortoptionspage|extended_tip|formats" msgid "Preserves the current cell formatting." -msgstr " Bevarer celleformateringen." +msgstr "Bevarer celleformateringen." #. Gtck5 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:92 @@ -30173,7 +30170,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:101 msgctxt "sortoptionspage|extended_tip|naturalsort" msgid "Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings." -msgstr "" +msgstr "Naturlig sortering er en sorteringsalgoritme som sorterer streng-prefikset tall basert på verdien av det numeriske elementet i hvert sortert nummer, i stedet for den tradisjonelle måten å sortere dem som vanlige strenger." #. yev2y #: sc/uiconfig/scalc/ui/sortoptionspage.ui:112 @@ -30195,10 +30192,9 @@ #. gis9V #: sc/uiconfig/scalc/ui/sortoptionspage.ui:154 -#, fuzzy msgctxt "sortoptionspage|extended_tip|copyresult" msgid "Copies the sorted list to the cell range that you specify." -msgstr "Angi et celleområde den sorterte lista skal kopieres til." +msgstr "Angi et celleområde den sorterte listen skal kopieres til." #. WKWmE #: sc/uiconfig/scalc/ui/sortoptionspage.ui:174 @@ -30210,7 +30206,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:175 msgctxt "sortoptionspage|extended_tip|outarealb" msgid "Select a named cell range where you want to display the sorted list, or enter a cell range in the input box." -msgstr "" +msgstr "Velg et navngitt celleområde der du vil vise den sorterte listen, eller skriv inn et celleområde i inntastingsboksen." #. ABGSS #: sc/uiconfig/scalc/ui/sortoptionspage.ui:196 @@ -30220,10 +30216,9 @@ #. kpVh9 #: sc/uiconfig/scalc/ui/sortoptionspage.ui:197 -#, fuzzy msgctxt "sortoptionspage|extended_tip|outareaed" msgid "Enter the cell range where you want to display the sorted list, or select a named range from the list." -msgstr "Oppgi celleområdet der den sorterte lista skal vises, eller velg et navngitt område fra lista." +msgstr "Oppgi celleområdet der den sorterte listen skal vises, eller velg et navngitt område fra listen." #. GwzEB #: sc/uiconfig/scalc/ui/sortoptionspage.ui:208 @@ -30233,10 +30228,9 @@ #. aDYdR #: sc/uiconfig/scalc/ui/sortoptionspage.ui:220 -#, fuzzy msgctxt "sortoptionspage|extended_tip|sortuser" msgid "Click here and then select the custom sort order that you want." -msgstr " Kryss av her for å velge en tilpasset sorteringsrekkefølge." +msgstr "Kryss av her for å velge en tilpasset sorteringsrekkefølge." #. iWcGs #: sc/uiconfig/scalc/ui/sortoptionspage.ui:239 @@ -30248,7 +30242,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:240 msgctxt "sortoptionspage|extended_tip|sortuserlb" msgid "Select the custom sort order that you want to apply. To define a custom sort order, choose Tools - Options - %PRODUCTNAME Calc - Sort Lists ." -msgstr "" +msgstr "Velg en egendefinerte sorteringsrekkefølgen du vil bruke. Hvis du vil definere en egendefinert sorteringsrekkefølge, velger du Verktøy - Alternativer -% ProductName Calc - Sorter lister." #. KJrPL #: sc/uiconfig/scalc/ui/sortoptionspage.ui:255 @@ -30266,14 +30260,13 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:284 msgctxt "sortoptionspage|extended_tip|algorithmlb" msgid "Select a sorting option for the language." -msgstr "" +msgstr "Velg et sorteringsalternativ for språket." #. u52Ei #: sc/uiconfig/scalc/ui/sortoptionspage.ui:306 -#, fuzzy msgctxt "sortoptionspage|extended_tip|language" msgid "Select the language for the sorting rules." -msgstr " Velg språk for sorteringsreglene." +msgstr "Velg språk for sorteringsreglene." #. aDahD #: sc/uiconfig/scalc/ui/sortoptionspage.ui:347 @@ -30285,11 +30278,10 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:379 msgctxt "sortoptionspage|topdown" msgid "_Top to bottom (sort rows)" -msgstr "_Ovenfra og ned (sorter radene)" +msgstr "Ovenfra og ned (sorter radene)" #. bSvKu #: sc/uiconfig/scalc/ui/sortoptionspage.ui:389 -#, fuzzy msgctxt "sortoptionspage|extended_tip|topdown" msgid "Sorts rows by the values in the active columns of the selected range." msgstr "Sortér alle radene etter verdiene i de aktive kolonnene i det merkede området." @@ -30298,11 +30290,10 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:400 msgctxt "sortoptionspage|leftright" msgid "L_eft to right (sort columns)" -msgstr "Fra _venstre til høyre (sorter kolonnene)" +msgstr "Fra venstre til høyre (sorter kolonnene)" #. APEaE #: sc/uiconfig/scalc/ui/sortoptionspage.ui:410 -#, fuzzy msgctxt "sortoptionspage|extended_tip|leftright" msgid "Sorts columns by the values in the active rows of the selected range." msgstr "Sortér alle kolonnene etter verdiene i de aktive radene i det merkede området." @@ -30315,7 +30306,6 @@ #. 7AH6P #: sc/uiconfig/scalc/ui/sortoptionspage.ui:442 -#, fuzzy msgctxt "sortoptionspage|extended_tip|SortOptionsPage" msgid "Sets additional sorting options." msgstr "Angi flere sorteringsvalg." @@ -30354,7 +30344,7 @@ #: sc/uiconfig/scalc/ui/sortwarning.ui:27 msgctxt "sortwarning|extend" msgid "_Extend selection" -msgstr "_Utvid valg" +msgstr "Utvid utvalget" #. RoX99 #: sc/uiconfig/scalc/ui/sortwarning.ui:43 @@ -30414,7 +30404,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:90 msgctxt "standardfilterdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "Lukker dialogvindauet og avbryter alle endringene." +msgstr "Lukker dialogvinduet og avbryter alle endringene." #. 3c3SD #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:175 @@ -30636,7 +30626,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:398 msgctxt "standardfilterdialog|extended_tip|cond1" msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked." -msgstr "Velg de komparative operatorene du vil at oppføringene i felteneFeltnavn og Verdi skal lenkes ved hjelp av." +msgstr "Velg de komparative operatorene du vil at oppføringene i feltene Feltnavn og Verdi skal lenkes ved hjelp av." #. uCRxP #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:418 @@ -30780,7 +30770,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:472 msgctxt "standardfilterdialog|extended_tip|cond3" msgid "Specifies the comparative operators through which the entries in the Field name and Value fields can be linked." -msgstr "Velg de komparative operatorene du vil at oppføringene i felteneFeltnavn og Verdi skal lenkes ved hjelp av." +msgstr "Velg de komparative operatorene du vil at oppføringene i feltene Feltnavn og Verdi skal lenkes ved hjelp av." #. jnrrF #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:492 @@ -30894,25 +30884,25 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:627 msgctxt "standardfilterdialog|remove1|tooltip_text" msgid "Remove" -msgstr "" +msgstr "Fjern" #. snJCB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:641 msgctxt "standardfilterdialog|remove2|tooltip_text" msgid "Remove" -msgstr "" +msgstr "Fjern" #. 8ti5o #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:655 msgctxt "standardfilterdialog|remove3|tooltip_text" msgid "Remove" -msgstr "" +msgstr "Fjern" #. y4aPN #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:669 msgctxt "standardfilterdialog|remove4|tooltip_text" msgid "Remove" -msgstr "" +msgstr "Fjern" #. ekQLB #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:699 @@ -30924,73 +30914,73 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:739 msgctxt "standardfilterdialog|case" msgid "_Case sensitive" -msgstr "_Skill mellom store og små bokstaver" +msgstr "Skill mellom store og små bokstaver" #. juNCs #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:749 msgctxt "standardfilterdialog|extended_tip|case" msgid "Distinguishes between uppercase and lowercase letters when filtering the data." -msgstr "" +msgstr "Skiller mellom store og små bokstaver når du filtrerer dataene." #. yud2Z #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:760 msgctxt "standardfilterdialog|header" msgid "Range c_ontains column labels" -msgstr "Området inneholder _kolonneoverskrifter" +msgstr "Området inneholder kolonneoverskrifter" #. C5Muz #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:770 msgctxt "standardfilterdialog|extended_tip|header" msgid "Includes the column labels in the first row of a cell range." -msgstr "" +msgstr "Inkluderer kolonneetikettene i den første raden i et celleområde." #. 4ZVQy #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:781 msgctxt "standardfilterdialog|regexp" msgid "Regular _expressions" -msgstr "Regulære _uttrykk" +msgstr "Regulære uttrykk" #. CVKch #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:791 msgctxt "standardfilterdialog|extended_tip|regexp" msgid "Allows you to use regular expressions in the filter definition." -msgstr "" +msgstr "Lar deg bruke regulære uttrykk i filterdefinisjonen." #. Y8AtC #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:802 msgctxt "standardfilterdialog|unique" msgid "_No duplications" -msgstr "_Ingen duplikater" +msgstr "Ingen duplikater" #. EiBMm #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:812 msgctxt "standardfilterdialog|extended_tip|unique" msgid "Excludes duplicate rows in the list of filtered data." -msgstr "Utelater like rader lista over filtrerte data." +msgstr "Utelater like rader listen over filtrerte data." #. BRiA2 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:823 msgctxt "standardfilterdialog|copyresult" msgid "Co_py results to:" -msgstr "_Kopier resultatet til:" +msgstr "Kopier resultatet til:" #. vapFg #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:837 msgctxt "standardfilterdialog|extended_tip|copyresult" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "" +msgstr "Merk av i boksen, og velg deretter celleområdet der du vil vise filterresultatene." #. wDy43 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:848 msgctxt "standardfilterdialog|destpers" msgid "_Keep filter criteria" -msgstr "Behold _filterkriteriene" +msgstr "Behold filterkriteriene" #. rSZi5 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:858 msgctxt "standardfilterdialog|extended_tip|destpers" msgid "Select the Copy results to check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under Data - Define range as a database range." -msgstr "" +msgstr "Velg avkrysningsboksen Kopier, og angi deretter destinasjonsområdet der du vil vise de filtrerte dataene. Hvis denne boksen er merket, forblir destinasjonsområdet knyttet til kildeområdet. Du må ha definert kildeområdet under Data - Definer Område som et databasesortiment." #. StG9B #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:890 @@ -31002,7 +30992,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:891 msgctxt "standardfilterdialog|extended_tip|lbcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "" +msgstr "Merk av i boksen, og velg deretter celleområdet der du vil vise filterresultatene." #. aX8Ar #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:913 @@ -31014,7 +31004,7 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:914 msgctxt "standardfilterdialog|extended_tip|edcopyarea" msgid "Select the check box, and then select the cell range where you want to display the filter results." -msgstr "" +msgstr "Merk av i boksen, og velg deretter celleområdet der du vil vise filterresultatene." #. WSVsk #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:933 @@ -31038,13 +31028,13 @@ #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:991 msgctxt "standardfilterdialog|label6" msgid "Op_tions" -msgstr "_Valg" +msgstr "Valg" #. q3HXT #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:997 msgctxt "standardfilterdialog|extended_tip|more" msgid "Shows additional filter options." -msgstr "" +msgstr "Viser ytterligere filteralternativer." #. NNCfP #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:1020 @@ -31122,13 +31112,13 @@ #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:61 msgctxt "subtotalgrppage|extended_tip|group_by" msgid "Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated." -msgstr "Velg kolonnen som skal kontrollere utregninga av delsummer. Hvis innholdet i den valgte kolonnen endrer seg, blir utregninga av delsummer automatisk beregnet på nytt." +msgstr "Velg kolonnen som skal kontrollere utregningen av delsummer. Hvis innholdet i den valgte kolonnen endrer seg, blir delsummene automatisk beregnet på nytt." #. gL3Zy #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:73 msgctxt "subtotalgrppage|select_all_columns_button" msgid "Select all columns" -msgstr "" +msgstr "Velg alle kolonner" #. 42zT3 #: sc/uiconfig/scalc/ui/subtotalgrppage.ui:106 @@ -31164,7 +31154,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:36 msgctxt "subtotaloptionspage|pagebreak" msgid "_Page break between groups" -msgstr "_Sideskift mellom grupper" +msgstr "Sideskift mellom grupper" #. LRtCo #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:46 @@ -31176,7 +31166,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:57 msgctxt "subtotaloptionspage|case" msgid "_Case sensitive" -msgstr "_Skill mellom store og små bokstaver" +msgstr "Skill mellom store og små bokstaver" #. hFBdv #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:67 @@ -31188,7 +31178,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:78 msgctxt "subtotaloptionspage|sort" msgid "Pre-_sort area according to groups" -msgstr "_Forhåndssorterer område i henhold til grupper" +msgstr "Forhåndssorterer område i henhold til grupper" #. NrBZG #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:88 @@ -31206,31 +31196,31 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:144 msgctxt "subtotaloptionspage|ascending" msgid "_Ascending" -msgstr "_Stigende" +msgstr "Stigende" #. D75dE #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:155 msgctxt "subtotaloptionspage|extended_tip|ascending" msgid "Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options." -msgstr "" +msgstr "Sortering som begynner med den laveste verdien. Du kan definere sorteringsreglene på data - Sorter - Alternativer." #. maa6m #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:166 msgctxt "subtotaloptionspage|descending" msgid "D_escending" -msgstr "_Synkende" +msgstr "Synkende" #. 8iUpi #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:178 msgctxt "subtotaloptionspage|extended_tip|descending" msgid "Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options." -msgstr "" +msgstr "Sortering som begynner med den høyeste verdien. Du kan definere sorteringsreglene på data - Sorter - Alternativer." #. EGqiq #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:189 msgctxt "subtotaloptionspage|formats" msgid "I_nclude formats" -msgstr "_Ta med formater" +msgstr "Ta med formater" #. gCtKR #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:199 @@ -31242,19 +31232,19 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:210 msgctxt "subtotaloptionspage|btnuserdef" msgid "C_ustom sort order" -msgstr "_Selvvalgt sorteringsrekkefølge" +msgstr "Selvvalgt sorteringsrekkefølge" #. EP8RH #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:223 msgctxt "subtotaloptionspage|extended_tip|btnuserdef" msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Bruker en tilpasset sorteringsordre som du definert i dialogboksen Alternativer på %ProductName Calc - Sorter lister." #. T5A7R #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:242 msgctxt "subtotaloptionspage|extended_tip|lbuserdef" msgid "Uses a custom sorting order that you defined in the Options dialog box at %PRODUCTNAME Calc - Sort Lists." -msgstr "" +msgstr "Bruker en tilpasset sorteringsordre som du definert i dialogboksen Alternativer på %ProductName Calc - Sorter lister." #. fEyTF #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:259 @@ -31266,7 +31256,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:274 msgctxt "subtotaloptionspage|extended_tip|SubTotalOptionsPage" msgid "Specify the settings for calculating and presenting subtotals." -msgstr "" +msgstr "Angi innstillingene for å beregne og presentere subtotaler." #. 8AoGN #: sc/uiconfig/scalc/ui/tabcolordialog.ui:72 @@ -31284,19 +31274,19 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:123 msgctxt "textimportcsv|textcharset" msgid "Ch_aracter set:" -msgstr "_Tegnsett:" +msgstr "Tegnsett:" #. 8Gbou #: sc/uiconfig/scalc/ui/textimportcsv.ui:137 msgctxt "textimportcsv|textlanguage" msgid "_Language:" -msgstr "_Språk:" +msgstr "Språk:" #. GAQTV #: sc/uiconfig/scalc/ui/textimportcsv.ui:151 msgctxt "textimportcsv|textfromrow" msgid "From ro_w:" -msgstr "_Fra rad:" +msgstr "Fra rad:" #. 5fBmk #: sc/uiconfig/scalc/ui/textimportcsv.ui:167 @@ -31326,7 +31316,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:260 msgctxt "textimportcsv|tofixedwidth" msgid "_Fixed width" -msgstr "_Fast bredde" +msgstr "Fast bredde" #. kKMbP #: sc/uiconfig/scalc/ui/textimportcsv.ui:270 @@ -31338,7 +31328,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:282 msgctxt "textimportcsv|toseparatedby" msgid "_Separated by" -msgstr "_Skilt med" +msgstr "Adskilt med" #. FYdcR #: sc/uiconfig/scalc/ui/textimportcsv.ui:292 @@ -31350,7 +31340,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:325 msgctxt "textimportcsv|tab" msgid "_Tab" -msgstr "_Tabulator" +msgstr "Tabulator" #. J6vVR #: sc/uiconfig/scalc/ui/textimportcsv.ui:335 @@ -31362,7 +31352,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:346 msgctxt "textimportcsv|mergedelimiters" msgid "Merge _delimiters" -msgstr "_Slå sammen grensetegn" +msgstr "Slå sammen grensetegn" #. EMxAD #: sc/uiconfig/scalc/ui/textimportcsv.ui:357 @@ -31386,7 +31376,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:392 msgctxt "textimportcsv|comma" msgid "_Comma" -msgstr "_Komma" +msgstr "Komma" #. RWucu #: sc/uiconfig/scalc/ui/textimportcsv.ui:402 @@ -31398,7 +31388,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:413 msgctxt "textimportcsv|semicolon" msgid "S_emicolon" -msgstr "S_emikolon" +msgstr "Semikolon" #. dDCtR #: sc/uiconfig/scalc/ui/textimportcsv.ui:423 @@ -31410,7 +31400,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:434 msgctxt "textimportcsv|space" msgid "S_pace" -msgstr "_Mellomrom" +msgstr "Mellomrom" #. jbuEn #: sc/uiconfig/scalc/ui/textimportcsv.ui:444 @@ -31422,7 +31412,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:462 msgctxt "textimportcsv|other" msgid "Othe_r" -msgstr "Andr_e" +msgstr "Andre" #. aCntQ #: sc/uiconfig/scalc/ui/textimportcsv.ui:474 @@ -31476,7 +31466,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:637 msgctxt "textimportcsv|detectspecialnumbers" msgid "Detect special _numbers" -msgstr "Oppdag spesial_numre" +msgstr "Oppdag spesialnumre" #. zYGMs #: sc/uiconfig/scalc/ui/textimportcsv.ui:646 @@ -31512,7 +31502,7 @@ #: sc/uiconfig/scalc/ui/textimportcsv.ui:728 msgctxt "textimportcsv|textcolumntype" msgid "Column t_ype:" -msgstr "_Kolonnetype:" +msgstr "Kolonnetype:" #. XDFnr #: sc/uiconfig/scalc/ui/textimportcsv.ui:744 @@ -31578,7 +31568,7 @@ #: sc/uiconfig/scalc/ui/texttransformationentry.ui:22 msgctxt "texttransformationentry|name" msgid "Text Transformation" -msgstr "Text Transformasjon" +msgstr "Tekst Transformasjon" #. TKgWB #: sc/uiconfig/scalc/ui/texttransformationentry.ui:39 @@ -31626,7 +31616,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:35 msgctxt "tpviewpage|formula" msgid "_Formulas" -msgstr "_Formler" +msgstr "Formler" #. NZfqW #: sc/uiconfig/scalc/ui/tpviewpage.ui:44 @@ -31638,7 +31628,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:55 msgctxt "tpviewpage|nil" msgid "Zero val_ues" -msgstr "_Nullverdier" +msgstr "Nullverdier" #. p3GbC #: sc/uiconfig/scalc/ui/tpviewpage.ui:64 @@ -31650,7 +31640,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:75 msgctxt "tpviewpage|annot" msgid "_Comment indicator" -msgstr "_Merknadsmerke" +msgstr "Merknadsmerke" #. gbz6Y #: sc/uiconfig/scalc/ui/tpviewpage.ui:84 @@ -31662,19 +31652,19 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:95 msgctxt "tpviewpage|value" msgid "Value h_ighlighting" -msgstr "_Uthev verdi" +msgstr "Uthev verdi" #. Ve6Bg #: sc/uiconfig/scalc/ui/tpviewpage.ui:104 msgctxt "extended_tip|value" msgid "Mark the Value highlighting box to show the cell contents in different colors, depending on type. Text cells are formatted in black, formulas in green, number cells in blue, and protected cells are shown with light grey background, no matter how their display is formatted." -msgstr "Marker Uthev Verdi boksen for å vise celleinneholdet, avhengig av type, i ulike farger. Tekstceller er formatert i svart, formler i grønt, tallceller i blått og beskyttede celle visesmed en lysegrå bakgrunn, uansett hvordanvisningen der4es er satt." +msgstr "Marker Uthev Verdi boksen for å vise celleinneholdet, avhengig av type, i ulike farger. Tekstceller er formatert i svart, formler i grønt, tallceller i blått og beskyttede celle vises med en lysegrå bakgrunn, uansett hvordan visningen er satt." #. ah84V #: sc/uiconfig/scalc/ui/tpviewpage.ui:115 msgctxt "tpviewpage|anchor" msgid "_Anchor" -msgstr "_Anker" +msgstr "Anker" #. B5SJi #: sc/uiconfig/scalc/ui/tpviewpage.ui:124 @@ -31686,19 +31676,19 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:135 msgctxt "tpviewpage|clipmark" msgid "Te_xt overflow" -msgstr "Tekst_overflyt" +msgstr "Tekstoverflyt" #. qSy8Z #: sc/uiconfig/scalc/ui/tpviewpage.ui:144 msgctxt "extended_tip|clipmark" msgid "If a cell contains text that is wider than the width of the cell, the text is displayed over empty neighboring cells in the same row. If there is no empty neighboring cell, a small triangle at the cell border indicates that the text continues." -msgstr " Hvis en celle inneholder tekst som går ut over cellens bredde, vil teksten flyte over i neste tomme celle på samme rad. Hvis den neste cella ikke er tom, vises en liten trekant i kanten av cella for vise at den inneholder tekst som ikke vises." +msgstr "Hvis en celle inneholder tekst som går ut over cellens bredde, vil teksten flyte over i neste tomme celle på samme rad. Hvis den neste cella ikke er tom, vises en liten trekant i kanten av cellen for vise at den inneholder tekst som ikke vises." #. aqEWS #: sc/uiconfig/scalc/ui/tpviewpage.ui:155 msgctxt "tpviewpage|rangefind" msgid "_Show references in color" -msgstr "Vis _referanser i farger" +msgstr "Vis referanser i farger" #. hSxKG #: sc/uiconfig/scalc/ui/tpviewpage.ui:164 @@ -31716,7 +31706,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:212 msgctxt "tpviewpage|rowcolheader" msgid "Colu_mn/row headers" -msgstr "_Kolonne- og radoverskrifter" +msgstr "Kolonne- og radoverskrifter" #. sF7Bk #: sc/uiconfig/scalc/ui/tpviewpage.ui:221 @@ -31728,7 +31718,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:232 msgctxt "tpviewpage|hscroll" msgid "Hori_zontal scroll bar" -msgstr "_Vannrett rullefelt" +msgstr "Horisontalt rullefelt" #. EpixW #: sc/uiconfig/scalc/ui/tpviewpage.ui:241 @@ -31740,19 +31730,19 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:252 msgctxt "tpviewpage|vscroll" msgid "_Vertical scroll bar" -msgstr "_Loddrett rullefelt" +msgstr "Vertikalt rullefelt" #. yhyGB #: sc/uiconfig/scalc/ui/tpviewpage.ui:261 msgctxt "extended_tip|vscroll" msgid "Specifies whether to display a vertical scrollbar at the right of the document window." -msgstr " Angir om et loddrett rullefelt skal vises til høyre i dokumentvinduet." +msgstr "Angir om et vertikalt rullefelt skal vises til høyre i dokumentvinduet." #. rPmMd #: sc/uiconfig/scalc/ui/tpviewpage.ui:272 msgctxt "tpviewpage|tblreg" msgid "Sh_eet tabs" -msgstr "_Arkfaner" +msgstr "Arkfaner" #. aBrX6 #: sc/uiconfig/scalc/ui/tpviewpage.ui:281 @@ -31764,7 +31754,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:292 msgctxt "tpviewpage|outline" msgid "_Outline symbols" -msgstr "_Disposisjonssymbol" +msgstr "Disposisjonssymbol" #. hhB5n #: sc/uiconfig/scalc/ui/tpviewpage.ui:301 @@ -31788,7 +31778,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:360 msgctxt "tpviewpage|synczoom" msgid "S_ynchronize sheets" -msgstr "_Synkroniser ark" +msgstr "Synkroniser ark" #. C5GAq #: sc/uiconfig/scalc/ui/tpviewpage.ui:369 @@ -31812,13 +31802,13 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:443 msgctxt "tpviewpage|grid_label" msgid "_Grid lines:" -msgstr "_Rutenettlinjer:" +msgstr "Rutenettlinjer:" #. E2U6D #: sc/uiconfig/scalc/ui/tpviewpage.ui:457 msgctxt "tpviewpage|color_label" msgid "_Color:" -msgstr "_Farge:" +msgstr "Farge:" #. BUibB #: sc/uiconfig/scalc/ui/tpviewpage.ui:472 @@ -31848,7 +31838,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:495 msgctxt "tpviewpage|break" msgid "_Page breaks" -msgstr "_Sidebryting" +msgstr "Sidebryting" #. Vc5tW #: sc/uiconfig/scalc/ui/tpviewpage.ui:504 @@ -31860,7 +31850,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:515 msgctxt "tpviewpage|guideline" msgid "Helplines _while moving" -msgstr "_Hjelpelinjer ved flytting" +msgstr "Hjelpelinjer ved flytting" #. KGEQG #: sc/uiconfig/scalc/ui/tpviewpage.ui:524 @@ -31878,19 +31868,19 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:576 msgctxt "tpviewpage|objgrf_label" msgid "Ob_jects/Images:" -msgstr "_Objekter/bilder:" +msgstr "Objekter/bilder:" #. BCaDn #: sc/uiconfig/scalc/ui/tpviewpage.ui:590 msgctxt "tpviewpage|diagram_label" msgid "Cha_rts:" -msgstr "_Diagrammer:" +msgstr "Diagrammer:" #. q544D #: sc/uiconfig/scalc/ui/tpviewpage.ui:604 msgctxt "tpviewpage|draw_label" msgid "_Drawing objects:" -msgstr "_Tegneobjekter:" +msgstr "Tegneobjekter:" #. mpELg #: sc/uiconfig/scalc/ui/tpviewpage.ui:619 @@ -32004,7 +31994,7 @@ #: sc/uiconfig/scalc/ui/ttestdialog.ui:322 msgctxt "ttestdialog|extended_tip|TTestDialog" msgid "Calculates the paired t-Test of two data samples." -msgstr "" +msgstr "Beregner den parrede T-testen på to dataprøver." #. ccFZ3 #: sc/uiconfig/scalc/ui/ungroupdialog.ui:8 @@ -32016,13 +32006,13 @@ #: sc/uiconfig/scalc/ui/ungroupdialog.ui:99 msgctxt "ungroupdialog|rows" msgid "_Rows" -msgstr "_Rader" +msgstr "Rader" #. GMCxr #: sc/uiconfig/scalc/ui/ungroupdialog.ui:116 msgctxt "ungroupdialog|cols" msgid "_Columns" -msgstr "_Kolonner" +msgstr "Kolonner" #. h7unP #: sc/uiconfig/scalc/ui/ungroupdialog.ui:140 @@ -32034,13 +32024,13 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:18 msgctxt "validationcriteriapage|label1" msgid "_Allow:" -msgstr "_Tillat:" +msgstr "Tillat:" #. bTnDJ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:32 msgctxt "validationcriteriapage|valueft" msgid "_Data:" -msgstr "_Data:" +msgstr "Data:" #. suQcv #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:47 @@ -32154,13 +32144,13 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:84 msgctxt "validationcriteriapage|extended_tip|data" msgid "Select the comparative operator that you want to use." -msgstr "" +msgstr "Velg den komparative operatoren du vil bruke." #. RCFrD #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:97 msgctxt "validationcriteriapage|minft" msgid "_Minimum:" -msgstr "_Minimum:" +msgstr "Minimum:" #. McrSQ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:129 @@ -32178,43 +32168,43 @@ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:193 msgctxt "validationcriteriapage|maxft" msgid "Ma_ximum:" -msgstr "Ma_ksimum:" +msgstr "Maksimum:" #. cQo5d #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:205 msgctxt "validationcriteriapage|allowempty" msgid "Allow _empty cells" -msgstr "Tillat _tomme celler" +msgstr "Tillat tomme celler" #. gMyAs #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:214 msgctxt "validationcriteriapage|extended_tip|allowempty" msgid "In conjunction with Tools - Detective - Mark invalid Data, this defines that blank cells are shown as invalid data (disabled) or not (enabled)." -msgstr "" +msgstr "I forbindelse med verktøy - Detektiv - Merk ugyldige data, definerer dette at tomme celler vises som ugyldige data (deaktivert) eller ikke (aktivert)." #. tsgJF #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:225 msgctxt "validationcriteriapage|showlist" msgid "Show selection _list" -msgstr "Vis utvalgs_liste" +msgstr "Vis utvalgsliste" #. S8X7y #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:234 msgctxt "validationcriteriapage|extended_tip|showlist" msgid "Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D." -msgstr "" +msgstr "Viser en liste over alle gyldige strenger eller verdier som skal velges fra. Listen kan også åpnes ved å velge cellen og trykke Ctrl + D." #. vwNGC #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:245 msgctxt "validationcriteriapage|sortascend" msgid "Sor_t entries ascending" -msgstr "Sor_ter oppføringer stigende" +msgstr "Sorter oppføringer stigende" #. zejAE #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:256 msgctxt "validationcriteriapage|extended_tip|sortascend" msgid "Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken." -msgstr "Kryss av for å sortere utvalgslista i stigende rekkefølge og filtrere bort kopier. Hvis du ikke tar i bruk dette valget, vil rekkefølgen fra datakilden bli brukt." +msgstr "Kryss av for å sortere utvalgslisten i stigende rekkefølge og filtrere bort kopier. Hvis du ikke tar i bruk dette valget, vil rekkefølgen fra datakilden bli brukt." #. 96jcJ #: sc/uiconfig/scalc/ui/validationcriteriapage.ui:269 @@ -32262,7 +32252,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:15 msgctxt "validationhelptabpage-mobile|tsbhelp" msgid "_Show input help when cell is selected" -msgstr "" +msgstr "Vis input-hjelp når cellen er valgt" #. ZJEXj #: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:57 @@ -32274,19 +32264,19 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:71 msgctxt "validationhelptabpage-mobile|inputhelp_label" msgid "_Input help:" -msgstr "" +msgstr "Input-hjelp:" #. 4etq8 #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:15 msgctxt "validationhelptabpage|tsbhelp" msgid "_Show input help when cell is selected" -msgstr "_Vis hjelp for innskriving når cella er markert" +msgstr "Vis hjelp for innskriving når cellen er markert" #. ATCgp #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:26 msgctxt "validationhelptabpage|extended_tip|tsbhelp" msgid "Displays the message that you enter in the Contents box when the cell or cell range is selected in the sheet." -msgstr "Vis meldinga du har skrevet inn i Innhold-boksen når et celleområde blir merket i arket." +msgstr "Vis meldingen du har skrevet inn i Innhold-boksen når et celleområde blir merket i arket." #. 9NNLK #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:70 @@ -32298,19 +32288,19 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:83 msgctxt "validationhelptabpage|title_label" msgid "_Title:" -msgstr "_Tittel:" +msgstr "Tittel:" #. EHf6R #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:97 msgctxt "validationhelptabpage|inputhelp_label" msgid "_Input help:" -msgstr "_Innskrivingshjelp:" +msgstr "Innskrivingshjelp:" #. KTTfc #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:123 msgctxt "validationhelptabpage|extended_tip|inputhelp" msgid "Enter the message that you want to display when the cell or cell range is selected." -msgstr "Skriv inn meldinga som skal vises når celleområdet er merket." +msgstr "Skriv inn meldingen som skal vises når celleområdet er merket." #. epdvk #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:142 @@ -32322,7 +32312,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:157 msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage" msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet." -msgstr "Skriv inn meldinga som skal vises når celleområdet er merket i arket." +msgstr "Skriv inn meldingen som skal vises når celleområdet er merket i arket." #. pSFWN #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:23 @@ -32334,13 +32324,13 @@ #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:39 msgctxt "xmlsourcedialog|ok" msgid "_Import" -msgstr "_Importer" +msgstr "Importer" #. B5Q88 #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:116 msgctxt "xmlsourcedialog|selectsource|tooltip_text" msgid "Browse to set source file." -msgstr "Bla gjennom for å angi kildefila" +msgstr "Bla gjennom for å angi kildefilen" #. WkbPB #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:129 @@ -32370,7 +32360,7 @@ #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:312 msgctxt "xmlsourcedialog|extended_tip|XMLSourceDialog" msgid "Import XML data in a spreadsheet." -msgstr "" +msgstr "Importer XML-data inn i et regneark." #. 5ozTx #: sc/uiconfig/scalc/ui/ztestdialog.ui:99 @@ -32418,4 +32408,4 @@ #: sc/uiconfig/scalc/ui/ztestdialog.ui:322 msgctxt "ztestdialog|extended_tip|ZTestDialog" msgid "Calculates the z-Test of two data samples." -msgstr "" +msgstr "Beregner Z-testen på to datautdrag." diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/scaddins/messages.po libreoffice-7.1.3~rc2/translations/source/nb/scaddins/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/scaddins/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/scaddins/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-01-17 16:46+0100\n" -"PO-Revision-Date: 2020-02-22 17:15+0000\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1518600626.000000\n" #. i8Y7Z @@ -68,7 +68,7 @@ #: scaddins/inc/analysis.hrc:39 msgctxt "ANALYSIS_Yearfrac" msgid "Start date" -msgstr "startdato" +msgstr "Startdato" #. 7GV4n #: scaddins/inc/analysis.hrc:40 @@ -80,7 +80,7 @@ #: scaddins/inc/analysis.hrc:41 msgctxt "ANALYSIS_Yearfrac" msgid "End date" -msgstr "sluttdato" +msgstr "Sluttdato" #. 3uuGg #: scaddins/inc/analysis.hrc:42 @@ -92,7 +92,7 @@ #: scaddins/inc/analysis.hrc:43 msgctxt "ANALYSIS_Yearfrac" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. FYuwA #: scaddins/inc/analysis.hrc:44 @@ -110,7 +110,7 @@ #: scaddins/inc/analysis.hrc:50 msgctxt "ANALYSIS_Edate" msgid "Start date" -msgstr "startdato" +msgstr "Startdato" #. 7e2EC #: scaddins/inc/analysis.hrc:51 @@ -122,7 +122,7 @@ #: scaddins/inc/analysis.hrc:52 msgctxt "ANALYSIS_Edate" msgid "Months" -msgstr "måneder" +msgstr "Måneder" #. J7uDY #: scaddins/inc/analysis.hrc:53 @@ -137,14 +137,14 @@ "Returns the number of the calendar week in which the specified date occurs.\n" "This function exists for interoperability with older Microsoft Excel documents, for new documents use WEEKNUM instead." msgstr "" -"Returnerer nummeret på kalenderuka som den oppgjitte datoen finnes i.\n" +"Returnerer nummeret på kalenderuken som den oppgjitte datoen finnes i.\n" "Denne funksjonen finnes for å kunne samsvare med eldre Microsoft Excel-dokumenter. Bruk UKENR i nyere dokument." #. FRcij #: scaddins/inc/analysis.hrc:59 msgctxt "ANALYSIS_Weeknum" msgid "Date" -msgstr "dato" +msgstr "Dato" #. T6HMt #: scaddins/inc/analysis.hrc:60 @@ -156,13 +156,13 @@ #: scaddins/inc/analysis.hrc:61 msgctxt "ANALYSIS_Weeknum" msgid "Return type" -msgstr "ukestart" +msgstr "Returtype" #. EFAsX #: scaddins/inc/analysis.hrc:62 msgctxt "ANALYSIS_Weeknum" msgid "Indicates the first day of the week (1 = Sunday, 2 = Monday)" -msgstr "Bestemmer hva som er første dag i uka. (1 = søndag, andre verdier = mandag)" +msgstr "Bestemmer hva som er første dag i uken. (1 = søndag, andre verdier = mandag)" #. TALPy #: scaddins/inc/analysis.hrc:67 @@ -174,7 +174,7 @@ #: scaddins/inc/analysis.hrc:68 msgctxt "ANALYSIS_Eomonth" msgid "Start date" -msgstr "startdato" +msgstr "Startdato" #. FqaAT #: scaddins/inc/analysis.hrc:69 @@ -186,7 +186,7 @@ #: scaddins/inc/analysis.hrc:70 msgctxt "ANALYSIS_Eomonth" msgid "Months" -msgstr "måneder" +msgstr "Måneder" #. 8H8JR #: scaddins/inc/analysis.hrc:71 @@ -208,7 +208,7 @@ #: scaddins/inc/analysis.hrc:77 msgctxt "ANALYSIS_Networkdays" msgid "Start date" -msgstr "startdato" +msgstr "Startdato" #. Czzcp #: scaddins/inc/analysis.hrc:78 @@ -220,7 +220,7 @@ #: scaddins/inc/analysis.hrc:79 msgctxt "ANALYSIS_Networkdays" msgid "End date" -msgstr "sluttdato" +msgstr "Sluttdato" #. cacTJ #: scaddins/inc/analysis.hrc:80 @@ -232,7 +232,7 @@ #: scaddins/inc/analysis.hrc:81 msgctxt "ANALYSIS_Networkdays" msgid "Holidays" -msgstr "fridager" +msgstr "Fridager" #. DGoVo #: scaddins/inc/analysis.hrc:82 @@ -250,7 +250,7 @@ #: scaddins/inc/analysis.hrc:88 msgctxt "ANALYSIS_Iseven" msgid "Number" -msgstr "tall" +msgstr "Tall" #. 5Leuj #: scaddins/inc/analysis.hrc:89 @@ -268,7 +268,7 @@ #: scaddins/inc/analysis.hrc:95 msgctxt "ANALYSIS_Isodd" msgid "Number" -msgstr "tall" +msgstr "Tall" #. iA6wW #: scaddins/inc/analysis.hrc:96 @@ -340,7 +340,7 @@ #: scaddins/inc/analysis.hrc:115 msgctxt "ANALYSIS_Seriessum" msgid "Coefficients" -msgstr "koeffisienter" +msgstr "Koeffisienter" #. QdPXG #: scaddins/inc/analysis.hrc:116 @@ -358,7 +358,7 @@ #: scaddins/inc/analysis.hrc:122 msgctxt "ANALYSIS_Quotient" msgid "Numerator" -msgstr "teller" +msgstr "Teller" #. WgEXb #: scaddins/inc/analysis.hrc:123 @@ -370,7 +370,7 @@ #: scaddins/inc/analysis.hrc:124 msgctxt "ANALYSIS_Quotient" msgid "Denominator" -msgstr "nevner" +msgstr "Nevner" #. 2E6cp #: scaddins/inc/analysis.hrc:125 @@ -388,7 +388,7 @@ #: scaddins/inc/analysis.hrc:131 msgctxt "ANALYSIS_Mround" msgid "Number" -msgstr "tall" +msgstr "Tall" #. sDrGj #: scaddins/inc/analysis.hrc:132 @@ -400,7 +400,7 @@ #: scaddins/inc/analysis.hrc:133 msgctxt "ANALYSIS_Mround" msgid "Multiple" -msgstr "multiplum" +msgstr "Multiplum" #. ZEA49 #: scaddins/inc/analysis.hrc:134 @@ -412,13 +412,13 @@ #: scaddins/inc/analysis.hrc:139 msgctxt "ANALYSIS_Sqrtpi" msgid "Returns the square root of a number which has been multiplied by pi" -msgstr "Gir kvadratrota av et tall som er blitt multiplisert med pi" +msgstr "Gir kvadratroten av et tall som er blitt multiplisert med pi" #. Lv7nj #: scaddins/inc/analysis.hrc:140 msgctxt "ANALYSIS_Sqrtpi" msgid "Number" -msgstr "tall" +msgstr "Tall" #. CeYwQ #: scaddins/inc/analysis.hrc:141 @@ -436,7 +436,7 @@ #: scaddins/inc/analysis.hrc:147 msgctxt "ANALYSIS_Randbetween" msgid "Bottom" -msgstr "nedre" +msgstr "Nedre" #. YnrHL #: scaddins/inc/analysis.hrc:148 @@ -448,7 +448,7 @@ #: scaddins/inc/analysis.hrc:149 msgctxt "ANALYSIS_Randbetween" msgid "Top" -msgstr "øvre" +msgstr "Øvre" #. Bm3ys #: scaddins/inc/analysis.hrc:150 @@ -630,7 +630,7 @@ #: scaddins/inc/analysis.hrc:206 msgctxt "ANALYSIS_Bin2Oct" msgid "Number" -msgstr "tall" +msgstr "Tall" #. 7VHBt #: scaddins/inc/analysis.hrc:207 @@ -642,7 +642,7 @@ #: scaddins/inc/analysis.hrc:208 msgctxt "ANALYSIS_Bin2Oct" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. LiNBV #: scaddins/inc/analysis.hrc:209 @@ -660,7 +660,7 @@ #: scaddins/inc/analysis.hrc:215 msgctxt "ANALYSIS_Bin2Dec" msgid "Number" -msgstr "tall" +msgstr "Tall" #. zhTSU #: scaddins/inc/analysis.hrc:216 @@ -678,7 +678,7 @@ #: scaddins/inc/analysis.hrc:222 msgctxt "ANALYSIS_Bin2Hex" msgid "Number" -msgstr "tall" +msgstr "Tall" #. 4hFHM #: scaddins/inc/analysis.hrc:223 @@ -690,7 +690,7 @@ #: scaddins/inc/analysis.hrc:224 msgctxt "ANALYSIS_Bin2Hex" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. 6udAp #: scaddins/inc/analysis.hrc:225 @@ -708,7 +708,7 @@ #: scaddins/inc/analysis.hrc:231 msgctxt "ANALYSIS_Oct2Bin" msgid "Number" -msgstr "tall" +msgstr "Tall" #. 5w4EQ #: scaddins/inc/analysis.hrc:232 @@ -720,7 +720,7 @@ #: scaddins/inc/analysis.hrc:233 msgctxt "ANALYSIS_Oct2Bin" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. kCW4V #: scaddins/inc/analysis.hrc:234 @@ -738,7 +738,7 @@ #: scaddins/inc/analysis.hrc:240 msgctxt "ANALYSIS_Oct2Dec" msgid "Number" -msgstr "tall" +msgstr "Tall" #. zLrSk #: scaddins/inc/analysis.hrc:241 @@ -756,7 +756,7 @@ #: scaddins/inc/analysis.hrc:247 msgctxt "ANALYSIS_Oct2Hex" msgid "Number" -msgstr "tall" +msgstr "Tall" #. 4x496 #: scaddins/inc/analysis.hrc:248 @@ -768,7 +768,7 @@ #: scaddins/inc/analysis.hrc:249 msgctxt "ANALYSIS_Oct2Hex" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. hQBE9 #: scaddins/inc/analysis.hrc:250 @@ -786,7 +786,7 @@ #: scaddins/inc/analysis.hrc:256 msgctxt "ANALYSIS_Dec2Bin" msgid "Number" -msgstr "tall" +msgstr "Tall" #. P2TDB #: scaddins/inc/analysis.hrc:257 @@ -798,7 +798,7 @@ #: scaddins/inc/analysis.hrc:258 msgctxt "ANALYSIS_Dec2Bin" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. 28ABT #: scaddins/inc/analysis.hrc:259 @@ -816,7 +816,7 @@ #: scaddins/inc/analysis.hrc:265 msgctxt "ANALYSIS_Dec2Hex" msgid "Number" -msgstr "tall" +msgstr "Tall" #. 5n8FE #: scaddins/inc/analysis.hrc:266 @@ -828,7 +828,7 @@ #: scaddins/inc/analysis.hrc:267 msgctxt "ANALYSIS_Dec2Hex" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. NCx7B #: scaddins/inc/analysis.hrc:268 @@ -846,7 +846,7 @@ #: scaddins/inc/analysis.hrc:274 msgctxt "ANALYSIS_Dec2Oct" msgid "Number" -msgstr "tall" +msgstr "Tall" #. mkJD7 #: scaddins/inc/analysis.hrc:275 @@ -858,7 +858,7 @@ #: scaddins/inc/analysis.hrc:276 msgctxt "ANALYSIS_Dec2Oct" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. BLtWE #: scaddins/inc/analysis.hrc:277 @@ -876,7 +876,7 @@ #: scaddins/inc/analysis.hrc:283 msgctxt "ANALYSIS_Hex2Bin" msgid "Number" -msgstr "tall" +msgstr "Tall" #. bma9X #: scaddins/inc/analysis.hrc:284 @@ -888,7 +888,7 @@ #: scaddins/inc/analysis.hrc:285 msgctxt "ANALYSIS_Hex2Bin" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. gtR6H #: scaddins/inc/analysis.hrc:286 @@ -906,7 +906,7 @@ #: scaddins/inc/analysis.hrc:292 msgctxt "ANALYSIS_Hex2Dec" msgid "Number" -msgstr "tall" +msgstr "Tall" #. foYtA #: scaddins/inc/analysis.hrc:293 @@ -924,7 +924,7 @@ #: scaddins/inc/analysis.hrc:299 msgctxt "ANALYSIS_Hex2Oct" msgid "Number" -msgstr "tall" +msgstr "Tall" #. BEXPZ #: scaddins/inc/analysis.hrc:300 @@ -936,7 +936,7 @@ #: scaddins/inc/analysis.hrc:301 msgctxt "ANALYSIS_Hex2Oct" msgid "Places" -msgstr "plasser" +msgstr "Plasser" #. xZoiU #: scaddins/inc/analysis.hrc:302 @@ -954,7 +954,7 @@ #: scaddins/inc/analysis.hrc:308 msgctxt "ANALYSIS_Delta" msgid "Number 1" -msgstr "tall 1" +msgstr "Tall 1" #. o2jAx #: scaddins/inc/analysis.hrc:309 @@ -966,7 +966,7 @@ #: scaddins/inc/analysis.hrc:310 msgctxt "ANALYSIS_Delta" msgid "Number 2" -msgstr "tall 2" +msgstr "Tall 2" #. 24Q6Q #: scaddins/inc/analysis.hrc:311 @@ -984,7 +984,7 @@ #: scaddins/inc/analysis.hrc:317 msgctxt "ANALYSIS_Erf" msgid "Lower limit" -msgstr "nedre grense" +msgstr "Nedre grense" #. 7ZXpf #: scaddins/inc/analysis.hrc:318 @@ -996,7 +996,7 @@ #: scaddins/inc/analysis.hrc:319 msgctxt "ANALYSIS_Erf" msgid "Upper limit" -msgstr "øvre grense" +msgstr "Øvre grense" #. kJDCG #: scaddins/inc/analysis.hrc:320 @@ -1014,7 +1014,7 @@ #: scaddins/inc/analysis.hrc:326 msgctxt "ANALYSIS_Erfc" msgid "Lower limit" -msgstr "nedre grense" +msgstr "Nedre grense" #. anWFy #: scaddins/inc/analysis.hrc:327 @@ -1032,7 +1032,7 @@ #: scaddins/inc/analysis.hrc:333 msgctxt "ANALYSIS_Gestep" msgid "Number" -msgstr "tall" +msgstr "Tall" #. TDJRQ #: scaddins/inc/analysis.hrc:334 @@ -1044,7 +1044,7 @@ #: scaddins/inc/analysis.hrc:335 msgctxt "ANALYSIS_Gestep" msgid "Step" -msgstr "steg" +msgstr "Steg" #. ckg2G #: scaddins/inc/analysis.hrc:336 @@ -1062,7 +1062,7 @@ #: scaddins/inc/analysis.hrc:342 msgctxt "ANALYSIS_Factdouble" msgid "Number" -msgstr "tall" +msgstr "Tall" #. djbUr #: scaddins/inc/analysis.hrc:343 @@ -1080,7 +1080,7 @@ #: scaddins/inc/analysis.hrc:349 msgctxt "ANALYSIS_Imabs" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. 7FEET #: scaddins/inc/analysis.hrc:350 @@ -1098,7 +1098,7 @@ #: scaddins/inc/analysis.hrc:356 msgctxt "ANALYSIS_Imaginary" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. 3LSzF #: scaddins/inc/analysis.hrc:357 @@ -1110,13 +1110,13 @@ #: scaddins/inc/analysis.hrc:362 msgctxt "ANALYSIS_Impower" msgid "Returns a complex number raised to a real power" -msgstr "Gir ei komplekst tall opphøyd i en reell talleksponent" +msgstr "Gir et komplekst tall opphøyd i en reell talleksponent" #. vH6oX #: scaddins/inc/analysis.hrc:363 msgctxt "ANALYSIS_Impower" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. wEvDA #: scaddins/inc/analysis.hrc:364 @@ -1128,7 +1128,7 @@ #: scaddins/inc/analysis.hrc:365 msgctxt "ANALYSIS_Impower" msgid "Number" -msgstr "tall" +msgstr "Tall" #. DKopE #: scaddins/inc/analysis.hrc:366 @@ -1146,7 +1146,7 @@ #: scaddins/inc/analysis.hrc:372 msgctxt "ANALYSIS_Imargument" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. CDHUJ #: scaddins/inc/analysis.hrc:373 @@ -1164,7 +1164,7 @@ #: scaddins/inc/analysis.hrc:379 msgctxt "ANALYSIS_Imcos" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. BpCdA #: scaddins/inc/analysis.hrc:380 @@ -1182,7 +1182,7 @@ #: scaddins/inc/analysis.hrc:386 msgctxt "ANALYSIS_Imdiv" msgid "Numerator" -msgstr "teller" +msgstr "Teller" #. GwcS8 #: scaddins/inc/analysis.hrc:387 @@ -1194,7 +1194,7 @@ #: scaddins/inc/analysis.hrc:388 msgctxt "ANALYSIS_Imdiv" msgid "Denominator" -msgstr "nevner" +msgstr "Nevner" #. puYEd #: scaddins/inc/analysis.hrc:389 @@ -1212,7 +1212,7 @@ #: scaddins/inc/analysis.hrc:395 msgctxt "ANALYSIS_Imexp" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. dXrMr #: scaddins/inc/analysis.hrc:396 @@ -1230,7 +1230,7 @@ #: scaddins/inc/analysis.hrc:402 msgctxt "ANALYSIS_Imconjugate" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. C33bu #: scaddins/inc/analysis.hrc:403 @@ -1248,7 +1248,7 @@ #: scaddins/inc/analysis.hrc:409 msgctxt "ANALYSIS_Imln" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. Fj3gK #: scaddins/inc/analysis.hrc:410 @@ -1266,7 +1266,7 @@ #: scaddins/inc/analysis.hrc:416 msgctxt "ANALYSIS_Imlog10" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. NxEuG #: scaddins/inc/analysis.hrc:417 @@ -1284,7 +1284,7 @@ #: scaddins/inc/analysis.hrc:423 msgctxt "ANALYSIS_Imlog2" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. GBNLB #: scaddins/inc/analysis.hrc:424 @@ -1326,7 +1326,7 @@ #: scaddins/inc/analysis.hrc:439 msgctxt "ANALYSIS_Imreal" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. EQfzC #: scaddins/inc/analysis.hrc:440 @@ -1344,7 +1344,7 @@ #: scaddins/inc/analysis.hrc:446 msgctxt "ANALYSIS_Imsin" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. tUQLg #: scaddins/inc/analysis.hrc:447 @@ -1374,13 +1374,13 @@ #: scaddins/inc/analysis.hrc:461 msgctxt "ANALYSIS_Imsqrt" msgid "Returns the square root of a complex number" -msgstr "Gir kvadratrota av et komplekst tall" +msgstr "Gir kvadratroten av et komplekst tall" #. 325Y7 #: scaddins/inc/analysis.hrc:462 msgctxt "ANALYSIS_Imsqrt" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. K7zAa #: scaddins/inc/analysis.hrc:463 @@ -1398,7 +1398,7 @@ #: scaddins/inc/analysis.hrc:469 msgctxt "ANALYSIS_Imsum" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. BbudP #: scaddins/inc/analysis.hrc:470 @@ -1416,7 +1416,7 @@ #: scaddins/inc/analysis.hrc:476 msgctxt "ANALYSIS_Imtan" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. sFDp2 #: scaddins/inc/analysis.hrc:477 @@ -1434,7 +1434,7 @@ #: scaddins/inc/analysis.hrc:483 msgctxt "ANALYSIS_Imsec" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. 4Z6HL #: scaddins/inc/analysis.hrc:484 @@ -1452,7 +1452,7 @@ #: scaddins/inc/analysis.hrc:490 msgctxt "ANALYSIS_Imcsc" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. RCDTn #: scaddins/inc/analysis.hrc:491 @@ -1470,7 +1470,7 @@ #: scaddins/inc/analysis.hrc:497 msgctxt "ANALYSIS_Imcot" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. gRdSa #: scaddins/inc/analysis.hrc:498 @@ -1488,7 +1488,7 @@ #: scaddins/inc/analysis.hrc:504 msgctxt "ANALYSIS_Imsinh" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. Ft4eA #: scaddins/inc/analysis.hrc:505 @@ -1506,7 +1506,7 @@ #: scaddins/inc/analysis.hrc:511 msgctxt "ANALYSIS_Imcosh" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. 3BT8u #: scaddins/inc/analysis.hrc:512 @@ -1524,7 +1524,7 @@ #: scaddins/inc/analysis.hrc:518 msgctxt "ANALYSIS_Imsech" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. tfsdn #: scaddins/inc/analysis.hrc:519 @@ -1542,7 +1542,7 @@ #: scaddins/inc/analysis.hrc:525 msgctxt "ANALYSIS_Imcsch" msgid "Complex number" -msgstr "komplekst tall" +msgstr "Komplekst tall" #. 7PCdM #: scaddins/inc/analysis.hrc:526 @@ -1560,7 +1560,7 @@ #: scaddins/inc/analysis.hrc:532 msgctxt "ANALYSIS_Complex" msgid "Real num" -msgstr "realdel" +msgstr "Realdel" #. DQTvR #: scaddins/inc/analysis.hrc:533 @@ -1572,7 +1572,7 @@ #: scaddins/inc/analysis.hrc:534 msgctxt "ANALYSIS_Complex" msgid "I num" -msgstr "imaginærdel" +msgstr "Imaginærdel" #. inbAf #: scaddins/inc/analysis.hrc:535 @@ -1584,7 +1584,7 @@ #: scaddins/inc/analysis.hrc:536 msgctxt "ANALYSIS_Complex" msgid "Suffix" -msgstr "endelse" +msgstr "Endelse" #. C2DAm #: scaddins/inc/analysis.hrc:537 @@ -1602,7 +1602,7 @@ #: scaddins/inc/analysis.hrc:543 msgctxt "ANALYSIS_Convert" msgid "Number" -msgstr "tall" +msgstr "Tall" #. McwQs #: scaddins/inc/analysis.hrc:544 @@ -1614,7 +1614,7 @@ #: scaddins/inc/analysis.hrc:545 msgctxt "ANALYSIS_Convert" msgid "From unit" -msgstr "fra enhet" +msgstr "Fra enhet" #. CmzfS #: scaddins/inc/analysis.hrc:546 @@ -1626,7 +1626,7 @@ #: scaddins/inc/analysis.hrc:547 msgctxt "ANALYSIS_Convert" msgid "To unit" -msgstr "til enhet" +msgstr "Til enhet" #. JK6n8 #: scaddins/inc/analysis.hrc:548 @@ -1638,13 +1638,13 @@ #: scaddins/inc/analysis.hrc:553 msgctxt "ANALYSIS_Amordegrc" msgid "Returns the prorated linear depreciation of an asset for each accounting period" -msgstr "Gir den lineære avskrivninga for en eiendel for hver regnskapsperiode" +msgstr "Gir den lineære avskrivningen for en eiendel for hver regnskapsperiode" #. KMGE5 #: scaddins/inc/analysis.hrc:554 msgctxt "ANALYSIS_Amordegrc" msgid "Cost" -msgstr "kostnad" +msgstr "Kostnad" #. TSz5q #: scaddins/inc/analysis.hrc:555 @@ -1656,7 +1656,7 @@ #: scaddins/inc/analysis.hrc:556 msgctxt "ANALYSIS_Amordegrc" msgid "Date purchased" -msgstr "innkjøpsdato" +msgstr "Innkjøpsdato" #. hVLrr #: scaddins/inc/analysis.hrc:557 @@ -1668,7 +1668,7 @@ #: scaddins/inc/analysis.hrc:558 msgctxt "ANALYSIS_Amordegrc" msgid "First period" -msgstr "første periode" +msgstr "Første periode" #. n2TqV #: scaddins/inc/analysis.hrc:559 @@ -1680,7 +1680,7 @@ #: scaddins/inc/analysis.hrc:560 msgctxt "ANALYSIS_Amordegrc" msgid "Salvage" -msgstr "restverdi" +msgstr "Restverdi" #. 6E8rp #: scaddins/inc/analysis.hrc:561 @@ -1692,7 +1692,7 @@ #: scaddins/inc/analysis.hrc:562 msgctxt "ANALYSIS_Amordegrc" msgid "Period" -msgstr "periode" +msgstr "Periode" #. kAhDP #: scaddins/inc/analysis.hrc:563 @@ -1704,19 +1704,19 @@ #: scaddins/inc/analysis.hrc:564 msgctxt "ANALYSIS_Amordegrc" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. oBich #: scaddins/inc/analysis.hrc:565 msgctxt "ANALYSIS_Amordegrc" msgid "The rate of depreciation" -msgstr "Avskrivningsrenta" +msgstr "Avskrivningsrenten" #. 3Tb5d #: scaddins/inc/analysis.hrc:566 msgctxt "ANALYSIS_Amordegrc" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. xrJmg #: scaddins/inc/analysis.hrc:567 @@ -1728,13 +1728,13 @@ #: scaddins/inc/analysis.hrc:572 msgctxt "ANALYSIS_Amorlinc" msgid "Returns the prorated linear depreciation of an asset for each accounting period" -msgstr "Gir den lineære avskrivninga for en eiendel for hver regnskapsperiode" +msgstr "Gir den lineære avskrivningen for en eiendel for hver regnskapsperiode" #. LM4Go #: scaddins/inc/analysis.hrc:573 msgctxt "ANALYSIS_Amorlinc" msgid "Cost" -msgstr "kostnad" +msgstr "Kostnad" #. AwpGy #: scaddins/inc/analysis.hrc:574 @@ -1758,7 +1758,7 @@ #: scaddins/inc/analysis.hrc:577 msgctxt "ANALYSIS_Amorlinc" msgid "First period" -msgstr "første periode" +msgstr "Første periode" #. 2WbBi #: scaddins/inc/analysis.hrc:578 @@ -1770,7 +1770,7 @@ #: scaddins/inc/analysis.hrc:579 msgctxt "ANALYSIS_Amorlinc" msgid "Salvage" -msgstr "restverdi" +msgstr "Restverdi" #. YquuG #: scaddins/inc/analysis.hrc:580 @@ -1782,7 +1782,7 @@ #: scaddins/inc/analysis.hrc:581 msgctxt "ANALYSIS_Amorlinc" msgid "Period" -msgstr "periode" +msgstr "Periode" #. SRXzm #: scaddins/inc/analysis.hrc:582 @@ -1794,19 +1794,19 @@ #: scaddins/inc/analysis.hrc:583 msgctxt "ANALYSIS_Amorlinc" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. 3MHfk #: scaddins/inc/analysis.hrc:584 msgctxt "ANALYSIS_Amorlinc" msgid "The rate of depreciation" -msgstr "Avskrivningsrenta" +msgstr "Avskrivningsrenten" #. JnU3C #: scaddins/inc/analysis.hrc:585 msgctxt "ANALYSIS_Amorlinc" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. FAoRu #: scaddins/inc/analysis.hrc:586 @@ -1824,7 +1824,7 @@ #: scaddins/inc/analysis.hrc:592 msgctxt "ANALYSIS_Accrint" msgid "Issue" -msgstr "utstedt" +msgstr "Utstedt" #. NTS7t #: scaddins/inc/analysis.hrc:593 @@ -1836,7 +1836,7 @@ #: scaddins/inc/analysis.hrc:594 msgctxt "ANALYSIS_Accrint" msgid "First interest" -msgstr "første rentedag" +msgstr "Første rentedag" #. ra6A6 #: scaddins/inc/analysis.hrc:595 @@ -1848,7 +1848,7 @@ #: scaddins/inc/analysis.hrc:596 msgctxt "ANALYSIS_Accrint" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. CCpX2 #: scaddins/inc/analysis.hrc:597 @@ -1860,7 +1860,7 @@ #: scaddins/inc/analysis.hrc:598 msgctxt "ANALYSIS_Accrint" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. BQFF6 #: scaddins/inc/analysis.hrc:599 @@ -1872,7 +1872,7 @@ #: scaddins/inc/analysis.hrc:600 msgctxt "ANALYSIS_Accrint" msgid "Par" -msgstr "nominell verdi" +msgstr "Nominell verdi" #. rbCba #: scaddins/inc/analysis.hrc:601 @@ -1884,7 +1884,7 @@ #: scaddins/inc/analysis.hrc:602 msgctxt "ANALYSIS_Accrint" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. 9JTGV #: scaddins/inc/analysis.hrc:603 @@ -1896,7 +1896,7 @@ #: scaddins/inc/analysis.hrc:604 msgctxt "ANALYSIS_Accrint" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. odtHJ #: scaddins/inc/analysis.hrc:605 @@ -1914,7 +1914,7 @@ #: scaddins/inc/analysis.hrc:611 msgctxt "ANALYSIS_Accrintm" msgid "Issue" -msgstr "utstedt" +msgstr "Utstedt" #. sVV6p #: scaddins/inc/analysis.hrc:612 @@ -1926,7 +1926,7 @@ #: scaddins/inc/analysis.hrc:613 msgctxt "ANALYSIS_Accrintm" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. Secv3 #: scaddins/inc/analysis.hrc:614 @@ -1938,19 +1938,19 @@ #: scaddins/inc/analysis.hrc:615 msgctxt "ANALYSIS_Accrintm" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. x7rGj #: scaddins/inc/analysis.hrc:616 msgctxt "ANALYSIS_Accrintm" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. BYdgX #: scaddins/inc/analysis.hrc:617 msgctxt "ANALYSIS_Accrintm" msgid "Par" -msgstr "nominell verdi" +msgstr "Nominell verdi" #. GsfKv #: scaddins/inc/analysis.hrc:618 @@ -1962,7 +1962,7 @@ #: scaddins/inc/analysis.hrc:619 msgctxt "ANALYSIS_Accrintm" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. kF8Ym #: scaddins/inc/analysis.hrc:620 @@ -1980,7 +1980,7 @@ #: scaddins/inc/analysis.hrc:626 msgctxt "ANALYSIS_Received" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. mGFLC #: scaddins/inc/analysis.hrc:627 @@ -1992,7 +1992,7 @@ #: scaddins/inc/analysis.hrc:628 msgctxt "ANALYSIS_Received" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. V8hKG #: scaddins/inc/analysis.hrc:629 @@ -2004,19 +2004,19 @@ #: scaddins/inc/analysis.hrc:630 msgctxt "ANALYSIS_Received" msgid "Investment" -msgstr "investering" +msgstr "Investering" #. nAyhe #: scaddins/inc/analysis.hrc:631 msgctxt "ANALYSIS_Received" msgid "The investment" -msgstr "Investeringa" +msgstr "Investeringen" #. d3Ceh #: scaddins/inc/analysis.hrc:632 msgctxt "ANALYSIS_Received" msgid "Discount" -msgstr "diskonto" +msgstr "Diskonto" #. 6nBDa #: scaddins/inc/analysis.hrc:633 @@ -2028,7 +2028,7 @@ #: scaddins/inc/analysis.hrc:634 msgctxt "ANALYSIS_Received" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. n8V8f #: scaddins/inc/analysis.hrc:635 @@ -2046,7 +2046,7 @@ #: scaddins/inc/analysis.hrc:641 msgctxt "ANALYSIS_Disc" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. 7gsU4 #: scaddins/inc/analysis.hrc:642 @@ -2058,7 +2058,7 @@ #: scaddins/inc/analysis.hrc:643 msgctxt "ANALYSIS_Disc" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. cgpKH #: scaddins/inc/analysis.hrc:644 @@ -2070,7 +2070,7 @@ #: scaddins/inc/analysis.hrc:645 msgctxt "ANALYSIS_Disc" msgid "Price" -msgstr "pris" +msgstr "Pris" #. 4zcZA #: scaddins/inc/analysis.hrc:646 @@ -2082,7 +2082,7 @@ #: scaddins/inc/analysis.hrc:647 msgctxt "ANALYSIS_Disc" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. rUAFp #: scaddins/inc/analysis.hrc:648 @@ -2094,7 +2094,7 @@ #: scaddins/inc/analysis.hrc:649 msgctxt "ANALYSIS_Disc" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. fyFYH #: scaddins/inc/analysis.hrc:650 @@ -2112,7 +2112,7 @@ #: scaddins/inc/analysis.hrc:656 msgctxt "ANALYSIS_Duration" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. RRTqq #: scaddins/inc/analysis.hrc:657 @@ -2124,7 +2124,7 @@ #: scaddins/inc/analysis.hrc:658 msgctxt "ANALYSIS_Duration" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. QqQL6 #: scaddins/inc/analysis.hrc:659 @@ -2136,31 +2136,31 @@ #: scaddins/inc/analysis.hrc:660 msgctxt "ANALYSIS_Duration" msgid "Coupon" -msgstr "kupong" +msgstr "Kupong" #. xjUZ4 #: scaddins/inc/analysis.hrc:661 msgctxt "ANALYSIS_Duration" msgid "The coupon rate" -msgstr "Kupongrenta" +msgstr "Kupongrenten" #. 52ySi #: scaddins/inc/analysis.hrc:662 msgctxt "ANALYSIS_Duration" msgid "Yield" -msgstr "avkastning" +msgstr "Avkastning" #. sFCVY #: scaddins/inc/analysis.hrc:663 msgctxt "ANALYSIS_Duration" msgid "The yield" -msgstr "Avkastninga" +msgstr "Avkastningen" #. jBqRb #: scaddins/inc/analysis.hrc:664 msgctxt "ANALYSIS_Duration" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. qRUS5 #: scaddins/inc/analysis.hrc:665 @@ -2172,7 +2172,7 @@ #: scaddins/inc/analysis.hrc:666 msgctxt "ANALYSIS_Duration" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. XFz2k #: scaddins/inc/analysis.hrc:667 @@ -2190,13 +2190,13 @@ #: scaddins/inc/analysis.hrc:673 msgctxt "ANALYSIS_Effect" msgid "Nominal rate" -msgstr "nominell rente" +msgstr "Nominell rente" #. hfb8Z #: scaddins/inc/analysis.hrc:674 msgctxt "ANALYSIS_Effect" msgid "The nominal rate" -msgstr "Den nominelle renta" +msgstr "Den nominelle renten" #. VADwy #: scaddins/inc/analysis.hrc:675 @@ -2220,13 +2220,13 @@ #: scaddins/inc/analysis.hrc:682 msgctxt "ANALYSIS_Cumprinc" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. BuDuA #: scaddins/inc/analysis.hrc:683 msgctxt "ANALYSIS_Cumprinc" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. xDD2q #: scaddins/inc/analysis.hrc:684 @@ -2244,7 +2244,7 @@ #: scaddins/inc/analysis.hrc:686 msgctxt "ANALYSIS_Cumprinc" msgid "Pv" -msgstr "nv" +msgstr "NV" #. gWQHA #: scaddins/inc/analysis.hrc:687 @@ -2256,7 +2256,7 @@ #: scaddins/inc/analysis.hrc:688 msgctxt "ANALYSIS_Cumprinc" msgid "Start period" -msgstr "startperiode" +msgstr "Startperiode" #. ip82j #: scaddins/inc/analysis.hrc:689 @@ -2268,7 +2268,7 @@ #: scaddins/inc/analysis.hrc:690 msgctxt "ANALYSIS_Cumprinc" msgid "End period" -msgstr "sluttperiode" +msgstr "Sluttperiode" #. esNY3 #: scaddins/inc/analysis.hrc:691 @@ -2280,7 +2280,7 @@ #: scaddins/inc/analysis.hrc:692 msgctxt "ANALYSIS_Cumprinc" msgid "Type" -msgstr "type" +msgstr "Type" #. XSN2Q #: scaddins/inc/analysis.hrc:693 @@ -2292,19 +2292,19 @@ #: scaddins/inc/analysis.hrc:698 msgctxt "ANALYSIS_Cumipmt" msgid "Returns the cumulative interest to be paid between two periods" -msgstr "Gir den kumulative renta som skal betales mellom to perioder" +msgstr "Gir den kumulative renten som skal betales mellom to perioder" #. nP89T #: scaddins/inc/analysis.hrc:699 msgctxt "ANALYSIS_Cumipmt" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. LDvLE #: scaddins/inc/analysis.hrc:700 msgctxt "ANALYSIS_Cumipmt" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. VVyzG #: scaddins/inc/analysis.hrc:701 @@ -2322,7 +2322,7 @@ #: scaddins/inc/analysis.hrc:703 msgctxt "ANALYSIS_Cumipmt" msgid "Pv" -msgstr "nv" +msgstr "NV" #. bkBtb #: scaddins/inc/analysis.hrc:704 @@ -2334,7 +2334,7 @@ #: scaddins/inc/analysis.hrc:705 msgctxt "ANALYSIS_Cumipmt" msgid "Start period" -msgstr "startperiode" +msgstr "Startperiode" #. GvCBp #: scaddins/inc/analysis.hrc:706 @@ -2346,7 +2346,7 @@ #: scaddins/inc/analysis.hrc:707 msgctxt "ANALYSIS_Cumipmt" msgid "End period" -msgstr "sluttperiode" +msgstr "Sluttperiode" #. 5UJw6 #: scaddins/inc/analysis.hrc:708 @@ -2358,7 +2358,7 @@ #: scaddins/inc/analysis.hrc:709 msgctxt "ANALYSIS_Cumipmt" msgid "Type" -msgstr "type" +msgstr "Type" #. Z9PdB #: scaddins/inc/analysis.hrc:710 @@ -2376,7 +2376,7 @@ #: scaddins/inc/analysis.hrc:716 msgctxt "ANALYSIS_Price" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. aHUcW #: scaddins/inc/analysis.hrc:717 @@ -2388,7 +2388,7 @@ #: scaddins/inc/analysis.hrc:718 msgctxt "ANALYSIS_Price" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. Cr9qy #: scaddins/inc/analysis.hrc:719 @@ -2400,31 +2400,31 @@ #: scaddins/inc/analysis.hrc:720 msgctxt "ANALYSIS_Price" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. 2G3n8 #: scaddins/inc/analysis.hrc:721 msgctxt "ANALYSIS_Price" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. KSvXC #: scaddins/inc/analysis.hrc:722 msgctxt "ANALYSIS_Price" msgid "Yield" -msgstr "avkastning" +msgstr "Avkastning" #. bCqEv #: scaddins/inc/analysis.hrc:723 msgctxt "ANALYSIS_Price" msgid "The yield" -msgstr "Avkastninga" +msgstr "Avkastningen" #. 7pvEy #: scaddins/inc/analysis.hrc:724 msgctxt "ANALYSIS_Price" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. Dsfq5 #: scaddins/inc/analysis.hrc:725 @@ -2436,7 +2436,7 @@ #: scaddins/inc/analysis.hrc:726 msgctxt "ANALYSIS_Price" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. hrTCp #: scaddins/inc/analysis.hrc:727 @@ -2448,7 +2448,7 @@ #: scaddins/inc/analysis.hrc:728 msgctxt "ANALYSIS_Price" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. oCXpa #: scaddins/inc/analysis.hrc:729 @@ -2466,7 +2466,7 @@ #: scaddins/inc/analysis.hrc:735 msgctxt "ANALYSIS_Pricedisc" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. uDBkT #: scaddins/inc/analysis.hrc:736 @@ -2478,7 +2478,7 @@ #: scaddins/inc/analysis.hrc:737 msgctxt "ANALYSIS_Pricedisc" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. o4quv #: scaddins/inc/analysis.hrc:738 @@ -2490,7 +2490,7 @@ #: scaddins/inc/analysis.hrc:739 msgctxt "ANALYSIS_Pricedisc" msgid "Discount" -msgstr "diskonto" +msgstr "Diskonto" #. DiCgM #: scaddins/inc/analysis.hrc:740 @@ -2502,7 +2502,7 @@ #: scaddins/inc/analysis.hrc:741 msgctxt "ANALYSIS_Pricedisc" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. AeFr3 #: scaddins/inc/analysis.hrc:742 @@ -2514,7 +2514,7 @@ #: scaddins/inc/analysis.hrc:743 msgctxt "ANALYSIS_Pricedisc" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. 5RLtD #: scaddins/inc/analysis.hrc:744 @@ -2532,7 +2532,7 @@ #: scaddins/inc/analysis.hrc:750 msgctxt "ANALYSIS_Pricemat" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. XZRFA #: scaddins/inc/analysis.hrc:751 @@ -2544,7 +2544,7 @@ #: scaddins/inc/analysis.hrc:752 msgctxt "ANALYSIS_Pricemat" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. WLHJv #: scaddins/inc/analysis.hrc:753 @@ -2556,7 +2556,7 @@ #: scaddins/inc/analysis.hrc:754 msgctxt "ANALYSIS_Pricemat" msgid "Issue" -msgstr "utstedt" +msgstr "Utstedt" #. vaGeW #: scaddins/inc/analysis.hrc:755 @@ -2568,31 +2568,31 @@ #: scaddins/inc/analysis.hrc:756 msgctxt "ANALYSIS_Pricemat" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. 4nq3N #: scaddins/inc/analysis.hrc:757 msgctxt "ANALYSIS_Pricemat" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. ANfdE #: scaddins/inc/analysis.hrc:758 msgctxt "ANALYSIS_Pricemat" msgid "Yield" -msgstr "avkastning" +msgstr "Avkastning" #. Vs9zb #: scaddins/inc/analysis.hrc:759 msgctxt "ANALYSIS_Pricemat" msgid "The yield" -msgstr "Avkastninga" +msgstr "Avkastningen" #. DNyAz #: scaddins/inc/analysis.hrc:760 msgctxt "ANALYSIS_Pricemat" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. ysLUw #: scaddins/inc/analysis.hrc:761 @@ -2610,7 +2610,7 @@ #: scaddins/inc/analysis.hrc:767 msgctxt "ANALYSIS_Mduration" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. 4EoD7 #: scaddins/inc/analysis.hrc:768 @@ -2622,7 +2622,7 @@ #: scaddins/inc/analysis.hrc:769 msgctxt "ANALYSIS_Mduration" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. bXwmZ #: scaddins/inc/analysis.hrc:770 @@ -2634,31 +2634,31 @@ #: scaddins/inc/analysis.hrc:771 msgctxt "ANALYSIS_Mduration" msgid "Coupon" -msgstr "kupong" +msgstr "Kupong" #. dnGTH #: scaddins/inc/analysis.hrc:772 msgctxt "ANALYSIS_Mduration" msgid "The coupon rate" -msgstr "Kupongrenta" +msgstr "Kupongrenten" #. trhNE #: scaddins/inc/analysis.hrc:773 msgctxt "ANALYSIS_Mduration" msgid "Yield" -msgstr "avkastning" +msgstr "Avkastning" #. 7J37r #: scaddins/inc/analysis.hrc:774 msgctxt "ANALYSIS_Mduration" msgid "The yield" -msgstr "Avkastninga" +msgstr "Avkastningen" #. FNZtq #: scaddins/inc/analysis.hrc:775 msgctxt "ANALYSIS_Mduration" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. DNJCc #: scaddins/inc/analysis.hrc:776 @@ -2670,7 +2670,7 @@ #: scaddins/inc/analysis.hrc:777 msgctxt "ANALYSIS_Mduration" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. LJAWe #: scaddins/inc/analysis.hrc:778 @@ -2688,13 +2688,13 @@ #: scaddins/inc/analysis.hrc:784 msgctxt "ANALYSIS_Nominal" msgid "Effective rate" -msgstr "effektiv rente" +msgstr "Effektiv rente" #. gBj7Q #: scaddins/inc/analysis.hrc:785 msgctxt "ANALYSIS_Nominal" msgid "The effective interest rate" -msgstr "Den effektive renta" +msgstr "Den effektive renten" #. s2F7k #: scaddins/inc/analysis.hrc:786 @@ -2718,7 +2718,7 @@ #: scaddins/inc/analysis.hrc:793 msgctxt "ANALYSIS_Dollarfr" msgid "Decimal dollar" -msgstr "desimalvaluta" +msgstr "Desimalvaluta" #. EPxfe #: scaddins/inc/analysis.hrc:794 @@ -2730,7 +2730,7 @@ #: scaddins/inc/analysis.hrc:795 msgctxt "ANALYSIS_Dollarfr" msgid "Fraction" -msgstr "brøk" +msgstr "Brøk" #. FFDgq #: scaddins/inc/analysis.hrc:796 @@ -2748,7 +2748,7 @@ #: scaddins/inc/analysis.hrc:802 msgctxt "ANALYSIS_Dollarde" msgid "Fractional dollar" -msgstr "brøkvaluta" +msgstr "Brøkvaluta" #. do6jV #: scaddins/inc/analysis.hrc:803 @@ -2760,7 +2760,7 @@ #: scaddins/inc/analysis.hrc:804 msgctxt "ANALYSIS_Dollarde" msgid "Fraction" -msgstr "brøk" +msgstr "Brøk" #. tXcaR #: scaddins/inc/analysis.hrc:805 @@ -2772,13 +2772,13 @@ #: scaddins/inc/analysis.hrc:810 msgctxt "ANALYSIS_Yield" msgid "Returns the yield on a security that pays periodic interest" -msgstr "Gir avkastninga for et verdipapir med periodisk renteutbetaling" +msgstr "Gir avkastningen for et verdipapir med periodisk renteutbetaling" #. eqfJR #: scaddins/inc/analysis.hrc:811 msgctxt "ANALYSIS_Yield" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. EfCej #: scaddins/inc/analysis.hrc:812 @@ -2790,7 +2790,7 @@ #: scaddins/inc/analysis.hrc:813 msgctxt "ANALYSIS_Yield" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. uBx9d #: scaddins/inc/analysis.hrc:814 @@ -2802,19 +2802,19 @@ #: scaddins/inc/analysis.hrc:815 msgctxt "ANALYSIS_Yield" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. 2x2Q4 #: scaddins/inc/analysis.hrc:816 msgctxt "ANALYSIS_Yield" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. P6zx6 #: scaddins/inc/analysis.hrc:817 msgctxt "ANALYSIS_Yield" msgid "Price" -msgstr "pris" +msgstr "Pris" #. yCG2s #: scaddins/inc/analysis.hrc:818 @@ -2826,7 +2826,7 @@ #: scaddins/inc/analysis.hrc:819 msgctxt "ANALYSIS_Yield" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. MA5gf #: scaddins/inc/analysis.hrc:820 @@ -2838,7 +2838,7 @@ #: scaddins/inc/analysis.hrc:821 msgctxt "ANALYSIS_Yield" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. 8z8PK #: scaddins/inc/analysis.hrc:822 @@ -2850,7 +2850,7 @@ #: scaddins/inc/analysis.hrc:823 msgctxt "ANALYSIS_Yield" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. Bndzx #: scaddins/inc/analysis.hrc:824 @@ -2862,13 +2862,13 @@ #: scaddins/inc/analysis.hrc:829 msgctxt "ANALYSIS_Yielddisc" msgid "Returns the annual yield for a discounted security" -msgstr "Gir den årlige avkastninga for et diskontert verdipapir" +msgstr "Gir den årlige avkastningen for et diskontert verdipapir" #. KDky8 #: scaddins/inc/analysis.hrc:830 msgctxt "ANALYSIS_Yielddisc" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. PTuHA #: scaddins/inc/analysis.hrc:831 @@ -2880,7 +2880,7 @@ #: scaddins/inc/analysis.hrc:832 msgctxt "ANALYSIS_Yielddisc" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. atuPr #: scaddins/inc/analysis.hrc:833 @@ -2892,7 +2892,7 @@ #: scaddins/inc/analysis.hrc:834 msgctxt "ANALYSIS_Yielddisc" msgid "Price" -msgstr "pris" +msgstr "Pris" #. 3JJnW #: scaddins/inc/analysis.hrc:835 @@ -2904,7 +2904,7 @@ #: scaddins/inc/analysis.hrc:836 msgctxt "ANALYSIS_Yielddisc" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. FRLpH #: scaddins/inc/analysis.hrc:837 @@ -2916,7 +2916,7 @@ #: scaddins/inc/analysis.hrc:838 msgctxt "ANALYSIS_Yielddisc" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. eZvoV #: scaddins/inc/analysis.hrc:839 @@ -2928,13 +2928,13 @@ #: scaddins/inc/analysis.hrc:844 msgctxt "ANALYSIS_Yieldmat" msgid "Returns the annual yield of a security that pays interest at maturity" -msgstr "Gir den årlige avkastninga til et verdipapir med renteutbetaling ved forfall" +msgstr "Gir den årlige avkastningen til et verdipapir med renteutbetaling ved forfall" #. 9tqFL #: scaddins/inc/analysis.hrc:845 msgctxt "ANALYSIS_Yieldmat" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. UCGbx #: scaddins/inc/analysis.hrc:846 @@ -2946,7 +2946,7 @@ #: scaddins/inc/analysis.hrc:847 msgctxt "ANALYSIS_Yieldmat" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. wfMuX #: scaddins/inc/analysis.hrc:848 @@ -2958,7 +2958,7 @@ #: scaddins/inc/analysis.hrc:849 msgctxt "ANALYSIS_Yieldmat" msgid "Issue" -msgstr "utstedt" +msgstr "Utstedt" #. uPRAB #: scaddins/inc/analysis.hrc:850 @@ -2970,19 +2970,19 @@ #: scaddins/inc/analysis.hrc:851 msgctxt "ANALYSIS_Yieldmat" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. c23fh #: scaddins/inc/analysis.hrc:852 msgctxt "ANALYSIS_Yieldmat" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. UCJU4 #: scaddins/inc/analysis.hrc:853 msgctxt "ANALYSIS_Yieldmat" msgid "Price" -msgstr "pris" +msgstr "Pris" #. rn9Ng #: scaddins/inc/analysis.hrc:854 @@ -2994,7 +2994,7 @@ #: scaddins/inc/analysis.hrc:855 msgctxt "ANALYSIS_Yieldmat" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. GCePb #: scaddins/inc/analysis.hrc:856 @@ -3006,13 +3006,13 @@ #: scaddins/inc/analysis.hrc:861 msgctxt "ANALYSIS_Tbilleq" msgid "Returns the bond-equivalent yield for a treasury bill" -msgstr "Gir den obligasjonslikeverdige avkastninga for en statskasseveksel" +msgstr "Gir den obligasjonslikeverdige avkastningen for en statskasseveksel" #. Y8EED #: scaddins/inc/analysis.hrc:862 msgctxt "ANALYSIS_Tbilleq" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. wyZD8 #: scaddins/inc/analysis.hrc:863 @@ -3024,7 +3024,7 @@ #: scaddins/inc/analysis.hrc:864 msgctxt "ANALYSIS_Tbilleq" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. s72dY #: scaddins/inc/analysis.hrc:865 @@ -3036,7 +3036,7 @@ #: scaddins/inc/analysis.hrc:866 msgctxt "ANALYSIS_Tbilleq" msgid "Discount" -msgstr "diskonto" +msgstr "Diskonto" #. C57ZA #: scaddins/inc/analysis.hrc:867 @@ -3054,7 +3054,7 @@ #: scaddins/inc/analysis.hrc:873 msgctxt "ANALYSIS_Tbillprice" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. 9oYEm #: scaddins/inc/analysis.hrc:874 @@ -3066,7 +3066,7 @@ #: scaddins/inc/analysis.hrc:875 msgctxt "ANALYSIS_Tbillprice" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. ckYgn #: scaddins/inc/analysis.hrc:876 @@ -3078,7 +3078,7 @@ #: scaddins/inc/analysis.hrc:877 msgctxt "ANALYSIS_Tbillprice" msgid "Discount" -msgstr "diskonto" +msgstr "Diskonto" #. FNtHE #: scaddins/inc/analysis.hrc:878 @@ -3090,13 +3090,13 @@ #: scaddins/inc/analysis.hrc:883 msgctxt "ANALYSIS_Tbillyield" msgid "Returns the yield for a treasury bill" -msgstr "Gir avkastninga på en statskasseveksel" +msgstr "Gir avkastningen på en statskasseveksel" #. PwuoY #: scaddins/inc/analysis.hrc:884 msgctxt "ANALYSIS_Tbillyield" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. nGGCY #: scaddins/inc/analysis.hrc:885 @@ -3108,7 +3108,7 @@ #: scaddins/inc/analysis.hrc:886 msgctxt "ANALYSIS_Tbillyield" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. 4zABS #: scaddins/inc/analysis.hrc:887 @@ -3120,7 +3120,7 @@ #: scaddins/inc/analysis.hrc:888 msgctxt "ANALYSIS_Tbillyield" msgid "Price" -msgstr "pris" +msgstr "Pris" #. VkHpw #: scaddins/inc/analysis.hrc:889 @@ -3138,7 +3138,7 @@ #: scaddins/inc/analysis.hrc:895 msgctxt "ANALYSIS_Oddfprice" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. 76Zwh #: scaddins/inc/analysis.hrc:896 @@ -3150,7 +3150,7 @@ #: scaddins/inc/analysis.hrc:897 msgctxt "ANALYSIS_Oddfprice" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. tYZZt #: scaddins/inc/analysis.hrc:898 @@ -3162,7 +3162,7 @@ #: scaddins/inc/analysis.hrc:899 msgctxt "ANALYSIS_Oddfprice" msgid "Issue" -msgstr "utstedt" +msgstr "Utstedt" #. RBg5M #: scaddins/inc/analysis.hrc:900 @@ -3174,7 +3174,7 @@ #: scaddins/inc/analysis.hrc:901 msgctxt "ANALYSIS_Oddfprice" msgid "First coupon" -msgstr "første kupong" +msgstr "Første kupong" #. qPv58 #: scaddins/inc/analysis.hrc:902 @@ -3186,31 +3186,31 @@ #: scaddins/inc/analysis.hrc:903 msgctxt "ANALYSIS_Oddfprice" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. h6Gu6 #: scaddins/inc/analysis.hrc:904 msgctxt "ANALYSIS_Oddfprice" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. gkvEE #: scaddins/inc/analysis.hrc:905 msgctxt "ANALYSIS_Oddfprice" msgid "Yield" -msgstr "avkastning" +msgstr "Avkastning" #. 5EvGf #: scaddins/inc/analysis.hrc:906 msgctxt "ANALYSIS_Oddfprice" msgid "The yield" -msgstr "Avkastninga" +msgstr "Avkastningen" #. UsRTH #: scaddins/inc/analysis.hrc:907 msgctxt "ANALYSIS_Oddfprice" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. ZzgKB #: scaddins/inc/analysis.hrc:908 @@ -3222,7 +3222,7 @@ #: scaddins/inc/analysis.hrc:909 msgctxt "ANALYSIS_Oddfprice" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. BNhiF #: scaddins/inc/analysis.hrc:910 @@ -3234,7 +3234,7 @@ #: scaddins/inc/analysis.hrc:911 msgctxt "ANALYSIS_Oddfprice" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. JEgfs #: scaddins/inc/analysis.hrc:912 @@ -3252,7 +3252,7 @@ #: scaddins/inc/analysis.hrc:918 msgctxt "ANALYSIS_Oddfyield" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. tyFut #: scaddins/inc/analysis.hrc:919 @@ -3264,7 +3264,7 @@ #: scaddins/inc/analysis.hrc:920 msgctxt "ANALYSIS_Oddfyield" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. DEBJg #: scaddins/inc/analysis.hrc:921 @@ -3276,7 +3276,7 @@ #: scaddins/inc/analysis.hrc:922 msgctxt "ANALYSIS_Oddfyield" msgid "Issue" -msgstr "utstedt" +msgstr "Utstedt" #. Vi83F #: scaddins/inc/analysis.hrc:923 @@ -3288,7 +3288,7 @@ #: scaddins/inc/analysis.hrc:924 msgctxt "ANALYSIS_Oddfyield" msgid "First coupon" -msgstr "første kupong" +msgstr "Første kupong" #. B8LJA #: scaddins/inc/analysis.hrc:925 @@ -3300,19 +3300,19 @@ #: scaddins/inc/analysis.hrc:926 msgctxt "ANALYSIS_Oddfyield" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. hnFB2 #: scaddins/inc/analysis.hrc:927 msgctxt "ANALYSIS_Oddfyield" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. cHzGL #: scaddins/inc/analysis.hrc:928 msgctxt "ANALYSIS_Oddfyield" msgid "Price" -msgstr "pris" +msgstr "Pris" #. CE5La #: scaddins/inc/analysis.hrc:929 @@ -3324,7 +3324,7 @@ #: scaddins/inc/analysis.hrc:930 msgctxt "ANALYSIS_Oddfyield" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. hi8zV #: scaddins/inc/analysis.hrc:931 @@ -3336,7 +3336,7 @@ #: scaddins/inc/analysis.hrc:932 msgctxt "ANALYSIS_Oddfyield" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. UWAyT #: scaddins/inc/analysis.hrc:933 @@ -3348,7 +3348,7 @@ #: scaddins/inc/analysis.hrc:934 msgctxt "ANALYSIS_Oddfyield" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. vkSMh #: scaddins/inc/analysis.hrc:935 @@ -3366,7 +3366,7 @@ #: scaddins/inc/analysis.hrc:941 msgctxt "ANALYSIS_Oddlprice" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. EX8ig #: scaddins/inc/analysis.hrc:942 @@ -3378,7 +3378,7 @@ #: scaddins/inc/analysis.hrc:943 msgctxt "ANALYSIS_Oddlprice" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. gCGUZ #: scaddins/inc/analysis.hrc:944 @@ -3390,7 +3390,7 @@ #: scaddins/inc/analysis.hrc:945 msgctxt "ANALYSIS_Oddlprice" msgid "Last interest" -msgstr "siste rente" +msgstr "Siste rente" #. R4Q2a #: scaddins/inc/analysis.hrc:946 @@ -3402,31 +3402,31 @@ #: scaddins/inc/analysis.hrc:947 msgctxt "ANALYSIS_Oddlprice" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. KB2rU #: scaddins/inc/analysis.hrc:948 msgctxt "ANALYSIS_Oddlprice" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. GDUzx #: scaddins/inc/analysis.hrc:949 msgctxt "ANALYSIS_Oddlprice" msgid "Yield" -msgstr "avkastning" +msgstr "Avkastning" #. avZVs #: scaddins/inc/analysis.hrc:950 msgctxt "ANALYSIS_Oddlprice" msgid "The yield" -msgstr "Avkastninga" +msgstr "Avkastningen" #. MWCc6 #: scaddins/inc/analysis.hrc:951 msgctxt "ANALYSIS_Oddlprice" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. hzzyo #: scaddins/inc/analysis.hrc:952 @@ -3438,7 +3438,7 @@ #: scaddins/inc/analysis.hrc:953 msgctxt "ANALYSIS_Oddlprice" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. ENFos #: scaddins/inc/analysis.hrc:954 @@ -3450,7 +3450,7 @@ #: scaddins/inc/analysis.hrc:955 msgctxt "ANALYSIS_Oddlprice" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. nvo2f #: scaddins/inc/analysis.hrc:956 @@ -3462,13 +3462,13 @@ #: scaddins/inc/analysis.hrc:961 msgctxt "ANALYSIS_Oddlyield" msgid "Returns the yield of a security with an odd last period" -msgstr "Gir avkastninga for et verdipapir med en ulik siste periode" +msgstr "Gir avkastningen for et verdipapir med en ulik siste periode" #. jX4YX #: scaddins/inc/analysis.hrc:962 msgctxt "ANALYSIS_Oddlyield" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. jRgpu #: scaddins/inc/analysis.hrc:963 @@ -3480,7 +3480,7 @@ #: scaddins/inc/analysis.hrc:964 msgctxt "ANALYSIS_Oddlyield" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. 8sSPm #: scaddins/inc/analysis.hrc:965 @@ -3492,7 +3492,7 @@ #: scaddins/inc/analysis.hrc:966 msgctxt "ANALYSIS_Oddlyield" msgid "Last interest" -msgstr "siste rente" +msgstr "Siste rente" #. Dj2hq #: scaddins/inc/analysis.hrc:967 @@ -3504,19 +3504,19 @@ #: scaddins/inc/analysis.hrc:968 msgctxt "ANALYSIS_Oddlyield" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. KS3CY #: scaddins/inc/analysis.hrc:969 msgctxt "ANALYSIS_Oddlyield" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. CpQMi #: scaddins/inc/analysis.hrc:970 msgctxt "ANALYSIS_Oddlyield" msgid "Price" -msgstr "pris" +msgstr "Pris" #. xXRpv #: scaddins/inc/analysis.hrc:971 @@ -3528,7 +3528,7 @@ #: scaddins/inc/analysis.hrc:972 msgctxt "ANALYSIS_Oddlyield" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. ZibYN #: scaddins/inc/analysis.hrc:973 @@ -3540,7 +3540,7 @@ #: scaddins/inc/analysis.hrc:974 msgctxt "ANALYSIS_Oddlyield" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. vWmtG #: scaddins/inc/analysis.hrc:975 @@ -3552,7 +3552,7 @@ #: scaddins/inc/analysis.hrc:976 msgctxt "ANALYSIS_Oddlyield" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. ALuqu #: scaddins/inc/analysis.hrc:977 @@ -3570,7 +3570,7 @@ #: scaddins/inc/analysis.hrc:983 msgctxt "ANALYSIS_Xirr" msgid "Values" -msgstr "verdier" +msgstr "Verdier" #. 43s42 #: scaddins/inc/analysis.hrc:984 @@ -3582,7 +3582,7 @@ #: scaddins/inc/analysis.hrc:985 msgctxt "ANALYSIS_Xirr" msgid "Dates" -msgstr "datoer" +msgstr "Datoer" #. T8Cgb #: scaddins/inc/analysis.hrc:986 @@ -3594,13 +3594,13 @@ #: scaddins/inc/analysis.hrc:987 msgctxt "ANALYSIS_Xirr" msgid "Guess" -msgstr "gjetning" +msgstr "Gjetning" #. bwH8A #: scaddins/inc/analysis.hrc:988 msgctxt "ANALYSIS_Xirr" msgid "The guess" -msgstr "Gjetninga" +msgstr "Gjetningen" #. umfBr #: scaddins/inc/analysis.hrc:993 @@ -3612,19 +3612,19 @@ #: scaddins/inc/analysis.hrc:994 msgctxt "ANALYSIS_Xnpv" msgid "Rate" -msgstr "rente" +msgstr "Rente" #. 5kCmJ #: scaddins/inc/analysis.hrc:995 msgctxt "ANALYSIS_Xnpv" msgid "The rate" -msgstr "Renta" +msgstr "Renten" #. KBxE5 #: scaddins/inc/analysis.hrc:996 msgctxt "ANALYSIS_Xnpv" msgid "Values" -msgstr "verdier" +msgstr "Verdier" #. HjdY8 #: scaddins/inc/analysis.hrc:997 @@ -3636,7 +3636,7 @@ #: scaddins/inc/analysis.hrc:998 msgctxt "ANALYSIS_Xnpv" msgid "Dates" -msgstr "datoer" +msgstr "Datoer" #. WcoB9 #: scaddins/inc/analysis.hrc:999 @@ -3654,7 +3654,7 @@ #: scaddins/inc/analysis.hrc:1005 msgctxt "ANALYSIS_Intrate" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. AKaKd #: scaddins/inc/analysis.hrc:1006 @@ -3666,7 +3666,7 @@ #: scaddins/inc/analysis.hrc:1007 msgctxt "ANALYSIS_Intrate" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. Zhgii #: scaddins/inc/analysis.hrc:1008 @@ -3678,19 +3678,19 @@ #: scaddins/inc/analysis.hrc:1009 msgctxt "ANALYSIS_Intrate" msgid "Investment" -msgstr "investering" +msgstr "Investering" #. FRKeF #: scaddins/inc/analysis.hrc:1010 msgctxt "ANALYSIS_Intrate" msgid "The investment" -msgstr "Investeringa" +msgstr "Investeringen" #. DwCEw #: scaddins/inc/analysis.hrc:1011 msgctxt "ANALYSIS_Intrate" msgid "Redemption" -msgstr "innløsning" +msgstr "Innløsning" #. 7xDcc #: scaddins/inc/analysis.hrc:1012 @@ -3702,7 +3702,7 @@ #: scaddins/inc/analysis.hrc:1013 msgctxt "ANALYSIS_Intrate" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. NcGeu #: scaddins/inc/analysis.hrc:1014 @@ -3720,7 +3720,7 @@ #: scaddins/inc/analysis.hrc:1020 msgctxt "ANALYSIS_Coupncd" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. hNzBw #: scaddins/inc/analysis.hrc:1021 @@ -3732,7 +3732,7 @@ #: scaddins/inc/analysis.hrc:1022 msgctxt "ANALYSIS_Coupncd" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. QgyqZ #: scaddins/inc/analysis.hrc:1023 @@ -3744,7 +3744,7 @@ #: scaddins/inc/analysis.hrc:1024 msgctxt "ANALYSIS_Coupncd" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. sTEGC #: scaddins/inc/analysis.hrc:1025 @@ -3756,7 +3756,7 @@ #: scaddins/inc/analysis.hrc:1026 msgctxt "ANALYSIS_Coupncd" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. HpL82 #: scaddins/inc/analysis.hrc:1027 @@ -3774,7 +3774,7 @@ #: scaddins/inc/analysis.hrc:1033 msgctxt "ANALYSIS_Coupdays" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. yDhqa #: scaddins/inc/analysis.hrc:1034 @@ -3786,7 +3786,7 @@ #: scaddins/inc/analysis.hrc:1035 msgctxt "ANALYSIS_Coupdays" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. HUSS4 #: scaddins/inc/analysis.hrc:1036 @@ -3798,7 +3798,7 @@ #: scaddins/inc/analysis.hrc:1037 msgctxt "ANALYSIS_Coupdays" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. FNC2C #: scaddins/inc/analysis.hrc:1038 @@ -3810,7 +3810,7 @@ #: scaddins/inc/analysis.hrc:1039 msgctxt "ANALYSIS_Coupdays" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. YDwAe #: scaddins/inc/analysis.hrc:1040 @@ -3828,7 +3828,7 @@ #: scaddins/inc/analysis.hrc:1046 msgctxt "ANALYSIS_Coupdaysnc" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. aFCv6 #: scaddins/inc/analysis.hrc:1047 @@ -3840,7 +3840,7 @@ #: scaddins/inc/analysis.hrc:1048 msgctxt "ANALYSIS_Coupdaysnc" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. AAZAF #: scaddins/inc/analysis.hrc:1049 @@ -3852,7 +3852,7 @@ #: scaddins/inc/analysis.hrc:1050 msgctxt "ANALYSIS_Coupdaysnc" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. BqJcZ #: scaddins/inc/analysis.hrc:1051 @@ -3864,7 +3864,7 @@ #: scaddins/inc/analysis.hrc:1052 msgctxt "ANALYSIS_Coupdaysnc" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. BSHmm #: scaddins/inc/analysis.hrc:1053 @@ -3882,7 +3882,7 @@ #: scaddins/inc/analysis.hrc:1059 msgctxt "ANALYSIS_Coupdaybs" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. bHLcV #: scaddins/inc/analysis.hrc:1060 @@ -3894,7 +3894,7 @@ #: scaddins/inc/analysis.hrc:1061 msgctxt "ANALYSIS_Coupdaybs" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. QADAB #: scaddins/inc/analysis.hrc:1062 @@ -3906,7 +3906,7 @@ #: scaddins/inc/analysis.hrc:1063 msgctxt "ANALYSIS_Coupdaybs" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. QpvLy #: scaddins/inc/analysis.hrc:1064 @@ -3918,7 +3918,7 @@ #: scaddins/inc/analysis.hrc:1065 msgctxt "ANALYSIS_Coupdaybs" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. mDrBv #: scaddins/inc/analysis.hrc:1066 @@ -3936,7 +3936,7 @@ #: scaddins/inc/analysis.hrc:1072 msgctxt "ANALYSIS_Couppcd" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. Q7Wbc #: scaddins/inc/analysis.hrc:1073 @@ -3948,7 +3948,7 @@ #: scaddins/inc/analysis.hrc:1074 msgctxt "ANALYSIS_Couppcd" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. CF4QT #: scaddins/inc/analysis.hrc:1075 @@ -3960,7 +3960,7 @@ #: scaddins/inc/analysis.hrc:1076 msgctxt "ANALYSIS_Couppcd" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. CYukW #: scaddins/inc/analysis.hrc:1077 @@ -3972,7 +3972,7 @@ #: scaddins/inc/analysis.hrc:1078 msgctxt "ANALYSIS_Couppcd" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. wRSRG #: scaddins/inc/analysis.hrc:1079 @@ -3990,7 +3990,7 @@ #: scaddins/inc/analysis.hrc:1085 msgctxt "ANALYSIS_Coupnum" msgid "Settlement" -msgstr "oppgjør" +msgstr "Oppgjør" #. 5QUEA #: scaddins/inc/analysis.hrc:1086 @@ -4002,7 +4002,7 @@ #: scaddins/inc/analysis.hrc:1087 msgctxt "ANALYSIS_Coupnum" msgid "Maturity" -msgstr "avregningsdato" +msgstr "Avregningsdato" #. 4PEWh #: scaddins/inc/analysis.hrc:1088 @@ -4014,7 +4014,7 @@ #: scaddins/inc/analysis.hrc:1089 msgctxt "ANALYSIS_Coupnum" msgid "Frequency" -msgstr "frekvens" +msgstr "Frekvens" #. DTAQB #: scaddins/inc/analysis.hrc:1090 @@ -4026,7 +4026,7 @@ #: scaddins/inc/analysis.hrc:1091 msgctxt "ANALYSIS_Coupnum" msgid "Basis" -msgstr "grunnlag" +msgstr "Grunnlag" #. gDPws #: scaddins/inc/analysis.hrc:1092 @@ -4044,7 +4044,7 @@ #: scaddins/inc/analysis.hrc:1098 msgctxt "ANALYSIS_Fvschedule" msgid "Principal" -msgstr "hovedstol" +msgstr "Hovedstol" #. mc5HE #: scaddins/inc/analysis.hrc:1099 @@ -4056,7 +4056,7 @@ #: scaddins/inc/analysis.hrc:1100 msgctxt "ANALYSIS_Fvschedule" msgid "Schedule" -msgstr "plan" +msgstr "Plan" #. JDWWT #: scaddins/inc/analysis.hrc:1101 @@ -4392,7 +4392,7 @@ #: scaddins/inc/pricing.hrc:46 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Amount of money paid at maturity if barrier was hit" -msgstr "Sum betalt ved utløp hvis grensa ble nådd" +msgstr "Sum betalt ved utløp hvis grensen ble nådd" #. 49Txr #: scaddins/inc/pricing.hrc:47 @@ -4440,13 +4440,13 @@ #: scaddins/inc/pricing.hrc:54 msgctxt "PRICING_FUNCDESC_OptBarrier" msgid "Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)" -msgstr "Valgfritt parameter. Hvis denne er sløyfa, vil funksjonen returnere opsjonsprisen. Hvis satt, vil funksjonen returnere prissensivitet (gresk) til et av inndataparametrene. Mulige verdier er (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)" +msgstr "Valgfritt parameter. Hvis denne er sløyfet, vil funksjonen returnere opsjonsprisen. Hvis satt, vil funksjonen returnere prissensivitet (gresk) til et av inndataparametrene. Mulige verdier er (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)" #. nggAA #: scaddins/inc/pricing.hrc:59 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Pricing of a touch/no-touch option" -msgstr "prissettning av en touch/no-touch opsjon" +msgstr "Prissettning av en touch/no-touch opsjon" #. BRysq #: scaddins/inc/pricing.hrc:60 @@ -4566,7 +4566,7 @@ #: scaddins/inc/pricing.hrc:79 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "String to define whether the barrier is observed (c)ontinuously or only at the (e)nd/maturity" -msgstr "Streng som definerer om grensa er observert kontinuerlig (c) eller bare ved forfall (e)" +msgstr "Streng som definerer om grensen er kontinuerlig (c) observert eller bare ved forfall (e)" #. H3XiF #: scaddins/inc/pricing.hrc:80 @@ -4578,7 +4578,7 @@ #: scaddins/inc/pricing.hrc:81 msgctxt "PRICING_FUNCDESC_OptTouch" msgid "Optional parameter, if left out then the function simply returns the option price; if set, the function returns price sensitivities (Greeks) to one of the input parameters; possible values are (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)" -msgstr "Valgfritt parameter. Hvis denne er sløyfa, vil funksjonen returnere opsjonsprisen. Hvis satt, vil funksjonen returnere prissensivitet (gresk) til et av inndataparametrene. Mulige verdier er (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)" +msgstr "Valgfritt parameter. Hvis denne er sløyfet, vil funksjonen returnere opsjonsprisen. Hvis satt, vil funksjonen returnere prissensivitet (gresk) til et av inndataparametrene. Mulige verdier er (d)elta, (g)amma, (t)heta, v(e)ga, v(o)lga, v(a)nna, (r)ho, rho(f)" #. sPkFe #: scaddins/inc/pricing.hrc:86 @@ -4674,7 +4674,7 @@ #: scaddins/inc/pricing.hrc:105 msgctxt "PRICING_FUNCDESC_OptProbInMoney" msgid "Price/value of the asset" -msgstr "Pris/verdi for aktivumet" +msgstr "Pris/Verdi for aktivumet" #. NpQGJ #: scaddins/inc/pricing.hrc:106 @@ -4777,13 +4777,13 @@ #: scaddins/inc/strings.hrc:28 msgctxt "PRICING_FUNCNAME_OptProbHit" msgid "OPT_PROB_HIT" -msgstr "OPT_SANNSYNLEG_TREFF" +msgstr "OPT_SANNSYNLIG_TREFF" #. s75E5 #: scaddins/inc/strings.hrc:29 msgctxt "PRICING_FUNCNAME_OptProbInMoney" msgid "OPT_PROB_INMONEY" -msgstr "OPT_SANNSYNLiG_I_PENGER" +msgstr "OPT_SANNSYNLIG_I_PENGER" #. Hb9ck #: scaddins/inc/strings.hrc:31 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/scp2/source/ooo.po libreoffice-7.1.3~rc2/translations/source/nb/scp2/source/ooo.po --- libreoffice-7.1.2~rc2/translations/source/nb/scp2/source/ooo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/scp2/source/ooo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-17 15:06+0100\n" -"PO-Revision-Date: 2020-07-23 01:46+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561033665.000000\n" #. CYBGJ @@ -3596,7 +3596,7 @@ "STR_DESC_MODULE_LANGPACK_KN\n" "LngText.text" msgid "Installs the Kannada user interface" -msgstr "Installerer brukergrensesnittet for kannada" +msgstr "Installerer brukergrensesnittet for Kannada" #. VEiMB #: module_langpack.ulf @@ -4424,7 +4424,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_BO\n" "LngText.text" msgid "Classical Tibetan syllable spelling dictionary" -msgstr "Klassisk tbetansk ordliste" +msgstr "Klassisk tibetansk ordliste" #. gjKdw #: module_ooo.ulf @@ -4829,7 +4829,7 @@ "STR_NAME_MODULE_EXTENSION_DICTIONARY_KO\n" "LngText.text" msgid "Korean" -msgstr "" +msgstr "Koreansk" #. EeEDH #: module_ooo.ulf @@ -4838,7 +4838,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_KO\n" "LngText.text" msgid "Korean spelling dictionary" -msgstr "" +msgstr "Koreansk staveordbok" #. xuCvE #: module_ooo.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/sd/messages.po libreoffice-7.1.3~rc2/translations/source/nb/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-09 17:34+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563560561.000000\n" #. WDjkB @@ -454,7 +454,7 @@ #: sd/inc/strings.hrc:46 msgctxt "STR_AUTOLAYOUT_ONLY_TEXT" msgid "Centered Text" -msgstr "~Midtstilt tekst" +msgstr "Midtstilt tekst" #. vC7LB #: sd/inc/strings.hrc:47 @@ -514,25 +514,25 @@ #: sd/inc/strings.hrc:56 msgctxt "STR_AL_TITLE_VERT_OUTLINE" msgid "Title, Vertical Text" -msgstr "Tittel, loddrett tekst" +msgstr "Tittel, Vertikal Tekst" #. GsGaq #: sd/inc/strings.hrc:57 msgctxt "STR_AL_TITLE_VERT_OUTLINE_CLIPART" msgid "Title, Vertical Text, Clipart" -msgstr "Tittel, loddrett tekst, utklippsbilde" +msgstr "Tittel, Vertikal Tekst, Utklippsbilde" #. QvDtk #: sd/inc/strings.hrc:58 msgctxt "STR_AL_VERT_TITLE_TEXT_CHART" msgid "Vertical Title, Text, Chart" -msgstr "Loddrett tittel, tekst, diagram" +msgstr "Vertikal Tittel, Tekst, Diagram" #. bEiKk #: sd/inc/strings.hrc:59 msgctxt "STR_AL_VERT_TITLE_VERT_OUTLINE" msgid "Vertical Title, Vertical Text" -msgstr "Loddrett tittel, loddrett tekst" +msgstr "Vertikal Tittel, Vertikal Tekst" #. CAeFA #: sd/inc/strings.hrc:60 @@ -820,7 +820,7 @@ #: sd/inc/strings.hrc:105 msgctxt "STR_READ_DATA_ERROR" msgid "The file could not be loaded!" -msgstr "Kan ikke laste inn fila." +msgstr "Kan ikke laste inn filen." #. 8CYyq #: sd/inc/strings.hrc:106 @@ -856,7 +856,7 @@ #: sd/inc/strings.hrc:110 msgctxt "STR_EDIT_OBJ" msgid "~Edit" -msgstr "~Rediger" +msgstr "Rediger" #. 3ikze #: sd/inc/strings.hrc:111 @@ -874,7 +874,7 @@ #: sd/inc/strings.hrc:113 msgctxt "STR_IMPORT_GRFILTER_OPENERROR" msgid "Image file cannot be opened" -msgstr "Kan ikke åpne bildefila" +msgstr "Kan ikke åpne bildefilen" #. PKXVG #: sd/inc/strings.hrc:114 @@ -892,7 +892,7 @@ #: sd/inc/strings.hrc:116 msgctxt "STR_IMPORT_GRFILTER_VERSIONERROR" msgid "This image file version is not supported" -msgstr "Denne versjonen av bildefila er ikke støtta." +msgstr "Denne versjonen av bildefilen er ikke støttet." #. uqpAS #: sd/inc/strings.hrc:117 @@ -970,7 +970,7 @@ #: sd/inc/strings.hrc:129 msgctxt "STR_PLAY" msgid "~Play" -msgstr "~Spill" +msgstr "Spill" #. mZfMV #: sd/inc/strings.hrc:130 @@ -1076,7 +1076,7 @@ #: sd/inc/strings.hrc:146 msgctxt "STR_EFFECTDLG_ACTION" msgid "Act~ion" -msgstr "~Handling" +msgstr "Handling" #. KJhf2 #: sd/inc/strings.hrc:147 @@ -1194,13 +1194,13 @@ #: sd/inc/strings.hrc:169 msgctxt "STR_GLUE_ESCDIR_HORZ" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. dREDm #: sd/inc/strings.hrc:170 msgctxt "STR_GLUE_ESCDIR_VERT" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. pM95w #: sd/inc/strings.hrc:171 @@ -1538,7 +1538,7 @@ "The file %\n" "is not a valid audio file !" msgstr "" -"Fila % \n" +"Filen % \n" "er ikke en gyldig lydfil." #. SRWpo @@ -1557,19 +1557,19 @@ #: sd/inc/strings.hrc:230 msgctxt "STR_HTMLEXP_ERROR_CREATE_FILE" msgid "Cannot create the file $(URL1)." -msgstr "Klarte ikke å lage fila $(URL1)." +msgstr "Klarte ikke å lage filen $(URL1)." #. ZF3X5 #: sd/inc/strings.hrc:231 msgctxt "STR_HTMLEXP_ERROR_OPEN_FILE" msgid "Could not open the file $(URL1)." -msgstr "Klarte ikke åpne fila $(URL1)." +msgstr "Klarte ikke åpne filen $(URL1)." #. rEAXk #: sd/inc/strings.hrc:232 msgctxt "STR_HTMLEXP_ERROR_COPY_FILE" msgid "The file $(URL1) could not be copied to $(URL2)" -msgstr "Klarte ikke å kopiere fila $(URL1) til $(URL2)" +msgstr "Klarte ikke å kopiere filen $(URL1) til $(URL2)" #. KVfUE #: sd/inc/strings.hrc:233 @@ -1593,7 +1593,7 @@ #: sd/inc/strings.hrc:236 msgctxt "STR_TOOLTIP_RENAME" msgid "Duplicate or empty names are not possible" -msgstr "Dupliserte eller blanke navn er ikke mulig" +msgstr "Dupliserte eller tome navn er ikke mulig" #. FUm5F #: sd/inc/strings.hrc:237 @@ -1827,7 +1827,7 @@ #: sd/inc/strings.hrc:275 msgctxt "STR_OVERWRITE_WARNING" msgid "The local target directory '%FILENAME' is not empty. Some files might be overwritten. Do you want to continue?" -msgstr "Den lokale målmappa «%FILENAME» er ikke tom. Noen filer kan bli overskrevet. Vil du fortsette?" +msgstr "Den lokale målmappen «%FILENAME» er ikke tom. Noen filer kan bli overskrevet. Vil du fortsette?" #. DKw6n #: sd/inc/strings.hrc:277 @@ -2121,7 +2121,7 @@ #: sd/inc/strings.hrc:325 msgctxt "STR_SLIDE_SETUP_TITLE" msgid "Slide Properties" -msgstr "" +msgstr "Egenskaper for lysbilder" #. pA7rP #: sd/inc/strings.hrc:327 @@ -3029,7 +3029,7 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:42 msgctxt "copydlg|default" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. BCDCG #: sd/uiconfig/sdraw/ui/copydlg.ui:49 @@ -3077,38 +3077,37 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:223 msgctxt "copydlg|label5" msgid "_X axis:" -msgstr "_X-akse:" +msgstr "X-akse:" #. G5trD #: sd/uiconfig/sdraw/ui/copydlg.ui:237 msgctxt "copydlg|label6" msgid "_Y axis:" -msgstr "_Y-akse:" +msgstr "Y-akse:" #. gHkmD #: sd/uiconfig/sdraw/ui/copydlg.ui:251 msgctxt "copydlg|label7" msgid "_Angle:" -msgstr "_Vinkel:" +msgstr "Vinkel:" #. a63ej #: sd/uiconfig/sdraw/ui/copydlg.ui:271 msgctxt "copydlg|extended_tip|x" msgid "Enter the horizontal distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object to the right and negative values shift the duplicate object to the left." -msgstr "Skriv inn den loddrette avstanden mellom sentrene for det valgte objektet og det kopierte objektet. Positive verdier forskyver det kopierte objektet opp, mens negative verdier forskyver det kopierte objektet ned." +msgstr "Skriv inn den vertikale avstanden mellom sentrene for det valgte objektet og det kopierte objektet. Positive verdier forskyver det kopierte objektet opp, mens negative verdier forskyver det kopierte objektet ned." #. qPCGk #: sd/uiconfig/sdraw/ui/copydlg.ui:290 msgctxt "copydlg|extended_tip|y" msgid "Enter the vertical distance between the centers of the selected object and the duplicate object. Positive values shift the duplicate object down and negative values shift the duplicate object up." -msgstr "Skriv inn den loddrette avstanden mellom sentrene for det valgte objektet og det kopierte objektet. Positive verdier forskyver det kopierte objektet opp, mens negative verdier forskyver det kopierte objektet ned." +msgstr "Skriv inn den vertikale avstanden mellom sentrene for det valgte objektet og det kopierte objektet. Positive verdier forskyver det kopierte objektet opp, mens negative verdier forskyver det kopierte objektet ned." #. uyLiW #: sd/uiconfig/sdraw/ui/copydlg.ui:310 -#, fuzzy msgctxt "copydlg|extended_tip|angle" msgid "Enter the angle (0 to 359 degrees) by which you want to rotate the duplicate object. Positive values rotate the duplicate object in a clockwise direction and negative values in a counterclockwise direction." -msgstr "Angi vinkelen (0 til 359 grader) som det kopierte objektet skal rotere. Positive verdier roterer objektet med klokka, mens negative verdier beveger objektet mot klokka." +msgstr "Angi vinkelen (0 til 359 grader) som det kopierte objektet skal rotere. Positive verdier roterer objektet med klokken, mens negative verdier beveger objektet mot klokken." #. Mb9Gs #: sd/uiconfig/sdraw/ui/copydlg.ui:327 @@ -3120,13 +3119,13 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:366 msgctxt "copydlg|label8" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. YuAHc #: sd/uiconfig/sdraw/ui/copydlg.ui:380 msgctxt "copydlg|label9" msgid "_Height:" -msgstr "_Høyde:" +msgstr "Høyde:" #. pLxaH #: sd/uiconfig/sdraw/ui/copydlg.ui:400 @@ -3150,13 +3149,13 @@ #: sd/uiconfig/sdraw/ui/copydlg.ui:475 msgctxt "copydlg|label10" msgid "_Start:" -msgstr "_Start:" +msgstr "Start:" #. Z6aqk #: sd/uiconfig/sdraw/ui/copydlg.ui:489 msgctxt "copydlg|endlabel" msgid "_End:" -msgstr "_Slutt:" +msgstr "Slutt:" #. ULShA #: sd/uiconfig/sdraw/ui/copydlg.ui:513 @@ -3166,7 +3165,6 @@ #. AAoBa #: sd/uiconfig/sdraw/ui/copydlg.ui:536 -#, fuzzy msgctxt "copydlg|extended_tip|end" msgid "Choose a color for the duplicate object. If you are making more than one copy, this color is applied to the last copy." msgstr "Velg en farge for det kopierte objektet. Hvis du lager mer enn en kopi, vil fargen legges til den siste kopien du lagde." @@ -3179,7 +3177,6 @@ #. W2wTC #: sd/uiconfig/sdraw/ui/copydlg.ui:586 -#, fuzzy msgctxt "copydlg|extended_tip|DuplicateDialog" msgid "Makes one or more copies of a selected object." msgstr "Lag en eller flere kopier av det valgte objektet." @@ -3200,7 +3197,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:115 msgctxt "crossfadedialog|extended_tip|orientation" msgid "Applies a smooth transition between the selected objects." -msgstr "legg til en glatt overgang mellom de valgte objektene." +msgstr "Legg til en glatt overgang mellom de valgte objektene." #. SmBMK #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:127 @@ -3212,7 +3209,7 @@ #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:136 msgctxt "crossfadedialog|extended_tip|attributes" msgid "Applies cross-fading to the line and fill properties of the selected objects." -msgstr "Legg til overgangstoning for linja og til fyllegenskapene for de valgte objektene." +msgstr "Legg til overgangstoning for linjen og til fyllegenskapene for de valgte objektene." #. CehQE #: sd/uiconfig/sdraw/ui/crossfadedialog.ui:150 @@ -3248,31 +3245,31 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:46 msgctxt "dlgsnap|extended_tip|delete" msgid "Deletes the selected snap point or snap line." -msgstr "Slett det valgte festepunktet eller den valgte festelinja." +msgstr "Slett det valgte festepunktet eller den valgte festelinjen." #. zJQtH #: sd/uiconfig/sdraw/ui/dlgsnap.ui:143 msgctxt "dlgsnap|extended_tip|x" msgid "Enter the amount of space you want between the snap point or line and the left edge of the page." -msgstr "Skriv inn hvor stort mellomrom du ønsker mellom festepunktet eller festelinja og den venstre kanten av siden." +msgstr "Skriv inn hvor stort mellomrom du ønsker mellom festepunktet eller festelinjen og den venstre kanten av siden." #. iBvKZ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:161 msgctxt "dlgsnap|extended_tip|y" msgid "Enter the amount of space you want between the snap point or line and the top edge of the page." -msgstr "Skriv inn hvor stort mellomrom du ønsker mellom festepunktet eller festelinja og den øvre kanten av siden." +msgstr "Skriv inn hvor stort mellomrom du ønsker mellom festepunktet eller festelinjen og den øvre kanten av siden." #. GSJeV #: sd/uiconfig/sdraw/ui/dlgsnap.ui:174 msgctxt "dlgsnap|xlabel" msgid "_X:" -msgstr "_X:" +msgstr "X:" #. AAfto #: sd/uiconfig/sdraw/ui/dlgsnap.ui:187 msgctxt "dlgsnap|ylabel" msgid "_Y:" -msgstr "_Y:" +msgstr "Y:" #. pMnkL #: sd/uiconfig/sdraw/ui/dlgsnap.ui:204 @@ -3284,7 +3281,7 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:237 msgctxt "dlgsnap|point" msgid "_Point" -msgstr "_Punkt" +msgstr "Punkt" #. jQ34q #: sd/uiconfig/sdraw/ui/dlgsnap.ui:249 @@ -3296,25 +3293,25 @@ #: sd/uiconfig/sdraw/ui/dlgsnap.ui:261 msgctxt "dlgsnap|vert" msgid "_Vertical" -msgstr "_Loddrett" +msgstr "Vertikal" #. 7bAB7 #: sd/uiconfig/sdraw/ui/dlgsnap.ui:273 msgctxt "dlgsnap|extended_tip|vert" msgid "Inserts a vertical snap line." -msgstr "Sett inn en loddrett festelinje." +msgstr "Sett inn en vertikal festelinje." #. tHFwv #: sd/uiconfig/sdraw/ui/dlgsnap.ui:285 msgctxt "dlgsnap|horz" msgid "Hori_zontal" -msgstr "_Vannrett" +msgstr "Horisontal" #. GMavs #: sd/uiconfig/sdraw/ui/dlgsnap.ui:297 msgctxt "dlgsnap|extended_tip|horz" msgid "Inserts a horizontal snap line." -msgstr "Sett inn en vannrett festelinje." +msgstr "Sett inn en horisontal festelinje." #. Dd9fb #: sd/uiconfig/sdraw/ui/dlgsnap.ui:315 @@ -3362,7 +3359,7 @@ #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:8 msgctxt "drawpagedialog|DrawPageDialog" msgid "Page Properties" -msgstr "" +msgstr "Egenskaper for Side" #. Py4db #: sd/uiconfig/sdraw/ui/drawpagedialog.ui:136 @@ -3524,13 +3521,13 @@ #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:329 msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_NAME" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. NLcur #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:377 msgctxt "drawprtldialog|RID_SVXPAGE_CHAR_EFFECTS" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. NmgGX #: sd/uiconfig/sdraw/ui/drawprtldialog.ui:425 @@ -3608,37 +3605,37 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:115 msgctxt "insertlayer|label4" msgid "_Name" -msgstr "_Navn" +msgstr "Navn" #. FbChP #: sd/uiconfig/sdraw/ui/insertlayer.ui:150 msgctxt "insertlayer|extended_tip|title" msgid "Enter the title of the layer." -msgstr "" +msgstr "Skriv inn tittelen på laget." #. hCTSd #: sd/uiconfig/sdraw/ui/insertlayer.ui:161 msgctxt "insertlayer|label5" msgid "_Title" -msgstr "_Tittel" +msgstr "Tittel" #. KKC7D #: sd/uiconfig/sdraw/ui/insertlayer.ui:206 msgctxt "insertlayer|extended_tip|textview" msgid "Enter a description of the layer." -msgstr "" +msgstr "Skriv inn en beskrivelse for laget." #. g2K4k #: sd/uiconfig/sdraw/ui/insertlayer.ui:219 msgctxt "insertlayer|description" msgid "_Description" -msgstr "_Beskrivelse" +msgstr "Beskrivelse" #. DTUy2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:235 msgctxt "insertlayer|visible" msgid "_Visible" -msgstr "_Synlig" +msgstr "Synlig" #. oXY4U #: sd/uiconfig/sdraw/ui/insertlayer.ui:244 @@ -3650,7 +3647,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:256 msgctxt "insertlayer|printable" msgid "_Printable" -msgstr "_Kan skrives ut" +msgstr "Kan skrives ut" #. VASG2 #: sd/uiconfig/sdraw/ui/insertlayer.ui:265 @@ -3662,7 +3659,7 @@ #: sd/uiconfig/sdraw/ui/insertlayer.ui:277 msgctxt "insertlayer|locked" msgid "_Locked" -msgstr "_Låst" +msgstr "Låst" #. uaSTH #: sd/uiconfig/sdraw/ui/insertlayer.ui:286 @@ -3686,7 +3683,7 @@ #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:94 msgctxt "insertslidesdialog|backgrounds" msgid "Delete unused backg_rounds" -msgstr "Slett ubrukte _bakgrunner" +msgstr "Slett ubrukte bakgrunner" #. gZErD #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:103 @@ -3698,7 +3695,7 @@ #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:114 msgctxt "insertslidesdialog|links" msgid "_Link" -msgstr "_Lenke" +msgstr "Lenke" #. c7yDj #: sd/uiconfig/sdraw/ui/insertslidesdialog.ui:123 @@ -3976,7 +3973,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:5693 msgctxt "notebookbar_draw_compact|InsertLabel" msgid "~Insert" -msgstr "Sett ~inn" +msgstr "Sett inn" #. kkPza #: sd/uiconfig/sdraw/ui/notebookbar_compact.ui:6486 @@ -4291,7 +4288,7 @@ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8592 msgctxt "draw_notebookbar_groupedbar_compact|GridButton" msgid "_Fontwork" -msgstr "Skriftforming" +msgstr "Fontforming" #. Q6ELJ #: sd/uiconfig/sdraw/ui/notebookbar_groupedbar_compact.ui:8706 @@ -4339,7 +4336,7 @@ #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:31 msgctxt "paranumberingtab|checkbuttonCB_NEW_START" msgid "R_estart at this paragraph" -msgstr "Start på nytt ved dette _avsnittet" +msgstr "Start på nytt ved dette avsnittet" #. bEHD3 #: sd/uiconfig/sdraw/ui/paranumberingtab.ui:61 @@ -4429,7 +4426,7 @@ #: sd/uiconfig/sdraw/ui/vectorize.ui:222 msgctxt "vectorize|fillholes" msgid "_Fill holes" -msgstr "_Fyll hull" +msgstr "Fyll hull" #. AF6Bf #: sd/uiconfig/sdraw/ui/vectorize.ui:231 @@ -4459,7 +4456,7 @@ #: sd/uiconfig/simpress/ui/annotationmenu.ui:13 msgctxt "annotationmenu|reply" msgid "_Reply" -msgstr "Sva_r" +msgstr "Svar" #. ARitJ #: sd/uiconfig/simpress/ui/annotationmenu.ui:28 @@ -4501,43 +4498,43 @@ #: sd/uiconfig/simpress/ui/annotationmenu.ui:94 msgctxt "annotationmenu|delete" msgid "_Delete Comment" -msgstr "_Slett merknad" +msgstr "Slett merknad" #. gAzBF #: sd/uiconfig/simpress/ui/annotationmenu.ui:103 msgctxt "annotationmenu|deleteby" msgid "Delete All Comments b_y %1" -msgstr "Slett _alle merknader av %1" +msgstr "Slett alle merknader av %1" #. VUb8r #: sd/uiconfig/simpress/ui/annotationmenu.ui:112 msgctxt "annotationmenu|deleteall" msgid "Delete _All Comments" -msgstr "_Slett alle merknader" +msgstr "Slett alle merknader" #. vGSve #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:12 msgctxt "annotationtagmenu|reply" msgid "_Reply" -msgstr "Sva_r" +msgstr "Svar" #. z4GFf #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:26 msgctxt "annotationtagmenu|delete" msgid "_Delete Comment" -msgstr "_Slett merknad" +msgstr "Slett merknad" #. qtvyS #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:34 msgctxt "annotationtagmenu|deleteby" msgid "Delete All Comments b_y %1" -msgstr "Slett _alle merknader av %1" +msgstr "Slett alle merknader av %1" #. fByWA #: sd/uiconfig/simpress/ui/annotationtagmenu.ui:42 msgctxt "annotationtagmenu|deleteall" msgid "Delete _All Comments" -msgstr "_Slett alle merknader" +msgstr "Slett alle merknader" #. bCCCX #: sd/uiconfig/simpress/ui/clientboxfragment.ui:13 @@ -4555,43 +4552,43 @@ #: sd/uiconfig/simpress/ui/currentmastermenu.ui:12 msgctxt "currentmastermenu|applyall" msgid "_Apply to All Slides" -msgstr "_Bruk på alle lysbilder" +msgstr "Bruk på alle lysbilder" #. 3sqfF #: sd/uiconfig/simpress/ui/currentmastermenu.ui:20 msgctxt "currentmastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "Bruk på _markerte lysbilder" +msgstr "Bruk på markerte lysbilder" #. hxmNR #: sd/uiconfig/simpress/ui/currentmastermenu.ui:34 msgctxt "currentmastermenu|edit" msgid "_Edit Master..." -msgstr "_Rediger hovedutforming …" +msgstr "Rediger hovedutforming …" #. cwNbj #: sd/uiconfig/simpress/ui/currentmastermenu.ui:42 msgctxt "currentmastermenu|delete" msgid "D_elete Master" -msgstr "S_lett hovedutforming" +msgstr "Slett hovedutforming" #. 6nNHe #: sd/uiconfig/simpress/ui/currentmastermenu.ui:56 msgctxt "currentmastermenu|large" msgid "Show _Large Preview" -msgstr "Vis _stor forhåndsvisning" +msgstr "Vis stor forhåndsvisning" #. kUpxX #: sd/uiconfig/simpress/ui/currentmastermenu.ui:63 msgctxt "currentmastermenu|small" msgid "Show S_mall Preview" -msgstr "Vis _liten forhåndsvisning" +msgstr "Vis liten forhåndsvisning" #. PbBwr #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:49 msgctxt "customanimationeffecttab|prop_label1" msgid "_Direction:" -msgstr "_Retning:" +msgstr "Retning:" #. 4Q3Gy #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:114 @@ -4627,25 +4624,25 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:205 msgctxt "customanimationeffecttab|aeffect_label" msgid "A_fter animation:" -msgstr "_Etter animasjonen:" +msgstr "Etter animasjonen:" #. uMyFB #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:219 msgctxt "customanimationeffecttab|sound_label" msgid "_Sound:" -msgstr "_Lyd:" +msgstr "Lyd:" #. zeE4a #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:233 msgctxt "customanimationeffecttab|text_animation_label" msgid "_Text animation:" -msgstr "_Tekstanimasjon:" +msgstr "Tekstanimasjon:" #. DUrNg #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:247 msgctxt "customanimationeffecttab|dim_color_label" msgid "Di_m color:" -msgstr "_Avblend farge:" +msgstr "Avblend farge:" #. KrjQe #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:270 @@ -4669,7 +4666,7 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:338 msgctxt "customanimationeffecttab|text_delay_label" msgid "delay between characters" -msgstr "forsinkelse mellom tegna" +msgstr "forsinkelse mellom tegnene" #. DQV2T #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:359 @@ -4705,7 +4702,7 @@ #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:390 msgctxt "customanimationeffecttab|extended_tip|aeffect_list" msgid "Select a color to be shown after the animation ends, or select another after-effect from the list" -msgstr "Velg fargen som skal vises når animasjonen er ferdig, eller velg en annen følgeeffekt fra lista." +msgstr "Velg fargen som skal vises når animasjonen er ferdig, eller velg en annen følgeeffekt fra listen." #. 7k6dN #: sd/uiconfig/simpress/ui/customanimationeffecttab.ui:406 @@ -4811,7 +4808,7 @@ #: sd/uiconfig/simpress/ui/customanimationfragment.ui:177 msgctxt "customanimationfragment|vert" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. 9AEka #: sd/uiconfig/simpress/ui/customanimationfragment.ui:185 @@ -4863,10 +4860,9 @@ #. FcztB #: sd/uiconfig/simpress/ui/customanimationspanel.ui:132 -#, fuzzy msgctxt "customanimationspanel|extended_tip|custom_animation_list" msgid "The animation list displays all animations for the current slide." -msgstr "Animasjonslista viser alle animasjonene til dette lysbildet." +msgstr "Animasjonslisten viser alle animasjonene til dette lysbildet." #. KFRTW #: sd/uiconfig/simpress/ui/customanimationspanel.ui:163 @@ -4896,7 +4892,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:218 msgctxt "customanimationspanel|extended_tip|remove_effect" msgid "Removes the selected animation effects from the animation list." -msgstr "Fjern den valgte animasjonseffekten fra animasjonslista." +msgstr "Fjern den valgte animasjonseffekten fra animasjonslisten." #. 3wHRp #: sd/uiconfig/simpress/ui/customanimationspanel.ui:233 @@ -4908,7 +4904,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:237 msgctxt "customanimationspanel|extended_tip|move_up" msgid "Click one of the buttons to move the selected animation effect up or down in the list." -msgstr "Trykk på en av knappene for å flytte den valgte animasjonseffekten opp eller ned i lista." +msgstr "Trykk på en av knappene for å flytte den valgte animasjonseffekten opp eller ned i listen." #. jEksa #: sd/uiconfig/simpress/ui/customanimationspanel.ui:252 @@ -4920,7 +4916,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:256 msgctxt "customanimationspanel|extended_tip|move_down" msgid "Click one of the buttons to move the selected animation effect up or down in the list." -msgstr "Trykk på en av knappene for å flytte den valgte animasjonseffekten opp eller ned i lista." +msgstr "Trykk på en av knappene for å flytte den valgte animasjonseffekten opp eller ned i listen." #. wCc89 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:285 @@ -4980,13 +4976,13 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:403 msgctxt "customanimationspanel|start_effect" msgid "_Start:" -msgstr "_Start:" +msgstr "Start:" #. 8AUq9 #: sd/uiconfig/simpress/ui/customanimationspanel.ui:417 msgctxt "customanimationspanel|effect_property" msgid "_Direction:" -msgstr "_Retning:" +msgstr "Retning:" #. QWndb #: sd/uiconfig/simpress/ui/customanimationspanel.ui:431 @@ -5028,7 +5024,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:486 msgctxt "customanimationspanel|extended_tip|more_properties" msgid "Specifies additional properties for the selected element in the Custom Animations pane." -msgstr "Angi tilleggsegenskaper for det valgte elementet i ruta for tilpassede animasjoner." +msgstr "Angi tilleggsegenskaper for det valgte elementet i ruten for tilpassede animasjoner." #. Ewipq #: sd/uiconfig/simpress/ui/customanimationspanel.ui:505 @@ -5106,7 +5102,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:30 msgctxt "customanimationtexttab|group_text_label" msgid "_Group text:" -msgstr "_Grupper tekst:" +msgstr "Grupper tekst:" #. 2eY3z #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:51 @@ -5118,7 +5114,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:62 msgctxt "customanimationtexttab|auto_after" msgid "_Automatically after:" -msgstr "_Automatisk etter:" +msgstr "Automatisk etter:" #. DLeHn #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:71 @@ -5178,7 +5174,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:113 msgctxt "customanimationtexttab|animate_shape" msgid "Animate attached _shape" -msgstr "Animer tilknyttet _figur" +msgstr "Animer tilknyttet figur" #. T6S58 #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:122 @@ -5190,7 +5186,7 @@ #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:134 msgctxt "customanimationtexttab|reverse_order" msgid "_In reverse order" -msgstr "_I motsatt rekkefølge" +msgstr "I motsatt rekkefølge" #. LK7yC #: sd/uiconfig/simpress/ui/customanimationtexttab.ui:143 @@ -5202,13 +5198,13 @@ #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:48 msgctxt "customanimationtimingtab|start_label" msgid "_Start:" -msgstr "_Start:" +msgstr "Start:" #. vpsTM #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:62 msgctxt "customanimationtimingtab|delay_label" msgid "_Delay:" -msgstr "_Forsinkelse" +msgstr "Forsinkelse" #. 4nFBf #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:76 @@ -5220,7 +5216,7 @@ #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:90 msgctxt "customanimationtimingtab|repeat_label" msgid "_Repeat:" -msgstr "_Gjenta:" +msgstr "Gjenta:" #. jYfdE #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:107 @@ -5250,7 +5246,7 @@ #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:164 msgctxt "customanimationtimingtab|rewind" msgid "Rewind _when done playing" -msgstr "Spol _tilbake etter avspilling" +msgstr "Spol tilbake etter avspilling" #. jkPKA #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:186 @@ -5262,13 +5258,13 @@ #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:219 msgctxt "customanimationtimingtab|rb_click_sequence" msgid "_Animate as part of click sequence" -msgstr "_Animer som en del av en klikksekvens" +msgstr "Animer som en del av en klikksekvens" #. CQiDM #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:241 msgctxt "customanimationtimingtab|rb_interactive" msgid "Start _effect on click of:" -msgstr "Start _effekten ved klikk på:" +msgstr "Start effekten ved klikk på:" #. fLVeN #: sd/uiconfig/simpress/ui/customanimationtimingtab.ui:284 @@ -5286,7 +5282,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:48 msgctxt "customslideshows|startshow" msgid "_Start" -msgstr "_Start" +msgstr "Start" #. ccH7R #: sd/uiconfig/simpress/ui/customslideshows.ui:55 @@ -5310,7 +5306,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:153 msgctxt "customslideshows|usecustomshows" msgid "_Use custom slide show" -msgstr "_Bruk tilpasset lysbildeframvisning" +msgstr "Bruk tilpasset lysbildeframvisning" #. zdYhK #: sd/uiconfig/simpress/ui/customslideshows.ui:162 @@ -5334,7 +5330,7 @@ #: sd/uiconfig/simpress/ui/customslideshows.ui:230 msgctxt "customslideshows|copy" msgid "Cop_y" -msgstr "_Kopier" +msgstr "Kopier" #. Vv8GG #: sd/uiconfig/simpress/ui/customslideshows.ui:237 @@ -5364,7 +5360,7 @@ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:109 msgctxt "definecustomslideshow|label1" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. sCCvq #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:128 @@ -5376,13 +5372,13 @@ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:159 msgctxt "definecustomslideshow|label2" msgid "_Existing slides:" -msgstr "_Eksisterende lysbilder:" +msgstr "Eksisterende lysbilder:" #. BhVRw #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:173 msgctxt "definecustomslideshow|label3" msgid "_Selected slides:" -msgstr "_Valgte lysbilder:" +msgstr "Valgte lysbilder:" #. epikC #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:217 @@ -5448,7 +5444,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:103 msgctxt "dlgfield|fixedRB" msgid "_Fixed" -msgstr "_Fast" +msgstr "Fast" #. 6zpWe #: sd/uiconfig/simpress/ui/dlgfield.ui:113 @@ -5460,7 +5456,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:125 msgctxt "dlgfield|varRB" msgid "_Variable" -msgstr "_Variabel" +msgstr "Variabel" #. 3aENC #: sd/uiconfig/simpress/ui/dlgfield.ui:136 @@ -5478,7 +5474,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:176 msgctxt "dlgfield|label2" msgid "_Language:" -msgstr "_Språk:" +msgstr "Språk:" #. yPQhg #: sd/uiconfig/simpress/ui/dlgfield.ui:200 @@ -5694,13 +5690,13 @@ #: sd/uiconfig/simpress/ui/dockinganimation.ui:389 msgctxt "dockinganimation|extended_tip|alignment" msgid "Aligns the images in your animation." -msgstr "Justerer bilden i animasjonen." +msgstr "Justerer bildet i animasjonen." #. EFWzn #: sd/uiconfig/simpress/ui/dockinganimation.ui:412 msgctxt "dockinganimation|label1" msgid "Animation Group" -msgstr "" +msgstr "Animasjonsgruppe" #. Bu3De #: sd/uiconfig/simpress/ui/dockinganimation.ui:456 @@ -5784,37 +5780,37 @@ #: sd/uiconfig/simpress/ui/effectmenu.ui:12 msgctxt "effectmenu|onclick" msgid "Start On _Click" -msgstr "Start ved _klikk" +msgstr "Start ved klikk" #. 65V7C #: sd/uiconfig/simpress/ui/effectmenu.ui:22 msgctxt "effectmenu|withprev" msgid "Start _With Previous" -msgstr "Start _med forrige" +msgstr "Start med forrige" #. 6CACD #: sd/uiconfig/simpress/ui/effectmenu.ui:32 msgctxt "effectmenu|afterprev" msgid "Start _After Previous" -msgstr "Start _etter forrige" +msgstr "Start etter forrige" #. CY3rG #: sd/uiconfig/simpress/ui/effectmenu.ui:48 msgctxt "effectmenu|options" msgid "_Effect Options..." -msgstr "_Effektinnstillinger …" +msgstr "Effektinnstillinger …" #. FeJyb #: sd/uiconfig/simpress/ui/effectmenu.ui:56 msgctxt "effectmenu|timing" msgid "_Timing..." -msgstr "_Tidskontroll …" +msgstr "Tidskontroll …" #. CpukX #: sd/uiconfig/simpress/ui/effectmenu.ui:64 msgctxt "effectmenu|remove" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. DXV9V #: sd/uiconfig/simpress/ui/fontsizemenu.ui:12 @@ -5868,7 +5864,7 @@ #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:24 msgctxt "headerfooterdialog|apply_all" msgid "Appl_y to All" -msgstr "Bruk på _alle" +msgstr "Bruk på alle" #. X6wby #: sd/uiconfig/simpress/ui/headerfooterdialog.ui:33 @@ -5904,7 +5900,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:39 msgctxt "headerfootertab|header_cb" msgid "Heade_r" -msgstr "_Topptekst" +msgstr "Topptekst" #. 7qH6R #: sd/uiconfig/simpress/ui/headerfootertab.ui:49 @@ -5916,7 +5912,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:74 msgctxt "headerfootertab|header_label" msgid "Header _text:" -msgstr "Topp_tekst:" +msgstr "Topptekst:" #. uNdGZ #: sd/uiconfig/simpress/ui/headerfootertab.ui:93 @@ -5928,7 +5924,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:117 msgctxt "headerfootertab|datetime_cb" msgid "_Date and time" -msgstr "_Dato og klokkeslett" +msgstr "Dato og klokkeslett" #. tUcmE #: sd/uiconfig/simpress/ui/headerfootertab.ui:126 @@ -5940,7 +5936,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:155 msgctxt "headerfootertab|rb_fixed" msgid "Fi_xed" -msgstr "_Fast" +msgstr "Fast" #. RrPiS #: sd/uiconfig/simpress/ui/headerfootertab.ui:168 @@ -5958,13 +5954,13 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:214 msgctxt "headerfootertab|rb_auto" msgid "_Variable" -msgstr "_Variabel" +msgstr "Variabel" #. CA8yX #: sd/uiconfig/simpress/ui/headerfootertab.ui:227 msgctxt "headerfootertab|extended_tip|rb_auto" msgid "Displays the date and time that the slide was created. Select a date format from the list." -msgstr "Viser tiden og datoen da lysbildet ble opprettet. Velg et datoformat fra lista." +msgstr "Viser tiden og datoen da lysbildet ble opprettet. Velg et datoformat fra listen." #. fXSJq #: sd/uiconfig/simpress/ui/headerfootertab.ui:253 @@ -5976,25 +5972,25 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:266 msgctxt "headerfootertab|language_label" msgid "_Language:" -msgstr "_Språk:" +msgstr "Språk:" #. BCGcC #: sd/uiconfig/simpress/ui/headerfootertab.ui:282 msgctxt "headerfootertab|extended_tip|datetime_format_list" msgid "Displays the date and time that the slide was created. Select a date format from the list." -msgstr "Viser tiden og datoen da lysbildet ble opprettet. Velg et datoformat fra lista." +msgstr "Viser tiden og datoen da lysbildet ble opprettet. Velg et datoformat fra listen." #. mDMwW #: sd/uiconfig/simpress/ui/headerfootertab.ui:295 msgctxt "headerfootertab|language_label1" msgid "_Format:" -msgstr "_Format:" +msgstr "Format:" #. htD4f #: sd/uiconfig/simpress/ui/headerfootertab.ui:343 msgctxt "headerfootertab|footer_cb" msgid "_Footer" -msgstr "_Bunntekst" +msgstr "Bunntekst" #. 8m2Zk #: sd/uiconfig/simpress/ui/headerfootertab.ui:352 @@ -6006,7 +6002,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:377 msgctxt "headerfootertab|footer_label" msgid "F_ooter text:" -msgstr "_Tekst i bunnteksten:" +msgstr "Tekst i bunnteksten:" #. g74zG #: sd/uiconfig/simpress/ui/headerfootertab.ui:396 @@ -6018,7 +6014,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:427 msgctxt "headerfootertab|slide_number" msgid "_Slide number" -msgstr "_Lysbildenummer" +msgstr "Lysbildenummer" #. ijGuK #: sd/uiconfig/simpress/ui/headerfootertab.ui:436 @@ -6036,7 +6032,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:474 msgctxt "headerfootertab|not_on_title" msgid "Do _not show on the first slide" -msgstr "_Ikke vis på første lysbilde" +msgstr "Ikke vis på første lysbilde" #. TmZpE #: sd/uiconfig/simpress/ui/headerfootertab.ui:483 @@ -6048,7 +6044,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:499 msgctxt "headerfootertab|replacement_a" msgid "_Page Number" -msgstr "Side_tall" +msgstr "Sidetall" #. x4Ffp #: sd/uiconfig/simpress/ui/headerfootertab.ui:513 @@ -6168,13 +6164,13 @@ #: sd/uiconfig/simpress/ui/insertslides.ui:96 msgctxt "insertslides|before" msgid "_Before" -msgstr "_Før" +msgstr "Før" #. DBp4R #: sd/uiconfig/simpress/ui/insertslides.ui:114 msgctxt "insertslides|after" msgid "A_fter" -msgstr "E_tter" +msgstr "Etter" #. p39eR #: sd/uiconfig/simpress/ui/insertslides.ui:139 @@ -6228,7 +6224,7 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:317 msgctxt "interactionpage|browse" msgid "_Browse..." -msgstr "_Bla gjennom ..." +msgstr "Bla gjennom ..." #. 6WoYE #: sd/uiconfig/simpress/ui/interactionpage.ui:324 @@ -6240,7 +6236,7 @@ #: sd/uiconfig/simpress/ui/interactionpage.ui:336 msgctxt "interactionpage|find" msgid "_Find" -msgstr "_Finn" +msgstr "Finn" #. AMQ6d #: sd/uiconfig/simpress/ui/interactionpage.ui:343 @@ -6294,13 +6290,13 @@ #: sd/uiconfig/simpress/ui/layoutmenu.ui:12 msgctxt "layoutmenu|apply" msgid "Apply to _Selected Slides" -msgstr "Bruk på _markerte lysbilder" +msgstr "Bruk på markerte lysbilder" #. r6oAh #: sd/uiconfig/simpress/ui/layoutmenu.ui:26 msgctxt "layoutmenu|insert" msgid "_Insert Slide" -msgstr "Sett _inn lysbilde" +msgstr "Sett inn lysbilde" #. e84v4 #: sd/uiconfig/simpress/ui/layoutwindow.ui:60 @@ -6324,7 +6320,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:96 msgctxt "masterlayoutdlg|header" msgid "_Header" -msgstr "_Topptekst" +msgstr "Topptekst" #. r7Aa8 #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:105 @@ -6336,7 +6332,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:117 msgctxt "masterlayoutdlg|datetime" msgid "_Date/time" -msgstr "_Dato og klokkeslett" +msgstr "Dato og klokkeslett" #. LcYxF #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:126 @@ -6348,7 +6344,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:138 msgctxt "masterlayoutdlg|footer" msgid "_Footer" -msgstr "_Bunntekst" +msgstr "Bunntekst" #. SFDjB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:147 @@ -6360,7 +6356,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:159 msgctxt "masterlayoutdlg|pagenumber" msgid "_Page number" -msgstr "Side_tall" +msgstr "Sidetall" #. y3BDS #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:168 @@ -6372,7 +6368,7 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:180 msgctxt "masterlayoutdlg|slidenumber" msgid "_Slide number" -msgstr "_Lysbildenummer" +msgstr "Lysbildenummer" #. StLxB #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:202 @@ -6384,31 +6380,31 @@ #: sd/uiconfig/simpress/ui/masterlayoutdlg.ui:227 msgctxt "masterlayoutdlg|extended_tip|MasterLayoutDialog" msgid "Adds or removes header, footer, date, and slide number placeholders to the layout of the master slide." -msgstr "Legg til eller fjern plassholdere for topptekst, bunntekst, dato og lysbildenummer i utforminga til tittellysbildet." +msgstr "Legg til eller fjern plassholdere for topptekst, bunntekst, dato og lysbildenummer i utformingen til tittellysbildet." #. 69Akr #: sd/uiconfig/simpress/ui/mastermenu.ui:12 msgctxt "mastermenu|applyall" msgid "_Apply to All Slides" -msgstr "_Bruk på alle lysbilder" +msgstr "Bruk på alle lysbilder" #. VRgjP #: sd/uiconfig/simpress/ui/mastermenu.ui:20 msgctxt "mastermenu|applyselect" msgid "Apply to _Selected Slides" -msgstr "Bruk på _markerte lysbilder" +msgstr "Bruk på markerte lysbilder" #. JqkU5 #: sd/uiconfig/simpress/ui/mastermenu.ui:34 msgctxt "mastermenu|large" msgid "Show _Large Preview" -msgstr "Vis _stor forhåndsvisning" +msgstr "Vis stor forhåndsvisning" #. hTJCE #: sd/uiconfig/simpress/ui/mastermenu.ui:42 msgctxt "mastermenu|small" msgid "Show S_mall Preview" -msgstr "Vis _liten forhåndsvisning" +msgstr "Vis liten forhåndsvisning" #. qF7zf #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 @@ -6528,7 +6524,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:244 msgctxt "navigatorpanel|extended_tip|shapes" msgid "In the submenu you can choose to display a list of all shapes or only the named shapes. Use drag-and-drop in the list to reorder the shapes. When you set the focus to a slide and press the Tab key, the next shape in the defined order is selected." -msgstr "I undermenten kan du velge å få vist en oversikt over alle former eller kun de navngitte former. Bruk drag-og-slipp i lista for å omorganisere formene. Når du setter fokus på et lysbilde og trykker på Tab-tasten, velges den neste formen i rekken." +msgstr "I undermenyen kan du velge å få vist en oversikt over alle former eller kun de navngitte former. Bruk dra-og-slipp i listen for å omorganisere formene. Når du setter fokus på et lysbilde og trykker på Tab-tasten, velges den neste formen i rekken." #. DzQZC #: sd/uiconfig/simpress/ui/navigatorpanel.ui:267 @@ -7030,7 +7026,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:12751 msgctxt "notebookbar_groupedbar_compact|draw" msgid "D_raw" -msgstr "_Tegne" +msgstr "Draw" #. GYqWX #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:3936 @@ -7097,7 +7093,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6712 msgctxt "notebookbar_groupedbar_compact|calculatet" msgid "_Calc" -msgstr "_Regn ut" +msgstr "Calc" #. DC7Hv #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:6986 @@ -7133,7 +7129,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8412 msgctxt "notebookbar_groupedbar_compact|3Db" msgid "3_D" -msgstr "_3D" +msgstr "3D" #. BTzDn #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:8646 @@ -7187,25 +7183,25 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:14442 msgctxt "notebookbar_groupedbar_compact|menub" msgid "_Menu" -msgstr "_Meny" +msgstr "Meny" #. EsADr #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2970 msgctxt "notebookbar_groupedbar_full|menub" msgid "_Menu" -msgstr "_Meny" +msgstr "Meny" #. Ch63h #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3023 msgctxt "notebookbar_groupedbar_full|toolsb" msgid "_Tools" -msgstr "Verk_tøy" +msgstr "Verktøy" #. kdH4L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3078 msgctxt "notebookbar_groupedbar_full|helpb" msgid "_Help" -msgstr "_Hjelp" +msgstr "Hjelp" #. bkg23 #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:3186 @@ -7241,7 +7237,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4284 msgctxt "notebookbar_groupedbar_full|draw" msgid "D_raw" -msgstr "_Tegne" +msgstr "Draw" #. gQQfL #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:4472 @@ -7263,7 +7259,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12549 msgctxt "notebookbar_groupedbar_full|arrangedrawb" msgid "_Arrange" -msgstr "_Still opp" +msgstr "Still opp" #. ZZz6G #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:5073 @@ -7319,19 +7315,19 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7382 msgctxt "notebookbar_groupedbar_full|rowscolumnst" msgid "R_ows" -msgstr "_Rader" +msgstr "Rader" #. 4nboE #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7506 msgctxt "notebookbar_groupedbar_full|calculatet" msgid "_Calc" -msgstr "_Regn ut" +msgstr "Calc" #. WfzeY #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7846 msgctxt "notebookbar_groupedbar_full|drawb" msgid "D_raw" -msgstr "_Tegne" +msgstr "Draw" #. QNg9L #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:8141 @@ -7357,13 +7353,13 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9001 msgctxt "notebookbar_groupedbar_full|3Db" msgid "3_D" -msgstr "_3D" +msgstr "3D" #. SbHmx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9264 msgctxt "notebookbar_groupedbar_full|graphicB" msgid "_Graphic" -msgstr "_Grafikk" +msgstr "Grafikk" #. DDTxx #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:9434 @@ -7375,7 +7371,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10399 msgctxt "notebookbar_groupedbar_full|media" msgid "_Media" -msgstr "_Media" +msgstr "Media" #. duFFM #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10578 @@ -7387,7 +7383,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:10862 msgctxt "notebookbar_groupedbar_full|editdrawb" msgid "F_rame" -msgstr "_Ramme" +msgstr "Ramme" #. EMvnF #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:11583 @@ -7411,7 +7407,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12219 msgctxt "notebookbar_groupedbar_full|drawm" msgid "D_raw" -msgstr "_Tegne" +msgstr "Draw" #. tcCdm #: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:12715 @@ -7699,7 +7695,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:70 msgctxt "extended_tip|startwithwizard" msgid "Specifies whether to activate the Select a Template window when opening a presentation with File - New - Presentation." -msgstr "" +msgstr "Angir om vinduet Velg en mal skal aktiveres når du åpner en presentasjon med Fil - Ny - Presentasjon." #. 5DjoQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:87 @@ -7717,7 +7713,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:130 msgctxt "extended_tip|qickedit" msgid "If on, you can edit text immediately after clicking a text object. If off, you must double-click to edit text." -msgstr "" +msgstr "Hvis den er på, kan du redigere teksten umiddelbart etter at du har klikket på et tekstobjekt. Hvis av, må du dobbeltklikke for å redigere tekst." #. dn7AQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:141 @@ -7729,7 +7725,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:151 msgctxt "extended_tip|textselected" msgid "Specifies whether to select a text box by clicking the text." -msgstr "" +msgstr "Angir om du vil velge en tekstboks ved å klikke på teksten." #. 9SB2g #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:168 @@ -7747,7 +7743,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:212 msgctxt "extended_tip|copywhenmove" msgid "If enabled, a copy is created when you move an object while holding down the Ctrl key." -msgstr "" +msgstr "Hvis aktivert, opprettes en kopi når du flytter et objekt mens du holder Ctrl-tasten nede." #. QdHNF #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:231 @@ -7759,7 +7755,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:248 msgctxt "extended_tip|units" msgid "Determines the Unit of measurement for presentations." -msgstr "" +msgstr "Bestemmer måleenheten for presentasjoner." #. S8VMD #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:274 @@ -7771,7 +7767,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:296 msgctxt "extended_tip|metricFields" msgid "Defines the spacing between tab stops." -msgstr "" +msgstr "Definerer avstanden mellom tabulatorstopp." #. oSmuC #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:313 @@ -7783,7 +7779,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:322 msgctxt "extended_tip|objalwymov" msgid "Specifies that you want to move an object with the Rotate tool enabled. If Object always moveable is not marked, the Rotate tool can only be used to rotate an object." -msgstr "" +msgstr "Spesifiserer at du vil flytte et objekt med Roter-verktøyet aktivert. Hvis objektet som alltid er flyttbart ikke er merket, kan Roter-verktøyet bare brukes til å rotere et objekt." #. 8cyDE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:333 @@ -7801,7 +7797,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:358 msgctxt "extended_tip|backgroundback" msgid "Specifies whether to use the cache for displaying objects on the master slide." -msgstr "" +msgstr "Spesifiserer om mellomlager skal brukes til å vise objekter på hovedlysbildet." #. psubE #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:376 @@ -7813,7 +7809,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:414 msgctxt "optimpressgeneralpage|label8" msgid "_Drawing scale:" -msgstr "_Målestokk for tegning:" +msgstr "Målestokk for tegning:" #. j7n3M #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:428 @@ -7831,7 +7827,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:548 msgctxt "extended_tip|scaleBox" msgid "Determines the drawing scale on the rulers." -msgstr "" +msgstr "Bestemmer tegningsskalaen på linjalene." #. E2cEn #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:571 @@ -7843,13 +7839,13 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:605 msgctxt "optimpressgeneralpage|printermetrics" msgid "Us_e printer metrics for document formatting" -msgstr "Bruk _skrivermål for dokumentformatering" +msgstr "Bruk skrivermål for dokumentformatering" #. mTuAd #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:614 msgctxt "extended_tip|printermetrics" msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing." -msgstr ">Angir at skrivermål skal brukes til både utskrifter og visning på skjermen.Hvis det ikke er merket av i denne boksen, vil et skriveruavhengig oppsett brukes til både visning på skjermen og utskrift." +msgstr "Angir at skrivermål skal brukes til både utskrifter og visning på skjermen.Hvis det ikke er merket av i denne boksen, vil et skriveruavhengig oppsett brukes til både visning på skjermen og utskrift." #. VVZZf #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:625 @@ -7861,7 +7857,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:634 msgctxt "extended_tip|cbCompatibility" msgid "Specifies that %PRODUCTNAME Impress calculates the paragraph spacing exactly like Microsoft PowerPoint." -msgstr "" +msgstr "Spesifiserer at %PRODUCTNAME Impress beregner avsnittavstanden akkurat som Microsoft PowerPoint." #. PaYjQ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:651 @@ -7879,19 +7875,19 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:696 msgctxt "extended_tip|enremotcont" msgid "Specifies that you want to enable Bluetooth remote control while Impress is running." -msgstr "" +msgstr "Spesifiserer at du vil aktivere Bluetooth-fjernkontroll mens Impress kjører." #. EE26t #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:707 msgctxt "optimpressgeneralpage|enprsntcons" msgid "Enable Presenter Console" -msgstr "Slå på Presenter Console" +msgstr "Slå på Presentasjonskonsollen" #. dAFGz #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:716 msgctxt "extended_tip|enprsntcons" msgid "Specifies that you want to enable the Presenter Console during slideshows." -msgstr "" +msgstr "Spesifiserer at du vil aktivere presentatørkonsollen under lysbildefremvisninger." #. txHfw #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:733 @@ -7903,7 +7899,7 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:750 msgctxt "extended_tip|OptSavePage" msgid "Defines the general options for drawing or presentation documents." -msgstr "" +msgstr "Definerer de generelle alternativene for tegning eller presentasjonsdokumenter." #. sGCUC #: sd/uiconfig/simpress/ui/photoalbum.ui:16 @@ -7921,7 +7917,7 @@ #: sd/uiconfig/simpress/ui/photoalbum.ui:164 msgctxt "photoalbum|rem_btn|tooltip_text" msgid "Remove Image from List" -msgstr "Fjern bildet fra lista" +msgstr "Fjern bildet fra listen" #. Xzv9L #: sd/uiconfig/simpress/ui/photoalbum.ui:179 @@ -7999,7 +7995,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:118 msgctxt "presentationdialog|from" msgid "_From:" -msgstr "_Fra:" +msgstr "Fra:" #. yfqmc #: sd/uiconfig/simpress/ui/presentationdialog.ui:131 @@ -8023,7 +8019,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:168 msgctxt "presentationdialog|allslides" msgid "All _slides" -msgstr "_Alle lysbilder" +msgstr "Alle lysbilder" #. 6xRAA #: sd/uiconfig/simpress/ui/presentationdialog.ui:178 @@ -8035,7 +8031,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:195 msgctxt "presentationdialog|customslideshow" msgid "_Custom slide show:" -msgstr "_Selvvalgt lysbildeframvisning:" +msgstr "Selvvalgt lysbildeframvisning:" #. AcANY #: sd/uiconfig/simpress/ui/presentationdialog.ui:208 @@ -8065,7 +8061,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:311 msgctxt "presentationdialog|presdisplay_label" msgid "P_resentation display:" -msgstr "_Presentasjonsskjerm:" +msgstr "Presentasjonsskjerm:" #. ECzT8 #: sd/uiconfig/simpress/ui/presentationdialog.ui:334 @@ -8125,7 +8121,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:469 msgctxt "presentationdialog|auto" msgid "_Loop and repeat after:" -msgstr "_Løkke og gjenta etter:" +msgstr "Løkke og gjenta etter:" #. ewuNo #: sd/uiconfig/simpress/ui/presentationdialog.ui:482 @@ -8137,7 +8133,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:493 msgctxt "presentationdialog|showlogo" msgid "Show _logo" -msgstr "Vis _logo" +msgstr "Vis logo" #. cMi4u #: sd/uiconfig/simpress/ui/presentationdialog.ui:503 @@ -8173,7 +8169,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:581 msgctxt "presentationdialog|manualslides" msgid "Change slides _manually" -msgstr "_Bytt lysbilder manuelt" +msgstr "Bytt lysbilder manuelt" #. 2PEAj #: sd/uiconfig/simpress/ui/presentationdialog.ui:590 @@ -8185,7 +8181,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:601 msgctxt "presentationdialog|pointervisible" msgid "Mouse pointer _visible" -msgstr "_Vis musepeker" +msgstr "Vis musepeker" #. pDBLN #: sd/uiconfig/simpress/ui/presentationdialog.ui:610 @@ -8197,7 +8193,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:621 msgctxt "presentationdialog|pointeraspen" msgid "Mouse pointer as _pen" -msgstr "Musepeker som _penn" +msgstr "Musepeker som penn" #. QLvoH #: sd/uiconfig/simpress/ui/presentationdialog.ui:630 @@ -8209,7 +8205,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:641 msgctxt "presentationdialog|animationsallowed" msgid "_Animations allowed" -msgstr "_Animasjoner tillatt" +msgstr "Animasjoner tillatt" #. EUe99 #: sd/uiconfig/simpress/ui/presentationdialog.ui:650 @@ -8221,7 +8217,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:661 msgctxt "presentationdialog|changeslidesbyclick" msgid "Change slides by clic_king on background" -msgstr "Bytt _lysbilde ved å klikke på bakgrunnen" +msgstr "Bytt lysbilde ved å klikke på bakgrunnen" #. tzMEC #: sd/uiconfig/simpress/ui/presentationdialog.ui:670 @@ -8233,7 +8229,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:681 msgctxt "presentationdialog|alwaysontop" msgid "Presentation always _on top" -msgstr "Legg alltid presentasjonen ø_verst" +msgstr "Legg alltid presentasjonen øverst" #. Ux58Z #: sd/uiconfig/simpress/ui/presentationdialog.ui:690 @@ -8245,7 +8241,7 @@ #: sd/uiconfig/simpress/ui/presentationdialog.ui:710 msgctxt "presentationdialog|label4" msgid "Options" -msgstr "Valg" +msgstr "Alternativer" #. 8pqaK #: sd/uiconfig/simpress/ui/presentationdialog.ui:747 @@ -8263,79 +8259,79 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:47 msgctxt "extended_tip|pagedefaultrb" msgid "Specifies that you do not want to further scale pages when printing." -msgstr "" +msgstr "Angir at du ikke vil skalere sidene ytterligere når du skriver ut." #. Azbxx #: sd/uiconfig/simpress/ui/prntopts.ui:58 msgctxt "prntopts|fittopgrb" msgid "_Fit to page" -msgstr "Tilpass til _side" +msgstr "Tilpass til side" #. BY9Lo #: sd/uiconfig/simpress/ui/prntopts.ui:68 msgctxt "extended_tip|fittopgrb" msgid "Specifies whether to scale down objects that are beyond the margins of the current printer, so that they fit on the paper in the printer." -msgstr "" +msgstr "Spesifiserer om du skal skalere ned objekter som ligger utenfor margene til den gjeldende skriveren, slik at de passer på papiret i skriveren." #. 7Jqsg #: sd/uiconfig/simpress/ui/prntopts.ui:79 msgctxt "prntopts|tilepgrb" msgid "_Tile pages" -msgstr "_Side ved side" +msgstr "Side ved side" #. XVA4W #: sd/uiconfig/simpress/ui/prntopts.ui:89 msgctxt "extended_tip|tilepgrb" msgid "Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper." -msgstr "" +msgstr "Spesifiserer at sidene skal skrives ut i side ved side format. Hvis sidene eller lysbildene er mindre enn papiret, vil flere sider eller lysbildene skrives ut på en side." #. DRu9w #: sd/uiconfig/simpress/ui/prntopts.ui:100 msgctxt "prntopts|papertryfrmprntrcb" msgid "Paper tray from printer s_ettings" -msgstr "Papirskuff fra _skriveroppsettet" +msgstr "Papirskuff fra skriveroppsettet" #. KFsSk #: sd/uiconfig/simpress/ui/prntopts.ui:109 msgctxt "extended_tip|papertryfrmprntrcb" msgid "Determines that the paper tray to be used is the one defined in the printer setup." -msgstr "" +msgstr "Bestemmer at papirskuffen som skal brukes, er den som er definert i skriveroppsettet." #. LXUhA #: sd/uiconfig/simpress/ui/prntopts.ui:120 msgctxt "prntopts|brouchrb" msgid "B_rochure" -msgstr "B_rosjyre" +msgstr "Brosjyre" #. 96Suw #: sd/uiconfig/simpress/ui/prntopts.ui:130 msgctxt "extended_tip|brouchrb" msgid "Select the Brochure option to print the document in brochure format." -msgstr "" +msgstr "Velg alternativet Brosjyre for å skrive ut dokumentet i brosjyreformat." #. QiBFz #: sd/uiconfig/simpress/ui/prntopts.ui:152 msgctxt "prntopts|frontcb" msgid "Fr_ont" -msgstr "_Framside" +msgstr "Framside" #. afFiH #: sd/uiconfig/simpress/ui/prntopts.ui:164 msgctxt "extended_tip|frontcb" msgid "Select Front to print the front of a brochure." -msgstr "" +msgstr "Velg Front for å skrive ut forsiden av en brosjyre." #. RmDFe #: sd/uiconfig/simpress/ui/prntopts.ui:176 msgctxt "prntopts|backcb" msgid "Ba_ck" -msgstr "_Bakside" +msgstr "Bakside" #. B3z27 #: sd/uiconfig/simpress/ui/prntopts.ui:188 msgctxt "extended_tip|backcb" msgid "Select Back to print the back of a brochure." -msgstr "" +msgstr "Velg Bakside for å skrive ut baksiden av en brosjyre." #. NsWL6 #: sd/uiconfig/simpress/ui/prntopts.ui:214 @@ -8347,49 +8343,49 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:248 msgctxt "prntopts|pagenmcb" msgid "_Page name" -msgstr "_Sidenavn" +msgstr "Sidenavn" #. tFJRe #: sd/uiconfig/simpress/ui/prntopts.ui:257 msgctxt "extended_tip|pagenmcb" msgid "Specifies whether to print the page name." -msgstr "" +msgstr "Angir om sidenavnet skal skrives ut." #. XeD9w #: sd/uiconfig/simpress/ui/prntopts.ui:268 msgctxt "prntopts|datecb" msgid "D_ate" -msgstr "D_ato" +msgstr "Dato" #. RFT4B #: sd/uiconfig/simpress/ui/prntopts.ui:277 msgctxt "extended_tip|datecb" msgid "Specifies whether to print the current date." -msgstr "" +msgstr "Angir om gjeldende dato skal skrives ut." #. 4Dm6A #: sd/uiconfig/simpress/ui/prntopts.ui:288 msgctxt "prntopts|timecb" msgid "Ti_me" -msgstr "_Klokkeslett" +msgstr "Klokkeslett" #. aPHPX #: sd/uiconfig/simpress/ui/prntopts.ui:297 msgctxt "extended_tip|timecb" msgid "Specifies whether to print the current time." -msgstr "" +msgstr "Angir om gjeldende tid skal skrives ut." #. dBXeA #: sd/uiconfig/simpress/ui/prntopts.ui:308 msgctxt "prntopts|hiddenpgcb" msgid "H_idden pages" -msgstr "_Skjulte sider" +msgstr "Skjulte sider" #. rS3jY #: sd/uiconfig/simpress/ui/prntopts.ui:317 msgctxt "extended_tip|hiddenpgcb" msgid "Specifies whether to print the pages that are currently hidden from the presentation." -msgstr "" +msgstr "Angir om sidene som for øyeblikket er skjult i presentasjonen, skal skrives ut." #. XuHA2 #: sd/uiconfig/simpress/ui/prntopts.ui:334 @@ -8407,31 +8403,31 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:389 msgctxt "extended_tip|defaultrb" msgid "Specifies that you want to print in original colors." -msgstr "" +msgstr "Angir at du vil skrive ut i originale farger." #. sFK9C #: sd/uiconfig/simpress/ui/prntopts.ui:400 msgctxt "prntopts|grayscalerb" msgid "Gra_yscale" -msgstr "_Gråtoner" +msgstr "Gråtoner" #. 85Da5 #: sd/uiconfig/simpress/ui/prntopts.ui:410 msgctxt "extended_tip|grayscalerb" msgid "Specifies that you want to print colors as grayscale." -msgstr "" +msgstr "Angir at du vil skrive ut farger som gråtoner." #. ibjkX #: sd/uiconfig/simpress/ui/prntopts.ui:421 msgctxt "prntopts|blackwhiterb" msgid "Black & _white" -msgstr "_Svart/hvit" +msgstr "Svart/hvit" #. CcezY #: sd/uiconfig/simpress/ui/prntopts.ui:431 msgctxt "extended_tip|blackwhiterb" msgid "Specifies that you want to print the document in black and white." -msgstr "" +msgstr "Angir at du vil skrive ut dokumentet i svart-hvitt." #. PUgsP #: sd/uiconfig/simpress/ui/prntopts.ui:448 @@ -8473,7 +8469,7 @@ #: sd/uiconfig/simpress/ui/prntopts.ui:570 msgctxt "extended_tip|prntopts" msgid "Specifies print settings within a drawing or presentation document." -msgstr "" +msgstr "Angir utskriftsinnstillinger i et tegnings- eller presentasjonsdokument." #. QRYoE #: sd/uiconfig/simpress/ui/publishingdialog.ui:21 @@ -8491,7 +8487,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:74 msgctxt "publishingdialog|finishButton" msgid "_Create" -msgstr "_Opprett" +msgstr "Opprett" #. xFoJm #: sd/uiconfig/simpress/ui/publishingdialog.ui:81 @@ -8527,7 +8523,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:173 msgctxt "publishingdialog|extended_tip|oldDesignRadiobutton" msgid "Loads an existing design from the design list to use as a starting point for the steps to follow on the next pages of the Wizard." -msgstr "Laster inn en eksisterende utforming fra utformingslista, og bruker den som utgangspunkt for stegene på de neste sidene i veiviseren." +msgstr "Laster inn en eksisterende utforming fra utformingslisten, og bruker den som utgangspunkt for stegene på de neste sidene i veiviseren." #. CTCLg #: sd/uiconfig/simpress/ui/publishingdialog.ui:230 @@ -8551,7 +8547,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:282 msgctxt "publishingdialog|extended_tip|delDesingButton" msgid "Deletes the selected design from the design list." -msgstr "Sletter den valgte utforminga fra utformingslista." +msgstr "Sletter den valgte utformingen fra utformingslisten." #. cQEWT #: sd/uiconfig/simpress/ui/publishingdialog.ui:307 @@ -8593,7 +8589,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:417 msgctxt "publishingdialog|indexTxtLabel" msgid "_URL for listeners:" -msgstr "_URL for lyttere:" +msgstr "URL for lyttere:" #. YgFn6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:436 @@ -8635,7 +8631,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:565 msgctxt "publishingdialog|chgDefaultRadiobutton" msgid "_As stated in document" -msgstr "_Som oppgitt i dokumentet" +msgstr "Som oppgitt i dokumentet" #. 5C9U8 #: sd/uiconfig/simpress/ui/publishingdialog.ui:575 @@ -8647,7 +8643,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:587 msgctxt "publishingdialog|chgAutoRadiobutton" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. 3Wi7b #: sd/uiconfig/simpress/ui/publishingdialog.ui:597 @@ -8659,7 +8655,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:627 msgctxt "publishingdialog|durationTxtLabel" msgid "_Slide view time:" -msgstr "_Visingstid for lysbilde:" +msgstr "Visingstid for lysbilde:" #. ACdZC #: sd/uiconfig/simpress/ui/publishingdialog.ui:647 @@ -8671,7 +8667,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:666 msgctxt "publishingdialog|endlessCheckbutton" msgid "_Endless" -msgstr "_Uendelig" +msgstr "Uendelig" #. AM5ni #: sd/uiconfig/simpress/ui/publishingdialog.ui:676 @@ -8719,7 +8715,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:883 msgctxt "publishingdialog|webCastRadiobutton" msgid "_WebCast" -msgstr "_Nettpublisering" +msgstr "Nettpublisering" #. 7aTUk #: sd/uiconfig/simpress/ui/publishingdialog.ui:893 @@ -8731,7 +8727,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:904 msgctxt "publishingdialog|kioskRadiobutton" msgid "_Automatic" -msgstr "_Automatisk" +msgstr "Automatisk" #. 3A5Bq #: sd/uiconfig/simpress/ui/publishingdialog.ui:914 @@ -8743,7 +8739,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:925 msgctxt "publishingdialog|singleDocumentRadiobutton" msgid "_Single-document HTML" -msgstr "_Enkeltdokument HTML" +msgstr "Enkeltdokument HTML" #. iH77N #: sd/uiconfig/simpress/ui/publishingdialog.ui:941 @@ -8779,7 +8775,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1047 msgctxt "publishingdialog|pngRadiobutton" msgid "_PNG" -msgstr "_PNG" +msgstr "PNG" #. tBByA #: sd/uiconfig/simpress/ui/publishingdialog.ui:1057 @@ -8791,7 +8787,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1069 msgctxt "publishingdialog|gifRadiobutton" msgid "_GIF" -msgstr "_GIF" +msgstr "GIF" #. CjCTt #: sd/uiconfig/simpress/ui/publishingdialog.ui:1079 @@ -8803,7 +8799,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1091 msgctxt "publishingdialog|jpgRadiobutton" msgid "_JPG" -msgstr "_JPG" +msgstr "JPG" #. bEwzb #: sd/uiconfig/simpress/ui/publishingdialog.ui:1101 @@ -8815,7 +8811,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1122 msgctxt "publishingdialog|qualityTxtLabel" msgid "_Quality:" -msgstr "_Kvalitet:" +msgstr "Kvalitet:" #. oYcCy #: sd/uiconfig/simpress/ui/publishingdialog.ui:1147 @@ -8833,7 +8829,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1207 msgctxt "publishingdialog|resolution1Radiobutton" msgid "Low (_640 × 480 pixels)" -msgstr "Lav (_640 × 480 piksler)" +msgstr "Lav (640 × 480 piksler)" #. 4RadV #: sd/uiconfig/simpress/ui/publishingdialog.ui:1216 @@ -8845,7 +8841,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1228 msgctxt "publishingdialog|resolution2Radiobutton" msgid "Medium (_800 × 600 pixels)" -msgstr "Medium (_800 × 600 piksler)" +msgstr "Medium (800 × 600 piksler)" #. XxGDu #: sd/uiconfig/simpress/ui/publishingdialog.ui:1238 @@ -8857,7 +8853,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1250 msgctxt "publishingdialog|resolution3Radiobutton" msgid "High (_1024 × 768 pixels)" -msgstr "Høy (_1024 × 768 piksler)" +msgstr "Høy (1024 × 768 piksler)" #. aBZEV #: sd/uiconfig/simpress/ui/publishingdialog.ui:1262 @@ -8875,7 +8871,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1320 msgctxt "publishingdialog|sldSoundCheckbutton" msgid "_Export sounds when slide advances" -msgstr "_Ta med lydeffekter ved lysbildeskifte" +msgstr "Ta med lydeffekter ved lysbildeskifte" #. h7rJh #: sd/uiconfig/simpress/ui/publishingdialog.ui:1330 @@ -8899,7 +8895,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1413 msgctxt "publishingdialog|authorTxtLabel" msgid "_Author:" -msgstr "_Forfatter:" +msgstr "Forfatter:" #. FuMMH #: sd/uiconfig/simpress/ui/publishingdialog.ui:1431 @@ -8965,7 +8961,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1612 msgctxt "publishingdialog|textOnlyCheckbutton" msgid "_Text only" -msgstr "_Bare tekst" +msgstr "Bare tekst" #. F9Ysk #: sd/uiconfig/simpress/ui/publishingdialog.ui:1623 @@ -8983,7 +8979,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1710 msgctxt "publishingdialog|docColorsRadiobutton" msgid "_Apply color scheme from document" -msgstr "_Bruk fargeoppsett fra dokumentet" +msgstr "Bruk fargeoppsett fra dokumentet" #. fsTQM #: sd/uiconfig/simpress/ui/publishingdialog.ui:1727 @@ -9001,7 +8997,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1779 msgctxt "publishingdialog|vLinkButton" msgid "_Visited Link" -msgstr "_Besøkt lenke" +msgstr "Besøkt lenke" #. EWurf #: sd/uiconfig/simpress/ui/publishingdialog.ui:1792 @@ -9115,13 +9111,13 @@ #: sd/uiconfig/simpress/ui/scalemenu.ui:50 msgctxt "scalemenu|hori" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. 87tbC #: sd/uiconfig/simpress/ui/scalemenu.ui:58 msgctxt "scalemenu|vert" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. jdFme #: sd/uiconfig/simpress/ui/scalemenu.ui:66 @@ -9133,13 +9129,13 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:26 msgctxt "sdviewpage|ruler" msgid "_Rulers visible" -msgstr "_Linjaler synlige" +msgstr "Linjaler synlige" #. mUwRB #: sd/uiconfig/simpress/ui/sdviewpage.ui:35 msgctxt "extended_tip|ruler" msgid "Specifies whether to display the rulers at the top and to the left of the work area." -msgstr "" +msgstr "Spesifiserer om linjaler skal vises øverst og til venstre for arbeidsområdet." #. RPDaD #: sd/uiconfig/simpress/ui/sdviewpage.ui:47 @@ -9151,31 +9147,31 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:56 msgctxt "extended_tip|dragstripes" msgid "Specifies whether to display guides when moving an object." -msgstr "" +msgstr "Spesifiserer om veiledninger skal vises når du flytter et objekt." #. Grues #: sd/uiconfig/simpress/ui/sdviewpage.ui:68 msgctxt "sdviewpage|handlesbezier" msgid "_All control points in Bézier editor" -msgstr "_Alle kontrollpunkter i bezier-editoren" +msgstr "Alle kontrollpunkter i bezier-editoren" #. rRDtR #: sd/uiconfig/simpress/ui/sdviewpage.ui:77 msgctxt "extended_tip|handlesbezier" msgid "Displays the control points of all Bézier points if you have previously selected a Bézier curve. If the All control points in Bézier editor option is not marked, only the control points of the selected Bézier points will be visible." -msgstr "" +msgstr "Viser kontrollpunktene for alle Bézier-punkter hvis du tidligere har valgt en Bézier-kurve. Hvis alternativet Alle kontrollpunkter i Bézier-editor ikke er merket, vil bare kontrollpunktene til de valgte Bézier-punktene være synlige." #. hz6x7 #: sd/uiconfig/simpress/ui/sdviewpage.ui:89 msgctxt "sdviewpage|moveoutline" msgid "_Contour of each individual object" -msgstr "_Omriss for kvart enkelt objekt" +msgstr "Omriss for kvart enkelt objekt" #. fWu42 #: sd/uiconfig/simpress/ui/sdviewpage.ui:98 msgctxt "extended_tip|moveoutline" msgid "%PRODUCTNAME displays the contour line of each individual object when moving this object." -msgstr "" +msgstr "%PRODUCTNAME viser konturlinjen til hvert enkelt objekt når du flytter dette objektet." #. kJGzf #: sd/uiconfig/simpress/ui/sdviewpage.ui:116 @@ -9187,13 +9183,13 @@ #: sd/uiconfig/simpress/ui/sdviewpage.ui:124 msgctxt "extended_tip|SdViewPage" msgid "Specifies the available display modes." -msgstr "" +msgstr "Spesifiserer tilgjengelige skjermmodus." #. 7DgNY #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:38 msgctxt "sidebarslidebackground|label2" msgid "_Format:" -msgstr "_Format:" +msgstr "Format:" #. 497k8 #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:52 @@ -9205,13 +9201,13 @@ #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:67 msgctxt "sidebarslidebackground|orientation" msgid "Landscape" -msgstr "Landskap" +msgstr "Liggende" #. oXLRm #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:68 msgctxt "sidebarslidebackground|orientation" msgid "Portrait" -msgstr "Portrett" +msgstr "Stående" #. 65hTR #: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:108 @@ -9277,7 +9273,7 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:28 msgctxt "slidecontextmenu|goto" msgid "_Go to Slide" -msgstr "_Gå til lysbilde" +msgstr "Gå til lysbilde" #. 4tv2Z #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:38 @@ -9301,79 +9297,79 @@ #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:78 msgctxt "slidecontextmenu|width" msgid "_Pen Width" -msgstr "_Pennbredde" +msgstr "Pennbredde" #. 4QNpS #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:88 msgctxt "slidecontextmenu|4" msgid "_Very Thin" -msgstr "_Veldig tynn" +msgstr "Veldig tynn" #. otGpz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:96 msgctxt "slidecontextmenu|100" msgid "_Thin" -msgstr "_Tynn" +msgstr "Tynn" #. 76rP5 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:104 msgctxt "slidecontextmenu|150" msgid "_Normal" -msgstr "_Normal" +msgstr "Normal" #. g56Pz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:112 msgctxt "slidecontextmenu|200" msgid "_Thick" -msgstr "_Tykk" +msgstr "Tykk" #. hrkGo #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:120 msgctxt "slidecontextmenu|400" msgid "_Very Thick" -msgstr "_Veldig tykk" +msgstr "Veldig tykk" #. 222Gq #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:132 msgctxt "slidecontextmenu|color" msgid "_Change Pen Color..." -msgstr "_Endre pennfarge …" +msgstr "Endre pennfarge …" #. zfWFz #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:140 msgctxt "slidecontextmenu|erase" msgid "_Erase All Ink on Slide" -msgstr "_Fjern allt blekk på lysbildet" +msgstr "Fjern allt blekk på lysbildet" #. ufabH #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:154 msgctxt "slidecontextmenu|screen" msgid "_Screen" -msgstr "_Skjerm" +msgstr "Skjerm" #. yNb49 #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:164 msgctxt "slidecontextmenu|black" msgid "_Black" -msgstr "_Svart" +msgstr "Svart" #. 4CZGb #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:172 msgctxt "slidecontextmenu|white" msgid "_White" -msgstr "_Hvit" +msgstr "Hvit" #. 4F6dy #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:184 msgctxt "slidecontextmenu|edit" msgid "E_dit Presentation" -msgstr "_Rediger presentasjonen" +msgstr "Rediger presentasjonen" #. Byk6a #: sd/uiconfig/simpress/ui/slidecontextmenu.ui:192 msgctxt "slidecontextmenu|end" msgid "_End Show" -msgstr "_Avslutt framvisningen" +msgstr "Avslutt framvisningen" #. DBgNQ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:8 @@ -9385,19 +9381,19 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:26 msgctxt "slidedesigndialog|load" msgid "_Load..." -msgstr "_Last inn …" +msgstr "Last inn …" #. KDCjh #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:33 msgctxt "slidedesigndialog|extended_tip|load" msgid "Displays the Load Master Slide dialog, where you can select additional slide designs." -msgstr "ViserLast inn Hovedlysbildedialogen, der du kan velge flere lysbildedesigner." +msgstr "Vise rLast inn Hovedlysbildedialogen, der du kan velge flere lysbildedesigner." #. RQGwn #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:118 msgctxt "slidedesigndialog|masterpage" msgid "_Exchange background page" -msgstr "_Bytt bakgrunnsside" +msgstr "Bytt bakgrunnsside" #. Ndm5j #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:127 @@ -9409,7 +9405,7 @@ #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:138 msgctxt "slidedesigndialog|checkmasters" msgid "_Delete unused backgrounds" -msgstr "_Slett ubrukte bakgrunner" +msgstr "Slett ubrukte bakgrunner" #. 7gazj #: sd/uiconfig/simpress/ui/slidedesigndialog.ui:147 @@ -9601,7 +9597,7 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:24 msgctxt "tabledesignpanel|UseFirstRowStyle" msgid "_Header row" -msgstr "_Overskriftsrad" +msgstr "Overskriftsrad" #. 4otAa #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:39 @@ -9613,7 +9609,7 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:54 msgctxt "tabledesignpanel|UseBandingRowStyle" msgid "_Banded rows" -msgstr "_Radstriper" +msgstr "Radstriper" #. 3KfJE #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:69 @@ -9625,7 +9621,7 @@ #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:84 msgctxt "tabledesignpanel|UseLastColumnStyle" msgid "_Last column" -msgstr "_Siste kolonne" +msgstr "Siste kolonne" #. z5zRG #: sd/uiconfig/simpress/ui/tabledesignpanel.ui:99 @@ -9643,7 +9639,7 @@ #: sd/uiconfig/simpress/ui/templatedialog.ui:41 msgctxt "templatedialog|standard" msgid "_Standard" -msgstr "_Standard" +msgstr "Standard" #. HsXnQ #: sd/uiconfig/simpress/ui/templatedialog.ui:152 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/setup_native/source/mac.po libreoffice-7.1.3~rc2/translations/source/nb/setup_native/source/mac.po --- libreoffice-7.1.2~rc2/translations/source/nb/setup_native/source/mac.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/setup_native/source/mac.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-08-06 13:34+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1492417583.000000\n" #. HQKCW @@ -95,7 +95,7 @@ "ChooseManualText\n" "LngText.text" msgid "Point the dialog to your [PRODUCTNAME] [PRODUCTVERSION] installation." -msgstr "Bla deg fram til mappa der din [PRODUCTNAME] [PRODUCTVERSION]-installasjon er." +msgstr "Bla deg fram til mappen der din [PRODUCTNAME] [PRODUCTVERSION]-installasjon er." #. Quddb #: macinstall.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/nb/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-12 08:36+0000\n" -"Last-Translator: kingu \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -26,13 +26,13 @@ #: include/sfx2/strings.hrc:26 msgctxt "STR_SAVEDOC" msgid "~Save" -msgstr "La~gre" +msgstr "Lagre" #. CQKYg #: include/sfx2/strings.hrc:27 msgctxt "STR_SAVEASDOC" msgid "Save ~As..." -msgstr "Lagre ~som …" +msgstr "Lagre som …" #. BdP9V #: include/sfx2/strings.hrc:28 @@ -44,7 +44,7 @@ #: include/sfx2/strings.hrc:29 msgctxt "STR_CLOSEDOC" msgid "~Close" -msgstr "~Lukk" +msgstr "Lukk" #. 5ZD4C #: include/sfx2/strings.hrc:30 @@ -219,13 +219,13 @@ #: include/sfx2/strings.hrc:57 msgctxt "STR_QRYTEMPL_UPDATE_BTN" msgid "~Update Styles" -msgstr "~Oppdater stilene" +msgstr "Oppdater stilene" #. W4thg #: include/sfx2/strings.hrc:58 msgctxt "STR_QRYTEMPL_KEEP_BTN" msgid "~Keep Old Styles" -msgstr "~Behold de gamle stilene" +msgstr "Behold de gamle stilene" #. XdvXk #: include/sfx2/strings.hrc:59 @@ -445,7 +445,7 @@ #: include/sfx2/strings.hrc:91 msgctxt "STR_HELP_MENU_TEXT_COPY" msgid "~Copy" -msgstr "~Kopier" +msgstr "Kopier" #. TQd3C #: include/sfx2/strings.hrc:92 @@ -463,7 +463,7 @@ #: include/sfx2/strings.hrc:94 msgctxt "RID_HELP_ONSTARTUP_TEXT" msgid "~Display %PRODUCTNAME %MODULENAME Help at Startup" -msgstr "~Vis hjelp om %PRODUCTNAME %MODULENAME ved start" +msgstr "Vis hjelp om %PRODUCTNAME %MODULENAME ved start" #. TEgzB #: include/sfx2/strings.hrc:96 @@ -683,7 +683,7 @@ #: include/sfx2/strings.hrc:131 msgctxt "STR_QUITAPP" msgid "E~xit %PRODUCTNAME" -msgstr "~Avslutt %PRODUCTNAME" +msgstr "Avslutt %PRODUCTNAME" #. k2PBJ #: include/sfx2/strings.hrc:132 @@ -695,7 +695,7 @@ #: include/sfx2/strings.hrc:133 msgctxt "RID_STR_HLPFILENOTEXIST" msgid "The help file for this topic is not installed." -msgstr "Hjelpefila for dette emnet er ikke installert." +msgstr "Hjelpefilen for dette emnet er ikke installert." #. zjPS7 #: include/sfx2/strings.hrc:134 @@ -749,7 +749,7 @@ #: include/sfx2/strings.hrc:142 msgctxt "STR_QUICKSTART_RECENTDOC" msgid "Recent Documents" -msgstr "Nylig brukte dokumenter" +msgstr "Nylig brukte Dokumenter" #. DirQf #: include/sfx2/strings.hrc:143 @@ -814,7 +814,7 @@ "This will discard all changes on the server since check-out.\n" "Do you want to proceed?" msgstr "" -"Dette vil forkaste alle endringer på tjeneren siden utsjekking.\n" +"Dette vil forkaste alle endringer på serveren siden utsjekking.\n" "Vil du fortsette?" #. jufLD @@ -896,19 +896,19 @@ "En passende komponentmetode %1\n" "ble ikke funnet.\n" "\n" -"Sjekk stavinga av metodenavnet." +"Sjekk stavingen av metodenavnet." #. 2FLYB #: include/sfx2/strings.hrc:163 msgctxt "RID_SVXSTR_GRFILTER_OPENERROR" msgid "Image file cannot be opened" -msgstr "Kan ikke åpne bildefila" +msgstr "Kan ikke åpne bildefilen" #. 6eLsb #: include/sfx2/strings.hrc:164 msgctxt "RID_SVXSTR_GRFILTER_IOERROR" msgid "Image file cannot be read" -msgstr "Kan ikke lese bildefila" +msgstr "Kan ikke lese bildefilen" #. HGRsV #: include/sfx2/strings.hrc:165 @@ -920,7 +920,7 @@ #: include/sfx2/strings.hrc:166 msgctxt "RID_SVXSTR_GRFILTER_VERSIONERROR" msgid "This version of the image file is not supported" -msgstr "Har ikke støtte for denne versjonen av bildefila" +msgstr "Har ikke støtte for denne versjonen av bildefilen" #. Sn8KQ #: include/sfx2/strings.hrc:167 @@ -978,7 +978,7 @@ #: include/sfx2/strings.hrc:175 msgctxt "STR_PASSWD_EMPTY" msgid "(The password can be empty)" -msgstr "(Passordet kan være blankt)" +msgstr "(Passordet kan være tomt)" #. iBD9D #: include/sfx2/strings.hrc:176 @@ -1176,7 +1176,7 @@ #: include/sfx2/strings.hrc:217 msgctxt "STR_SFX_EXPLORERFILE_BUTTONINSERT" msgid "~Insert" -msgstr "Sett ~inn" +msgstr "Sett inn" #. DcLFD #: include/sfx2/strings.hrc:218 @@ -1194,7 +1194,7 @@ #: include/sfx2/strings.hrc:220 msgctxt "STR_PB_COMPAREDOC" msgid "Compare to" -msgstr "Sammenlikne med" +msgstr "Sammenligne med" #. 4qMCh #: include/sfx2/strings.hrc:221 @@ -1308,7 +1308,7 @@ #: include/sfx2/strings.hrc:239 msgctxt "STR_FONT_TABPAGE" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. 7baC6 #: include/sfx2/strings.hrc:241 @@ -1386,7 +1386,7 @@ "Would you like to save the new settings in the\n" "active document?" msgstr "" -"Sidestørrelsen og -retninga er endret.\n" +"Sidestørrelsen og -retningen er endret.\n" "Vil du lagre de nye innstillingene i det \n" "gjeldende dokumentet?" @@ -1410,7 +1410,7 @@ "Would you like to save the new settings in the\n" "active document?" msgstr "" -"Sidestørrelsen og -retninga er endret.\n" +"Sidestørrelsen og -retningen er endret.\n" "Vil du lagre de nye innstillingene i det \n" "gjeldende dokumentet?" @@ -1497,7 +1497,7 @@ #: include/sfx2/strings.hrc:269 msgctxt "STR_NONCHECKEDOUT_DOCUMENT" msgid "This document is not checked out on the server." -msgstr "Dokumentet er ikke sjekket ut på tjeneren." +msgstr "Dokumentet er ikke sjekket ut på serveren." #. uPc29 #: include/sfx2/strings.hrc:270 @@ -1563,7 +1563,7 @@ #: include/sfx2/strings.hrc:280 msgctxt "STR_DOC_CLASSIFICATION_TOO_LOW" msgid "This document has a lower classification level than the clipboard." -msgstr "Dokumentet har lavere klassifiseringsnivå enn utklippstavla" +msgstr "Dokumentet har lavere klassifiseringsnivå enn utklippstavlen" #. EJPzh #: include/sfx2/strings.hrc:281 @@ -2309,19 +2309,19 @@ #: sfx2/uiconfig/ui/alienwarndialog.ui:25 msgctxt "alienwarndialog|cancel" msgid "Use %DEFAULTEXTENSION _Format" -msgstr "Bruk %DEFAULTEXTENSION _Formatet" +msgstr "Bruk %DEFAULTEXTENSION Formatet" #. Fzgtz #: sfx2/uiconfig/ui/alienwarndialog.ui:40 msgctxt "alienwarndialog|save" msgid "_Use %FORMATNAME Format" -msgstr "_Bruk %FORMATNAME-formatet" +msgstr "Bruk %FORMATNAME-formatet" #. Fgi6S #: sfx2/uiconfig/ui/alienwarndialog.ui:65 msgctxt "alienwarndialog|ask" msgid "_Ask when not saving in ODF or default format" -msgstr "_Spør når det ikke blir lagret i ODF eller standardformat" +msgstr "Spør når det ikke blir lagret i ODF eller standardformat" #. GVVQ6 #: sfx2/uiconfig/ui/autoredactdialog.ui:24 @@ -2501,13 +2501,13 @@ #: sfx2/uiconfig/ui/custominfopage.ui:15 msgctxt "custominfopage|add" msgid "Add _Property" -msgstr "Legg til _egenskap" +msgstr "Legg til egenskap" #. 85KDm #: sfx2/uiconfig/ui/custominfopage.ui:23 msgctxt "custominfopage|extended_tip|add" msgid "Click to add a new row to the Properties list." -msgstr "Trykk for å legge til en ny rad i lista over egenskaper." +msgstr "Trykk for å legge til en ny rad i listen over egenskaper." #. aB3bA #: sfx2/uiconfig/ui/custominfopage.ui:42 @@ -2543,25 +2543,25 @@ #: sfx2/uiconfig/ui/descriptioninfopage.ui:18 msgctxt "descriptioninfopage|label27" msgid "_Title:" -msgstr "_Tittel:" +msgstr "Tittel:" #. HqzQo #: sfx2/uiconfig/ui/descriptioninfopage.ui:32 msgctxt "descriptioninfopage|label28" msgid "_Subject:" -msgstr "_Emne:" +msgstr "Emne:" #. gEGPn #: sfx2/uiconfig/ui/descriptioninfopage.ui:46 msgctxt "descriptioninfopage|label29" msgid "_Keywords:" -msgstr "_Nøkkelord:" +msgstr "Nøkkelord:" #. Nayo4 #: sfx2/uiconfig/ui/descriptioninfopage.ui:61 msgctxt "descriptioninfopage|label30" msgid "_Comments:" -msgstr "_Merknader:" +msgstr "Merknader:" #. qw238 #: sfx2/uiconfig/ui/descriptioninfopage.ui:79 @@ -2597,7 +2597,7 @@ #: sfx2/uiconfig/ui/documentfontspage.ui:31 msgctxt "documentfontspage|embedFonts" msgid "_Embed fonts in the document" -msgstr "_Bygg inn skrifttyper i dokumentet" +msgstr "Bygg inn fonttyper i dokumentet" #. FzuRv #: sfx2/uiconfig/ui/documentfontspage.ui:40 @@ -2615,7 +2615,7 @@ #: sfx2/uiconfig/ui/documentfontspage.ui:74 msgctxt "documentfontspage|fontEmbeddingLabel" msgid "Font Embedding" -msgstr "" +msgstr "Innebygging av fonter" #. Gip6V #: sfx2/uiconfig/ui/documentfontspage.ui:105 @@ -2651,37 +2651,37 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:19 msgctxt "documentinfopage|label13" msgid "_Created:" -msgstr "_Opprettet:" +msgstr "Opprettet:" #. EZKmF #: sfx2/uiconfig/ui/documentinfopage.ui:33 msgctxt "documentinfopage|label14" msgid "_Modified:" -msgstr "_Endret:" +msgstr "Endret:" #. 4GLKx #: sfx2/uiconfig/ui/documentinfopage.ui:47 msgctxt "documentinfopage|label15" msgid "_Digitally signed:" -msgstr "_Digitalt signert:" +msgstr "Digitalt signert:" #. gJwUC #: sfx2/uiconfig/ui/documentinfopage.ui:61 msgctxt "documentinfopage|label16" msgid "Last pri_nted:" -msgstr "Sist _skrevet ut:" +msgstr "Sist skrevet ut:" #. drz3P #: sfx2/uiconfig/ui/documentinfopage.ui:75 msgctxt "documentinfopage|label17" msgid "Total _editing time:" -msgstr "Total _redigeringstid:" +msgstr "Total redigeringstid:" #. MEzSr #: sfx2/uiconfig/ui/documentinfopage.ui:89 msgctxt "documentinfopage|label18" msgid "Re_vision number:" -msgstr "Re_visjonsnummer:" +msgstr "Revisjonsnummer:" #. BgTqU #: sfx2/uiconfig/ui/documentinfopage.ui:131 @@ -2693,13 +2693,13 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:183 msgctxt "documentinfopage|userdatacb" msgid "_Apply user data" -msgstr "_Bruk brukerdata" +msgstr "Bruk brukerdata" #. WzBG6 #: sfx2/uiconfig/ui/documentinfopage.ui:192 msgctxt "documentinfopage|extended_tip|userdatacb" msgid "Saves the user's full name with the file. You can edit the name by choosing Tools - Options - %PRODUCTNAME - User Data." -msgstr "Lagrer fullt navn på brukeren sammen med filen. Du kan endra navnet ved å velge Verktøy → Alternativer → %PRODUCTNAME → Brukerinformasjon." +msgstr "Lagrer fullt navn på brukeren sammen med filen. Du kan endre navnet ved å velge Verktøy → Alternativer → %PRODUCTNAME → Brukerinformasjon." #. LCDUj #: sfx2/uiconfig/ui/documentinfopage.ui:203 @@ -2729,7 +2729,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:257 msgctxt "documentinfopage|label11" msgid "_Size:" -msgstr "_Størrelse:" +msgstr "Størrelse:" #. WNFYB #: sfx2/uiconfig/ui/documentinfopage.ui:270 @@ -2741,19 +2741,19 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:285 msgctxt "documentinfopage|label8" msgid "_Location:" -msgstr "_Plassering:" +msgstr "Plassering:" #. 9xhwo #: sfx2/uiconfig/ui/documentinfopage.ui:316 msgctxt "documentinfopage|label7" msgid "_Type:" -msgstr "_Type:" +msgstr "Type:" #. ZLmAo #: sfx2/uiconfig/ui/documentinfopage.ui:339 msgctxt "documentinfopage|changepass" msgid "Change _Password" -msgstr "Endre _passord" +msgstr "Endre passord" #. oqAZE #: sfx2/uiconfig/ui/documentinfopage.ui:357 @@ -2825,7 +2825,7 @@ #: sfx2/uiconfig/ui/editdocumentdialog.ui:14 msgctxt "editdocumentdialog|EditDocumentDialog" msgid "The original file can be signed without editing the document. Existing signatures on the document will be lost in case of saving an edited version." -msgstr "Orginalfilen kan signeres uten å redigere dokumentet. Eksisterende signaturer av dokumentet vil gå tapt når e redigert versjon av dokumentet lagres." +msgstr "Orginalfilen kan signeres uten å redigere dokumentet. Eksisterende signaturer av dokumentet vil gå tapt når en redigert versjon av dokumentet lagres." #. wRps5 #: sfx2/uiconfig/ui/editdocumentdialog.ui:25 @@ -2849,49 +2849,49 @@ #: sfx2/uiconfig/ui/editdurationdialog.ui:136 msgctxt "editdurationdialog|negative" msgid "_Negative" -msgstr "_Negativ" +msgstr "Negativ" #. LeAmz #: sfx2/uiconfig/ui/editdurationdialog.ui:154 msgctxt "editdurationdialog|label1" msgid "_Years:" -msgstr "_År:" +msgstr "År:" #. kFDdM #: sfx2/uiconfig/ui/editdurationdialog.ui:168 msgctxt "editdurationdialog|label" msgid "_Months:" -msgstr "_Måneder:" +msgstr "Måneder:" #. CHLhB #: sfx2/uiconfig/ui/editdurationdialog.ui:182 msgctxt "editdurationdialog|label3" msgid "_Days:" -msgstr "_Dager:" +msgstr "Dager:" #. 2w5Dd #: sfx2/uiconfig/ui/editdurationdialog.ui:196 msgctxt "editdurationdialog|label4" msgid "H_ours:" -msgstr "_Timer:" +msgstr "Timer:" #. TtWAW #: sfx2/uiconfig/ui/editdurationdialog.ui:210 msgctxt "editdurationdialog|label5" msgid "Min_utes:" -msgstr "Min_utt:" +msgstr "Minutter:" #. TieWF #: sfx2/uiconfig/ui/editdurationdialog.ui:224 msgctxt "editdurationdialog|label6" msgid "_Seconds:" -msgstr "_Sekund:" +msgstr "Sekunder:" #. GxEZZ #: sfx2/uiconfig/ui/editdurationdialog.ui:238 msgctxt "editdurationdialog|label7" msgid "Millise_conds:" -msgstr "Millise_kund:" +msgstr "Millisekunder:" #. FLFW8 #: sfx2/uiconfig/ui/editdurationdialog.ui:347 @@ -2927,13 +2927,13 @@ #: sfx2/uiconfig/ui/helpbookmarkpage.ui:32 msgctxt "helpbookmarkpage|label1" msgid "_Bookmarks" -msgstr "_Bokmerker" +msgstr "Bokmerker" #. kZqGE #: sfx2/uiconfig/ui/helpbookmarkpage.ui:83 msgctxt "helpbookmarkpage|display" msgid "_Display" -msgstr "_Vis" +msgstr "Vis" #. S7ppr #: sfx2/uiconfig/ui/helpcontrol.ui:77 @@ -2963,13 +2963,13 @@ #: sfx2/uiconfig/ui/helpindexpage.ui:30 msgctxt "helpindexpage|display" msgid "_Display" -msgstr "_Vis" +msgstr "Vis" #. 4MkAM #: sfx2/uiconfig/ui/helpindexpage.ui:122 msgctxt "helpindexpage|label1" msgid "_Search Term" -msgstr "" +msgstr "Søketerm" #. wKLbH #: sfx2/uiconfig/ui/helpmanual.ui:7 @@ -3065,7 +3065,7 @@ #: sfx2/uiconfig/ui/infobar.ui:66 msgctxt "infobar|close|tooltip_text" msgid "Close Infobar" -msgstr "" +msgstr "Steng infofeltet" #. DpXCY #: sfx2/uiconfig/ui/inputdialog.ui:87 @@ -3143,37 +3143,37 @@ #: sfx2/uiconfig/ui/linkeditdialog.ui:113 msgctxt "linkeditdialog|label2" msgid "_Application:" -msgstr "_Program:" +msgstr "Program:" #. GZsEX #: sfx2/uiconfig/ui/linkeditdialog.ui:127 msgctxt "linkeditdialog|label3" msgid "_File:" -msgstr "_Fil:" +msgstr "Fil:" #. 6Fx6h #: sfx2/uiconfig/ui/linkeditdialog.ui:141 msgctxt "linkeditdialog|label4" msgid "_Category:" -msgstr "_Kategori:" +msgstr "Kategori:" #. hNqRS #: sfx2/uiconfig/ui/linkeditdialog.ui:154 msgctxt "linkeditdialog|extended_tip|app" msgid "Lists the application that last saved the source file. %PRODUCTNAME applications have the server name soffice." -msgstr "" +msgstr "Viser programmet som sist lagret kildefilen. % RODUCTNAME applikasjoner har servernavnet soffice." #. cj9do #: sfx2/uiconfig/ui/linkeditdialog.ui:172 msgctxt "linkeditdialog|extended_tip|file" msgid "Path to the source file. Relative paths must be expressed by full URI, for example, with file://." -msgstr "" +msgstr "Sti til kildefilen. Relative stier må uttrykkes med full URI, for eksempel med file: //." #. cMPNq #: sfx2/uiconfig/ui/linkeditdialog.ui:190 msgctxt "linkeditdialog|extended_tip|category" msgid "Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here." -msgstr "" +msgstr "Viser seksjonen eller objektet som lenken refererer til i kildefilen. Hvis du vil, kan du skrive inn et nytt avsnitt eller objekt her." #. hiapi #: sfx2/uiconfig/ui/linkeditdialog.ui:212 @@ -3203,7 +3203,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:170 msgctxt "loadtemplatedialog|extended_tip|categories" msgid "Lists the available template categories. Click a category to view its contents in the Templates list." -msgstr "Viser en liste over tilgjengelige malkategorier. Velg en kategori for å se på innholdet i lista under Maler." +msgstr "Viser en liste over tilgjengelige malkategorier. Velg en kategori for å se på innholdet i listen under Maler." #. PZS7L #: sfx2/uiconfig/ui/loadtemplatedialog.ui:183 @@ -3239,7 +3239,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:298 msgctxt "loadtemplatedialog|frame" msgid "_Frame" -msgstr "_Ramme" +msgstr "Ramme" #. 4ZF6u #: sfx2/uiconfig/ui/loadtemplatedialog.ui:307 @@ -3275,7 +3275,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:358 msgctxt "loadtemplatedialog|overwrite" msgid "_Overwrite" -msgstr "_Overskriv" +msgstr "Overskriv" #. A9ogA #: sfx2/uiconfig/ui/loadtemplatedialog.ui:367 @@ -3293,7 +3293,7 @@ #: sfx2/uiconfig/ui/loadtemplatedialog.ui:427 msgctxt "loadtemplatedialog|label3" msgid "Pre_view" -msgstr "For_håndsvisning" +msgstr "Forhåndsvisning" #. hR7cK #: sfx2/uiconfig/ui/loadtemplatedialog.ui:433 @@ -3311,13 +3311,13 @@ #: sfx2/uiconfig/ui/managestylepage.ui:38 msgctxt "managestylepage|nameft" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. VroAG #: sfx2/uiconfig/ui/managestylepage.ui:52 msgctxt "managestylepage|nextstyleft" msgid "Ne_xt style:" -msgstr "_Neste stil:" +msgstr "Neste stil:" #. mJYgm #: sfx2/uiconfig/ui/managestylepage.ui:66 @@ -3329,7 +3329,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:80 msgctxt "managestylepage|categoryft" msgid "_Category:" -msgstr "_Kategori:" +msgstr "Kategori:" #. MMhJQ #: sfx2/uiconfig/ui/managestylepage.ui:104 @@ -3347,7 +3347,7 @@ #: sfx2/uiconfig/ui/managestylepage.ui:152 msgctxt "managestylepage|autoupdate" msgid "_AutoUpdate" -msgstr "_Automatisk oppdatering" +msgstr "Automatisk oppdatering" #. oTXJz #: sfx2/uiconfig/ui/managestylepage.ui:200 @@ -3389,7 +3389,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:39 msgctxt "optprintpage|printer" msgid "_Printer" -msgstr "_Skriver" +msgstr "Skriver" #. PUG9y #: sfx2/uiconfig/ui/optprintpage.ui:49 @@ -3401,7 +3401,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:60 msgctxt "optprintpage|file" msgid "Print to _file" -msgstr "Skriv til _fil" +msgstr "Skriv til fil" #. TMHvE #: sfx2/uiconfig/ui/optprintpage.ui:70 @@ -3419,7 +3419,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:121 msgctxt "optprintpage|papersize" msgid "P_aper size" -msgstr "P_apirstørrelse" +msgstr "Papirstørrelse" #. yj4DA #: sfx2/uiconfig/ui/optprintpage.ui:130 @@ -3431,7 +3431,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:141 msgctxt "optprintpage|paperorient" msgid "Pap_er orientation" -msgstr "Papir_retning" +msgstr "Papirretning" #. FdFNk #: sfx2/uiconfig/ui/optprintpage.ui:150 @@ -3443,7 +3443,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:161 msgctxt "optprintpage|trans" msgid "_Transparency" -msgstr "Gj_ennomsiktighet" +msgstr "Gjennomsiktighet" #. F6nF9 #: sfx2/uiconfig/ui/optprintpage.ui:170 @@ -3461,7 +3461,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:219 msgctxt "optprintpage|reducegrad" msgid "Reduce _gradient" -msgstr "Reduser _fargeovergang" +msgstr "Reduser fargeovergang" #. GC8dk #: sfx2/uiconfig/ui/optprintpage.ui:228 @@ -3473,7 +3473,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:256 msgctxt "optprintpage|reducegradstripes" msgid "Gradient _stripes:" -msgstr "Fargeovergang med _striper:" +msgstr "Fargeovergang med striper:" #. k8zh7 #: sfx2/uiconfig/ui/optprintpage.ui:266 @@ -3491,7 +3491,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:301 msgctxt "optprintpage|reducegradcolor" msgid "Intermediate _color" -msgstr "Mellom_nyanse" +msgstr "Mellomnyanse" #. TUbxx #: sfx2/uiconfig/ui/optprintpage.ui:311 @@ -3515,7 +3515,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:384 msgctxt "optprintpage|reducebitmapnormal" msgid "N_ormal print quality" -msgstr "Utskrift i _normal kvalitet" +msgstr "Utskrift i normal kvalitet" #. i5T3j #: sfx2/uiconfig/ui/optprintpage.ui:394 @@ -3527,7 +3527,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:411 msgctxt "optprintpage|reducebitmapresol" msgid "Reso_lution:" -msgstr "_Oppløsning:" +msgstr "Oppløsning:" #. q3aJL #: sfx2/uiconfig/ui/optprintpage.ui:421 @@ -3581,7 +3581,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:461 msgctxt "optprintpage|reducebitmapoptimal" msgid "_High print quality" -msgstr "Utskrift i _høy kvalitet" +msgstr "Utskrift i høy kvalitet" #. BdCpv #: sfx2/uiconfig/ui/optprintpage.ui:471 @@ -3593,13 +3593,13 @@ #: sfx2/uiconfig/ui/optprintpage.ui:490 msgctxt "optprintpage|reducebitmap" msgid "Reduce _bitmaps" -msgstr "Reduser _punktbilder" +msgstr "Reduser punktbilder" #. nNjfk #: sfx2/uiconfig/ui/optprintpage.ui:499 msgctxt "extended_tip|reducebitmap" msgid "Specifies that bitmaps are printed with reduced quality. The resolution can only be reduced and not increased." -msgstr "Bestemmer at punktbildet skrives ut med redusert kvalitet. Oppløsningen kan kun gjøres mindre, ikkje større." +msgstr "Bestemmer at punktbildet skrives ut med redusert kvalitet. Oppløsningen kan kun gjøres mindre, ikke større." #. YxX2s #: sfx2/uiconfig/ui/optprintpage.ui:516 @@ -3611,7 +3611,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:559 msgctxt "optprintpage|reducetransauto" msgid "Auto_matically" -msgstr "Auto_matisk" +msgstr "Automatisk" #. ehRjn #: sfx2/uiconfig/ui/optprintpage.ui:569 @@ -3623,7 +3623,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:580 msgctxt "optprintpage|reducetransnone" msgid "_No transparency" -msgstr "I_ngen gjennomsiktighet" +msgstr "Ingen gjennomsiktighet" #. ZuLVY #: sfx2/uiconfig/ui/optprintpage.ui:590 @@ -3635,7 +3635,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:609 msgctxt "optprintpage|reducetrans" msgid "_Reduce transparency" -msgstr "Reduser g_jennomsiktighet" +msgstr "Reduser gjennomsiktighet" #. yDstT #: sfx2/uiconfig/ui/optprintpage.ui:618 @@ -3653,7 +3653,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:667 msgctxt "optprintpage|pdf" msgid "_PDF as standard print job format" -msgstr "_PDF som standardformat for utskrifter" +msgstr "PDF som standardformat for utskrifter" #. wm7C7 #: sfx2/uiconfig/ui/optprintpage.ui:682 @@ -3725,13 +3725,13 @@ #: sfx2/uiconfig/ui/password.ui:169 msgctxt "password|extended_tip|pass1ed" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "Skriv et passord. Et passord er følsomt for store og små bokstaver." #. kEcVk #: sfx2/uiconfig/ui/password.ui:189 msgctxt "password|extended_tip|confirm1ed" msgid "Re-enter the password." -msgstr "" +msgstr "Skriv inn passordet på nytt." #. JBCUB #: sfx2/uiconfig/ui/password.ui:206 @@ -3755,13 +3755,13 @@ #: sfx2/uiconfig/ui/password.ui:277 msgctxt "password|extended_tip|pass2ed" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "Skriv et passord. Et passord er følsomt for store og små bokstaver." #. c4nGS #: sfx2/uiconfig/ui/password.ui:297 msgctxt "password|extended_tip|confirm2ed" msgid "Re-enter the password." -msgstr "" +msgstr "Skriv inn passordet på nytt." #. mCxpj #: sfx2/uiconfig/ui/password.ui:314 @@ -3833,7 +3833,7 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:125 msgctxt "saveastemplatedlg|extended_tip|name_entry" msgid "Enter a name for the template." -msgstr "" +msgstr "Skriv inn et navn på malen." #. izWnA #: sfx2/uiconfig/ui/saveastemplatedlg.ui:153 @@ -3845,91 +3845,91 @@ #: sfx2/uiconfig/ui/saveastemplatedlg.ui:201 msgctxt "saveastemplatedlg|extended_tip|categorylb" msgid "Select a category in which to save the new template." -msgstr "" +msgstr "Velg en kategori der du vil lagre den nye malen." #. wpZGc #: sfx2/uiconfig/ui/saveastemplatedlg.ui:221 msgctxt "saveastemplatedlg|defaultcb" msgid "_Set as default template" -msgstr "_Angis som standardmal" +msgstr "Angis som standardmal" #. syB4y #: sfx2/uiconfig/ui/saveastemplatedlg.ui:230 msgctxt "saveastemplatedlg|extended_tip|defaultcb" msgid "The new template will be used as the default template." -msgstr "" +msgstr "Den nye malen vil bli brukt som standardmal." #. gH8PB #: sfx2/uiconfig/ui/saveastemplatedlg.ui:258 msgctxt "saveastemplatedlg|extended_tip|SaveAsTemplateDialog" msgid "Saves the current document as a template." -msgstr "" +msgstr "Lagrer det gjeldende dokumentet som en mal." #. 9tSnA #: sfx2/uiconfig/ui/searchdialog.ui:8 msgctxt "searchdialog|SearchDialog" msgid "Find on this Page" -msgstr "Finn på denne sida" +msgstr "Finn på denne siden" #. LAKYg #: sfx2/uiconfig/ui/searchdialog.ui:26 msgctxt "searchdialog|search" msgid "_Find" -msgstr "_Finn" +msgstr "Finn" #. G5Qc9 #: sfx2/uiconfig/ui/searchdialog.ui:99 msgctxt "searchdialog|label1" msgid "_Search for:" -msgstr "_Søk etter:" +msgstr "Søk etter:" #. TY5bL #: sfx2/uiconfig/ui/searchdialog.ui:125 msgctxt "searchdialog|matchcase" msgid "Ma_tch case" -msgstr "_Skill små/store bokstaver" +msgstr "Skill små/store bokstaver" #. B2ksn #: sfx2/uiconfig/ui/searchdialog.ui:140 msgctxt "searchdialog|wholewords" msgid "Whole wor_ds only" -msgstr "Bare hele _ord" +msgstr "Bare hele ord" #. ycWSx #: sfx2/uiconfig/ui/searchdialog.ui:155 msgctxt "searchdialog|backwards" msgid "Bac_kwards" -msgstr "_Bakover" +msgstr "Bakover" #. C7fSt #: sfx2/uiconfig/ui/searchdialog.ui:170 msgctxt "searchdialog|wrap" msgid "Wrap _around" -msgstr "Bryt _rundt" +msgstr "Bryt rundt" #. onEmh #: sfx2/uiconfig/ui/securityinfopage.ui:25 msgctxt "securityinfopage|readonly" msgid "_Open file read-only" -msgstr "_Åpne fil som skrivebeskyttet" +msgstr "Åpne fil som skrivebeskyttet" #. HCEUE #: sfx2/uiconfig/ui/securityinfopage.ui:35 msgctxt "securityinfopage|extended_tip|readonly" msgid "Select to allow this document to be opened in read-only mode only." -msgstr "" +msgstr "Velg for å la dette dokumentet bare åpnes i skrivebeskyttet modus." #. GvCw9 #: sfx2/uiconfig/ui/securityinfopage.ui:46 msgctxt "securityinfopage|recordchanges" msgid "Record _changes" -msgstr "Registrere _endringer" +msgstr "Registrere endringer" #. pNhop #: sfx2/uiconfig/ui/securityinfopage.ui:55 msgctxt "securityinfopage|extended_tip|recordchanges" msgid "Select to enable recording changes. This is the same as Edit - Track Changes - Record." -msgstr "" +msgstr "Velg for å aktivere opptaksendringer. Dette er det samme som Rediger - Spor endringer - Ta opp." #. Nv8rA #: sfx2/uiconfig/ui/securityinfopage.ui:71 @@ -3941,19 +3941,19 @@ #: sfx2/uiconfig/ui/securityinfopage.ui:77 msgctxt "securityinfopage|extended_tip|protect" msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection." -msgstr "" +msgstr "Beskytter endringsopptakstilstanden med et passord. Hvis endringsopptak er beskyttet for det gjeldende dokumentet, får knappen navnet Fjern beskyttelse. Klikk på Fjern beskyttelse og skriv inn riktig passord for å deaktivere beskyttelsen." #. jgWP4 #: sfx2/uiconfig/ui/securityinfopage.ui:89 msgctxt "securityinfopage|unprotect" msgid "_Unprotect..." -msgstr "_Fjern beskyttelse …" +msgstr "Fjern beskyttelse …" #. UEdGx #: sfx2/uiconfig/ui/securityinfopage.ui:96 msgctxt "securityinfopage|extended_tip|unprotect" msgid "Protects the change recording state with a password. If change recording is protected for the current document, the button is named Unprotect. Click Unprotect and type the correct password to disable the protection." -msgstr "" +msgstr "Beskytter endringsopptakstilstanden med et passord. Hvis endringsopptak er beskyttet for det gjeldende dokumentet, får knappen navnet Fjern beskyttelse. Klikk på Fjern beskyttelse og skriv inn riktig passord for å deaktivere beskyttelsen." #. JNezG #: sfx2/uiconfig/ui/securityinfopage.ui:120 @@ -3971,7 +3971,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:17 msgctxt "startcenter|clear_all" msgid "Clear Recent Documents" -msgstr "Tøm siste dokumenter" +msgstr "Tøm siste Dokumenter" #. gCfQ9 #: sfx2/uiconfig/ui/startcenter.ui:38 @@ -4007,7 +4007,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:151 msgctxt "startcenter|open_all" msgid "_Open File" -msgstr "_Åpne fil" +msgstr "Åpne fil" #. 6zjop #: sfx2/uiconfig/ui/startcenter.ui:172 @@ -4019,13 +4019,13 @@ #: sfx2/uiconfig/ui/startcenter.ui:205 msgctxt "startcenter|open_recent" msgid "_Recent Documents" -msgstr "" +msgstr "Nylige Dokumenter" #. BnkvG #: sfx2/uiconfig/ui/startcenter.ui:229 msgctxt "startcenter|templates_all" msgid "T_emplates" -msgstr "Mal_er" +msgstr "Maler" #. JEkqY #: sfx2/uiconfig/ui/startcenter.ui:270 @@ -4037,31 +4037,31 @@ #: sfx2/uiconfig/ui/startcenter.ui:281 msgctxt "startcenter|writer_all" msgid "_Writer Document" -msgstr "_Tekstdokument" +msgstr "Tekstdokument" #. Bvz5c #: sfx2/uiconfig/ui/startcenter.ui:301 msgctxt "startcenter|calc_all" msgid "_Calc Spreadsheet" -msgstr "_Calc Regneark" +msgstr "Calc Regneark" #. RxGP6 #: sfx2/uiconfig/ui/startcenter.ui:321 msgctxt "startcenter|impress_all" msgid "_Impress Presentation" -msgstr "_Impress Presentasjon" +msgstr "Impress Presentasjon" #. 7fE2M #: sfx2/uiconfig/ui/startcenter.ui:341 msgctxt "startcenter|draw_all" msgid "_Draw Drawing" -msgstr "_Draw Tegning" +msgstr "Draw Tegning" #. 7wn8r #: sfx2/uiconfig/ui/startcenter.ui:361 msgctxt "startcenter|math_all" msgid "_Math Formula" -msgstr "_Math Formel" +msgstr "Math Formel" #. nnwDC #: sfx2/uiconfig/ui/startcenter.ui:381 @@ -4073,13 +4073,13 @@ #: sfx2/uiconfig/ui/startcenter.ui:403 msgctxt "startcenter|althelplabel" msgid "He_lp" -msgstr "Hje_lp" +msgstr "Hjelp" #. oqVes #: sfx2/uiconfig/ui/startcenter.ui:474 msgctxt "startcenter|extensions" msgid "E_xtensions" -msgstr "_Utvidelser" +msgstr "Utvidelser" #. rDw4E #: sfx2/uiconfig/ui/startcenter.ui:499 @@ -4133,37 +4133,37 @@ #: sfx2/uiconfig/ui/tabbarcontents.ui:24 msgctxt "tabbar|locktaskpanel" msgid "Dock" -msgstr "" +msgstr "Dokk" #. GNBR3 #: sfx2/uiconfig/ui/tabbarcontents.ui:33 msgctxt "tabbar|unlocktaskpanel" msgid "Undock" -msgstr "" +msgstr "Løsne" #. jXux4 #: sfx2/uiconfig/ui/tabbarcontents.ui:42 msgctxt "tabbar|hidesidebar" msgid "Close Sidebar" -msgstr "" +msgstr "Lukk sidefelt" #. hEmHk #: sfx2/uiconfig/ui/tabbarcontents.ui:50 msgctxt "tabbar|customization" msgid "Customization" -msgstr "" +msgstr "Tilpasning" #. 9Hfx6 #: sfx2/uiconfig/ui/tabbarcontents.ui:66 msgctxt "tabbar|restoredefault" msgid "Restore Default" -msgstr "" +msgstr "Gjenopprett standard" #. DBWZf #: sfx2/uiconfig/ui/tabbarcontents.ui:93 msgctxt "tabbar|menubutton|tool_tip" msgid "Sidebar Settings" -msgstr "" +msgstr "Sidepanelinnstillinger" #. XBaqU #: sfx2/uiconfig/ui/templatecategorydlg.ui:16 @@ -4283,13 +4283,13 @@ #: sfx2/uiconfig/ui/templatedlg.ui:368 msgctxt "templatedlg|extensions_btn" msgid "_Extensions" -msgstr "" +msgstr "Utvidelser" #. uC7Rk #: sfx2/uiconfig/ui/templatedlg.ui:372 msgctxt "templatedlg|online_link|tooltip_text" msgid "Add more templates via extension" -msgstr "" +msgstr "Legg til flere maler via utvidelser" #. PXRa3 #: sfx2/uiconfig/ui/templatedlg.ui:387 @@ -4385,19 +4385,19 @@ #: sfx2/uiconfig/ui/versioncommentdialog.ui:164 msgctxt "versioncommentdialog|extended_tip|VersionCommentDialog" msgid "Enter a comment here when you are saving a new version. If you clicked Show to open this dialog, you cannot edit the comment." -msgstr "" +msgstr "Skriv inn en kommentar her når du lagrer en ny versjon. Hvis du klikket på Vis for å åpne denne dialogen, kan du ikke redigere kommentaren." #. oBSSb #: sfx2/uiconfig/ui/versionscmis.ui:51 msgctxt "versionscmis|compare" msgid "_Compare" -msgstr "_Sammenlign" +msgstr "Sammenlign" #. WyDoB #: sfx2/uiconfig/ui/versionscmis.ui:65 msgctxt "versionscmis|show" msgid "_Show..." -msgstr "_Vis …" +msgstr "Vis …" #. gRBJa #: sfx2/uiconfig/ui/versionscmis.ui:185 @@ -4439,19 +4439,19 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:66 msgctxt "versionsofdialog|compare" msgid "_Compare" -msgstr "_Sammenlign" +msgstr "Sammenlign" #. TKEzJ #: sfx2/uiconfig/ui/versionsofdialog.ui:73 msgctxt "versionsofdialog|extended_tip|compare" msgid "Compare the changes that were made in each version." -msgstr "" +msgstr "Sammenlign endringene som ble gjort i hver versjon." #. UkbhC #: sfx2/uiconfig/ui/versionsofdialog.ui:85 msgctxt "versionsofdialog|show" msgid "_Show..." -msgstr "_Vis …" +msgstr "Vis …" #. 4SD7F #: sfx2/uiconfig/ui/versionsofdialog.ui:92 @@ -4463,25 +4463,25 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:127 msgctxt "versionsofdialog|extended_tip|open" msgid "Opens the selected version in a read-only window." -msgstr "" +msgstr "Åpner den valgte versjonen i et skrivebeskyttet vindu." #. qKnKv #: sfx2/uiconfig/ui/versionsofdialog.ui:189 msgctxt "versionsofdialog|save" msgid "Save _New Version" -msgstr "Lagre _ny versjon" +msgstr "Lagre ny versjon" #. gTR6x #: sfx2/uiconfig/ui/versionsofdialog.ui:196 msgctxt "versionsofdialog|extended_tip|save" msgid "Saves the current state of the document as a new version. If you want, you can also enter comments in the Insert Version Comment dialog before you save the new version." -msgstr "" +msgstr "Lagrer dokumentets nåværende status som en ny versjon. Hvis du vil, kan du også legge inn kommentarer i dialogboksen Sett inn versjonskommentar før du lagrer den nye versjonen." #. aCeEr #: sfx2/uiconfig/ui/versionsofdialog.ui:207 msgctxt "versionsofdialog|always" msgid "_Always save a new version on closing" -msgstr "Lagre _alltid en ny versjon ved avslutting" +msgstr "Alltid Lagre en ny versjon ved avslutting" #. GCMVZ #: sfx2/uiconfig/ui/versionsofdialog.ui:216 @@ -4529,4 +4529,4 @@ #: sfx2/uiconfig/ui/versionsofdialog.ui:384 msgctxt "versionsofdialog|extended_tip|VersionsOfDialog" msgid "Saves and organizes multiple versions of the current document in the same file. You can also open, delete and compare previous versions." -msgstr "" +msgstr "Lagrer og organiserer flere versjoner av det gjeldende dokumentet i samme fil. Du kan også åpne, slette og sammenligne tidligere versjoner." diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/starmath/messages.po libreoffice-7.1.3~rc2/translations/source/nb/starmath/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/starmath/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/starmath/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-05 07:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563560065.000000\n" #. GrDhX @@ -507,7 +507,7 @@ #: starmath/inc/strings.hrc:46 msgctxt "RID_FRACXY_HELP" msgid "Fraction" -msgstr "" +msgstr "Fraksjon" #. 37Fw8 #: starmath/inc/strings.hrc:47 @@ -717,7 +717,7 @@ #: starmath/inc/strings.hrc:81 msgctxt "RID_XSETQUOTIENTY_HELP" msgid "Quotient Set" -msgstr "" +msgstr "Kvotient sett" #. ToVZV #: starmath/inc/strings.hrc:82 @@ -951,19 +951,19 @@ #: starmath/inc/strings.hrc:120 msgctxt "RID_SUM_FROMX_HELP" msgid "Sum Subscript Bottom" -msgstr "Sum senket skrift, nederst" +msgstr "Sum Subskriptt, nederst" #. C3yFy #: starmath/inc/strings.hrc:121 msgctxt "RID_SUM_TOX_HELP" msgid "Sum Superscript Top" -msgstr "Sum hevet skrift, øverst" +msgstr "Sum Superskript, øverst" #. oTcL9 #: starmath/inc/strings.hrc:122 msgctxt "RID_SUM_FROMTOX_HELP" msgid "Sum Sup/Sub script" -msgstr "Sum hevet/senket skrift" +msgstr "Sum Super/subskript" #. zAAwA #: starmath/inc/strings.hrc:123 @@ -975,19 +975,19 @@ #: starmath/inc/strings.hrc:124 msgctxt "RID_PROD_FROMX_HELP" msgid "Product Subscript Bottom" -msgstr "Produkt senket skrift, nederst" +msgstr "Produkt Subskript, nederst" #. EYVB4 #: starmath/inc/strings.hrc:125 msgctxt "RID_PROD_TOX_HELP" msgid "Product Superscript Top" -msgstr "Produkt hevet skrift, øverst" +msgstr "Produkt Superskript, øverst" #. 73BFU #: starmath/inc/strings.hrc:126 msgctxt "RID_PROD_FROMTOX_HELP" msgid "Product Sup/Sub script" -msgstr "Produkt hevet/senket skrift" +msgstr "Produkt Super/Subskript" #. wAwFG #: starmath/inc/strings.hrc:127 @@ -999,19 +999,19 @@ #: starmath/inc/strings.hrc:128 msgctxt "RID_COPROD_FROMX_HELP" msgid "Coproduct Subscript Bottom" -msgstr "Koprodukt senket skrift, nederst" +msgstr "Koprodukt Subskript, nederst" #. kCvEu #: starmath/inc/strings.hrc:129 msgctxt "RID_COPROD_TOX_HELP" msgid "Coproduct Superscript Top" -msgstr "Koprodukt hevet skrift, øverst" +msgstr "Koprodukt Superskript, øverst" #. PGH59 #: starmath/inc/strings.hrc:130 msgctxt "RID_COPROD_FROMTOX_HELP" msgid "Coproduct Sup/Sub script" -msgstr "Koprodukt hevet/senket skrift" +msgstr "Koprodukt Super/Subskript" #. eyBRm #: starmath/inc/strings.hrc:131 @@ -1023,31 +1023,31 @@ #: starmath/inc/strings.hrc:132 msgctxt "RID_LIM_FROMX_HELP" msgid "Limes Subscript Bottom" -msgstr "Grenseverdier senket skrift, nederst" +msgstr "Grenseverdier Subskript, nederst" #. CbG7y #: starmath/inc/strings.hrc:133 msgctxt "RID_LIM_TOX_HELP" msgid "Limes Superscript Top" -msgstr "Grenseverdier hevet skrift, øverst" +msgstr "Grenseverdier Superskript, øverst" #. EWw4P #: starmath/inc/strings.hrc:134 msgctxt "RID_LIM_FROMTOX_HELP" msgid "Limes Sup/Sub script" -msgstr "Grenseverdier hevet/senket skrift" +msgstr "Grenseverdier Super/Subskript" #. wL7Ae #: starmath/inc/strings.hrc:135 msgctxt "RID_LIMINFX_HELP" msgid "Limit Inferior" -msgstr "Største nedre grense" +msgstr "Nedre grense" #. YMCGq #: starmath/inc/strings.hrc:136 msgctxt "RID_LIMINF_FROMX_HELP" msgid "Limit Inferior Subscript Bottom" -msgstr "Begrens mindreverig underskriptbunn" +msgstr "Begrens mindreverig Subskriptbunn" #. GtSiM #: starmath/inc/strings.hrc:137 @@ -1059,7 +1059,7 @@ #: starmath/inc/strings.hrc:138 msgctxt "RID_LIMINF_FROMTOX_HELP" msgid "Limit Inferior Sup/Sub script" -msgstr "Begrens Inferior senket/hevet skrift" +msgstr "Begrens Inferior Sub/Superskript" #. pZzYb #: starmath/inc/strings.hrc:139 @@ -1071,7 +1071,7 @@ #: starmath/inc/strings.hrc:140 msgctxt "RID_LIMSUP_FROMX_HELP" msgid "Limit Superior Subscript Bottom" -msgstr "Begrens mindreverig underskriptbunn" +msgstr "Begrens mindreverig Subskriptbunn" #. KVDSH #: starmath/inc/strings.hrc:141 @@ -1083,7 +1083,7 @@ #: starmath/inc/strings.hrc:142 msgctxt "RID_LIMSUP_FROMTOX_HELP" msgid "Limit Superior Sup/Sub script" -msgstr "Begrens Superior senket/hevet skript" +msgstr "Begrens Superior Sub/Superskript" #. F7Cc3 #: starmath/inc/strings.hrc:143 @@ -1113,19 +1113,19 @@ #: starmath/inc/strings.hrc:147 msgctxt "RID_INT_FROMX_HELP" msgid "Integral Subscript Bottom" -msgstr "Integral senket skrift, nederst" +msgstr "Integral Subskript, nederst" #. y7z9u #: starmath/inc/strings.hrc:148 msgctxt "RID_INT_TOX_HELP" msgid "Integral Superscript Top" -msgstr "Integral hevet skrift, øverst" +msgstr "Integral Superskript, øverst" #. 6k5sb #: starmath/inc/strings.hrc:149 msgctxt "RID_INT_FROMTOX_HELP" msgid "Integral Sup/Sub script" -msgstr "Integral hevet/senket skrift" +msgstr "Integral Super/Subskript" #. p3RZE #: starmath/inc/strings.hrc:150 @@ -1137,19 +1137,19 @@ #: starmath/inc/strings.hrc:151 msgctxt "RID_IINT_FROMX_HELP" msgid "Double Integral Subscript Bottom" -msgstr "Dobbel integral senket skrift, nederst" +msgstr "Dobbel integral Subskript, nederst" #. sm97q #: starmath/inc/strings.hrc:152 msgctxt "RID_IINT_TOX_HELP" msgid "Double Integral Superscript Top" -msgstr "Dobbel integral hevet skrift, øverst" +msgstr "Dobbel integral Superskript, øverst" #. pfQHq #: starmath/inc/strings.hrc:153 msgctxt "RID_IINT_FROMTOX_HELP" msgid "Double Integral Sup/Sub script" -msgstr "Dobbel integral hevet/senket skrift" +msgstr "Dobbel integral Super/Sub skrift" #. rSSzV #: starmath/inc/strings.hrc:154 @@ -1161,19 +1161,19 @@ #: starmath/inc/strings.hrc:155 msgctxt "RID_IIINT_FROMX_HELP" msgid "Triple Integral Subscript Bottom" -msgstr "Trippel integral senket skrift, nederst" +msgstr "Trippel integral Subskript, nederst" #. B9bYA #: starmath/inc/strings.hrc:156 msgctxt "RID_IIINT_TOX_HELP" msgid "Triple Integral Superscript Top" -msgstr "Trippel integral hevet skrift, øverst" +msgstr "Trippel integral Superskript, øverst" #. tBhDK #: starmath/inc/strings.hrc:157 msgctxt "RID_IIINT_FROMTOX_HELP" msgid "Triple Integral Sup/Sub script" -msgstr "Trippel integral hevet/senket skrift" +msgstr "Trippel integral Super/Subskript" #. FAhtN #: starmath/inc/strings.hrc:158 @@ -1185,19 +1185,19 @@ #: starmath/inc/strings.hrc:159 msgctxt "RID_LINT_FROMX_HELP" msgid "Curve Integral Subscript Bottom" -msgstr "Kurveintegral senket skrift, nederst" +msgstr "Kurveintegral Subskript, nederst" #. x9KBD #: starmath/inc/strings.hrc:160 msgctxt "RID_LINT_TOX_HELP" msgid "Curve Integral Superscript Top" -msgstr "Kurveintegral hevet skrift, øverst" +msgstr "Kurveintegral Superskript, øverst" #. FRxLN #: starmath/inc/strings.hrc:161 msgctxt "RID_LINT_FROMTOX_HELP" msgid "Curve Integral Sup/Sub script" -msgstr "Kurveintegral hevet/senket skrift" +msgstr "Kurveintegral Super/Sub skrift" #. u6fSm #: starmath/inc/strings.hrc:162 @@ -1209,19 +1209,19 @@ #: starmath/inc/strings.hrc:163 msgctxt "RID_LLINT_FROMX_HELP" msgid "Double Curve Integral Subscript Bottom" -msgstr "Dobbel kurveintegral senket skrift, nederst" +msgstr "Dobbel kurveintegral Subskript, nederst" #. WbgY4 #: starmath/inc/strings.hrc:164 msgctxt "RID_LLINT_TOX_HELP" msgid "Double Curve Integral Superscript Top" -msgstr "Dobbel kurveintegral hevet skrift, øverst" +msgstr "Dobbel kurveintegral Superskript, øverst" #. Fb8Ag #: starmath/inc/strings.hrc:165 msgctxt "RID_LLINT_FROMTOX_HELP" msgid "Double Curve Integral Sup/Sub script" -msgstr "Dobbel kurveintegral hevet/senket skrift" +msgstr "Dobbel kurveintegral Super/Sub skrift" #. SGAUu #: starmath/inc/strings.hrc:166 @@ -1233,19 +1233,19 @@ #: starmath/inc/strings.hrc:167 msgctxt "RID_LLLINT_FROMX_HELP" msgid "Triple Curve Integral Subscript Bottom" -msgstr "Trippel kurveintegral senket skrift, nederst" +msgstr "Trippel kurveintegral Subskript, nederst" #. hDzUB #: starmath/inc/strings.hrc:168 msgctxt "RID_LLLINT_TOX_HELP" msgid "Triple Curve Integral Superscript Top" -msgstr "Trippel kurveintegral hevet skrift, øverst" +msgstr "Trippel kurveintegral Superskript, øverst" #. 53vdH #: starmath/inc/strings.hrc:169 msgctxt "RID_LLLINT_FROMTOX_HELP" msgid "Triple Curve Integral Sup/Sub script" -msgstr "Trippel kurveintegral hevet/senket skrift" +msgstr "Trippel kurveintegral Super/Subskript" #. L2GPS #: starmath/inc/strings.hrc:170 @@ -1401,13 +1401,13 @@ #: starmath/inc/strings.hrc:195 msgctxt "RID_COLORX_AQUA_HELP" msgid "Color Aqua" -msgstr "" +msgstr "Farge Aqua" #. 6zGQ2 #: starmath/inc/strings.hrc:196 msgctxt "RID_COLORX_FUCHSIA_HELP" msgid "Color Fuchsia" -msgstr "" +msgstr "Farge Fuchsia" #. em3aA #: starmath/inc/strings.hrc:197 @@ -1473,79 +1473,79 @@ #: starmath/inc/strings.hrc:207 msgctxt "RID_COLORX_RGBA_HELP" msgid "Color RGBA" -msgstr "" +msgstr "Farge RGBA" #. UxFDW #: starmath/inc/strings.hrc:208 msgctxt "RID_COLORX_HEX_HELP" msgid "Color hexadecimal" -msgstr "" +msgstr "Farge hexadesimal" #. MGdCv #: starmath/inc/strings.hrc:209 msgctxt "RID_COLORX_CORAL_HELP" msgid "Color Coral" -msgstr "" +msgstr "Farge Coral" #. gPCCe #: starmath/inc/strings.hrc:210 msgctxt "RID_COLORX_CRIMSON_HELP" msgid "Color Crimson" -msgstr "" +msgstr "Farge Crimson" #. oDRbR #: starmath/inc/strings.hrc:211 msgctxt "RID_COLORX_MIDNIGHT_HELP" msgid "Color Midnight blue" -msgstr "" +msgstr "Farge Midnatt blå" #. 4aCMu #: starmath/inc/strings.hrc:212 msgctxt "RID_COLORX_VIOLET_HELP" msgid "Color Violet" -msgstr "" +msgstr "Farge Fiolett" #. Qivdb #: starmath/inc/strings.hrc:213 msgctxt "RID_COLORX_ORANGE_HELP" msgid "Color Orange" -msgstr "" +msgstr "Farge Oransje" #. CVygm #: starmath/inc/strings.hrc:214 msgctxt "RID_COLORX_ORANGERED_HELP" msgid "Color Orangered" -msgstr "" +msgstr "Farge oransje rød" #. LbfRK #: starmath/inc/strings.hrc:215 msgctxt "RID_COLORX_SEAGREEN_HELP" msgid "Color Seagreen" -msgstr "" +msgstr "Farge Sjøgrønn" #. DKivY #: starmath/inc/strings.hrc:216 msgctxt "RID_COLORX_INDIGO_HELP" msgid "Color Indigo" -msgstr "" +msgstr "Farge Indigo" #. TZQzN #: starmath/inc/strings.hrc:217 msgctxt "RID_COLORX_HOTPINK_HELP" msgid "Color Hot pink" -msgstr "" +msgstr "Farge Varm rosa" #. GHgTB #: starmath/inc/strings.hrc:218 msgctxt "RID_COLORX_LAVENDER_HELP" msgid "Color Lavender" -msgstr "" +msgstr "Farge Lavender" #. HQmw7 #: starmath/inc/strings.hrc:219 msgctxt "RID_COLORX_SNOW_HELP" msgid "Color Snow" -msgstr "" +msgstr "Farge Snø" #. A2GQ4 #: starmath/inc/strings.hrc:220 @@ -1695,25 +1695,25 @@ #: starmath/inc/strings.hrc:244 msgctxt "RID_EVALUATEX_HELP" msgid "Evaluate" -msgstr "" +msgstr "Evaluer" #. vfpuY #: starmath/inc/strings.hrc:245 msgctxt "RID_EVALUATE_FROMX_HELP" msgid "Evaluate Subscript Bottom" -msgstr "" +msgstr "Evaluer abonnementsbunn" #. Q6G2q #: starmath/inc/strings.hrc:246 msgctxt "RID_EVALUATE_TOX_HELP" msgid "Evaluate Superscript Top" -msgstr "" +msgstr "Evaluer Superscript Topp" #. 6NGAj #: starmath/inc/strings.hrc:247 msgctxt "RID_EVALUATE_FROMTOX_HELP" msgid "Evaluate Sup/Sub script" -msgstr "" +msgstr "Evaluer Sup/Sub skript" #. wePDA #: starmath/inc/strings.hrc:248 @@ -1773,13 +1773,13 @@ #: starmath/inc/strings.hrc:257 msgctxt "RID_BINOMXY_HELP" msgid "Vertical Stack (2 Elements)" -msgstr "Loddrett stabel (2 elementer)" +msgstr "Vertikal stabel (2 elementer)" #. uAfzF #: starmath/inc/strings.hrc:258 msgctxt "RID_STACK_HELP" msgid "Vertical Stack" -msgstr "Loddrett stabel (3 elementer)" +msgstr "Vertikal stabel (3 elementer)" #. GZoUk #: starmath/inc/strings.hrc:259 @@ -1869,7 +1869,7 @@ #: starmath/inc/strings.hrc:273 msgctxt "RID_DOTSAXIS_HELP" msgid "Dots In Middle" -msgstr "Vannrett ellipse (midt på)" +msgstr "Prikker i Midten" #. C3nbh #: starmath/inc/strings.hrc:274 @@ -1887,13 +1887,13 @@ #: starmath/inc/strings.hrc:276 msgctxt "RID_DOTSLOW_HELP" msgid "Dots At Bottom" -msgstr "Vannrett ellipse (nede)" +msgstr "Prikker på Bunnen" #. TtFD4 #: starmath/inc/strings.hrc:277 msgctxt "RID_DOTSVERT_HELP" msgid "Dots Vertically" -msgstr "Loddrett ellipse" +msgstr "Vertikal ellipse" #. YsuWX #: starmath/inc/strings.hrc:278 @@ -1917,13 +1917,13 @@ #: starmath/inc/strings.hrc:281 msgctxt "RID_XDIVIDESY_HELP" msgid "Divides" -msgstr "Er delelig med" +msgstr "Er delbar med" #. 3BFDd #: starmath/inc/strings.hrc:282 msgctxt "RID_XNDIVIDESY_HELP" msgid "Does Not Divide" -msgstr "Er ikke delelig med" +msgstr "Er ikke delbar med" #. CCvBP #: starmath/inc/strings.hrc:283 @@ -2169,7 +2169,7 @@ #: starmath/inc/strings.hrc:324 msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP" msgid "Taylor series" -msgstr "" +msgstr "Taylor serier" #. MuqjR #: starmath/inc/strings.hrc:325 @@ -2181,43 +2181,43 @@ #: starmath/inc/strings.hrc:326 msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP" msgid "Euler-Lagrange equation" -msgstr "" +msgstr "Euler-Lagrange ligning" #. LnNNA #: starmath/inc/strings.hrc:327 msgctxt "RID_EXAMPLE_FTC_HELP" msgid "Fundamental theorem of calculus" -msgstr "" +msgstr "Grunnleggende setning av kalkulus" #. jF2GD #: starmath/inc/strings.hrc:328 msgctxt "RID_EXAMPLE_CHAOS_HELP" msgid "Chaos equation" -msgstr "" +msgstr "Kaosligning" #. afEQ8 #: starmath/inc/strings.hrc:329 msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP" msgid "Euler's identity" -msgstr "" +msgstr "Eulers identitet" #. m3ukF #: starmath/inc/strings.hrc:330 msgctxt "RID_EXAMPLE_2NEWTON" msgid "Newton's second law" -msgstr "" +msgstr "Newtons andre lov" #. ZmaUU #: starmath/inc/strings.hrc:331 msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP" msgid "General relativity" -msgstr "" +msgstr "Generell relativitetsteori" #. ADBy9 #: starmath/inc/strings.hrc:332 msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP" msgid "Special relativity" -msgstr "" +msgstr "Spesiell relativitet" #. u47dF #: starmath/inc/strings.hrc:334 @@ -2265,13 +2265,13 @@ #: starmath/inc/strings.hrc:341 msgctxt "STR_AQUA" msgid "aqua" -msgstr "" +msgstr "vann" #. GLy7q #: starmath/inc/strings.hrc:342 msgctxt "STR_FUCHSIA" msgid "fuchsia" -msgstr "" +msgstr "fuchsia" #. fZKES #: starmath/inc/strings.hrc:343 @@ -2331,67 +2331,67 @@ #: starmath/inc/strings.hrc:352 msgctxt "STR_CORAL" msgid "coral" -msgstr "" +msgstr "korall" #. RZSh6 #: starmath/inc/strings.hrc:353 msgctxt "STR_CRIMSON" msgid "crimson" -msgstr "" +msgstr "høyrød" #. QGibF #: starmath/inc/strings.hrc:354 msgctxt "STR_MIDNIGHT" msgid "midnight" -msgstr "" +msgstr "midnatt" #. NKAkW #: starmath/inc/strings.hrc:355 msgctxt "STR_VIOLET" msgid "violet" -msgstr "" +msgstr "fiolett" #. sF9zc #: starmath/inc/strings.hrc:356 msgctxt "STR_ORANGE" msgid "orange" -msgstr "" +msgstr "oransje" #. CXMyK #: starmath/inc/strings.hrc:357 msgctxt "STR_ORANGERED" msgid "orangered" -msgstr "" +msgstr "oransjerød" #. Ak3yd #: starmath/inc/strings.hrc:358 msgctxt "STR_LAVENDER" msgid "lavender" -msgstr "" +msgstr "lavender" #. DLUaV #: starmath/inc/strings.hrc:359 msgctxt "STR_SNOW" msgid "snow" -msgstr "" +msgstr "snø" #. QDTEU #: starmath/inc/strings.hrc:360 msgctxt "STR_SEAGREEN" msgid "seagreen" -msgstr "" +msgstr "sjøgrønn" #. PNveS #: starmath/inc/strings.hrc:361 msgctxt "STR_INDIGO" msgid "indigo" -msgstr "" +msgstr "indigo" #. r5S8P #: starmath/inc/strings.hrc:362 msgctxt "STR_HOTPINK" msgid "hotpink" -msgstr "" +msgstr "varmrosa" #. NNmRT #: starmath/inc/strings.hrc:363 @@ -2403,13 +2403,13 @@ #: starmath/inc/strings.hrc:364 msgctxt "STR_RGBA" msgid "rgba" -msgstr "" +msgstr "rgba" #. BRYCu #: starmath/inc/strings.hrc:365 msgctxt "STR_HEX" msgid "hex" -msgstr "" +msgstr "hex" #. CCpNs #: starmath/inc/strings.hrc:366 @@ -2547,7 +2547,7 @@ #: starmath/inc/strings.hrc:388 msgctxt "RID_ERR_NUMBEREXPECTED" msgid "Expected number" -msgstr "" +msgstr "Forventet nummer" #. ZWBDD #: starmath/inc/strings.hrc:389 @@ -2685,7 +2685,7 @@ #: starmath/uiconfig/smath/ui/alignmentdialog.ui:215 msgctxt "alignmentdialog|extended_tip|AlignmentDialog" msgid "You can define the alignment of multi-line formulas as well as formulas with several elements in one line." -msgstr "Her kan du velge justeringa av formler som går over mer enn en linje, og av formler som har flere elementer på en linje." +msgstr "Her kan du velge justeringen av formler som går over mer enn en linje, og av formler som har flere elementer på en linje." #. NqNaF #: starmath/uiconfig/smath/ui/catalogdialog.ui:8 @@ -2727,7 +2727,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:130 msgctxt "catalogdialog|extended_tip|symbolset" msgid "All symbols are organized into symbol sets. Select the desired symbol set from the list box. The corresponding group of symbols appear in the field below." -msgstr "Alle symbolene er samlet i symbolsett. Velg et av symbolsettene fra lista. De tilhørende symbolene blir vist i feltet nedenfor." +msgstr "Alle symbolene er samlet i symbolsett. Velg et av symbolsettene fra listen. De tilhørende symbolene blir vist i feltet nedenfor." #. Gu3DC #: starmath/uiconfig/smath/ui/catalogdialog.ui:143 @@ -2763,13 +2763,13 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:159 msgctxt "fontdialog|extended_tip|font" msgid "Select a font from the list." -msgstr "Velg en skrift fra lista." +msgstr "Velg en font fra listen." #. eepux #: starmath/uiconfig/smath/ui/fontdialog.ui:176 msgctxt "fontdialog|formulaL" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. rEsKd #: starmath/uiconfig/smath/ui/fontdialog.ui:213 @@ -2907,7 +2907,7 @@ #: starmath/uiconfig/smath/ui/fontsizedialog.ui:420 msgctxt "fontsizedialog|extended_tip|FontSizeDialog" msgid "Use this dialog to specify the font sizes for your formula. Select a base size and all elements of the formula will be scaled in relation to this base." -msgstr "Bruk dette dialogvinduet til å velge skriftstørrelse for formelen. Velg en grunnstørrelse, og alle elementene i formelen vil bli skalert i forhold til denne." +msgstr "Bruk dette dialogvinduet til å velge fontstørrelse for formelen. Velg en grunnstørrelse, og alle elementene i formelen vil bli skalert i forhold til denne." #. Ahejh #: starmath/uiconfig/smath/ui/fonttypedialog.ui:12 @@ -2955,7 +2955,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:68 msgctxt "fonttypedialog|FontsDialog" msgid "Fonts" -msgstr "Skrifter" +msgstr "Fonter" #. p43oF #: starmath/uiconfig/smath/ui/fonttypedialog.ui:98 @@ -2967,7 +2967,7 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:111 msgctxt "fonttypedialog|extended_tip|modify" msgid "Click one of the choices from this pop-up menu to access the Fonts dialog, where you can define the font and attributes for the respective formula and for custom fonts." -msgstr "Trykk på ett av valgene fra denne sprettoppmenyen for å komme til dialogvinduet Skrifter. Der kan du velge skrift og egenskaper for hver enkelt formel, og for dine egne skrifter." +msgstr "Trykk på ett av valgene fra denne sprettoppmenyen for å komme til dialogvinduet Fonter. Der kan du velge font og egenskaper for hver enkelt formel, og for dine egne fonter." #. sdTfG #: starmath/uiconfig/smath/ui/fonttypedialog.ui:123 @@ -3009,31 +3009,31 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:282 msgctxt "fonttypedialog|extended_tip|variableCB" msgid "You can select the fonts for the variables in your formula." -msgstr "Velg hvilken skrift du vil bruke for variablene i formelen." +msgstr "Velg hvilken font du vil bruke for variablene i formelen." #. gGFop #: starmath/uiconfig/smath/ui/fonttypedialog.ui:298 msgctxt "fonttypedialog|extended_tip|functionCB" msgid "Select the fonts for names and properties of functions." -msgstr "Velg skrift for navn og egenskaper til funksjoner." +msgstr "Velg font for navn og egenskaper til funksjoner." #. NAw7A #: starmath/uiconfig/smath/ui/fonttypedialog.ui:314 msgctxt "fonttypedialog|extended_tip|numberCB" msgid "You can select the fonts for the numbers in your formula." -msgstr "Velg skrift for tallene i formelen." +msgstr "Velg font for tallene i formelen." #. WiP2E #: starmath/uiconfig/smath/ui/fonttypedialog.ui:330 msgctxt "fonttypedialog|extended_tip|textCB" msgid "Define the fonts for the text in your formula here." -msgstr "Velg skrift for tekst i formelen." +msgstr "Velg font for tekst i formelen." #. PEDax #: starmath/uiconfig/smath/ui/fonttypedialog.ui:347 msgctxt "fonttypedialog|formulaL" msgid "Formula Fonts" -msgstr "Formelskrifter" +msgstr "Formelfonter" #. FZyFB #: starmath/uiconfig/smath/ui/fonttypedialog.ui:385 @@ -3057,31 +3057,31 @@ #: starmath/uiconfig/smath/ui/fonttypedialog.ui:439 msgctxt "fonttypedialog|extended_tip|serifCB" msgid "You can specify the font to be used for the font serif format." -msgstr "Du kan velge skrifta som skal brukes til seriffskriftformatet font serif." +msgstr "Du kan velge fonten som skal brukes til seriff fontformatet font serif." #. obFF5 #: starmath/uiconfig/smath/ui/fonttypedialog.ui:455 msgctxt "fonttypedialog|extended_tip|sansCB" msgid "You can specify the font to be used for sans font formatting." -msgstr "Du kan velge hvilken skrift som skal brukes for skriftformatet uten seriffer (grotesk) når du skriver inn sans" +msgstr "Du kan velge hvilken font som skal brukes for skriftformatet uten seriffer (grotesk) når du skriver inn sans" #. bqAxu #: starmath/uiconfig/smath/ui/fonttypedialog.ui:471 msgctxt "fonttypedialog|extended_tip|fixedCB" msgid "You can specify the font to be used for fixed font formatting." -msgstr "Du kan velge hvilken skrift som skal brukes for tegn med fast bredde når du skriver inn fixed." +msgstr "Du kan velge hvilken font som skal brukes for tegn med fast bredde når du skriver inn fast." #. PgQfV #: starmath/uiconfig/smath/ui/fonttypedialog.ui:488 msgctxt "fonttypedialog|customL" msgid "Custom Fonts" -msgstr "Selvvalgte skrifter" +msgstr "Selvvalgte fonter" #. gXDAz #: starmath/uiconfig/smath/ui/fonttypedialog.ui:520 msgctxt "fonttypedialog|extended_tip|FontsDialog" msgid "Defines the fonts that can be applied to formula elements." -msgstr "Velg hvilken skrift som skal brukes på formelelementer." +msgstr "Velg hvilken font som skal brukes på formelelementer." #. LBpEX #: starmath/uiconfig/smath/ui/printeroptions.ui:39 @@ -3153,7 +3153,7 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:39 msgctxt "smathsettings|title" msgid "_Title row" -msgstr "_Overskriftsrad" +msgstr "Overskriftsrad" #. C2ppj #: starmath/uiconfig/smath/ui/smathsettings.ui:48 @@ -3201,7 +3201,7 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:152 msgctxt "extended_tip|sizenormal" msgid "Prints the formula without adjusting the current font size." -msgstr "Skriver ut formelen uten å justere gjeldende skriftstørrelse." +msgstr "Skriver ut formelen uten å justere gjeldende fontstørrelse." #. P4NBd #: starmath/uiconfig/smath/ui/smathsettings.ui:164 @@ -3399,7 +3399,7 @@ #: starmath/uiconfig/smath/ui/spacingdialog.ui:904 msgctxt "spacingdialog|2label2" msgid "S_ubscript:" -msgstr "Senket skrift:" +msgstr "Underskript:" #. DSSri #: starmath/uiconfig/smath/ui/spacingdialog.ui:935 @@ -3585,7 +3585,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:126 msgctxt "symdefinedialog|extended_tip|oldSymbolSets" msgid "This list box contains the name of the current symbol set. If you want, you can also select a different symbol set." -msgstr "Denne lista inneholder navnet til det gjeldende symbolsettet. Hvis du vil, kan du også velge et annet symbolsett." +msgstr "Denne listen inneholder navnet til det gjeldende symbolsettet. Hvis du vil, kan du også velge et annet symbolsett." #. WTEBG #: starmath/uiconfig/smath/ui/symdefinedialog.ui:154 @@ -3603,7 +3603,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:253 msgctxt "symdefinedialog|extended_tip|add" msgid "Click this button to add the symbol shown in the right preview window to the current symbol set." -msgstr "Trykk her for å legge til symbolet i den høyre forhåndsvisningsruta i dette symbolsettet." +msgstr "Trykk her for å legge til symbolet i den høyre forhåndsvisningsruten i dette symbolsettet." #. CGCTr #: starmath/uiconfig/smath/ui/symdefinedialog.ui:265 @@ -3615,13 +3615,13 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:272 msgctxt "symdefinedialog|extended_tip|modify" msgid "Click this button to replace the name of the symbol shown in the left preview window (the old name is displayed in the Old symbol list box) with the new name you have entered in the Symbol list box." -msgstr "Trykk her for å erstatte symbolnavnet i den venstre forhåndsvisningsruta med det nye navnet som du har skrevet inn i lista Symboler. (Det tidligere navnet vises i lista Gammelt symbol)." +msgstr "Trykk her for å erstatte symbolnavnet i den venstre forhåndsvisningsruten med det nye navnet som du har skrevet inn i listen Symboler. (Det tidligere navnet vises i listen Gammelt symbol)." #. 3GfeR #: starmath/uiconfig/smath/ui/symdefinedialog.ui:291 msgctxt "symdefinedialog|extended_tip|delete" msgid "Click to remove the symbol shown in the left preview window from the current symbol set." -msgstr "Trykk for å fjerne symbolet som vises i den venstre forhåndsvisningsruta fra dette symbolsettet." +msgstr "Trykk for å fjerne symbolet som vises i den venstre forhåndsvisningsruten fra dette symbolsettet." #. jwzjd #: starmath/uiconfig/smath/ui/symdefinedialog.ui:332 @@ -3639,7 +3639,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:360 msgctxt "symdefinedialog|fontText" msgid "_Font:" -msgstr "Skrift:" +msgstr "Font:" #. wTEhB #: starmath/uiconfig/smath/ui/symdefinedialog.ui:374 @@ -3657,19 +3657,19 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:406 msgctxt "symdefinedialog|extended_tip|fonts" msgid "Displays the name of the current font and enables you to select a different font." -msgstr "Viser navnet på den gjeldende skrifta og lar deg velge en annen." +msgstr "Viser navnet på den gjeldende fonten og lar deg velge en annen." #. UEdYh #: starmath/uiconfig/smath/ui/symdefinedialog.ui:423 msgctxt "symdefinedialog|extended_tip|fontsSubsetLB" msgid "If you selected a non-symbol font in the Font list box, you can select a Unicode subset in which to place your new or edited symbol. When a subset has been selected, all symbols belonging to this subset of the current symbol set are displayed in the symbols list above." -msgstr "Hvis du velger en skrift som ikke er symboler i lista Skrifter, kan du velge et Unicode-delsett der du kan legge inn ditt nye eller endrede symbol. Når du har valgt et delsett, vil alle symbolene som hører til dette symbolets delsett, vises i symbollista ovenfor." +msgstr "Hvis du velger en font som ikke er symboler i listen Fonter, kan du velge et Unicode-delsett der du kan legge inn ditt nye eller endrede symbol. Når du har valgt et delsett, vil alle symbolene som hører til dette symbolets delsett, vises i symbollisten ovenfor." #. 8XjkA #: starmath/uiconfig/smath/ui/symdefinedialog.ui:448 msgctxt "symdefinedialog|extended_tip|symbols" msgid "Lists the names for the symbols in the current symbol set. Select a name from the list or type a name for a newly added symbol." -msgstr "Viser en liste over navn på symbolene i dette symbolsettet. Velg et navn fra lista, eller skriv inn navnet til et symbol du nettopp har lagt til." +msgstr "Viser en liste over navn på symbolene i dette symbolsettet. Velg et navn fra listen, eller skriv inn navnet til et symbol du nettopp har lagt til." #. G8wv3 #: starmath/uiconfig/smath/ui/symdefinedialog.ui:473 @@ -3681,7 +3681,7 @@ #: starmath/uiconfig/smath/ui/symdefinedialog.ui:490 msgctxt "symdefinedialog|extended_tip|styles" msgid "The current typeface is displayed. You can change the typeface by selecting one from the list box." -msgstr "Den gjeldende skrifta blir vist. Du kan endre skrift ved å velge en fra lista." +msgstr "Den gjeldende fonten blir vist. Du kan endre font ved å velge en fra liste." #. zBbJC #: starmath/uiconfig/smath/ui/symdefinedialog.ui:646 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/nb/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-10-06 20:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561029297.000000\n" #. fLdeV @@ -34,7 +34,7 @@ #: include/svtools/strings.hrc:28 msgctxt "STR_REPEAT" msgid "~Repeat: " -msgstr "G~jenta: " +msgstr "Gjenta: " #. 3DCSV #: include/svtools/strings.hrc:30 @@ -460,7 +460,7 @@ #: include/svtools/strings.hrc:101 msgctxt "STR_ERROR_OBJNOCREATE_FROM_FILE" msgid "Object from file % could not be inserted." -msgstr "Klarte ikke å sette inn objekt fra fila %." +msgstr "Klarte ikke å sette inn objekt fra filen %." #. KXJx2 #: include/svtools/strings.hrc:102 @@ -831,13 +831,13 @@ #: include/svtools/strings.hrc:184 msgctxt "STR_SVT_ACC_RULER_HORZ_NAME" msgid "Horizontal Ruler" -msgstr "Vannrett linjal" +msgstr "Horisontal linjal" #. PG9qt #: include/svtools/strings.hrc:185 msgctxt "STR_SVT_ACC_RULER_VERT_NAME" msgid "Vertical Ruler" -msgstr "Loddrett linjal" +msgstr "Vertikal linjal" #. WKngA #: include/svtools/strings.hrc:187 @@ -1281,19 +1281,19 @@ #: include/svtools/strings.hrc:263 msgctxt "STR_WARNING_JAVANOTFOUND" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "%PRODUCTNAME krever et Java runtime-miljø (JRE) for å utføre denne oppgaven. Vennligst installer en JRE og start på nytt %PRODUCTNAME. %FAQLINK" #. SBgjA #: include/svtools/strings.hrc:264 msgctxt "STR_WARNING_JAVANOTFOUND_WIN" msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "%PRODUCTNAME krever et% BITNESS-bit Java runtime-miljø (JRE) for å utføre denne oppgaven. Vennligst installer en JRE og start på nyttt %PRODUCTNAME. %FAQLINK" #. FY49S #: include/svtools/strings.hrc:265 msgctxt "STR_WARNING_JAVANOTFOUND_MAC" msgid "%PRODUCTNAME requires Oracle's Java Development Kit (JDK) on macOS 10.10 or greater to perform this task. Please install them and restart %PRODUCTNAME. %FAQLINK" -msgstr "" +msgstr "%PRODUCTNAME krever Oracle's Java Development Kit (JDK) på macOS 10.10 eller nyere for å utføre denne oppgaven. Vennligst installer dem og start på nytt %PRODUCTNAME. %FAQLINK" #. 76BEm #: include/svtools/strings.hrc:266 @@ -2055,7 +2055,7 @@ #: svtools/inc/errtxt.hrc:76 msgctxt "RID_ERRHDL" msgid "Nonexistent file." -msgstr "Fila finnes ikke." +msgstr "Filen finnes ikke." #. GpnZh #: svtools/inc/errtxt.hrc:77 @@ -2110,7 +2110,7 @@ "This operation cannot be run on\n" "files containing wildcards." msgstr "" -"Denne handlinga kan ikke utføres\n" +"Denne handlingen kan ikke utføres\n" "på filer som inneholder jokertegn." #. rFdWC @@ -2129,13 +2129,13 @@ #: svtools/inc/errtxt.hrc:87 msgctxt "RID_ERRHDL" msgid "Data could not be read from the file." -msgstr "Klarte ikke å lese data fra fila." +msgstr "Klarte ikke å lese data fra filen." #. eX22x #: svtools/inc/errtxt.hrc:88 msgctxt "RID_ERRHDL" msgid "The file could not be written." -msgstr "Klarte ikke å lagre fila." +msgstr "Klarte ikke å lagre filen." #. SHZVG #: svtools/inc/errtxt.hrc:89 @@ -2183,25 +2183,25 @@ #: svtools/inc/errtxt.hrc:96 msgctxt "RID_ERRHDL" msgid "An invalid attempt was made to access the file." -msgstr "Det ble gjort et ugyldig forsøk på å få tilgang til fila." +msgstr "Det ble gjort et ugyldig forsøk på å få tilgang til filen." #. Qt2G4 #: svtools/inc/errtxt.hrc:97 msgctxt "RID_ERRHDL" msgid "The file could not be created." -msgstr "Klarte ikke å opprette fila." +msgstr "Klarte ikke å opprette filen." #. sDnmC #: svtools/inc/errtxt.hrc:98 msgctxt "RID_ERRHDL" msgid "The operation was started under an invalid parameter." -msgstr "Handlinga ble startet med en ugyldig parameter." +msgstr "Handlingen ble startet med en ugyldig parameter." #. YjRnn #: svtools/inc/errtxt.hrc:99 msgctxt "RID_ERRHDL" msgid "The operation on the file was aborted." -msgstr "Handlingen på fila ble avbrutt." +msgstr "Handlingen på filen ble avbrutt." #. hsKTG #: svtools/inc/errtxt.hrc:100 @@ -2225,7 +2225,7 @@ #: svtools/inc/errtxt.hrc:103 msgctxt "RID_ERRHDL" msgid "The file cannot be used as template." -msgstr "Fila kan ikke brukes som mal." +msgstr "Filen kan ikke brukes som mal." #. CBBDi #: svtools/inc/errtxt.hrc:104 @@ -2355,7 +2355,7 @@ #: svtools/inc/errtxt.hrc:122 msgctxt "RID_ERRHDL" msgid "Execution of macros is disabled. Macros are signed, but the document (containing document events) is not signed." -msgstr "" +msgstr "Kjøring av makroer er deaktivert. Makroer er signert, men dokumentet (som inneholder dokumenthendelser) er ikke signert." #. 24FhM #: svtools/inc/errtxt.hrc:123 @@ -2419,7 +2419,7 @@ #: svtools/inc/errtxt.hrc:127 msgctxt "RID_ERRHDL" msgid "Function not possible: path contains current directory." -msgstr "Funksjonen kan ikke utføres fordi stien inneholder den gjeldende mappa." +msgstr "Funksjonen kan ikke utføres fordi stien inneholder den gjeldende mappen." #. sDMmp #: svtools/inc/errtxt.hrc:128 @@ -2443,7 +2443,7 @@ #: svtools/inc/errtxt.hrc:131 msgctxt "RID_ERRHDL" msgid "Function not possible: write protected." -msgstr "Funksjonen er ikke mulig fordi fila er skrivebeskyttet." +msgstr "Funksjonen er ikke mulig fordi filen er skrivebeskyttet." #. Jfn8d #: svtools/inc/errtxt.hrc:132 @@ -2453,7 +2453,7 @@ "Deactivate sharing mode first." msgstr "" "Du kan ikke endre eller oppgi et passord til et delt regneark\n" -"Du må skru av delinga først." +"Du må skru av delingen først." #. M4EWG #: svtools/inc/errtxt.hrc:133 @@ -3719,7 +3719,7 @@ #: svtools/inc/langtab.hrc:232 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Ndebele, South" -msgstr "Sørndebele" +msgstr "SørNdebele" #. GAkRJ #: svtools/inc/langtab.hrc:233 @@ -4973,19 +4973,19 @@ #: svtools/uiconfig/ui/addresstemplatedialog.ui:596 msgctxt "addresstemplatedialog|extended_tip|AddressTemplateDialog" msgid "Edit the field assignments and the data source for your address book." -msgstr "Rediger datakilden og tildelinga av felter i adresseboka." +msgstr "Rediger datakilden og tildelingen av felter i adresseboken." #. vrBni #: svtools/uiconfig/ui/fileviewmenu.ui:12 msgctxt "fileviewmenu|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. AJiPc #: svtools/uiconfig/ui/fileviewmenu.ui:20 msgctxt "fileviewmenu|rename" msgid "_Rename" -msgstr "_Endre navn" +msgstr "Endre navn" #. puJ5X #: svtools/uiconfig/ui/graphicexport.ui:37 @@ -5351,7 +5351,7 @@ #: svtools/uiconfig/ui/javadisableddialog.ui:13 msgctxt "javadisableddialog|JavaDisabledDialog" msgid "%PRODUCTNAME requires a Java runtime environment (JRE) to perform this task. However, use of a JRE has been disabled. Do you want to enable the use of a JRE now?" -msgstr "%PRODUCTNAME trenger et Java-kjøremiljø (JRE) for å utføre denne oppgaven, men dette er slått av. Vil du slå på bruken av Java-kjøremiljø nå?" +msgstr "%PRODUCTNAME trenger et Java-kjøremiljø (JRE) for å utføre denne oppgaven, men dette er slått av. Vil du slå på bruken av Java-kjøremiljøet nå?" #. 9exk9 #: svtools/uiconfig/ui/linewindow.ui:17 @@ -5555,19 +5555,19 @@ #: svtools/uiconfig/ui/querydeletedialog.ui:25 msgctxt "querydeletedialog|yes" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. KSj3y #: svtools/uiconfig/ui/querydeletedialog.ui:41 msgctxt "querydeletedialog|all" msgid "Delete _All" -msgstr "Slett _alle" +msgstr "Slett alle" #. JXutA #: svtools/uiconfig/ui/querydeletedialog.ui:56 msgctxt "querydeletedialog|no" msgid "Do _Not Delete" -msgstr "I_kke slett" +msgstr "Ikke slett" #. KtcWg #: svtools/uiconfig/ui/restartdialog.ui:8 @@ -5675,7 +5675,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:279 msgctxt "restartdialog|reason_skia" msgid "For the Skia changes to take effect, %PRODUCTNAME must be restarted." -msgstr "For at Skia endrinene skal virke må, %PRODUCTNAME re-startes." +msgstr "For at Skia endringene skal virke må, %PRODUCTNAME re-startes." #. v9FjK #: svtools/uiconfig/ui/thineditcontrol.ui:69 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/svx/messages.po libreoffice-7.1.3~rc2/translations/source/nb/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-03 23:35+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561033255.000000\n" #. 3GkZj @@ -62,13 +62,13 @@ #: include/svx/strings.hrc:32 msgctxt "STR_ObjNameSingulLINE_Hori" msgid "Horizontal line" -msgstr "Vannrett linje" +msgstr "Horisontell linje" #. 3dPEH #: include/svx/strings.hrc:33 msgctxt "STR_ObjNameSingulLINE_Vert" msgid "Vertical line" -msgstr "Loddrett linje" +msgstr "Vertikal linje" #. JzFtj #: include/svx/strings.hrc:34 @@ -584,13 +584,13 @@ #: include/svx/strings.hrc:119 msgctxt "STR_ObjNameSingulGRAFEMF" msgid "PDF" -msgstr "" +msgstr "PDF" #. tc3Jb #: include/svx/strings.hrc:120 msgctxt "STR_ObjNamePluralGRAFEMF" msgid "PDFs" -msgstr "" +msgstr "PDFer" #. b3os5 #: include/svx/strings.hrc:121 @@ -602,7 +602,7 @@ #: include/svx/strings.hrc:122 msgctxt "STR_ObjNamePluralOLE2" msgid "Embedded objects (OLE)" -msgstr "innebygde objekter" +msgstr "Innebygde objekter" #. mAAWu #: include/svx/strings.hrc:123 @@ -836,13 +836,13 @@ #: include/svx/strings.hrc:161 msgctxt "STR_EditMirrorHori" msgid "Flip %1 horizontal" -msgstr "Speil %1 vannrett" +msgstr "Flipp %1 Horisontalt" #. g7Qgy #: include/svx/strings.hrc:162 msgctxt "STR_EditMirrorVert" msgid "Flip %1 vertical" -msgstr "Speil %1 loddrett" +msgstr "Flipp %1 vertikal" #. 8MR5T #: include/svx/strings.hrc:163 @@ -926,7 +926,7 @@ #: include/svx/strings.hrc:176 msgctxt "STR_EditUngroup" msgid "Ungroup %1" -msgstr "Løs opp gruppa %1" +msgstr "Løs opp gruppen %1" #. XochA #: include/svx/strings.hrc:177 @@ -1004,7 +1004,7 @@ #: include/svx/strings.hrc:189 msgctxt "STR_EditAlignVCenter" msgid "Horizontally center %1" -msgstr "Midtstill %1 vannrett" +msgstr "Midtstill %1 Horisontalt" #. TgGUN #: include/svx/strings.hrc:190 @@ -1022,7 +1022,7 @@ #: include/svx/strings.hrc:192 msgctxt "STR_EditAlignHCenter" msgid "Vertically center %1" -msgstr "Midtstill %1 loddrett" +msgstr "Midtstill %1 vertikalt" #. ttEmT #: include/svx/strings.hrc:193 @@ -1154,13 +1154,13 @@ #: include/svx/strings.hrc:214 msgctxt "STR_DragMethMirrorHori" msgid "Flip %1 horizontal" -msgstr "Speil %1 vannrett" +msgstr "Flipp %1 Horisontalt" #. CBBXE #: include/svx/strings.hrc:215 msgctxt "STR_DragMethMirrorVert" msgid "Flip %1 vertical" -msgstr "Speil %1 loddrett" +msgstr "Flipp %1 vertikal" #. uHCGD #: include/svx/strings.hrc:216 @@ -1485,13 +1485,13 @@ #: include/svx/strings.hrc:270 msgctxt "STR_ItemValCAPTIONESCHORI" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontal" #. ZYYeS #: include/svx/strings.hrc:271 msgctxt "STR_ItemValCAPTIONESCVERT" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. HcoYN #: include/svx/strings.hrc:272 @@ -1707,7 +1707,7 @@ #: include/svx/strings.hrc:307 msgctxt "STR_ItemValMEASURE_ABOVE" msgid "on the line" -msgstr "på linja" +msgstr "på linjen" #. iqYjg #: include/svx/strings.hrc:308 @@ -1719,7 +1719,7 @@ #: include/svx/strings.hrc:309 msgctxt "STR_ItemValMEASURE_BELOW" msgid "below the line" -msgstr "under linja" +msgstr "under linjen" #. WL8XG #: include/svx/strings.hrc:310 @@ -1817,7 +1817,7 @@ #: include/svx/strings.hrc:327 msgctxt "SIP_XA_LINEENDCENTER" msgid "Center arrowend" -msgstr "Midtstill starten av pila" +msgstr "Midtstill starten av pilen" #. 2UZUA #: include/svx/strings.hrc:328 @@ -2165,7 +2165,7 @@ #: include/svx/strings.hrc:385 msgctxt "SIP_SA_TEXT_FITTOSIZE" msgid "Fit text to frame" -msgstr "Tilpass teksten til ramma" +msgstr "Tilpass teksten til rammen" #. EexDC #: include/svx/strings.hrc:386 @@ -2195,7 +2195,7 @@ #: include/svx/strings.hrc:390 msgctxt "SIP_SA_TEXT_VERTADJUST" msgid "Vertical text anchor" -msgstr "Loddrett tekstanker" +msgstr "Vertikale tekstanker" #. QzTNc #: include/svx/strings.hrc:391 @@ -2225,7 +2225,7 @@ #: include/svx/strings.hrc:395 msgctxt "SIP_SA_TEXT_HORZADJUST" msgid "Horizontal text anchor" -msgstr "Vannrett tekstanker" +msgstr "Horisontalt tekstanker" #. ruk5J #: include/svx/strings.hrc:396 @@ -2309,25 +2309,25 @@ #: include/svx/strings.hrc:409 msgctxt "SIP_SA_EDGENODE1HORZDIST" msgid "Horz. spacing object 1" -msgstr "Vannrett mellomromsobjekt 1" +msgstr "Horisontalt mellomromsobjekt 1" #. xdvs2 #: include/svx/strings.hrc:410 msgctxt "SIP_SA_EDGENODE1VERTDIST" msgid "Vert. spacing object 1" -msgstr "Loddrett mellomromsobjekt 1" +msgstr "Vertikalt mellomromsobjekt 1" #. FB4Cj #: include/svx/strings.hrc:411 msgctxt "SIP_SA_EDGENODE2HORZDIST" msgid "Horz. spacing object 2" -msgstr "Vannrett mellomromsobjekt 2" +msgstr "Horisontalt mellomromsobjekt 2" #. uGKvj #: include/svx/strings.hrc:412 msgctxt "SIP_SA_EDGENODE2VERTDIST" msgid "Vert. spacing object 2" -msgstr "Loddrett mellomromsobjekt 2" +msgstr "Vertikalt mellomromsobjekt 2" #. FSkBP #: include/svx/strings.hrc:413 @@ -2375,13 +2375,13 @@ #: include/svx/strings.hrc:420 msgctxt "SIP_SA_MEASURETEXTHPOS" msgid "Dimension value - horizontal position" -msgstr "Måleverdi – vannrett posisjon" +msgstr "Måleverdi – horisontal posisjon" #. DxA8Z #: include/svx/strings.hrc:421 msgctxt "SIP_SA_MEASURETEXTVPOS" msgid "Dimension value - vertical position" -msgstr "Måleverdi – loddrett posisjon" +msgstr "Måleverdi – vertikal posisjon" #. LQCsj #: include/svx/strings.hrc:422 @@ -2393,13 +2393,13 @@ #: include/svx/strings.hrc:423 msgctxt "SIP_SA_MEASUREHELPLINEOVERHANG" msgid "Dimension help line overhang" -msgstr "Overheng på hjelpemålelinja" +msgstr "Overheng på hjelpemålelinjen" #. Bhboy #: include/svx/strings.hrc:424 msgctxt "SIP_SA_MEASUREHELPLINEDIST" msgid "Dimension help line spacing" -msgstr "Avstand på hjelpemålelinja" +msgstr "Avstand på hjelpemålelinjen" #. jw9E7 #: include/svx/strings.hrc:425 @@ -2423,7 +2423,7 @@ #: include/svx/strings.hrc:428 msgctxt "SIP_SA_MEASURETEXTROTA90" msgid "Dimension value across dimension line" -msgstr "Måleverdi på tvers av målelinja" +msgstr "Måleverdi på tvers av målelinjen" #. VVAgC #: include/svx/strings.hrc:429 @@ -2471,7 +2471,7 @@ #: include/svx/strings.hrc:436 msgctxt "SIP_SA_MEASURETEXTAUTOANGLEVIEW" msgid "Angle for the automatic positioning of the dimension value" -msgstr "Vinkel på autojusteringa av måleverdien" +msgstr "Vinkel på autojusteringen av måleverdien" #. DB243 #: include/svx/strings.hrc:437 @@ -2627,13 +2627,13 @@ #: include/svx/strings.hrc:462 msgctxt "SIP_SA_MOVEX" msgid "Move horizontally" -msgstr "Flytt vannrett" +msgstr "Flytt horisontalt" #. z7EPp #: include/svx/strings.hrc:463 msgctxt "SIP_SA_MOVEY" msgid "Move vertically" -msgstr "Flytt loddrett" +msgstr "Flytt vertikalt" #. Qn4GS #: include/svx/strings.hrc:464 @@ -2657,13 +2657,13 @@ #: include/svx/strings.hrc:467 msgctxt "SIP_SA_HORZSHEARONE" msgid "Single horizontal shear" -msgstr "Enkel, vannrett skjæring" +msgstr "Enkel, horisontal skjæring" #. iCzED #: include/svx/strings.hrc:468 msgctxt "SIP_SA_VERTSHEARONE" msgid "Single vertical shear" -msgstr "Enkel, loddrett skjæring" +msgstr "Enkel, vertikal skjæring" #. HQcJt #: include/svx/strings.hrc:469 @@ -2687,13 +2687,13 @@ #: include/svx/strings.hrc:472 msgctxt "SIP_SA_HORZSHEARALL" msgid "Shear horizontal, complete" -msgstr "Skjær vannrett, fullstendig" +msgstr "Skjær horisontal, fullstendig" #. RAEPz #: include/svx/strings.hrc:473 msgctxt "SIP_SA_VERTSHEARALL" msgid "Shear vertical, complete" -msgstr "Skjær loddrett, fullstendig" +msgstr "Skjær vertikalt, fullstendig" #. gtXM3 #: include/svx/strings.hrc:474 @@ -2783,7 +2783,7 @@ #: include/svx/strings.hrc:488 msgctxt "SIP_EE_CHAR_COLOR" msgid "Font color" -msgstr "Skriftfarge" +msgstr "Fontfarge" #. X535C #: include/svx/strings.hrc:489 @@ -2801,7 +2801,7 @@ #: include/svx/strings.hrc:491 msgctxt "SIP_EE_CHAR_FONTWIDTH" msgid "Font width" -msgstr "Skriftbredde" +msgstr "Fontbredde" #. SQWpD #: include/svx/strings.hrc:492 @@ -2843,13 +2843,13 @@ #: include/svx/strings.hrc:498 msgctxt "SIP_EE_CHAR_SHADOW" msgid "Font shadow" -msgstr "Skriftskygge" +msgstr "Fontskygge" #. PFSUR #: include/svx/strings.hrc:499 msgctxt "SIP_EE_CHAR_ESCAPEMENT" msgid "Superscript/subscript" -msgstr "Hevet/senket skrift" +msgstr "Super/Subskript" #. DrBio #: include/svx/strings.hrc:500 @@ -3321,7 +3321,7 @@ #: include/svx/strings.hrc:581 msgctxt "RID_SVXSTR_COLOR_TEAL" msgid "Teal" -msgstr "blågrønn" +msgstr "Blågrønn" #. JpxBr #: include/svx/strings.hrc:582 @@ -3358,7 +3358,7 @@ #: include/svx/strings.hrc:588 msgctxt "RID_SVXSTR_COLOR_LIGHTORANGE" msgid "Light Orange" -msgstr "lys oransje" +msgstr "Lys oransje" #. k5GY4 #: include/svx/strings.hrc:589 @@ -4249,43 +4249,43 @@ #: include/svx/strings.hrc:749 msgctxt "RID_SVXSTR_GRDT38" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. FDG7B #: include/svx/strings.hrc:750 msgctxt "RID_SVXSTR_GRDT39" msgid "Horizontal Blue" -msgstr "Vannrett blå" +msgstr "Horisontalt blå" #. ZEfzF #: include/svx/strings.hrc:751 msgctxt "RID_SVXSTR_GRDT40" msgid "Horizontal Green" -msgstr "Vannrett grønn" +msgstr "Horisontalt grønn" #. GFRCF #: include/svx/strings.hrc:752 msgctxt "RID_SVXSTR_GRDT41" msgid "Horizontal Orange" -msgstr "Vannrett oransje" +msgstr "Horisontalt oransje" #. iouxG #: include/svx/strings.hrc:753 msgctxt "RID_SVXSTR_GRDT42" msgid "Horizontal Red" -msgstr "Vannrett rød" +msgstr "Horisontalt rød" #. Gta9k #: include/svx/strings.hrc:754 msgctxt "RID_SVXSTR_GRDT43" msgid "Horizontal Turquoise" -msgstr "Vannrett turkis" +msgstr "Horisontalt turkis" #. Tdpw4 #: include/svx/strings.hrc:755 msgctxt "RID_SVXSTR_GRDT44" msgid "Horizontal Violet" -msgstr "Vannrett fiolett" +msgstr "Horisontalt fiolett" #. DyVEP #: include/svx/strings.hrc:756 @@ -4333,43 +4333,43 @@ #: include/svx/strings.hrc:763 msgctxt "RID_SVXSTR_GRDT52" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikal" #. DqGbG #: include/svx/strings.hrc:764 msgctxt "RID_SVXSTR_GRDT53" msgid "Vertical Blue" -msgstr "Loddrett blå" +msgstr "Vertikal blå" #. FCa2X #: include/svx/strings.hrc:765 msgctxt "RID_SVXSTR_GRDT54" msgid "Vertical Green" -msgstr "Loddrett grønn" +msgstr "Vertikal grønn" #. BNSiE #: include/svx/strings.hrc:766 msgctxt "RID_SVXSTR_GRDT55" msgid "Vertical Orange" -msgstr "Loddrett oransje" +msgstr "Vertikal oransje" #. DfiaF #: include/svx/strings.hrc:767 msgctxt "RID_SVXSTR_GRDT56" msgid "Vertical Red" -msgstr "Loddrett rød" +msgstr "Vertikal rød" #. 4htXp #: include/svx/strings.hrc:768 msgctxt "RID_SVXSTR_GRDT57" msgid "Vertical Turquoise" -msgstr "Loddrett turkis" +msgstr "Vertikal turkis" #. FVCCq #: include/svx/strings.hrc:769 msgctxt "RID_SVXSTR_GRDT58" msgid "Vertical Violet" -msgstr "Loddrett fiolett" +msgstr "Vertikal fiolett" #. S3bJ9 #. gradients of unknown provenience @@ -4684,7 +4684,7 @@ #: include/svx/strings.hrc:824 msgctxt "RID_SVXSTR_BMP9" msgid "Lawn" -msgstr "Gressmatte" +msgstr "Plen" #. bAE9x #: include/svx/strings.hrc:825 @@ -5616,7 +5616,7 @@ #: include/svx/strings.hrc:1007 msgctxt "RID_SVXSTR_RECOVFAILED" msgid "Recovery failed" -msgstr "Gjenopprettinga mislyktes" +msgstr "Gjenopprettingen mislyktes" #. 5ye7z #: include/svx/strings.hrc:1008 @@ -5646,7 +5646,7 @@ #: include/svx/strings.hrc:1012 msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH" msgid "~Finish" -msgstr "~Ferdig" +msgstr "Ferdig" #. BBeKk #: include/svx/strings.hrc:1013 @@ -5960,13 +5960,13 @@ #: include/svx/strings.hrc:1072 msgctxt "RID_SVXSTR_QRY_PRINT_ALL" msgid "~All" -msgstr "~Hele" +msgstr "Hele" #. UxfS3 #: include/svx/strings.hrc:1073 msgctxt "RID_SVXSTR_QRY_PRINT_SELECTION" msgid "~Selection" -msgstr "~Merket område" +msgstr "Merket område" #. KTgDd #: include/svx/strings.hrc:1075 @@ -6026,31 +6026,31 @@ #: include/svx/strings.hrc:1084 msgctxt "RID_SVXSTR_DEPTH_0" msgid "~0 cm" -msgstr "~0 cm" +msgstr "0 cm" #. kRzVE #: include/svx/strings.hrc:1085 msgctxt "RID_SVXSTR_DEPTH_1" msgid "~1 cm" -msgstr "~1 cm" +msgstr "1 cm" #. CSmTh #: include/svx/strings.hrc:1086 msgctxt "RID_SVXSTR_DEPTH_2" msgid "~2.5 cm" -msgstr "~2,5 cm" +msgstr "2,5 cm" #. eYrvo #: include/svx/strings.hrc:1087 msgctxt "RID_SVXSTR_DEPTH_3" msgid "~5 cm" -msgstr "~5 cm" +msgstr "5 cm" #. G4Ckx #: include/svx/strings.hrc:1088 msgctxt "RID_SVXSTR_DEPTH_4" msgid "10 ~cm" -msgstr "10 ~cm" +msgstr "10 cm" #. LGHsL #: include/svx/strings.hrc:1089 @@ -6062,25 +6062,25 @@ #: include/svx/strings.hrc:1090 msgctxt "RID_SVXSTR_DEPTH_1_INCH" msgid "0.~5 inch" -msgstr "0,~5 tommer" +msgstr "0,5 tommer" #. GvKjC #: include/svx/strings.hrc:1091 msgctxt "RID_SVXSTR_DEPTH_2_INCH" msgid "~1 inch" -msgstr "~1 tomme" +msgstr "1 tomme" #. gmzHb #: include/svx/strings.hrc:1092 msgctxt "RID_SVXSTR_DEPTH_3_INCH" msgid "~2 inch" -msgstr "~2 tommer" +msgstr "2 tommer" #. DE5kt #: include/svx/strings.hrc:1093 msgctxt "RID_SVXSTR_DEPTH_4_INCH" msgid "~4 inch" -msgstr "~4 tommer" +msgstr "4 tommer" #. K5dY9 #: include/svx/strings.hrc:1095 @@ -6772,7 +6772,7 @@ #: include/svx/strings.hrc:1217 msgctxt "RID_STR_NOCONTROLS_FOR_EXTERNALDISPLAY" msgid "Valid bound controls which can be used in the table view do not exist in the current form." -msgstr "Skjemaet har ingen gyldige grensekontroller som kan brukes i tabellvisninga." +msgstr "Skjemaet har ingen gyldige grensekontroller som kan brukes i tabellvisningen." #. iEoGb #: include/svx/strings.hrc:1218 @@ -6784,7 +6784,7 @@ #: include/svx/strings.hrc:1219 msgctxt "RID_STR_SVT_SQL_SYNTAX_ERROR" msgid "Syntax error in SQL statement" -msgstr "Syntaksfeil i SQL-setninga" +msgstr "Syntaksfeil i SQL-setningen" #. ZoEuu #: include/svx/strings.hrc:1220 @@ -6868,13 +6868,13 @@ #: include/svx/strings.hrc:1233 msgctxt "RID_STR_ALREADYEXISTOVERWRITE" msgid "The file already exists. Overwrite?" -msgstr "Fila finnes allerede. Vil du overskrive den?" +msgstr "Filen finnes allerede. Vil du overskrive den?" #. dSYCi #: include/svx/strings.hrc:1234 msgctxt "RID_STR_OBJECT_LABEL" msgid "#object# label" -msgstr "#object# merkelapp" +msgstr "#object# etikett" #. JpaM6 #: include/svx/strings.hrc:1236 @@ -6920,7 +6920,7 @@ "\n" "Do you really want to delete this submission?" msgstr "" -"Sletting av sendinga \"$SUBMISSIONNAME\" vil påvirke alle kontrollelementene som er bundet til denne sendingen.\n" +"Sletting av sendingen \"$SUBMISSIONNAME\" vil påvirke alle kontrollelementene som er bundet til denne sendingen.\n" "\n" "Vil du virkelig slette denne sendingen?" @@ -6932,7 +6932,7 @@ "\n" "Do you really want to delete this binding?" msgstr "" -"Sletting av bindinga \"$BINDINGNAME\" vil påvirke alle kontrollelementene som er bundet til denne bindinga.\n" +"Sletting av bindingen \"$BINDINGNAME\" vil påvirke alle kontrollelementene som er bundet til denne bindingen.\n" "\n" "Vil du virkelig slette denne bindingen?" @@ -6958,7 +6958,7 @@ #: include/svx/strings.hrc:1245 msgctxt "RID_STR_EMPTY_SUBMISSIONNAME" msgid "The submission must have a name." -msgstr "Sendinga må ha et navn." +msgstr "Sendingen må ha et navn." #. xcAaD #: include/svx/strings.hrc:1246 @@ -7126,7 +7126,7 @@ #: include/svx/strings.hrc:1274 msgctxt "RID_SVXSTR_QUERY_EXIT_RECOVERY" msgid "Are you sure you want to discard the %PRODUCTNAME document recovery data?" -msgstr "Er du sikker på at du vil avslutte gjenopprettinga av %PRODUCTNAME-dokumentene?" +msgstr "Er du sikker på at du vil avslutte gjenopprettingen av %PRODUCTNAME-dokumentene?" #. 5WjQZ #: include/svx/strings.hrc:1276 @@ -7235,7 +7235,7 @@ #: include/svx/strings.hrc:1295 msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART" msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Kunne ikke laste inn alle SmartArt-objekter. Lagring i Microsoft Office 2010 format eller senere vil unngå dette problemet." #. Bc5Sg #: include/svx/strings.hrc:1296 @@ -7571,7 +7571,7 @@ #: include/svx/strings.hrc:1357 msgctxt "RID_SVXSTR_SAFEMODE_ZIP_FAILURE" msgid "The zip file could not be created." -msgstr "Klarte ikke å opprette zip fila." +msgstr "Klarte ikke å opprette zip filen." #. CC6Sw #: include/svx/strings.hrc:1359 @@ -7643,7 +7643,7 @@ #: include/svx/strings.hrc:1373 msgctxt "STR_IMAGE_CAPACITY_WITH_REDUCTION" msgid "$(CAPACITY) kiB ($(REDUCTION) % Reduction)" -msgstr "" +msgstr "$(CAPACITY) kiB ($(REDUCTION) % Reduksjon)" #. 8GqWz #: include/svx/strings.hrc:1374 @@ -8825,7 +8825,7 @@ #: include/svx/strings.hrc:1578 msgctxt "RID_SUBSETMAP" msgid "Vertical Forms" -msgstr "Loddrette former" +msgstr "Vertikale skjema" #. ihUDF #: include/svx/strings.hrc:1579 @@ -8993,7 +8993,7 @@ #: include/svx/strings.hrc:1606 msgctxt "RID_SUBSETMAP" msgid "Canadian Aboriginal Syllabics Extended" -msgstr "Utvidede Kanadiske innfødte stavelser" +msgstr "Utvidede Canadiske innfødte stavelser" #. H4FpF #: include/svx/strings.hrc:1607 @@ -9810,25 +9810,25 @@ #: include/svx/strings.hrc:1744 msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI" msgid "Left-to-right (horizontal)" -msgstr "Venstre-til-høyre (vannrett)" +msgstr "Venstre-til-høyre (horisontalt)" #. b6Guf #: include/svx/strings.hrc:1745 msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI" msgid "Right-to-left (horizontal)" -msgstr "Høyre-til-venstre (vannrett)" +msgstr "Høyre-til-venstre (horisontalt)" #. yQGoC #: include/svx/strings.hrc:1746 msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT" msgid "Right-to-left (vertical)" -msgstr "Høyre-til-venstre (loddrett)" +msgstr "Høyre-til-venstre (vertikalt)" #. k7B2r #: include/svx/strings.hrc:1747 msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT" msgid "Left-to-right (vertical)" -msgstr "Venstre til høyre (loddrett)" +msgstr "Venstre til høyre (vertikalt)" #. DF4B8 #: include/svx/strings.hrc:1748 @@ -9840,7 +9840,7 @@ #: include/svx/strings.hrc:1750 msgctxt "RID_SVXSTR_FONTWORK" msgid "Fontwork" -msgstr "Fontarbeid" +msgstr "Fonteffekter" #. Eg8QT #: include/svx/strings.hrc:1752 @@ -10050,7 +10050,7 @@ #: include/svx/svxitems.hrc:65 msgctxt "RID_ATTR_NAMES" msgid "Page" -msgstr "Seite" +msgstr "Side" #. BPZBb #: include/svx/svxitems.hrc:66 @@ -10074,7 +10074,7 @@ #: include/svx/svxitems.hrc:69 msgctxt "RID_ATTR_NAMES" msgid "Page line-spacing" -msgstr "" +msgstr "Linjeavstand for Side" #. t2uX7 #: include/svx/svxitems.hrc:70 @@ -10194,7 +10194,7 @@ #: include/svx/svxitems.hrc:89 msgctxt "RID_ATTR_NAMES" msgid "Vertical text alignment" -msgstr "Loddrett tekstjustering" +msgstr "Vertikal tekstjustering" #. DPZws #: svx/inc/fieldunit.hrc:30 @@ -10512,7 +10512,7 @@ #: svx/inc/formnavi.hrc:46 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToScrollBar" msgid "Scroll bar" -msgstr "" +msgstr "Rullefelt" #. cGxjA #: svx/inc/formnavi.hrc:47 @@ -10560,13 +10560,13 @@ #: svx/inc/frmsel.hrc:34 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Horizontal border line" -msgstr "Vannrett kantlinje" +msgstr "Horisontal kantlinje" #. jzGHA #: svx/inc/frmsel.hrc:35 msgctxt "RID_SVXSTR_FRMSEL_TEXTS" msgid "Vertical border line" -msgstr "Loddrett kantlinje" +msgstr "Vertikal kantlinje" #. DodCu #: svx/inc/frmsel.hrc:36 @@ -10614,13 +10614,13 @@ #: svx/inc/frmsel.hrc:47 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Horizontal border line" -msgstr "Vannrett kantlinje" +msgstr "Horisontal kantlinje" #. Em9YX #: svx/inc/frmsel.hrc:48 msgctxt "RID_SVXSTR_FRMSEL_DESCRIPTIONS" msgid "Vertical border line" -msgstr "Loddrett kantlinje" +msgstr "Vertikal kantlinje" #. oDFKb #: svx/inc/frmsel.hrc:49 @@ -11138,7 +11138,7 @@ #: svx/inc/svxerr.hrc:33 msgctxt "RID_SVXERRCTX" msgid "$(ERR) executing the thesaurus." -msgstr "$(ERR) ved bruk av synonymordboka." +msgstr "$(ERR) ved bruk av synonymordboken." #. fpWGL #: svx/inc/svxerr.hrc:35 @@ -11192,7 +11192,7 @@ #: svx/inc/svxerr.hrc:55 msgctxt "RID_SVXERRCODE" msgid "The custom dictionary $(ARG1) cannot be created." -msgstr "Klarte ikke å opprette den selvvalgte ordboka $(ARG1)." +msgstr "Klarte ikke å opprette den selvvalgte ordboken $(ARG1)." #. GH3nH #: svx/inc/svxerr.hrc:57 @@ -11234,7 +11234,7 @@ #: svx/inc/svxerr.hrc:69 msgctxt "RID_SVXERRCODE" msgid "The encryption method used in this document is not supported. Only Microsoft Office 97/2000 compatible password encryption is supported." -msgstr "Krypteringsmetoden brukt i dette dokumentet er ikke støttet. Det er bare passordkrypteringa til Microsoft Office 97/2000 som er støttet." +msgstr "Krypteringsmetoden brukt i dette dokumentet er ikke støttet. Det er bare passordkrypteringen til Microsoft Office 97/2000 som er støttet." #. MACrt #: svx/inc/svxerr.hrc:71 @@ -11364,7 +11364,7 @@ #: svx/inc/swframeposstrings.hrc:46 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Page text area top" -msgstr "" +msgstr "Sideområde (tekst) Topp" #. vWEe2 #: svx/inc/swframeposstrings.hrc:47 @@ -11412,7 +11412,7 @@ #: svx/inc/swframeposstrings.hrc:55 msgctxt "RID_SVXSW_FRAMEPOSITIONS" msgid "Entire frame" -msgstr "Hele ramma" +msgstr "Hele rammen" #. FRNBs #: svx/inc/swframeposstrings.hrc:56 @@ -12300,7 +12300,7 @@ #: svx/source/dialog/page.hrc:85 msgctxt "RID_SVXSTRARY_PAPERSIZE_DRAW" msgid "DL Envelope" -msgstr "DL-konvolutt" +msgstr "DL konvolutt" #. k2HBd #: svx/source/dialog/page.hrc:86 @@ -12366,55 +12366,55 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:23 msgctxt "acceptrejectchangesdialog|accept" msgid "_Accept" -msgstr "_Godta" +msgstr "Godta" #. vxNLK #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:30 msgctxt "acceptrejectchangesdialog|extended_tip|accept" msgid "Accepts the selected change and removes the highlighting from the change in the document." -msgstr "" +msgstr "Godtar den valgte endringen og fjerner uthevingen fra endringen i dokumentet." #. UEZKm #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:43 msgctxt "acceptrejectchangesdialog|reject" msgid "_Reject" -msgstr "_Avvis" +msgstr "Avvis" #. rDjqw #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:50 msgctxt "acceptrejectchangesdialog|extended_tip|reject" msgid "Rejects the selected change and removes the highlighting from the change in the document." -msgstr "" +msgstr "Avviser den valgte endringen og fjerner uthevingen fra endringen i dokumentet." #. CY86f #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:63 msgctxt "acceptrejectchangesdialog|acceptall" msgid "A_ccept All" -msgstr "_Godta alt" +msgstr "Godta alt" #. At7GQ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:70 msgctxt "acceptrejectchangesdialog|extended_tip|acceptall" msgid "Accepts all of the changes and removes the highlighting from the document." -msgstr "Aksepterer alle endringer og fjerner markering av den." +msgstr "Aksepterer alle endringer og fjerner markering av den i dokumentet." #. debjw #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:83 msgctxt "acceptrejectchangesdialog|rejectall" msgid "R_eject All" -msgstr "_Avvis alt" +msgstr "Avvis alt" #. ZSHyG #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:90 msgctxt "acceptrejectchangesdialog|extended_tip|rejectall" msgid "Rejects all of the changes and removes the highlighting from the document." -msgstr "Avvis alle endringer og fjerner markeringene av den." +msgstr "Avvis alle endringer og fjerner markeringene av den i dokumentet." #. phEJs #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:110 msgctxt "acceptrejectchangesdialog|extended_tip|undo" msgid "Reverse the last Accept or Reject command." -msgstr "" +msgstr "Reverserer den siste Godta eller Avvis kommandoen ." #. Jyka9 #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:169 @@ -12426,7 +12426,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:172 msgctxt "acceptrejectchangesdialog|extended_tip|calcedit" msgid "Edit the comment for the selected change." -msgstr "" +msgstr "Rediger kommentaren for den valgte endringen." #. kqtia #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:181 @@ -12474,7 +12474,7 @@ #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:246 msgctxt "acceptrejectchangesdialog|extended_tip|writeredit" msgid "Edit the comment for the selected change." -msgstr "" +msgstr "Rediger kommentaren for den valgte endringen." #. 75VLB #: svx/uiconfig/ui/acceptrejectchangesdialog.ui:255 @@ -12534,7 +12534,7 @@ #: svx/uiconfig/ui/addconditiondialog.ui:88 msgctxt "addconditiondialog|label1" msgid "_Condition:" -msgstr "_Vilkår:" +msgstr "Vilkår:" #. CBWg9 #: svx/uiconfig/ui/addconditiondialog.ui:114 @@ -12546,13 +12546,13 @@ #: svx/uiconfig/ui/addconditiondialog.ui:144 msgctxt "addconditiondialog|label2" msgid "_Result:" -msgstr "_Resultat:" +msgstr "Resultat:" #. 2aknP #: svx/uiconfig/ui/addconditiondialog.ui:156 msgctxt "addconditiondialog|edit" msgid "_Edit Namespaces..." -msgstr "~Rediger navnerom …" +msgstr "Rediger navnerom …" #. YARAf #: svx/uiconfig/ui/addconditiondialog.ui:164 @@ -12582,19 +12582,19 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:118 msgctxt "adddataitemdialog|nameft" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. C2HJB #: svx/uiconfig/ui/adddataitemdialog.ui:132 msgctxt "adddataitemdialog|valueft" msgid "_Default value:" -msgstr "_Standardverdi:" +msgstr "Standardverdi:" #. 6XN5s #: svx/uiconfig/ui/adddataitemdialog.ui:144 msgctxt "adddataitemdialog|browse" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. qt9Aw #: svx/uiconfig/ui/adddataitemdialog.ui:166 @@ -12612,7 +12612,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:221 msgctxt "adddataitemdialog|datatypeft" msgid "_Data type:" -msgstr "_Datatype:" +msgstr "Datatype:" #. cSxmt #: svx/uiconfig/ui/adddataitemdialog.ui:239 @@ -12624,7 +12624,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:250 msgctxt "adddataitemdialog|required" msgid "_Required" -msgstr "_Påkrevd" +msgstr "Påkrevd" #. RoGeb #: svx/uiconfig/ui/adddataitemdialog.ui:259 @@ -12642,7 +12642,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:278 msgctxt "adddataitemdialog|extended_tip|requiredcond" msgid "The Condition button opens the Add Condition dialog where you can enter used namespaces and full XPath expressions." -msgstr "" +msgstr "Betingelsesknappen åpner dialogboksen Legg til betingelse der du kan angi brukte navneområder og fullstendige XPath-uttrykk." #. Rqtm8 #: svx/uiconfig/ui/adddataitemdialog.ui:289 @@ -12672,7 +12672,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:328 msgctxt "adddataitemdialog|constraint" msgid "_Constraint" -msgstr "_Avgrensning" +msgstr "Avgrensning" #. jspHN #: svx/uiconfig/ui/adddataitemdialog.ui:337 @@ -12684,7 +12684,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:348 msgctxt "adddataitemdialog|readonly" msgid "Read-_only" -msgstr "_Skrivebeskyttet" +msgstr "Skrivebeskyttet" #. YYuo9 #: svx/uiconfig/ui/adddataitemdialog.ui:357 @@ -12696,7 +12696,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:368 msgctxt "adddataitemdialog|calculate" msgid "Calc_ulate" -msgstr "_Regn ut" +msgstr "Beregn" #. Ct5yr #: svx/uiconfig/ui/adddataitemdialog.ui:377 @@ -12714,7 +12714,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:396 msgctxt "adddataitemdialog|extended_tip|constraintcond" msgid "The Condition button opens the Add Condition dialog where you can specify the constraint condition." -msgstr "" +msgstr "Betingelsesknappen åpner dialogboksen Legg til betingelser der du kan spesifisere begrensningsbetingelsen." #. wDmeB #: svx/uiconfig/ui/adddataitemdialog.ui:407 @@ -12738,7 +12738,7 @@ #: svx/uiconfig/ui/adddataitemdialog.ui:434 msgctxt "adddataitemdialog|extended_tip|calculatecond" msgid "The Condition button opens the Add Condition dialog where you can enter the calculation." -msgstr "" +msgstr "Betingelsesknappen åpner dialogboksen Legg til betingelser der du kan angi beregningen." #. JEwfa #: svx/uiconfig/ui/adddataitemdialog.ui:451 @@ -12762,7 +12762,7 @@ #: svx/uiconfig/ui/addinstancedialog.ui:104 msgctxt "addinstancedialog|label2" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. SyBuY #: svx/uiconfig/ui/addinstancedialog.ui:118 @@ -12774,19 +12774,19 @@ #: svx/uiconfig/ui/addinstancedialog.ui:130 msgctxt "addinstancedialog|urlft" msgid "_URL:" -msgstr "_URL:" +msgstr "URL:" #. vXdwB #: svx/uiconfig/ui/addinstancedialog.ui:160 msgctxt "addinstancedialog|browse" msgid "_Browse..." -msgstr "_Bla gjennom ..." +msgstr "Bla gjennom ..." #. s295E #: svx/uiconfig/ui/addinstancedialog.ui:173 msgctxt "addinstancedialog|link" msgid "_Link instance" -msgstr "_Lenkeinstans" +msgstr "Lenkeinstans" #. BUU2x #: svx/uiconfig/ui/addmodeldialog.ui:8 @@ -12816,7 +12816,7 @@ #: svx/uiconfig/ui/addmodeldialog.ui:126 msgctxt "addmodeldialog|label2" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. BCjAN #: svx/uiconfig/ui/addmodeldialog.ui:140 @@ -12834,13 +12834,13 @@ #: svx/uiconfig/ui/addnamespacedialog.ui:90 msgctxt "addnamespacedialog|label1" msgid "_Prefix:" -msgstr "_Prefiks:" +msgstr "Prefiks:" #. dArAo #: svx/uiconfig/ui/addnamespacedialog.ui:132 msgctxt "addnamespacedialog|label2" msgid "_URL:" -msgstr "_URL:" +msgstr "URL:" #. YtT2E #: svx/uiconfig/ui/addnamespacedialog.ui:146 @@ -12858,7 +12858,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:105 msgctxt "addsubmissiondialog|label2" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. uHEpR #: svx/uiconfig/ui/addsubmissiondialog.ui:119 @@ -12870,19 +12870,19 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:131 msgctxt "addsubmissiondialog|browse" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. RzDTr #: svx/uiconfig/ui/addsubmissiondialog.ui:147 msgctxt "addsubmissiondialog|label3" msgid "_Action:" -msgstr "_Handling:" +msgstr "Handling:" #. zHkNb #: svx/uiconfig/ui/addsubmissiondialog.ui:176 msgctxt "addsubmissiondialog|label4" msgid "_Method:" -msgstr "_Metode:" +msgstr "Metode:" #. 6VGN7 #: svx/uiconfig/ui/addsubmissiondialog.ui:216 @@ -12894,7 +12894,7 @@ #: svx/uiconfig/ui/addsubmissiondialog.ui:230 msgctxt "addsubmissiondialog|label6" msgid "_Replace:" -msgstr "_Erstatt:" +msgstr "Erstatt:" #. yvhoc #: svx/uiconfig/ui/asianphoneticguidedialog.ui:8 @@ -13032,7 +13032,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:380 msgctxt "asianphoneticguidedialog|extended_tip|styles" msgid "Opens the Styles deck of the Sidebar where you can select a character style for the ruby text." -msgstr "" +msgstr "Åpner Stil området i sidefeltet hvor du kan velge en tegnstil for rubyteksten." #. Ruh4F #: svx/uiconfig/ui/asianphoneticguidedialog.ui:394 @@ -13068,7 +13068,7 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:402 msgctxt "asianphoneticguidedialog|extended_tip|adjustlb" msgid "Select the horizontal alignment for the Ruby text." -msgstr "Velg den loddrette plasseringen av Rubyteksten." +msgstr "Velg den vertikale plasseringen av Rubyteksten." #. 68NYJ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:416 @@ -13104,13 +13104,13 @@ #: svx/uiconfig/ui/asianphoneticguidedialog.ui:506 msgctxt "asianphoneticguidedialog|extended_tip|AsianPhoneticGuideDialog" msgid "Allows you to add comments next to Asian characters to serve as a pronunciation guide." -msgstr "" +msgstr "Lar deg legge til kommentarer ved siden av asiatiske tegn for å tjene som uttale guide." #. pCrNF #: svx/uiconfig/ui/cellmenu.ui:12 msgctxt "cellmenu|copy" msgid "_Copy" -msgstr "_Kopier" +msgstr "Kopier" #. qALw7 #: svx/uiconfig/ui/charsetmenu.ui:12 @@ -13146,25 +13146,25 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:108 msgctxt "chineseconversiondialog|tosimplified" msgid "_Traditional Chinese to simplified Chinese" -msgstr "_Tradisjonell kinesisk til forenklet kinesisk" +msgstr "Tradisjonell kinesisk til forenklet kinesisk" #. TF3Zx #: svx/uiconfig/ui/chineseconversiondialog.ui:118 msgctxt "chineseconversiondialog|extended_tip|tosimplified" msgid "Converts traditional Chinese text characters to simplified Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted." -msgstr "" +msgstr "Konverterer tradisjonelle kinesiske teksttegn til forenklede kinesiske teksttegn. Klikk OK for å konvertere den valgte teksten. Hvis ingen tekst er valgt, konverteres hele dokumentet." #. aDmx8 #: svx/uiconfig/ui/chineseconversiondialog.ui:129 msgctxt "chineseconversiondialog|totraditional" msgid "_Simplified Chinese to traditional Chinese" -msgstr "_Forenklet kinesisk til tradisjonell kinesisk" +msgstr "Forenklet kinesisk til tradisjonell kinesisk" #. WcnMD #: svx/uiconfig/ui/chineseconversiondialog.ui:139 msgctxt "chineseconversiondialog|extended_tip|totraditional" msgid "Converts simplified Chinese text characters to traditional Chinese text characters. Click OK to convert the selected text. If no text is selected, the whole document is converted." -msgstr "" +msgstr "Konverterer tradisjonelle kinesiske teksttegn til forenklede kinesiske teksttegn. Klikk OK for å konvertere den valgte teksten. Hvis ingen tekst er valgt, konverteres hele dokumentet." #. dKQjR #: svx/uiconfig/ui/chineseconversiondialog.ui:156 @@ -13176,25 +13176,25 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:194 msgctxt "chineseconversiondialog|commonterms" msgid "Translate _common terms" -msgstr "Oversett _vanlige uttrykk" +msgstr "Oversett regulære uttrykk" #. BhE3k #: svx/uiconfig/ui/chineseconversiondialog.ui:204 msgctxt "chineseconversiondialog|extended_tip|commonterms" msgid "Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character." -msgstr "" +msgstr "Konverterer ord med to eller flere tegn som er i listen over vanlige termer. Etter at listen er skannet, konverteres den gjenværende teksten tegn for tegn." #. cEs8M #: svx/uiconfig/ui/chineseconversiondialog.ui:215 msgctxt "chineseconversiondialog|editterms" msgid "_Edit Terms..." -msgstr "_Rediger uttrykk …" +msgstr "Rediger uttrykk …" #. RpF9A #: svx/uiconfig/ui/chineseconversiondialog.ui:222 msgctxt "chineseconversiondialog|extended_tip|editterms" msgid "Opens the Edit Dictionary dialog where you can edit the list of conversion terms." -msgstr "" +msgstr "Åpner dialogboksen Rediger ordbok der du kan redigere listen over konverteringsuttrykk." #. dEHH2 #: svx/uiconfig/ui/chineseconversiondialog.ui:239 @@ -13206,7 +13206,7 @@ #: svx/uiconfig/ui/chineseconversiondialog.ui:270 msgctxt "chineseconversiondialog|extended_tip|ChineseConversionDialog" msgid "Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted." -msgstr "" +msgstr "Konverterer den valgte kinesiske teksten fra det ene kinesiske skrivesystemet til det andre. Hvis ingen tekst er valgt, konverteres hele dokumentet." #. AdAdK #: svx/uiconfig/ui/chinesedictionary.ui:32 @@ -13218,37 +13218,37 @@ #: svx/uiconfig/ui/chinesedictionary.ui:115 msgctxt "chinesedictionary|tradtosimple" msgid "_Traditional Chinese to simplified Chinese" -msgstr "_Tradisjonell kinesisk til forenklet kinesisk" +msgstr "Tradisjonell kinesisk til forenklet kinesisk" #. tG23L #: svx/uiconfig/ui/chinesedictionary.ui:126 msgctxt "chinesedictionary|extended_tip|tradtosimple" msgid "Converts traditional Chinese to simplified Chinese." -msgstr "" +msgstr "Konverterer tradisjonell kinesisk til forenklet kinesisk." #. SqsBj #: svx/uiconfig/ui/chinesedictionary.ui:137 msgctxt "chinesedictionary|simpletotrad" msgid "_Simplified Chinese to traditional Chinese" -msgstr "_Forenklet kinesisk til tradisjonell kinesisk" +msgstr "Forenklet kinesisk til tradisjonell kinesisk" #. JddGF #: svx/uiconfig/ui/chinesedictionary.ui:147 msgctxt "chinesedictionary|extended_tip|simpletotrad" msgid "Converts simplified Chinese to traditional Chinese." -msgstr "" +msgstr "Konverterer forenklet kinesisk til tradisjonell kinesisk." #. YqoXf #: svx/uiconfig/ui/chinesedictionary.ui:158 msgctxt "chinesedictionary|reverse" msgid "Reverse mapping" -msgstr "Omvend tilordning" +msgstr "Omvend mapping" #. 8WbJh #: svx/uiconfig/ui/chinesedictionary.ui:167 msgctxt "chinesedictionary|extended_tip|reverse" msgid "Automatically adds the reverse mapping direction to the list for each modification that you enter." -msgstr "Legg automatisk til den omvendte tilordninga i lista for hver endring du fører opp." +msgstr "Legg automatisk til den omvendte mappingen i listen for hver endring du fører opp." #. 4Y5b9 #: svx/uiconfig/ui/chinesedictionary.ui:195 @@ -13256,7 +13256,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:473 msgctxt "chinesedictionary|termft" msgid "Term" -msgstr "Term" +msgstr "Uttrykk" #. ETDYE #: svx/uiconfig/ui/chinesedictionary.ui:209 @@ -13264,19 +13264,19 @@ #: svx/uiconfig/ui/chinesedictionary.ui:488 msgctxt "chinesedictionary|mappingft" msgid "Mapping" -msgstr "Tilordning" +msgstr "Mapping" #. P3DiF #: svx/uiconfig/ui/chinesedictionary.ui:235 msgctxt "chinesedictionary|extended_tip|add" msgid "Adds the term to the conversion dictionary. If the term is already in the dictionary, the new term receives precedence." -msgstr "" +msgstr "Legger til begrepet i konverteringsordboken. Hvis begrepet allerede er i ordboken, får det nye begrepet forrang." #. XZbeq #: svx/uiconfig/ui/chinesedictionary.ui:247 msgctxt "chinesedictionary|modify" msgid "_Modify" -msgstr "_Endre" +msgstr "Endre" #. ccyfm #: svx/uiconfig/ui/chinesedictionary.ui:254 @@ -13288,7 +13288,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:273 msgctxt "chinesedictionary|extended_tip|delete" msgid "Removes the selected user-defined entry from the dictionary." -msgstr "Slett den valgte egne oppføringen fra ordboka." +msgstr "Slett den valgte egne oppføringen fra ordboken." #. cUcgH #: svx/uiconfig/ui/chinesedictionary.ui:294 @@ -13410,7 +13410,7 @@ #: svx/uiconfig/ui/chinesedictionary.ui:556 msgctxt "chinesedictionary|extended_tip|ChineseDictionaryDialog" msgid "Edit the Chinese conversion terms." -msgstr "" +msgstr "Rediger de kinesiske konverteringsuttrykkene." #. TZEqZ #: svx/uiconfig/ui/classificationdialog.ui:37 @@ -13584,7 +13584,7 @@ #: svx/uiconfig/ui/colsmenu.ui:113 msgctxt "colsmenu|change" msgid "_Replace with" -msgstr "Erstatt _med" +msgstr "Erstatt med" #. WPsfG #: svx/uiconfig/ui/colsmenu.ui:123 @@ -13662,25 +13662,25 @@ #: svx/uiconfig/ui/colsmenu.ui:224 msgctxt "colsmenu|hide" msgid "_Hide Column" -msgstr "_Skjul kolonne" +msgstr "Skjul kolonne" #. r24Fu #: svx/uiconfig/ui/colsmenu.ui:232 msgctxt "colsmenu|show" msgid "_Show Columns" -msgstr "_Vis kolonner" +msgstr "Vis kolonner" #. FGgJL #: svx/uiconfig/ui/colsmenu.ui:242 msgctxt "colsmenu|more" msgid "_More..." -msgstr "_Mer …" +msgstr "Mer …" #. JtMyQ #: svx/uiconfig/ui/colsmenu.ui:255 msgctxt "colsmenu|all" msgid "_All" -msgstr "_Alle" +msgstr "Alle" #. frYiv #: svx/uiconfig/ui/colsmenu.ui:266 @@ -13966,6 +13966,9 @@ "You can soon find the report at:\n" "https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" msgstr "" +"Krasjrapporten ble lastet opp.\n" +"Du finner snart rapporten på:\n" +"https://crashreport.libreoffice.org/stats/crash_details/%CRASHID" #. DDKL6 #: svx/uiconfig/ui/crashreportdlg.ui:11 @@ -13976,7 +13979,7 @@ "Thank you for your help in improving %PRODUCTNAME." msgstr "" "Vennligs sjekk rapporten og hvis ikke det finnes noen feilrapport koblet til krasjrapporten, registrer en ny feilrapport på bugs.documentfoundation.org.\n" -"Legg til en detaljert instruksjon hvordan feilen kan reproduseres og angi krasj ID i krasjrapoortfeltet.\n" +"Legg til en detaljert instruksjon hvordan feilen kan reproduseres og angi krasj ID i krasjraportfeltet.\n" "Takk for at du bidrar til å forbedre %PRODUCTNAME." #. osEZf @@ -13989,13 +13992,13 @@ #: svx/uiconfig/ui/crashreportdlg.ui:34 msgctxt "crashreportdlg|btn_send" msgid "_Send Crash Report" -msgstr "_send Krasj Rapport" +msgstr "send Krasj Rapport" #. Qg8UC #: svx/uiconfig/ui/crashreportdlg.ui:50 msgctxt "crashreportdlg|btn_cancel" msgid "Do _Not Send" -msgstr "" +msgstr "Ikke send" #. afExy #: svx/uiconfig/ui/crashreportdlg.ui:64 @@ -14025,7 +14028,7 @@ #: svx/uiconfig/ui/datanavigator.ui:12 msgctxt "datanavigator|instancesadd" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. MFX47 #: svx/uiconfig/ui/datanavigator.ui:16 @@ -14037,7 +14040,7 @@ #: svx/uiconfig/ui/datanavigator.ui:25 msgctxt "datanavigator|instancesedit" msgid "_Edit..." -msgstr "_Rediger ..." +msgstr "Rediger ..." #. cJYQx #: svx/uiconfig/ui/datanavigator.ui:29 @@ -14049,7 +14052,7 @@ #: svx/uiconfig/ui/datanavigator.ui:38 msgctxt "datanavigator|instancesremove" msgid "_Remove..." -msgstr "_Fjern" +msgstr "Fjern" #. tGyCY #: svx/uiconfig/ui/datanavigator.ui:42 @@ -14061,7 +14064,7 @@ #: svx/uiconfig/ui/datanavigator.ui:57 msgctxt "datanavigator|instancesdetails" msgid "_Show Details" -msgstr "_Vis detaljer" +msgstr "Vis detaljer" #. W459x #: svx/uiconfig/ui/datanavigator.ui:61 @@ -14073,7 +14076,7 @@ #: svx/uiconfig/ui/datanavigator.ui:74 msgctxt "datanavigator|modelsadd" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. QMNcJ #: svx/uiconfig/ui/datanavigator.ui:78 @@ -14085,7 +14088,7 @@ #: svx/uiconfig/ui/datanavigator.ui:87 msgctxt "datanavigator|modelsedit" msgid "_Edit..." -msgstr "_Rediger ..." +msgstr "Rediger ..." #. kPjSf #: svx/uiconfig/ui/datanavigator.ui:91 @@ -14097,7 +14100,7 @@ #: svx/uiconfig/ui/datanavigator.ui:100 msgctxt "datanavigator|modelsremove" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. RWG4G #: svx/uiconfig/ui/datanavigator.ui:104 @@ -14115,7 +14118,7 @@ #: svx/uiconfig/ui/datanavigator.ui:148 msgctxt "datanavigator|modelsbutton" msgid "_Models" -msgstr "_Modeller" +msgstr "Modeller" #. VnGCB #: svx/uiconfig/ui/datanavigator.ui:162 @@ -14253,7 +14256,7 @@ #: svx/uiconfig/ui/deleteheaderdialog.ui:15 msgctxt "deleteheaderdialog|DeleteHeaderDialog" msgid "All contents of the header will be deleted and can not be restored." -msgstr "Alt innholdet i toppteksten blir slettet. Slettinga kan ikke angres." +msgstr "Alt innholdet i toppteksten blir slettet. Slettingen kan ikke angres." #. MAb2C #: svx/uiconfig/ui/depthwindow.ui:137 @@ -14295,37 +14298,37 @@ #: svx/uiconfig/ui/docking3deffects.ui:323 msgctxt "docking3deffects|angleft" msgid "_Rotation angle" -msgstr "_Rotasjonsvinkel" +msgstr "Rotasjonsvinkel" #. 2YAH9 #: svx/uiconfig/ui/docking3deffects.ui:337 msgctxt "docking3deffects|depthft" msgid "_Depth" -msgstr "_Dybde" +msgstr "Dybde" #. Mk8WM #: svx/uiconfig/ui/docking3deffects.ui:355 msgctxt "docking3deffects|extended_tip|diagonal" msgid "Enter the amount by which you want to round the corners of the selected 3D object." -msgstr "" +msgstr "Angi verdien du vil runde hjørnene på det valgte 3D-objektet med." #. W4Agm #: svx/uiconfig/ui/docking3deffects.ui:373 msgctxt "docking3deffects|extended_tip|scaleddepth" msgid "Enter the amount by which to increase or decrease the area of the front side of the selected 3D object." -msgstr "" +msgstr "Angi hvor mye du vil øke eller redusere området på forsiden av det valgte 3D-objektet." #. zHDZb #: svx/uiconfig/ui/docking3deffects.ui:392 msgctxt "docking3deffects|extended_tip|angle" msgid "Enter the angle in degrees to rotate the selected 3D rotation object." -msgstr "" +msgstr "Angi vinkelen i grader for å rotere det valgte 3D-rotasjonsobjektet." #. 8x6QY #: svx/uiconfig/ui/docking3deffects.ui:411 msgctxt "docking3deffects|extended_tip|depth" msgid "Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects." -msgstr "" +msgstr "Angi ekstruderingsdybden for det valgte 3D-objektet. Dette alternativet er ikke gyldig for 3D-rotasjonsobjekter." #. LKo3e #: svx/uiconfig/ui/docking3deffects.ui:428 @@ -14337,25 +14340,25 @@ #: svx/uiconfig/ui/docking3deffects.ui:463 msgctxt "docking3deffects|label6" msgid "_Horizontal" -msgstr "_Vannrett" +msgstr "Horisontalt" #. 9HFzC #: svx/uiconfig/ui/docking3deffects.ui:477 msgctxt "docking3deffects|label7" msgid "_Vertical" -msgstr "_Loddrett" +msgstr "Vertikal" #. eECGL #: svx/uiconfig/ui/docking3deffects.ui:496 msgctxt "docking3deffects|extended_tip|veri" msgid "Enter the number of vertical segments to use in the selected 3D rotation object" -msgstr "" +msgstr "Angi antall vertikale segmenter som skal brukes i det valgte 3D-rotasjonsobjektet" #. zDoUt #: svx/uiconfig/ui/docking3deffects.ui:514 msgctxt "docking3deffects|extended_tip|hori" msgid "Enter the number of horizontal segments to use in the selected 3D rotation object." -msgstr "" +msgstr "Angi antall horisontale segmenter som skal brukes i det valgte 3D-rotasjonsobjektet." #. G67Pd #: svx/uiconfig/ui/docking3deffects.ui:531 @@ -14373,7 +14376,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:591 msgctxt "docking3deffects|extended_tip|objspecific" msgid "Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface." -msgstr "" +msgstr "Gjengir 3D-overflaten i henhold til objektets form. For eksempel er en sirkulær form gjengitt med en sfærisk overflate." #. Fc9DB #: svx/uiconfig/ui/docking3deffects.ui:605 @@ -14385,7 +14388,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:610 msgctxt "docking3deffects|extended_tip|flat" msgid "Renders the 3D surface as polygons." -msgstr "" +msgstr "Gjengir 3D-overflaten som polygoner." #. aLmTz #: svx/uiconfig/ui/docking3deffects.ui:624 @@ -14397,7 +14400,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:629 msgctxt "docking3deffects|extended_tip|spherical" msgid "Renders a smooth 3D surface." -msgstr "" +msgstr "Gjengir en glatt 3D-overflate." #. a9hYr #: svx/uiconfig/ui/docking3deffects.ui:643 @@ -14409,7 +14412,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:648 msgctxt "docking3deffects|extended_tip|invertnormals" msgid "Inverts the light source." -msgstr "" +msgstr "Inverterer lyskilden." #. kBScz #: svx/uiconfig/ui/docking3deffects.ui:662 @@ -14421,7 +14424,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:667 msgctxt "docking3deffects|extended_tip|doublesidedillum" msgid "Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the Invert Normals button." -msgstr "" +msgstr "Opplyser gjenstanden fra utsiden og innsiden. For å bruke en omgivende lyskilde, klikk på denne knappen, og klikk deretter på knappen Inverter normal." #. Jq33F #: svx/uiconfig/ui/docking3deffects.ui:681 @@ -14433,7 +14436,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:686 msgctxt "docking3deffects|extended_tip|doublesided" msgid "Closes the shape of a 3D object that was created by extruding a freeform line (Convert - To 3D)." -msgstr "" +msgstr "Lukker formen på et 3D-objekt som ble opprettet ved å ekstrudere en friformlinje (Konverter til 3D)." #. 2xzfy #: svx/uiconfig/ui/docking3deffects.ui:712 @@ -14451,7 +14454,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:749 msgctxt "docking3deffects|extended_tip|to3d" msgid "Use this icon to convert a selected 2D object to a 3D object." -msgstr "" +msgstr "Bruk dette ikonet til å konvertere et valgt 2D-objekt til et 3D-objekt." #. v5fdY #: svx/uiconfig/ui/docking3deffects.ui:763 @@ -14463,7 +14466,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:767 msgctxt "docking3deffects|extended_tip|tolathe" msgid "Click here to convert a selected 2D object to a 3D rotation object." -msgstr "" +msgstr "Bruk dette ikonet til å konvertere et valgt 2D-objekt til et 3D-rotasjonsobjekt." #. Tk7Vb #: svx/uiconfig/ui/docking3deffects.ui:781 @@ -14493,7 +14496,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:950 msgctxt "docking3deffects|label8" msgid "_Mode" -msgstr "_Modus" +msgstr "Modus" #. BW2hR #: svx/uiconfig/ui/docking3deffects.ui:965 @@ -14517,7 +14520,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:971 msgctxt "docking3deffects|extended_tip|mode" msgid "Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power." -msgstr "" +msgstr "Velg skyggemetoden du vil bruke. Flat skyggelegging tildeler en enkelt farge til en enkelt polygon på overflaten av objektet. Gouraud skyggelegging blander farger over polygonene. Phong-skyggelegging er gjennomsnittlig av fargen på hver piksel basert på pikslene som omgir den, og krever mest prosessorkraft." #. fEdS2 #: svx/uiconfig/ui/docking3deffects.ui:988 @@ -14529,7 +14532,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1028 msgctxt "docking3deffects|extended_tip|slant" msgid "Enter an angle from 0 to 90 degrees for casting the shadow." -msgstr "" +msgstr "Angi en vinkel fra 0 til 90 grader for å kaste skyggen." #. 4yMr6 #: svx/uiconfig/ui/docking3deffects.ui:1047 @@ -14541,7 +14544,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1051 msgctxt "docking3deffects|extended_tip|shadow" msgid "Adds or removes a shadow from the selected 3D object." -msgstr "" +msgstr "Legger til eller fjerner en skygge fra det valgte 3D-objektet." #. sT4FD #: svx/uiconfig/ui/docking3deffects.ui:1066 @@ -14559,25 +14562,25 @@ #: svx/uiconfig/ui/docking3deffects.ui:1132 msgctxt "docking3deffects|extended_tip|focal" msgid "Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens." -msgstr "" +msgstr "Angi brennvidden til kameraet, der en liten verdi tilsvarer et \"fisheye\" -objektiv, og en stor verdi for et teleobjektiv." #. QDWn9 #: svx/uiconfig/ui/docking3deffects.ui:1150 msgctxt "docking3deffects|extended_tip|distance" msgid "Enter the distance to leave between the camera and the center of the selected object." -msgstr "" +msgstr "Angi avstanden mellom kameraet og midten av det valgte objektet." #. MHwmD #: svx/uiconfig/ui/docking3deffects.ui:1163 msgctxt "docking3deffects|label15" msgid "_Focal length" -msgstr "_Brennvidde" +msgstr "Brennvidde" #. sqNyn #: svx/uiconfig/ui/docking3deffects.ui:1177 msgctxt "docking3deffects|label14" msgid "_Distance" -msgstr "_Distanse" +msgstr "Distanse" #. xVYME #: svx/uiconfig/ui/docking3deffects.ui:1195 @@ -14589,7 +14592,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1231 msgctxt "docking3deffects|label17" msgid "_Light source" -msgstr "_Lyskilde" +msgstr "Lyskilde" #. DNnED #: svx/uiconfig/ui/docking3deffects.ui:1255 @@ -14619,7 +14622,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1310 msgctxt "docking3deffects|label18" msgid "_Ambient light" -msgstr "_Bakgrunnslys" +msgstr "Bakgrunnslys" #. m9fpD #: svx/uiconfig/ui/docking3deffects.ui:1332 @@ -14631,7 +14634,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1339 msgctxt "docking3deffects|extended_tip|light1" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. 6VQpA #: svx/uiconfig/ui/docking3deffects.ui:1353 @@ -14643,7 +14646,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1360 msgctxt "docking3deffects|extended_tip|light2" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. H6ApW #: svx/uiconfig/ui/docking3deffects.ui:1374 @@ -14655,7 +14658,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1381 msgctxt "docking3deffects|extended_tip|light3" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. bFsp9 #: svx/uiconfig/ui/docking3deffects.ui:1395 @@ -14667,7 +14670,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1402 msgctxt "docking3deffects|extended_tip|light4" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. umqpv #: svx/uiconfig/ui/docking3deffects.ui:1416 @@ -14679,7 +14682,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1423 msgctxt "docking3deffects|extended_tip|light5" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. EJ5pS #: svx/uiconfig/ui/docking3deffects.ui:1437 @@ -14691,7 +14694,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1444 msgctxt "docking3deffects|extended_tip|light6" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. RxBpE #: svx/uiconfig/ui/docking3deffects.ui:1458 @@ -14703,7 +14706,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1465 msgctxt "docking3deffects|extended_tip|light7" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. BrqqJ #: svx/uiconfig/ui/docking3deffects.ui:1479 @@ -14715,7 +14718,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1486 msgctxt "docking3deffects|extended_tip|light8" msgid "Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the Ambient light box." -msgstr "" +msgstr "Klikk to ganger for å slå på lyskilden, og velg deretter en farge for lyset fra listen. Hvis du vil, kan du også stille inn fargen på det omgivende lyset ved å velge en farge fra Ambient lys-boksen." #. FN3e6 #: svx/uiconfig/ui/docking3deffects.ui:1511 @@ -14727,7 +14730,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1521 msgctxt "docking3deffects|extended_tip|lightcolor1" msgid "Select a color for the current light source." -msgstr "" +msgstr "Velg en farge for gjeldende lyskilde." #. EBVTG #: svx/uiconfig/ui/docking3deffects.ui:1535 @@ -14781,31 +14784,31 @@ #: svx/uiconfig/ui/docking3deffects.ui:1719 msgctxt "docking3deffects|label20" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. txLj4 #: svx/uiconfig/ui/docking3deffects.ui:1736 msgctxt "docking3deffects|label22" msgid "_Mode" -msgstr "_Modus" +msgstr "Modus" #. pPQLp #: svx/uiconfig/ui/docking3deffects.ui:1754 msgctxt "docking3deffects|label23" msgid "_Projection X" -msgstr "_Projeksjon X" +msgstr "Prosjeksjon X" #. xcs3h #: svx/uiconfig/ui/docking3deffects.ui:1772 msgctxt "docking3deffects|label24" msgid "P_rojection Y" -msgstr "Projeksjon Y" +msgstr "Prosjeksjon Y" #. bxSBA #: svx/uiconfig/ui/docking3deffects.ui:1790 msgctxt "docking3deffects|label25" msgid "_Filtering" -msgstr "_Filtrering" +msgstr "Filtrering" #. Gq2zg #: svx/uiconfig/ui/docking3deffects.ui:1807 @@ -14817,7 +14820,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1815 msgctxt "docking3deffects|extended_tip|textype" msgid "Converts the texture to black and white." -msgstr "" +msgstr "Konverterer teksturen til svart-hvitt." #. rfdVf #: svx/uiconfig/ui/docking3deffects.ui:1829 @@ -14829,7 +14832,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1837 msgctxt "docking3deffects|extended_tip|texcolor" msgid "Converts the texture to color." -msgstr "" +msgstr "Konverterer teksturen til farge." #. aqP2z #: svx/uiconfig/ui/docking3deffects.ui:1851 @@ -14841,7 +14844,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1859 msgctxt "docking3deffects|extended_tip|texreplace" msgid "Applies the texture without shading." -msgstr "" +msgstr "Bruker teksturen uten skyggelegging." #. HCKdG #: svx/uiconfig/ui/docking3deffects.ui:1873 @@ -14853,7 +14856,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1881 msgctxt "docking3deffects|extended_tip|texmodulate" msgid "Applies the texture with shading. To define the shading options for the texture, click the Shading button in this dialog." -msgstr "" +msgstr "Bruker tekstur med skyggelegging. For å definere skyggealternativene for teksturen, klikk på Skyggelegging-knappen i denne dialogen." #. ycQqQ #: svx/uiconfig/ui/docking3deffects.ui:1895 @@ -14871,7 +14874,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1921 msgctxt "docking3deffects|extended_tip|texobjx" msgid "Automatically adjusts the texture based on the shape and size of the object." -msgstr "" +msgstr "Justerer teksturen automatisk basert på formen og størrelsen på objektet." #. iTKyD #: svx/uiconfig/ui/docking3deffects.ui:1935 @@ -14883,7 +14886,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1943 msgctxt "docking3deffects|extended_tip|texparallelx" msgid "Applies the texture parallel to the horizontal axis." -msgstr "" +msgstr "Bruker tekstur parallelt med den horisontale aksen." #. MhgUE #: svx/uiconfig/ui/docking3deffects.ui:1957 @@ -14895,7 +14898,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1966 msgctxt "docking3deffects|extended_tip|texcirclex" msgid "Wraps the horizontal axis of the texture pattern around a sphere." -msgstr "" +msgstr "Bryter den horisontale aksen til teksturmønsteret rundt en kule." #. E9Gy6 #: svx/uiconfig/ui/docking3deffects.ui:1980 @@ -14907,7 +14910,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:1988 msgctxt "docking3deffects|extended_tip|texobjy" msgid "Automatically adjusts the texture based on the shape and size of the object." -msgstr "" +msgstr "Justerer teksturen automatisk basert på formen og størrelsen på objektet." #. 5B84a #: svx/uiconfig/ui/docking3deffects.ui:2002 @@ -14919,7 +14922,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2010 msgctxt "docking3deffects|extended_tip|texparallely" msgid "Applies the texture parallel to the vertical axis." -msgstr "" +msgstr "Bruker tekstur parallelt med den vertikale aksen." #. h5iQh #: svx/uiconfig/ui/docking3deffects.ui:2024 @@ -14931,7 +14934,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2032 msgctxt "docking3deffects|extended_tip|texcircley" msgid "Wraps the vertical axis of the texture pattern around a sphere." -msgstr "" +msgstr "Bryter den vertikale aksen til teksturmønsteret rundt en kule." #. cKvPt #: svx/uiconfig/ui/docking3deffects.ui:2046 @@ -14943,7 +14946,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2054 msgctxt "docking3deffects|extended_tip|texfilter" msgid "Blurs the texture slightly to remove unwanted speckles." -msgstr "" +msgstr "Gjør teksturen uklart for å fjerne uønskede flekker." #. GKiZx #: svx/uiconfig/ui/docking3deffects.ui:2080 @@ -14955,31 +14958,31 @@ #: svx/uiconfig/ui/docking3deffects.ui:2115 msgctxt "docking3deffects|label26" msgid "_Favorites" -msgstr "_Favoritter" +msgstr "Favoritter" #. mNa7V #: svx/uiconfig/ui/docking3deffects.ui:2131 msgctxt "docking3deffects|label27" msgid "_Object color" -msgstr "_Objektfarge" +msgstr "Objektfarge" #. rGGJC #: svx/uiconfig/ui/docking3deffects.ui:2145 msgctxt "docking3deffects|label29" msgid "_Illumination color" -msgstr "_Belysningsfarge" +msgstr "Belysningsfarge" #. UmpFS #: svx/uiconfig/ui/docking3deffects.ui:2170 msgctxt "docking3deffects|extended_tip|objcolor" msgid "Select the color that you want to apply to the object." -msgstr "" +msgstr "Velg fargen du vil bruke på objektet." #. 8ufuo #: svx/uiconfig/ui/docking3deffects.ui:2194 msgctxt "docking3deffects|extended_tip|illumcolor" msgid "Select the color to illuminate the object." -msgstr "" +msgstr "Velg farge for å belyse objektet." #. EeS7C #: svx/uiconfig/ui/docking3deffects.ui:2208 @@ -15021,7 +15024,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2220 msgctxt "docking3deffects|extended_tip|favorites" msgid "Select a predefined color scheme, or select User-defined to define a custom color scheme." -msgstr "" +msgstr "Velg et forhåndsdefinert fargevalg, eller velg Brukerdefinert for å definere et egendefinert fargevalg." #. AndqG #: svx/uiconfig/ui/docking3deffects.ui:2235 @@ -15033,7 +15036,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2239 msgctxt "docking3deffects|extended_tip|colorbutton3" msgid "Select the color to illuminate the object." -msgstr "" +msgstr "Velg farge for å belyse objektet." #. tsEoC #: svx/uiconfig/ui/docking3deffects.ui:2253 @@ -15051,7 +15054,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2304 msgctxt "docking3deffects|label30" msgid "_Color" -msgstr "_Farge" +msgstr "Farge" #. ngqfq #: svx/uiconfig/ui/docking3deffects.ui:2318 @@ -15063,7 +15066,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2343 msgctxt "docking3deffects|extended_tip|speccolor" msgid "Select the color that you want the object to reflect." -msgstr "" +msgstr "Velg fargen du vil at objektet skal gjenspeile." #. 8fdJB #: svx/uiconfig/ui/docking3deffects.ui:2357 @@ -15075,13 +15078,13 @@ #: svx/uiconfig/ui/docking3deffects.ui:2361 msgctxt "docking3deffects|extended_tip|colorbutton5" msgid "Enter the intensity of the specular effect." -msgstr "" +msgstr "Angi intensiteten til refleks effekten." #. tcm3D #: svx/uiconfig/ui/docking3deffects.ui:2378 msgctxt "docking3deffects|extended_tip|intensity" msgid "Enter the intensity of the specular effect." -msgstr "" +msgstr "Angi intensiteten til refleks effekten." #. L8GqV #: svx/uiconfig/ui/docking3deffects.ui:2396 @@ -15111,7 +15114,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2451 msgctxt "docking3deffects|extended_tip|material" msgid "Changes the coloring of the selected 3D object." -msgstr "" +msgstr "Endrer fargen på det valgte 3D-objektet." #. 3Av3h #: svx/uiconfig/ui/docking3deffects.ui:2465 @@ -15123,7 +15126,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2469 msgctxt "docking3deffects|extended_tip|texture" msgid "Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the Gallery, hold down Shift+Ctrl, and then drag an image onto the selected 3D object." -msgstr "" +msgstr "Angir egenskapene til overflatestrukturen for det valgte 3D-objektet. Denne funksjonen er bare tilgjengelig etter at du har påført en overflatestruktur på det valgte objektet. For å raskt bruke en overflatestruktur, åpne Galleri, hold nede Skift + Ctrl, og dra et bilde til det valgte 3D-objektet." #. J4WKj #: svx/uiconfig/ui/docking3deffects.ui:2483 @@ -15135,7 +15138,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2487 msgctxt "docking3deffects|extended_tip|light" msgid "Define the light source for the selected 3D object." -msgstr "" +msgstr "Definer lyskilden for det valgte 3D-objektet." #. ctHgb #: svx/uiconfig/ui/docking3deffects.ui:2501 @@ -15147,7 +15150,7 @@ #: svx/uiconfig/ui/docking3deffects.ui:2505 msgctxt "docking3deffects|extended_tip|representation" msgid "Sets the shading and shadow options for the selected 3D object." -msgstr "" +msgstr "Angir skygge- og skyggealternativene for det valgte 3D-objektet." #. HxxSF #: svx/uiconfig/ui/docking3deffects.ui:2519 @@ -15159,13 +15162,13 @@ #: svx/uiconfig/ui/docking3deffects.ui:2523 msgctxt "docking3deffects|extended_tip|geometry" msgid "Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose Convert - To 3D, or Convert - To 3D Rotation Object." -msgstr "" +msgstr "Justerer formen på det valgte 3D-objektet. Du kan bare endre formen på et 3D-objekt som ble opprettet ved å konvertere et 2D-objekt. For å konvertere et 2D-objekt til 3D, velg objektet, høyreklikk og velg deretter Konverter - til 3D eller Konverter - til 3D-rotasjonsobjekt." #. 4D9WF #: svx/uiconfig/ui/docking3deffects.ui:2540 msgctxt "docking3deffects|extended_tip|Docking3DEffects" msgid "Specifies the properties of 3D object(s) in the current document or converts a 2D object to 3D." -msgstr "" +msgstr "Spesifiserer egenskapene til 3D-objekt (er) i gjeldende dokument eller konverterer et 2D-objekt til 3D." #. dzpTm #: svx/uiconfig/ui/dockingcolorreplace.ui:62 @@ -15196,7 +15199,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:106 msgctxt "dockingcolorreplace|extended_tip|cbx2" msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box." -msgstr "" +msgstr "Merk av i denne avmerkingsboksen for å erstatte gjeldende kildefarge med fargen du angir i Erstatt med-boksen." #. 8kZuj #. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color. @@ -15209,7 +15212,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:126 msgctxt "dockingcolorreplace|extended_tip|cbx3" msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box." -msgstr "" +msgstr "Merk av i denne avmerkingsboksen for å erstatte gjeldende kildefarge med fargen du angir i Erstatt med-boksen." #. 3asCq #. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color. @@ -15222,7 +15225,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:146 msgctxt "dockingcolorreplace|extended_tip|cbx4" msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box." -msgstr "" +msgstr "Merk av i denne avmerkingsboksen for å erstatte gjeldende kildefarge med fargen du angir i Erstatt med-boksen." #. 5MXBc #. This string is used by the eyedropper dialog to denote a color in an image that will be replaced by another color. @@ -15235,7 +15238,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:166 msgctxt "dockingcolorreplace|extended_tip|cbx1" msgid "Select this checkbox to replace the current Source color with the color that you specify in the Replace with box." -msgstr "" +msgstr "Merk av i denne avmerkingsboksen for å erstatte gjeldende kildefarge med fargen du angir i Erstatt med-boksen." #. myTap #: svx/uiconfig/ui/dockingcolorreplace.ui:177 @@ -15247,7 +15250,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:189 msgctxt "dockingcolorreplace|extended_tip|cbx5" msgid "Replaces transparent areas in the current image with the color that you select." -msgstr "" +msgstr "Erstatter gjennomsiktige områder i det gjeldende bildet med fargen du velger." #. ebshb #: svx/uiconfig/ui/dockingcolorreplace.ui:207 @@ -15259,7 +15262,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:208 msgctxt "dockingcolorreplace|extended_tip|tol1" msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value." -msgstr "" +msgstr "Angi toleransen for å erstatte en kildefarge i kildebildet. For å erstatte farger som ligner på fargen du valgte, skriv inn en lav verdi. For å erstatte et større utvalg av farger, skriv inn en høyere verdi." #. dCyn7 #: svx/uiconfig/ui/dockingcolorreplace.ui:227 @@ -15271,7 +15274,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:228 msgctxt "dockingcolorreplace|extended_tip|tol2" msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value." -msgstr "" +msgstr "Angi toleransen for å erstatte en kildefarge i kildebildet. For å erstatte farger som ligner på fargen du valgte, skriv inn en lav verdi. For å erstatte et større utvalg av farger, skriv inn en høyere verdi." #. bUkAc #: svx/uiconfig/ui/dockingcolorreplace.ui:247 @@ -15283,7 +15286,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:248 msgctxt "dockingcolorreplace|extended_tip|tol3" msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value." -msgstr "" +msgstr "Angi toleransen for å erstatte en kildefarge i kildebildet. For å erstatte farger som ligner på fargen du valgte, skriv inn en lav verdi. For å erstatte et større utvalg av farger, skriv inn en høyere verdi." #. Wp3Q3 #: svx/uiconfig/ui/dockingcolorreplace.ui:267 @@ -15295,7 +15298,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:268 msgctxt "dockingcolorreplace|extended_tip|tol4" msgid "Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value." -msgstr "" +msgstr "Angi toleransen for å erstatte en kildefarge i kildebildet. For å erstatte farger som ligner på fargen du valgte, skriv inn en lav verdi. For å erstatte et større utvalg av farger, skriv inn en høyere verdi." #. CTGcU #: svx/uiconfig/ui/dockingcolorreplace.ui:291 @@ -15307,7 +15310,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:292 msgctxt "dockingcolorreplace|extended_tip|color1" msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Viser tilgjengelige erstatningsfarger. For å endre den nåværende fargelisten, fjern markeringen av bildet, velg Format - Område, og klikk deretter kategorien Farger." #. AiWPA #: svx/uiconfig/ui/dockingcolorreplace.ui:315 @@ -15319,7 +15322,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:316 msgctxt "dockingcolorreplace|extended_tip|color2" msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Viser tilgjengelige erstatningsfarger. For å endre den nåværende fargelisten, fjern markeringen av bildet, velg Format - Område, og klikk deretter kategorien Farger." #. 99EMs #: svx/uiconfig/ui/dockingcolorreplace.ui:339 @@ -15331,7 +15334,7 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:340 msgctxt "dockingcolorreplace|extended_tip|color3" msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Viser tilgjengelige erstatningsfarger. For å endre den nåværende fargelisten, fjern markeringen av bildet, velg Format - Område, og klikk deretter kategorien Farger." #. ECDky #: svx/uiconfig/ui/dockingcolorreplace.ui:363 @@ -15343,13 +15346,13 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:364 msgctxt "dockingcolorreplace|extended_tip|color4" msgid "Lists the available replacement colors. To modify the current list of colors, deselect the image, choose Format - Area, and then click the Colors tab." -msgstr "" +msgstr "Viser tilgjengelige erstatningsfarger. For å endre den nåværende fargelisten, fjern markeringen av bildet, velg Format - Område, og klikk deretter kategorien Farger." #. JaAwK #: svx/uiconfig/ui/dockingcolorreplace.ui:389 msgctxt "dockingcolorreplace|extended_tip|color5" msgid "Select the color to replace the transparent areas in the current image." -msgstr "" +msgstr "Velg fargen for å erstatte de gjennomsiktige områdene i det gjeldende bildet." #. EeBXP #: svx/uiconfig/ui/dockingcolorreplace.ui:458 @@ -15361,13 +15364,13 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:479 msgctxt "dockingcolorreplace|replace" msgid "_Replace" -msgstr "_Erstatt" +msgstr "Erstatt" #. 8uHoS #: svx/uiconfig/ui/dockingcolorreplace.ui:489 msgctxt "dockingcolorreplace|extended_tip|replace" msgid "Replaces the selected source colors in the current image with the colors that you specify in the Replace with boxes." -msgstr "" +msgstr "Erstatter de valgte kildefargene i det gjeldende bildet med fargene du angir i Erstatt med-boksene." #. qFwAs #: svx/uiconfig/ui/dockingcolorreplace.ui:516 @@ -15385,13 +15388,13 @@ #: svx/uiconfig/ui/dockingcolorreplace.ui:565 msgctxt "dockingcolorreplace|extended_tip|toolgrid" msgid "Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected." -msgstr "" +msgstr "Viser fargen i det valgte bildet som ligger direkte til gjeldende posisjon for musepekeren. Denne funksjonen fungerer bare hvis Farge Erstatnings-verktøyet er valgt." #. gbska #: svx/uiconfig/ui/dockingcolorreplace.ui:582 msgctxt "dockingcolorreplace|extended_tip|DockingColorReplace" msgid "Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics." -msgstr "" +msgstr "Åpner dialogboksen Farge erstatter, der du kan erstatte farger i bitmap og metafilgrafikk." #. cXHxL #: svx/uiconfig/ui/dockingfontwork.ui:43 @@ -15403,7 +15406,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:49 msgctxt "dockingfontwork|extended_tip|off" msgid "Removes baseline formatting." -msgstr "" +msgstr "Fjerner formatering av grunnlinjen." #. bEChS #: svx/uiconfig/ui/dockingfontwork.ui:72 @@ -15415,7 +15418,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:78 msgctxt "dockingfontwork|extended_tip|rotate" msgid "Uses the top or the bottom edge of the selected object as the text baseline." -msgstr "" +msgstr "Bruker den øverste eller nederste kanten av det valgte objektet som tekstbaselinje." #. bqAL8 #: svx/uiconfig/ui/dockingfontwork.ui:91 @@ -15427,31 +15430,31 @@ #: svx/uiconfig/ui/dockingfontwork.ui:97 msgctxt "dockingfontwork|extended_tip|upright" msgid "Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters." -msgstr "" +msgstr "Bruker den øverste eller nederste kanten av det valgte objektet som tekstbaselinje og bevarer den opprinnelige vertikale justeringen av de enkelte tegnene." #. dSG2E #: svx/uiconfig/ui/dockingfontwork.ui:110 msgctxt "dockingfontwork|hori|tooltip_text" msgid "Slant Horizontal" -msgstr "Vannrett skråstilling" +msgstr "Horisontal skråstilling" #. HCLXn #: svx/uiconfig/ui/dockingfontwork.ui:116 msgctxt "dockingfontwork|extended_tip|hori" msgid "Horizontally slants the characters in the text object." -msgstr "" +msgstr "Skriver tegnene i tekstobjektet horisontalt." #. XnPrn #: svx/uiconfig/ui/dockingfontwork.ui:129 msgctxt "dockingfontwork|vert|tooltip_text" msgid "Slant Vertical" -msgstr "Skråstill loddrett" +msgstr "Skråstill vertikalt" #. YuPLk #: svx/uiconfig/ui/dockingfontwork.ui:135 msgctxt "dockingfontwork|extended_tip|vert" msgid "Vertically slants the characters in the text object." -msgstr "" +msgstr "Skriver tegnene i tekstobjektet vertikalt." #. AKiRy #: svx/uiconfig/ui/dockingfontwork.ui:159 @@ -15463,7 +15466,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:164 msgctxt "dockingfontwork|extended_tip|orientation" msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text." -msgstr "" +msgstr "Vender teksretningen og vender teksten horisontalt eller vertikal. For å bruke denne kommandoen, må du først bruke en annen grunnlinje på teksten." #. BncCM #: svx/uiconfig/ui/dockingfontwork.ui:187 @@ -15475,7 +15478,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:193 msgctxt "dockingfontwork|extended_tip|left" msgid "Aligns the text to the left end of the text baseline." -msgstr "" +msgstr "Justerer teksten til venstre ende av tekstbaselinjen." #. Gd3Fn #: svx/uiconfig/ui/dockingfontwork.ui:206 @@ -15487,7 +15490,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:212 msgctxt "dockingfontwork|extended_tip|center" msgid "Centers the text on the text baseline." -msgstr "" +msgstr "Sentrerer teksten på grunnlinjen." #. rdSr2 #: svx/uiconfig/ui/dockingfontwork.ui:225 @@ -15499,7 +15502,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:231 msgctxt "dockingfontwork|extended_tip|right" msgid "Aligns the text to the right end of the text baseline." -msgstr "" +msgstr "Justerer teksten til høyre ende av tekstbaselinjen." #. nQTV8 #: svx/uiconfig/ui/dockingfontwork.ui:244 @@ -15511,7 +15514,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:250 msgctxt "dockingfontwork|extended_tip|autosize" msgid "Resizes the text to fit the length of the text baseline." -msgstr "" +msgstr "Endrer størrelsen på teksten slik at den passer til lengden på tekstlinjen." #. YDeQs #: svx/uiconfig/ui/dockingfontwork.ui:288 @@ -15523,7 +15526,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:294 msgctxt "dockingfontwork|extended_tip|distance" msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters." -msgstr "" +msgstr "Angi hvor mye plass du vil ha mellom tekstlinjen og basen til de enkelte tegnene." #. 5Dm35 #: svx/uiconfig/ui/dockingfontwork.ui:332 @@ -15535,7 +15538,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:339 msgctxt "dockingfontwork|extended_tip|indent" msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text." -msgstr "" +msgstr "Angi hvor mye plass det skal være mellom begynnelsen av tekstlinjen og begynnelsen av teksten." #. TG72M #: svx/uiconfig/ui/dockingfontwork.ui:363 @@ -15547,7 +15550,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:368 msgctxt "dockingfontwork|extended_tip|contour" msgid "Shows or hides the text baseline, or the edges of the selected object." -msgstr "" +msgstr "Viser eller skjuler tekstbaselinjen eller kantene til det valgte objektet." #. MA9vQ #: svx/uiconfig/ui/dockingfontwork.ui:381 @@ -15559,7 +15562,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:386 msgctxt "dockingfontwork|extended_tip|textcontour" msgid "Shows or hides the borders of the individual characters in the text." -msgstr "" +msgstr "Viser eller skjuler kantene til de enkelte tegnene i teksten." #. kMFUd #: svx/uiconfig/ui/dockingfontwork.ui:409 @@ -15571,19 +15574,19 @@ #: svx/uiconfig/ui/dockingfontwork.ui:415 msgctxt "dockingfontwork|extended_tip|noshadow" msgid "Removes the shadow effects that you applied to the text." -msgstr "" +msgstr "Fjerner skyggeeffektene du brukte på teksten." #. 5BrEJ #: svx/uiconfig/ui/dockingfontwork.ui:428 msgctxt "dockingfontwork|vertical|tooltip_text" msgid "Vertical" -msgstr "Loddrett" +msgstr "Vertikalt" #. yAtee #: svx/uiconfig/ui/dockingfontwork.ui:434 msgctxt "dockingfontwork|extended_tip|vertical" msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes." -msgstr "" +msgstr "Legger til en skygge i teksten i det valgte objektet. Klikk på denne knappen, og skriv deretter inn dimensjonene til skyggen i Avstand X og Avstand Y-boksene." #. hcSuP #: svx/uiconfig/ui/dockingfontwork.ui:447 @@ -15595,7 +15598,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:453 msgctxt "dockingfontwork|extended_tip|slant" msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes." -msgstr "" +msgstr "Legger til en skrå skygge i teksten i det valgte objektet. Klikk på denne knappen, og skriv deretter inn dimensjonene til skyggen i Avstand X og Avstand Y-boksene." #. fVeQ8 #: svx/uiconfig/ui/dockingfontwork.ui:491 @@ -15607,7 +15610,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:498 msgctxt "dockingfontwork|extended_tip|distancex" msgid "Enter the horizontal distance between the text characters and the edge of the shadow." -msgstr "" +msgstr "Angi den horisontale avstanden mellom teksttegnene og skyggekanten." #. FTYwo #: svx/uiconfig/ui/dockingfontwork.ui:536 @@ -15619,7 +15622,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:543 msgctxt "dockingfontwork|extended_tip|distancey" msgid "Enter the vertical distance between the text characters and the edge of the shadow." -msgstr "" +msgstr "Angi den vertikale avstanden mellom teksttegnene og skyggekanten." #. MDpHx #: svx/uiconfig/ui/dockingfontwork.ui:563 @@ -15631,13 +15634,13 @@ #: svx/uiconfig/ui/dockingfontwork.ui:573 msgctxt "dockingfontwork|extended_tip|color" msgid "Select a color for the text shadow." -msgstr "" +msgstr "Velg en farge for tekstskyggen." #. Eovtw #: svx/uiconfig/ui/dockingfontwork.ui:584 msgctxt "dockingfontwork|extended_tip|DockingFontwork" msgid "Simple tool for putting text along a curve without any fancy effects." -msgstr "" +msgstr "Enkelt verktøy for å sette tekst langs en kurve uten fancy effekter." #. ASETE #: svx/uiconfig/ui/docrecoverybrokendialog.ui:16 @@ -15649,7 +15652,7 @@ #: svx/uiconfig/ui/docrecoverybrokendialog.ui:35 msgctxt "docrecoverybrokendialog|save" msgid "_Save" -msgstr "_Lagre" +msgstr "Lagre" #. 3bPqF #: svx/uiconfig/ui/docrecoverybrokendialog.ui:85 @@ -15661,7 +15664,7 @@ msgstr "" "Den automatiske gjenopprettingsprosessen ble avbrutt.\n" "\n" -"Dokumentene du ser nedenfor vil bli lagret i den viste mappa hvis du trykker «Lagre». Trykk «Avbryt» for å avslutte veiviseren uten å lagre dokumentene." +"Dokumentene du ser nedenfor vil bli lagret i den viste mappen hvis du trykker «Lagre». Trykk «Avbryt» for å avslutte veiviseren uten å lagre dokumentene." #. okHoG #: svx/uiconfig/ui/docrecoverybrokendialog.ui:103 @@ -15673,13 +15676,13 @@ #: svx/uiconfig/ui/docrecoverybrokendialog.ui:159 msgctxt "docrecoverybrokendialog|label4" msgid "_Save to:" -msgstr "_Lagre til:" +msgstr "Lagre til:" #. KPeeG #: svx/uiconfig/ui/docrecoverybrokendialog.ui:192 msgctxt "docrecoverybrokendialog|change" msgid "Chan_ge..." -msgstr "_Endre …" +msgstr "Endre …" #. aotFc #: svx/uiconfig/ui/docrecoveryprogressdialog.ui:8 @@ -15703,13 +15706,13 @@ #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:41 msgctxt "docrecoveryrecoverdialog|cancel" msgid "_Discard" -msgstr "_Forkast" +msgstr "Forkast" #. fEs2G #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:56 msgctxt "docrecoveryrecoverdialog|next" msgid "_Start" -msgstr "_Start" +msgstr "Start" #. DWWCA #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:90 @@ -15763,7 +15766,7 @@ #: svx/uiconfig/ui/extrustiondepthdialog.ui:121 msgctxt "extrustiondepthdialog|label1" msgid "_Value" -msgstr "_Verdi" +msgstr "Verdi" #. ADHDq #: svx/uiconfig/ui/extrustiondepthdialog.ui:138 @@ -15773,7 +15776,6 @@ #. pFxTG #: svx/uiconfig/ui/extrustiondepthdialog.ui:163 -#, fuzzy msgctxt "extrustiondepthdialog|extended_tip|ExtrustionDepthDialog" msgid "Enter an extrusion depth." msgstr "" @@ -15816,73 +15818,73 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:142 msgctxt "findreplacedialog-mobile|label4" msgid "_Find:" -msgstr "" +msgstr "Finn:" #. oNJkY #: svx/uiconfig/ui/findreplacedialog-mobile.ui:196 msgctxt "findreplacedialog-mobile|matchcase" msgid "Ma_tch case" -msgstr "" +msgstr "Sammenlign bokstavstørrelse" #. uiV7G #: svx/uiconfig/ui/findreplacedialog-mobile.ui:212 msgctxt "findreplacedialog-mobile|searchformatted" msgid "For_matted display" -msgstr "" +msgstr "Formatert visning" #. 3KibH #: svx/uiconfig/ui/findreplacedialog-mobile.ui:232 msgctxt "findreplacedialog-mobile|wholewords" msgid "Whole wor_ds only" -msgstr "" +msgstr "Bare hele ord" #. BRbAi #: svx/uiconfig/ui/findreplacedialog-mobile.ui:250 msgctxt "findreplacedialog-mobile|entirecells" msgid "_Entire cells" -msgstr "" +msgstr "Hele celler" #. xFvzF #: svx/uiconfig/ui/findreplacedialog-mobile.ui:268 msgctxt "findreplacedialog-mobile|allsheets" msgid "All _sheets" -msgstr "" +msgstr "Alle arkene" #. 8a3TB #: svx/uiconfig/ui/findreplacedialog-mobile.ui:307 msgctxt "findreplacedialog-mobile|label1" msgid "_Search For" -msgstr "" +msgstr "Søk etter" #. aHAoN #: svx/uiconfig/ui/findreplacedialog-mobile.ui:394 msgctxt "findreplacedialog-mobile|label5" msgid "Re_place:" -msgstr "" +msgstr "Erstatt:" #. PhyMv #: svx/uiconfig/ui/findreplacedialog-mobile.ui:434 msgctxt "findreplacedialog-mobile|label2" msgid "Re_place With" -msgstr "" +msgstr "Erstatt med" #. gi3jL #: svx/uiconfig/ui/findreplacedialog-mobile.ui:460 msgctxt "findreplacedialog-mobile|searchall" msgid "Find _All" -msgstr "" +msgstr "Finn alle" #. xizGS #: svx/uiconfig/ui/findreplacedialog-mobile.ui:474 msgctxt "findreplacedialog-mobile|backsearch" msgid "Find Pre_vious" -msgstr "" +msgstr "Finn forrige" #. Fnoy9 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:488 msgctxt "findreplacedialog-mobile|search" msgid "Find Ne_xt" -msgstr "" +msgstr "Finn neste" #. 4xbpA #: svx/uiconfig/ui/findreplacedialog-mobile.ui:504 @@ -15894,121 +15896,121 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:518 msgctxt "findreplacedialog-mobile|replaceall" msgid "Replace A_ll" -msgstr "" +msgstr "Erstatt alle" #. 8pjvL #: svx/uiconfig/ui/findreplacedialog-mobile.ui:677 msgctxt "findreplacedialog-mobile|selection" msgid "C_urrent selection only" -msgstr "" +msgstr "Kun dette utvalget" #. kXCyp #: svx/uiconfig/ui/findreplacedialog-mobile.ui:692 msgctxt "findreplacedialog-mobile|regexp" msgid "Re_gular expressions" -msgstr "" +msgstr "Regulære uttrykk" #. PHsrD #: svx/uiconfig/ui/findreplacedialog-mobile.ui:714 msgctxt "findreplacedialog-mobile|attributes" msgid "Attribut_es..." -msgstr "" +msgstr "Atributter..." #. GRaeC #: svx/uiconfig/ui/findreplacedialog-mobile.ui:728 msgctxt "findreplacedialog-mobile|format" msgid "For_mat..." -msgstr "" +msgstr "Format..." #. cx7u7 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:742 msgctxt "findreplacedialog-mobile|noformat" msgid "_No Format" -msgstr "" +msgstr "Inget format" #. TnTGs #: svx/uiconfig/ui/findreplacedialog-mobile.ui:763 msgctxt "findreplacedialog-mobile|layout" msgid "Search for st_yles" -msgstr "" +msgstr "Søk etter stiler" #. QZvqy #: svx/uiconfig/ui/findreplacedialog-mobile.ui:778 msgctxt "findreplacedialog-mobile|includediacritics" msgid "Diac_ritic-sensitive" -msgstr "" +msgstr "Diakritisk følsom" #. jgEBu #: svx/uiconfig/ui/findreplacedialog-mobile.ui:793 msgctxt "findreplacedialog-mobile|includekashida" msgid "_Kashida-sensitive" -msgstr "" +msgstr "Kashida-følsom" #. HEtSQ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:808 msgctxt "findreplacedialog-mobile|matchcharwidth" msgid "Match character _width" -msgstr "" +msgstr "Sammenlign bokstavstørrelse med" #. PeENq #: svx/uiconfig/ui/findreplacedialog-mobile.ui:828 msgctxt "findreplacedialog-mobile|similarity" msgid "S_imilarity search" -msgstr "" +msgstr "Likhetssøk" #. BxPGW #: svx/uiconfig/ui/findreplacedialog-mobile.ui:844 msgctxt "findreplacedialog-mobile|similaritybtn" msgid "Similarities..." -msgstr "" +msgstr "Likheter ..." #. z8Uiz #: svx/uiconfig/ui/findreplacedialog-mobile.ui:871 msgctxt "findreplacedialog-mobile|soundslike" msgid "Sounds like (_Japanese)" -msgstr "" +msgstr "Høres ut som (Japansk)" #. e7EkJ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:887 msgctxt "findreplacedialog-mobile|soundslikebtn" msgid "Sounds..." -msgstr "" +msgstr "Høres ut som..." #. ZvWKZ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:913 msgctxt "findreplacedialog-mobile|wildcard" msgid "Wil_dcards" -msgstr "" +msgstr "Jokertegn" #. jCtqG #: svx/uiconfig/ui/findreplacedialog-mobile.ui:929 msgctxt "findreplacedialog-mobile|notes" msgid "_Comments" -msgstr "" +msgstr "Kommentarer" #. CABZs #: svx/uiconfig/ui/findreplacedialog-mobile.ui:951 msgctxt "findreplacedialog-mobile|replace_backwards" msgid "Replace _backwards" -msgstr "" +msgstr "Erstatt bakover" #. EjXBb #: svx/uiconfig/ui/findreplacedialog-mobile.ui:988 msgctxt "findreplacedialog-mobile|searchinlabel" msgid "Search i_n:" -msgstr "" +msgstr "Søk i:" #. vHG2V #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1003 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Formulas" -msgstr "" +msgstr "Formler" #. BC8U6 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1004 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Values" -msgstr "" +msgstr "Verdier" #. BkByZ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1005 @@ -16020,25 +16022,25 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1030 msgctxt "findreplacedialog-mobile|searchdir" msgid "Direction:" -msgstr "" +msgstr "Retning:" #. GPC8q #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1047 msgctxt "findreplacedialog-mobile|rows" msgid "Ro_ws" -msgstr "" +msgstr "Rader" #. xCeTz #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1067 msgctxt "findreplacedialog-mobile|cols" msgid "Colum_ns" -msgstr "" +msgstr "Kolonner" #. fPE4f #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1114 msgctxt "findreplacedialog-mobile|label3" msgid "Other _options" -msgstr "" +msgstr "Øvrige alternativer" #. 2B7FQ #: svx/uiconfig/ui/findreplacedialog.ui:8 @@ -16050,13 +16052,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:112 msgctxt "findreplacedialog|extended_tip|searchterm" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Skriv inn teksten du vil finne, eller velg et tidligere søk fra listen." #. qZujP #: svx/uiconfig/ui/findreplacedialog.ui:128 msgctxt "findreplacedialog|extended_tip|searchlist" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Skriv inn teksten du vil finne, eller velg et tidligere søk fra listen." #. bathy #: svx/uiconfig/ui/findreplacedialog.ui:150 @@ -16074,19 +16076,19 @@ #: svx/uiconfig/ui/findreplacedialog.ui:214 msgctxt "findreplacedialog|extended_tip|matchcase" msgid "Distinguishes between uppercase and lowercase characters." -msgstr "" +msgstr "Skiller mellom store og små bokstaver." #. EP8P3 #: svx/uiconfig/ui/findreplacedialog.ui:226 msgctxt "findreplacedialog|searchformatted" msgid "For_matted display" -msgstr "Formatter visning" +msgstr "Formatert visning" #. vzB7B #: svx/uiconfig/ui/findreplacedialog.ui:235 msgctxt "findreplacedialog|extended_tip|searchformatted" msgid "Includes number formatting characters in the search." -msgstr "" +msgstr "Inkluderer tallformateringstegn i søket." #. eTjvm #: svx/uiconfig/ui/findreplacedialog.ui:251 @@ -16098,7 +16100,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:260 msgctxt "findreplacedialog|extended_tip|wholewords" msgid "Searches for whole words or cells that are identical to the search text." -msgstr "" +msgstr "Søker etter hele ord eller celler som er identiske med søketeksten." #. wfECE #: svx/uiconfig/ui/findreplacedialog.ui:274 @@ -16116,19 +16118,19 @@ #: svx/uiconfig/ui/findreplacedialog.ui:331 msgctxt "findreplacedialog|label1" msgid "Search For" -msgstr "" +msgstr "Søk etter" #. YCdJW #: svx/uiconfig/ui/findreplacedialog.ui:391 msgctxt "findreplacedialog|extended_tip|replaceterm" msgid "Enter the replacement text, or select a recent replacement text or style from the list." -msgstr "Skriv inn en erstatningstekst i kombinasjonsboksen, eller velg et tidligere søk fra lista." +msgstr "Skriv inn en erstatningstekst i kombinasjonsboksen, eller velg et tidligere søk fra listen." #. AB9nr #: svx/uiconfig/ui/findreplacedialog.ui:407 msgctxt "findreplacedialog|extended_tip|replacelist" msgid "Enter the replacement text, or select a recent replacement text or style from the list." -msgstr "Skriv inn en erstatningstekst i kombinasjonsboksen, eller velg et tidligere søk fra lista." +msgstr "Skriv inn en erstatningstekst i kombinasjonsboksen, eller velg et tidligere søk fra listen." #. Dmocx #: svx/uiconfig/ui/findreplacedialog.ui:429 @@ -16152,7 +16154,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:503 msgctxt "findreplacedialog|extended_tip|searchall" msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)." -msgstr "" +msgstr "Finner og velger alle forekomster av teksten eller formatet du søker etter i dokumentet (bare i Writer- og Calc-dokumenter)." #. A3wE5 #: svx/uiconfig/ui/findreplacedialog.ui:515 @@ -16164,7 +16166,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:522 msgctxt "findreplacedialog|extended_tip|backsearch" msgid "Finds and selects the previous occurrence of the text or format that you are searching for in the document." -msgstr "" +msgstr "Finner og velger forrige forekomst av teksten eller formatet du søker etter i dokumentet." #. PQ58E #: svx/uiconfig/ui/findreplacedialog.ui:534 @@ -16176,7 +16178,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:543 msgctxt "findreplacedialog|extended_tip|search" msgid "Finds and selects the next occurrence of the text or format that you are searching for in the document." -msgstr "" +msgstr "Finner og velger forrige forekomst av teksten eller formatet du søker etter i dokumentet." #. ZLDbk #: svx/uiconfig/ui/findreplacedialog.ui:555 @@ -16200,7 +16202,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:581 msgctxt "findreplacedialog|extended_tip|replaceall" msgid "Replaces all of the occurrences of the text or format that you want to replace." -msgstr "" +msgstr "Finner og velger forrige forekomst av teksten eller formatet du vil erstatte." #. gRMJL #: svx/uiconfig/ui/findreplacedialog.ui:733 @@ -16212,7 +16214,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:742 msgctxt "findreplacedialog|extended_tip|selection" msgid "Searches only the selected text or cells." -msgstr "" +msgstr "Søker bare den valgte teksten eller cellene." #. CwXAb #: svx/uiconfig/ui/findreplacedialog.ui:753 @@ -16236,7 +16238,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:796 msgctxt "findreplacedialog|extended_tip|format" msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics." -msgstr "" +msgstr "Finner spesifikke tekstformateringsfunksjoner, for eksempel fonttyper, fonteffekter og tekstflytegenskaper." #. C4Co9 #: svx/uiconfig/ui/findreplacedialog.ui:808 @@ -16254,13 +16256,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:838 msgctxt "findreplacedialog|extended_tip|layout" msgid "Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list." -msgstr "" +msgstr "Søker etter tekst formatert med stilen du angir. Merk av i denne avkrysningsboksen, og velg deretter en stil fra Finn-listen. For å spesifisere en erstatningsstil velger du en stil fra Erstatt-listen." #. wjEUp #: svx/uiconfig/ui/findreplacedialog.ui:849 msgctxt "findreplacedialog|includediacritics" msgid "Diacritic-_sensitive" -msgstr "" +msgstr "Diakritisk følsom" #. J8Zou #: svx/uiconfig/ui/findreplacedialog.ui:864 @@ -16290,7 +16292,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:913 msgctxt "findreplacedialog|extended_tip|similarity" msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options." -msgstr "" +msgstr "Finn termer som ligner på Finn-teksten. Merk av i denne avmerkingsboksen, og klikk deretter på Likheter-knappen for å definere likhetsalternativene." #. mKiVJ #: svx/uiconfig/ui/findreplacedialog.ui:925 @@ -16338,13 +16340,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1025 msgctxt "findreplacedialog|notes" msgid "Comme_nts" -msgstr "" +msgstr "Kommentarer" #. z68pk #: svx/uiconfig/ui/findreplacedialog.ui:1034 msgctxt "findreplacedialog|extended_tip|notes" msgid "In Writer, you can select to include the comment texts in your searches." -msgstr "" +msgstr "I Writer kan du velge å ta med kommentartekstene i søkene dine." #. hj5vn #: svx/uiconfig/ui/findreplacedialog.ui:1052 @@ -16356,7 +16358,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1061 msgctxt "findreplacedialog|extended_tip|replace_backwards" msgid "Search starts at the current cursor position and goes backwards to the beginning of the file." -msgstr "" +msgstr "Søk starter ved gjeldende markørposisjon og går bakover til begynnelsen av filen." #. t4J9E #: svx/uiconfig/ui/findreplacedialog.ui:1094 @@ -16410,13 +16412,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1227 msgctxt "findreplacedialog|extended_tip|label3" msgid "Shows more or fewer search options. Click this label again to hide the extended search options." -msgstr "" +msgstr "Viser flere eller færre søkealternativer. Klikk på denne etiketten igjen for å skjule de utvidede søkealternativene." #. YpLau #: svx/uiconfig/ui/findreplacedialog.ui:1263 msgctxt "findreplacedialog|extended_tip|FindReplaceDialog" msgid "Finds or replaces text or formats in the current document." -msgstr "" +msgstr "Finner eller erstatter tekst eller formater i det gjeldende dokumentet." #. j63XL #: svx/uiconfig/ui/floatingareastyle.ui:59 @@ -16500,7 +16502,7 @@ #: svx/uiconfig/ui/floatingareastyle.ui:319 msgctxt "floatingareastyle|centery|tooltip_text" msgid "Specify the vertical offset percentage from the center for the gradient shading style. 50% is the vertical center." -msgstr "Angi den vertikale forskyvningprosenten fra sentrum for gradient skyggeleggingsstil. 50% er den vertikale sentrum." +msgstr "Angi den vertikale forskyvningprosenten fra sentrum for gradient skyggeleggingsstil. 50% er det vertikale sentrum." #. GfEGc #: svx/uiconfig/ui/floatingcontour.ui:14 @@ -16656,7 +16658,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:411 msgctxt "floatingcontour|extended_tip|TBI_UNDO" msgid "Reverses the last action." -msgstr "Angrer den siste handlinga du gjorde." +msgstr "Angrer den siste handlingen du gjorde." #. qmc4k #: svx/uiconfig/ui/floatingcontour.ui:425 @@ -16668,7 +16670,7 @@ #: svx/uiconfig/ui/floatingcontour.ui:429 msgctxt "floatingcontour|extended_tip|TBI_REDO" msgid "Reverses the action of the last Undo command." -msgstr "Gjør om den siste handlinga du angret." +msgstr "Gjør om den siste handlingen du angret." #. eBWRW #: svx/uiconfig/ui/floatingcontour.ui:443 @@ -17154,7 +17156,7 @@ #: svx/uiconfig/ui/imapdialog.ui:167 msgctxt "imapdialog|extended_tip|TBI_OPEN" msgid "Loads an existing image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "Laster inn et eksisterende bildekart i filformatet MAP-CERN, MAP-NCSA eller SIP StarView ImageMap." #. FhXsi #: svx/uiconfig/ui/imapdialog.ui:181 @@ -17166,7 +17168,7 @@ #: svx/uiconfig/ui/imapdialog.ui:185 msgctxt "imapdialog|extended_tip|TBI_SAVEAS" msgid "Saves the image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "Laster inn bildekartet i filformatet MAP-CERN, MAP-NCSA eller SIP StarView ImageMap." #. zicE4 #: svx/uiconfig/ui/imapdialog.ui:199 @@ -17196,7 +17198,7 @@ #: svx/uiconfig/ui/imapdialog.ui:233 msgctxt "imapdialog|extended_tip|TBI_RECT" msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Tegner et rektangulært hotspot der du drar inn grafikken. Etterpå kan du angi adresse og tekst for dette, og deretter velge rammen der du vil at URL-adressen skal åpnes." #. CxNuP #: svx/uiconfig/ui/imapdialog.ui:247 @@ -17208,7 +17210,7 @@ #: svx/uiconfig/ui/imapdialog.ui:251 msgctxt "imapdialog|extended_tip|TBI_CIRCLE" msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Tegner et elliptisk hotspot der du drar inn grafikken. Etterpå kan du angi adresse og tekst for denne, og deretter velge rammen der du vil at URL-adressen skal åpnes." #. SGPH5 #: svx/uiconfig/ui/imapdialog.ui:265 @@ -17220,7 +17222,7 @@ #: svx/uiconfig/ui/imapdialog.ui:269 msgctxt "imapdialog|extended_tip|TBI_POLY" msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Tegner et polygonal hotspot i grafikken. Klikk på dette ikonet, dra inn grafikken, og klikk deretter for å definere den ene siden av polygonet. Flytt dit du vil plassere slutten av neste side, og klikk deretter. Gjenta til du har tegnet alle sidene av polygonen. Når du er ferdig, dobbeltklikker du for å lukke polygonet. Etterpå kan du angi adresse og tekst for hotspot, og deretter velge rammen der du vil at URL-adressen skal åpnes." #. zUUCB #: svx/uiconfig/ui/imapdialog.ui:283 @@ -17232,7 +17234,7 @@ #: svx/uiconfig/ui/imapdialog.ui:287 msgctxt "imapdialog|extended_tip|TBI_FREEPOLY" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Tegner et hotspot som er basert på et friform polygon. Klikk på dette ikonet og flytt til dit du vil tegne det. Dra en friformlinje og slipp den for å lukke formen. Etterpå kan du angi adresse og tekst for dette, og deretter velge rammen der du vil at URL-adressen skal åpnes." #. kG6AK #: svx/uiconfig/ui/imapdialog.ui:301 @@ -17304,7 +17306,7 @@ #: svx/uiconfig/ui/imapdialog.ui:403 msgctxt "imapdialog|extended_tip|TBI_ACTIVE" msgid "Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent." -msgstr "Skrur av eller på lenkinga av de valgte lenkeområdene. Et inaktivt lenkeområde er gjennomsiktig." +msgstr "Skrur av eller på lenkingen av de valgte lenkeområdene. Et inaktivt lenkeområde er gjennomsiktig." #. AjSFD #: svx/uiconfig/ui/imapdialog.ui:417 @@ -17346,7 +17348,7 @@ #: svx/uiconfig/ui/imapdialog.ui:507 msgctxt "imapdialog|extended_tip|text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser." -msgstr "" +msgstr "Skriv inn teksten du vil vise når musen hviler på sone i en nettleser." #. 5BPAy #: svx/uiconfig/ui/imapdialog.ui:545 @@ -17358,7 +17360,7 @@ #: svx/uiconfig/ui/imapdialog.ui:568 msgctxt "imapdialog|extended_tip|url" msgid "Enter the URL for the file that you want to open when you click the selected hotspot." -msgstr "" +msgstr "Skriv inn URL-adressen til filen du vil åpne når du klikker på valgt hotspot." #. CnDFH #: svx/uiconfig/ui/imapdialog.ui:608 @@ -17370,7 +17372,7 @@ #: svx/uiconfig/ui/imapdialog.ui:639 msgctxt "imapdialog|extended_tip|ImapDialog" msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots." -msgstr "" +msgstr "Lar deg legge til URL-er til bestemte områder, kalt hotspots, på en grafikk eller en gruppe med grafikk. Et bildekart er en gruppe på ett eller flere hotspots." #. aHyrG #: svx/uiconfig/ui/imapmenu.ui:12 @@ -17472,13 +17474,13 @@ #: svx/uiconfig/ui/linkwarndialog.ui:13 msgctxt "linkwarndialog|LinkWarnDialog" msgid "The file %FILENAME will not be stored along with your document, but only referenced as a link." -msgstr "%FILENAME ble ikke lagret sammen med dokumentet, men som en lenke til fila." +msgstr "%FILENAME ble ikke lagret sammen med dokumentet, men som en lenke til filen." #. FunGw #: svx/uiconfig/ui/linkwarndialog.ui:14 msgctxt "linkwarndialog|LinkWarnDialog" msgid "This is dangerous if you move and/or rename the files. Do you want to embed the graphic instead?" -msgstr "Dette er risikabelt dersom du flytter og/eller gir fila et nytt navn. Vil du heller bygge inn grafikken?" +msgstr "Dette er risikabelt dersom du flytter og/eller gir filen et nytt navn. Vil du heller bygge inn grafikken?" #. zQ2fY #: svx/uiconfig/ui/linkwarndialog.ui:25 @@ -17532,7 +17534,7 @@ #: svx/uiconfig/ui/namespacedialog.ui:124 msgctxt "namespacedialog|extended_tip|add" msgid "Adds a new namespace to the list." -msgstr "Legg til et nytt navnerom i lista." +msgstr "Legg til et nytt navnerom i listen." #. PQJdj #: svx/uiconfig/ui/namespacedialog.ui:136 @@ -17652,13 +17654,13 @@ #: svx/uiconfig/ui/optgridpage.ui:203 msgctxt "optgridpage|flddrawx" msgid "H_orizontal:" -msgstr "Vannrett:" +msgstr "Horisontalt:" #. 63XA8 #: svx/uiconfig/ui/optgridpage.ui:217 msgctxt "optgridpage|flddrawy" msgid "_Vertical:" -msgstr "Loddrett:" +msgstr "Vertikalt:" #. BE8cX #: svx/uiconfig/ui/optgridpage.ui:229 @@ -17694,7 +17696,7 @@ #: svx/uiconfig/ui/optgridpage.ui:349 msgctxt "extended_tip|numflddivisiony" msgid "Specify the number of intermediate spaces between grid points on the Y-axis." -msgstr "Angi antall mellomrom mellom gridpunkter på Y-aksen." +msgstr "Angi antall mellomrom mellom rutepunkter på Y-aksen." #. hGSLw #: svx/uiconfig/ui/optgridpage.ui:362 @@ -17706,13 +17708,13 @@ #: svx/uiconfig/ui/optgridpage.ui:380 msgctxt "optgridpage|divisionx" msgid "Horizont_al:" -msgstr "Vannrett:" +msgstr "Horisontalt:" #. EXXsP #: svx/uiconfig/ui/optgridpage.ui:394 msgctxt "optgridpage|divisiony" msgid "V_ertical:" -msgstr "Loddrett:" +msgstr "Vertikalt:" #. DnrET #: svx/uiconfig/ui/optgridpage.ui:412 @@ -17730,7 +17732,7 @@ #: svx/uiconfig/ui/optgridpage.ui:467 msgctxt "extended_tip|snaphelplines" msgid "Snaps the edge of a dragged object to the nearest snap line when you release the mouse." -msgstr "" +msgstr "Fester kanten på et flyttet objekt til nærmeste festelinje når du slipper musen." #. YkLQN #: svx/uiconfig/ui/optgridpage.ui:478 @@ -17742,7 +17744,7 @@ #: svx/uiconfig/ui/optgridpage.ui:487 msgctxt "extended_tip|snapborder" msgid "Specifies whether to align the contour of the graphic object to the nearest page margin." -msgstr "" +msgstr "Spesifiserer om konturen til det grafiske objektet skal justeres til nærmeste sidemargin." #. GhDiX #: svx/uiconfig/ui/optgridpage.ui:498 @@ -17754,7 +17756,7 @@ #: svx/uiconfig/ui/optgridpage.ui:507 msgctxt "extended_tip|snapframe" msgid "Specifies whether to align the contour of the graphic object to the border of the nearest graphic object." -msgstr "" +msgstr "Spesifiserer om konturen til det grafiske objektet skal justeres til kanten av det nærmeste grafiske objektet." #. akbks #: svx/uiconfig/ui/optgridpage.ui:518 @@ -17766,13 +17768,13 @@ #: svx/uiconfig/ui/optgridpage.ui:527 msgctxt "extended_tip|snappoints" msgid "Specifies whether to align the contour of the graphic object to the points of the nearest graphic object." -msgstr "" +msgstr "Spesifiserer om konturen til det grafiske objektet skal justeres til kanten av det nærmeste grafiske objektet." #. rY7Uu #: svx/uiconfig/ui/optgridpage.ui:551 msgctxt "extended_tip|mtrfldsnaparea" msgid "Defines the snap distance between the mouse pointer and the object contour. %PRODUCTNAME Impress snaps to a snap point if the mouse pointer is nearer than the distance selected in the Snap range control." -msgstr "" +msgstr "Definerer festeavstanden mellom musepekeren og objektkonturen. % PRODUKTNAVN Trykk på feste til et festepunkt hvis musepekeren er nærmere den avstanden som er valgt i Feste-rekkefølgekontrollen." #. FekAR #: svx/uiconfig/ui/optgridpage.ui:564 @@ -17796,7 +17798,7 @@ #: svx/uiconfig/ui/optgridpage.ui:632 msgctxt "extended_tip|ortho" msgid "Specifies that graphic objects are restricted vertically, horizontally or diagonally (45°) when creating or moving them." -msgstr "" +msgstr "Spesifiserer at grafiske objekter er begrenset vertikalt, horisontalt eller diagonalt (45 °) når du lager eller flytter dem." #. SK5Pc #: svx/uiconfig/ui/optgridpage.ui:643 @@ -17808,13 +17810,13 @@ #: svx/uiconfig/ui/optgridpage.ui:652 msgctxt "extended_tip|bigortho" msgid "Specifies that a square is created based on the longer side of a rectangle when the Shift key is pressed before you release the mouse button. This also applies to an ellipse (a circle will be created based on the longest diameter of the ellipse). When the Extend edges box is not marked, a square or a circle will be created based on the shorter side or diameter." -msgstr "" +msgstr "Spesifiserer at et kvadrat blir opprettet basert på den lengre siden av et rektangel når du trykker på Skift-tasten før du slipper museknappen. Dette gjelder også en ellips (en sirkel vil bli opprettet basert på ellipsens lengste diameter). Når boksen Utvid kanter ikke er merket, opprettes en firkant eller en sirkel basert på den kortere siden eller diameteren." #. UmDxR #: svx/uiconfig/ui/optgridpage.ui:680 msgctxt "extended_tip|mtrfldangle" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control." -msgstr "" +msgstr "Spesifiserer at grafiske objekter bare kan roteres innenfor rotasjonsvinkelen du valgte i kontrollen når du roterer." #. a6oQ8 #: svx/uiconfig/ui/optgridpage.ui:691 @@ -17826,13 +17828,13 @@ #: svx/uiconfig/ui/optgridpage.ui:703 msgctxt "extended_tip|rotate" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control." -msgstr "" +msgstr "Spesifiserer at grafiske objekter bare kan roteres innenfor rotasjonsvinkelen du valgte i kontrollen når du roterer." #. xEPJC #: svx/uiconfig/ui/optgridpage.ui:722 msgctxt "extended_tip|mtrfldbezangle" msgid "Defines the angle for point reduction." -msgstr "" +msgstr "Definerer vinkelen for punktreduksjon." #. hEA4g #: svx/uiconfig/ui/optgridpage.ui:735 @@ -18214,7 +18216,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:46 msgctxt "redlinefilterpage|extended_tip|date" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. EnyT2 #: svx/uiconfig/ui/redlinefilterpage.ui:57 @@ -18226,7 +18228,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:66 msgctxt "redlinefilterpage|extended_tip|author" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "" +msgstr "Filtrerer endringslisten i henhold til navnet på forfatteren du velger fra listen." #. G36HS #: svx/uiconfig/ui/redlinefilterpage.ui:77 @@ -18238,7 +18240,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:89 msgctxt "redlinefilterpage|extended_tip|comment" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "" +msgstr "Filtrerer kommentarene til endringene i henhold til nøkkelordet (ne) du skriver inn." #. gPhYL #: svx/uiconfig/ui/redlinefilterpage.ui:109 @@ -18250,7 +18252,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:110 msgctxt "redlinefilterpage|extended_tip|commentedit" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "" +msgstr "Filtrerer kommentarene til endringene i henhold til nøkkelordet (ne) du skriver inn." #. 3joBm #: svx/uiconfig/ui/redlinefilterpage.ui:121 @@ -18262,7 +18264,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:130 msgctxt "redlinefilterpage|extended_tip|range" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til celleområdet du angir. For å velge et celleområde i arket ditt, klikk på Sett Referanse knappen (...)." #. fdw75 #: svx/uiconfig/ui/redlinefilterpage.ui:151 @@ -18274,7 +18276,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:152 msgctxt "redlinefilterpage|extended_tip|actionlist" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "" +msgstr "Filtrerer endringslisten i henhold til typen endring du velger i Handling-boksen." #. c4doe #: svx/uiconfig/ui/redlinefilterpage.ui:163 @@ -18286,7 +18288,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:172 msgctxt "redlinefilterpage|extended_tip|action" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "" +msgstr "Filtrerer endringslisten i henhold til typen endring du velger i Handling-boksen." #. r9bBY #: svx/uiconfig/ui/redlinefilterpage.ui:193 @@ -18298,7 +18300,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:194 msgctxt "redlinefilterpage|extended_tip|authorlist" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "" +msgstr "Filtrerer endringslisten i henhold til forfatternavnet du velger fra listen." #. mGrjp #: svx/uiconfig/ui/redlinefilterpage.ui:222 @@ -18310,7 +18312,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:223 msgctxt "redlinefilterpage|extended_tip|rangeedit" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til celleområdet du angir. For å velge et celleområde i arket ditt, klikk på Sett Referanse-knappen (...)." #. CcvJU #: svx/uiconfig/ui/redlinefilterpage.ui:240 @@ -18364,7 +18366,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:281 msgctxt "redlinefilterpage|extended_tip|datecond" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. Z2Wv3 #: svx/uiconfig/ui/redlinefilterpage.ui:304 @@ -18382,7 +18384,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:326 msgctxt "redlinefilterpage|extended_tip|startdate" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. CyQhk #: svx/uiconfig/ui/redlinefilterpage.ui:347 @@ -18394,7 +18396,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:348 msgctxt "redlinefilterpage|extended_tip|starttime" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. TbDDR #: svx/uiconfig/ui/redlinefilterpage.ui:363 @@ -18412,7 +18414,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:384 msgctxt "redlinefilterpage|extended_tip|enddate" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. jbLhY #: svx/uiconfig/ui/redlinefilterpage.ui:405 @@ -18424,7 +18426,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:406 msgctxt "redlinefilterpage|extended_tip|endtime" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. PAFLU #: svx/uiconfig/ui/redlinefilterpage.ui:421 @@ -18436,7 +18438,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:447 msgctxt "redlinefilterpage|extended_tip|RedlineFilterPage" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerer listen over endringer i henhold til dato og klokkeslett du angir." #. p8TCX #: svx/uiconfig/ui/redlineviewpage.ui:69 svx/uiconfig/ui/redlineviewpage.ui:175 @@ -18786,7 +18788,7 @@ #: svx/uiconfig/ui/sidebararea.ui:98 msgctxt "sidebararea|filllabel" msgid "_Fill:" -msgstr "_Fyll:" +msgstr "Fyll:" #. AtBee #: svx/uiconfig/ui/sidebararea.ui:111 @@ -18852,7 +18854,7 @@ #: svx/uiconfig/ui/sidebararea.ui:156 msgctxt "sidebararea|bmpimport" msgid "_Import" -msgstr "_Importer" +msgstr "Importer" #. egzhb #: svx/uiconfig/ui/sidebararea.ui:190 @@ -18906,7 +18908,7 @@ #: svx/uiconfig/ui/sidebararea.ui:304 msgctxt "sidebararea|transparencylabel" msgid "_Transparency:" -msgstr "_Gjennomsiktighet:" +msgstr "Gjennomsiktighet:" #. hrKBN #: svx/uiconfig/ui/sidebararea.ui:317 @@ -18996,7 +18998,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:146 msgctxt "sidebarglow|glow" msgid "Glow" -msgstr "" +msgstr "Glød" #. SABEF #: svx/uiconfig/ui/sidebareffect.ui:182 @@ -19008,7 +19010,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:213 msgctxt "sidebarsoftedge|softedge" msgid "Soft Edge" -msgstr "" +msgstr "Myk kant" #. BEqw7 #: svx/uiconfig/ui/sidebarempty.ui:26 @@ -19044,25 +19046,25 @@ #: svx/uiconfig/ui/sidebargallery.ui:354 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME" msgid "New..." -msgstr "" +msgstr "Ny..." #. RfChe #: svx/uiconfig/ui/sidebargallery.ui:373 msgctxt "sidebargallery|btnMoreGalleries" msgid "Add more galleries via extension" -msgstr "" +msgstr "Legg til flere gallerier via utvidelser" #. BdPh5 #: svx/uiconfig/ui/sidebargraphic.ui:52 msgctxt "sidebargraphic|brightnesslabel" msgid "_Brightness:" -msgstr "_Lysstyrke:" +msgstr "Lysstyrke:" #. X5Qk5 #: svx/uiconfig/ui/sidebargraphic.ui:66 msgctxt "sidebargraphic|setbrightness|tooltip_text" msgid "Specify the luminance of the graphic." -msgstr "Velg luminansen for grafikken." +msgstr "Velg opplysningen for grafikken." #. DQXTc #: svx/uiconfig/ui/sidebargraphic.ui:72 @@ -19074,7 +19076,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:85 msgctxt "sidebargraphic|contrastlabel" msgid "_Contrast:" -msgstr "_Kontrast:" +msgstr "Kontrast:" #. zTZpz #: svx/uiconfig/ui/sidebargraphic.ui:99 @@ -19092,7 +19094,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:118 msgctxt "sidebargraphic|colorlmodelabel" msgid "Color _mode:" -msgstr "Farge_modus:" +msgstr "Fargemodus:" #. Rj5UQ #: svx/uiconfig/ui/sidebargraphic.ui:135 @@ -19104,7 +19106,7 @@ #: svx/uiconfig/ui/sidebargraphic.ui:148 msgctxt "sidebargraphic|transparencylabel" msgid "_Transparency:" -msgstr "_Gjennomsiktighet:" +msgstr "Gjennomsiktighet:" #. YNFDX #: svx/uiconfig/ui/sidebargraphic.ui:162 @@ -19140,7 +19142,7 @@ #: svx/uiconfig/ui/sidebarline.ui:106 msgctxt "sidebarline|widthlabel" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. HokBv #: svx/uiconfig/ui/sidebarline.ui:120 @@ -19152,7 +19154,7 @@ #: svx/uiconfig/ui/sidebarline.ui:149 msgctxt "sidebarline|colorlabel" msgid "_Color:" -msgstr "_Farge:" +msgstr "Farge:" #. oEqwH #: svx/uiconfig/ui/sidebarline.ui:163 @@ -19170,25 +19172,25 @@ #: svx/uiconfig/ui/sidebarline.ui:193 msgctxt "sidebarline|translabel" msgid "_Transparency:" -msgstr "_Gjennomsiktighet:" +msgstr "Gjennomsiktighet:" #. t32c8 #: svx/uiconfig/ui/sidebarline.ui:207 msgctxt "sidebarline|linetransparency|tooltip_text" msgid "Specify the transparency of the line." -msgstr "Angi gjennomsiktigheten for linja." +msgstr "Angi gjennomsiktigheten for linjen." #. kDWvG #: svx/uiconfig/ui/sidebarline.ui:212 msgctxt "sidebarline|linetransparency-atkobject" msgid "Transparency" -msgstr "Lysark" +msgstr "Gjennomsiktighet" #. AZukk #: svx/uiconfig/ui/sidebarline.ui:244 msgctxt "sidebarline|cornerlabel" msgid "_Corner style:" -msgstr "_Hjørnestil:" +msgstr "Hjørnestil:" #. DhDzF #: svx/uiconfig/ui/sidebarline.ui:258 @@ -19230,7 +19232,7 @@ #: svx/uiconfig/ui/sidebarline.ui:281 msgctxt "sidebarline|caplabel" msgid "Ca_p style:" -msgstr "_Linjeslutt:" +msgstr "Linjeslutt:" #. PbDF7 #: svx/uiconfig/ui/sidebarline.ui:295 @@ -19272,19 +19274,19 @@ #: svx/uiconfig/ui/sidebarparagraph.ui:53 msgctxt "sidebarparagraph|horizontalalignment|tooltip_text" msgid "Horizontal Alignment" -msgstr "Vannrett justering" +msgstr "Horisontalt justering" #. 3oBp7 #: svx/uiconfig/ui/sidebarparagraph.ui:150 msgctxt "sidebarparagraph|verticalalignment|tooltip_text" msgid "Vertical Alignment" -msgstr "Loddrett justering" +msgstr "Vertikalt justering" #. XhELc #: svx/uiconfig/ui/sidebarparagraph.ui:213 msgctxt "sidebarparagraph|spacinglabel" msgid "_Spacing:" -msgstr "_Avstand:" +msgstr "Avstand:" #. FUUE6 #: svx/uiconfig/ui/sidebarparagraph.ui:228 @@ -19326,7 +19328,7 @@ #: svx/uiconfig/ui/sidebarparagraph.ui:403 msgctxt "sidebarparagraph|indentlabel" msgid "_Indent:" -msgstr "_Innrykk:" +msgstr "Innrykk:" #. JDD6B #: svx/uiconfig/ui/sidebarparagraph.ui:418 @@ -19410,7 +19412,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:67 msgctxt "sidebarpossize|horizontalpos|tooltip_text" msgid "Enter the value for the horizontal position." -msgstr "Angi verdien for den vannrette posisjonen." +msgstr "Angi verdien for den horisontale posisjonen." #. e3DxA #: svx/uiconfig/ui/sidebarpossize.ui:73 @@ -19428,7 +19430,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:101 msgctxt "sidebarpossize|verticalpos|tooltip_text" msgid "Enter the value for the vertical position." -msgstr "Angi verdien for den loddrette posisjonen." +msgstr "Angi verdien for den vertikale posisjonen." #. EYEMR #: svx/uiconfig/ui/sidebarpossize.ui:106 @@ -19440,7 +19442,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:119 msgctxt "sidebarpossize|widthlabel" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. AfcEf #: svx/uiconfig/ui/sidebarpossize.ui:134 @@ -19458,7 +19460,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:153 msgctxt "sidebarpossize|heightlabel" msgid "H_eight:" -msgstr "_Høyde:" +msgstr "Høyde:" #. 6iopt #: svx/uiconfig/ui/sidebarpossize.ui:168 @@ -19476,13 +19478,13 @@ #: svx/uiconfig/ui/sidebarpossize.ui:186 msgctxt "sidebarpossize|transparencylabel" msgid "Transparency:" -msgstr "" +msgstr "Gjennomsiktighet:" #. nLGDu #: svx/uiconfig/ui/sidebarpossize.ui:196 msgctxt "sidebarpossize|ratio" msgid "_Keep ratio" -msgstr "_Behold størrelsesforholdet" +msgstr "Behold størrelsesforholdet" #. 2ka9i #: svx/uiconfig/ui/sidebarpossize.ui:200 @@ -19507,7 +19509,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:338 msgctxt "sidebarpossize|fliplabel" msgid "_Flip:" -msgstr "_Speilvend:" +msgstr "Speilvend:" #. oBCCy #: svx/uiconfig/ui/sidebarpossize.ui:352 @@ -19537,13 +19539,13 @@ #: svx/uiconfig/ui/sidebarpossize.ui:428 msgctxt "sidebarpossize|flipvertical|tooltip_text" msgid "Flip the selected object vertically." -msgstr "Speilvend det valgte objektet loddrett." +msgstr "Flipp det valgte objektet vertikal." #. sAzF5 #: svx/uiconfig/ui/sidebarpossize.ui:440 msgctxt "sidebarpossize|fliphorizontal|tooltip_text" msgid "Flip the selected object horizontally." -msgstr "Speilvend det valgte objektet vannrett." +msgstr "Speilvend det valgte objektet horisontalt." #. EEFuY #: svx/uiconfig/ui/sidebarpossize.ui:468 @@ -19825,7 +19827,7 @@ #: svx/uiconfig/ui/textunderlinecontrol.ui:204 msgctxt "textunderlinecontrol|moreoptions" msgid "_More Options..." -msgstr "_Flere alternativer" +msgstr "Flere alternativer" #. QWLND #: svx/uiconfig/ui/xformspage.ui:36 @@ -19879,7 +19881,7 @@ #: svx/uiconfig/ui/zoommenu.ui:16 msgctxt "zoommenu|extended_tip|page" msgid "Displays the entire page on your screen." -msgstr "" +msgstr "Viser hele siden på skjermen." #. gZGXQ #: svx/uiconfig/ui/zoommenu.ui:25 @@ -19891,7 +19893,7 @@ #: svx/uiconfig/ui/zoommenu.ui:29 msgctxt "zoommenu|extended_tip|width" msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible." -msgstr "" +msgstr "Viser hele bredden på dokumentsiden. Sidens øvre og nedre kant er kanskje ikke synlig." #. ZQxa5 #: svx/uiconfig/ui/zoommenu.ui:38 @@ -19903,7 +19905,7 @@ #: svx/uiconfig/ui/zoommenu.ui:42 msgctxt "zoommenu|extended_tip|optimal" msgid "Resizes the display to fit the width of the text in the document at the moment the command is started." -msgstr "" +msgstr "Endrer størrelsen på skjermen slik at den passer til bredden på teksten i dokumentet i det øyeblikket kommandoen startes." #. tMYhp #: svx/uiconfig/ui/zoommenu.ui:51 @@ -19927,7 +19929,7 @@ #: svx/uiconfig/ui/zoommenu.ui:71 msgctxt "zoommenu|extended_tip|100" msgid "Displays the document at its actual size." -msgstr "" +msgstr "Viser dokumentet i sin faktiske størrelse." #. DjAKP #: svx/uiconfig/ui/zoommenu.ui:80 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/sw/messages.po libreoffice-7.1.3~rc2/translations/source/nb/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2020-09-09 17:34+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563559958.000000\n" #. v3oJv @@ -68,7 +68,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:24 msgctxt "STR_HEADINGS_NOT_IN_ORDER" msgid "Headings not in order." -msgstr "Overskriftene er ikke i orden." +msgstr "Overskriftene er ikke i rekkefølge." #. Ryz5w #: sw/inc/AccessibilityCheckStrings.hrc:25 @@ -80,31 +80,31 @@ #: sw/inc/AccessibilityCheckStrings.hrc:26 msgctxt "STR_NON_INTERACTIVE_FORMS" msgid "An input form is not interactive." -msgstr "" +msgstr "Et innput-skjema er ikke interaktivt." #. Z6sHT #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_FLOATING_TEXT" msgid "Avoid floating text." -msgstr "" +msgstr "Unngå flytende tekst." #. 77aXx #: sw/inc/AccessibilityCheckStrings.hrc:28 msgctxt "STR_HEADING_IN_TABLE" msgid "Tables must not contain headings." -msgstr "" +msgstr "Tabeller kan ikke inneholde overskrifter." #. LxJKy #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "" +msgstr "Hold overskriftenes nivåer ordnet. Overskriftsnivå %LEVEL_CURRENT% kan ikke settes etter %LEVEL_PREV%." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_FONTWORKS" msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text." -msgstr "" +msgstr "Unngå fontwork-objekter i dokumentene. Forsikre deg om at du bruker den til eksempler eller annen meningsløs tekst." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 @@ -521,7 +521,7 @@ #: sw/inc/error.hrc:53 msgctxt "RID_SW_ERRHDL" msgid "The structure of a linked table cannot be modified." -msgstr "Oppbygninga av en koblet tabell kan ikke endres." +msgstr "Oppbygningen av en koblet tabell kan ikke endres." #. CmsDd #: sw/inc/error.hrc:55 @@ -614,20 +614,20 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "" +msgstr "Direkte formatering av tegn" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "" +msgstr "Direkte formatering av Avsnitt" #. YUbUQ #. Format names #: sw/inc/inspectorproperties.hrc:35 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Color" -msgstr "" +msgstr "Farge" #. 5Btdu #: sw/inc/inspectorproperties.hrc:36 @@ -639,43 +639,43 @@ #: sw/inc/inspectorproperties.hrc:37 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Inner Line Width" -msgstr "" +msgstr "Innvendig linjebredde" #. yrAyD #: sw/inc/inspectorproperties.hrc:38 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Distance" -msgstr "" +msgstr "Linjeavstand" #. jS4tt #: sw/inc/inspectorproperties.hrc:39 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Style" -msgstr "" +msgstr "Linjestil" #. noNDX #: sw/inc/inspectorproperties.hrc:40 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Width" -msgstr "" +msgstr "Linjebredde" #. MVL7X #: sw/inc/inspectorproperties.hrc:41 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outer Line Width" -msgstr "" +msgstr "Ytre Linjebredde" #. c7Qfp #: sw/inc/inspectorproperties.hrc:42 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border" -msgstr "Nedre kant" +msgstr "Nedre kantlinje" #. EWncC #: sw/inc/inspectorproperties.hrc:43 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border Distance" -msgstr "Avstand nedre kant" +msgstr "Avstand nedre kantlinje" #. rLqgx #: sw/inc/inspectorproperties.hrc:44 @@ -687,13 +687,13 @@ #: sw/inc/inspectorproperties.hrc:45 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Category" -msgstr "" +msgstr "Kategori" #. cd79Y #: sw/inc/inspectorproperties.hrc:46 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Cell" -msgstr "" +msgstr "Celle" #. JzYHd #: sw/inc/inspectorproperties.hrc:47 @@ -813,13 +813,13 @@ #: sw/inc/inspectorproperties.hrc:66 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement" -msgstr "" +msgstr "Char flukt" #. QikGB #: sw/inc/inspectorproperties.hrc:67 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement Height" -msgstr "" +msgstr "Char flukthøøyde" #. t2UDu #: sw/inc/inspectorproperties.hrc:68 @@ -885,19 +885,19 @@ #: sw/inc/inspectorproperties.hrc:78 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch" -msgstr "" +msgstr "Char Font Høyde" #. kHGrk #: sw/inc/inspectorproperties.hrc:79 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch Asian" -msgstr "" +msgstr "Char Font Høyde Asiatisk" #. KVfXe #: sw/inc/inspectorproperties.hrc:80 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Pitch Complex" -msgstr "" +msgstr "Char Font Høyde Kompleks" #. CQWM3 #: sw/inc/inspectorproperties.hrc:81 @@ -951,1015 +951,1015 @@ #: sw/inc/inspectorproperties.hrc:89 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Interoperability Grab Bag" -msgstr "" +msgstr "Char Interoperabilitet GB" #. EzwnG #: sw/inc/inspectorproperties.hrc:90 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Kerning" -msgstr "" +msgstr "Char avstand" #. CFpCB #: sw/inc/inspectorproperties.hrc:91 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Left Border" -msgstr "" +msgstr "Char venstre kant" #. ZZNYY #: sw/inc/inspectorproperties.hrc:92 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Left Border Distance" -msgstr "" +msgstr "Char avstand venstre kant" #. ZAkB6 #: sw/inc/inspectorproperties.hrc:93 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale" -msgstr "" +msgstr "Char Språksetting" #. Ju3fR #: sw/inc/inspectorproperties.hrc:94 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Asian" -msgstr "" +msgstr "Char Asiatisk språk" #. sA8Rk #: sw/inc/inspectorproperties.hrc:95 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Locale Complex" -msgstr "" +msgstr "Char Kompleks språksetting" #. AAvjB #: sw/inc/inspectorproperties.hrc:96 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char No Hyphenation" -msgstr "" +msgstr "Char Ingen orddeling" #. ioDYE #: sw/inc/inspectorproperties.hrc:97 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline" -msgstr "" +msgstr "Char over linje" #. GBMFT #: sw/inc/inspectorproperties.hrc:98 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Color" -msgstr "" +msgstr "Char Farge på Over linje" #. 5y7T3 #: sw/inc/inspectorproperties.hrc:99 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Overline Has Color" -msgstr "" +msgstr "Char over linje har farge" #. BEeWf #: sw/inc/inspectorproperties.hrc:100 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture" -msgstr "" +msgstr "Char Holdning" #. yTFRk #: sw/inc/inspectorproperties.hrc:101 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Asian" -msgstr "" +msgstr "Char Asiatisk Holdning" #. 8WG25 #: sw/inc/inspectorproperties.hrc:102 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Posture Complex" -msgstr "" +msgstr "Char Kompleks Holdning" #. yuK3c #: sw/inc/inspectorproperties.hrc:103 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height" -msgstr "" +msgstr "Char høydeegenskaper" #. j4w85 #: sw/inc/inspectorproperties.hrc:104 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Asian" -msgstr "" +msgstr "Char Asiatisk høydeegenskaper" #. C5Ds3 #: sw/inc/inspectorproperties.hrc:105 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Property Height Complex" -msgstr "" +msgstr "Char Kompleks høydeegenskaper" #. ABhRa #: sw/inc/inspectorproperties.hrc:106 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Relief" -msgstr "" +msgstr "Char reileff" #. BsxCo #: sw/inc/inspectorproperties.hrc:107 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border" -msgstr "" +msgstr "Char Høyre kant" #. jrnRf #: sw/inc/inspectorproperties.hrc:108 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Right Border Distance" -msgstr "" +msgstr "Char avstand til Høyre Kant" #. UEpDe #: sw/inc/inspectorproperties.hrc:109 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation" -msgstr "" +msgstr "Char Rotasjon" #. jwSQF #: sw/inc/inspectorproperties.hrc:110 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Rotation is Fit To Line" -msgstr "" +msgstr "Char rotasjon er tilpasset linjen" #. cYG7T #: sw/inc/inspectorproperties.hrc:111 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Scale Width" -msgstr "" +msgstr "Char breddeskalering" #. WFuSd #: sw/inc/inspectorproperties.hrc:112 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shading Value" -msgstr "" +msgstr "Char skyggeleggingsverdi" #. 9sRCG #: sw/inc/inspectorproperties.hrc:113 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadow Format" -msgstr "" +msgstr "Char skyggeformat" #. tKjaF #: sw/inc/inspectorproperties.hrc:114 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Shadowed" -msgstr "" +msgstr "Char skyggelagt" #. H9st9 #: sw/inc/inspectorproperties.hrc:115 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Strikeout" -msgstr "" +msgstr "Char utkrysset" #. zrLCN #: sw/inc/inspectorproperties.hrc:116 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Name" -msgstr "" +msgstr "Char stilnavn" #. PN2pE #: sw/inc/inspectorproperties.hrc:117 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Style Names" -msgstr "" +msgstr "Char stil navn" #. rq2fu #: sw/inc/inspectorproperties.hrc:118 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border" -msgstr "" +msgstr "Char Toppkant" #. SNLiC #: sw/inc/inspectorproperties.hrc:119 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Top Border Distance" -msgstr "" +msgstr "Char Avstand Topkant" #. ZoAde #: sw/inc/inspectorproperties.hrc:120 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Transparence" -msgstr "" +msgstr "Char gjennomsiktighet" #. CAJEC #: sw/inc/inspectorproperties.hrc:121 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline" -msgstr "" +msgstr "Char understreking" #. yGPLz #: sw/inc/inspectorproperties.hrc:122 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Color" -msgstr "" +msgstr "Char farge på understreking" #. HmfPF #: sw/inc/inspectorproperties.hrc:123 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Underline Has Color" -msgstr "" +msgstr "Charhar farge på understreking" #. QRCs4 #: sw/inc/inspectorproperties.hrc:124 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight" -msgstr "" +msgstr "Char tyngde" #. EwWk2 #: sw/inc/inspectorproperties.hrc:125 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Asian" -msgstr "" +msgstr "Char tyngde Asiatisk" #. nxNQB #: sw/inc/inspectorproperties.hrc:126 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Weight Complex" -msgstr "" +msgstr "Char tyngde Kompleks" #. D4T2M #: sw/inc/inspectorproperties.hrc:127 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Word Mode" -msgstr "" +msgstr "Char ordmodus" #. z8NA6 #: sw/inc/inspectorproperties.hrc:128 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Continuing Previous Tree" -msgstr "" +msgstr "Fortsetter på forrige tre" #. 4BCE7 #: sw/inc/inspectorproperties.hrc:129 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Display Name" -msgstr "" +msgstr "Visningsnavn" #. JXrsY #: sw/inc/inspectorproperties.hrc:130 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index" -msgstr "" +msgstr "Dokumentindeks" #. A3nea #: sw/inc/inspectorproperties.hrc:131 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Document Index Mark" -msgstr "" +msgstr "Dokumentindeks Markering" #. XgFaZ #: sw/inc/inspectorproperties.hrc:132 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Char Style Name" -msgstr "" +msgstr "Dropp Stor bokstav Stilnavn" #. BtV5G #: sw/inc/inspectorproperties.hrc:133 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Format" -msgstr "" +msgstr "Dropp Stor bokstav format" #. SnMZX #: sw/inc/inspectorproperties.hrc:134 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Drop Cap Whole Word" -msgstr "" +msgstr "Dropp Stor bokstav Hele ord" #. LXhoV #: sw/inc/inspectorproperties.hrc:135 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Endnote" -msgstr "" +msgstr "Sluttnote" #. YmvFY #: sw/inc/inspectorproperties.hrc:136 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Background" -msgstr "" +msgstr "Fyllbakgrunn" #. TvMCc #: sw/inc/inspectorproperties.hrc:137 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap" -msgstr "" +msgstr "Fyll punktgrafikk" #. GWWrC #: sw/inc/inspectorproperties.hrc:138 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Logical Size" -msgstr "" +msgstr "Fyll punktgrafikk, logisk størrelse" #. r2Aif #: sw/inc/inspectorproperties.hrc:139 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Mode" -msgstr "" +msgstr "Fyll punktgrafikk modus" #. FZtcW #: sw/inc/inspectorproperties.hrc:140 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Name" -msgstr "" +msgstr "Fyll punktgrafikk navn" #. C4jU5 #: sw/inc/inspectorproperties.hrc:141 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset X" -msgstr "" +msgstr "Fyll punktgrafikk forskyving X" #. w2UVD #: sw/inc/inspectorproperties.hrc:142 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Offset Y" -msgstr "" +msgstr "Fyll punktgrafikk Forskyvning Y" #. ZTKw7 #: sw/inc/inspectorproperties.hrc:143 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset X" -msgstr "" +msgstr "Fyll punktgrafikk Posisjonsforskyvning X" #. BVBvB #: sw/inc/inspectorproperties.hrc:144 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Position Offset Y" -msgstr "" +msgstr "Fyll punktgrafikk Posisjonsforskyvning Y" #. CzVxv #: sw/inc/inspectorproperties.hrc:145 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Rectangle Point" -msgstr "" +msgstr "Fyll punktgrafikk Rektangelpunkt" #. GrmLm #: sw/inc/inspectorproperties.hrc:146 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size X" -msgstr "" +msgstr "Fyll punktgrafikk Størrelse X" #. stSMW #: sw/inc/inspectorproperties.hrc:147 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Size Y" -msgstr "" +msgstr "Fyll punktgrafikk Størrelse Y" #. zJV5G #: sw/inc/inspectorproperties.hrc:148 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Stretch" -msgstr "" +msgstr "Fyll punktgrafikk Strekk" #. HMq2D #: sw/inc/inspectorproperties.hrc:149 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap Tile" -msgstr "" +msgstr "Fyll punktgrafikk Stabling" #. 6iSjs #: sw/inc/inspectorproperties.hrc:150 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Bitmap URL" -msgstr "" +msgstr "Fyll punktgrafikk URL" #. Fd28G #: sw/inc/inspectorproperties.hrc:151 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color" -msgstr "" +msgstr "Fyllfarge" #. neFA2 #: sw/inc/inspectorproperties.hrc:152 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color2" -msgstr "" +msgstr "Fyllfarge2" #. 72i4Q #: sw/inc/inspectorproperties.hrc:153 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient" -msgstr "" +msgstr "Fyllgradient" #. uWcQT #: sw/inc/inspectorproperties.hrc:154 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Name" -msgstr "" +msgstr "Fyllgradient Navn" #. uazQm #: sw/inc/inspectorproperties.hrc:155 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Gradient Step Count" -msgstr "" +msgstr "Fyllgradient Stegtelling" #. bTjNu #: sw/inc/inspectorproperties.hrc:156 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch" -msgstr "" +msgstr "Fyll skyggelegging" #. YCBtr #: sw/inc/inspectorproperties.hrc:157 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Hatch Name" -msgstr "" +msgstr "Fyll skyggeleggingsnavn" #. GbQPt #: sw/inc/inspectorproperties.hrc:158 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Style" -msgstr "" +msgstr "Fyllstil" #. tFYmZ #: sw/inc/inspectorproperties.hrc:159 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence" -msgstr "" +msgstr "Fyll gjennomsiktighet" #. H9v5s #: sw/inc/inspectorproperties.hrc:160 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient" -msgstr "" +msgstr "Fyll gjennomsiktighets gradient" #. pZH4P #: sw/inc/inspectorproperties.hrc:161 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Transparence Gradient Name" -msgstr "" +msgstr "Fyll gjennomsiktighet gradientnavn" #. WqmBo #: sw/inc/inspectorproperties.hrc:162 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Follow Style" -msgstr "" +msgstr "Følgestil" #. 32Vgt #: sw/inc/inspectorproperties.hrc:163 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Footnote" -msgstr "" +msgstr "Fotnote" #. NuA4J #: sw/inc/inspectorproperties.hrc:164 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hidden" -msgstr "" +msgstr "Skjult" #. TwGWU #: sw/inc/inspectorproperties.hrc:165 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Events" -msgstr "" +msgstr "Hyperlenke hendelser" #. XU6P3 #: sw/inc/inspectorproperties.hrc:166 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Name" -msgstr "" +msgstr "Hyperlenke Navn" #. qRBxH #: sw/inc/inspectorproperties.hrc:167 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Target" -msgstr "" +msgstr "Hyperlenke Mål" #. BoFLZ #: sw/inc/inspectorproperties.hrc:168 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink URL" -msgstr "" +msgstr "Hyperlenke URL" #. CbvLt #: sw/inc/inspectorproperties.hrc:169 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Auto Update" -msgstr "" +msgstr "Er Auto oppdatering" #. DYXxe #: sw/inc/inspectorproperties.hrc:170 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Is Physical" -msgstr "" +msgstr "Er fysisk" #. AdAo8 #: sw/inc/inspectorproperties.hrc:171 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border" -msgstr "" +msgstr "Venstre kant" #. tAqBG #: sw/inc/inspectorproperties.hrc:172 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Left Border Distance" -msgstr "" +msgstr "Avstand Venstre kant" #. 9cGvH #: sw/inc/inspectorproperties.hrc:173 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Auto Format" -msgstr "" +msgstr "Autoformatsliste" #. fBeTS #: sw/inc/inspectorproperties.hrc:174 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Id" -msgstr "" +msgstr "Liste ID" #. b73Zq #: sw/inc/inspectorproperties.hrc:175 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Label String" -msgstr "" +msgstr "Listeetikettstreng" #. n9DQD #: sw/inc/inspectorproperties.hrc:176 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Nested Text Content" -msgstr "" +msgstr "Nøstet tekstinnhold" #. AzBDm #: sw/inc/inspectorproperties.hrc:177 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering is Number" -msgstr "" +msgstr "Nummerering er nummer" #. WsqfF #: sw/inc/inspectorproperties.hrc:178 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Level" -msgstr "" +msgstr "Nummereringsnivå" #. CEkBY #: sw/inc/inspectorproperties.hrc:179 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Rules" -msgstr "" +msgstr "Nummereringsregler" #. nTMoh #: sw/inc/inspectorproperties.hrc:180 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Start Value" -msgstr "" +msgstr "Nummereringsstartverdi" #. KYbBB #: sw/inc/inspectorproperties.hrc:181 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Style Name" -msgstr "" +msgstr "Nummereringsstilnavn" #. zrVDM #: sw/inc/inspectorproperties.hrc:182 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Content Visible" -msgstr "" +msgstr "Synlig disposisjonsinnhold" #. NNuo4 #: sw/inc/inspectorproperties.hrc:183 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outline Level" -msgstr "" +msgstr "Disposisjonsnivå" #. syTbJ #: sw/inc/inspectorproperties.hrc:184 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Desc Name" -msgstr "" +msgstr "Beskrivelsenavn for Side" #. wLGct #: sw/inc/inspectorproperties.hrc:185 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Number Offset" -msgstr "" +msgstr "Sidenummerforskyvning" #. ryHzy #: sw/inc/inspectorproperties.hrc:186 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Style Name" -msgstr "" +msgstr "Stil navn for Side" #. UyyB6 #: sw/inc/inspectorproperties.hrc:187 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Rsid" -msgstr "" +msgstr "Avsn RsID" #. xqcEV #: sw/inc/inspectorproperties.hrc:188 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Adjust" -msgstr "" +msgstr "Avsn Juster" #. SyTxG #: sw/inc/inspectorproperties.hrc:189 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Auto Style Name" -msgstr "" +msgstr "Avsn Auto Stilnavn" #. WHaym #: sw/inc/inspectorproperties.hrc:190 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Color" -msgstr "" +msgstr "Avsn Bakgrunnsfarge" #. uKmB5 #: sw/inc/inspectorproperties.hrc:191 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic" -msgstr "" +msgstr "Avsn Bakgrunnsgrafikk" #. f6RGz #: sw/inc/inspectorproperties.hrc:192 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Filter" -msgstr "" +msgstr "Avsn Bakgrunn grafikkfilter" #. Yy5RY #: sw/inc/inspectorproperties.hrc:193 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic Location" -msgstr "" +msgstr "Avsn Bakgrunnsgrafikk posisjon" #. MLDdK #: sw/inc/inspectorproperties.hrc:194 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Graphic URL" -msgstr "" +msgstr "Avsn Bakgrunnsgrafikk URL" #. HkGF3 #: sw/inc/inspectorproperties.hrc:195 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Back Transparent" -msgstr "" +msgstr "Avsn Bakgrunn gjennomsiktighet" #. TuYLo #: sw/inc/inspectorproperties.hrc:196 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin" -msgstr "" +msgstr "Avsn Bunnmargin" #. r5BAb #: sw/inc/inspectorproperties.hrc:197 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Bottom Margin Relative" -msgstr "" +msgstr "Avsn Relativ Bunnmarg" #. rCWLX #: sw/inc/inspectorproperties.hrc:198 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Chapter Numbering Level" -msgstr "" +msgstr "Avsn Kapittel nummereringsnivå" #. GLxXC #: sw/inc/inspectorproperties.hrc:199 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Conditional Style Name" -msgstr "" +msgstr "Avsn Betinget stilnavn" #. AFGoP #: sw/inc/inspectorproperties.hrc:200 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Context Margin" -msgstr "" +msgstr "Avsn Kontekstmargin" #. dpsFJ #: sw/inc/inspectorproperties.hrc:201 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Expand Single Word" -msgstr "" +msgstr "Avsn Utvid enkeltord" #. iD2DL #: sw/inc/inspectorproperties.hrc:202 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent" -msgstr "" +msgstr "Avsn Første linje innrykk" #. wCMnF #: sw/inc/inspectorproperties.hrc:203 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para First Line Indent Relative" -msgstr "" +msgstr "Avsn Første linje relativt innrykk" #. z47wS #: sw/inc/inspectorproperties.hrc:204 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Hyphens" -msgstr "" +msgstr "Avsn Orddeling, Maks ordelinger" #. nFxKY #: sw/inc/inspectorproperties.hrc:205 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Leading Chars" -msgstr "" +msgstr "Avsn Orddeling, Maks Innledene tegn" #. agdzD #: sw/inc/inspectorproperties.hrc:206 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation Max Trailing Chars" -msgstr "" +msgstr "Avsn Orddeling, Maks etterfølgende tegn" #. hj7Fp #: sw/inc/inspectorproperties.hrc:207 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Hyphenation No Caps" -msgstr "" +msgstr "Avsn Orddeling, Ingen store bokstaver" #. 4bemD #: sw/inc/inspectorproperties.hrc:208 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Interop Grab Bag" -msgstr "" +msgstr "Avsn Interop GB" #. fCGA4 #: sw/inc/inspectorproperties.hrc:209 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Auto First Line Indent" -msgstr "" +msgstr "Avsn gir Auto Innrykk første linje" #. Q68Bx #: sw/inc/inspectorproperties.hrc:210 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Character Distance" -msgstr "" +msgstr "Avsn er tegnavstand" #. FGVAd #: sw/inc/inspectorproperties.hrc:211 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Connect Border" -msgstr "" +msgstr "Avsn er kantkobling" #. tBy9h #: sw/inc/inspectorproperties.hrc:212 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Forbidden Rules" -msgstr "" +msgstr "Avsn er Forbudt regel" #. yZZSA #: sw/inc/inspectorproperties.hrc:213 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hanging Punctuation" -msgstr "" +msgstr "Avsn er Hengende Tegnsetting" #. dDgrE #: sw/inc/inspectorproperties.hrc:214 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Hyphenation" -msgstr "" +msgstr "Avsn er Orddeling" #. mHDWE #: sw/inc/inspectorproperties.hrc:215 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para is Numbering Restart" -msgstr "" +msgstr "Avsn er Omstart av nummerering" #. Mnm2C #: sw/inc/inspectorproperties.hrc:216 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Keep Together" -msgstr "" +msgstr "Avsn Hold sammen" #. 8Z5AP #: sw/inc/inspectorproperties.hrc:217 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Last Line Adjust" -msgstr "" +msgstr "Avsn Justering av siste linje" #. 6CaHh #: sw/inc/inspectorproperties.hrc:218 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin" -msgstr "" +msgstr "Avsn Venstre marg" #. ZDnZk #: sw/inc/inspectorproperties.hrc:219 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Left Margin Relative" -msgstr "" +msgstr "Avsn Venstre marg Relativ" #. G43XB #: sw/inc/inspectorproperties.hrc:220 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Count" -msgstr "" +msgstr "Avsn Telling av Linjenummer" #. EjnTM #: sw/inc/inspectorproperties.hrc:221 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Number Start Value" -msgstr "" +msgstr "Avsn startnummer for Linjenummer" #. eo9RR #: sw/inc/inspectorproperties.hrc:222 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Line Spacing" -msgstr "" +msgstr "Avsn Linjeavstand" #. kczeF #: sw/inc/inspectorproperties.hrc:223 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Orphans" -msgstr "" +msgstr "Avsn Foreldreløse" #. FmuG6 #: sw/inc/inspectorproperties.hrc:224 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Register Mode Active" -msgstr "" +msgstr "Avsn Registreringsmodus aktivt" #. Kwp9H #: sw/inc/inspectorproperties.hrc:225 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin" -msgstr "" +msgstr "Avsn Høyre marg" #. r2ao2 #: sw/inc/inspectorproperties.hrc:226 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Right Margin Relative" -msgstr "" +msgstr "Avsn Høyre marg Relativ" #. FC9mA #: sw/inc/inspectorproperties.hrc:227 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Shadow Format" -msgstr "" +msgstr "Avsn Skyggeformat" #. VXwD2 #: sw/inc/inspectorproperties.hrc:228 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Split" -msgstr "" +msgstr "Avsn Splitt" #. gXoCF #: sw/inc/inspectorproperties.hrc:229 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Style Name" -msgstr "" +msgstr "Avsn Stilnavn" #. sekLv #: sw/inc/inspectorproperties.hrc:230 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Tab Stops" -msgstr "" +msgstr "Avsn Tabulator stopp" #. reW9Y #: sw/inc/inspectorproperties.hrc:231 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin" -msgstr "" +msgstr "Avsn Toppmarg" #. wHuj4 #: sw/inc/inspectorproperties.hrc:232 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Top Margin Relative" -msgstr "" +msgstr "Avsn Toppmarg Relativ" #. pUjFj #: sw/inc/inspectorproperties.hrc:233 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para User Defined Attributes" -msgstr "" +msgstr "Avsn Brukerdefinerte attributter" #. WvA9C #: sw/inc/inspectorproperties.hrc:234 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Vertical Alignment" -msgstr "" +msgstr "Avsn Vertikal justering" #. u8Jc6 #: sw/inc/inspectorproperties.hrc:235 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Para Widows" -msgstr "" +msgstr "Avsn Enker" #. cdw2Q #: sw/inc/inspectorproperties.hrc:236 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Reference Mark" -msgstr "" +msgstr "Referansemerke" #. NDEck #: sw/inc/inspectorproperties.hrc:237 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Right Border" -msgstr "" +msgstr "Høyre Kant" #. 6rs9g #: sw/inc/inspectorproperties.hrc:238 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Right Border Distance" -msgstr "" +msgstr "Avstansd Høyre kant" #. XYhSX #: sw/inc/inspectorproperties.hrc:239 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Rsid" -msgstr "" +msgstr "Rsid" #. Uoosp #: sw/inc/inspectorproperties.hrc:240 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Adjust" -msgstr "" +msgstr "Ruby Juster" #. 3WwCU #: sw/inc/inspectorproperties.hrc:241 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Char Style Name" -msgstr "" +msgstr "Ruby Tegnstilnavn" #. DqMAX #: sw/inc/inspectorproperties.hrc:242 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby is Above" -msgstr "" +msgstr "Ruby er over" #. w8jgs #: sw/inc/inspectorproperties.hrc:243 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Position" -msgstr "" +msgstr "Ruby Posisjon" #. ZREEa #: sw/inc/inspectorproperties.hrc:244 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Text" -msgstr "" +msgstr "Ruby Tekst" #. tJEtt #: sw/inc/inspectorproperties.hrc:245 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Snap to Grid" -msgstr "" +msgstr "Fest til rutenett" #. oDk6s #: sw/inc/inspectorproperties.hrc:246 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Style Interop Grab Bag" -msgstr "" +msgstr "Stil Interop GB" #. PV65u #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Field" -msgstr "" +msgstr "Tekstfelt" #. a6k8F #: sw/inc/inspectorproperties.hrc:248 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Frame" -msgstr "" +msgstr "Tekstramme" #. CNyuR #: sw/inc/inspectorproperties.hrc:249 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Paragraph" -msgstr "" +msgstr "Tekstavsnitt" #. nTTEM #: sw/inc/inspectorproperties.hrc:250 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Section" -msgstr "" +msgstr "Tekstseksjon" #. VCADG #: sw/inc/inspectorproperties.hrc:251 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Table" -msgstr "" +msgstr "Teksttabell" #. hDjMA #: sw/inc/inspectorproperties.hrc:252 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text User Defined Attributes" -msgstr "" +msgstr "Tekst brukerdefinerte attributter" #. ZG6rS #: sw/inc/inspectorproperties.hrc:253 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border" -msgstr "" +msgstr "Toppkant" #. 6qBJD #: sw/inc/inspectorproperties.hrc:254 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Top Border Distance" -msgstr "" +msgstr "Toppkant Avstand" #. RwtPi #: sw/inc/inspectorproperties.hrc:255 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Unvisited Char Style Name" -msgstr "" +msgstr "Ubesøkt navn på Tegnstil" #. xcMEF #: sw/inc/inspectorproperties.hrc:256 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Visited Char Style Name" -msgstr "" +msgstr "Besøkt navn på Tegnstil" #. YiBym #: sw/inc/inspectorproperties.hrc:257 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Writing Mode" -msgstr "" +msgstr "Skrivemodus" #. QBR3s #: sw/inc/mmaddressblockpage.hrc:27 @@ -2310,7 +2310,7 @@ #: sw/inc/strings.hrc:44 msgctxt "STR_POOLCHR_VERT_NUM" msgid "Vertical Numbering Symbols" -msgstr "Loddrette nummereringstegn" +msgstr "Vertikale nummereringstegn" #. oAfA6 #. Drawing templates for HTML @@ -2895,13 +2895,13 @@ #: sw/inc/strings.hrc:144 msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS" msgid "Addressee" -msgstr "" +msgstr "Adressee" #. PvoVz #: sw/inc/strings.hrc:145 msgctxt "STR_POOLCOLL_SEND_ADDRESS" msgid "Sender" -msgstr "" +msgstr "Sender" #. AChE4 #: sw/inc/strings.hrc:146 @@ -3154,7 +3154,7 @@ #: sw/inc/strings.hrc:188 msgctxt "STR_POOLCOLL_HTML_HR" msgid "Horizontal Line" -msgstr "Vannrett linje" +msgstr "Horisontal Linje" #. mS2ZP #: sw/inc/strings.hrc:189 @@ -3197,7 +3197,7 @@ #: sw/inc/strings.hrc:196 msgctxt "STR_POOLPAGE_ENVELOPE" msgid "Envelope" -msgstr "" +msgstr "Konvolutt" #. jGSGz #: sw/inc/strings.hrc:197 @@ -3293,7 +3293,7 @@ #: sw/inc/strings.hrc:217 msgctxt "STR_POOLNUMRULE_BUL5" msgid "Bullet " -msgstr "Kulemerke " +msgstr "Kulemerke " #. J7DDZ #: sw/inc/strings.hrc:218 @@ -3799,7 +3799,7 @@ #: sw/inc/strings.hrc:312 msgctxt "STR_BTN_AUTOFORMAT_CLOSE" msgid "~Close" -msgstr "~Lukk" +msgstr "Lukk" #. DAuNm #: sw/inc/strings.hrc:313 @@ -3986,7 +3986,7 @@ #: sw/inc/strings.hrc:344 msgctxt "STR_EVENT_IMAGE_ABORT" msgid "Image loading terminated" -msgstr "Innlastinga av bildet ble avbrutt" +msgstr "Innlastingen av bildet ble avbrutt" #. uLNMH #: sw/inc/strings.hrc:345 @@ -4112,7 +4112,7 @@ #: sw/inc/strings.hrc:365 msgctxt "STR_IDXEXAMPLE_IDXTXT_ENTRY11" msgid "This is the content from chapter 1.1. This is the entry for the table of contents." -msgstr "Dette er innholdet fra kapittel 1.1. Dette er oppføringa for innholdslista." +msgstr "Dette er innholdet fra kapittel 1.1. Dette er oppføringen for innholdslisten." #. bymGA #: sw/inc/strings.hrc:366 @@ -4271,7 +4271,7 @@ "The interactive hyphenation is already active\n" "in a different document" msgstr "" -"Den interaktive orddelinga er allerede aktiv\n" +"Den interaktive orddelingen er allerede aktiv\n" "i et annet dokument" #. 68AYK @@ -5270,7 +5270,7 @@ #: sw/inc/strings.hrc:559 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "Sett inn formulær felt" +msgstr "Sett inn formulærfelt" #. 2zJmG #: sw/inc/strings.hrc:560 @@ -5534,7 +5534,7 @@ #: sw/inc/strings.hrc:608 msgctxt "STR_PRINTOPTUI_TEXT_PLACEHOLDERS" msgid "~Text placeholders" -msgstr "~Plassholder for tekst" +msgstr "Plassholder for tekst" #. JBWVd #: sw/inc/strings.hrc:609 @@ -5600,7 +5600,7 @@ #: sw/inc/strings.hrc:619 msgctxt "STR_PRINTOPTUI_COMMENTS" msgid "~Comments" -msgstr "~Kommentarer" +msgstr "Kommentarer" #. cnqLU #: sw/inc/strings.hrc:620 @@ -5750,49 +5750,49 @@ #: sw/inc/strings.hrc:646 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle content visibility" -msgstr "" +msgstr "Klikk for å veksle innholdssynlighet" #. 44jEc #: sw/inc/strings.hrc:647 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "høyreklikk for å inkludere undernivåer" #. kDbnu #: sw/inc/strings.hrc:648 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY" msgid "Click to toggle content visibility" -msgstr "" +msgstr "Klikk for å veksle innholdssynlighet" #. rkD8H #: sw/inc/strings.hrc:649 msgctxt "STR_CLICK_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "høyreklikk for å inkludere undernivåer" #. JZgRD #: sw/inc/strings.hrc:650 msgctxt "STR_OUTLINE_CONTENT" msgid "Outline Content Visibility" -msgstr "" +msgstr "Oversikt over innholdssynligheten" #. oBH6y #: sw/inc/strings.hrc:651 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_TOGGLE" msgid "Toggle" -msgstr "" +msgstr "Bytt" #. 7UQPv #: sw/inc/strings.hrc:652 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_SHOW_ALL" msgid "Show All" -msgstr "" +msgstr "Vis Alt" #. ZUuCQ #: sw/inc/strings.hrc:653 msgctxt "STR_OUTLINE_CONTENT_VISIBILITY_HIDE_ALL" msgid "Hide All" -msgstr "" +msgstr "Skjul Alt" #. 9Fipd #: sw/inc/strings.hrc:655 @@ -5864,7 +5864,7 @@ #: sw/inc/strings.hrc:666 msgctxt "STR_UPDATE" msgid "~Update" -msgstr "~Oppdater" +msgstr "Oppdater" #. 44Esc #: sw/inc/strings.hrc:667 @@ -5888,7 +5888,7 @@ #: sw/inc/strings.hrc:670 msgctxt "STR_INDEX" msgid "~Index" -msgstr "~Register" +msgstr "Register" #. MnBLc #: sw/inc/strings.hrc:671 @@ -5918,7 +5918,7 @@ #: sw/inc/strings.hrc:675 msgctxt "STR_DELETE_ENTRY" msgid "~Delete" -msgstr "~Slett" +msgstr "Slett" #. A28Rb #: sw/inc/strings.hrc:676 @@ -5954,7 +5954,7 @@ #: sw/inc/strings.hrc:682 msgctxt "STR_BROKEN_LINK" msgid "File not found: " -msgstr "Fant ikke fila: " +msgstr "Fant ikke filen: " #. UC53U #: sw/inc/strings.hrc:684 @@ -6718,7 +6718,7 @@ #: sw/inc/strings.hrc:820 msgctxt "ST_SALUTATIONELEMENTS" msgid "Salutation e~lements" -msgstr "~Hilsningselementer" +msgstr "Hilsningselementer" #. kWhqT #: sw/inc/strings.hrc:821 @@ -6884,7 +6884,7 @@ "\n" "Do you want to enter email account information now?" msgstr "" -"For å kunne sende brevfletta dokumenter over e-post, krever %PRODUCTNAME informasjon om e-postkontoen som skal brukes.\n" +"For å kunne sende brevflettede dokumenter over e-post, krever %PRODUCTNAME informasjon om e-postkontoen som skal brukes.\n" "\n" "Vil du skrive inn kontoinformasjonen nå?" @@ -6940,7 +6940,7 @@ #: sw/inc/strings.hrc:858 msgctxt "ST_FINISH" msgid "~Finish" -msgstr "~Fullfør" +msgstr "Fullfør" #. L5FEG #: sw/inc/strings.hrc:859 @@ -7320,7 +7320,7 @@ #: sw/inc/strings.hrc:936 msgctxt "FLD_INPUT_TEXT" msgid "[Text]" -msgstr "[Text]" +msgstr "[Tekst]" #. TyYok #. -------------------------------------------------------------------- @@ -7413,7 +7413,7 @@ #: sw/inc/strings.hrc:955 msgctxt "FLD_EU_STATE" msgid "State" -msgstr "Delstat/region" +msgstr "Delstat/Region" #. pbrdQ #: sw/inc/strings.hrc:956 @@ -7663,7 +7663,7 @@ #: sw/inc/strings.hrc:1015 msgctxt "FMT_REF_UPDOWN" msgid "Above/Below" -msgstr "Over/under" +msgstr "Over/Under" #. Vq8mj #: sw/inc/strings.hrc:1016 @@ -7759,7 +7759,7 @@ #: sw/inc/strings.hrc:1037 msgctxt "STR_COND" msgid "~Condition" -msgstr "~Vilkår" +msgstr "Vilkår" #. X9cqJ #: sw/inc/strings.hrc:1038 @@ -7777,31 +7777,31 @@ #: sw/inc/strings.hrc:1040 msgctxt "STR_INSTEXT" msgid "Hidden t~ext" -msgstr "~Sett inn tekst" +msgstr "Sett inn tekst" #. EX3bJ #: sw/inc/strings.hrc:1041 msgctxt "STR_MACNAME" msgid "~Macro name" -msgstr "~Makronavn" +msgstr "Makronavn" #. dNZtd #: sw/inc/strings.hrc:1042 msgctxt "STR_PROMPT" msgid "~Reference" -msgstr "~Referanse" +msgstr "Referanse" #. bfRPa #: sw/inc/strings.hrc:1043 msgctxt "STR_COMBCHRS_FT" msgid "Ch~aracters" -msgstr "~Tegn" +msgstr "Tegn" #. j2G5G #: sw/inc/strings.hrc:1044 msgctxt "STR_OFFSET" msgid "O~ffset" -msgstr "Forsky~vning" +msgstr "Forskyvning" #. vEgGo #: sw/inc/strings.hrc:1045 @@ -7825,7 +7825,7 @@ #: sw/inc/strings.hrc:1049 msgctxt "STR_CUSTOM_LABEL" msgid "[User]" -msgstr "[User]" +msgstr "[Bruker]" #. dYQTU #: sw/inc/strings.hrc:1051 @@ -7903,7 +7903,7 @@ #: sw/inc/strings.hrc:1064 msgctxt "STR_BOOKCTRL_HINT" msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list." -msgstr "Sidetall i dokument. Klikk for å åpne Dokumentstruktur eller høyreklikk for å åpne bokmerkelista." +msgstr "Sidetall i dokument. Klikk for å åpne Dokumentstruktur eller høyreklikk for å åpne bokmerkelisten." #. XaF3v #: sw/inc/strings.hrc:1065 @@ -7952,25 +7952,25 @@ #: sw/inc/strings.hrc:1074 msgctxt "STR_VERT_MIRROR" msgid "Flip vertically" -msgstr "Loddrett speilvending" +msgstr "Vertikal speilvending" #. Dns6t #: sw/inc/strings.hrc:1075 msgctxt "STR_HORI_MIRROR" msgid "Flip horizontal" -msgstr "Vannrett speilvending" +msgstr "Horisontal speilvending" #. ZUKCy #: sw/inc/strings.hrc:1076 msgctxt "STR_BOTH_MIRROR" msgid "Horizontal and Vertical Flip" -msgstr "Vannrett og loddrett speilvending" +msgstr "Horisontal og vertikal speilvending" #. LoQic #: sw/inc/strings.hrc:1077 msgctxt "STR_MIRROR_TOGGLE" msgid "+ mirror horizontal on even pages" -msgstr "+ vannrett speilvending på partallssider" +msgstr "+ horisontal speilvending på partallssider" #. kbnTf #: sw/inc/strings.hrc:1078 @@ -8012,7 +8012,7 @@ #: sw/inc/strings.hrc:1084 msgctxt "STR_SURROUND_IDEAL" msgid "Optimal" -msgstr "" +msgstr "Optimal" #. HEuGy #: sw/inc/strings.hrc:1085 @@ -8030,19 +8030,19 @@ #: sw/inc/strings.hrc:1087 msgctxt "STR_SURROUND_PARALLEL" msgid "Parallel" -msgstr "" +msgstr "Parallell" #. hyEQ5 #: sw/inc/strings.hrc:1088 msgctxt "STR_SURROUND_LEFT" msgid "Before" -msgstr "" +msgstr "Før" #. bGBtQ #: sw/inc/strings.hrc:1089 msgctxt "STR_SURROUND_RIGHT" msgid "After" -msgstr "" +msgstr "Etter" #. SrG3D #: sw/inc/strings.hrc:1090 @@ -8108,7 +8108,7 @@ #: sw/inc/strings.hrc:1100 msgctxt "STR_VERT_CENTER" msgid "Centered vertically" -msgstr "Midtstilt loddrett" +msgstr "Midtstilt vertikalt" #. fcpTS #: sw/inc/strings.hrc:1101 @@ -8120,31 +8120,31 @@ #: sw/inc/strings.hrc:1102 msgctxt "STR_LINE_TOP" msgid "Top of line" -msgstr "Øverst på linja" +msgstr "Øverst på linjen" #. MU7hC #: sw/inc/strings.hrc:1103 msgctxt "STR_LINE_CENTER" msgid "Line centered" -msgstr "Midt på linja" +msgstr "Midt på linjen" #. ZvEq7 #: sw/inc/strings.hrc:1104 msgctxt "STR_LINE_BOTTOM" msgid "Bottom of line" -msgstr "Nederst på linja" +msgstr "Nederst på linjen" #. jypsG #: sw/inc/strings.hrc:1105 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "" +msgstr "Side linjeavstand" #. Cui3U #: sw/inc/strings.hrc:1106 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "" +msgstr "Ikke side, Linjeavstand" #. 4RL9X #: sw/inc/strings.hrc:1107 @@ -8156,7 +8156,7 @@ #: sw/inc/strings.hrc:1108 msgctxt "STR_HORI_CENTER" msgid "Centered horizontally" -msgstr "Midtstilt vannrett" +msgstr "Midtstilt horisontalt" #. ngRmB #: sw/inc/strings.hrc:1109 @@ -9065,7 +9065,7 @@ #: sw/inc/strings.hrc:1268 msgctxt "STR_FILE_NOT_FOUND" msgid "The file, \"%1\" in the \"%2\" path could not be found." -msgstr "Fant ikke fila «%1» i stien «%2»." +msgstr "Fant ikke filen «%1» i stien «%2»." #. zRWDZ #: sw/inc/strings.hrc:1269 @@ -9320,7 +9320,7 @@ #: sw/inc/strings.hrc:1318 msgctxt "STR_HYP_OK" msgid "Hyphenation completed" -msgstr "Orddelinga er ferdig" +msgstr "Orddelingen er ferdig" #. rZBXF #: sw/inc/strings.hrc:1319 @@ -9344,7 +9344,7 @@ #: sw/inc/strings.hrc:1322 msgctxt "STR_IGNORE_SELECTION" msgid "~Ignore" -msgstr "~Ignorer" +msgstr "Ignorer" #. aaiBM #: sw/inc/strings.hrc:1323 @@ -9440,19 +9440,19 @@ #: sw/inc/strings.hrc:1339 msgctxt "STR_SAVEAS_SRC" msgid "~Export source..." -msgstr "~Eksporter kilde …" +msgstr "Eksporter kilde …" #. ywFCb #: sw/inc/strings.hrc:1340 msgctxt "STR_SAVEACOPY_SRC" msgid "~Export copy of source..." -msgstr "Eksporter copi av kilden..." +msgstr "Eksporter kopi av kilden..." #. BT3M3 #: sw/inc/strings.hrc:1342 msgctxt "ST_CONTINUE" msgid "~Continue" -msgstr "~Fortsett" +msgstr "Fortsett" #. ZR9aw #: sw/inc/strings.hrc:1343 @@ -9824,13 +9824,13 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:128 msgctxt "addressblockdialog|addressesft" msgid "Address _elements" -msgstr "Adresse_elementer" +msgstr "Adresseelementer" #. BFZo7 #: sw/uiconfig/swriter/ui/addressblockdialog.ui:173 msgctxt "addressblockdialog|extended_tip|addresses" msgid "Select a field and drag the field to the other list." -msgstr "Merk et felt og dra feltet over til lista til høyre." +msgstr "Merk et felt og dra feltet over til listen til høyre." #. mQ55L #: sw/uiconfig/swriter/ui/addressblockdialog.ui:189 @@ -9848,7 +9848,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:217 msgctxt "addressblockdialog|extended_tip|up" msgid "Select an item in the list and click an arrow button to move the item." -msgstr "Merk et element i lista og trykk en av pilknappene for å flytte det." +msgstr "Merk et element i listen og trykk en av pilknappene for å flytte det." #. WaKFt #: sw/uiconfig/swriter/ui/addressblockdialog.ui:231 @@ -9860,7 +9860,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:235 msgctxt "addressblockdialog|extended_tip|left" msgid "Select an item in the list and click an arrow button to move the item." -msgstr "Merk et element i lista og trykk en av pilknappene for å flytte det." +msgstr "Merk et element i listen og trykk en av pilknappene for å flytte det." #. 8SHCH #: sw/uiconfig/swriter/ui/addressblockdialog.ui:249 @@ -9872,7 +9872,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:253 msgctxt "addressblockdialog|extended_tip|right" msgid "Select an item in the list and click an arrow button to move the item." -msgstr "Merk et element i lista og trykk en av pilknappene for å flytte det." +msgstr "Merk et element i listen og trykk en av pilknappene for å flytte det." #. 3qGSH #: sw/uiconfig/swriter/ui/addressblockdialog.ui:267 @@ -9884,7 +9884,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:271 msgctxt "addressblockdialog|extended_tip|down" msgid "Select an item in the list and click an arrow button to move the item." -msgstr "Merk et element i lista og trykk en av pilknappene for å flytte det." +msgstr "Merk et element i listen og trykk en av pilknappene for å flytte det." #. VeEDs #: sw/uiconfig/swriter/ui/addressblockdialog.ui:305 @@ -9914,7 +9914,7 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:407 msgctxt "addressblockdialog|extended_tip|addrpreview" msgid "Displays a preview of the first database record with the current salutation layout." -msgstr "Forhåndsviser den første databaseposten med adresseblokkutforminga som er valgt." +msgstr "Forhåndsviser den første databaseposten med adresseblokkutformingen som er valgt." #. HQ7GB #: sw/uiconfig/swriter/ui/addressblockdialog.ui:432 @@ -9926,19 +9926,19 @@ #: sw/uiconfig/swriter/ui/addressblockdialog.ui:436 msgctxt "addressblockdialog|extended_tip|fromaddr" msgid "Removes the selected field from the other list." -msgstr "Fjerner det merkede feltet fra lista til høyre." +msgstr "Fjerner det merkede feltet fra listen til høyre." #. GzXkX #: sw/uiconfig/swriter/ui/addressblockdialog.ui:453 msgctxt "addressblockdialog|extended_tip|toaddr" msgid "Adds the selected field from the list of salutation elements to the other list. You can add a field more than once." -msgstr "Legger feltet som er merket i lista med hilsningselementer, til i lista til høyre. Du kan legge til det samme feltet mer enn en gang." +msgstr "Legger feltet som er merket i listen med hilsningselementer, til i listen til høyre. Du kan legge til det samme feltet mer enn en gang." #. WAm7A #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:7 msgctxt "alreadyexistsdialog|AlreadyExistsDialog" msgid "File already exists" -msgstr "Fila eksisterer allerede" +msgstr "Filen eksisterer allerede" #. F4LSk #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:12 @@ -9980,37 +9980,37 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:42 msgctxt "annotationmenu|resolvethread" msgid "Resolve Thread" -msgstr "" +msgstr "Løs tråden" #. gE5Sy #: sw/uiconfig/swriter/ui/annotationmenu.ui:50 msgctxt "annotationmenu|unresolvethread" msgid "Unresolve Thread" -msgstr "" +msgstr "Uoppløs Tråd" #. qAYam #: sw/uiconfig/swriter/ui/annotationmenu.ui:58 msgctxt "annotationmenu|delete" msgid "Delete _Comment" -msgstr "_Slett merknad" +msgstr "Slett merknad" #. 9ZUko #: sw/uiconfig/swriter/ui/annotationmenu.ui:66 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "" +msgstr "Slett kommentartråd" #. z2NAS #: sw/uiconfig/swriter/ui/annotationmenu.ui:74 msgctxt "annotationmenu|deleteby" msgid "Delete _All Comments by $1" -msgstr "Slett _alle merknader av $1" +msgstr "Slett alle merknader av $1" #. 8WjDG #: sw/uiconfig/swriter/ui/annotationmenu.ui:82 msgctxt "annotationmenu|deleteall" msgid "_Delete All Comments" -msgstr "_Slett alle merknader" +msgstr "Slett alle merknader" #. GaWL2 #: sw/uiconfig/swriter/ui/annotationmenu.ui:90 @@ -10064,7 +10064,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:192 msgctxt "asciifilterdialog|crlf" msgid "_CR & LF" -msgstr "_CR og LF" +msgstr "CR og LF" #. ZEa5G #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:202 @@ -10076,7 +10076,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:214 msgctxt "asciifilterdialog|cr" msgid "C_R" -msgstr "C_R" +msgstr "CR" #. nurFX #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:225 @@ -10088,7 +10088,7 @@ #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:237 msgctxt "asciifilterdialog|lf" msgid "_LF" -msgstr "_LF" +msgstr "LF" #. K5KDB #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:248 @@ -10262,7 +10262,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:14 msgctxt "authenticationsettingsdialog|AuthenticationSettingsDialog" msgid "Server Authentication" -msgstr "Tjenerautentisering" +msgstr "Severautentisering" #. 6RCzU #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:92 @@ -10274,37 +10274,37 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:101 msgctxt "extended_tip|authentication" msgid "Enables the authentication that is required to send email by SMTP." -msgstr "" +msgstr "Aktiverer autentisering som kreves for å sende e-post via SMTP." #. 5F7CW #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:113 msgctxt "authenticationsettingsdialog|separateauthentication" msgid "The outgoing mail server (SMTP) requires _separate authentication" -msgstr "Den utgående e-posttjeneren (SMTP) krever egen autentisering" +msgstr "Den utgående e-postserveren (SMTP) krever egen autentisering" #. kYrGM #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:124 msgctxt "extended_tip|separateauthentication" msgid "Select if your SMTP server requires a user name and password." -msgstr "Kryss av her hvis SMTP-tjeneren krever at du angir brukernavn og passord." +msgstr "Kryss av her hvis SMTP-serveren krever at du angir brukernavn og passord." #. 4Y4mH #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:139 msgctxt "authenticationsettingsdialog|label1" msgid "Outgoing mail server:" -msgstr "Utgående e-posttjener:" +msgstr "Utgående e-postserver" #. ySAX7 #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:158 msgctxt "extended_tip|username" msgid "Enter the user name for the SMTP server." -msgstr "Skriv inn brukernavnet for SMTP-tjeneren." +msgstr "Skriv inn brukernavnet for SMTP-serveren." #. G9RDY #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:172 msgctxt "authenticationsettingsdialog|username_label" msgid "_User name:" -msgstr "_Brukernavn:" +msgstr "Brukernavn:" #. FZBkD #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:194 @@ -10316,43 +10316,43 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:208 msgctxt "authenticationsettingsdialog|outpassword_label" msgid "_Password:" -msgstr "_Passord:" +msgstr "Passord:" #. ALCGF #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:220 msgctxt "authenticationsettingsdialog|smtpafterpop" msgid "The outgoing mail server uses the same authentication as the _incoming mail server" -msgstr "Den utgående e-posttjeneren bruker samme autentisering som den innkommende e-posttjeneren" +msgstr "Den utgående e-post serveren bruker samme autentisering som den innkommende e-post serveren" #. ZEBYd #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:232 msgctxt "extended_tip|smtpafterpop" msgid "Select if you are required to first read your email before you can send email." -msgstr "" +msgstr "Velg om du må lese e-posten din før du kan sende e-post." #. hguDR #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:247 msgctxt "authenticationsettingsdialog|label2" msgid "Incoming mail server:" -msgstr "Innkommende e-posttjener:" +msgstr "Innkommende e-postserver:" #. 4SQU2 #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:266 msgctxt "extended_tip|server" msgid "Enter the server name of your POP 3 or IMAP mail server." -msgstr "Skriv inn navnet på POP 3- eller IMAP-e-posttjeneren." +msgstr "Skriv inn navnet på POP 3- eller IMAP-e-post serveren." #. 2Kevy #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:280 msgctxt "authenticationsettingsdialog|server_label" msgid "Server _name:" -msgstr "Tjener_navn:" +msgstr "Servernavn:" #. 4PEvE #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:300 msgctxt "extended_tip|port" msgid "Enter the port on the POP3 or IMAP server." -msgstr "Angi hvilken port som skal brukes på POP3- eller IMAP-tjeneren." +msgstr "Angi hvilken port som skal brukes på POP3- eller IMAP-serveren." #. DVAwX #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:313 @@ -10370,31 +10370,31 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:338 msgctxt "authenticationsettingsdialog|pop3" msgid "_POP3" -msgstr "_POP3" +msgstr "POP3" #. J8eWz #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:348 msgctxt "extended_tip|pop3" msgid "Specifies that the incoming mail server uses POP 3." -msgstr "Angir at tjeneren for innkommende e-post bruker POP 3." +msgstr "Angir at serveren for innkommende e-post bruker POP 3." #. b9FGk #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:359 msgctxt "authenticationsettingsdialog|imap" msgid "_IMAP" -msgstr "_IMAP" +msgstr "IMAP" #. hLU78 #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:370 msgctxt "extended_tip|imap" msgid "Specifies that the incoming mail server uses IMAP." -msgstr "Angir at tjeneren for innkommende e-post bruker IMAP." +msgstr "Angir at serveren for innkommende e-post bruker IMAP." #. 6rQFw #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:389 msgctxt "extended_tip|inusername" msgid "Enter the user name for the IMAP server." -msgstr "Skriv inn brukernavnet for IMAP-tjeneren." +msgstr "Skriv inn brukernavnet for IMAP-serveren." #. YWCC2 #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:410 @@ -10406,13 +10406,13 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:424 msgctxt "authenticationsettingsdialog|inusername_label" msgid "Us_er name:" -msgstr "_Brukernavn:" +msgstr "Brukernavn:" #. hKcZx #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:439 msgctxt "authenticationsettingsdialog|inpassword_label" msgid "Pass_word:" -msgstr "_Passord:" +msgstr "Passord:" #. ETqet #: sw/uiconfig/swriter/ui/autoformattable.ui:16 @@ -10424,7 +10424,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:39 msgctxt "autoformattable|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "Lukker dialogvindauet og avbryter alle endringene." +msgstr "Lukker dialogvinduet og avbryter alle endringene." #. V6Tpf #: sw/uiconfig/swriter/ui/autoformattable.ui:60 @@ -10544,7 +10544,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:12 msgctxt "autotext|new" msgid "_New" -msgstr "_Ny" +msgstr "Ny" #. 58pFi #: sw/uiconfig/swriter/ui/autotext.ui:16 @@ -10562,13 +10562,13 @@ #: sw/uiconfig/swriter/ui/autotext.ui:29 msgctxt "autotext|extended_tip|newtext" msgid "Creates a new AutoText entry only from the text in the selection that you made in the current document. Graphics, tables and other objects are not included. You must first enter a name before you see this command." -msgstr "Lager et nytt autotekstelement med den markerte teksten i det gjeldende dokumentet... ... Grafikk, tabeller og andre objekt blir ikke tatt emd. Du må først skrive inn et navn før du kan se denne kommandoen" +msgstr "Lager et nytt autotekstelement med den markerte teksten i det gjeldende dokumentet... ... Grafikk, tabeller og andre objekt blir ikke tatt med. Du må først skrive inn et navn før du kan se denne kommandoen" #. YWzFB #: sw/uiconfig/swriter/ui/autotext.ui:38 msgctxt "autotext|copy" msgid "_Copy" -msgstr "_Kopier" +msgstr "Kopier" #. sCRvE #: sw/uiconfig/swriter/ui/autotext.ui:42 @@ -10586,13 +10586,13 @@ #: sw/uiconfig/swriter/ui/autotext.ui:55 msgctxt "autotext|extended_tip|replace" msgid "Replaces the contents of the selected AutoText entry with the selection that was made in the current document." -msgstr "Erstatter innholdet i den valgte opføringa for autotekst med den merkede teksten i dokumentet." +msgstr "Erstatter innholdet i den valgte opføringen for autotekst med den merkede teksten i dokumentet." #. KEn5J #: sw/uiconfig/swriter/ui/autotext.ui:64 msgctxt "autotext|replacetext" msgid "Rep_lace (text only)" -msgstr "Erstatt (_bare tekst)" +msgstr "Erstatt (bare tekst)" #. 9d3fF #: sw/uiconfig/swriter/ui/autotext.ui:72 @@ -10610,13 +10610,13 @@ #: sw/uiconfig/swriter/ui/autotext.ui:85 msgctxt "autotext|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. WZNHC #: sw/uiconfig/swriter/ui/autotext.ui:99 msgctxt "autotext|edit" msgid "_Edit" -msgstr "_Rediger" +msgstr "Rediger" #. iakGZ #: sw/uiconfig/swriter/ui/autotext.ui:103 @@ -10628,7 +10628,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:118 msgctxt "autotext|macro" msgid "_Macro..." -msgstr "_Makro …" +msgstr "Makro …" #. Eum5k #: sw/uiconfig/swriter/ui/autotext.ui:122 @@ -10640,7 +10640,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:137 msgctxt "autotext|import" msgid "_Import..." -msgstr "_Importer …" +msgstr "Importer …" #. MVT2K #: sw/uiconfig/swriter/ui/autotext.ui:141 @@ -10658,7 +10658,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:174 msgctxt "autotext|autotext" msgid "AutoTe_xt" -msgstr "_Autotekst" +msgstr "Autotekst" #. kDwAj #: sw/uiconfig/swriter/ui/autotext.ui:186 @@ -10670,7 +10670,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:198 msgctxt "autotext|categories" msgid "Cat_egories..." -msgstr "Kat_egorier …" +msgstr "Kategorier …" #. t3kjh #: sw/uiconfig/swriter/ui/autotext.ui:205 @@ -10682,7 +10682,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:217 msgctxt "autotext|path" msgid "_Path..." -msgstr "_Sti …" +msgstr "Sti …" #. JzGXV #: sw/uiconfig/swriter/ui/autotext.ui:224 @@ -10694,13 +10694,13 @@ #: sw/uiconfig/swriter/ui/autotext.ui:250 msgctxt "autotext|insert" msgid "_Insert" -msgstr "Sett _inn" +msgstr "Sett inn" #. VsqAk #: sw/uiconfig/swriter/ui/autotext.ui:316 msgctxt "autotext|relfile" msgid "_File system" -msgstr "_Filsystem" +msgstr "Filsystem" #. UXSeo #: sw/uiconfig/swriter/ui/autotext.ui:325 @@ -10712,7 +10712,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:336 msgctxt "autotext|relnet" msgid "Inter_net" -msgstr "Inter_nett" +msgstr "Internett" #. KnzU2 #: sw/uiconfig/swriter/ui/autotext.ui:345 @@ -10730,7 +10730,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:391 msgctxt "autotext|inserttip" msgid "_Display remainder of name as suggestion while typing" -msgstr "_Vis resten av navnet som et forslag når du skriver" +msgstr "Vis resten av navnet som et forslag når du skriver" #. GdqFE #: sw/uiconfig/swriter/ui/autotext.ui:417 @@ -10754,7 +10754,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:469 msgctxt "autotext|extended_tip|shortname" msgid "Displays the shortcut for the selected AutoText entry. If you are creating a new AutoText entry, type the shortcut that you want to use for the entry." -msgstr "Viser snarveien til den valgte oppføringa for autotekst. Hvis du lager en ny oppføring for autotekst, kan du skrive inn snarveien du vil bruke for oppføringen." +msgstr "Viser snarveien til den valgte oppføringen for autotekst. Hvis du lager en ny oppføring for autotekst, kan du skrive inn snarveien du vil bruke for oppføringen." #. NBAos #: sw/uiconfig/swriter/ui/autotext.ui:519 @@ -10790,7 +10790,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:61 msgctxt "bibliographyentry|extended_tip|edit" msgid "Opens the Define Bibliography Entry dialog where you can edit the selected bibliography record." -msgstr "Åpner dialogvinduet Skriv inn litteraturhenvisning, der du kan redigere den valgte posten i litteraturlista." +msgstr "Åpner dialogvinduet Skriv inn litteraturhenvisning, der du kan redigere den valgte posten i litteraturlisten." #. zo8CS #: sw/uiconfig/swriter/ui/bibliographyentry.ui:80 @@ -10838,7 +10838,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:184 msgctxt "bibliographyentry|extended_tip|fromdocument" msgid "Inserts a reference from the bibliography records that are stored in the current document." -msgstr "setter inn en referanse fra litteraturhenvisningene som er lagret i det aktive dokumentet." +msgstr "Setter inn en referanse fra litteraturhenvisningene som er lagret i det aktive dokumentet." #. AhW2w #: sw/uiconfig/swriter/ui/bibliographyentry.ui:201 @@ -10898,7 +10898,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:27 msgctxt "bulletsandnumbering|user" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. XWsAH #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:41 @@ -10958,7 +10958,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:58 msgctxt "businessdatapage|countryft" msgid "Co_untry/state:" -msgstr "Land/stat:" +msgstr "Land/Stat:" #. E22ms #: sw/uiconfig/swriter/ui/businessdatapage.ui:72 @@ -10970,7 +10970,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:86 msgctxt "businessdatapage|phoneft" msgid "Fa_x:" -msgstr "_Faks:" +msgstr "Faks:" #. FFXCg #: sw/uiconfig/swriter/ui/businessdatapage.ui:92 @@ -10982,7 +10982,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:105 msgctxt "businessdatapage|faxft" msgid "Homepage/email:" -msgstr "Hjemmeside / e-post" +msgstr "Hjemmeside/e-post" #. dYqg2 #: sw/uiconfig/swriter/ui/businessdatapage.ui:130 @@ -11042,7 +11042,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:246 msgctxt "extended tip | email" msgid "Type your company email address." -msgstr "" +msgstr "Skriv inn firmaets e-postadresse." #. CCKWa #: sw/uiconfig/swriter/ui/businessdatapage.ui:265 @@ -11066,7 +11066,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:310 msgctxt "businessdatapage|icityft" msgid "_Zip/city:" -msgstr "Postnr./poststed:" +msgstr "Postnr./Poststed:" #. sZyRB #: sw/uiconfig/swriter/ui/businessdatapage.ui:335 @@ -11102,7 +11102,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:416 msgctxt "extended tips | country" msgid "Company country" -msgstr "Bedriftens virksomhets land" +msgstr "Bedriftens hjemland" #. ZFNQd #: sw/uiconfig/swriter/ui/businessdatapage.ui:434 @@ -11210,13 +11210,13 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:142 msgctxt "captionoptions|label5" msgid "_Level:" -msgstr "_Nivå:" +msgstr "Nivå:" #. 3istp #: sw/uiconfig/swriter/ui/captionoptions.ui:156 msgctxt "captionoptions|label6" msgid "_Separator:" -msgstr "_Skilletegn:" +msgstr "Skilletegn:" #. ycswr #: sw/uiconfig/swriter/ui/captionoptions.ui:174 @@ -11240,7 +11240,7 @@ #: sw/uiconfig/swriter/ui/captionoptions.ui:240 msgctxt "captionoptions|border_and_shadow" msgid "_Apply border and shadow" -msgstr "_Bruk ramme og bakgrunnsskygge" +msgstr "Bruk ramme og bakgrunnsskygge" #. 6tDNR #: sw/uiconfig/swriter/ui/captionoptions.ui:250 @@ -11360,7 +11360,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:360 msgctxt "cardmediumpage|continuous" msgid "_Continuous" -msgstr "_Sammenhengende" +msgstr "Sammenhengende" #. ZHCJD #: sw/uiconfig/swriter/ui/cardmediumpage.ui:370 @@ -11372,7 +11372,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:381 msgctxt "cardmediumpage|sheet" msgid "_Sheet" -msgstr "_Ark" +msgstr "Ark" #. Z5Zyq #: sw/uiconfig/swriter/ui/cardmediumpage.ui:414 @@ -11384,7 +11384,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:428 msgctxt "cardmediumpage|label3" msgid "_Type:" -msgstr "_Type:" +msgstr "Type:" #. h9Uch #: sw/uiconfig/swriter/ui/cardmediumpage.ui:446 @@ -11426,7 +11426,7 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:103 msgctxt "ccdialog|label2" msgid "_Cc:" -msgstr "_Cc:" +msgstr "Cc:" #. LKsro #: sw/uiconfig/swriter/ui/ccdialog.ui:117 @@ -11444,13 +11444,13 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:150 msgctxt "ccdialog|extended_tip|cc" msgid "Enter the recipients of email copies, separated by a semicolon (;)." -msgstr "" +msgstr "Skriv inn mottakerne av e-postkopier, atskilt med semikolon (;)." #. BCsoU #: sw/uiconfig/swriter/ui/ccdialog.ui:168 msgctxt "ccdialog|extended_tip|bcc" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Skriv inn mottakerne av e-post blind-kopier, atskilt med semikolon (;)." #. P3CcW #: sw/uiconfig/swriter/ui/ccdialog.ui:185 @@ -11468,13 +11468,13 @@ #: sw/uiconfig/swriter/ui/characterproperties.ui:153 msgctxt "characterproperties|font" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. bwwEA #: sw/uiconfig/swriter/ui/characterproperties.ui:200 msgctxt "characterproperties|fonteffects" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. CV8Tr #: sw/uiconfig/swriter/ui/characterproperties.ui:248 @@ -11540,13 +11540,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:95 msgctxt "charurlpage|extended_tip|eventpb" msgid "Specify an event that triggers when you click the hyperlink." -msgstr "" +msgstr "Spesifiser en hendelse som utløses når du klikker på hyperkoblingen." #. MhJbE #: sw/uiconfig/swriter/ui/charurlpage.ui:113 msgctxt "charurlpage|extended_tip|urled" msgid "Enter a URL for the file that you want to open when you click the hyperlink." -msgstr ">Skriv inn en nettadresse til filen du vil åpne når du klikker på hyperlenken." +msgstr "Skriv inn en nettadresse til filen du vil åpne når du klikker på hyperlenken." #. YGnoF #: sw/uiconfig/swriter/ui/charurlpage.ui:131 @@ -11558,7 +11558,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:149 msgctxt "charurlpage|extended_tip|texted" msgid "Enter the text that you want to display for the hyperlink." -msgstr "" +msgstr "Skriv inn teksten du vil vise for hyperkoblingen." #. BmLb8 #: sw/uiconfig/swriter/ui/charurlpage.ui:160 @@ -11570,13 +11570,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:167 msgctxt "charurlpage|extended_tip|urlpb" msgid "Locate the file that you want to link to, and then click Open." -msgstr "" +msgstr "Finn filen du vil koble til, og klikk deretter Åpne." #. ha6rk #: sw/uiconfig/swriter/ui/charurlpage.ui:190 msgctxt "charurlpage|extended_tip|targetfrmlb" msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list." -msgstr "" +msgstr "Skriv inn navnet på rammen du vil at den koblede filen skal åpne i, eller velg en forhåndsdefinert ramme fra listen." #. CQvaG #: sw/uiconfig/swriter/ui/charurlpage.ui:222 @@ -11600,13 +11600,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:288 msgctxt "charurlpage|extended_tip|visitedlb" msgid "Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "" +msgstr "Velg en formateringsstil som skal brukes for besøkte lenker fra listen. For å legge til eller endre en stil i denne listen, lukk denne dialogboksen og klikk på Stil-ikonet på formateringsverktøylinjen." #. w7Cdu #: sw/uiconfig/swriter/ui/charurlpage.ui:303 msgctxt "charurlpage|extended_tip|unvisitedlb" msgid "Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "" +msgstr "Velg en formateringsstil som skal brukes for ubesøkte lenker fra listen. For å legge til eller endre en stil i denne listen, lukk denne dialogboksen og klikk på Stil-ikonet på formateringsverktøylinjen." #. 43fvG #: sw/uiconfig/swriter/ui/charurlpage.ui:320 @@ -11708,31 +11708,31 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:451 msgctxt "columnpage|linestyleft" msgid "St_yle:" -msgstr "St_il:" +msgstr "Stil:" #. iTh5i #: sw/uiconfig/swriter/ui/columnpage.ui:465 msgctxt "columnpage|linewidthft" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. fEm38 #: sw/uiconfig/swriter/ui/columnpage.ui:479 msgctxt "columnpage|lineheightft" msgid "H_eight:" -msgstr "_Høyde:" +msgstr "Høyde:" #. vKEyi #: sw/uiconfig/swriter/ui/columnpage.ui:493 msgctxt "columnpage|lineposft" msgid "_Position:" -msgstr "_Posisjon:" +msgstr "Posisjon:" #. yhqBe #: sw/uiconfig/swriter/ui/columnpage.ui:516 msgctxt "columnpage|extended_tip|linestylelb" msgid "Select the formatting style for the column separator line. If you do not want a separator line, choose \"None\"." -msgstr "Velg en formateringsstil for skillelinja mellom spalter. Velg «Ingen» hvis du ikke vil bruke noen skillelinje." +msgstr "Velg en formateringsstil for skillelinjen mellom spalter. Velg «Ingen» hvis du ikke vil bruke noen skillelinje." #. DcSGt #: sw/uiconfig/swriter/ui/columnpage.ui:530 @@ -11756,19 +11756,19 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:536 msgctxt "columnpage|extended_tip|lineposlb" msgid "Select the vertical alignment of the separator line. This option is only available if Height value of the line is less than 100%." -msgstr "Velg hvor skillelinja skal plasseres i høyderetning. Dette valget er bare tilgjengelig hvis den valgte verdien for linjas Høyde er mindre enn 100%." +msgstr "Velg hvor skillelinjen skal plasseres i høyderetning. Dette valget er bare tilgjengelig hvis den valgte verdien for linjens Høyde er mindre enn 100%." #. FMShH #: sw/uiconfig/swriter/ui/columnpage.ui:554 msgctxt "columnpage|extended_tip|lineheightmf" msgid "Enter the length of the separator line as a percentage of the height of the column area." -msgstr "Velg hvor høy skillelinja skal være, målt i prosent av høyden til spalteområdet." +msgstr "Velg hvor høy skillelinjen skal være, målt i prosent av høyden til spalteområdet." #. kkGNR #: sw/uiconfig/swriter/ui/columnpage.ui:598 msgctxt "columnpage|linecolorft" msgid "_Color:" -msgstr "_Farge:" +msgstr "Farge:" #. 9o7DQ #: sw/uiconfig/swriter/ui/columnpage.ui:634 @@ -11840,13 +11840,13 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:780 msgctxt "columnpage|applytoft" msgid "_Apply to:" -msgstr "_Bruk på:" +msgstr "Bruk på:" #. rzBnm #: sw/uiconfig/swriter/ui/columnpage.ui:807 msgctxt "columnpage|textdirectionft" msgid "Text _direction:" -msgstr "Tekst_retning:" +msgstr "Tekst retning:" #. dcDde #: sw/uiconfig/swriter/ui/columnpage.ui:851 @@ -11876,7 +11876,7 @@ #: sw/uiconfig/swriter/ui/columnwidth.ui:106 msgctxt "columnwidth|label2" msgid "Column:" -msgstr "_Kolonne:" +msgstr "Kolonne:" #. DAK7Y #: sw/uiconfig/swriter/ui/columnwidth.ui:120 @@ -11948,7 +11948,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:182 msgctxt "conditionpage|extended_tip|apply" msgid "Click Apply to apply the selected Paragraph Style to the defined context." -msgstr "" +msgstr "Klikk Bruk for å bruke den valgte avsnittstypen i den definerte konteksten." #. xC6d7 #: sw/uiconfig/swriter/ui/conditionpage.ui:230 @@ -11960,7 +11960,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:241 msgctxt "conditionpage|extended_tip|styles" msgid "A list of all Paragraph Styles which can be assigned to a context is contained in the list box." -msgstr "Denne lista viser alle avsnittsstilene som kan brukes som en sammenheng." +msgstr "Denne listen viser alle avsnittsstilene som kan brukes som en sammenheng." #. xExAz #: sw/uiconfig/swriter/ui/conditionpage.ui:259 @@ -12242,7 +12242,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:308 msgctxt "converttexttable|repeatheading" msgid "Repeat heading" -msgstr "Gjenta overskrifta" +msgstr "Gjenta overskriften" #. YhBhC #: sw/uiconfig/swriter/ui/converttexttable.ui:319 @@ -12320,7 +12320,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:185 msgctxt "createaddresslist|VIEW_ENTRIES" msgid "Sho_w entry number" -msgstr "Vis _oppføringsnummer" +msgstr "Vis oppføringsnummer" #. DhAsp #: sw/uiconfig/swriter/ui/createaddresslist.ui:206 @@ -12386,19 +12386,19 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:349 msgctxt "createaddresslist|NEW" msgid "_New" -msgstr "_Ny" +msgstr "Ny" #. dUNG3 #: sw/uiconfig/swriter/ui/createaddresslist.ui:356 msgctxt "createaddresslist|extended_tip|NEW" msgid "Adds a new blank record to the address list." -msgstr "Legger til en ny, tom post i adresselista." +msgstr "Legger til en ny, tom post i adresselisten." #. jt8fG #: sw/uiconfig/swriter/ui/createaddresslist.ui:368 msgctxt "createaddresslist|DELETE" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. 9BCh5 #: sw/uiconfig/swriter/ui/createaddresslist.ui:375 @@ -12410,7 +12410,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:387 msgctxt "createaddresslist|FIND" msgid "_Find..." -msgstr "_Finn …" +msgstr "Finn …" #. hiYxd #: sw/uiconfig/swriter/ui/createaddresslist.ui:394 @@ -12422,7 +12422,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:406 msgctxt "createaddresslist|CUSTOMIZE" msgid "C_ustomize..." -msgstr "_Tilpass …" +msgstr "Tilpass …" #. Y965L #: sw/uiconfig/swriter/ui/createaddresslist.ui:413 @@ -12476,13 +12476,13 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:26 msgctxt "customizeaddrlistdialog|CustomizeAddrListDialog" msgid "Customize Address List" -msgstr "Tilpass adresselista" +msgstr "Tilpass adresselisten" #. Mfeh7 #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:111 msgctxt "customizeaddrlistdialog|add" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. aU2jL #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:118 @@ -12500,7 +12500,7 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:149 msgctxt "customizeaddrlistdialog|rename" msgid "_Rename..." -msgstr "_Endre navn …" +msgstr "Endre navn …" #. 8QggP #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:156 @@ -12512,7 +12512,7 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:184 msgctxt "customizeaddrlistdialog|label1" msgid "A_ddress list elements:" -msgstr "_Elementer i adresselista:" +msgstr "Elementer i adresselisten:" #. AxRrt #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:226 @@ -12554,7 +12554,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:62 msgctxt "dropcapspage|checkCB_SWITCH" msgid "_Display drop caps" -msgstr "_Vis innfelte forbokstaver" +msgstr "Vis innfelte forbokstaver" #. PEHkg #: sw/uiconfig/swriter/ui/dropcapspage.ui:71 @@ -12566,7 +12566,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:83 msgctxt "dropcapspage|checkCB_WORD" msgid "_Whole word" -msgstr "_Hele ord" +msgstr "Hele ord" #. x9AVP #: sw/uiconfig/swriter/ui/dropcapspage.ui:92 @@ -12578,23 +12578,22 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:106 msgctxt "dropcapspage|labelFT_DROPCAPS" msgid "Number of _characters:" -msgstr "_Antall tegn:" +msgstr "Antall tegn:" #. 5R57p #: sw/uiconfig/swriter/ui/dropcapspage.ui:120 msgctxt "dropcapspage|labelTXT_LINES" msgid "_Lines:" -msgstr "_Linjer:" +msgstr "Linjer:" #. fx3xM #: sw/uiconfig/swriter/ui/dropcapspage.ui:134 msgctxt "dropcapspage|labelTXT_DISTANCE" msgid "_Space to text:" -msgstr "_Avstand til tekst:" +msgstr "Avstand til tekst:" #. hsw2F #: sw/uiconfig/swriter/ui/dropcapspage.ui:154 -#, fuzzy msgctxt "dropcapspage|extended_tip|spinFLD_DROPCAPS" msgid "Enter the number of characters to convert to drop caps." msgstr "Velg hvor mange tegn som skal gjøres om til innfelte forbokstaver." @@ -12603,7 +12602,7 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:173 msgctxt "dropcapspage|extended_tip|spinFLD_LINES" msgid "Enter the number of lines that you want the drop cap to extend downward from the first line of the paragraph. Shorter paragraphs will not get drop caps." -msgstr "Velg hvor mange linjer nedover den innfelte forbokstaven kan strekke seg fra den første linja i avsnittet. Innfelt forbokstav kan ikke brukes i korte avsnitt." +msgstr "Velg hvor mange linjer nedover den innfelte forbokstaven kan strekke seg fra den første linjen i avsnittet. Innfelt forbokstav kan ikke brukes i korte avsnitt." #. tZURF #: sw/uiconfig/swriter/ui/dropcapspage.ui:193 @@ -12621,13 +12620,13 @@ #: sw/uiconfig/swriter/ui/dropcapspage.ui:245 msgctxt "dropcapspage|labelTXT_TEXT" msgid "_Text:" -msgstr "_Tekst:" +msgstr "Tekst:" #. MdKAS #: sw/uiconfig/swriter/ui/dropcapspage.ui:259 msgctxt "dropcapspage|labelTXT_TEMPLATE" msgid "Character st_yle:" -msgstr "_Tegnstil:" +msgstr "Tegnstil:" #. rmFud #: sw/uiconfig/swriter/ui/dropcapspage.ui:278 @@ -12723,7 +12722,7 @@ #: sw/uiconfig/swriter/ui/editcategories.ui:69 msgctxt "editcategories|rename" msgid "_Rename" -msgstr "_Endre navn" +msgstr "Endre navn" #. HmC7z #: sw/uiconfig/swriter/ui/editcategories.ui:77 @@ -12807,7 +12806,7 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:134 msgctxt "editfielddialog|edit" msgid "_Edit" -msgstr "_Rediger" +msgstr "Rediger" #. LJAnh #: sw/uiconfig/swriter/ui/editfielddialog.ui:139 @@ -12837,7 +12836,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:65 msgctxt "editsectiondialog|options" msgid "_Options..." -msgstr "_Valg …" +msgstr "Valg …" #. 8SFsS #: sw/uiconfig/swriter/ui/editsectiondialog.ui:87 @@ -12867,7 +12866,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:272 msgctxt "editsectiondialog|link" msgid "_Link" -msgstr "_Lenke" +msgstr "Lenke" #. hDHGK #: sw/uiconfig/swriter/ui/editsectiondialog.ui:283 @@ -12879,7 +12878,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:294 msgctxt "editsectiondialog|dde" msgid "DD_E" -msgstr "DD_E" +msgstr "DDE" #. Mpbee #: sw/uiconfig/swriter/ui/editsectiondialog.ui:305 @@ -12909,7 +12908,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:368 msgctxt "editsectiondialog|sectionft" msgid "_Section" -msgstr "_Seksjon" +msgstr "Seksjon" #. SpkZg #: sw/uiconfig/swriter/ui/editsectiondialog.ui:393 @@ -12921,13 +12920,13 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:412 msgctxt "editsectiondialog|filenameft" msgid "_File name" -msgstr "_Filnavn" +msgstr "Filnavn" #. NTQ7u #: sw/uiconfig/swriter/ui/editsectiondialog.ui:427 msgctxt "editsectiondialog|ddeft" msgid "DDE _Command" -msgstr "_DDE_-kommando" +msgstr "DDE-kommando" #. MxWBb #: sw/uiconfig/swriter/ui/editsectiondialog.ui:460 @@ -12945,13 +12944,13 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:510 msgctxt "editsectiondialog|extended_tip|protect" msgid "Prevents the selected section from being edited." -msgstr "Hiondrer den valgte seksjonen fra å bli endret" +msgstr "Hindrer den valgte seksjonen fra å bli endret" #. cCKhF #: sw/uiconfig/swriter/ui/editsectiondialog.ui:532 msgctxt "editsectiondialog|withpassword" msgid "Wit_h password" -msgstr "Med _passord" +msgstr "Med passord" #. hAHNw #: sw/uiconfig/swriter/ui/editsectiondialog.ui:545 @@ -12993,7 +12992,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:666 msgctxt "editsectiondialog|conditionft" msgid "_With Condition" -msgstr "_Med vilkår" +msgstr "Med vilkår" #. yHCZA #: sw/uiconfig/swriter/ui/editsectiondialog.ui:686 @@ -13011,7 +13010,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:748 msgctxt "editsectiondialog|editinro" msgid "E_ditable in read-only document" -msgstr "_Redigerbar i skrivebeskyttede dokumenter" +msgstr "Redigerbar i skrivebeskyttede dokumenter" #. ndfNc #: sw/uiconfig/swriter/ui/editsectiondialog.ui:771 @@ -13095,7 +13094,7 @@ #: sw/uiconfig/swriter/ui/endnotepage.ui:222 msgctxt "endnotepage|extended_tip|parastylelb" msgid "Select the paragraph style for the endnote text. Only special styles can be selected." -msgstr "" +msgstr "Velg avsnittstil for sluttnoteteksten. Bare spesielle stiler kan velges." #. 3CM3n #: sw/uiconfig/swriter/ui/endnotepage.ui:238 @@ -13149,7 +13148,7 @@ #: sw/uiconfig/swriter/ui/envaddresspage.ui:65 msgctxt "envaddresspage|label2" msgid "Addr_essee" -msgstr "_Mottaker" +msgstr "Mottaker" #. ZEtSY #: sw/uiconfig/swriter/ui/envaddresspage.ui:100 @@ -13209,7 +13208,7 @@ #: sw/uiconfig/swriter/ui/envaddresspage.ui:300 msgctxt "envaddresspage|sender" msgid "_Sender" -msgstr "_Avsender" +msgstr "Avsender" #. 82EGX #: sw/uiconfig/swriter/ui/envaddresspage.ui:342 @@ -13233,19 +13232,19 @@ #: sw/uiconfig/swriter/ui/envdialog.ui:24 msgctxt "envdialog|ok" msgid "_New Document" -msgstr "_Nytt dokument" +msgstr "Nytt dokument" #. KfH9f #: sw/uiconfig/swriter/ui/envdialog.ui:40 msgctxt "envdialog|user" msgid "_Insert" -msgstr "_Sett inn" +msgstr "Sett inn" #. Fe8UQ #: sw/uiconfig/swriter/ui/envdialog.ui:54 msgctxt "envdialog|modify" msgid "_Modify" -msgstr "_Endre" +msgstr "Endre" #. ixXKv #: sw/uiconfig/swriter/ui/envdialog.ui:163 @@ -13407,13 +13406,13 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:566 msgctxt "envformatpage|label13" msgid "_Width" -msgstr "_Bredde" +msgstr "Bredde" #. juYHj #: sw/uiconfig/swriter/ui/envformatpage.ui:580 msgctxt "envformatpage|label14" msgid "_Height" -msgstr "_Høyde" +msgstr "Høyde" #. SmCXR #: sw/uiconfig/swriter/ui/envformatpage.ui:601 @@ -13455,7 +13454,7 @@ #: sw/uiconfig/swriter/ui/envprinterpage.ui:104 msgctxt "envprinterpage|top" msgid "_Print from top" -msgstr "Skriv ut fra _toppen" +msgstr "Skriv ut fra toppen" #. Z8GPF #: sw/uiconfig/swriter/ui/envprinterpage.ui:114 @@ -13467,7 +13466,7 @@ #: sw/uiconfig/swriter/ui/envprinterpage.ui:126 msgctxt "envprinterpage|bottom" msgid "Print from _bottom" -msgstr "Skriv ut fra _bunnen" +msgstr "Skriv ut fra bunnen" #. zCFHE #: sw/uiconfig/swriter/ui/envprinterpage.ui:136 @@ -13479,13 +13478,13 @@ #: sw/uiconfig/swriter/ui/envprinterpage.ui:150 msgctxt "envprinterpage|label3" msgid "_Shift right" -msgstr "Flytt til _høyre" +msgstr "Flytt til høyre" #. 6yGCw #: sw/uiconfig/swriter/ui/envprinterpage.ui:164 msgctxt "envprinterpage|label4" msgid "Shift _down" -msgstr "Flytt _nedover" +msgstr "Flytt nedover" #. aNjCh #: sw/uiconfig/swriter/ui/envprinterpage.ui:184 @@ -13503,73 +13502,73 @@ #: sw/uiconfig/swriter/ui/envprinterpage.ui:222 msgctxt "envprinterpage|horileftl|tooltip_text" msgid "Horizontal Left" -msgstr "Vannrett, venstre" +msgstr "Horisontalt, Venstre" #. EqZR7 #: sw/uiconfig/swriter/ui/envprinterpage.ui:238 msgctxt "envprinterpage|horicenterl|tooltip_text" msgid "Horizontal Center" -msgstr "Midtstill vannrett" +msgstr "Midtstill Horisontalt" #. CCD94 #: sw/uiconfig/swriter/ui/envprinterpage.ui:254 msgctxt "envprinterpage|horirightl|tooltip_text" msgid "Horizontal Right" -msgstr "Vannrett, høyre" +msgstr "Horisontalt, Høyre" #. odBTo #: sw/uiconfig/swriter/ui/envprinterpage.ui:270 msgctxt "envprinterpage|vertleftl|tooltip_text" msgid "Vertical Left" -msgstr "Loddrett, venstre" +msgstr "Vertikalt, Venstre" #. HKeFF #: sw/uiconfig/swriter/ui/envprinterpage.ui:286 msgctxt "envprinterpage|vertcenterl|tooltip_text" msgid "Vertical Center" -msgstr "Loddrett, midtstilt" +msgstr "Vertikalt, midtstilt" #. tC3Re #: sw/uiconfig/swriter/ui/envprinterpage.ui:302 msgctxt "envprinterpage|vertrightl|tooltip_text" msgid "Vertical Right" -msgstr "Loddrett til høyre" +msgstr "Vertikalt til Høyre" #. CzGUJ #: sw/uiconfig/swriter/ui/envprinterpage.ui:331 msgctxt "envprinterpage|horileftu|tooltip_text" msgid "Horizontal Left" -msgstr "Vannrett, venstre" +msgstr "Horisontalt, Venstre" #. tdktA #: sw/uiconfig/swriter/ui/envprinterpage.ui:347 msgctxt "envprinterpage|horicenteru|tooltip_text" msgid "Horizontal Center" -msgstr "Midtstill vannrett" +msgstr "Midtstill Horisontalt" #. MRjTn #: sw/uiconfig/swriter/ui/envprinterpage.ui:363 msgctxt "envprinterpage|horirightu|tooltip_text" msgid "Horizontal Right" -msgstr "Vannrett, høyre" +msgstr "Horisontalt, Høyre" #. AMfA3 #: sw/uiconfig/swriter/ui/envprinterpage.ui:379 msgctxt "envprinterpage|vertleftu|tooltip_text" msgid "Vertical Left" -msgstr "Loddrett, venstre" +msgstr "Vertikalt, Venstre" #. NPzAL #: sw/uiconfig/swriter/ui/envprinterpage.ui:395 msgctxt "envprinterpage|vertcenteru|tooltip_text" msgid "Vertical Center" -msgstr "Loddrett, midtstilt" +msgstr "Vertikalt, Midtstilt" #. sEMMZ #: sw/uiconfig/swriter/ui/envprinterpage.ui:411 msgctxt "envprinterpage|vertrightu|tooltip_text" msgid "Vertical Right" -msgstr "Loddrett til høyre" +msgstr "Vertikalt til Høyre" #. ZZ3Am #: sw/uiconfig/swriter/ui/envprinterpage.ui:437 @@ -13629,7 +13628,7 @@ #: sw/uiconfig/swriter/ui/exchangedatabases.ui:141 msgctxt "exchangedatabases|label6" msgid "_Available Databases" -msgstr "_Tilgjengelige databaser" +msgstr "Tilgjengelige databaser" #. 8KDES #: sw/uiconfig/swriter/ui/exchangedatabases.ui:153 @@ -13650,7 +13649,7 @@ "Use this dialog to replace the databases you access in your document via database fields, with other databases. You can only make one change at a time. Multiple selection is possible in the list on the left.\n" "Use the browse button to select a database file." msgstr "" -"Bruk dette dialogvinduet til å bytte ut databasen du bruker via databasefelter i dokumentet. Du kan bare gjøre en endring om gangen. I lista til venstre kan du gjøre flere valg samtidig.\n" +"Bruk dette dialogvinduet til å bytte ut databasen du bruker via databasefelter i dokumentet. Du kan bare gjøre en endring om gangen. I listen til venstre kan du gjøre flere valg samtidig.\n" "Bruk «Bla gjennom»-knappen for å lete fram en databasefil." #. QCPQK @@ -13693,7 +13692,7 @@ #: sw/uiconfig/swriter/ui/fielddialog.ui:37 msgctxt "fielddialog|ok" msgid "_Insert" -msgstr "_Sett inn" +msgstr "Sett inn" #. AYDUA #: sw/uiconfig/swriter/ui/fielddialog.ui:46 @@ -13759,7 +13758,7 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:97 msgctxt "findentrydialog|label1" msgid "F_ind" -msgstr "_Finn" +msgstr "Finn" #. svGxx #: sw/uiconfig/swriter/ui/findentrydialog.ui:116 @@ -13771,11 +13770,10 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:139 msgctxt "findentrydialog|findin" msgid "Find _only in" -msgstr "Finn _kun i" +msgstr "Finn kun i" #. vXdjr #: sw/uiconfig/swriter/ui/findentrydialog.ui:151 -#, fuzzy msgctxt "findentrydialog|extended_tip|findin" msgid "Restricts the search to one data field." msgstr "Begrenser søket til et bestemt datafelt." @@ -13790,25 +13788,25 @@ #: sw/uiconfig/swriter/ui/findentrydialog.ui:204 msgctxt "findentrydialog|extended_tip|FindEntryDialog" msgid "Searches for a record or recipient in the mail merge address list." -msgstr "Brukes til å søke etter en post eller en mottaker i adresselista for brevfletting" +msgstr "Brukes til å søke etter en post eller en mottaker i adresselisten for brevfletting" #. x6NKD #: sw/uiconfig/swriter/ui/flddbpage.ui:94 msgctxt "flddbpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i lista Databaseutvalg og trykke Sett inn." +msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i listen Databaseutvalg og trykke Sett inn." #. A5HF3 #: sw/uiconfig/swriter/ui/flddbpage.ui:107 msgctxt "flddbpage|label1" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. EdyCS #: sw/uiconfig/swriter/ui/flddbpage.ui:138 msgctxt "flddbpage|label5" msgid "_Condition" -msgstr "_Vilkår" +msgstr "Vilkår" #. AoBvb #: sw/uiconfig/swriter/ui/flddbpage.ui:156 @@ -13838,7 +13836,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:302 msgctxt "flddbpage|label2" msgid "Database S_election" -msgstr "" +msgstr "Database valg" #. JeBVb #: sw/uiconfig/swriter/ui/flddbpage.ui:328 @@ -13880,7 +13878,7 @@ #: sw/uiconfig/swriter/ui/flddbpage.ui:420 msgctxt "flddbpage|extended_tip|userdefinedcb" msgid "Applies the format that you select in the List of user-defined formats." -msgstr "Bruker formatet du velger i lista over selvvalgte formater." +msgstr "Bruker formatet du velger i listen over selvvalgte formater." #. FRBDf #: sw/uiconfig/swriter/ui/flddbpage.ui:440 @@ -13904,13 +13902,13 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:82 msgctxt "flddocinfopage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i lista Databaseutvalg og trykke Sett inn." +msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i listen Databaseutvalg og trykke Sett inn." #. 5B97z #: sw/uiconfig/swriter/ui/flddocinfopage.ui:95 msgctxt "flddocinfopage|label1" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. GAgPa #: sw/uiconfig/swriter/ui/flddocinfopage.ui:156 @@ -13922,7 +13920,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:169 msgctxt "flddocinfopage|label2" msgid "_Select" -msgstr "" +msgstr "Velg" #. oGvBL #: sw/uiconfig/swriter/ui/flddocinfopage.ui:237 @@ -13934,7 +13932,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:251 msgctxt "flddocinfopage|fixed" msgid "Fi_xed content" -msgstr "" +msgstr "Fast innhold" #. BojDo #: sw/uiconfig/swriter/ui/flddocinfopage.ui:260 @@ -13946,19 +13944,19 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:278 msgctxt "flddocinfopage|label3" msgid "_Format" -msgstr "" +msgstr "Format" #. BmH6G #: sw/uiconfig/swriter/ui/flddocumentpage.ui:103 msgctxt "flddocumentpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i lista Databaseutvalg og trykke Sett inn." +msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i listen Databaseutvalg og trykke Sett inn." #. pmEvX #: sw/uiconfig/swriter/ui/flddocumentpage.ui:116 msgctxt "flddocumentpage|label1" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. dfKEF #: sw/uiconfig/swriter/ui/flddocumentpage.ui:177 @@ -13970,7 +13968,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:190 msgctxt "flddocumentpage|label2" msgid "_Select" -msgstr "" +msgstr "Velg" #. xtXnr #: sw/uiconfig/swriter/ui/flddocumentpage.ui:267 @@ -13982,13 +13980,13 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:327 msgctxt "flddocumentpage|label3" msgid "_Format" -msgstr "" +msgstr "Format" #. k7KnK #: sw/uiconfig/swriter/ui/flddocumentpage.ui:343 msgctxt "flddocumentpage|fixed" msgid "Fi_xed content" -msgstr "" +msgstr "Fast innhold" #. TjKiH #: sw/uiconfig/swriter/ui/flddocumentpage.ui:352 @@ -14000,7 +13998,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:371 msgctxt "flddocumentpage|levelft" msgid "_Level" -msgstr "" +msgstr "Nivå" #. VX38D #: sw/uiconfig/swriter/ui/flddocumentpage.ui:389 @@ -14018,19 +14016,19 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:420 msgctxt "flddocumentpage|daysft" msgid "Offs_et in days" -msgstr "Forskyving i _dager" +msgstr "Forskyving i dager" #. QRcQF #: sw/uiconfig/swriter/ui/flddocumentpage.ui:434 msgctxt "flddocumentpage|minutesft" msgid "Offs_et in minutes" -msgstr "Forskyving i _minutter" +msgstr "Forskyving i minutter" #. mENqn #: sw/uiconfig/swriter/ui/flddocumentpage.ui:460 msgctxt "flddocumentpage|valueft" msgid "_Value" -msgstr "_Verdi" +msgstr "Verdi" #. GbjDM #: sw/uiconfig/swriter/ui/flddocumentpage.ui:478 @@ -14042,19 +14040,19 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:84 msgctxt "fldfuncpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i lista Databaseutvalg og trykke Sett inn." +msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i listen Databaseutvalg og trykke Sett inn." #. GvXix #: sw/uiconfig/swriter/ui/fldfuncpage.ui:97 msgctxt "fldfuncpage|label1" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. vSCUW #: sw/uiconfig/swriter/ui/fldfuncpage.ui:167 msgctxt "fldfuncpage|label4" msgid "_Select" -msgstr "" +msgstr "Velg" #. b3UqC #: sw/uiconfig/swriter/ui/fldfuncpage.ui:229 @@ -14066,13 +14064,13 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:242 msgctxt "fldfuncpage|label2" msgid "_Format" -msgstr "" +msgstr "Format" #. CGoTS #: sw/uiconfig/swriter/ui/fldfuncpage.ui:267 msgctxt "fldfuncpage|macro" msgid "_Macro..." -msgstr "_Makro …" +msgstr "Makro …" #. pHLUT #: sw/uiconfig/swriter/ui/fldfuncpage.ui:275 @@ -14084,7 +14082,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:295 msgctxt "fldfuncpage|valueft" msgid "_Value" -msgstr "_Verdi" +msgstr "Verdi" #. wUCw8 #: sw/uiconfig/swriter/ui/fldfuncpage.ui:314 @@ -14096,7 +14094,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:340 msgctxt "fldfuncpage|nameft" msgid "Na_me" -msgstr "_Navn" +msgstr "Navn" #. KyA2D #: sw/uiconfig/swriter/ui/fldfuncpage.ui:380 @@ -14126,7 +14124,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:475 msgctxt "fldfuncpage|itemft" msgid "It_em" -msgstr "El_ement" +msgstr "Element" #. zERBz #: sw/uiconfig/swriter/ui/fldfuncpage.ui:494 @@ -14138,13 +14136,13 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:519 msgctxt "fldfuncpage|extended_tip|add" msgid "Adds the Item to the list." -msgstr "Legger til elementet i lista." +msgstr "Legger til elementet i listen." #. 4KX6H #: sw/uiconfig/swriter/ui/fldfuncpage.ui:538 msgctxt "fldfuncpage|listitemft" msgid "Items on _list" -msgstr "Element i _lista" +msgstr "Element i listen" #. KegJr #: sw/uiconfig/swriter/ui/fldfuncpage.ui:581 @@ -14156,55 +14154,55 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:610 msgctxt "fldfuncpage|extended_tip|remove" msgid "Removes the selected item from the list." -msgstr "Fjerner det valgte elementet fra lista." +msgstr "Fjerner det valgte elementet fra listen." #. 4oMDF #: sw/uiconfig/swriter/ui/fldfuncpage.ui:622 msgctxt "fldfuncpage|up" msgid "Move _Up" -msgstr "Flytt _opp" +msgstr "Flytt opp" #. JwuHf #: sw/uiconfig/swriter/ui/fldfuncpage.ui:629 msgctxt "fldfuncpage|extended_tip|up" msgid "Moves the selected item up in the list." -msgstr "Flytter det valgte elementet opp i lista." +msgstr "Flytter det valgte elementet opp i listen." #. 5EA2P #: sw/uiconfig/swriter/ui/fldfuncpage.ui:641 msgctxt "fldfuncpage|down" msgid "Move Do_wn" -msgstr "Flytt _ned" +msgstr "Flytt ned" #. 8tg3f #: sw/uiconfig/swriter/ui/fldfuncpage.ui:648 msgctxt "fldfuncpage|extended_tip|down" msgid "Moves the selected item down in the list." -msgstr "Flytter det valgte elementet ned i lista." +msgstr "Flytter det valgte elementet ned i listen." #. 52SQ6 #: sw/uiconfig/swriter/ui/fldfuncpage.ui:674 msgctxt "fldfuncpage|listnameft" msgid "Na_me" -msgstr "_Navn" +msgstr "Navn" #. QGMno #: sw/uiconfig/swriter/ui/fldfuncpage.ui:693 msgctxt "fldfuncpage|extended_tip|listname" msgid "Enter a unique name for the Input list." -msgstr "Skriv inn et unikt navn på innlista." +msgstr "Skriv inn et unikt navn på innlisten." #. knXRc #: sw/uiconfig/swriter/ui/fldrefpage.ui:107 msgctxt "fldrefpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Selection list, and then click Insert." -msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i lista og trykke Sett inn." +msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i listen og trykke Sett inn." #. xiiPJ #: sw/uiconfig/swriter/ui/fldrefpage.ui:120 msgctxt "fldrefpage|label1" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. vhEDd #: sw/uiconfig/swriter/ui/fldrefpage.ui:181 @@ -14216,7 +14214,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:194 msgctxt "fldrefpage|label3" msgid "Insert _reference to" -msgstr "Sett inn _referanse til" +msgstr "Sett inn referanse til" #. bjLoy #: sw/uiconfig/swriter/ui/fldrefpage.ui:239 @@ -14234,25 +14232,25 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:329 msgctxt "fldrefpage|extended_tip|selecttip" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert." -msgstr "Viser de tilgjengelige feltene for felttypene som er valgt i lista Type. Du kan sette inn et felt ved å trykke feltet, velge et format i lista «Sett inn referanse til» og trykke Sett inn." +msgstr "Viser de tilgjengelige feltene for felttypene som er valgt i listen Type. Du kan sette inn et felt ved å trykke feltet, velge et format i listen «Sett inn referanse til» og trykke Sett inn." #. BFEfh #: sw/uiconfig/swriter/ui/fldrefpage.ui:374 msgctxt "fldrefpage|extended_tip|select" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click Insert." -msgstr "Viser de tilgjengelige feltene for felttypene som er valgt i lista Type. Du kan sette inn et felt ved å trykke feltet, velge et format i lista «Sett inn referanse til» og trykke Sett inn." +msgstr "Viser de tilgjengelige feltene for felttypene som er valgt i listen Type. Du kan sette inn et felt ved å trykke feltet, velge et format i listen «Sett inn referanse til» og trykke Sett inn." #. AXSpR #: sw/uiconfig/swriter/ui/fldrefpage.ui:393 msgctxt "fldrefpage|label2" msgid "S_election" -msgstr "_Utvalg" +msgstr "Utvalg" #. 49DaT #: sw/uiconfig/swriter/ui/fldrefpage.ui:421 msgctxt "fldrefpage|valueft" msgid "_Value" -msgstr "_Verdi" +msgstr "Verdi" #. w3coQ #: sw/uiconfig/swriter/ui/fldrefpage.ui:441 @@ -14264,7 +14262,7 @@ #: sw/uiconfig/swriter/ui/fldrefpage.ui:454 msgctxt "fldrefpage|nameft" msgid "Na_me" -msgstr "_Navn" +msgstr "Navn" #. oQ5CV #: sw/uiconfig/swriter/ui/fldrefpage.ui:473 @@ -14282,13 +14280,13 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:112 msgctxt "fldvarpage|extended_tip|type" msgid "Lists the available field types. To add a field to your document, click a field type, click a field in the Select list, and then click Insert." -msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i lista Databaseutvalg og trykke Sett inn." +msgstr "Viser en liste over tilgjengelige felttyper. Du kan legge til et felt i et dokument ved å trykke en felttype, velge et felt i listen Databaseutvalg og trykke Sett inn." #. MYGxL #: sw/uiconfig/swriter/ui/fldvarpage.ui:125 msgctxt "fldvarpage|label1" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. YfUrq #: sw/uiconfig/swriter/ui/fldvarpage.ui:201 @@ -14300,7 +14298,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:214 msgctxt "fldvarpage|label2" msgid "_Select" -msgstr "" +msgstr "Velg" #. ZuuQf #: sw/uiconfig/swriter/ui/fldvarpage.ui:306 @@ -14312,37 +14310,37 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:351 msgctxt "fldvarpage|extended_tip|format" msgid "In the Format list, define if the value is inserted as text or a number." -msgstr "I lista Format kan du velge om verdien skal settes inn som tekst eller som et tall." +msgstr "I listen Format kan du velge om verdien skal settes inn som tekst eller som et tall." #. WRjtn #: sw/uiconfig/swriter/ui/fldvarpage.ui:371 msgctxt "fldvarpage|label3" msgid "_Format" -msgstr "" +msgstr "Format" #. qPpKb #: sw/uiconfig/swriter/ui/fldvarpage.ui:388 msgctxt "fldvarpage|invisible" msgid "Invisi_ble" -msgstr "_Usynlig" +msgstr "Usynlig" #. 4SBL9 #: sw/uiconfig/swriter/ui/fldvarpage.ui:397 msgctxt "fldvarpage|extended_tip|invisible" msgid "Hides the field contents in the document." -msgstr "" +msgstr "Skjuler feltinnholdet i dokumentet." #. hapyp #: sw/uiconfig/swriter/ui/fldvarpage.ui:432 msgctxt "fldvarpage|label5" msgid "_Level" -msgstr "_Nivå" +msgstr "Nivå" #. tLcUz #: sw/uiconfig/swriter/ui/fldvarpage.ui:445 msgctxt "fldvarpage|separatorft" msgid "Se_parator" -msgstr "" +msgstr "Skille" #. wrAG3 #: sw/uiconfig/swriter/ui/fldvarpage.ui:460 @@ -14354,7 +14352,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:464 msgctxt "fldvarpage|extended_tip|level" msgid "Choose the heading or chapter level at which to restart numbering in the document." -msgstr "Velg overskrifta eller kapittelnivået der du vil at nummereringa i dokumentet skal starte på nytt." +msgstr "Velg overskriften eller kapittelnivået der du vil at nummereringen i dokumentet skal starte på nytt." #. ECBav #: sw/uiconfig/swriter/ui/fldvarpage.ui:479 @@ -14378,7 +14376,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:540 msgctxt "fldvarpage|nameft" msgid "Na_me" -msgstr "_Navn" +msgstr "Navn" #. JdsEc #: sw/uiconfig/swriter/ui/fldvarpage.ui:559 @@ -14390,7 +14388,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:572 msgctxt "fldvarpage|valueft" msgid "_Value" -msgstr "_Verdi" +msgstr "Verdi" #. Gvpef #: sw/uiconfig/swriter/ui/fldvarpage.ui:592 @@ -14408,7 +14406,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:618 msgctxt "fldvarpage|extended_tip|apply" msgid "Adds the user-defined field to the Select list." -msgstr "" +msgstr "Legger til det brukerdefinerte feltet i Velg-listen." #. GKfDe #: sw/uiconfig/swriter/ui/fldvarpage.ui:632 @@ -14420,7 +14418,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:637 msgctxt "fldvarpage|extended_tip|delete" msgid "Removes the user-defined field from the select list. You can only remove fields that are not used in the current document." -msgstr "" +msgstr "Fjerner det brukerdefinerte feltet fra listen. Du kan bare fjerne felt som ikke brukes i det gjeldende dokumentet." #. 27v8z #: sw/uiconfig/swriter/ui/floatingnavigation.ui:36 @@ -14576,7 +14574,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:66 msgctxt "footnoteareapage|maxheightpage" msgid "_Not larger than page area" -msgstr "_Aldri større enn sideområdet" +msgstr "Aldri større enn sideområdet" #. GSJFc #: sw/uiconfig/swriter/ui/footnoteareapage.ui:78 @@ -14588,7 +14586,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:90 msgctxt "footnoteareapage|maxheight" msgid "Maximum footnote _height" -msgstr "Største _høyde på fotnote" +msgstr "Største høyde på fotnote" #. bC7yH #: sw/uiconfig/swriter/ui/footnoteareapage.ui:104 @@ -14606,7 +14604,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:140 msgctxt "footnoteareapage|extended_tip|spacetotext" msgid "Enter the amount of space to leave between the bottom page margin and the first line of text in the footnote area." -msgstr "Velg hvor stor avstand det skal være mellom mellom bunnmargen på siden og den første linja med tekst i fotnoteområdet." +msgstr "Velg hvor stor avstand det skal være mellom mellom bunnmargen på siden og den første linjen med tekst i fotnoteområdet." #. BEuKg #: sw/uiconfig/swriter/ui/footnoteareapage.ui:164 @@ -14624,37 +14622,37 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:221 msgctxt "footnoteareapage|label4" msgid "_Position" -msgstr "_Plassering" +msgstr "Plassering" #. fzkPB #: sw/uiconfig/swriter/ui/footnoteareapage.ui:236 msgctxt "footnoteareapage|label5" msgid "_Style" -msgstr "_Stil" +msgstr "Stil" #. 7X5cr #: sw/uiconfig/swriter/ui/footnoteareapage.ui:251 msgctxt "footnoteareapage|label6" msgid "_Thickness" -msgstr "_Tykkelse" +msgstr "Tykkelse" #. myPFY #: sw/uiconfig/swriter/ui/footnoteareapage.ui:266 msgctxt "footnoteareapage|label7" msgid "_Color" -msgstr "_Farge" +msgstr "Farge" #. xdT9F #: sw/uiconfig/swriter/ui/footnoteareapage.ui:281 msgctxt "footnoteareapage|label8" msgid "_Length" -msgstr "_Lengde" +msgstr "Lengde" #. F3nWG #: sw/uiconfig/swriter/ui/footnoteareapage.ui:296 msgctxt "footnoteareapage|label9" msgid "_Spacing to footnote contents" -msgstr "_Avstand til innholdet i fotnotene" +msgstr "Avstand til innholdet i fotnotene" #. uZuEN #: sw/uiconfig/swriter/ui/footnoteareapage.ui:313 @@ -14678,7 +14676,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:319 msgctxt "footnoteareapage|extended_tip|position" msgid "Select the horizontal alignment for the line that separates the main text from the footnote area." -msgstr "Velg hvor linja som skiller hovedteksten fra fotnoteområdet, skal plasseres vannrett." +msgstr "Velg hvor linjen som skiller hovedteksten fra fotnoteområdet, skal plasseres horisontalt." #. sD8YC #: sw/uiconfig/swriter/ui/footnoteareapage.ui:343 @@ -14690,25 +14688,25 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:367 msgctxt "footnoteareapage|extended_tip|color" msgid "Select the color of the separator line." -msgstr "Velg fargen på separasjonslinja." +msgstr "Velg fargen på separasjonslinjen." #. vJxuj #: sw/uiconfig/swriter/ui/footnoteareapage.ui:387 msgctxt "footnoteareapage|extended_tip|length" msgid "Enter the length of the separator line as a percentage of the page width area." -msgstr "Angi lengden på skillelija angitt i prosent av sidebredden." +msgstr "Angi lengden på skillelinjen angitt i prosent av sidebredden." #. FBKJE #: sw/uiconfig/swriter/ui/footnoteareapage.ui:408 msgctxt "footnoteareapage|extended_tip|spacingtocontents" msgid "Enter the amount of space to leave between the separator line and the first line of the footnote area." -msgstr "Angi hvor avstand du vil ha mellom skillelinja og første linje i fotnoteområdet." +msgstr "Angi hvor avstand du vil ha mellom skillelinjen og første linje i fotnoteområdet." #. Fnt7q #: sw/uiconfig/swriter/ui/footnoteareapage.ui:429 msgctxt "footnoteareapage|extended_tip|thickness" msgid "Select the thickness of the separator line." -msgstr "Velg tykkelsen på separasjonslinja." +msgstr "Velg tykkelsen på separasjonslinjen." #. bUbrX #: sw/uiconfig/swriter/ui/footnoteareapage.ui:446 @@ -14720,7 +14718,7 @@ #: sw/uiconfig/swriter/ui/footnoteareapage.ui:461 msgctxt "footnoteareapage|extended_tip|FootnoteAreaPage" msgid "Specifies the layout options for footnotes, including the line that separates the footnote from the main body of document." -msgstr "Brukes til å angi valg for fotnoteoppsettet, blant annet linja som skiller fotnoten fra hoveddelen av dokumentet." +msgstr "Brukes til å angi valg for fotnoteoppsettet, blandt annet linjen som skiller fotnoten fra hoveddelen av dokumentet." #. PAqDe #: sw/uiconfig/swriter/ui/footnotepage.ui:42 @@ -14786,25 +14784,25 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:167 msgctxt "footnotepage|extended_tip|offsetnf" msgid "Enter the number for the first footnote in the document. This option is only available if you selected \"Per Document\" in the Counting box." -msgstr "Velg nummeret du vil gi den første fotnoten i dokumentet. Dette valget kan bare brukes når du har valgt «Per dokument» i lista Teller." +msgstr "Velg nummeret du vil gi den første fotnoten i dokumentet. Dette valget kan bare brukes når du har valgt «Per dokument» i listen Teller." #. RWgzD #: sw/uiconfig/swriter/ui/footnotepage.ui:181 msgctxt "footnotepage|liststore1" msgid "Per page" -msgstr "Per side" +msgstr "Pr. side" #. MELvZ #: sw/uiconfig/swriter/ui/footnotepage.ui:182 msgctxt "footnotepage|liststore1" msgid "Per chapter" -msgstr "Per kapittel" +msgstr "Pr. kapittel" #. oD7zV #: sw/uiconfig/swriter/ui/footnotepage.ui:183 msgctxt "footnotepage|liststore1" msgid "Per document" -msgstr "Per dokument" +msgstr "Pr. dokument" #. BDrKx #: sw/uiconfig/swriter/ui/footnotepage.ui:187 @@ -14856,7 +14854,6 @@ #. PM3nD #: sw/uiconfig/swriter/ui/footnotepage.ui:342 -#, fuzzy msgctxt "footnotepage|extended_tip|conted" msgid "Enter the text that you want to display when the footnotes are continued on the next page, for example, \"Continued on Page \". %PRODUCTNAME Writer automatically inserts the number of the following page." msgstr "Skriv inn teksten du vil vise når fotnotene fortsettes på neste side, for eksempel «Fortsetter på side ». %PRODUCTNAME Writer vil automatisk sette inn sidetallet til den neste siden." @@ -14883,7 +14880,7 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:421 msgctxt "footnotepage|extended_tip|parastylelb" msgid "Select the paragraph style for the footnote text. Only special styles can be selected." -msgstr "" +msgstr "Velg avsnittstil for fotnoteteksten. Bare spesielle stiler kan velges." #. bhosj #: sw/uiconfig/swriter/ui/footnotepage.ui:437 @@ -14925,19 +14922,19 @@ #: sw/uiconfig/swriter/ui/footnotepage.ui:524 msgctxt "footnotepage|extended_tip|FootnotePage" msgid "Specifies the formatting for footnotes." -msgstr "" +msgstr "Spesifiserer formateringen for fotnoter." #. MV5EC #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:57 msgctxt "footnotesendnotestabpage|ftnntnum" msgid "_Restart numbering" -msgstr "Start _nummereringa på nytt" +msgstr "Start nummereringen på nytt" #. iDDoD #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:67 msgctxt "footnotesendnotestabpage|extended_tip|ftnntnum" msgid "Restarts the footnote numbering at the number that you specify." -msgstr "Starter nummereringa av fotnoter på nytt med nummeret du velger." +msgstr "Starter nummereringen av fotnoter på nytt med nummeret du velger." #. Buptq #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93 @@ -14991,7 +14988,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:244 msgctxt "footnotesendnotestabpage|ftnntattextend" msgid "Collec_t at end of text" -msgstr "Samle ved slutten av _teksten" +msgstr "Samle ved slutten av teksten" #. uTqgF #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:254 @@ -15027,7 +15024,7 @@ #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:349 msgctxt "footnotesendnotestabpage|extended_tip|endntnum" msgid "Restarts the endnote numbering at the number that you specify." -msgstr "Starter nummereringa av sluttnoter på nytt med nummeret du velger." +msgstr "Starter nummereringen av sluttnoter på nytt med nummeret du velger." #. CjnZB #: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:375 @@ -15129,13 +15126,13 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:81 msgctxt "formattablepage|nameft" msgid "_Name" -msgstr "_Navn" +msgstr "Navn" #. GF8k3 #: sw/uiconfig/swriter/ui/formattablepage.ui:95 msgctxt "formattablepage|widthft" msgid "W_idth" -msgstr "B_redde" +msgstr "Bredde" #. wKDPo #: sw/uiconfig/swriter/ui/formattablepage.ui:114 @@ -15147,7 +15144,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:131 msgctxt "formattablepage|relwidth" msgid "Relati_ve" -msgstr "Relati_v" +msgstr "Relativ" #. mFN9w #: sw/uiconfig/swriter/ui/formattablepage.ui:140 @@ -15171,25 +15168,25 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:218 msgctxt "formattablepage|leftft" msgid "Lef_t" -msgstr "_Venstre" +msgstr "Venstre" #. u9DFD #: sw/uiconfig/swriter/ui/formattablepage.ui:233 msgctxt "formattablepage|rightft" msgid "Ri_ght" -msgstr "_Høyre" +msgstr "Høyre" #. rJya4 #: sw/uiconfig/swriter/ui/formattablepage.ui:249 msgctxt "formattablepage|aboveft" msgid "_Above" -msgstr "_Over" +msgstr "Over" #. i3rjD #: sw/uiconfig/swriter/ui/formattablepage.ui:264 msgctxt "formattablepage|belowft" msgid "_Below" -msgstr "_Under" +msgstr "Under" #. YngSM #: sw/uiconfig/swriter/ui/formattablepage.ui:284 @@ -15225,19 +15222,19 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:397 msgctxt "formattablepage|full" msgid "A_utomatic" -msgstr "A_utomatisk" +msgstr "Automatisk" #. RhGRy #: sw/uiconfig/swriter/ui/formattablepage.ui:407 msgctxt "formattablepage|extended_tip|full" msgid "Extends the table horizontally to the left and to the right page margins." -msgstr "Utvider tabellen vannrett mot venstre- og høyremargen." +msgstr "Utvider tabellen horisontalt mot venstre- og høyremargen." #. hYcCM #: sw/uiconfig/swriter/ui/formattablepage.ui:418 msgctxt "formattablepage|left" msgid "_Left" -msgstr "_Venstre" +msgstr "Venstre" #. dmVkC #: sw/uiconfig/swriter/ui/formattablepage.ui:428 @@ -15249,7 +15246,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:439 msgctxt "formattablepage|fromleft" msgid "_From left" -msgstr "_Fra venstre" +msgstr "Fra venstre" #. BAehY #: sw/uiconfig/swriter/ui/formattablepage.ui:449 @@ -15261,7 +15258,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:460 msgctxt "formattablepage|right" msgid "R_ight" -msgstr "_Høyre" +msgstr "Høyre" #. ezLvi #: sw/uiconfig/swriter/ui/formattablepage.ui:470 @@ -15273,25 +15270,25 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:481 msgctxt "formattablepage|center" msgid "_Center" -msgstr "_Midtstilt" +msgstr "Midtstilt" #. j2nPx #: sw/uiconfig/swriter/ui/formattablepage.ui:491 msgctxt "formattablepage|extended_tip|center" msgid "Centers the table horizontally on the page." -msgstr "Midtstiller tabellen vannrett på siden." +msgstr "Midtstiller tabellen horisontalt på siden." #. 52nix #: sw/uiconfig/swriter/ui/formattablepage.ui:502 msgctxt "formattablepage|free" msgid "_Manual" -msgstr "_Manuell" +msgstr "Manuell" #. nWCcJ #: sw/uiconfig/swriter/ui/formattablepage.ui:512 msgctxt "formattablepage|extended_tip|free" msgid "Horizontally aligns the table based on the values that you enter in the Left and Right boxes in the Spacing area." -msgstr "Justerer tabellen vannrett, basert på verdiene du velger i tallboksene Venstre og Høyre under Avstand." +msgstr "Justerer tabellen horisontalt, basert på verdiene du velger i tallboksene Venstre og Høyre under Avstand." #. pYDMp #: sw/uiconfig/swriter/ui/formattablepage.ui:530 @@ -15303,7 +15300,7 @@ #: sw/uiconfig/swriter/ui/formattablepage.ui:570 msgctxt "formattablepage|label53" msgid "Text _direction" -msgstr "Tekst_retning" +msgstr "Tekstretning" #. 6Yw3x #: sw/uiconfig/swriter/ui/formattablepage.ui:598 @@ -15393,13 +15390,13 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:87 msgctxt "frmaddpage|name_label" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. tpcqF #: sw/uiconfig/swriter/ui/frmaddpage.ui:101 msgctxt "frmaddpage|altname_label" msgid "_Alternative (Text only):" -msgstr "_Alternativ (kun tekst):" +msgstr "Alternativ (kun tekst):" #. j25pX #: sw/uiconfig/swriter/ui/frmaddpage.ui:117 @@ -15429,19 +15426,19 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:153 msgctxt "frmaddpage|prev_label" msgid "_Previous link:" -msgstr "_Forrige lenke:" +msgstr "Forrige lenke:" #. PcwqA #: sw/uiconfig/swriter/ui/frmaddpage.ui:167 msgctxt "frmaddpage|next_label" msgid "_Next link:" -msgstr "_Neste lenke:" +msgstr "Neste lenke:" #. cdFEu #: sw/uiconfig/swriter/ui/frmaddpage.ui:181 msgctxt "frmaddpage|description_label" msgid "_Description:" -msgstr "_Beskrivelse:" +msgstr "Beskrivelse:" #. CfXQR #: sw/uiconfig/swriter/ui/frmaddpage.ui:222 @@ -15453,7 +15450,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:255 msgctxt "frmaddpage|protectcontent" msgid "_Contents" -msgstr "_Innhold" +msgstr "Innhold" #. FrDqV #: sw/uiconfig/swriter/ui/frmaddpage.ui:264 @@ -15465,7 +15462,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:275 msgctxt "frmaddpage|protectframe" msgid "P_osition" -msgstr "_Plassering" +msgstr "Plassering" #. skuDE #: sw/uiconfig/swriter/ui/frmaddpage.ui:284 @@ -15477,7 +15474,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:295 msgctxt "frmaddpage|protectsize" msgid "_Size" -msgstr "_Størrelse" +msgstr "Størrelse" #. FEkTC #: sw/uiconfig/swriter/ui/frmaddpage.ui:304 @@ -15495,7 +15492,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:355 msgctxt "frmaddpage|label2" msgid "_Vertical alignment" -msgstr "_Loddrett justering" +msgstr "Vertikal justering" #. fzvfP #: sw/uiconfig/swriter/ui/frmaddpage.ui:368 @@ -15519,7 +15516,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:374 msgctxt "frmaddpage|extended_tip|vertalign" msgid "Specifies the vertical alignment of the frame's content. Mainly it means text content, but it also affects tables and other objects anchored to the text area (anchored as character, to character or to paragraph), for example frames, graphics or drawings." -msgstr "Bestemmer den loddrette justeringen av innholdet i rammen. Som oftest er dette tekstinenhold, men justeringen påvirker også tabeller og andre objekt som er forankret til tekstområdet som tegn, til tegn eller til avsnitt. Dette kan for eksempel være rammer, bilder eller tegninger." +msgstr "Bestemmer den vertikale justeringen av innholdet i rammen. Som oftest er dette tekstinenhold, men justeringen påvirker også tabeller og andre objekt som er forankret til tekstområdet som tegn, til tegn eller til avsnitt. Dette kan for eksempel være rammer, bilder eller tegninger." #. 2weJX #: sw/uiconfig/swriter/ui/frmaddpage.ui:391 @@ -15531,7 +15528,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:428 msgctxt "frmaddpage|editinreadonly" msgid "_Editable in read-only document" -msgstr "_Redigerbar i skrivebeskyttede dokumenter" +msgstr "Redigerbar i skrivebeskyttede dokumenter" #. GM7gD #: sw/uiconfig/swriter/ui/frmaddpage.ui:437 @@ -15543,7 +15540,7 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:449 msgctxt "frmaddpage|printframe" msgid "Prin_t" -msgstr "_Skriv ut" +msgstr "Skriv ut" #. URLpE #: sw/uiconfig/swriter/ui/frmaddpage.ui:458 @@ -15555,13 +15552,13 @@ #: sw/uiconfig/swriter/ui/frmaddpage.ui:475 msgctxt "frmaddpage|extended_tip|textflow" msgid "Specifies the preferred text flow direction in a frame. To use the default text flow settings for the page, select Use superordinate object settings from the list." -msgstr "Brukes til å velge ønsket tekstretning i en ramme. Velg Bruk innstillinger fra overordnet objekt i lista hvis du vil bruke standardinnstillingene for tekstretning på siden." +msgstr "Brukes til å velge ønsket tekstretning i en ramme. Velg Bruk innstillinger fra overordnet objekt i listen hvis du vil bruke standardinnstillingene for tekstretning på siden." #. ph8JN #: sw/uiconfig/swriter/ui/frmaddpage.ui:488 msgctxt "frmaddpage|textflow_label" msgid "_Text direction:" -msgstr "Tekst_retning:" +msgstr "Tekstretning:" #. MvNvt #: sw/uiconfig/swriter/ui/frmaddpage.ui:506 @@ -15597,19 +15594,19 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:125 msgctxt "frmtypepage|autowidthft" msgid "_Width (at least)" -msgstr "_Bredde (minst)" +msgstr "Bredde (minst)" #. gULKP #: sw/uiconfig/swriter/ui/frmtypepage.ui:139 msgctxt "frmtypepage|widthft" msgid "_Width" -msgstr "_Bredde" +msgstr "Bredde" #. 77XjV #: sw/uiconfig/swriter/ui/frmtypepage.ui:162 msgctxt "frmtypepage|relwidth" msgid "Relat_ive to" -msgstr "_Relativ til" +msgstr "Relativ til" #. H3kKU #: sw/uiconfig/swriter/ui/frmtypepage.ui:175 @@ -15621,7 +15618,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:192 msgctxt "frmtypepage|extended_tip|relwidthrelation" msgid "Decides what 100% width means: either text area (excluding margins) or the entire page (including margins)." -msgstr "Bestemmer what 100% vidde betyr: enten tekst område (unntattmarginer) eller hele siden (inklusive marginer)." +msgstr "Bestemmer hva 100% vidde betyr: enten tekst område (unntattmarginer) eller hele siden (inklusive marginer)." #. nAbJb #: sw/uiconfig/swriter/ui/frmtypepage.ui:232 @@ -15645,19 +15642,19 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:273 msgctxt "frmtypepage|autoheightft" msgid "H_eight (at least)" -msgstr "_Høyde (minst)" +msgstr "Høyde (minst)" #. TNaFa #: sw/uiconfig/swriter/ui/frmtypepage.ui:287 msgctxt "frmtypepage|heightft" msgid "H_eight" -msgstr "_Høyde" +msgstr "Høyde" #. uN2DT #: sw/uiconfig/swriter/ui/frmtypepage.ui:310 msgctxt "frmtypepage|relheight" msgid "Re_lative to" -msgstr "_Relativ til" +msgstr "Relativ til" #. 6BmoJ #: sw/uiconfig/swriter/ui/frmtypepage.ui:323 @@ -15669,13 +15666,13 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:340 msgctxt "frmtypepage|extended_tip|relheightrelation" msgid "Decides what 100% height means: either text area (excluding margins) or the entire page (including margins)." -msgstr "Bestemmer what 100% vidde betyr: enten tekst område (unntattmarginer) eller hele siden (inklusive marginer)." +msgstr "Bestemmer hva 100% vidde betyr: enten tekst område (unntattmarginer) eller hele siden (inklusive marginer)." #. htCBL #: sw/uiconfig/swriter/ui/frmtypepage.ui:365 msgctxt "frmtypepage|ratio" msgid "_Keep ratio" -msgstr "_Behold størrelsesforholdet" +msgstr "Behold størrelsesforholdet" #. RGWEJ #: sw/uiconfig/swriter/ui/frmtypepage.ui:374 @@ -15687,7 +15684,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:385 msgctxt "frmtypepage|origsize" msgid "_Original Size" -msgstr "_Original størrelse" +msgstr "Original størrelse" #. 4ZHrz #: sw/uiconfig/swriter/ui/frmtypepage.ui:393 @@ -15705,7 +15702,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:468 msgctxt "frmtypepage|topage" msgid "To _page" -msgstr "Til _side" +msgstr "Til side" #. bnxYw #: sw/uiconfig/swriter/ui/frmtypepage.ui:478 @@ -15717,7 +15714,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:489 msgctxt "frmtypepage|topara" msgid "To paragrap_h" -msgstr "Til _avsnitt" +msgstr "Til avsnitt" #. zuY6M #: sw/uiconfig/swriter/ui/frmtypepage.ui:499 @@ -15729,7 +15726,7 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:510 msgctxt "frmtypepage|tochar" msgid "To cha_racter" -msgstr "Til _tegn" +msgstr "Til tegn" #. CKgCn #: sw/uiconfig/swriter/ui/frmtypepage.ui:520 @@ -15741,19 +15738,19 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:531 msgctxt "frmtypepage|aschar" msgid "_As character" -msgstr "_Som tegn" +msgstr "Som tegn" #. idwGi #: sw/uiconfig/swriter/ui/frmtypepage.ui:541 msgctxt "frmtypepage|extended_tip|aschar" msgid "Anchors the selection as character. The height of the current line is resized to match the height of the selection." -msgstr "Forankrer utvalget som tegn. Høyden til den gjeldende linja endres slik at den passer til høyden på utvalget." +msgstr "Forankrer utvalget som tegn. Høyden til den gjeldende linjen endres slik at den passer til høyden på utvalget." #. TGg8f #: sw/uiconfig/swriter/ui/frmtypepage.ui:552 msgctxt "frmtypepage|toframe" msgid "To _frame" -msgstr "Til _ramme" +msgstr "Til ramme" #. 3DgCP #: sw/uiconfig/swriter/ui/frmtypepage.ui:574 @@ -15765,13 +15762,13 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:615 msgctxt "frmtypepage|horiposft" msgid "Hori_zontal" -msgstr "_Vannrett" +msgstr "Horisontalt" #. ytvmN #: sw/uiconfig/swriter/ui/frmtypepage.ui:629 msgctxt "frmtypepage|horibyft" msgid "b_y" -msgstr "_ved" +msgstr "ved" #. EEXr7 #: sw/uiconfig/swriter/ui/frmtypepage.ui:643 @@ -15783,67 +15780,67 @@ #: sw/uiconfig/swriter/ui/frmtypepage.ui:657 msgctxt "frmtypepage|horitoft" msgid "_to" -msgstr "_til" +msgstr "til" #. jg9kn #: sw/uiconfig/swriter/ui/frmtypepage.ui:677 msgctxt "frmtypepage|extended_tip|byhori" msgid "Enter the amount of space to leave between the left edge of the selected object and the reference point that you select in the To box." -msgstr "Velg hvor stor avstand du vil ha mellom den venstre kanten av det valgte objektet og referansepunktet du velger i lista til høyre for til." +msgstr "Velg hvor stor avstand du vil ha mellom den venstre kanten av det valgte objektet og referansepunktet du velger i listen til høyre for Til boksen." #. ATVDy #: sw/uiconfig/swriter/ui/frmtypepage.ui:692 msgctxt "frmtypepage|extended_tip|horianchor" msgid "Select the reference point for the selected horizontal alignment option." -msgstr "Velg referansepunkt for for det valgte vannrette justeringsalternativet." +msgstr "Velg referansepunkt for for det valgte horisontelle justeringsalternativet." #. Mzkkm #: sw/uiconfig/swriter/ui/frmtypepage.ui:707 msgctxt "frmtypepage|extended_tip|horipos" msgid "Select the horizontal alignment option for the object." -msgstr "Velg den vannrette plasseringen av objektet." +msgstr "Velg den horisontelle plasseringen av objektet." #. jATQG #: sw/uiconfig/swriter/ui/frmtypepage.ui:720 msgctxt "frmtypepage|vertposft" msgid "_Vertical" -msgstr "_Loddrett" +msgstr "Vertikal" #. mcsH8 #: sw/uiconfig/swriter/ui/frmtypepage.ui:736 msgctxt "frmtypepage|extended_tip|vertpos" msgid "Select the vertical alignment option for the object." -msgstr "Velg loddrett justering for objektet." +msgstr "Velg Vertikal justering for objektet." #. BcA3U #: sw/uiconfig/swriter/ui/frmtypepage.ui:755 msgctxt "frmtypepage|extended_tip|byvert" msgid "Enter the amount of space to leave between the top edge of the selected object and the reference point that you select in the To box." -msgstr "Velg hvor stor avstand du vil ha mellom den øverste kanten av det valgte objektet og referansepunktet du velger i lista til høyre for til." +msgstr "Velg hvor stor avstand du vil ha mellom den øverste kanten av det valgte objektet og referansepunktet du velger i listen til høyre for til." #. nJyJE #: sw/uiconfig/swriter/ui/frmtypepage.ui:768 msgctxt "frmtypepage|verttoft" msgid "t_o" -msgstr "t_il" +msgstr "til" #. Aw5J8 #: sw/uiconfig/swriter/ui/frmtypepage.ui:784 msgctxt "frmtypepage|extended_tip|vertanchor" msgid "Select the reference point for the selected vertical alignment option." -msgstr "Velg referansepunktet for den valgte loddrette justeringen." +msgstr "Velg referansepunktet for den valgte vertikale justeringen." #. WwDCp #: sw/uiconfig/swriter/ui/frmtypepage.ui:795 msgctxt "frmtypepage|mirror" msgid "_Mirror on even pages" -msgstr "Speilvend på _like sider" +msgstr "Speilvend på like sider" #. Nftff #: sw/uiconfig/swriter/ui/frmtypepage.ui:805 msgctxt "frmtypepage|extended_tip|mirror" msgid "Reverses the current horizontal alignment settings on even pages." -msgstr "Speilvender de gjeldende innstillingene for vannrett justering på partallssider." +msgstr "Speilvender de gjeldende innstillingene for horisontelle justering på partallssider." #. PFJMP #: sw/uiconfig/swriter/ui/frmtypepage.ui:817 @@ -15885,25 +15882,25 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:78 msgctxt "frmurlpage|url_label" msgid "_URL:" -msgstr "_URL:" +msgstr "URL:" #. DHeCW #: sw/uiconfig/swriter/ui/frmurlpage.ui:92 msgctxt "frmurlpage|name_label" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. F3UJE #: sw/uiconfig/swriter/ui/frmurlpage.ui:106 msgctxt "frmurlpage|frame_label" msgid "_Frame:" -msgstr "_Ramme:" +msgstr "Ramme:" #. CC42B #: sw/uiconfig/swriter/ui/frmurlpage.ui:124 msgctxt "frmurlpage|search" msgid "_Browse..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. S44B2 #: sw/uiconfig/swriter/ui/frmurlpage.ui:131 @@ -15927,19 +15924,19 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:219 msgctxt "frmurlpage|server" msgid "_Server-side image map" -msgstr "Bildekart på _tjeneren" +msgstr "Bildekart på serveren" #. b7kPv #: sw/uiconfig/swriter/ui/frmurlpage.ui:229 msgctxt "frmurlpage|extended_tip|server" msgid "Uses a server-side image map." -msgstr "Bruker et bildekart som er lagret på en tjener." +msgstr "Bruker et bildekart som er lagret på en server." #. MWxs6 #: sw/uiconfig/swriter/ui/frmurlpage.ui:240 msgctxt "frmurlpage|client" msgid "_Client-side image map" -msgstr "Bildekart på _klienten" +msgstr "Bildekart på klienten" #. FxBbu #: sw/uiconfig/swriter/ui/frmurlpage.ui:250 @@ -15999,13 +15996,13 @@ #: sw/uiconfig/swriter/ui/indentpage.ui:60 msgctxt "indentpage|label1" msgid "_Before section" -msgstr "_Før seksjon" +msgstr "Før seksjon" #. sb53A #: sw/uiconfig/swriter/ui/indentpage.ui:74 msgctxt "indentpage|label3" msgid "_After section" -msgstr "_Etter seksjon" +msgstr "Etter seksjon" #. u3NDD #: sw/uiconfig/swriter/ui/indentpage.ui:94 @@ -16215,7 +16212,7 @@ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:176 msgctxt "inputfielddialog|extended_tip|text" msgid "This box displays the name that you entered in the Reference box on the Functions or Variables tab of the Fields dialog. The box underneath displays the contents of the field." -msgstr "" +msgstr "Denne boksen viser navnet du skrev inn i Referanse-boksen i Funksjoner eller variabler-fanen i feltdialogen. Ruten under viser innholdet i feltet." #. KcGwQ #: sw/uiconfig/swriter/ui/inputfielddialog.ui:207 @@ -16443,7 +16440,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:259 msgctxt "inputwinmenu|extended_tip|mean" msgid "Calculates the arithmetic mean of the values in an area or a list." -msgstr "Beregner det aritmetiske gjennomsnittet av verdiene i et område eller ei liste." +msgstr "Beregner det aritmetiske gjennomsnittet av verdiene i et område eller en liste." #. nSYdA #: sw/uiconfig/swriter/ui/inputwinmenu.ui:268 @@ -16455,7 +16452,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:272 msgctxt "inputwinmenu|extended_tip|min" msgid "Calculates the minimum value in an area or a list." -msgstr "Beregner den minste verdien i et område eller ei liste." +msgstr "Beregner den minste verdien i et område eller en liste." #. nEGnR #: sw/uiconfig/swriter/ui/inputwinmenu.ui:281 @@ -16473,13 +16470,13 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:294 msgctxt "inputwinmenu|count" msgid "Count" -msgstr "" +msgstr "Tell" #. 3VBfQ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:302 msgctxt "inputwinmenu|product" msgid "Product" -msgstr "" +msgstr "Produkt" #. DRxEW #: sw/uiconfig/swriter/ui/inputwinmenu.ui:310 @@ -16569,13 +16566,13 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:413 msgctxt "inputwinmenu|abs" msgid "Abs" -msgstr "" +msgstr "Abs" #. wmZwk #: sw/uiconfig/swriter/ui/inputwinmenu.ui:421 msgctxt "inputwinmenu|sign" msgid "Sign" -msgstr "" +msgstr "Sign" #. ytZBB #: sw/uiconfig/swriter/ui/inputwinmenu.ui:429 @@ -16603,7 +16600,6 @@ #. fofuv #: sw/uiconfig/swriter/ui/insertbookmark.ui:108 -#, fuzzy msgctxt "insertbookmark|extended_tip|name" msgid "Type the name of the bookmark that you want to create. Then press Insert." msgstr "Skriv inn navnet på bokmerket som du vil opprette. Trykk deretter Sett inn ." @@ -16750,7 +16746,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:188 msgctxt "insertbreak|liststore1" msgid "[None]" -msgstr "[None]" +msgstr "[Ingen]" #. 8WDUc #: sw/uiconfig/swriter/ui/insertbreak.ui:192 @@ -16886,7 +16882,6 @@ #. LySa4 #: sw/uiconfig/swriter/ui/insertcaption.ui:330 -#, fuzzy msgctxt "insertcaption|extended_tip|category" msgid "Select the caption category, or type a name to create a new category. The category text appears before the caption number in the caption label. Each predefined caption category is formatted with a paragraph style of the same name." msgstr "Velg bildetekstkategori eller skriv inn et navn for å lage en ny kategori. Kategoriteksten vises foran bildetekstens nummer i bildetekstetiketten. Hver selvvalgt bildetekstkategori formateres med en avsnittsstil med samme navn." @@ -16913,7 +16908,7 @@ #: sw/uiconfig/swriter/ui/insertcaption.ui:452 msgctxt "insertcaption|liststore1" msgid "[None]" -msgstr "[None]" +msgstr "[Ingen]" #. hKFSr #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:57 @@ -16931,7 +16926,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:162 msgctxt "insertdbcolumnsdialog|astable" msgid "T_able" -msgstr "T_abell" +msgstr "Tabell" #. FpaRE #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:172 @@ -16943,7 +16938,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:183 msgctxt "insertdbcolumnsdialog|asfields" msgid "_Fields" -msgstr "_Felt" +msgstr "Felt" #. o9vrZ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:193 @@ -16955,7 +16950,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:204 msgctxt "insertdbcolumnsdialog|astext" msgid "_Text" -msgstr "_Tekst" +msgstr "Tekst" #. dYQPq #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:214 @@ -16967,23 +16962,22 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:262 msgctxt "insertdbcolumnsdialog|label4" msgid "Database _columns" -msgstr "Database_kolonner" +msgstr "Databasekolonner" #. q5Z9N #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:276 msgctxt "insertdbcolumnsdialog|tablecolft" msgid "Tab_le column(s)" -msgstr "Tabellkolonne/-ar" +msgstr "Tabellkolonne/-r" #. GJeoX #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:302 msgctxt "insertdbcolumnsdialog|extended_tip|allright" msgid "Moves all listed database fields into the Table column(s) list box." -msgstr "Flytt alle databasefeltene i lista inn i listeboksen for tabellkolonner." +msgstr "Flytt alle databasefeltene i listen inn i listeboksen for tabellkolonner." #. 36dFc #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:320 -#, fuzzy msgctxt "insertdbcolumnsdialog|extended_tip|oneright" msgid "Moves the selected database field into the Table column(s) list box." msgstr "Flytt de valgte databasefeltene inn i listeboksen for tabellkolonner." @@ -17046,7 +17040,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:653 msgctxt "insertdbcolumnsdialog|columnname" msgid "Apply column _name" -msgstr "Bruk kolonne_navn" +msgstr "Bruk kolonnenavn" #. CXxAf #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:663 @@ -17070,7 +17064,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:696 msgctxt "insertdbcolumnsdialog|tableformat" msgid "Pr_operties..." -msgstr "_Egenskaper …" +msgstr "Egenskaper …" #. s2Yfx #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:703 @@ -17082,7 +17076,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:714 msgctxt "insertdbcolumnsdialog|autoformat" msgid "Aut_oFormat..." -msgstr "_Autoformatering …" +msgstr "Autoformatering …" #. uc3tJ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:721 @@ -17094,7 +17088,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:734 msgctxt "insertdbcolumnsdialog|parastylelabel" msgid "Paragraph _style:" -msgstr "_Avsnittstil:" +msgstr "Avsnittstil:" #. mTErr #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:754 @@ -17106,7 +17100,7 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:780 msgctxt "insertdbcolumnsdialog|fromdatabase" msgid "From _database" -msgstr "Fra _database" +msgstr "Fra database" #. FWyqG #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:790 @@ -17118,13 +17112,13 @@ #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:801 msgctxt "insertdbcolumnsdialog|userdefined" msgid "_User-defined" -msgstr "_Selvvalgt" +msgstr "Selvvalgt" #. KRqrf #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:814 msgctxt "insertdbcolumnsdialog|extended_tip|userdefined" msgid "Specifies a format from the list, if the format information of certain data fields is not accepted." -msgstr "Velg et format fra lista hvis formatinformasjonen til noen datafelter ikke blir godtatt." +msgstr "Velg et format fra listen hvis formatinformasjonen til noen datafelter ikke blir godtatt." #. 7HFcY #: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:851 @@ -17206,7 +17200,6 @@ #. XDgLr #: sw/uiconfig/swriter/ui/insertfootnote.ui:243 -#, fuzzy msgctxt "insertfootnote|extended_tip|choosecharacter" msgid "Inserts a special character as a footnote or endnote anchor." msgstr "Setter inn et spesialtegn som fotnote eller sluttnotemerke." @@ -17353,7 +17346,7 @@ #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:40 msgctxt "insertsectiondialog|ok" msgid "_Insert" -msgstr "_Sett inn" +msgstr "Sett inn" #. V4AJG #: sw/uiconfig/swriter/ui/insertsectiondialog.ui:113 @@ -17419,13 +17412,13 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:167 msgctxt "inserttable|label3" msgid "_Name:" -msgstr "_Navn:" +msgstr "Navn:" #. ScZyw #: sw/uiconfig/swriter/ui/inserttable.ui:181 msgctxt "inserttable|3" msgid "_Columns:" -msgstr "_Kolonner:" +msgstr "Kolonner:" #. AWrBU #: sw/uiconfig/swriter/ui/inserttable.ui:202 @@ -17437,7 +17430,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:215 msgctxt "inserttable|4" msgid "_Rows:" -msgstr "_Rader:" +msgstr "Rader:" #. TFLFE #: sw/uiconfig/swriter/ui/inserttable.ui:236 @@ -17449,7 +17442,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:248 msgctxt "inserttable|lbwarning" msgid "Warning : Large tables may adversely affect performance and compatibility" -msgstr "" +msgstr "Advarsel: Store tabeller kan påvirke ytelsen og kompatibiliteten negativt" #. M2tGB #: sw/uiconfig/swriter/ui/inserttable.ui:264 @@ -17461,19 +17454,19 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:303 msgctxt "inserttable|headercb" msgid "Hea_ding" -msgstr "_Overskrift" +msgstr "Overskrift" #. EZBnS #: sw/uiconfig/swriter/ui/inserttable.ui:312 msgctxt "inserttable|extended_tip|headercb" msgid "Includes a heading row in the table." -msgstr "Inkluderen overskriftsradfor tabellen." +msgstr "Inkluderen overskriftsrad for tabellen." #. 7obXo #: sw/uiconfig/swriter/ui/inserttable.ui:323 msgctxt "inserttable|repeatcb" msgid "Repeat heading rows on new _pages" -msgstr "Gjenta overskriftsrader på nye _sider" +msgstr "Gjenta overskriftsrader på nye sider" #. LdEem #: sw/uiconfig/swriter/ui/inserttable.ui:335 @@ -17485,7 +17478,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:346 msgctxt "inserttable|dontsplitcb" msgid "Don’t _split table over pages" -msgstr "Ikke _del tabeller over flere sider" +msgstr "Ikke del tabeller over flere sider" #. rGaCK #: sw/uiconfig/swriter/ui/inserttable.ui:355 @@ -17503,7 +17496,7 @@ #: sw/uiconfig/swriter/ui/inserttable.ui:395 msgctxt "inserttable|repeatheaderafter" msgid "Heading ro_ws:" -msgstr "Overskrifts_rader:" +msgstr "Overskriftsrader:" #. D26kf #: sw/uiconfig/swriter/ui/inserttable.ui:418 @@ -17545,7 +17538,7 @@ #: sw/uiconfig/swriter/ui/labeldialog.ui:25 msgctxt "labeldialog|ok" msgid "_New Document" -msgstr "_Nytt dokument" +msgstr "Nytt dokument" #. HF8VF #: sw/uiconfig/swriter/ui/labeldialog.ui:34 @@ -17599,67 +17592,67 @@ #: sw/uiconfig/swriter/ui/labelformatpage.ui:36 msgctxt "labelformatpage|label1" msgid "Hori_zontal pitch:" -msgstr "_Vannrett avstand:" +msgstr "Horisontal avstand:" #. SFCGD #: sw/uiconfig/swriter/ui/labelformatpage.ui:50 msgctxt "labelformatpage|label2" msgid "_Vertical pitch:" -msgstr "_Loddrett avstand:" +msgstr "Vertikal Avstand:" #. fpXAC #: sw/uiconfig/swriter/ui/labelformatpage.ui:64 msgctxt "labelformatpage|label3" msgid "_Width:" -msgstr "_Bredde:" +msgstr "Bredde:" #. 2ZXTL #: sw/uiconfig/swriter/ui/labelformatpage.ui:78 msgctxt "labelformatpage|label4" msgid "_Height:" -msgstr "_Høyde:" +msgstr "Høyde:" #. BedQe #: sw/uiconfig/swriter/ui/labelformatpage.ui:92 msgctxt "labelformatpage|label5" msgid "_Left margin:" -msgstr "_Venstre marg:" +msgstr "Venstre marg:" #. 5PGWt #: sw/uiconfig/swriter/ui/labelformatpage.ui:106 msgctxt "labelformatpage|label6" msgid "_Top margin:" -msgstr "_Toppmarg:" +msgstr "Toppmarg:" #. zPFR4 #: sw/uiconfig/swriter/ui/labelformatpage.ui:120 msgctxt "labelformatpage|label7" msgid "_Columns:" -msgstr "_Kolonner:" +msgstr "Kolonner:" #. L958B #: sw/uiconfig/swriter/ui/labelformatpage.ui:134 msgctxt "labelformatpage|label8" msgid "R_ows:" -msgstr "_Rader:" +msgstr "Rader:" #. UhqFw #: sw/uiconfig/swriter/ui/labelformatpage.ui:148 msgctxt "labelformatpage|label9" msgid "P_age width:" -msgstr "Side_bredde:" +msgstr "Sidebredde:" #. nG5uU #: sw/uiconfig/swriter/ui/labelformatpage.ui:162 msgctxt "labelformatpage|label10" msgid "Pa_ge height:" -msgstr "Side_høyde:" +msgstr "Sidehøyde:" #. DKByW #: sw/uiconfig/swriter/ui/labelformatpage.ui:174 msgctxt "labelformatpage|save" msgid "_Save..." -msgstr "_Lagre …" +msgstr "Lagre …" #. DEEfq #: sw/uiconfig/swriter/ui/labelformatpage.ui:182 @@ -17731,7 +17724,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:48 msgctxt "labeloptionspage|entirepage" msgid "_Entire page" -msgstr "_Hele sida" +msgstr "Hele siden" #. wrdGY #: sw/uiconfig/swriter/ui/labeloptionspage.ui:58 @@ -17743,7 +17736,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:70 msgctxt "labeloptionspage|singlelabel" msgid "_Single label" -msgstr "_Enkelt etikett" +msgstr "Enkelt etikett" #. 5Jtrz #: sw/uiconfig/swriter/ui/labeloptionspage.ui:81 @@ -17755,19 +17748,19 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:106 msgctxt "labeloptionspage|label4" msgid "Colu_mn" -msgstr "_Kolonne" +msgstr "Kolonne" #. rg2vY #: sw/uiconfig/swriter/ui/labeloptionspage.ui:125 msgctxt "labeloptionspage|extended_tip|cols" msgid "Enter the number of labels or business cards that you want to have in a row on your page." -msgstr "Skriv inn antall etiketter eller visittkort du vil ha per rad (i bredden) på hver side." +msgstr "Skriv inn antall etiketter eller visittkort du vil ha pr rad (i bredden) på hver side." #. 9xfPc #: sw/uiconfig/swriter/ui/labeloptionspage.ui:150 msgctxt "labeloptionspage|label5" msgid "Ro_w" -msgstr "_Rad" +msgstr "Rad" #. Td3uW #: sw/uiconfig/swriter/ui/labeloptionspage.ui:169 @@ -17779,7 +17772,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:192 msgctxt "labeloptionspage|synchronize" msgid "Synchroni_ze contents" -msgstr "_Synkroniser innholdet" +msgstr "Synkroniser innholdet" #. ZNG3x #: sw/uiconfig/swriter/ui/labeloptionspage.ui:201 @@ -17959,7 +17952,7 @@ #: sw/uiconfig/swriter/ui/linenumbering.ui:433 msgctxt "linenumbering|extended_tip|linesspin" msgid "Enter the number of lines to leave between the separators." -msgstr "kriv inn antall linjer mellom skillemerkene." +msgstr "Skriv inn antall linjer mellom skillemerkene." #. u6G7c #: sw/uiconfig/swriter/ui/linenumbering.ui:447 @@ -18031,19 +18024,19 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:68 msgctxt "extended_tip|address" msgid "Enter your email address for replies." -msgstr "" +msgstr "Skriv inn e-postadressen din for svar." #. yBLGV #: sw/uiconfig/swriter/ui/mailconfigpage.ui:86 msgctxt "extended_tip|replyto" msgid "Enter the address to use for email replies." -msgstr "" +msgstr "Skriv inn e-postadressen din for svar." #. nfWNf #: sw/uiconfig/swriter/ui/mailconfigpage.ui:100 msgctxt "mailconfigpage|displayname_label" msgid "_Your name:" -msgstr "_Navnet ditt:" +msgstr "Navnet ditt:" #. 9BEvE #: sw/uiconfig/swriter/ui/mailconfigpage.ui:114 @@ -18055,19 +18048,19 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:125 msgctxt "mailconfigpage|replytocb" msgid "Send replies to _different email address" -msgstr "Send svar til en annen epostadressse" +msgstr "Send svar til en annen e-postadressse" #. jAywn #: sw/uiconfig/swriter/ui/mailconfigpage.ui:134 msgctxt "extended_tip|replytocb" msgid "Uses the email address that you enter in the Reply address text box as the reply-to email address." -msgstr "" +msgstr "Bruker e-postadressen du skriver inn i tekstboksen Svar adresse som svar på e-postadressen." #. AESca #: sw/uiconfig/swriter/ui/mailconfigpage.ui:148 msgctxt "mailconfigpage|replyto_label" msgid "_Reply address:" -msgstr "_Svaradresse:" +msgstr "Svarsadresse:" #. 5KJrn #: sw/uiconfig/swriter/ui/mailconfigpage.ui:168 @@ -18085,13 +18078,13 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:231 msgctxt "mailconfigpage|serverauthentication" msgid "Ser_ver Authentication…" -msgstr "Tjenerautentisering" +msgstr "Serverautentisering" #. iERhR #: sw/uiconfig/swriter/ui/mailconfigpage.ui:239 msgctxt "extended_tip|serverauthentication" msgid "Opens the Server Authentication dialog where you can specify the server authentication settings for secure email." -msgstr "" +msgstr "Åpner dialogboksen Serverautentisering der du kan spesifisere serverautentiseringsinnstillingene for sikker e-post." #. AqgAF #: sw/uiconfig/swriter/ui/mailconfigpage.ui:263 @@ -18103,31 +18096,31 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:278 msgctxt "mailconfigpage|server_label" msgid "_Server name:" -msgstr "_Tjenernavn:" +msgstr "Servernavn:" #. BNGrw #: sw/uiconfig/swriter/ui/mailconfigpage.ui:292 msgctxt "mailconfigpage|port_label" msgid "_Port:" -msgstr "_Port:" +msgstr "Port:" #. RihCy #: sw/uiconfig/swriter/ui/mailconfigpage.ui:303 msgctxt "mailconfigpage|secure" msgid "_Use secure connection (SSL)" -msgstr "Bruk _sikker tilkobling (SSL)" +msgstr "Bruk sikker tilkobling (SSL)" #. CoPAE #: sw/uiconfig/swriter/ui/mailconfigpage.ui:313 msgctxt "extended_tip|secure" msgid "When available, uses a secure connection to send emails." -msgstr "" +msgstr "Når det er tilgjengelig, bruker du en sikker tilkobling for å sende e-post." #. U82eq #: sw/uiconfig/swriter/ui/mailconfigpage.ui:332 msgctxt "mailconfigpage|test" msgid "_Test Settings" -msgstr "_Testinnstillinger …" +msgstr "Testinnstillinger …" #. tezBK #: sw/uiconfig/swriter/ui/mailconfigpage.ui:339 @@ -18139,13 +18132,13 @@ #: sw/uiconfig/swriter/ui/mailconfigpage.ui:369 msgctxt "mailconfigpage|label2" msgid "Outgoing Server (SMTP) Settings" -msgstr "Innstillinger for utgående tjener (SMTP)" +msgstr "Innstillinger for utgående server (SMTP)" #. 5yzqi #: sw/uiconfig/swriter/ui/mailconfigpage.ui:384 msgctxt "extended_tip|MailConfigPage" msgid "Specifies the user information and server settings for when you send form letters as email messages." -msgstr "" +msgstr "Spesifiserer brukerinformasjon og serverinnstillinger for når du sender skjemabrev som e-postmeldinger." #. RyDB6 #: sw/uiconfig/swriter/ui/mailmerge.ui:16 @@ -18157,7 +18150,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:135 msgctxt "mailmerge|all" msgid "_All" -msgstr "_Alle" +msgstr "Alle" #. 5JC4B #: sw/uiconfig/swriter/ui/mailmerge.ui:145 @@ -18169,7 +18162,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:157 msgctxt "mailmerge|selected" msgid "_Selected records" -msgstr "_Valgte poster" +msgstr "Valgte poster" #. K9dSC #: sw/uiconfig/swriter/ui/mailmerge.ui:167 @@ -18181,7 +18174,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:184 msgctxt "mailmerge|rbfrom" msgid "_From:" -msgstr "_Fra:" +msgstr "Fra:" #. AEMgx #: sw/uiconfig/swriter/ui/mailmerge.ui:194 @@ -18199,7 +18192,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:228 msgctxt "mailmerge|label3" msgid "_To:" -msgstr "_Til:" +msgstr "Til:" #. sUXJo #: sw/uiconfig/swriter/ui/mailmerge.ui:248 @@ -18217,7 +18210,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:313 msgctxt "mailmerge|printer" msgid "_Printer" -msgstr "_Skriver" +msgstr "Skriver" #. rMZGy #: sw/uiconfig/swriter/ui/mailmerge.ui:323 @@ -18229,7 +18222,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:335 msgctxt "mailmerge|electronic" msgid "_Electronic" -msgstr "_Elektronisk" +msgstr "Elektronisk" #. 5ZWAB #: sw/uiconfig/swriter/ui/mailmerge.ui:352 @@ -18247,13 +18240,13 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:381 msgctxt "mailmerge|singlejobs" msgid "_Single print jobs" -msgstr "_Enkeltutskrifter" +msgstr "Enkeltutskrifter" #. p6r4G #: sw/uiconfig/swriter/ui/mailmerge.ui:430 msgctxt "mailmerge|generate" msgid "Generate file name from _database" -msgstr "Lag filnavn ved hjelp av en _database" +msgstr "Lag filnavn ved hjelp av en database" #. KEEvW #: sw/uiconfig/swriter/ui/mailmerge.ui:439 @@ -18271,13 +18264,13 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:467 msgctxt "mailmerge|pathlabel" msgid "_Path:" -msgstr "_Sti:" +msgstr "Sti:" #. Qmqis #: sw/uiconfig/swriter/ui/mailmerge.ui:482 msgctxt "mailmerge|fileformatlabel" msgid "F_ile format:" -msgstr "_Filformat:" +msgstr "Filformat:" #. y8TZP #: sw/uiconfig/swriter/ui/mailmerge.ui:498 @@ -18307,7 +18300,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:565 msgctxt "mailmerge|subjectlabel" msgid "_Subject:" -msgstr "_Emne:" +msgstr "Emne:" #. bqGD8 #: sw/uiconfig/swriter/ui/mailmerge.ui:594 @@ -18325,13 +18318,13 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:657 msgctxt "mailmerge|html" msgid "HTM_L" -msgstr "HTM_L" +msgstr "HTML" #. aqcBi #: sw/uiconfig/swriter/ui/mailmerge.ui:673 msgctxt "mailmerge|rtf" msgid "RT_F" -msgstr "RT_F" +msgstr "RTF" #. aDQVK #: sw/uiconfig/swriter/ui/mailmerge.ui:689 @@ -18355,7 +18348,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:784 msgctxt "mailmerge|singledocument" msgid "S_ave as single document" -msgstr "Lagre som et _enkeltdokument" +msgstr "Lagre som et enkeltdokument" #. EFAPN #: sw/uiconfig/swriter/ui/mailmerge.ui:794 @@ -18403,13 +18396,13 @@ #: sw/uiconfig/swriter/ui/mailmergedialog.ui:101 msgctxt "mailmergedialog|document" msgid "From this _document" -msgstr "Fra dette _dokumentet" +msgstr "Fra dette dokumentet" #. Ew2Bo #: sw/uiconfig/swriter/ui/mailmergedialog.ui:117 msgctxt "mailmergedialog|template" msgid "From a _template" -msgstr "Fra ein _mal" +msgstr "Fra en mal" #. MzVLu #: sw/uiconfig/swriter/ui/mailmergedialog.ui:139 @@ -18421,19 +18414,19 @@ #: sw/uiconfig/swriter/ui/managechangessidebar.ui:51 msgctxt "managechangessidebar|accept" msgid "_Accept" -msgstr "_Godta" +msgstr "Godta" #. R7DDu #: sw/uiconfig/swriter/ui/managechangessidebar.ui:67 msgctxt "managechangessidebar|reject" msgid "_Reject" -msgstr "_Avvis" +msgstr "Avvis" #. bt9yq #: sw/uiconfig/swriter/ui/managechangessidebar.ui:83 msgctxt "managechangessidebar|acceptall" msgid "A_ccept All" -msgstr "_Godta alt" +msgstr "Godta alt" #. AiYCZ #: sw/uiconfig/swriter/ui/managechangessidebar.ui:99 @@ -18571,19 +18564,19 @@ #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:99 msgctxt "mergeconnectdialog|existing" msgid "_Use existing" -msgstr "_Bruk eksisterende" +msgstr "Bruk eksisterende" #. j64cG #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:115 msgctxt "mergeconnectdialog|new" msgid "_Create new connection" -msgstr "Opprett _ny tilkobling" +msgstr "Opprett ny tilkobling" #. NEDKH #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:133 msgctxt "mergeconnectdialog|label2" msgid "Fields are used to personalize form letters. The fields are placeholders for data from a data source, such as a database. The fields in the form letter must be connected to the data source." -msgstr "Ved å bruke felt kan du lage personlige fletta brev. Feltene er plassholdere for data fra en datakilde, for eksempel en database. Feltene i brevet må være koblet til datakilden." +msgstr "Ved å bruke felt kan du lage personlige flettede brev. Feltene er plassholdere for data fra en datakilde, for eksempel en database. Feltene i brevet må være koblet til datakilden." #. erCDQ #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:152 @@ -18601,13 +18594,13 @@ #: sw/uiconfig/swriter/ui/mergetabledialog.ui:96 msgctxt "mergetabledialog|prev" msgid "Join with _previous table" -msgstr "S_lå sammen med forrige tabell" +msgstr "Slå sammen med forrige tabell" #. BqasK #: sw/uiconfig/swriter/ui/mergetabledialog.ui:112 msgctxt "mergetabledialog|next" msgid "Join with _next table" -msgstr "Slå s_ammen med neste tabell" +msgstr "Slå sammen med neste tabell" #. 2piPE #: sw/uiconfig/swriter/ui/mergetabledialog.ui:134 @@ -18625,19 +18618,19 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:64 msgctxt "mmaddressblockpage|addresslist" msgid "Select A_ddress List..." -msgstr "Velg _adresseliste …" +msgstr "Velg adresseliste …" #. 7vUgG #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:71 msgctxt "mmaddressblockpage|extended_tip|addresslist" msgid "Opens the Select Address List dialog, where you can choose a data source for the addresses, add new addresses, or type in a new address list." -msgstr "Åpner dialogvinduet Velg adresseliste, der du kan velge en datakilde for adresser, legge til nye adresser eller skrive inn en ny adresseliste." +msgstr "Åpner dialogvinduet ,Velg adresseliste, der du kan velge en datakilde for adresser, legge til nye adresser eller skrive inn en ny adresseliste." #. kG8DG #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:82 msgctxt "mmaddressblockpage|differentlist" msgid "Select Different A_ddress List..." -msgstr "Velg en annen a_dresseliste …" +msgstr "Velg en annen adresseliste …" #. Sb7nE #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:103 @@ -18649,7 +18642,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:124 msgctxt "mmaddressblockpage|label2" msgid "Select the address list containing the address data you want to use. This data is needed to create the address block." -msgstr "Velg adresselista som inneholder adressedataene du vil bruke. Disse dataane er nødvendige for å lage adresseblokka." +msgstr "Velg adresselisten som inneholder adressedataene du vil bruke. Disse dataane er nødvendige for å lage adresseblokken." #. EwS5S #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:140 @@ -18661,7 +18654,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:170 msgctxt "mmaddressblockpage|assign" msgid "Match _Fields..." -msgstr "_Tilpass feltene …" +msgstr "Tilpass feltene …" #. seTsD #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:178 @@ -18703,7 +18696,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:304 msgctxt "mmaddressblockpage|settings" msgid "_More..." -msgstr "_Mer …" +msgstr "Mer …" #. irYyv #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:312 @@ -18715,13 +18708,13 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:341 msgctxt "mmaddressblockpage|extended_tip|settingspreview" msgid "Select the address block layout that you want to use." -msgstr "Velg hvilken utforming du vil bruke for adresseblokka." +msgstr "Velg hvilken utforming du vil bruke for adresseblokken." #. 6UxZF #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:362 msgctxt "mmaddressblockpage|hideempty" msgid "_Suppress lines with just empty fields" -msgstr "_Utelat linjer med bare tomme felt" +msgstr "Utelat linjer med bare tomme felt" #. icdn5 #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:371 @@ -18739,7 +18732,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:461 msgctxt "mmaddressblockpage|prev|tooltip_text" msgid "Preview Previous Address Block" -msgstr "Forhåndsvis den forrige adresseblokka" +msgstr "Forhåndsvis den forrige adresseblokken" #. Eh2p9 #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:465 @@ -18751,7 +18744,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:479 msgctxt "mmaddressblockpage|next|tooltip_text" msgid "Preview Next Address Block" -msgstr "Forhåndsvis den neste adresseblokka" +msgstr "Forhåndsvis den neste adresseblokken" #. 9sK8G #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:483 @@ -18787,7 +18780,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:590 msgctxt "mmaddressblockpage|extended_tip|MMAddressBlockPage" msgid "Specify the recipients for the mail merge document as well as the layout of the address block." -msgstr "Velg hvem som skal motta brevflettingsdokumentet, og velg utforming for adresseblokka." +msgstr "Velg hvem som skal motta brevflettingsdokumentet, og velg utforming for adresseblokken." #. qr3dv #: sw/uiconfig/swriter/ui/mmcreatingdialog.ui:7 @@ -18823,7 +18816,7 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:82 msgctxt "mmlayoutpage|label6" msgid "_From top" -msgstr "_Ovenfra" +msgstr "Ovenfra" #. cgzFG #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:97 @@ -18835,7 +18828,7 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:104 msgctxt "mmlayoutpage|extended_tip|top" msgid "Enter the amount of space to leave between the top edge of the page and the top edge of the address block." -msgstr "Velg hvor stor avstand det skal være mellom toppen av siden og den øverste kanten av adresseblokka." +msgstr "Velg hvor stor avstand det skal være mellom toppen av siden og den øverste kanten av adresseblokken." #. j3QQH #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:127 @@ -18853,13 +18846,13 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:163 msgctxt "mmlayoutpage|extended_tip|left" msgid "Enter the amount of space to leave between the left edge of the page and the left edge of the address block." -msgstr "Velg hvor stor avstand det skal være mellom venstre kant av siden og venstre kant av adresseblokka." +msgstr "Velg hvor stor avstand det skal være mellom venstre kant av siden og venstre kant av adresseblokken." #. FwgfG #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:182 msgctxt "mmlayoutpage|leftft" msgid "From _left" -msgstr "Fra _venstre" +msgstr "Fra venstre" #. hFZkG #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:219 @@ -18883,25 +18876,25 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:280 msgctxt "mmlayoutpage|up" msgid "_Up" -msgstr "_Opp" +msgstr "Opp" #. UAeYJ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:287 msgctxt "mmlayoutpage|extended_tip|up" msgid "Moves the salutation up." -msgstr "Flytter hilsninga opp." +msgstr "Flytter hilsningen opp." #. toRE2 #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:298 msgctxt "mmlayoutpage|down" msgid "_Down" -msgstr "_Ned" +msgstr "Ned" #. JErEG #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:305 msgctxt "mmlayoutpage|extended_tip|down" msgid "Moves the salutation down." -msgstr "Flytter hilsninga ned." +msgstr "Flytter hilsningen ned." #. smDgJ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:322 @@ -18913,7 +18906,7 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:359 msgctxt "mmlayoutpage|label7" msgid "_Zoom" -msgstr "_Forstørr" +msgstr "Forstørr" #. kF4Eb #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:374 @@ -18943,7 +18936,7 @@ #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:444 msgctxt "mmlayoutpage|label1" msgid "Adjust Layout of Address Block and Salutation" -msgstr "Tilpass utformingen for adresseblokka og hilsningen" +msgstr "Tilpass utformingen for adresseblokken og hilsningen" #. 8ACbf #: sw/uiconfig/swriter/ui/mmlayoutpage.ui:459 @@ -18967,7 +18960,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:117 msgctxt "mmmailbody|extended_tip|bodymle" msgid "Enter the main text of the email." -msgstr "" +msgstr "Skriv inn hovedteksten i e-posten." #. AEVTw #: sw/uiconfig/swriter/ui/mmmailbody.ui:143 @@ -18979,7 +18972,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:152 msgctxt "mmmailbody|extended_tip|greeting" msgid "Adds a salutation to the email." -msgstr "" +msgstr "Legger til hilsen til e-posten." #. i7T9E #: sw/uiconfig/swriter/ui/mmmailbody.ui:178 @@ -18991,7 +18984,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:203 msgctxt "mmmailbody|extended_tip|general" msgid "Select the default greeting to use if a personalized salutation cannot be created." -msgstr "Velg standardhilsninga som skal brukes hvis en personlig hilsning ikke kan lages." +msgstr "Velg standardhilsningen som skal brukes hvis en personlig hilsning ikke kan lages." #. FbDGH #: sw/uiconfig/swriter/ui/mmmailbody.ui:238 @@ -19003,13 +18996,13 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:251 msgctxt "mmmailbody|femaleft" msgid "_Female" -msgstr "_Kvinne" +msgstr "Kvinne" #. AsBWM #: sw/uiconfig/swriter/ui/mmmailbody.ui:265 msgctxt "mmmailbody|maleft" msgid "_Male" -msgstr "_Mann" +msgstr "Mann" #. bXB8d #: sw/uiconfig/swriter/ui/mmmailbody.ui:279 @@ -19027,7 +19020,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:303 msgctxt "mmmailbody|newfemale" msgid "_New..." -msgstr "_Ny …" +msgstr "Ny …" #. FUyzo #: sw/uiconfig/swriter/ui/mmmailbody.ui:311 @@ -19039,7 +19032,7 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:322 msgctxt "mmmailbody|newmale" msgid "N_ew..." -msgstr "_Ny …" +msgstr "Ny …" #. MPBju #: sw/uiconfig/swriter/ui/mmmailbody.ui:330 @@ -19081,13 +19074,13 @@ #: sw/uiconfig/swriter/ui/mmmailbody.ui:440 msgctxt "mmmailbody|extended_tip|personalized" msgid "Adds a personalized salutation. To use the default salutation, clear this check box." -msgstr "Legger til en personlig hilsning. Fjern krysset i denne avkryssingsboksen hvis du vil bruke standardhilsninga." +msgstr "Legger til en personlig hilsning. Fjern krysset i denne avkryssingsboksen hvis du vil bruke standardhilsningen." #. 4GXww #: sw/uiconfig/swriter/ui/mmmailbody.ui:488 msgctxt "mmmailbody|extended_tip|MailBodyDialog" msgid "Type the message and the salutation for files that you send as email attachments." -msgstr "" +msgstr "Skriv inn meldingen og hilsenen til filer du sender som vedlegg til e-post." #. Zqr7R #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:44 @@ -19105,7 +19098,7 @@ #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:82 msgctxt "mmoutputtypepage|letter" msgid "_Letter" -msgstr "_Brev" +msgstr "Brev" #. rAnN7 #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:92 @@ -19123,7 +19116,7 @@ #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:113 msgctxt "mmoutputtypepage|extended_tip|email" msgid "Creates mail merge documents that you can send as an email message or an email attachment." -msgstr "" +msgstr "Oppretter flettedokumenter som du kan sende som en e-postmelding eller et e-postvedlegg." #. roGWt #: sw/uiconfig/swriter/ui/mmoutputtypepage.ui:148 @@ -19153,7 +19146,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:43 msgctxt "mmresultemaildialog|extended_tip|ok" msgid "Click to start sending emails." -msgstr "" +msgstr "Klikk for å begynne å sende e-post." #. cNmQk #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:123 @@ -19165,7 +19158,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:140 msgctxt "mmresultemaildialog|extended_tip|mailto" msgid "Select the database field that contains the email address of the recipient." -msgstr "" +msgstr "Velg databasefeltet som inneholder mottakerens e-postadresse." #. H6VrM #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:151 @@ -19189,7 +19182,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:190 msgctxt "mmresultemaildialog|extended_tip|subject" msgid "Enter the subject line for the email messages." -msgstr "" +msgstr "Skriv inn emnelinjen for e-postmeldingene." #. DRHXR #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:203 @@ -19231,7 +19224,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:227 msgctxt "mmresultemaildialog|extended_tip|sendas" msgid "Select the mail format for the email messages." -msgstr "" +msgstr "Velg e-postmeldingsformatet." #. A25u6 #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:238 @@ -19243,7 +19236,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:246 msgctxt "mmresultemaildialog|extended_tip|sendassettings" msgid "Opens the E-Mail Message dialog where you can enter the email message for the mail merge files that are sent as attachments." -msgstr "" +msgstr "Åpner dialogboksen E-postmelding der du kan skrive inn e-postmeldingen for de flettefilene som sendes som vedlegg." #. TePCV #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:259 @@ -19267,13 +19260,13 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:340 msgctxt "mmresultemaildialog|attachft" msgid "Name of the a_ttachment" -msgstr "Navn på _vedlegget" +msgstr "Navn på vedlegget" #. 3JkpG #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:360 msgctxt "mmresultemaildialog|label2" msgid "Email Options" -msgstr "" +msgstr "E-postalternativer" #. kCBDz #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:392 @@ -19285,7 +19278,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:402 msgctxt "mmresultemaildialog|extended_tip|sendallrb" msgid "Select to send emails to all recipients." -msgstr "" +msgstr "Velg for å sende e-post til alle mottakere." #. EN8Jh #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:420 @@ -19321,13 +19314,13 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:511 msgctxt "mmresultemaildialog|label1" msgid "Send Records" -msgstr "" +msgstr "Send poster" #. 6VhcE #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:536 msgctxt "mmresultemaildialog|extended_tip|MMResultEmailDialog" msgid "Sends the mail merge output as email messages to all or some recipients." -msgstr "" +msgstr "Sender utskriftsflettingsutdata som e-postmeldinger til alle eller noen mottakere." #. rD68U #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:20 @@ -19375,7 +19368,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:170 msgctxt "mmresultprintdialog|label2" msgid "Printer Options" -msgstr "" +msgstr "Skriveralternativer" #. VemES #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:206 @@ -19423,7 +19416,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:328 msgctxt "mmresultprintdialog|label1" msgid "Print Records" -msgstr "" +msgstr "Skriv ut poster" #. ZZ5p9 #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:353 @@ -19453,7 +19446,7 @@ #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:118 msgctxt "mmresultsavedialog|singlerb" msgid "S_ave as a single large document" -msgstr "~Lagre som et enkelt dokument" +msgstr "Lagre som et enkelt dokument" #. bZcqe #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:128 @@ -19507,7 +19500,7 @@ #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:256 msgctxt "mmresultsavedialog|label2" msgid "Save As Options" -msgstr "" +msgstr "Lagre som Alternativ" #. 2BCiE #: sw/uiconfig/swriter/ui/mmresultsavedialog.ui:281 @@ -19537,13 +19530,13 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:120 msgctxt "mmsalutationpage|extended_tip|preview" msgid "Displays a preview of the salutation." -msgstr "Forhåndsviser hilsninga." +msgstr "Forhåndsviser hilsningen." #. NUC5G #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:144 msgctxt "mmsalutationpage|prev|tooltip_text" msgid "Preview Previous Address Block" -msgstr "Forhåndsvis den forrige adresseblokka" +msgstr "Forhåndsvis den forrige adresseblokken" #. WUhJW #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:148 @@ -19555,7 +19548,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:162 msgctxt "mmsalutationpage|next|tooltip_text" msgid "Preview Next Address Block" -msgstr "Forhåndsvis den neste adresseblokka" +msgstr "Forhåndsvis den neste adresseblokken" #. rnqbV #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:166 @@ -19591,7 +19584,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:274 msgctxt "mmsalutationpage|extended_tip|general" msgid "Select the default salutation that is used when you do not specify a personalized salutation." -msgstr "Velg standardhilsninga som skal brukes når du ikke har valgt en personlig hilsning." +msgstr "Velg standardhilsningen som skal brukes når du ikke har valgt en personlig hilsning." #. CegBx #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:309 @@ -19603,13 +19596,13 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:322 msgctxt "mmsalutationpage|femaleft" msgid "_Female" -msgstr "_Kvinne" +msgstr "Kvinne" #. Rmtni #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:336 msgctxt "mmsalutationpage|maleft" msgid "_Male" -msgstr "_Mann" +msgstr "Mann" #. dUuiH #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:350 @@ -19627,7 +19620,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:376 msgctxt "mmsalutationpage|newfemale" msgid "_New..." -msgstr "_Ny …" +msgstr "Ny …" #. iQETJ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:384 @@ -19639,7 +19632,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:395 msgctxt "mmsalutationpage|newmale" msgid "N_ew..." -msgstr "N_y …" +msgstr "Ny …" #. ACYDN #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:403 @@ -19681,7 +19674,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:512 msgctxt "mmsalutationpage|extended_tip|personalized" msgid "Adds a personalized salutation to the mail merge document. To use the default salutation, clear this check box." -msgstr "Legger til en personlig hilsning i brevflettingsdokumentet. Fjern krysset i denne avkryssingsboksen hvis du vil bruke standardhilsninga." +msgstr "Legger til en personlig hilsning i brevflettingsdokumentet. Fjern krysset i denne avkryssingsboksen hvis du vil bruke standardhilsningen." #. nbXMj #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:549 @@ -19699,7 +19692,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:32 msgctxt "mmselectpage|currentdoc" msgid "Use the current _document" -msgstr "Bruk det _gjeldende dokumentet" +msgstr "Bruk det gjeldende dokumentet" #. EUVtU #: sw/uiconfig/swriter/ui/mmselectpage.ui:42 @@ -19711,7 +19704,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:53 msgctxt "mmselectpage|newdoc" msgid "Create a ne_w document" -msgstr "Lag et _nytt dokument" +msgstr "Lag et nytt dokument" #. XY8FU #: sw/uiconfig/swriter/ui/mmselectpage.ui:63 @@ -19723,7 +19716,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:74 msgctxt "mmselectpage|loaddoc" msgid "Start from _existing document" -msgstr "Begynn med et _eksisterende dokument" +msgstr "Begynn med et eksisterende dokument" #. MFqCS #: sw/uiconfig/swriter/ui/mmselectpage.ui:85 @@ -19735,7 +19728,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:96 msgctxt "mmselectpage|template" msgid "Start from a t_emplate" -msgstr "Begynn med en _mal" +msgstr "Begynn med en mal" #. BxBQF #: sw/uiconfig/swriter/ui/mmselectpage.ui:107 @@ -19747,7 +19740,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:118 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" -msgstr "Begynn med et _nylig lagret startdokument" +msgstr "Begynn med et nylig lagret startdokument" #. xomYf #: sw/uiconfig/swriter/ui/mmselectpage.ui:128 @@ -19765,7 +19758,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:155 msgctxt "mmselectpage|browsedoc" msgid "B_rowse..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. i7inE #: sw/uiconfig/swriter/ui/mmselectpage.ui:164 @@ -19777,7 +19770,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:175 msgctxt "mmselectpage|browsetemplate" msgid "B_rowse..." -msgstr "_Bla gjennom …" +msgstr "Bla gjennom …" #. CdmfM #: sw/uiconfig/swriter/ui/mmselectpage.ui:184 @@ -19813,13 +19806,13 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:102 msgctxt "mmsendmails|label3" msgid "The connection to the outgoing mail server has been established" -msgstr "Har etablert tilkoblingen til den utgående e-posttjeneren" +msgstr "Har etablert tilkoblingen til den utgående e-postserveren" #. g5EaC #: sw/uiconfig/swriter/ui/mmsendmails.ui:113 msgctxt "mmsendmails|label1" msgid "Connection Status" -msgstr "" +msgstr "Tilkoblingsstatus" #. s8CDU #: sw/uiconfig/swriter/ui/mmsendmails.ui:162 @@ -19861,7 +19854,7 @@ #: sw/uiconfig/swriter/ui/mmsendmails.ui:307 msgctxt "mmsendmails|label2" msgid "Transfer Status" -msgstr "" +msgstr "Overføringsstatus" #. c2i5B #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:26 @@ -19975,7 +19968,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189 msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT" msgid "Outline Content Visibility" -msgstr "" +msgstr "Oversikt over innholdssynligheten" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209 @@ -20059,13 +20052,13 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:375 msgctxt "navigatorpanel|spinbutton|tooltip_text" msgid "Go to Page" -msgstr "" +msgstr "Gå til side" #. avLGA #: sw/uiconfig/swriter/ui/navigatorpanel.ui:382 msgctxt "navigatorpanel|extended_tip|spinbutton" msgid "Enter page number and press Enter. Use arrows to move to next page forward or backward." -msgstr "" +msgstr "Skriv inn sidenummer og trykk Enter. Bruk pilene til å gå til neste side, fremover eller bakover." #. DgvFE #: sw/uiconfig/swriter/ui/navigatorpanel.ui:415 @@ -20161,7 +20154,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:580 msgctxt "navigatorpanel|extended_tip|promote" msgid "Increases the outline level of the selected heading, and the headings that occur below the heading, by one. To only increase the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr " Flytter den valgte overskrifta, og alle overskrifter under denne, ett steg opp i disposisjonsnivået. Hold nede Ctrl når du trykker denne knappen hvis du vil flytte bare den valgte overskifta ett nivå opp." +msgstr "Flytter den valgte overskriften, og alle overskrifter under denne, ett steg opp i disposisjonsnivået. Hold nede Ctrl når du trykker denne knappen hvis du vil flytte bare den valgte overskiften ett nivå opp." #. A7vWQ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:593 @@ -20173,7 +20166,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:597 msgctxt "navigatorpanel|extended_tip|demote" msgid "Decreases the outline level of the selected heading, and the headings that occur below the heading, by one. To only decrease the outline level of the selected heading, hold down Ctrl, and then click this icon." -msgstr "Flytter den valgte overskrifta, og alle overskrifter under denne, ett steg ned i disposisjonsnivået. Hold nede Ctrl når du trykker denne knappen hvis du vil flytte bare den valgte overskifta ett nivå ned." +msgstr "Flytter den valgte overskriften, og alle overskrifter under denne, ett steg ned i disposisjonsnivået. Hold nede Ctrl når du trykker denne knappen hvis du vil flytte bare den valgte overskiften ett nivå ned." #. SndsZ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:610 @@ -20245,7 +20238,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:809 msgctxt "navigatorpanel|extended_tip|edit" msgid "Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the Index dialog is opened." -msgstr "" +msgstr "Rediger innholdet til komponenten som er valgt i Navigator-listen. Hvis utvalget er en fil, åpnes filen for redigering. Hvis valget er en indeks, åpnes indeksdialogen." #. svmCG #: sw/uiconfig/swriter/ui/navigatorpanel.ui:822 @@ -20281,7 +20274,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:870 msgctxt "navigatorpanel|extended_tip|save" msgid "Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed." -msgstr "" +msgstr "Lagrer en kopi av innholdet i de koblede filene i hoveddokumentet. Dette sikrer at det nåværende innholdet er tilgjengelig når de koblede filene ikke er tilgjengelige." #. yEETn #: sw/uiconfig/swriter/ui/navigatorpanel.ui:893 @@ -20293,7 +20286,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:897 msgctxt "navigatorpanel|extended_tip|moveup" msgid "Moves the selection up one position in the Navigator list." -msgstr "" +msgstr "Flytter valget opp en posisjon i Navigator-listen." #. KN3mN #: sw/uiconfig/swriter/ui/navigatorpanel.ui:910 @@ -20305,7 +20298,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:914 msgctxt "navigatorpanel|extended_tip|movedown" msgid "Moves the selection down one position in the Navigator list." -msgstr "" +msgstr "Flytter valget ned en posisjon i Navigator-listen." #. 3RwmV #: sw/uiconfig/swriter/ui/navigatorpanel.ui:1006 @@ -20341,7 +20334,7 @@ #: sw/uiconfig/swriter/ui/newuserindexdialog.ui:104 msgctxt "newuserindexdialog|label2" msgid "_Name" -msgstr "_Navn" +msgstr "Navn" #. W9iAY #: sw/uiconfig/swriter/ui/newuserindexdialog.ui:135 @@ -21590,13 +21583,13 @@ #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:143 msgctxt "numberingnamedialog|extended_tip|form" msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to." -msgstr "Velg en nummereringsstil i lista og gi den et navn. Tallene i lista tilsvarer disposisjonsnivået som stilen er tildelt." +msgstr "Velg en nummereringsstil i listen og gi den et navn. Tallene i listen tilsvarer disposisjonsnivået som stilen er tildelt." #. YeQcD #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:162 msgctxt "numberingnamedialog|extended_tip|entry" msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to." -msgstr "Velg en nummereringsstil i lista og gi den et navn. Tallene i lista tilsvarer disposisjonsnivået som stilen er tildelt." +msgstr "Velg en nummereringsstil i listen og gi den et navn. Tallene i listen tilsvarer disposisjonsnivået som stilen er tildelt." #. VExwF #: sw/uiconfig/swriter/ui/numberingnamedialog.ui:179 @@ -21608,7 +21601,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:44 msgctxt "numparapage|labelFT_OUTLINE_LEVEL" msgid "Outline level:" -msgstr "Omrissnivå:" +msgstr "Disposisjonsnivå:" #. y9mKV #: sw/uiconfig/swriter/ui/numparapage.ui:60 @@ -21680,7 +21673,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:74 msgctxt "numparapage|extended_tip|comboLB_OUTLINE_LEVEL" msgid "Assigns an outline level from 1 to 10 to the selected paragraphs or Paragraph Style." -msgstr "" +msgstr "Tilordner et disposisjonsnivå fra 1 til 10 til de valgte avsnittene eller avsnittsstil." #. A9CrD #: sw/uiconfig/swriter/ui/numparapage.ui:92 @@ -21704,7 +21697,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:157 msgctxt "numparapage|extended_tip|comboLB_NUMBER_STYLE" msgid "Select the Numbering Style that you want to apply to the paragraph." -msgstr "" +msgstr "Velg nummerstilen du vil bruke på avsnittet." #. eBkEW #: sw/uiconfig/swriter/ui/numparapage.ui:169 @@ -21734,7 +21727,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:234 msgctxt "numparapage|checkCB_NUMBER_NEW_START" msgid "S_tart with:" -msgstr "S_tart med:" +msgstr "Start med:" #. 2Vb8v #: sw/uiconfig/swriter/ui/numparapage.ui:248 @@ -21758,19 +21751,19 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:332 msgctxt "numparapage|checkCB_COUNT_PARA" msgid "_Include this paragraph in line numbering" -msgstr "_Ta med dette avsnittet i linjenummereringa" +msgstr "Ta med dette avsnittet i linjenummereringen" #. mhtFH #: sw/uiconfig/swriter/ui/numparapage.ui:343 msgctxt "numparapage|extended_tip|checkCB_COUNT_PARA" msgid "Includes the current paragraph in the line numbering." -msgstr "Tar med det gjeldende avsnittet i linjenummereringa." +msgstr "Tar med det gjeldende avsnittet i linjenummereringen." #. wGRPh #: sw/uiconfig/swriter/ui/numparapage.ui:355 msgctxt "numparapage|checkCB_RESTART_PARACOUNT" msgid "Rest_art at this paragraph" -msgstr "Start på n_ytt ved dette avsnittet" +msgstr "Start på nytt ved dette avsnittet" #. YhNoE #: sw/uiconfig/swriter/ui/numparapage.ui:366 @@ -21782,13 +21775,13 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:393 msgctxt "numparapage|labelFT_RESTART_NO" msgid "_Start with:" -msgstr "_Start med:" +msgstr "Start med:" #. CMbmy #: sw/uiconfig/swriter/ui/numparapage.ui:420 msgctxt "numparapage|extended_tip|spinNF_RESTART_PARA" msgid "Enter the number at which to restart the line numbering" -msgstr "Velg tallet du vil starte linjenummereringa på nytt ved." +msgstr "Velg tallet du vil starte linjenummereringen på nytt ved." #. FcEtC #: sw/uiconfig/swriter/ui/numparapage.ui:445 @@ -21866,7 +21859,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:79 msgctxt "optcaptionpage|numberingft" msgid "_Numbering:" -msgstr "_Nummerering:" +msgstr "Nummerering:" #. fqC47 #: sw/uiconfig/swriter/ui/optcaptionpage.ui:93 @@ -21920,7 +21913,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:232 msgctxt "optcaptionpage|label2" msgid "Caption" -msgstr "bildetekst" +msgstr "Bildetekst" #. viZwe #: sw/uiconfig/swriter/ui/optcaptionpage.ui:270 @@ -21950,7 +21943,7 @@ #: sw/uiconfig/swriter/ui/optcaptionpage.ui:324 msgctxt "extended_tip|level" msgid "Specifies the headings or chapter levels where you want the numbering to start." -msgstr "Angir på hvilket overskrifts- eller kapittelnivå nummereringa skal startes." +msgstr "Angir på hvilket overskrifts- eller kapittelnivå nummereringen skal startes." #. UgMg6 #: sw/uiconfig/swriter/ui/optcaptionpage.ui:341 @@ -22038,19 +22031,19 @@ #: sw/uiconfig/swriter/ui/optcomparison.ui:38 msgctxt "optcomparison|auto" msgid "A_uto" -msgstr "A_utomatisk" +msgstr "Automatisk" #. LBDEx #: sw/uiconfig/swriter/ui/optcomparison.ui:54 msgctxt "optcomparison|byword" msgid "By w_ord" -msgstr "Ved o_rd" +msgstr "Ved ord" #. LCQRz #: sw/uiconfig/swriter/ui/optcomparison.ui:70 msgctxt "optcomparison|bycharacter" msgid "By _character" -msgstr "Ved _tegn" +msgstr "Ved tegn" #. BZL9r #: sw/uiconfig/swriter/ui/optcomparison.ui:92 @@ -22062,7 +22055,7 @@ #: sw/uiconfig/swriter/ui/optcomparison.ui:126 msgctxt "optcomparison|ignore" msgid "Ignore _pieces of length" -msgstr "Ignorer _deler av lengda" +msgstr "Ignorer deler av lengden" #. cCUqS #: sw/uiconfig/swriter/ui/optcomparison.ui:141 @@ -22092,7 +22085,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:139 msgctxt "optcompatpage|label2" msgid "Global Compatibility Options" -msgstr "" +msgstr "Alternativer for global kompatibilitet" #. KC3YE #: sw/uiconfig/swriter/ui/optcompatpage.ui:235 @@ -22158,7 +22151,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:245 msgctxt "optcompatpage|format" msgid "Expand word space on lines with manual line breaks in justified paragraphs" -msgstr "Større mellomrom mellom orda på linjer med manuelt linjeskift i blokkjusterte avsnitt" +msgstr "Større mellomrom mellom ordene på linjer med manuelt linjeskift i blokkjusterte avsnitt" #. mjaAT #: sw/uiconfig/swriter/ui/optcompatpage.ui:246 @@ -22224,121 +22217,121 @@ #: sw/uiconfig/swriter/ui/optfonttabpage.ui:52 msgctxt "optfonttabpage|size_label" msgid "_Size" -msgstr "_Størrelse" +msgstr "Størrelse" #. KyMdw #: sw/uiconfig/swriter/ui/optfonttabpage.ui:66 msgctxt "optfonttabpage|default_label" msgid "De_fault:" -msgstr "_Standard" +msgstr "Standard" #. 9ArgF #: sw/uiconfig/swriter/ui/optfonttabpage.ui:80 msgctxt "optfonttabpage|heading_label" msgid "Headin_g:" -msgstr "_Overskrift:" +msgstr "Overskrift:" #. iHgYG #: sw/uiconfig/swriter/ui/optfonttabpage.ui:94 msgctxt "optfonttabpage|list_label" msgid "_List:" -msgstr "_Liste:" +msgstr "Liste:" #. FZvkS #: sw/uiconfig/swriter/ui/optfonttabpage.ui:108 msgctxt "optfonttabpage|caption_label" msgid "C_aption:" -msgstr "_Bildetekst:" +msgstr "Bildetekst:" #. mBVuP #: sw/uiconfig/swriter/ui/optfonttabpage.ui:122 msgctxt "optfonttabpage|index_label" msgid "_Index:" -msgstr "_Register:" +msgstr "Register:" #. ymmxp #: sw/uiconfig/swriter/ui/optfonttabpage.ui:147 msgctxt "extended_tip|standardbox" msgid "Specifies the font to be used for the Default Paragraph Style." -msgstr "Angir hvilken skrift som skal brukes i avsnittsstilen Standard." +msgstr "Angir hvilken font som skal brukes i avsnittsstilen Standard." #. C8bAt #: sw/uiconfig/swriter/ui/optfonttabpage.ui:171 msgctxt "extended_tip|titlebox" msgid "Specifies the font to be used for headings." -msgstr "Angi skriften som skal brukes i overskrifter." +msgstr "Angi fonten som skal brukes i overskrifter." #. hEhde #: sw/uiconfig/swriter/ui/optfonttabpage.ui:195 msgctxt "extended_tip|listbox" msgid "Specifies the fonts for lists and numbering and all derived styles." -msgstr "Bestemmer hvilke skrifttyper som skal brukes i lister, nummerering og stiler som er baserte på disse." +msgstr "Bestemmer hvilke fonttyper som skal brukes i lister, nummerering og stiler som er baserte på disse." #. oxAeB #: sw/uiconfig/swriter/ui/optfonttabpage.ui:219 msgctxt "extended_tip|labelbox" msgid "Specifies the font used for the captions of images and tables." -msgstr "Angi skriften som skal brukes i overskrifter." +msgstr "Angi fonten som skal brukes i overskrifter." #. v8res #: sw/uiconfig/swriter/ui/optfonttabpage.ui:243 msgctxt "extended_tip|idxbox" msgid "Specifies the font used for indexes, alphabetical indexes, and tables of contents." -msgstr "Angir skriften som skal brukes i registre, alfabetiske registre og innholdslister." +msgstr "Angir fonten som skal brukes i registre, alfabetiske registre og innholdslister." #. VwA36 #: sw/uiconfig/swriter/ui/optfonttabpage.ui:266 msgctxt "extended_tip|standardheight" msgid "Specifies the size of the font." -msgstr "Angir skriftstørrelsen." +msgstr "Angir fontstørrelsen." #. B9rgK #: sw/uiconfig/swriter/ui/optfonttabpage.ui:289 msgctxt "extended_tip|titleheight" msgid "Specifies the size of the font." -msgstr "Angir skriftstørrelsen." +msgstr "Angir fontstørrelsen." #. cRRCw #: sw/uiconfig/swriter/ui/optfonttabpage.ui:312 msgctxt "extended_tip|listheight" msgid "Specifies the size of the font." -msgstr "Angir skriftstørrelsen." +msgstr "Angir fontstørrelsen." #. eNpiB #: sw/uiconfig/swriter/ui/optfonttabpage.ui:335 msgctxt "extended_tip|labelheight" msgid "Specifies the size of the font." -msgstr "Angir skriftstørrelsen." +msgstr "Angir fontstørrelsen." #. DAzgw #: sw/uiconfig/swriter/ui/optfonttabpage.ui:358 msgctxt "extended_tip|indexheight" msgid "Specifies the size of the font." -msgstr "Angir skriftstørrelsen." +msgstr "Angir fontstørrelsen." #. 7EQZ8 #: sw/uiconfig/swriter/ui/optfonttabpage.ui:378 msgctxt "optfonttabpage|label1" msgid "Basic Fonts (%1)" -msgstr "Grunnskrifter (%1)" +msgstr "Basisfonterr (%1)" #. 6aJB2 #: sw/uiconfig/swriter/ui/optfonttabpage.ui:401 msgctxt "optfonttabpage|standard" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. VezyG #: sw/uiconfig/swriter/ui/optfonttabpage.ui:422 msgctxt "extended_tip|OptFontTabPage" msgid "Specifies the settings for the basic fonts in your documents." -msgstr "Innstillingene for de grunnleggende skrifttypene i dokumentene dine." +msgstr "Innstillingene for de grunnleggende fonttypene i dokumentene dine." #. pPiqe #: sw/uiconfig/swriter/ui/optformataidspage.ui:38 msgctxt "optformataidspage|paragraph" msgid "Pa_ragraph end" -msgstr "Avsnitts_slutt" +msgstr "Avsnittsslutt" #. oDTBA #: sw/uiconfig/swriter/ui/optformataidspage.ui:47 @@ -22350,19 +22343,19 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:58 msgctxt "optformataidspage|hyphens" msgid "Soft h_yphens" -msgstr "_Myke bindestreker" +msgstr "Myke bindestreker" #. D9auF #: sw/uiconfig/swriter/ui/optformataidspage.ui:67 msgctxt "extended_tip|hyphens" msgid "Specifies whether soft hyphens (called also as optional or discretionary hyphens) are displayed. These are hidden user-defined delimiters that you enter within a word by pressing Ctrl+Hyphen(-). Words with soft hyphens are only separated at the end of a line at the point where a soft hyphen has been inserted, irrespective of whether the automatic hyphenation is activated or deactivated." -msgstr " Angir om selvvalgte skilletegn skal vises. Dette er skjulte skilletegn du setter inn i et ord ved å trykke «Ctrl + bindestrek (-)». Ord med selvvalgte skilletegn deles bare på slutten av en linje der et selvvalgt skilletegn er satt inn, uansett om automatisk orddeling er slått på eller av." +msgstr "Angir om selvvalgte skilletegn skal vises. Dette er skjulte skilletegn du setter inn i et ord ved å trykke «Ctrl + bindestrek (-)». Ord med selvvalgte skilletegn deles bare på slutten av en linje der et selvvalgt skilletegn er satt inn, uansett om automatisk orddeling er slått på eller av." #. GTJrw #: sw/uiconfig/swriter/ui/optformataidspage.ui:78 msgctxt "optformataidspage|spaces" msgid "Spac_es" -msgstr "M_ellomrom" +msgstr "Mellomrom" #. rubDd #: sw/uiconfig/swriter/ui/optformataidspage.ui:87 @@ -22374,13 +22367,13 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:98 msgctxt "optformataidspage|nonbreak" msgid "Non-breaking s_paces" -msgstr "_Harde mellomrom" +msgstr "Harde mellomrom" #. jd36B #: sw/uiconfig/swriter/ui/optformataidspage.ui:107 msgctxt "extended_tip|nonbreak" msgid "Specifies that non-breaking spaces are shown as gray boxes. Non-breaking spaces are not broken at the end of a line and are entered with the Ctrl+Shift+Spacebar shortcut keys." -msgstr " Angir at harde mellomrom vises som grå bokser. Når du bruker et hardt mellomrom, brytes ikke ordene på hver side av det på slutten av en linje. Du kan sette inn et hardt mellomrom med hurtigtastene «Ctrl + mellomrom»." +msgstr "Angir at harde mellomrom vises som grå bokser. Når du bruker et hardt mellomrom, brytes ikke ordene på hver side av det på slutten av en linje. Du kan sette inn et hardt mellomrom med hurtigtastene «Ctrl + mellomrom»." #. HyAaY #: sw/uiconfig/swriter/ui/optformataidspage.ui:118 @@ -22398,7 +22391,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:138 msgctxt "optformataidspage|break" msgid "Brea_ks" -msgstr "_Skifte" +msgstr "Skifte" #. smjwV #: sw/uiconfig/swriter/ui/optformataidspage.ui:147 @@ -22438,7 +22431,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:273 msgctxt "optformataidspage|displayfl" msgid "Display Formatting" -msgstr "" +msgstr "Vis formatering" #. ufN3R #: sw/uiconfig/swriter/ui/optformataidspage.ui:305 @@ -22474,7 +22467,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:422 msgctxt "optformataidspage|cursoronoff" msgid "_Direct cursor" -msgstr "_Direkte skrivemerke" +msgstr "Direkte skrivemerke" #. AoLf5 #: sw/uiconfig/swriter/ui/optformataidspage.ui:431 @@ -22528,55 +22521,55 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:528 msgctxt "optformataidspage|anchor" msgid "_Anchor:" -msgstr "" +msgstr "Anker" #. 4ahDA #: sw/uiconfig/swriter/ui/optformataidspage.ui:545 msgctxt "optformataidspage|cxDefaultAnchor1" msgid "To Paragraph" -msgstr "" +msgstr "Til Avsnitt" #. Fxh2u #: sw/uiconfig/swriter/ui/optformataidspage.ui:546 msgctxt "optformataidspage|cxDefaultAnchor2" msgid "To Character" -msgstr "" +msgstr "Til Tegn" #. rafqG #: sw/uiconfig/swriter/ui/optformataidspage.ui:547 msgctxt "optformataidspage|cxDefaultAnchor3" msgid "As Character" -msgstr "" +msgstr "Som Tegn" #. B3qDX #: sw/uiconfig/swriter/ui/optformataidspage.ui:564 msgctxt "optformataidspage|lbImage" msgid "Image" -msgstr "" +msgstr "Bilde" #. npuVw #: sw/uiconfig/swriter/ui/optformataidspage.ui:592 msgctxt "extended_tip|OptFormatAidsPage" msgid "In %PRODUCTNAME text and HTML documents, defines the display for certain characters and for the direct cursor." -msgstr "I %PRODUCTNAME tekst og HTML-dokumenter defineres skjermen for bestemte tegn og for den direkte markøren." +msgstr "I %PRODUCTNAME tekst og HTML-dokumenter defineres visning for bestemte tegn og for den direkte markøren." #. V9Ahc #: sw/uiconfig/swriter/ui/optgeneralpage.ui:47 msgctxt "optgeneralpage|updatefields" msgid "_Fields" -msgstr "_Felt" +msgstr "Felt" #. SobJt #: sw/uiconfig/swriter/ui/optgeneralpage.ui:56 msgctxt "extended_tip|updatefields" msgid "The contents of all fields are updated automatically whenever the screen contents are displayed as new. Even with this box unchecked, some fields are updated each time a special condition takes place." -msgstr " Innholdet i alle felt oppdateres automatisk når innholdet på skjermen vises som nytt. Noen av feltene oppdateres hver gang et bestemt vilkår er oppfylt, selv om det ikke er satt et merke i denne boksen." +msgstr "Innholdet i alle felt oppdateres automatisk når innholdet på skjermen vises som nytt. Noen av feltene oppdateres hver gang et bestemt vilkår er oppfylt, selv om det ikke er satt et merke i denne boksen." #. gGD6o #: sw/uiconfig/swriter/ui/optgeneralpage.ui:67 msgctxt "optgeneralpage|updatecharts" msgid "_Charts" -msgstr "_Diagrammer" +msgstr "Diagrammer" #. xA9SL #: sw/uiconfig/swriter/ui/optgeneralpage.ui:76 @@ -22594,7 +22587,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:127 msgctxt "optgeneralpage|always" msgid "_Always" -msgstr "_Alltid" +msgstr "Alltid" #. 3WiMS #: sw/uiconfig/swriter/ui/optgeneralpage.ui:137 @@ -22606,7 +22599,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:148 msgctxt "optgeneralpage|onrequest" msgid "_On request" -msgstr "_På forespørsel" +msgstr "På forespørsel" #. 56ADF #: sw/uiconfig/swriter/ui/optgeneralpage.ui:158 @@ -22618,7 +22611,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:169 msgctxt "optgeneralpage|never" msgid "_Never" -msgstr "A_ldri" +msgstr "Aldri" #. zCHEF #: sw/uiconfig/swriter/ui/optgeneralpage.ui:179 @@ -22636,7 +22629,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:238 msgctxt "optgeneralpage|label5" msgid "_Measurement unit:" -msgstr "_Måleenhet:" +msgstr "Måleenhet:" #. pFfju #: sw/uiconfig/swriter/ui/optgeneralpage.ui:256 @@ -22648,7 +22641,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:269 msgctxt "optgeneralpage|tablabel" msgid "_Tab stops:" -msgstr "_Tabulatorer:" +msgstr "Tabulatorer:" #. ptDvH #: sw/uiconfig/swriter/ui/optgeneralpage.ui:292 @@ -22660,13 +22653,13 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:315 msgctxt "optgeneralpage|usecharunit" msgid "_Enable char unit" -msgstr "_Slå på tegnenhet" +msgstr "Slå på tegnenhet" #. BSsXz #: sw/uiconfig/swriter/ui/optgeneralpage.ui:325 msgctxt "extended_tip|usecharunit" msgid "When this setting is enabled, the measurement units of indents and spacing on Format - Paragraph - Indents & Spacing tab will be character (ch) and line." -msgstr "Når denne innstillingen er aktivert, vil måleenhetene for innrykk og mellomrom på fanen Format - Paragraf - innrykk & Avstand være tegn (ch) og linje." +msgstr "Når denne innstillingen er aktivert, vil måleenhetene for innrykk og mellomrom på fanen Format - Avsnitt - innrykk & Avstand være tegn (ch) og linje." #. Ktgd2 #: sw/uiconfig/swriter/ui/optgeneralpage.ui:336 @@ -22690,7 +22683,7 @@ #: sw/uiconfig/swriter/ui/optgeneralpage.ui:414 msgctxt "optgeneralpage|label7" msgid "_Additional separators:" -msgstr "_Flere skilletegn:" +msgstr "Flere skilletegn:" #. 9pDAg #: sw/uiconfig/swriter/ui/optgeneralpage.ui:450 @@ -22720,19 +22713,19 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:39 msgctxt "optredlinepage|insert_label" msgid "_Attributes:" -msgstr "_Egenskaper:" +msgstr "Egenskaper:" #. AdCLY #: sw/uiconfig/swriter/ui/optredlinepage.ui:53 msgctxt "optredlinepage|insertcolor_label" msgid "Co_lor:" -msgstr "_Farge:" +msgstr "Farge:" #. zM5BS #: sw/uiconfig/swriter/ui/optredlinepage.ui:69 msgctxt "optredlinepage|insert" msgid "[None]" -msgstr "[None]" +msgstr "[Ingen]" #. mhAvC #: sw/uiconfig/swriter/ui/optredlinepage.ui:70 @@ -22774,7 +22767,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:76 msgctxt "optredlinepage|insert" msgid "Lowercase" -msgstr "små bokstaver" +msgstr "Små bokstaver" #. DHzGV #: sw/uiconfig/swriter/ui/optredlinepage.ui:77 @@ -22798,7 +22791,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:83 msgctxt "extended_tip|insert" msgid "Specifies how changes in the document are displayed when text is inserted." -msgstr " hvordan endringer i dokumentet vises når tekst blir satt inn." +msgstr "Angir hvordan endringer i dokumentet vises når tekst blir satt inn." #. mGEfK #: sw/uiconfig/swriter/ui/optredlinepage.ui:106 @@ -22810,7 +22803,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:107 msgctxt "extended_tip|insertcolor" msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change." -msgstr "Du kan også velge en farge som skal vise hver type endring som tas opp. Når du velger «Av forfatter» fra lista, blir fargen automatisk bestemt av %PRODUCTNAME. Da får hver forfatter sin egen farge som brukes til å vise endringer som gjøres av denne forfatteren." +msgstr "Du kan også velge en farge som skal vise hver type endring som tas opp. Når du velger «Av forfatter» fra listen, blir fargen automatisk bestemt av %PRODUCTNAME. Da får hver forfatter sin egen farge som brukes til å vise endringer som gjøres av denne forfatteren." #. aCEwk #: sw/uiconfig/swriter/ui/optredlinepage.ui:152 @@ -22822,13 +22815,13 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:191 msgctxt "optredlinepage|deleted_label" msgid "Attri_butes:" -msgstr "E_genskaper:" +msgstr "Egenskaper:" #. CzQcF #: sw/uiconfig/swriter/ui/optredlinepage.ui:205 msgctxt "optredlinepage|deletedcolor_label" msgid "Col_or:" -msgstr "F_arge:" +msgstr "Farge:" #. JsEJx #: sw/uiconfig/swriter/ui/optredlinepage.ui:222 @@ -22846,7 +22839,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:246 msgctxt "extended_tip|deletedcolor" msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change." -msgstr "Du kan også velge en farge som skal vise hver type endring som tas opp. Når du velger «Av forfatter» fra lista, blir fargen automatisk bestemt av %PRODUCTNAME. Da får hver forfatter sin egen farge som brukes til å vise endringer som gjøres av denne forfatteren." +msgstr "Du kan også velge en farge som skal vise hver type endring som tas opp. Når du velger «Av forfatter» fra listen, blir fargen automatisk bestemt av %PRODUCTNAME. Da får hver forfatter sin egen farge som brukes til å vise endringer som gjøres av denne forfatteren." #. 3FpZy #: sw/uiconfig/swriter/ui/optredlinepage.ui:291 @@ -22858,19 +22851,19 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:330 msgctxt "optredlinepage|changed_label" msgid "Attrib_utes:" -msgstr "E_genskaper:" +msgstr "Egenskaper:" #. 3pALq #: sw/uiconfig/swriter/ui/optredlinepage.ui:344 msgctxt "optredlinepage|changedcolor_label" msgid "Colo_r:" -msgstr "Fa_rge:" +msgstr "Farge:" #. hFSia #: sw/uiconfig/swriter/ui/optredlinepage.ui:361 msgctxt "extended_tip|changed" msgid "Defines how changes to text attributes are displayed in the document. These changes affect attributes such as bold, italic or underline." -msgstr "Angi hvordan endringer i tekstegenskaper skal vises i dokumentet. Disse endringene innvirker blant annet på tildelinga av formateringer, som halvfet, kursiv og understreking." +msgstr "Angi hvordan endringer i tekstegenskaper skal vises i dokumentet. Disse endringene innvirker blant annet på tildeling av formateringer, som halvfet, kursiv og understreking." #. QUmdP #: sw/uiconfig/swriter/ui/optredlinepage.ui:384 @@ -22882,7 +22875,7 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:385 msgctxt "extended_tip|changedcolor" msgid "You can also choose a color to display each type of recorded change. When you choose the condition \"By author\" in the list, the color is automatically determined by %PRODUCTNAME, then modified to match to the author of each change." -msgstr "Du kan også velge en farge som skal vise hver type endring som tas opp. Når du velger «Av forfatter» fra lista, blir fargen automatisk bestemt av %PRODUCTNAME. Da får hver forfatter sin egen farge som brukes til å vise endringer som gjøres av denne forfatteren." +msgstr "Du kan også velge en farge som skal vise hver type endring som tas opp. Når du velger «Av forfatter» fra listen, blir fargen automatisk bestemt av %PRODUCTNAME. Da får hver forfatter sin egen farge som brukes til å vise endringer som gjøres av denne forfatteren." #. ZqYdk #: sw/uiconfig/swriter/ui/optredlinepage.ui:430 @@ -22906,19 +22899,19 @@ #: sw/uiconfig/swriter/ui/optredlinepage.ui:493 msgctxt "optredlinepage|markpos_label" msgid "Mar_k:" -msgstr "Mer_k:" +msgstr "Merk:" #. paCGy #: sw/uiconfig/swriter/ui/optredlinepage.ui:507 msgctxt "optredlinepage|markcolor_label" msgid "_Color:" -msgstr "_Farge:" +msgstr "Farge:" #. T9Fd9 #: sw/uiconfig/swriter/ui/optredlinepage.ui:551 msgctxt "optredlinepage|markpos" msgid "[None]" -msgstr "[None]" +msgstr "[Ingen]" #. gj7eD #: sw/uiconfig/swriter/ui/optredlinepage.ui:552 @@ -22966,7 +22959,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:65 msgctxt "opttablepage|header" msgid "H_eading" -msgstr "_Overskrift" +msgstr "Overskrift" #. 4qFFB #: sw/uiconfig/swriter/ui/opttablepage.ui:74 @@ -22978,7 +22971,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:85 msgctxt "opttablepage|repeatheader" msgid "Re_peat on each page" -msgstr "_Gjenta på hver side" +msgstr "Gjenta på hver side" #. bUgvP #: sw/uiconfig/swriter/ui/opttablepage.ui:95 @@ -22990,7 +22983,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:106 msgctxt "opttablepage|dontsplit" msgid "_Do not split" -msgstr "_Ikke del avsnitt" +msgstr "Ikke del avsnitt" #. N7b3p #: sw/uiconfig/swriter/ui/opttablepage.ui:115 @@ -23002,7 +22995,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:126 msgctxt "opttablepage|border" msgid "B_order" -msgstr "_Kantlinje" +msgstr "Kantlinje" #. qkQei #: sw/uiconfig/swriter/ui/opttablepage.ui:135 @@ -23020,7 +23013,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:189 msgctxt "opttablepage|numformatting" msgid "_Number recognition" -msgstr "_Tallgjenkjenning" +msgstr "Tallgjenkjenning" #. 8Bg9h #: sw/uiconfig/swriter/ui/opttablepage.ui:198 @@ -23032,7 +23025,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:209 msgctxt "opttablepage|numfmtformatting" msgid "N_umber format recognition" -msgstr "Tall_formatgjenkjenning" +msgstr "Tallformat gjenkjenning" #. 7CocC #: sw/uiconfig/swriter/ui/opttablepage.ui:219 @@ -23044,7 +23037,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:230 msgctxt "opttablepage|numalignment" msgid "_Alignment" -msgstr "_Justering" +msgstr "Justering" #. dBHyT #: sw/uiconfig/swriter/ui/opttablepage.ui:240 @@ -23068,7 +23061,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:323 msgctxt "opttablepage|fix" msgid "_Fixed" -msgstr "_Fast" +msgstr "Fast" #. jBrSY #: sw/uiconfig/swriter/ui/opttablepage.ui:334 @@ -23080,7 +23073,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:345 msgctxt "opttablepage|fixprop" msgid "Fi_xed, proportional" -msgstr "Fast, _proporsjonal" +msgstr "Fast, proporsjonal" #. zDqF9 #: sw/uiconfig/swriter/ui/opttablepage.ui:357 @@ -23092,7 +23085,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:368 msgctxt "opttablepage|var" msgid "_Variable" -msgstr "_Variabel" +msgstr "Variabel" #. TFEkh #: sw/uiconfig/swriter/ui/opttablepage.ui:380 @@ -23140,13 +23133,13 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:517 msgctxt "opttablepage|label5" msgid "_Row:" -msgstr "_Rad:" +msgstr "Rad:" #. bb7Uf #: sw/uiconfig/swriter/ui/opttablepage.ui:532 msgctxt "opttablepage|label6" msgid "_Column:" -msgstr "_Kolonne:" +msgstr "Kolonne:" #. MwaG6 #: sw/uiconfig/swriter/ui/opttablepage.ui:569 @@ -23164,13 +23157,13 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:602 msgctxt "opttablepage|label15" msgid "Ro_w:" -msgstr "R_ad:" +msgstr "Rad:" #. pBM3d #: sw/uiconfig/swriter/ui/opttablepage.ui:617 msgctxt "opttablepage|label16" msgid "Colu_mn:" -msgstr "K_olonne:" +msgstr "Kolonne:" #. KcBp8 #: sw/uiconfig/swriter/ui/opttablepage.ui:631 @@ -23254,7 +23247,7 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:95 msgctxt "outlinenumbering|saveas" msgid "Save _As..." -msgstr "Lagre _som …" +msgstr "Lagre som …" #. ABAWF #: sw/uiconfig/swriter/ui/outlinenumbering.ui:99 @@ -23266,7 +23259,7 @@ #: sw/uiconfig/swriter/ui/outlinenumbering.ui:106 msgctxt "outlinenumbering|extended_tip|form" msgid "Click a numbering style in the list, and then enter a name for the style. The numbers correspond to the outline level that the styles are assigned to." -msgstr "Velg en nummereringsstil i lista og gi den et navn. Tallene i lista tilsvarer disposisjonsnivået som stilen er tildelt." +msgstr "Velg en nummereringsstil i listen og gi den et navn. Tallene i listen tilsvarer disposisjonsnivået som stilen er tildelt." #. d2QaP #: sw/uiconfig/swriter/ui/outlinenumbering.ui:113 @@ -23302,7 +23295,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:74 msgctxt "outlinenumberingpage|extended_tip|level" msgid "Click the chapter and outline level that you want to modify, and then specify the numbering options for the level." -msgstr "" +msgstr "Klikk på kapittel og omrissnivå du vil endre, og spesifiser deretter nummereringsalternativene for nivået." #. 2ibio #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:87 @@ -23368,7 +23361,7 @@ #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:269 msgctxt "outlinenumberingpage|extended_tip|startat" msgid "Enter the number that you want to restart the chapter numbering at." -msgstr "Velg tallet du vil starte kapittelnummereringa på nytt med." +msgstr "Velg tallet du vil starte kapittelnummereringen på nytt med." #. YoP59 #: sw/uiconfig/swriter/ui/outlinenumberingpage.ui:286 @@ -23416,7 +23409,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:93 msgctxt "outlinepositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "Velg nivå (er) du vil endre." #. aBYaM #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:106 @@ -23468,19 +23461,19 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:203 msgctxt "outlinepositionpage|extended_tip|numdistmf" msgid "The alignment of the numbering symbol is adjusted to get the desired minimum space. If it is not possible because the numbering area is not wide enough, then the start of the text is adjusted." -msgstr "" +msgstr "Justeringen av nummereringssymbolet justeres for å få ønsket minimumsplass. Hvis det ikke er mulig fordi nummereringsområdet ikke er bredt nok, justeres starten på teksten." #. JdjtA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:216 msgctxt "outlinepositionpage|numberingwidth" msgid "Width of numbering:" -msgstr "Bredde på nummereringa:" +msgstr "Bredde på nummereringen:" #. bBUvA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:237 msgctxt "outlinepositionpage|extended_tip|numberingwidthmf" msgid "Enter the width of the numbering area. The numbering symbol can be left, center or right in this area." -msgstr "" +msgstr "Angi bredden på nummereringsområdet. Nummereringssymbolet kan være venstre, midt eller høyre i dette området." #. aZwtj #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:248 @@ -23492,7 +23485,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:257 msgctxt "outlinepositionpage|extended_tip|relative" msgid "Indents the current level relative to the previous level in the list hierarchy." -msgstr "" +msgstr "Innrykker gjeldende nivå i forhold til forrige nivå i listehierarkiet." #. jBvmB #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:270 @@ -23504,7 +23497,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:291 msgctxt "outlinepositionpage|extended_tip|indentmf" msgid "Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering area. If the current paragraph style uses an indent, the amount you enter here is added to the indent." -msgstr "" +msgstr "Angi hvor mye plass det skal være mellom venstre sidemarg (eller venstre kant av tekstobjektet) og venstre kant av nummereringsområdet. Hvis den gjeldende avsnittstilen bruker et innrykk, blir verdien du oppgir her lagt til innrykk." #. GFsnA #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:304 @@ -23720,7 +23713,7 @@ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:95 msgctxt "pagefooterpanel|footertoggle" msgid "Margins:" -msgstr "" +msgstr "Marger:" #. xepvQ #: sw/uiconfig/swriter/ui/pagefooterpanel.ui:107 @@ -23810,7 +23803,7 @@ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:95 msgctxt "pageheaderpanel|headertoggle" msgid "Margins:" -msgstr "" +msgstr "Marger:" #. PAGRJ #: sw/uiconfig/swriter/ui/pageheaderpanel.ui:107 @@ -23882,19 +23875,19 @@ #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:284 msgctxt "pagemargincontrol|label4" msgid "_Top" -msgstr "_Topp" +msgstr "Topp" #. 3AqWf #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:298 msgctxt "pagemargincontrol|label5" msgid "_Bottom" -msgstr "_Bunn" +msgstr "Bunn" #. bRaFE #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:316 msgctxt "pagemargincontrol|leftLabel" msgid "_Left" -msgstr "_Venstre" +msgstr "Venstre" #. o9Zga #: sw/uiconfig/swriter/ui/pagemargincontrol.ui:331 @@ -24182,7 +24175,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:76 msgctxt "picturepage|label1" msgid "_File name" -msgstr "_Filnavn" +msgstr "Filnavn" #. UYzJC #: sw/uiconfig/swriter/ui/picturepage.ui:94 @@ -24194,19 +24187,19 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:131 msgctxt "picturepage|vert" msgid "_Vertically" -msgstr "_Loddrett" +msgstr "Vertikal" #. wG2bK #: sw/uiconfig/swriter/ui/picturepage.ui:140 msgctxt "picturepage|extended_tip|vert" msgid "Flips the selected image vertically." -msgstr "Snur det valgte bildet loddrett." +msgstr "Snur det valgte bildet vertikalt." #. jwAir #: sw/uiconfig/swriter/ui/picturepage.ui:151 msgctxt "picturepage|hori" msgid "Hori_zontally" -msgstr "_Vannrett" +msgstr "Horisontalt" #. DKxDV #: sw/uiconfig/swriter/ui/picturepage.ui:160 @@ -24224,7 +24217,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:182 msgctxt "picturepage|extended_tip|allpages" msgid "Flips the selected image horizontally on all pages." -msgstr "Speiler det valgte bildet vannrett på alle sidene." +msgstr "Speiler det valgte bildet horisontalt på alle sidene." #. FX5Cn #: sw/uiconfig/swriter/ui/picturepage.ui:193 @@ -24236,7 +24229,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:204 msgctxt "picturepage|extended_tip|leftpages" msgid "Flips the selected image horizontally only on even pages." -msgstr "Speiler det valgte bildet vannrett bare på partallssider." +msgstr "Speiler det valgte bildet horisontalt bare på partallssider." #. 6eLFK #: sw/uiconfig/swriter/ui/picturepage.ui:215 @@ -24248,7 +24241,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:226 msgctxt "picturepage|extended_tip|rightpages" msgid "Flips the selected image horizontally only on odd pages." -msgstr "Speiler det valgte bildet vannrett bare på oddetallssider." +msgstr "Speiler det valgte bildet horisontalt bare på oddetallssider." #. M9Lxh #: sw/uiconfig/swriter/ui/picturepage.ui:275 @@ -24272,7 +24265,7 @@ #: sw/uiconfig/swriter/ui/picturepage.ui:373 msgctxt "picturepage|FT_ANGLEPRESETS" msgid "Default _settings:" -msgstr "Standard_innstillinger:" +msgstr "Standard innstillinger:" #. HpCfF #: sw/uiconfig/swriter/ui/picturepage.ui:398 @@ -24296,13 +24289,13 @@ #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:104 msgctxt "previewzoomdialog|label1" msgid "_Rows" -msgstr "_Rader" +msgstr "Rader" #. akPZq #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:118 msgctxt "previewzoomdialog|label2" msgid "_Columns" -msgstr "_Kolonner" +msgstr "Kolonner" #. EkNU9 #: sw/uiconfig/swriter/ui/previewzoomdialog.ui:138 @@ -24392,7 +24385,7 @@ #: sw/uiconfig/swriter/ui/printmergedialog.ui:12 msgctxt "printmergedialog|PrintMergeDialog" msgid "Your document contains address database fields. Do you want to print a form letter?" -msgstr "Dokumentet inneholder felt fra en adressedatabase. Vil du skrive ut et flettet brev?" +msgstr "Dokumentet inneholder felt fra en adressedatabase. Vil du skrive ut et formulærbasert brev?" #. LyE96 #: sw/uiconfig/swriter/ui/printmergedialog.ui:87 @@ -24416,7 +24409,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:38 msgctxt "printoptionspage|graphics" msgid "_Images and objects" -msgstr "_Objekter og bilder" +msgstr "Objekter og bilder" #. AXuCG #: sw/uiconfig/swriter/ui/printoptionspage.ui:47 @@ -24428,7 +24421,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:58 msgctxt "printoptionspage|formcontrols" msgid "Form control_s" -msgstr "_Kontrollelementer" +msgstr "Kontrollelementer" #. awozF #: sw/uiconfig/swriter/ui/printoptionspage.ui:67 @@ -24440,19 +24433,19 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:78 msgctxt "printoptionspage|background" msgid "Page ba_ckground" -msgstr "_Sidebakgrunn" +msgstr "Sidebakgrunn" #. ocn5F #: sw/uiconfig/swriter/ui/printoptionspage.ui:87 msgctxt "extended_tip|background" msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document." -msgstr " Angir om du skal inkludere farger og objekter som er satt inn i side bakgrunnen (Format - Side - Bakgrunn) i det trykte dokumentet." +msgstr "Angir om du skal inkludere farger og objekter som er satt inn i side bakgrunnen (Format - Side - Bakgrunn) i det utskrevne dokumentet." #. FWBUe #: sw/uiconfig/swriter/ui/printoptionspage.ui:98 msgctxt "printoptionspage|inblack" msgid "Print text in blac_k" -msgstr "Skriv ut i s_vart" +msgstr "Skriv ut i svart" #. W6rPX #: sw/uiconfig/swriter/ui/printoptionspage.ui:107 @@ -24464,7 +24457,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:118 msgctxt "printoptionspage|hiddentext" msgid "Hidden te_xt" -msgstr "Skjult te_kst" +msgstr "Skjult tekst" #. 5eAqy #: sw/uiconfig/swriter/ui/printoptionspage.ui:127 @@ -24476,7 +24469,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:138 msgctxt "printoptionspage|textplaceholder" msgid "Text _placeholder" -msgstr "_Plassholder for tekst" +msgstr "Plassholder for tekst" #. QfL9u #: sw/uiconfig/swriter/ui/printoptionspage.ui:147 @@ -24494,7 +24487,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:196 msgctxt "printoptionspage|leftpages" msgid "_Left pages" -msgstr "_Venstresider" +msgstr "Venstresider" #. AQNdC #: sw/uiconfig/swriter/ui/printoptionspage.ui:205 @@ -24506,7 +24499,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:216 msgctxt "printoptionspage|rightpages" msgid "_Right pages" -msgstr "_Høyresider" +msgstr "Høyresider" #. YNAik #: sw/uiconfig/swriter/ui/printoptionspage.ui:225 @@ -24518,7 +24511,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:236 msgctxt "printoptionspage|brochure" msgid "Broch_ure" -msgstr "Br_osjyre" +msgstr "Brosjyre" #. BHXQ2 #: sw/uiconfig/swriter/ui/printoptionspage.ui:245 @@ -24548,7 +24541,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:315 msgctxt "printoptionspage|none" msgid "_None" -msgstr "_Ingen" +msgstr "Ingen" #. CDv8b #: sw/uiconfig/swriter/ui/printoptionspage.ui:325 @@ -24560,7 +24553,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:336 msgctxt "printoptionspage|only" msgid "Comments _only" -msgstr "Ba_re merknader" +msgstr "Bare merknader" #. KsL3A #: sw/uiconfig/swriter/ui/printoptionspage.ui:346 @@ -24572,7 +24565,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:357 msgctxt "printoptionspage|end" msgid "End of docu_ment" -msgstr "Sist i dok_umentet" +msgstr "Sist i dokumentet" #. VxM7F #: sw/uiconfig/swriter/ui/printoptionspage.ui:367 @@ -24584,7 +24577,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:378 msgctxt "printoptionspage|endpage" msgid "_End of page" -msgstr "_Nederst på sida" +msgstr "Nederst på siden" #. hxM9Z #: sw/uiconfig/swriter/ui/printoptionspage.ui:388 @@ -24614,7 +24607,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:476 msgctxt "printoptionspage|label5" msgid "_Fax:" -msgstr "" +msgstr "Faks" #. CFCk9 #: sw/uiconfig/swriter/ui/printoptionspage.ui:481 @@ -24632,7 +24625,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:513 msgctxt "printoptionspage|blankpages" msgid "Print _automatically inserted blank pages" -msgstr "Skriv ut _automatisk innsatte tomme sider" +msgstr "Skriv ut automatisk innsatte tomme sider" #. JB64a #: sw/uiconfig/swriter/ui/printoptionspage.ui:522 @@ -24644,7 +24637,7 @@ #: sw/uiconfig/swriter/ui/printoptionspage.ui:533 msgctxt "printoptionspage|papertray" msgid "_Paper tray from printer settings" -msgstr "Samme _papirskuff som i skriveroppsettet" +msgstr "Samme papirskuff som i skriveroppsettet" #. xGp3V #: sw/uiconfig/swriter/ui/printoptionspage.ui:542 @@ -24668,31 +24661,31 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:30 msgctxt "privateuserpage|nameft" msgid "First/last _name/initials:" -msgstr "For_navn/etternavn/forbokstaver:" +msgstr "Fornavn/Etternavn/Initialer:" #. wBySi #: sw/uiconfig/swriter/ui/privateuserpage.ui:44 msgctxt "privateuserpage|streetft" msgid "_Street:" -msgstr "_Adresse:" +msgstr "Adresse:" #. DzXD5 #: sw/uiconfig/swriter/ui/privateuserpage.ui:58 msgctxt "privateuserpage|countryft" msgid "Co_untry/state:" -msgstr "Land/stat:" +msgstr "Land/Stat:" #. 3R8uD #: sw/uiconfig/swriter/ui/privateuserpage.ui:72 msgctxt "privateuserpage|titleft" msgid "_Title/profession:" -msgstr "_Tittel/yrke:" +msgstr "Tittel/Yrke:" #. 7ehFm #: sw/uiconfig/swriter/ui/privateuserpage.ui:86 msgctxt "privateuserpage|phoneft" msgid "Fa_x:" -msgstr "_Faks:" +msgstr "Faks:" #. yWBUi #: sw/uiconfig/swriter/ui/privateuserpage.ui:92 @@ -24704,7 +24697,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:105 msgctxt "privateuserpage|faxft" msgid "Homepage/email:" -msgstr "Hjemmeside / e-post" +msgstr "Hjemmeside/E-post" #. 679ut #: sw/uiconfig/swriter/ui/privateuserpage.ui:130 @@ -24794,19 +24787,19 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:302 msgctxt "privateuserpage|email-atkobject" msgid "email address" -msgstr "epostadresse" +msgstr "e-postadresse" #. PGFMX #: sw/uiconfig/swriter/ui/privateuserpage.ui:303 msgctxt "extended tip | email" msgid "Type your email address." -msgstr "" +msgstr "Skriv inn e-postadressen din." #. Qxb4Q #: sw/uiconfig/swriter/ui/privateuserpage.ui:322 msgctxt "privateuserpage|eastnameft" msgid "First/last _name/initials 2:" -msgstr "For-/etter_navn/forbokstaver 2:" +msgstr "For-/Etternavn/Initialer 2:" #. VgiGB #: sw/uiconfig/swriter/ui/privateuserpage.ui:347 @@ -24848,7 +24841,7 @@ #: sw/uiconfig/swriter/ui/privateuserpage.ui:405 msgctxt "privateuserpage|icityft" msgid "_Zip/city:" -msgstr "_Postnr./poststed:" +msgstr "Postnr./Poststed:" #. AvWPi #: sw/uiconfig/swriter/ui/privateuserpage.ui:430 @@ -25074,13 +25067,13 @@ #: sw/uiconfig/swriter/ui/querysavelabeldialog.ui:15 msgctxt "querysavelabeldialog|QuerySaveLabelDialog" msgid "A label already exists with brand \"%1\" and type \"%2\". Replacing it will overwrite its contents." -msgstr "En etikett med merket «%1» og type «%2» eksisterer allerede. Hvis du overskriver den, blir innholdet sletta." +msgstr "En etikett med merket «%1» og type «%2» eksisterer allerede. Hvis du overskriver den, blir innholdet slettet." #. JCDyD #: sw/uiconfig/swriter/ui/readonlymenu.ui:12 msgctxt "readonlymenu|openurl" msgid "_Open" -msgstr "_Åpne" +msgstr "Åpne" #. CJTUD #: sw/uiconfig/swriter/ui/readonlymenu.ui:20 @@ -25092,7 +25085,7 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:28 msgctxt "readonlymenu|edit" msgid "_Edit" -msgstr "R_ediger" +msgstr "Rediger" #. gCfEC #: sw/uiconfig/swriter/ui/readonlymenu.ui:36 @@ -25104,19 +25097,19 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:44 msgctxt "readonlymenu|reload" msgid "Re_load" -msgstr "_Last på nytt" +msgstr "Last på nytt" #. tFZH6 #: sw/uiconfig/swriter/ui/readonlymenu.ui:52 msgctxt "readonlymenu|reloadframe" msgid "Reload Frame" -msgstr "Last ramma på nytt" +msgstr "Last rammen på nytt" #. DcGxr #: sw/uiconfig/swriter/ui/readonlymenu.ui:60 msgctxt "readonlymenu|html" msgid "HT_ML Source" -msgstr "HT_ML-kilde" +msgstr "HTML-kilde" #. vQ78H #: sw/uiconfig/swriter/ui/readonlymenu.ui:74 @@ -25128,7 +25121,7 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:82 msgctxt "readonlymenu|forward" msgid "_Forward" -msgstr "_Framover" +msgstr "Framover" #. MreRK #: sw/uiconfig/swriter/ui/readonlymenu.ui:96 @@ -25164,7 +25157,7 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:184 msgctxt "readonlymenu|copylink" msgid "Copy _Link" -msgstr "Kopier _lenken" +msgstr "Kopier lenken" #. em9fk #: sw/uiconfig/swriter/ui/readonlymenu.ui:198 @@ -25188,7 +25181,7 @@ #: sw/uiconfig/swriter/ui/readonlymenu.ui:234 msgctxt "readonlymenu|copy" msgid "_Copy" -msgstr "_Kopier" +msgstr "Kopier" #. 8Jkwi #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:8 @@ -25200,13 +25193,13 @@ #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:81 msgctxt "renameautotextdialog|label2" msgid "Na_me" -msgstr "_Navn" +msgstr "Navn" #. FPBan #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:96 msgctxt "renameautotextdialog|label3" msgid "_New" -msgstr "_Ny" +msgstr "Ny" #. j3LTU #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:117 @@ -25224,13 +25217,13 @@ #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:164 msgctxt "renameautotextdialog|label4" msgid "Short_cut" -msgstr "_Snarvei" +msgstr "Snarvei" #. h2ovi #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:179 msgctxt "renameautotextdialog|label5" msgid "_Shortcut" -msgstr "_Snarvei" +msgstr "Snarvei" #. hCUBD #: sw/uiconfig/swriter/ui/renameautotextdialog.ui:199 @@ -25290,7 +25283,7 @@ #: sw/uiconfig/swriter/ui/rowheight.ui:123 msgctxt "rowheight|fit" msgid "_Fit to size" -msgstr "_Tilpass til størrelsen" +msgstr "Tilpass til størrelsen" #. FFHCd #: sw/uiconfig/swriter/ui/rowheight.ui:132 @@ -25308,7 +25301,7 @@ #: sw/uiconfig/swriter/ui/rowheight.ui:175 msgctxt "rowheight|extended_tip|RowHeightDialog" msgid "Changes the height of the selected row(s)." -msgstr "Endra høyden på de valgte radene." +msgstr "Endre høyden på de valgte radene." #. nNUFB #: sw/uiconfig/swriter/ui/saveashtmldialog.ui:7 @@ -25398,7 +25391,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:153 msgctxt "sectionpage|link" msgid "_Link" -msgstr "_Lenke" +msgstr "Lenke" #. FAzSY #: sw/uiconfig/swriter/ui/sectionpage.ui:162 @@ -25410,7 +25403,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:173 msgctxt "sectionpage|dde" msgid "DD_E" -msgstr "DD_E" +msgstr "DDE" #. nGnxp #: sw/uiconfig/swriter/ui/sectionpage.ui:183 @@ -25422,19 +25415,19 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:214 msgctxt "sectionpage|filelabel" msgid "_File name" -msgstr "_Filnavn" +msgstr "Filnavn" #. AYDG6 #: sw/uiconfig/swriter/ui/sectionpage.ui:229 msgctxt "sectionpage|ddelabel" msgid "DDE _command" -msgstr "DDE-_kommando" +msgstr "DDE-kommando" #. BN2By #: sw/uiconfig/swriter/ui/sectionpage.ui:251 msgctxt "sectionpage|sectionlabel" msgid "_Section" -msgstr "_Seksjon" +msgstr "Seksjon" #. UEpHN #: sw/uiconfig/swriter/ui/sectionpage.ui:263 @@ -25446,7 +25439,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:271 msgctxt "sectionpage|extended_tip|selectfile" msgid "Locate the file that you want to insert as a link, and then click Insert." -msgstr "Finn filen du vil sette inn som lenke. Trykk deretter påSett inn" +msgstr "Finn filen du vil sette inn som lenke. Trykk deretter på Sett inn" #. ZFBBc #: sw/uiconfig/swriter/ui/sectionpage.ui:291 @@ -25470,7 +25463,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:379 msgctxt "sectionpage|protect" msgid "_Protect" -msgstr "_Beskytt" +msgstr "Beskytt" #. QFfh7 #: sw/uiconfig/swriter/ui/sectionpage.ui:389 @@ -25482,7 +25475,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:411 msgctxt "sectionpage|withpassword" msgid "Wit_h password" -msgstr "Med _passord" +msgstr "Med passord" #. 8igby #: sw/uiconfig/swriter/ui/sectionpage.ui:425 @@ -25512,7 +25505,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:507 msgctxt "sectionpage|hide" msgid "H_ide" -msgstr "_Skjul" +msgstr "Skjul" #. 483VD #: sw/uiconfig/swriter/ui/sectionpage.ui:517 @@ -25524,7 +25517,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:543 msgctxt "sectionpage|condlabel" msgid "_With Condition" -msgstr "_Med vilkår" +msgstr "Med vilkår" #. W8PCT #: sw/uiconfig/swriter/ui/sectionpage.ui:564 @@ -25542,7 +25535,7 @@ #: sw/uiconfig/swriter/ui/sectionpage.ui:617 msgctxt "sectionpage|editable" msgid "E_ditable in read-only document" -msgstr "_Redigerbar i skrivebeskyttede dokumenter" +msgstr "Redigerbar i skrivebeskyttede dokumenter" #. hoFVv #: sw/uiconfig/swriter/ui/sectionpage.ui:632 @@ -25572,13 +25565,13 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:120 msgctxt "selectaddressdialog|label2" msgid "Your recipients are currently selected from:" -msgstr "Mottakerne er valte fra:" +msgstr "Mottakerne er valgte fra:" #. omDDB #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:137 msgctxt "selectaddressdialog|add" msgid "_Add..." -msgstr "_Legg til …" +msgstr "Legg til …" #. vmGDA #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:144 @@ -25596,7 +25589,7 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:170 msgctxt "selectaddressdialog|create" msgid "_Create..." -msgstr "_Opprett …" +msgstr "Opprett …" #. Q7aPs #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:177 @@ -25608,31 +25601,31 @@ #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:189 msgctxt "selectaddressdialog|filter" msgid "_Filter..." -msgstr "_Filter …" +msgstr "Filter …" #. MByRg #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:196 msgctxt "selectaddressdialog|extended_tip|filter" msgid "Opens the Standard Filter dialog , where you can apply filters to the address list to display the recipients that you want to see." -msgstr "Åpner dialogvinduet Standardfilter, der du kan bruke filtre på adresselista for å vise bare de mottakerne du vil se." +msgstr "Åpner dialogvinduet Standardfilter, der du kan bruke filtre på adresselisten for å vise bare de mottakerne du vil se." #. XLNrP #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:208 msgctxt "selectaddressdialog|edit" msgid "_Edit..." -msgstr "_Rediger …" +msgstr "Rediger …" #. Kp7hn #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:215 msgctxt "selectaddressdialog|extended_tip|edit" msgid "Opens the New Address List dialog, where you can edit the selected address list." -msgstr "Åpner dialogvinduet Ny adresseliste, der du kan redigere den valgte adresselista." +msgstr "Åpner dialogvinduet Ny adresseliste, der du kan redigere den valgte adresselisten." #. taJUf #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:227 msgctxt "selectaddressdialog|changetable" msgid "Change _Table..." -msgstr "Endre _tabell …" +msgstr "Endre tabell …" #. WDUAW #: sw/uiconfig/swriter/ui/selectaddressdialog.ui:234 @@ -25686,7 +25679,7 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:93 msgctxt "selectblockdialog|new" msgid "_New..." -msgstr "_Ny …" +msgstr "Ny …" #. HAcMA #: sw/uiconfig/swriter/ui/selectblockdialog.ui:100 @@ -25698,7 +25691,7 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:112 msgctxt "selectblockdialog|edit" msgid "_Edit..." -msgstr "_Rediger …" +msgstr "Rediger …" #. TauiG #: sw/uiconfig/swriter/ui/selectblockdialog.ui:119 @@ -25710,55 +25703,55 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:131 msgctxt "selectblockdialog|delete" msgid "_Delete" -msgstr "_Slett" +msgstr "Slett" #. Xv9Ub #: sw/uiconfig/swriter/ui/selectblockdialog.ui:138 msgctxt "selectblockdialog|extended_tip|delete" msgid "Deletes the selected address block layout." -msgstr "Sletter den valgte adresseblokkutforminga." +msgstr "Sletter den valgte adresseblokkutformingen." #. FD7A8 #: sw/uiconfig/swriter/ui/selectblockdialog.ui:159 msgctxt "selectblockdialog|label1" msgid "_Select your preferred address block" -msgstr "_Velg den foretrukne adresseblokka" +msgstr "Velg den foretrukne adresseblokken" #. TJ22s #: sw/uiconfig/swriter/ui/selectblockdialog.ui:190 msgctxt "selectblockdialog|never" msgid "N_ever include the country/region" -msgstr "Ta a_ldri med land/region" +msgstr "Ta aldri med land/region" #. zCVnB #: sw/uiconfig/swriter/ui/selectblockdialog.ui:200 msgctxt "selectblockdialog|extended_tip|never" msgid "Excludes country or regional information from the address block." -msgstr "Utelukker informasjon om land eller region i adresseblokka." +msgstr "Utelukker informasjon om land eller region i adresseblokken." #. RnB8Q #: sw/uiconfig/swriter/ui/selectblockdialog.ui:211 msgctxt "selectblockdialog|always" msgid "_Always include the country/region" -msgstr "Ta _alltid med land/region" +msgstr "Ta alltid med land/region" #. TJHWo #: sw/uiconfig/swriter/ui/selectblockdialog.ui:221 msgctxt "selectblockdialog|extended_tip|always" msgid "Includes country or regional information in the address block." -msgstr "Tar med informasjon om land eller region i adresseblokka." +msgstr "Tar med informasjon om land eller region i adresseblokken." #. qMyCk #: sw/uiconfig/swriter/ui/selectblockdialog.ui:232 msgctxt "selectblockdialog|dependent" msgid "Only _include the country/region if it is not:" -msgstr "_Ta med land/region kun hvis det ikke er:" +msgstr "Ta med land/region kun hvis det ikke er:" #. 3jvNX #: sw/uiconfig/swriter/ui/selectblockdialog.ui:245 msgctxt "selectblockdialog|extended_tip|dependent" msgid "Only includes country or regional information in the address block if the value differs from the value that you enter in the text box." -msgstr "Tar bare med informasjon om land eller region i adresseblokka hvis verdien er en annen enn den du skriver inn i tekstfeltet." +msgstr "Tar bare med informasjon om land eller region i adresseblokken hvis verdien er en annen enn den du skriver inn i tekstfeltet." #. FgnyP #: sw/uiconfig/swriter/ui/selectblockdialog.ui:267 @@ -25776,7 +25769,7 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:317 msgctxt "selectblockdialog|extended_tip|preview" msgid "Select the block in the list that you want to use for mail merge addresses, and click OK." -msgstr "Velg blokken du vil bruke til brevflettingsadresser, i lista og trykk OK." +msgstr "Velg blokken du vil bruke til brevflettingsadresser i listen, og trykk OK." #. JzmqG #: sw/uiconfig/swriter/ui/selectblockdialog.ui:349 @@ -25812,7 +25805,7 @@ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:99 msgctxt "selecttabledialog|select" msgid "The file you have selected contains more than one table. Please select the table containing the address list you want to use." -msgstr "Du har valgt en fil som inneholder mer enn en tabell. Velg den tabellen som inneholder adresselista du vil bruke." +msgstr "Du har valgt en fil som inneholder mer enn en tabell. Velg den tabellen som inneholder adresselisten du vil bruke." #. Fmgdg #: sw/uiconfig/swriter/ui/selecttabledialog.ui:136 @@ -25836,7 +25829,7 @@ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:181 msgctxt "selecttabledialog|preview" msgid "_Preview" -msgstr "_Forhåndsvisning" +msgstr "Forhåndsvisning" #. Wo98B #: sw/uiconfig/swriter/ui/selecttabledialog.ui:188 @@ -25950,7 +25943,7 @@ #: sw/uiconfig/swriter/ui/sidebarwrap.ui:101 msgctxt "sidebarwrap|wrapideal|tooltip_text" msgid "Optimal" -msgstr "Optimal" +msgstr "Optimalt" #. 2TrbF #: sw/uiconfig/swriter/ui/sidebarwrap.ui:114 @@ -26004,7 +25997,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:188 msgctxt "sortdialog|extended_tip|up1" msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)." -msgstr "Sorterer i stigande rekkjefølge (for eksempel 1, 2, 3 eller a, b, c)." +msgstr "Sorterer i stigende rekkefølge (for eksempel 1, 2, 3 eller a, b, c)." #. yVqST #: sw/uiconfig/swriter/ui/sortdialog.ui:199 @@ -26016,7 +26009,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:213 msgctxt "sortdialog|extended_tip|down1" msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)." -msgstr "Sorterer i fallende rekkjefølge (for eksempel 9, 8, 7 eller z, y, x)." +msgstr "Sorterer i fallende rekkefølge (for eksempel 9, 8, 7 eller z, y, x)." #. P9D2w #: sw/uiconfig/swriter/ui/sortdialog.ui:236 @@ -26028,7 +26021,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:249 msgctxt "sortdialog|extended_tip|up2" msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)." -msgstr "Sorterer i stigande rekkjefølge (for eksempel 1, 2, 3 eller a, b, c)." +msgstr "Sorterer i stigende rekkefølge (for eksempel 1, 2, 3 eller a, b, c)." #. haL8p #: sw/uiconfig/swriter/ui/sortdialog.ui:260 @@ -26040,7 +26033,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:274 msgctxt "sortdialog|extended_tip|down2" msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)." -msgstr "Sorterer i fallende rekkjefølge (for eksempel 9, 8, 7 eller z, y, x)." +msgstr "Sorterer i fallende rekkefølge (for eksempel 9, 8, 7 eller z, y, x)." #. PHxUv #: sw/uiconfig/swriter/ui/sortdialog.ui:297 @@ -26052,7 +26045,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:310 msgctxt "sortdialog|extended_tip|up3" msgid "Sorts in ascending order, (for example, 1, 2, 3 or a, b, c)." -msgstr "Sorterer i stigande rekkjefølge (for eksempel 1, 2, 3 eller a, b, c)." +msgstr "Sorterer i stigende rekkefølge (for eksempel 1, 2, 3 eller a, b, c)." #. zsggE #: sw/uiconfig/swriter/ui/sortdialog.ui:321 @@ -26064,7 +26057,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:335 msgctxt "sortdialog|extended_tip|down3" msgid "Sorts in descending order (for example, 9, 8, 7 or z, y, x)." -msgstr "Sorterer i fallende rekkjefølge (for eksempel 9, 8, 7 eller z, y, x)." +msgstr "Sorterer i fallende rekkefølge (for eksempel 9, 8, 7 eller z, y, x)." #. 3yLB6 #: sw/uiconfig/swriter/ui/sortdialog.ui:352 @@ -26202,7 +26195,7 @@ #: sw/uiconfig/swriter/ui/sortdialog.ui:695 msgctxt "sortdialog|extended_tip|tabs" msgid "If the selected paragraphs correspond to a list separated by tabs, select this option." -msgstr "Velg dette om de valgte avsnittene samsvarer med en liste avskilt med tabulator." +msgstr "Velg dette om de valgte avsnittene samsvarer med en liste adskilt med tabulator." #. 7GWNt #: sw/uiconfig/swriter/ui/sortdialog.ui:707 @@ -26286,13 +26279,13 @@ #: sw/uiconfig/swriter/ui/spellmenu.ui:20 msgctxt "spellmenu|addmenu" msgid "_Add to Dictionary" -msgstr "Legg til i ordlista" +msgstr "Legg til i ordlisten" #. PEnQT #: sw/uiconfig/swriter/ui/spellmenu.ui:34 msgctxt "spellmenu|add" msgid "_Add to Dictionary" -msgstr "Legg til i ordlista" +msgstr "Legg til i ordlisten" #. EdX45 #: sw/uiconfig/swriter/ui/spellmenu.ui:55 @@ -26346,7 +26339,7 @@ #: sw/uiconfig/swriter/ui/splittable.ui:95 msgctxt "splittable|copyheading" msgid "Copy heading" -msgstr "Kopier overskrifta" +msgstr "Kopier overskriften" #. ajD2B #: sw/uiconfig/swriter/ui/splittable.ui:106 @@ -26466,7 +26459,7 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:256 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." -msgstr "" +msgstr "Viser statistikk for den aktuelle filen." #. M4Ub9 #: sw/uiconfig/swriter/ui/stringinput.ui:74 @@ -26490,7 +26483,7 @@ #: sw/uiconfig/swriter/ui/subjectdialog.ui:12 msgctxt "subjectdialog|textbuffer1" msgid "You did not specify a subject for this message." -msgstr "Du har ikke skrevet inn et emne for denne meldinga." +msgstr "Du har ikke skrevet inn et emne for denne meldingen." #. FD2EC #: sw/uiconfig/swriter/ui/subjectdialog.ui:13 @@ -26508,7 +26501,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:67 msgctxt "tablecolumnpage|adaptwidth" msgid "Adapt table _width" -msgstr "Tilpass tabell_bredden" +msgstr "Tilpass tabellbredden" #. fR9FX #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:76 @@ -26520,7 +26513,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:87 msgctxt "tablecolumnpage|adaptcolumns" msgid "Ad_just columns proportionally" -msgstr "_Juster kolonnene proporsjonalt" +msgstr "Juster kolonnene proporsjonalt" #. Pmoga #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:96 @@ -26538,7 +26531,7 @@ #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:148 msgctxt "tablecolumnpage|extended_tip|space" msgid "Displays the amount of space that is available for adjusting the width of the columns. To set the width of the table, click the Table tab." -msgstr "" +msgstr "Viser hvor mye plass som er tilgjengelig for å justere bredden på kolonnene. For å stille inn bredden på tabellen, klikk på Tabell-fanen." #. GZ93v #: sw/uiconfig/swriter/ui/tablecolumnpage.ui:198 @@ -26682,7 +26675,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:56 msgctxt "tabletextflowpage|break" msgid "_Break" -msgstr "Ko_ble fra" +msgstr "Koble fra" #. LEfit #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:65 @@ -26694,7 +26687,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:76 msgctxt "tabletextflowpage|page" msgid "_Page" -msgstr "_Side" +msgstr "Side" #. LUPNA #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:89 @@ -26706,7 +26699,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:100 msgctxt "tabletextflowpage|column" msgid "Col_umn" -msgstr "S_palte" +msgstr "Spalte" #. bU9Sj #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:113 @@ -26718,7 +26711,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:124 msgctxt "tabletextflowpage|before" msgid "Be_fore" -msgstr "_Foran" +msgstr "Foran" #. wCFtD #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:137 @@ -26730,7 +26723,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:148 msgctxt "tabletextflowpage|after" msgid "_After" -msgstr "_Etter" +msgstr "Etter" #. y4ECA #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:161 @@ -26742,7 +26735,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:187 msgctxt "tabletextflowpage|pagestyle" msgid "With Page St_yle" -msgstr "_Med sidestil" +msgstr "Med sidestil" #. NMMdy #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:200 @@ -26754,7 +26747,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:211 msgctxt "tabletextflowpage|pagenoft" msgid "Page _number" -msgstr "_Sidetall" +msgstr "Sidetall" #. b8xXZ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:235 @@ -26778,7 +26771,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:271 msgctxt "tabletextflowpage|split" msgid "Allow _table to split across pages and columns" -msgstr "Tillat at _tabellen deles opp over sider og spalter" +msgstr "Tillat at tabellen deles opp over sider og spalter" #. QXXZK #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:280 @@ -26790,7 +26783,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:291 msgctxt "tabletextflowpage|splitrow" msgid "Allow row to break a_cross pages and columns" -msgstr "Tillat at _raden deles opp over sider og spalter" +msgstr "Tillat at raden deles opp over sider og spalter" #. HYN9t #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:302 @@ -26802,25 +26795,25 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:313 msgctxt "tabletextflowpage|keep" msgid "_Keep with next paragraph" -msgstr "_Hold sammen med neste avsnitt" +msgstr "Hold sammen med neste avsnitt" #. iFwuV #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:322 msgctxt "tabletextflowpage|extended_tip|keep" msgid "Keeps the table and the following paragraph together when you insert the break." -msgstr "Holder tabellen og det første avsnittet etter den på samme side eller i samme spalte når du setter inn et skift." +msgstr "Holder tabellen og det første avsnittet etter den på samme side eller i samme spalte når du setter inn et skifte." #. QAY45 #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:341 msgctxt "tabletextflowpage|label40" msgid "Text _orientation" -msgstr "Tekst_retning" +msgstr "Tekstretning" #. JsEEP #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:355 msgctxt "tabletextflowpage|liststore1" msgid "Horizontal" -msgstr "Vannrett" +msgstr "Horisontalt" #. RgbAV #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356 @@ -26850,13 +26843,13 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:385 msgctxt "tabletextflowpage|headline" msgid "R_epeat heading" -msgstr "G_jenta overskrifta" +msgstr "Gjenta overskriften" #. EpMSY #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:394 msgctxt "tabletextflowpage|extended_tip|headline" msgid "Repeats the table heading on a new page when the table spans more than one page." -msgstr "Gjentar tabelloverskrifta på en ny side når tabellen går over flere sider." +msgstr "Gjentar tabelloverskriften på en ny side når tabellen går over flere sider." #. 7R7Gn #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:413 @@ -26874,7 +26867,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442 msgctxt "tabletextflowpage|extended_tip|repeatheadernf" msgid "Enter the number of rows to include in the heading." -msgstr "Velg hvor mange rader du vil ta med i overskrifta." +msgstr "Velg hvor mange rader du vil ta med i overskriften." #. yLhbA #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:471 @@ -26886,7 +26879,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:505 msgctxt "tabletextflowpage|label41" msgid "_Vertical alignment" -msgstr "_Loddrett justering" +msgstr "Vertikal justering" #. YLPEL #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:519 @@ -26910,7 +26903,7 @@ #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:525 msgctxt "tabletextflowpage|extended_tip|vertorient" msgid "Specify the vertical text alignment for the cells in the table." -msgstr "Velg den loddrette justeringa av tekst i tabellcellene." +msgstr "Velg den vertikale justeringen av tekst i tabellcellene." #. ZtGTC #: sw/uiconfig/swriter/ui/tabletextflowpage.ui:542 @@ -26940,13 +26933,13 @@ #: sw/uiconfig/swriter/ui/templatedialog1.ui:214 msgctxt "templatedialog1|font" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. Zda8g #: sw/uiconfig/swriter/ui/templatedialog1.ui:262 msgctxt "templatedialog1|fonteffect" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. RAxVY #: sw/uiconfig/swriter/ui/templatedialog1.ui:310 @@ -27060,13 +27053,13 @@ #: sw/uiconfig/swriter/ui/templatedialog2.ui:406 msgctxt "templatedialog2|font" msgid "Font" -msgstr "Skrift" +msgstr "Font" #. ECDNu #: sw/uiconfig/swriter/ui/templatedialog2.ui:454 msgctxt "templatedialog2|fonteffect" msgid "Font Effects" -msgstr "Skrifteffekter" +msgstr "Fonteffekter" #. pmGG6 #: sw/uiconfig/swriter/ui/templatedialog2.ui:502 @@ -27264,7 +27257,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:6 msgctxt "testmailsettings|textbuffer1" msgid "%PRODUCTNAME could not connect to the outgoing mail server. Check your system's settings and the settings in %PRODUCTNAME. Check the server name, the port and the secure connections settings" -msgstr "%PRODUCTNAME kunne ikke koble til den utgående e-posttjeneren. Kontroller systeminnstillingene og innstillingene for %PRODUCTNAME. Kontroller tjenernavnet, porten og oppsettet for sikre forbindelser." +msgstr "%PRODUCTNAME kunne ikke koble til den utgående e-postserveren. Kontroller systeminnstillingene og innstillingene for %PRODUCTNAME. Kontroller servernavnet, porten og oppsettet for sikre forbindelser." #. RA3W2 #: sw/uiconfig/swriter/ui/testmailsettings.ui:11 @@ -27288,7 +27281,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:119 msgctxt "testmailsettings|find" msgid "Find outgoing mail server" -msgstr "Finn utgående e-posttjener" +msgstr "Finn utgående e-postserver" #. sVa4p #: sw/uiconfig/swriter/ui/testmailsettings.ui:131 @@ -27312,7 +27305,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:280 msgctxt "extended_tip|errors" msgid "In the Errors list box you can read an explanation of any errors encountered while testing the settings." -msgstr "Lista «Feil» inneholder en beskrivelse av eventuelle feil som oppstod da innstillingene ble testet." +msgstr "Listen «Feil» inneholder en beskrivelse av eventuelle feil som oppstod da innstillingene ble testet." #. TF5ap #: sw/uiconfig/swriter/ui/testmailsettings.ui:299 @@ -27360,7 +27353,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:133 msgctxt "textgridpage|checkCB_SNAPTOCHARS" msgid "_Snap to characters" -msgstr "_Fest til tegn" +msgstr "Fest til tegn" #. FUCs3 #: sw/uiconfig/swriter/ui/textgridpage.ui:176 @@ -27372,7 +27365,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:228 msgctxt "textgridpage|labelFT_CHARSPERLINE" msgid "Characters per line:" -msgstr "Tegn per linje:" +msgstr "Tegn pr. linje:" #. ZvrxC #: sw/uiconfig/swriter/ui/textgridpage.ui:245 @@ -27384,7 +27377,7 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:272 msgctxt "textgridpage|labelFT_LINESPERPAGE" msgid "Lines per page:" -msgstr "Linjer per side:" +msgstr "Linjer pr. side:" #. Y36BF #: sw/uiconfig/swriter/ui/textgridpage.ui:291 @@ -27396,13 +27389,13 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:346 msgctxt "textgridpage|labelFT_CHARWIDTH" msgid "Character _width:" -msgstr "Tegn_bredde:" +msgstr "Tegnbredde:" #. djvBs #: sw/uiconfig/swriter/ui/textgridpage.ui:360 msgctxt "textgridpage|labelFT_RUBYSIZE" msgid "Max. Ruby text size:" -msgstr "Maksimal størrelse på kringtekst:" +msgstr "Maksimal størrelse på Rubytekst:" #. FxPwc #: sw/uiconfig/swriter/ui/textgridpage.ui:379 @@ -27426,13 +27419,13 @@ #: sw/uiconfig/swriter/ui/textgridpage.ui:436 msgctxt "textgridpage|checkCB_RUBYBELOW" msgid "Ruby text below/left from base text" -msgstr "Kringtekst nedenfor/til venstre for grunnteksten" +msgstr "Rubytekst nedenfor/til venstre for grunnteksten" #. 47KKR #: sw/uiconfig/swriter/ui/textgridpage.ui:447 msgctxt "textgridpage|extended_tip|checkCB_RUBYBELOW" msgid "Displays Ruby text to the left of or below the base text." -msgstr "Viser kringteksten til venstre for eller nedenfor grunnteksten." +msgstr "Viser Rubyteksten til venstre for eller nedenfor grunnteksten." #. qCgRA #: sw/uiconfig/swriter/ui/textgridpage.ui:465 @@ -27570,7 +27563,7 @@ #: sw/uiconfig/swriter/ui/titlepage.ui:489 msgctxt "titlepage|label4" msgid "_Style:" -msgstr "_Stil:" +msgstr "Stil:" #. 4XAV9 #: sw/uiconfig/swriter/ui/titlepage.ui:512 @@ -27642,25 +27635,25 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:126 msgctxt "tocentriespage|levelft" msgid "_Level" -msgstr "_Nivå" +msgstr "Nivå" #. hJeAG #: sw/uiconfig/swriter/ui/tocentriespage.ui:142 msgctxt "tocentriespage|typeft" msgid "_Type" -msgstr "_Type" +msgstr "Type" #. fCuFC #: sw/uiconfig/swriter/ui/tocentriespage.ui:202 msgctxt "tocentriespage|label4" msgid "_Structure:" -msgstr "_Struktur:" +msgstr "Struktur:" #. wEABX #: sw/uiconfig/swriter/ui/tocentriespage.ui:214 msgctxt "tocentriespage|all" msgid "_All" -msgstr "_Alle" +msgstr "Alle" #. BYrBV #: sw/uiconfig/swriter/ui/tocentriespage.ui:221 @@ -27672,7 +27665,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:238 msgctxt "tocentriespage|extended_tip|token" msgid "Displays the remainder of the Structure line." -msgstr "Viser resten av Struktur-linja." +msgstr "Viser resten av Struktur-linjen." #. 6JdC4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:265 @@ -27684,7 +27677,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:277 msgctxt "tocentriespage|edit" msgid "_Edit..." -msgstr "_Rediger …" +msgstr "Rediger …" #. Dzkip #: sw/uiconfig/swriter/ui/tocentriespage.ui:284 @@ -27804,31 +27797,31 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:539 msgctxt "tocentriespage|extended_tip|authfield" msgid "To add an entry to the Structure line, click the entry, click in an empty box on the Structure line, and then click Insert." -msgstr "Du kan legge til en litteraturhenvisning i linja Struktur ved å trykke på den, plassere skrivemerket i et tomt felt på linja og velge Sett inn" +msgstr "Du kan legge til en litteraturhenvisning i linjen Struktur ved å trykke på den, plassere skrivemerket i et tomt felt på linjen og velge Sett inn" #. D6uWP #: sw/uiconfig/swriter/ui/tocentriespage.ui:558 msgctxt "tocentriespage|insert" msgid "_Insert" -msgstr "_Sett inn" +msgstr "Sett inn" #. sWDTV #: sw/uiconfig/swriter/ui/tocentriespage.ui:565 msgctxt "tocentriespage|extended_tip|insert" msgid "Adds the reference code for the selected bibliography entry to the Structure line. Select an entry in the list, click in an empty box, and then click this button." -msgstr "Legger til referansekoden for den valgte litteraturhenvisningen i linja Struktur. Velg en oppføring i listen, plasser skrivemerket i et tomt felt og trykk denne knappen." +msgstr "Legger til referansekoden for den valgte litteraturhenvisningen i linjen Struktur. Velg en oppføring i listen, plasser skrivemerket i et tomt felt og trykk denne knappen." #. Lc2kd #: sw/uiconfig/swriter/ui/tocentriespage.ui:577 msgctxt "tocentriespage|remove" msgid "_Remove" -msgstr "_Fjern" +msgstr "Fjern" #. VRtAA #: sw/uiconfig/swriter/ui/tocentriespage.ui:584 msgctxt "tocentriespage|extended_tip|remove" msgid "Removes the selected reference code from the Structure line." -msgstr "Fjerner den valgte koden som viser til en litteraturhenvisning, fra Strukturlinja." +msgstr "Fjerner den valgte koden som viser til en litteraturhenvisning, fra Strukturlinjen." #. UprDZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:596 @@ -27852,7 +27845,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:621 msgctxt "tocentriespage|extended_tip|entrytext" msgid "Inserts the text of the chapter heading." -msgstr "Setter inn teksten i kapitteloverskrifta." +msgstr "Setter inn teksten i kapitteloverskriften." #. BQH4d #: sw/uiconfig/swriter/ui/tocentriespage.ui:633 @@ -27864,19 +27857,19 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:640 msgctxt "tocentriespage|extended_tip|tabstop" msgid "Inserts a tab stop. To add leader dots to the tab stop, select a character in the Fill character box. To change the position of the tab stop, enter a value in the Tab stop position box, or select the Align right check box." -msgstr "Setter inn en tabulator. Velg et tegn i Fylltegn-lista for å legge til et fylltegn foran tabulatoren. Velg en verdi i Tabulatorposisjon for å endre tabulatorens plassering, eller merk av for Høyrejuster." +msgstr "Setter inn en tabulator. Velg et tegn i Fylltegn-listen for å legge til et fylltegn foran tabulatoren. Velg en verdi i Tabulatorposisjon for å endre tabulatorens plassering, eller merk av for Høyrejuster." #. Dbwdu #: sw/uiconfig/swriter/ui/tocentriespage.ui:652 msgctxt "tocentriespage|chapterinfo" msgid "_Chapter Info" -msgstr "_Kapittelinfo" +msgstr "Kapittelinfo" #. crNei #: sw/uiconfig/swriter/ui/tocentriespage.ui:659 msgctxt "tocentriespage|extended_tip|chapterinfo" msgid "Inserts chapter information, such as the chapter heading and number. Select the information that you want to display in the Chapter entry box." -msgstr "Setter inn kapittelinformasjon, for eksempel kapitteloverskrifter og kapittelnummer. Bruk lista Kapitteloppføring til å velge hvilken informasjon du vil vise." +msgstr "Setter inn kapittelinformasjon, for eksempel kapitteloverskrifter og kapittelnummer. Bruk listen Kapitteloppføring til å velge hvilken informasjon du vil vise." #. AYFTR #: sw/uiconfig/swriter/ui/tocentriespage.ui:671 @@ -27894,13 +27887,13 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:690 msgctxt "tocentriespage|hyperlink" msgid "H_yperlink" -msgstr "H_yperlenke" +msgstr "Hyperlenke" #. RfLp4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:697 msgctxt "tocentriespage|extended_tip|hyperlink" msgid "Creates a hyperlink for the part of the entry that you enclose by the opening (LS) and the closing (LE) hyperlink tags. On the Structure line, click in the empty box in front of the part that you want to create a hyperlink for, and then click this button. Click in the empty box after the part that you want to hyperlink, and then click this button again. All hyperlinks must be unique. Available only for a table of contents." -msgstr "Lager en hyperlenke av den delen av oppføringen du plasserer mellom en hyperlenketagg for henholdsvis start (LS) og slutt (LA). På Struktur-linja kan du trykke i et tomt felt foran den delen du vil lage en hyperlenke av, og deretter trykke denne knappen en gang til. Alle hyperlenker må være unike. Denne funksjonen er bare tilgjengelig i innholdslister." +msgstr "Lager en hyperlenke av den delen av oppføringen du plasserer mellom en hyperlenketagg for henholdsvis start (LS) og slutt (LA). På Struktur-linjen kan du trykke i et tomt felt foran den delen du vil lage en hyperlenke av, og deretter trykke denne knappen en gang til. Alle hyperlenker må være unike. Denne funksjonen er bare tilgjengelig i innholdslister." #. neGrK #: sw/uiconfig/swriter/ui/tocentriespage.ui:728 @@ -27912,7 +27905,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:764 msgctxt "tocentriespage|reltostyle" msgid "Tab position relati_ve to paragraph style indent" -msgstr "_Plasser tabulatoren i forhold til a_vsnittsinnrykket" +msgstr "Plasser tabulatoren i forhold til avsnittsinnrykket" #. FEBq7 #: sw/uiconfig/swriter/ui/tocentriespage.ui:773 @@ -27966,25 +27959,25 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:897 msgctxt "tocentriespage|sortpos" msgid "Document _position" -msgstr "Dokument_posisjon" +msgstr "Dokumentposisjon" #. uNhBB #: sw/uiconfig/swriter/ui/tocentriespage.ui:908 msgctxt "tocentriespage|extended_tip|sortpos" msgid "Sorts the bibliography entries according to the position of their references in the document." -msgstr "Oppføringene i litteraturlista sorteres etter henvisningenes posisjon i dokumentet." +msgstr "Oppføringene i litteraturlisten sorteres etter henvisningenes posisjon i dokumentet." #. 2b5tC #: sw/uiconfig/swriter/ui/tocentriespage.ui:919 msgctxt "tocentriespage|sortcontents" msgid "_Content" -msgstr "_Innhold" +msgstr "Innhold" #. 3N4Vm #: sw/uiconfig/swriter/ui/tocentriespage.ui:929 msgctxt "tocentriespage|extended_tip|sortcontents" msgid "Sorts the bibliography entries by the Sort keys that you specify, for example, by author or by year of publication." -msgstr "Oppføringene i litteraturlista sorteres i samsvar med dine valg av Sorteringsnøkler. Eksempler på sorteringsnøkler er forfatter eller utgivelsesår." +msgstr "Oppføringene i litteraturlisten sorteres i samsvar med dine valg av Sorteringsnøkler. Eksempler på sorteringsnøkler er forfatter eller utgivelsesår." #. FBuPi #: sw/uiconfig/swriter/ui/tocentriespage.ui:946 @@ -27996,37 +27989,37 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:984 msgctxt "tocentriespage|label15" msgid "_1:" -msgstr "_1:" +msgstr "1:" #. 6trLF #: sw/uiconfig/swriter/ui/tocentriespage.ui:1000 msgctxt "tocentriespage|extended_tip|key1lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Velg oppføringen som skalbrukes til å sortere oppføringene i litteraturlista. Dette valget er bare tilgjengelig hvis du har valgt Innhold i området Sorter etter." +msgstr "Velg oppføringen som skalbrukes til å sortere oppføringene i litteraturlisten. Dette valget er bare tilgjengelig hvis du har valgt Innhold i området Sorter etter." #. B7NqZ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1013 msgctxt "tocentriespage|label16" msgid "_2:" -msgstr "_2:" +msgstr "2:" #. zXEA4 #: sw/uiconfig/swriter/ui/tocentriespage.ui:1025 msgctxt "tocentriespage|label17" msgid "_3:" -msgstr "_3:" +msgstr "3:" #. oLGSi #: sw/uiconfig/swriter/ui/tocentriespage.ui:1041 msgctxt "tocentriespage|extended_tip|key2lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Velg oppføringen som skalbrukes til å sortere oppføringene i litteraturlista. Dette valget er bare tilgjengelig hvis du har valgt Innhold i området Sorter etter." +msgstr "Velg oppføringen som skal brukes til å sortere oppføringene i litteraturlisten. Dette valget er bare tilgjengelig hvis du har valgt Innhold i området Sorter etter." #. tfvwe #: sw/uiconfig/swriter/ui/tocentriespage.ui:1058 msgctxt "tocentriespage|extended_tip|key3lb" msgid "Select the entry by which to sort the bibliography entries. This option is only available if you select the Content radio button in the Sort by area." -msgstr "Velg oppføringen som skalbrukes til å sortere oppføringene i litteraturlista. Dette valget er bare tilgjengelig hvis du har valgt Innhold i området Sorter etter." +msgstr "Velg oppføringen som skal brukes til å sortere oppføringene i litteraturlisten. Dette valget er bare tilgjengelig hvis du har valgt Innhold i området Sorter etter." #. 6GYwu #: sw/uiconfig/swriter/ui/tocentriespage.ui:1072 @@ -28038,7 +28031,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1080 msgctxt "tocentriespage|extended_tip|up1cb" msgid "Sorts the bibliography entries in ascending alphanumerical order." -msgstr "Sorterer oppføringene i litteraturlista i stigende rekkefølge alfabetisk eller etter tall." +msgstr "Sorterer oppføringene i litteraturlisten i stigende rekkefølge alfabetisk eller etter tall." #. TXjGy #: sw/uiconfig/swriter/ui/tocentriespage.ui:1094 @@ -28050,7 +28043,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1102 msgctxt "tocentriespage|extended_tip|down1cb" msgid "Sorts the bibliography entries in a descending alphanumerical order." -msgstr "Sorterer oppføringene i litteraturlista i synkende rekkefølge alfabetisk eller etter tall." +msgstr "Sorterer oppføringene i litteraturlisten i synkende rekkefølge alfabetisk eller etter tall." #. PJr9b #: sw/uiconfig/swriter/ui/tocentriespage.ui:1116 @@ -28062,7 +28055,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1124 msgctxt "tocentriespage|extended_tip|up2cb" msgid "Sorts the bibliography entries in ascending alphanumerical order." -msgstr "Sorterer oppføringene i litteraturlista i stigende rekkefølge alfabetisk eller etter tall." +msgstr "Sorterer oppføringene i litteraturlisten i stigende rekkefølge alfabetisk eller etter tall." #. cU3GF #: sw/uiconfig/swriter/ui/tocentriespage.ui:1138 @@ -28074,7 +28067,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1146 msgctxt "tocentriespage|extended_tip|up3cb" msgid "Sorts the bibliography entries in ascending alphanumerical order." -msgstr "Sorterer oppføringene i litteraturlista i stigende rekkefølge alfabetisk eller etter tall." +msgstr "Sorterer oppføringene i litteraturlisten i stigende rekkefølge alfabetisk eller etter tall." #. Ukmme #: sw/uiconfig/swriter/ui/tocentriespage.ui:1160 @@ -28086,7 +28079,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1168 msgctxt "tocentriespage|extended_tip|down2cb" msgid "Sorts the bibliography entries in a descending alphanumerical order." -msgstr "Sorterer oppføringene i litteraturlista i synkende rekkefølge alfabetisk eller etter tall." +msgstr "Sorterer oppføringene i litteraturlisten i synkende rekkefølge alfabetisk eller etter tall." #. VRkA3 #: sw/uiconfig/swriter/ui/tocentriespage.ui:1182 @@ -28098,7 +28091,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1190 msgctxt "tocentriespage|extended_tip|down3cb" msgid "Sorts the bibliography entries in a descending alphanumerical order." -msgstr "Sorterer oppføringene i litteraturlista i synkende rekkefølge alfabetisk eller etter tall." +msgstr "Sorterer oppføringene i litteraturlisten i synkende rekkefølge alfabetisk eller etter tall." #. heqgT #: sw/uiconfig/swriter/ui/tocentriespage.ui:1207 @@ -28110,7 +28103,7 @@ #: sw/uiconfig/swriter/ui/tocentriespage.ui:1234 msgctxt "tocentriespage|extended_tip|TocEntriesPage" msgid "Specify the format of the index or table entries. The appearance of this tab changes to reflect the type of index that you selected on the Type tab." -msgstr "Spesifiser formatet til indeks eller tabelloppføringene. Utseendet til denne fanen endres for å reflektere hvilken type av indeks du valgte i Indeks eller Innholdsfortegnelse tab." +msgstr "Spesifiser formatet til indeks eller tabelloppføringene. Utseendet til denne fanen endres for å reflektere hvilken type av indeks du valgte i Indeks eller Innholdsfortegnelse fanen." #. GBk8E #: sw/uiconfig/swriter/ui/tocindexpage.ui:19 @@ -28122,19 +28115,19 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:27 msgctxt "tocindexpage|new" msgid "_New..." -msgstr "_Ny …" +msgstr "Ny …" #. 4ABb3 #: sw/uiconfig/swriter/ui/tocindexpage.ui:35 msgctxt "tocindexpage|edit" msgid "_Edit..." -msgstr "_Rediger …" +msgstr "Rediger …" #. 2D7ru #: sw/uiconfig/swriter/ui/tocindexpage.ui:97 msgctxt "tocindexpage|mainstyleft" msgid "_Title:" -msgstr "_Tittel:" +msgstr "Tittel:" #. oEQSK #: sw/uiconfig/swriter/ui/tocindexpage.ui:116 @@ -28194,7 +28187,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:155 msgctxt "tocindexpage|extended_tip|type" msgid "Select the type of index that you want to insert or edit." -msgstr "" +msgstr "Velg indeksen du vil sette inn eller redigere." #. 2M95E #: sw/uiconfig/swriter/ui/tocindexpage.ui:166 @@ -28266,13 +28259,13 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:376 msgctxt "tocindexpage|extended_tip|fromheadings" msgid "Creates the index using outline levels. Paragraphs formatted with one of the predefined heading styles (Heading 1-10) are added to the index." -msgstr "" +msgstr "Oppretter indeksen ved hjelp av disposisjonsnivåer. Avsnitt formatert med en av de forhåndsdefinerte overskriftstilene (Overskrift 1-10) legges til i indeksen." #. 6RPA5 #: sw/uiconfig/swriter/ui/tocindexpage.ui:387 msgctxt "tocindexpage|indexmarks" msgid "Inde_x marks" -msgstr "Innholdsliste_merke" +msgstr "Innholdslistemerke" #. sjni2 #: sw/uiconfig/swriter/ui/tocindexpage.ui:397 @@ -28290,13 +28283,13 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:417 msgctxt "tocindexpage|extended_tip|fromtables" msgid "Includes tables in the index." -msgstr "Tar med tabeller i registeret eller innholdslista." +msgstr "Tar med tabeller i registeret eller innholdslisten." #. rC8Gw #: sw/uiconfig/swriter/ui/tocindexpage.ui:428 msgctxt "tocindexpage|fromframes" msgid "Te_xt frames" -msgstr "Tekst_rammer" +msgstr "Tekstrammer" #. TotLy #: sw/uiconfig/swriter/ui/tocindexpage.ui:437 @@ -28314,7 +28307,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:457 msgctxt "tocindexpage|extended_tip|fromgraphics" msgid "Includes graphics in the index." -msgstr "Tar med bilder i registeret eller innholdslista." +msgstr "Tar med bilder i registeret eller innholdslisten." #. 7f3c4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:468 @@ -28326,7 +28319,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:477 msgctxt "tocindexpage|extended_tip|fromoles" msgid "Includes OLE objects in the index." -msgstr "Tar med OLE-objekter i registeret eller innholdslista." +msgstr "Tar med OLE-objekter i registeret eller innholdslisten." #. JnBBj #: sw/uiconfig/swriter/ui/tocindexpage.ui:488 @@ -28344,7 +28337,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:522 msgctxt "tocindexpage|addstylescb" msgid "_Additional styles" -msgstr "_Tilleggsstiler" +msgstr "Tilleggsstiler" #. mDsDx #: sw/uiconfig/swriter/ui/tocindexpage.ui:531 @@ -28356,7 +28349,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:543 msgctxt "tocindexpage|stylescb" msgid "Styl_es" -msgstr "Stil_er" +msgstr "Stiler" #. MfDSo #: sw/uiconfig/swriter/ui/tocindexpage.ui:566 @@ -28446,7 +28439,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:827 msgctxt "tocindexpage|extended_tip|objects" msgid "Select the object types that you want to include in a table of objects." -msgstr "Velg hvilke objekttyper du vil ha med i objektlista." +msgstr "Velg hvilke objekttyper du vil ha med i objektlisten." #. zkDMi #: sw/uiconfig/swriter/ui/tocindexpage.ui:840 @@ -28458,13 +28451,13 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:878 msgctxt "tocindexpage|mainstyleft9" msgid "_Brackets:" -msgstr "_Parenteser:" +msgstr "Parenteser:" #. Q9AQ5 #: sw/uiconfig/swriter/ui/tocindexpage.ui:890 msgctxt "tocindexpage|numberentries" msgid "_Number entries" -msgstr "_Nummerer oppføringene" +msgstr "Nummerer oppføringene" #. TCwcg #: sw/uiconfig/swriter/ui/tocindexpage.ui:899 @@ -28476,7 +28469,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:915 msgctxt "tocindexpage|brackets" msgid "[none]" -msgstr "[none]" +msgstr "[ingen]" #. hpS6x #: sw/uiconfig/swriter/ui/tocindexpage.ui:916 @@ -28536,7 +28529,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1012 msgctxt "tocindexpage|extended_tip|useff" msgid "Replaces identical index entries that occur on the directly following page(s), with a single entry that lists the first page number and a \"f\" or \"ff\". For example, the entries \"View 10, View 11\" are combined as \"View 10f\", and \"View 10, View 11, View 12\" as \"View 10ff\". Actual appearance depends on the locale setting, but can be overridden with Sort - Language." -msgstr "" +msgstr "Erstatter identiske indeksoppføringer som forekommer på siden (e) som følger direkte etter, med en enkelt oppføring som viser det første sidenummeret og et \"f\" eller \"ff\". For eksempel er oppføringene \"Vis 10, Vis 11\" kombinert som \"Vis 10f\", og \"Vis 10, Vis 11, Vis 12\" som \"Vis 10ff\". Det faktiske utseendet avhenger av lokalinnstillingen, men kan overstyres med Sorter - Språk." #. Uivc8 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1023 @@ -28548,7 +28541,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1033 msgctxt "tocindexpage|extended_tip|usedash" msgid "Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\"." -msgstr "Erstatter identiske register/innholdsliste-oppføringer i samanhengende sider med en enkel oppføring og sideområdet oppføringene finsnes i. For eksempel vil oppføringen «Vis 10, Vis 11, Vis 12» bli slått sammen til «Vis 10-12»." +msgstr "Erstatter identiske register/innholdsliste-oppføringer i samanhengende sider med en enkel oppføring og sideområdet oppføringene finnes i. For eksempel vil oppføringen «Vis 10, Vis 11, Vis 12» bli slått sammen til «Vis 10-12»." #. GfaT4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:1044 @@ -28590,7 +28583,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1105 msgctxt "tocindexpage|fromfile" msgid "_Concordance file" -msgstr "_Stikkordfil" +msgstr "Stikkordfil" #. nchGe #: sw/uiconfig/swriter/ui/tocindexpage.ui:1114 @@ -28602,7 +28595,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1125 msgctxt "tocindexpage|file" msgid "_File" -msgstr "_Fil" +msgstr "Fil" #. bm64R #: sw/uiconfig/swriter/ui/tocindexpage.ui:1140 @@ -28650,13 +28643,13 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:63 msgctxt "tocstylespage|label1" msgid "_Levels" -msgstr "_Nivåer" +msgstr "Nivåer" #. APeje #: sw/uiconfig/swriter/ui/tocstylespage.ui:77 msgctxt "tocstylespage|label2" msgid "Paragraph _Styles" -msgstr "_Avsnittstiler" +msgstr "Avsnittstiler" #. ZA2sq #: sw/uiconfig/swriter/ui/tocstylespage.ui:120 @@ -28674,7 +28667,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:177 msgctxt "tocstylespage|default" msgid "_Default" -msgstr "_Standard" +msgstr "Standard" #. FW4Qu #: sw/uiconfig/swriter/ui/tocstylespage.ui:186 @@ -28686,7 +28679,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:197 msgctxt "tocstylespage|edit" msgid "_Edit" -msgstr "_Rediger" +msgstr "Rediger" #. Y9dVq #: sw/uiconfig/swriter/ui/tocstylespage.ui:206 @@ -28710,7 +28703,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:46 msgctxt "viewoptionspage|helplines" msgid "Helplines _While Moving" -msgstr "_Hjelpelinjer ved flytting" +msgstr "Hjelpelinjer ved flytting" #. ChPAo #: sw/uiconfig/swriter/ui/viewoptionspage.ui:55 @@ -28728,7 +28721,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:105 msgctxt "viewoptionspage|graphics" msgid "_Images and objects" -msgstr "_Objekter og bilder" +msgstr "Objekter og bilder" #. tBL3z #: sw/uiconfig/swriter/ui/viewoptionspage.ui:114 @@ -28740,7 +28733,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:125 msgctxt "viewoptionspage|tables" msgid "_Tables" -msgstr "_Tabeller" +msgstr "Tabeller" #. qEwJE #: sw/uiconfig/swriter/ui/viewoptionspage.ui:134 @@ -28752,7 +28745,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:145 msgctxt "viewoptionspage|drawings" msgid "Dra_wings and controls" -msgstr "_Tegninger og kontrollfelt" +msgstr "Tegninger og kontrollfelt" #. 9Rs4o #: sw/uiconfig/swriter/ui/viewoptionspage.ui:154 @@ -28764,7 +28757,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:165 msgctxt "viewoptionspage|comments" msgid "_Comments" -msgstr "_Merknader" +msgstr "Merknader" #. PYSxn #: sw/uiconfig/swriter/ui/viewoptionspage.ui:174 @@ -28794,7 +28787,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:249 msgctxt "extended_tip|hiddentextfield" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "" +msgstr "Viser tekst som er skjult av feltene Betinget tekst eller Skjult tekst." #. Mbfk7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:260 @@ -28806,25 +28799,25 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:269 msgctxt "extended_tip|hiddenparafield" msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph." -msgstr "" +msgstr "Hvis du har satt inn tekst ved hjelp av feltet Skjult avsnitt, angir du om det skjulte avsnittet skal vises." #. hFXBr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:286 msgctxt "viewoptionspage|fieldslabel" msgid "Display Fields" -msgstr "" +msgstr "Vis felt" #. EiyCk #: sw/uiconfig/swriter/ui/viewoptionspage.ui:320 msgctxt "viewoptionspage|changesinmargin" msgid "Tracked _deletions in margin" -msgstr "" +msgstr "Sporede slettinger i margen" #. vvvb7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:329 msgctxt "extended_tip|changesinmargin" msgid "Displays text that is hidden by Conditional Text or Hidden Text fields." -msgstr "" +msgstr "Viser tekst som er skjult av feltene Betinget tekst eller Skjult tekst." #. 6RQCH #: sw/uiconfig/swriter/ui/viewoptionspage.ui:340 @@ -28836,25 +28829,25 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:361 msgctxt "viewoptionspage|changeslabel" msgid "Display tracked changes" -msgstr "" +msgstr "Vis sporede endringer" #. CuQqf #: sw/uiconfig/swriter/ui/viewoptionspage.ui:395 msgctxt "viewoptionspage|outlinecontentvisibilitybutton" msgid "_Show outline content visibility button" -msgstr "" +msgstr "Vis innholdssynlighetsknappen" #. jQBeb #: sw/uiconfig/swriter/ui/viewoptionspage.ui:416 msgctxt "viewoptionspage|outlinelabel" msgid "Outline mode" -msgstr "" +msgstr "Oversiktsmodus" #. YD6TK #: sw/uiconfig/swriter/ui/viewoptionspage.ui:462 msgctxt "viewoptionspage|smoothscroll" msgid "S_mooth scroll" -msgstr "_Jevn rulling" +msgstr "Jevn rulling" #. nzZcx #: sw/uiconfig/swriter/ui/viewoptionspage.ui:471 @@ -28866,25 +28859,25 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:490 msgctxt "viewoptionspage|vruler" msgid "Verti_cal ruler" -msgstr "Lo_ddrett linjal" +msgstr "Vertikal linjal" #. gBqEr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:499 msgctxt "extended_tip|vruler" msgid "Displays the vertical ruler. Select the desired measurement unit from the corresponding list." -msgstr "Viser den loddrette linjalen. Velg måleenheten fra lista." +msgstr "Viser den vertikale linjalen. Velg måleenheten fra listen." #. VproR #: sw/uiconfig/swriter/ui/viewoptionspage.ui:515 msgctxt "extended_tip|hrulercombobox" msgid "Displays the horizontal ruler. Select the desired measurement unit from the corresponding list." -msgstr "Viser den vannrette linjalen. Velg måleenhet i lista." +msgstr "Viser den horisontelle linjalen. Velg måleenhet i listen." #. HAEGG #: sw/uiconfig/swriter/ui/viewoptionspage.ui:531 msgctxt "extended_tip|vrulercombobox" msgid "Displays the vertical ruler. Select the desired measurement unit from the corresponding list." -msgstr "Viser den loddrette linjalen. Velg måleenheten fra lista." +msgstr "Viser den vertikale linjalen. Velg måleenheten fra listen." #. P2W3a #: sw/uiconfig/swriter/ui/viewoptionspage.ui:542 @@ -28896,19 +28889,19 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:552 msgctxt "extended_tip|vrulerright" msgid "Aligns the vertical ruler with the right border." -msgstr "Juster den loddrette linjala med den høgre kanten." +msgstr "Juster den vertikale linjalen med den høyre kanten." #. d327U #: sw/uiconfig/swriter/ui/viewoptionspage.ui:566 msgctxt "viewoptionspage|hruler" msgid "Hori_zontal ruler" -msgstr "_Vannrett linjal" +msgstr "Horisontal linjal" #. 3Xu8U #: sw/uiconfig/swriter/ui/viewoptionspage.ui:572 msgctxt "extended_tip|hruler" msgid "Displays the horizontal ruler. Select the desired measurement unit from the corresponding list." -msgstr "Viser den vannrette linjalen. Velg måleenhet i lista." +msgstr "Viser den horisontelle linjalen. Velg måleenhet i listen." #. me2R7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:595 @@ -29047,7 +29040,7 @@ #: sw/uiconfig/swriter/ui/watermarkdialog.ui:285 msgctxt "watermarkdialog|extended_tip|WatermarkDialog" msgid "Insert a watermark text in the current page style background." -msgstr "ISett inn et vannmerke på den aktive sidens bakgrunnsstil." +msgstr "Sett inn et vannmerke på den aktive sidens bakgrunnsstil." #. ekn6L #: sw/uiconfig/swriter/ui/wordcount-mobile.ui:8 @@ -29220,7 +29213,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:140 msgctxt "wrappage|parallel" msgid "_Parallel" -msgstr "_Parallell" +msgstr "Parallell" #. t9xTQ #: sw/uiconfig/swriter/ui/wrappage.ui:156 @@ -29232,7 +29225,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:167 msgctxt "wrappage|through" msgid "Thro_ugh" -msgstr "_Gjennom" +msgstr "Gjennom" #. CCnhG #: sw/uiconfig/swriter/ui/wrappage.ui:183 @@ -29248,7 +29241,6 @@ #. 4pAFL #: sw/uiconfig/swriter/ui/wrappage.ui:210 -#, fuzzy msgctxt "wrappage|extended_tip|optimal" msgid "Automatically wraps text to the left, to the right, or on all four sides of the border frame of the object. If the distance between the object and the page margin is less than 2 cm, the text is not wrapped." msgstr "Bryter teksten automatisk til venstre, til høyre eller på alle fire sider av kanten omkring objektets ramme. Hvis avstanden mellom objektet og sidemargen er mindre enn to centimeter, brytes ikke teksten." @@ -29263,25 +29255,25 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:276 msgctxt "wrappage|label4" msgid "L_eft:" -msgstr "_Venstre:" +msgstr "Venstre:" #. wDFKF #: sw/uiconfig/swriter/ui/wrappage.ui:290 msgctxt "wrappage|label5" msgid "_Right:" -msgstr "_Høyre:" +msgstr "Høyre:" #. xsX5s #: sw/uiconfig/swriter/ui/wrappage.ui:304 msgctxt "wrappage|label6" msgid "_Top:" -msgstr "_Øverst:" +msgstr "Øverst:" #. NQ77D #: sw/uiconfig/swriter/ui/wrappage.ui:318 msgctxt "wrappage|label7" msgid "_Bottom:" -msgstr "_Nederst:" +msgstr "Nederst:" #. AXBwG #: sw/uiconfig/swriter/ui/wrappage.ui:338 @@ -29317,7 +29309,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:450 msgctxt "wrappage|anchoronly" msgid "_First paragraph" -msgstr "_Første avsnitt" +msgstr "Første avsnitt" #. RjfUh #: sw/uiconfig/swriter/ui/wrappage.ui:459 @@ -29329,7 +29321,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:470 msgctxt "wrappage|transparent" msgid "In bac_kground" -msgstr "I _bakgrunnen" +msgstr "I bakgrunnen" #. 3fHAC #: sw/uiconfig/swriter/ui/wrappage.ui:479 @@ -29341,7 +29333,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:490 msgctxt "wrappage|outline" msgid "_Contour" -msgstr "_Omriss" +msgstr "Omriss" #. rF7PT #: sw/uiconfig/swriter/ui/wrappage.ui:499 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/swext/mediawiki/help.po libreoffice-7.1.3~rc2/translations/source/nb/swext/mediawiki/help.po --- libreoffice-7.1.2~rc2/translations/source/nb/swext/mediawiki/help.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/swext/mediawiki/help.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: \n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-08-18 11:35+0000\n" -"Last-Translator: kingu \n" -"Language-Team: Norwegian Bokmål \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1544787638.000000\n" #. 7EFBE @@ -365,7 +365,7 @@ "par_id7631458\n" "help.text" msgid "Enter the URL of a MediaWiki server, starting with \"https://\"." -msgstr "Skriv inn nettadressa til en MediaWiki-tjener. Ta med http://" +msgstr "Skriv inn nettadressen til en MediaWiki-tjener. Ta med http://" #. PiGDX #: wikiaccount.xhp @@ -446,7 +446,7 @@ "par_id8654133\n" "help.text" msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server." -msgstr "Denne lista gir en oversikt over alle tekstformateringene Wiki Publisher kan laste opp til wikitjeneren." +msgstr "Denne listen gir en oversikt over alle tekstformateringene Wiki Publisher kan laste opp til wikitjeneren." #. wC6T7 #: wikiformats.xhp @@ -509,7 +509,7 @@ "par_id8942838\n" "help.text" msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use Format - Bullets and Numbering to define and apply the respective list style." -msgstr "Du kan trygt eksportere lister hvis hele lista bruker samme listestil. Bruk ikonene for nummerering og punktmerking til å lage en liste i Writer. Hvis du trenger en liste uten nummerering eller punktmerking, kan du bruke Format – Punkter og nummerering til å lage og bruke andre listestiler." +msgstr "Du kan trygt eksportere lister hvis hele listen bruker samme listestil. Bruk ikonene for nummerering og punktmerking til å lage en liste i Writer. Hvis du trenger en liste uten nummerering eller punktmerking, kan du bruke Format – Punkter og nummerering til å lage og bruke andre listestiler." #. GJaHG #: wikiformats.xhp @@ -635,7 +635,7 @@ "par_id8163090\n" "help.text" msgid "If only columns of the same row are joined, the result of the transformation resembles the source document very well." -msgstr "Hvis bare kolonner som er i den samme raden slås sammen, blir resultatet av overføringa meget lik kildedokumentet." +msgstr "Hvis bare kolonner som er i den samme raden slås sammen, blir resultatet av overføringen lik kildedokumentet." #. DCjAG #: wikiformats.xhp @@ -671,7 +671,7 @@ "par_id8216193\n" "help.text" msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice." -msgstr "Tegnsettet som brukes i resultatet av overføringa, er alltid UTF-8. Det er ikke sikkert at dette er standard tegnsett hos deg, fordi dette er avhengig av hvilket system du bruker. Dette kan føre til at «spesialtegn» ikke vises på riktig måte når du ser dem med standardinnstillingene. Løsningen på dette er å bytte til UTF-8-koding i redigeringsprogrammet. Hvis dette ikke er mulig i programmet du bruker, kan du vise resultatet av overføringa i nettleseren Firefox, og bytte til UTF-8-koding der. Nå kan du klippe ut og lime inn resultatet til det programmet du vil bruke." +msgstr "Tegnsettet som brukes i resultatet av overføringen, er alltid UTF-8. Det er ikke sikkert at dette er standard tegnsett hos deg, fordi dette er avhengig av hvilket system du bruker. Dette kan føre til at «spesialtegn» ikke vises på riktig måte når du ser dem med standardinnstillingene. Løsningen på dette er å bytte til UTF-8-koding i redigeringsprogrammet. Hvis dette ikke er mulig i programmet du bruker, kan du vise resultatet av overføringen i nettleseren Firefox, og bytte til UTF-8-koding der. Nå kan du klippe ut og lime inn resultatet til det programmet du vil bruke." #. CTEdB #: wikisend.xhp @@ -707,7 +707,7 @@ "par_id664082\n" "help.text" msgid "Select the MediaWiki server where you want to publish your document. Click Add to add a new server to the list." -msgstr "Velg MediaWiki-tjeneren der du vil at dokumentet skal publiseres. Trykk Legg til for å legge til en ny tjener i lista." +msgstr "Velg MediaWiki-tjeneren der du vil at dokumentet skal publiseres. Trykk Legg til for å legge til en ny tjener i listen." #. D9EhE #: wikisend.xhp @@ -788,7 +788,7 @@ "par_id9786065\n" "help.text" msgid "Opens the MediaWiki dialog to add a new entry to the list." -msgstr "Åpner dialogvinduet for MediaWiki for å legge til en ny oppføring i lista." +msgstr "Åpner dialogvinduet for MediaWiki for å legge til en ny oppføring i listen." #. Q2kSq #: wikisettings.xhp @@ -806,7 +806,7 @@ "par_id7285073\n" "help.text" msgid "Removes the selected entry from the list." -msgstr "Fjerner den valgte oppføringen fra lista." +msgstr "Fjerner den valgte oppføringen fra listen." #. mi2NR #: wikisettings.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.1.3~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.1.2~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-08-07 21:35+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1492428705.000000\n" #. sc9Hg @@ -224,7 +224,7 @@ "Dlg_SendToMediaWiki_Label1\n" "value.text" msgid "Media~Wiki Server" -msgstr "MediaWiki-tjener" +msgstr "MediaWiki-server" #. GiPyL #: WikiExtension.xcu @@ -304,7 +304,7 @@ "Dlg_EditSetting_WikiLine\n" "value.text" msgid "MediaWiki Server" -msgstr "MediaWiki-tjener" +msgstr "MediaWiki-server" #. xzqU7 #: WikiExtension.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/swext/mediawiki/src.po libreoffice-7.1.3~rc2/translations/source/nb/swext/mediawiki/src.po --- libreoffice-7.1.2~rc2/translations/source/nb/swext/mediawiki/src.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/swext/mediawiki/src.po 2021-04-28 16:17:44.000000000 +0000 @@ -2,19 +2,21 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2012-10-25 01:51+0200\n" -"Last-Translator: Olav \n" -"Language-Team: LANGUAGE \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" +"Last-Translator: Karl Morten Ramberg \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Weblate 4.4.2\n" +"X-POOTLE-MTIME: 1386761470.000000\n" +#. MzinF #: description.xml msgctxt "" "description.xml\n" @@ -23,10 +25,11 @@ msgid "Wiki Publisher" msgstr "Publiser til wiki" +#. MgWcV #: description.xml msgctxt "" "description.xml\n" "extdesc\n" "description.text" msgid "The Wiki Publisher enables you to create Wiki articles on MediaWiki servers without having to know the syntax of the MediaWiki markup language. Publish your new and existing documents transparently with the Writer to a wiki page.\n" -msgstr "Utvidelsen «Publiser til MediaWiki» gjør det mulig å lage wiki-artikler på MediaWiki-tjenere, uten å ha kjennskap til syntaksen i kodespråket, ved hjelp av Writer.\n" +msgstr "Utvidelsen «Publiser til MediaWiki» gjør det mulig å lage wiki-artikler på MediaWiki-servere, uten å ha kjennskap til syntaksen i kodespråket, ved hjelp av Writer.\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/uui/messages.po libreoffice-7.1.3~rc2/translations/source/nb/uui/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/uui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/uui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-03 23:35+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547587580.000000\n" #. DLY8p @@ -82,7 +82,7 @@ #: uui/inc/ids.hrc:47 msgctxt "RID_UUI_ERRHDL" msgid "The object $(ARG1) cannot be created in directory $(ARG2)." -msgstr "Kan ikke opprette objektet $(ARG1) i mappa $(ARG2)." +msgstr "Kan ikke opprette objektet $(ARG1) i mappen $(ARG2)." #. Dw4Ff #: uui/inc/ids.hrc:49 @@ -112,7 +112,7 @@ #: uui/inc/ids.hrc:57 msgctxt "RID_UUI_ERRHDL" msgid "Action impossible: $(ARG1) is the current directory." -msgstr "Umulig handling: $(ARG1) er den aktive mappa." +msgstr "Umulig handling: $(ARG1) er den aktive mappen." #. wWVF2 #: uui/inc/ids.hrc:59 @@ -280,7 +280,7 @@ #: uui/inc/ids.hrc:113 msgctxt "RID_UUI_ERRHDL" msgid "Folder $(ARG1) does not exist." -msgstr "Mappa $(ARG1) finnes ikke." +msgstr "Mappen $(ARG1) finnes ikke." #. aRCFc #: uui/inc/ids.hrc:115 @@ -346,7 +346,7 @@ #: uui/inc/ids.hrc:135 msgctxt "RID_UUI_ERRHDL" msgid "The object cannot be created in directory $(ARG1)." -msgstr "Objektet kan ikke opprettes i mappa $(ARG1)." +msgstr "Objektet kan ikke opprettes i mappen $(ARG1)." #. cSCj6 #: uui/inc/ids.hrc:137 @@ -367,20 +367,20 @@ "\n" "Should %PRODUCTNAME repair the file?\n" msgstr "" -"Fila «$(ARG1)» inneholder feil og kan derfor ikke åpnes. %PRODUCTNAME kan forsøke å reparere fila.\n" +"Filen «$(ARG1)» inneholder feil og kan derfor ikke åpnes. %PRODUCTNAME kan forsøke å reparere filen.\n" "\n" "Feilen kan være et resultat av dokumentmanipulasjon eller av strukturell dokumentødeleggelse grunnet dataoverføring.\n" "\n" "Det anbefales at man ikke stoler på innholdet i det reparerte dokumentet.\n" "Kjøring av makroer er slått av for dette dokumentet.\n" "\n" -"Skal %PRODUCTNAME reparere fila?\n" +"Skal %PRODUCTNAME reparere filen?\n" #. KeFss #: uui/inc/ids.hrc:141 msgctxt "RID_UUI_ERRHDL" msgid "The file '$(ARG1)' could not be repaired and therefore cannot be opened." -msgstr "Klarte ikke å reparere fila «$(ARG1)». Fila kan derfor ikke åpnes." +msgstr "Klarte ikke å reparere filen «$(ARG1)». Filen kan derfor ikke åpnes." #. JCpTn #: uui/inc/ids.hrc:143 @@ -389,8 +389,8 @@ "Configuration data in '$(ARG1)' is corrupted. Without this data some functions may not operate correctly.\n" "Do you want to continue startup of %PRODUCTNAME without the corrupted configuration data?" msgstr "" -"Oppsettsdataene i «$(ARG1)» er ødelagte. Uten disse dataene kan det hende at noen funksjoner ikke virker som de skal.\n" -"Vil du fortsette oppstarten av %PRODUCTNAME uten de ødelagte oppsettsdataene?" +"Konfigurasjonsdataene i «$(ARG1)» er ødelagte. Uten disse dataene kan det hende at noen funksjoner ikke virker som de skal.\n" +"Vil du fortsette oppstarten av %PRODUCTNAME uten de ødelagte konfigurasjonssdataene?" #. QCACp #: uui/inc/ids.hrc:145 @@ -399,14 +399,14 @@ "The personal configuration file '$(ARG1)' is corrupted and must be deleted to continue. Some of your personal settings may be lost.\n" "Do you want to continue startup of %PRODUCTNAME without the corrupted configuration data?" msgstr "" -"Den personlige oppsettsfila «$(ARG1)» er ødelagt, og må slettes før du kan gå videre. Noen av dine personlige innstillinger kan gå tapt.\n" -"Vil du fortsette oppstarten av %PRODUCTNAME uten de ødelagte oppsettsdataene?" +"Den personlige konfigurasjonsfilen «$(ARG1)» er ødelagt, og må slettes før du kan gå videre. Noen av dine personlige innstillinger kan gå tapt.\n" +"Vil du fortsette oppstarten av %PRODUCTNAME uten de ødelagte konfigurasjonsdataene?" #. e5Rft #: uui/inc/ids.hrc:147 msgctxt "RID_UUI_ERRHDL" msgid "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly." -msgstr "Oppsettsdatakilden «$(ARG1)» er utilgjengelig. Uten disse dataene kan det hende at noen funksjoner ikke virker som de skal." +msgstr "Konfigurasjonsdatakilden «$(ARG1)» er utilgjengelig. Uten disse dataene kan det hende at noen funksjoner ikke virker som de skal." #. 4gRCA #: uui/inc/ids.hrc:149 @@ -415,7 +415,7 @@ "The configuration data source '$(ARG1)' is unavailable. Without this data some functions may not operate correctly.\n" "Do you want to continue startup of %PRODUCTNAME without the missing configuration data?" msgstr "" -"Oppsettsdatakilden «$(ARG1)» er utilgjengelig. Uten disse dataene kan det hende at noen funksjoner ikke virker som de skal.\n" +"Konfigurasjonsdatakilden «$(ARG1)» er utilgjengelig. Uten disse dataene kan det hende at noen funksjoner ikke virker som de skal.\n" "Vil du fortsette oppstarten av %PRODUCTNAME uten de manglende konfigurasjonsdataene?" #. DAUhe @@ -428,19 +428,19 @@ #: uui/inc/ids.hrc:153 msgctxt "RID_UUI_ERRHDL" msgid "The file $(ARG1) is locked by another user. Currently, another write access to this file cannot be granted." -msgstr "Fila $(ARG1) er låst av en annen bruker. For øyeblikket kan ikke skrivetilgang for flere godtas." +msgstr "Filen $(ARG1) er låst av en annen bruker. For øyeblikket kan ikke skrivetilgang for flere godtas." #. k6aHT #: uui/inc/ids.hrc:155 msgctxt "RID_UUI_ERRHDL" msgid "The file $(ARG1) is locked by yourself. Currently, another write access to this file cannot be granted." -msgstr "Fila $(ARG1) er låst av deg selv. For øyeblikket kan ikke skrivetilgang for flere godkjennes." +msgstr "Filen $(ARG1) er låst av deg selv. For øyeblikket kan ikke skrivetilgang for flere godkjennes." #. ZoUzb #: uui/inc/ids.hrc:157 msgctxt "RID_UUI_ERRHDL" msgid "The file $(ARG1) is currently not locked by yourself." -msgstr "Fila $(ARG1) er for øyeblikket ikke låst av deg selv." +msgstr "Filen $(ARG1) er for øyeblikket ikke låst av deg selv." #. L9PCQ #: uui/inc/ids.hrc:159 @@ -449,8 +449,8 @@ "The previously obtained lock for file $(ARG1) has expired.\n" "This can happen due to problems on the server managing the file lock. It cannot be guaranteed that write operations on this file will not overwrite changes done by other users!" msgstr "" -"Den tidligere låsen for fila $(ARG1) har utgått.\n" -"Denne kan skyldes problemer på tjeneren som håndterer fil-låsen. Det er ingen garanti for at skriveoperasjoner på denne fila ikke vil overskrive endringer gjort av andre brukere." +"Den tidligere låsen for filen $(ARG1) har utgått.\n" +"Denne kan skyldes problemer på serveren som håndterer fil-låsingen. Det er ingen garanti for at skriveoperasjoner på denne filen ikke vil overskrive endringer gjort av andre brukere." #. gZzEy #: uui/inc/ids.hrc:161 @@ -488,7 +488,7 @@ msgstr "" "$(ARG1) er et nettsted som bruker et sikkerhetssertifikat til å kryptere dataoverføringer, men dette sertifikatet gikk ut $(ARG2).\n" "\n" -"Du bør sjekke at klokka til datamaskinen går rett." +"Du bør sjekke at klokken til datamaskinen går rett." #. 8GuAn #: uui/inc/ids.hrc:168 @@ -508,7 +508,7 @@ msgstr "" "Du har prøvd å koble til $(ARG1), men sikkerhetssertifikatet tilhører $(ARG2). Det kan hende, men det er lite trolig, at noen prøver å bryte inn i kommunikasjonen med nettstedet.\n" "\n" -"Dersom du har grunn til å tro at sertifikatet ikke tilhører $(ARG1), bør du avbryte tilkoblinga og melde fra til administratoren av nettstedet.\n" +"Dersom du har grunn til å tro at sertifikatet ikke tilhører $(ARG1), bør du avbryte tilkoblingen og melde fra til administratoren av nettstedet.\n" "\n" "Vil du fortsette likevel?" @@ -528,7 +528,7 @@ msgstr "" "Klarte ikke å avgjøre om sertifikatet var gyldig. Du bør undersøke sertifikatet til nettstedet nøye.\n" "\n" -"Hvis du ikke stoler på sertifikatet, bør du avbryte tilkoblinga og melde fra til administratoren av nettstedet." +"Hvis du ikke stoler på sertifikatet, bør du avbryte tilkoblingen og melde fra til administratoren av nettstedet." #. Aj227 #: uui/inc/ids.hrc:172 @@ -540,13 +540,13 @@ #: uui/inc/strings.hrc:25 msgctxt "STR_ENTER_PASSWORD_TO_OPEN" msgid "Enter password to open file: \n" -msgstr "Skriv inn passordet for å åpne fila: \n" +msgstr "Skriv inn passordet for å åpne filen: \n" #. rmDwa #: uui/inc/strings.hrc:26 msgctxt "STR_ENTER_PASSWORD_TO_MODIFY" msgid "Enter password to modify file: \n" -msgstr "Skriv inn passordet for å endre fila: \n" +msgstr "Skriv inn passordet for å endre filen: \n" #. BVofP #: uui/inc/strings.hrc:27 @@ -592,7 +592,7 @@ "\n" "Open document read-only, or ignore own file locking and open the document for editing." msgstr "" -"Du har låst dokumentfila «$(ARG1)» for redigering på et annet system siden $(ARG2)\n" +"Du har låst dokumentfilen «$(ARG1)» for redigering på et annet system siden $(ARG2)\n" "\n" "Åpne dokumentet skrivebeskyttet eller ignorer fillåsingen og åpne en kopi av dokumentet, som kan redigeres." @@ -600,13 +600,13 @@ #: uui/inc/strings.hrc:35 msgctxt "STR_ALREADYOPEN_READONLY_BTN" msgid "Open ~Read-Only" -msgstr "Åpne ~skrivebeskyttet" +msgstr "Åpne skrivebeskyttet" #. ThAZk #: uui/inc/strings.hrc:36 msgctxt "STR_ALREADYOPEN_OPEN_BTN" msgid "~Open" -msgstr "~Åpne" +msgstr "Åpne" #. uFhJT #: uui/inc/strings.hrc:37 @@ -624,25 +624,25 @@ #: uui/inc/strings.hrc:38 msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN" msgid "~Retry Saving" -msgstr "~Lagre igjen" +msgstr "Lagre igjen" #. EVEQx #: uui/inc/strings.hrc:39 msgctxt "STR_ALREADYOPEN_SAVE_BTN" msgid "~Save" -msgstr "~Lagre" +msgstr "Lagre" #. SZb7E #: uui/inc/strings.hrc:41 msgctxt "RID_KEEP_PASSWORD" msgid "~Remember password until end of session" -msgstr "~Husk passordet hele økta" +msgstr "Husk passordet i hele økten" #. 7HtCZ #: uui/inc/strings.hrc:42 msgctxt "RID_SAVE_PASSWORD" msgid "~Remember password" -msgstr "~Husk passord" +msgstr "Husk passord" #. CV6Ci #: uui/inc/strings.hrc:43 @@ -660,7 +660,7 @@ #: uui/inc/strings.hrc:46 msgctxt "STR_LOCKFAILED_MSG" msgid "The lock file could not be created for exclusive access by %PRODUCTNAME, due to missing permission to create a lock file on that file location or lack of free disk space." -msgstr "%PRODUCTNAME kunne ikke låse fila for enkelttilgang da du ikke har tilgang til å opprette en låsefil på den filplasseringa eller for lite diskplass." +msgstr "%PRODUCTNAME kunne ikke låse filen for enkelttilgang da du ikke har tilgang til å opprette en låsefil på den filplasseringen eller du har for liten diskplass." #. CaBXF #: uui/inc/strings.hrc:47 @@ -706,13 +706,13 @@ #: uui/inc/strings.hrc:52 msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN" msgid "Open ~Read-Only" -msgstr "Åpne ~skrivebeskyttet" +msgstr "Åpne skrivebeskyttet" #. TsA54 #: uui/inc/strings.hrc:53 msgctxt "STR_OPENLOCKED_OPENCOPY_BTN" msgid "Open ~Copy" -msgstr "Åpne ~kopi" +msgstr "Åpne kopi" #. EXAAf #: uui/inc/strings.hrc:54 @@ -742,7 +742,7 @@ #: uui/inc/strings.hrc:58 msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN" msgid "~Save Anyway" -msgstr "~Lagre likevel" +msgstr "Lagre likevel" #. YBz5F #: uui/inc/strings.hrc:60 @@ -760,7 +760,7 @@ "\n" "Try again later to save document or save a copy of that document." msgstr "" -"Dokumentfila «$(ARG1)» er låst for redigering av:\n" +"Dokumentfilen «$(ARG1)» er låst for redigering av:\n" "\n" "$(ARG2)\n" "\n" @@ -786,13 +786,13 @@ #: uui/inc/strings.hrc:63 msgctxt "STR_TRYLATER_RETRYSAVING_BTN" msgid "~Retry Saving" -msgstr "~Lagre igjen" +msgstr "Lagre igjen" #. 6iCzM #: uui/inc/strings.hrc:64 msgctxt "STR_TRYLATER_SAVEAS_BTN" msgid "~Save As..." -msgstr "~Lagre som" +msgstr "Lagre som" #. nqrvC #: uui/inc/strings.hrc:66 @@ -802,7 +802,7 @@ "Choose Replace to overwrite the existing file or provide a new name." msgstr "" "En fil med navnet «%NAME» eksisterer allerede i «%FOLDER».\n" -"Velg Erstatt for å overskrive fila, eller oppgi et nytt navn." +"Velg Erstatt for å overskrive filen, eller oppgi et nytt navn." #. 3bJvA #: uui/inc/strings.hrc:67 @@ -812,7 +812,7 @@ "Please enter a new name." msgstr "" "En fil med navnet «%NAME» eksisterer allerede i «%FOLDER».\n" -"Velg Erstatt for å overskrive fila, eller oppgi et nytt navn." +"Velg Erstatt for å overskrive filen, eller oppgi et nytt navn." #. Bapqc #: uui/inc/strings.hrc:68 @@ -902,31 +902,31 @@ #: uui/uiconfig/ui/logindialog.ui:84 msgctxt "logindialog|syscreds" msgid "_Use system credentials" -msgstr "_Bruk systemreferanser" +msgstr "Bruk systemreferanser" #. J7CWF #: uui/uiconfig/ui/logindialog.ui:100 msgctxt "logindialog|remember" msgid "_Remember password" -msgstr "_Husk passord" +msgstr "Husk passord" #. pryAC #: uui/uiconfig/ui/logindialog.ui:131 msgctxt "logindialog|accountft" msgid "A_ccount:" -msgstr "_Konto" +msgstr "Konto" #. QccHg #: uui/uiconfig/ui/logindialog.ui:145 msgctxt "logindialog|passwordft" msgid "Pass_word:" -msgstr "_Passord" +msgstr "Passord" #. NF3CG #: uui/uiconfig/ui/logindialog.ui:186 msgctxt "logindialog|nameft" msgid "_User name:" -msgstr "_Brukernavn:" +msgstr "Brukernavn:" #. mD36F #: uui/uiconfig/ui/logindialog.ui:200 @@ -996,13 +996,13 @@ #: uui/uiconfig/ui/macrowarnmedium.ui:27 msgctxt "macrowarnmedium|cancel" msgid "_Disable Macros" -msgstr "Slå _av makroer" +msgstr "Slå av makroer" #. o4c9e #: uui/uiconfig/ui/macrowarnmedium.ui:43 msgctxt "macrowarnmedium|ok" msgid "_Enable Macros" -msgstr "Slå _på makroer" +msgstr "Slå på makroer" #. tYAFs #: uui/uiconfig/ui/macrowarnmedium.ui:89 @@ -1014,13 +1014,13 @@ #: uui/uiconfig/ui/macrowarnmedium.ui:98 msgctxt "macrowarnmedium|alwaysTrustCheckbutton" msgid "_Always trust macros from this source" -msgstr "_Stol alltid på makroer fra denne kilden" +msgstr "Stol alltid på makroer fra denne kilden" #. hWGP7 #: uui/uiconfig/ui/macrowarnmedium.ui:129 msgctxt "macrowarnmedium|viewSignsButton" msgid "_View Signatures…" -msgstr "_Vis signaturer …" +msgstr "Vis signaturer …" #. BABeG #: uui/uiconfig/ui/masterpassworddlg.ui:8 @@ -1032,7 +1032,7 @@ #: uui/uiconfig/ui/masterpassworddlg.ui:87 msgctxt "masterpassworddlg|label1" msgid "_Enter password:" -msgstr "Skriv inn _passordet:" +msgstr "Skriv inn passordet:" #. bRcP4 #: uui/uiconfig/ui/masterpassworddlg.ui:110 @@ -1074,13 +1074,13 @@ #: uui/uiconfig/ui/setmasterpassworddlg.ui:86 msgctxt "setmasterpassworddlg|label1" msgid "Passwords for web connections are protected by a master password. You will be asked to enter it once per session, if %PRODUCTNAME retrieves a password from the protected password list." -msgstr "Passord for netttilkoblinger er beskyttet av et hovedpassord. Du vil bli spurt om å skrive inn dette en gang per økt for å få tilgang til den beskyttede passordlista i %PRODUCTNAME." +msgstr "Passord for netttilkoblinger er beskyttet av et hovedpassord. Du vil bli spurt om å skrive inn dette en gang per økt for å få tilgang til den beskyttede passordlisten i %PRODUCTNAME." #. G2dce #: uui/uiconfig/ui/setmasterpassworddlg.ui:102 msgctxt "setmasterpassworddlg|label2" msgid "_Enter password:" -msgstr "Skriv inn _passordet:" +msgstr "Skriv inn passordet:" #. AG7BG #: uui/uiconfig/ui/setmasterpassworddlg.ui:122 @@ -1092,7 +1092,7 @@ #: uui/uiconfig/ui/setmasterpassworddlg.ui:136 msgctxt "setmasterpassworddlg|label3" msgid "_Reenter password:" -msgstr "Skriv inn passordet _på nytt:" +msgstr "Skriv inn passordet på nytt:" #. HjihJ #: uui/uiconfig/ui/setmasterpassworddlg.ui:157 @@ -1116,7 +1116,7 @@ #: uui/uiconfig/ui/simplenameclash.ui:8 msgctxt "simplenameclash|SimpleNameClashDialog" msgid "File Exists" -msgstr "Fila eksisterer" +msgstr "Filen eksisterer" #. tCDZh #: uui/uiconfig/ui/simplenameclash.ui:42 @@ -1164,7 +1164,7 @@ #: uui/uiconfig/ui/unknownauthdialog.ui:82 msgctxt "unknownauthdialog|accept" msgid "Accept this certificate temporarily for this session" -msgstr "Godta sertifikatet midlertidig i denne økta" +msgstr "Godta sertifikatet midlertidig i denne økten" #. fGDzR #: uui/uiconfig/ui/unknownauthdialog.ui:98 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/vcl/messages.po libreoffice-7.1.3~rc2/translations/source/nb/vcl/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/vcl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/vcl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-03 23:35+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563559895.000000\n" #. k5jTM @@ -159,7 +159,7 @@ #: vcl/inc/print.hrc:51 msgctxt "RID_STR_PAPERNAMES" msgid "Executive" -msgstr "Executive" +msgstr "Ledelse" #. SXPft #: vcl/inc/print.hrc:52 @@ -532,7 +532,7 @@ #: vcl/inc/printaccessoryview.hrc:30 msgctxt "SV_PRINT_NATIVE_STRINGS" msgid "More" -msgstr "~Mer" +msgstr "Mer" #. QWCDs #: vcl/inc/printaccessoryview.hrc:31 @@ -647,14 +647,14 @@ #: vcl/inc/strings.hrc:46 msgctxt "SV_BUTTONTEXT_OK" msgid "~OK" -msgstr "~OK" +msgstr "OK" #. tePSP #. To translators: This is used on buttons for platforms other than windows, there should be a ~ mnemonic in this string #: vcl/inc/strings.hrc:48 msgctxt "SV_BUTTONTEXT_CANCEL" msgid "~Cancel" -msgstr "~Avbryt" +msgstr "Avbryt" #. Td9Kr #. To translators: This is used on buttons for Windows, there should be no ~ mnemonic in this string @@ -674,55 +674,55 @@ #: vcl/inc/strings.hrc:53 msgctxt "SV_BUTTONTEXT_YES" msgid "~Yes" -msgstr "~Ja" +msgstr "Ja" #. FoaHJ #: vcl/inc/strings.hrc:54 msgctxt "SV_BUTTONTEXT_NO" msgid "~No" -msgstr "~Nei" +msgstr "Nei" #. oF4GE #: vcl/inc/strings.hrc:55 msgctxt "SV_BUTTONTEXT_RETRY" msgid "~Retry" -msgstr "~Prøv igjen" +msgstr "Prøv igjen" #. ECcBY #: vcl/inc/strings.hrc:56 msgctxt "SV_BUTTONTEXT_HELP" msgid "~Help" -msgstr "~Hjelp" +msgstr "Hjelp" #. vT447 #: vcl/inc/strings.hrc:57 msgctxt "SV_BUTTONTEXT_CLOSE" msgid "~Close" -msgstr "~Lukk" +msgstr "Lukk" #. HGPAB #: vcl/inc/strings.hrc:58 msgctxt "SV_BUTTONTEXT_MORE" msgid "~More" -msgstr "M~er" +msgstr "Mer" #. 2G82H #: vcl/inc/strings.hrc:59 msgctxt "SV_BUTTONTEXT_IGNORE" msgid "~Ignore" -msgstr "~Ignorer" +msgstr "Ignorer" #. mHKZG #: vcl/inc/strings.hrc:60 msgctxt "SV_BUTTONTEXT_ABORT" msgid "~Abort" -msgstr "~Avbryt" +msgstr "Avbryt" #. xGRuS #: vcl/inc/strings.hrc:61 msgctxt "SV_BUTTONTEXT_LESS" msgid "~Less" -msgstr "M~indre" +msgstr "Mindre" #. VphsG #: vcl/inc/strings.hrc:62 @@ -770,7 +770,7 @@ #: vcl/inc/strings.hrc:69 msgctxt "SV_BUTTONTEXT_SAVE" msgid "~Save" -msgstr "La~gre" +msgstr "Lagre" #. 5tCjy #: vcl/inc/strings.hrc:70 @@ -818,7 +818,7 @@ #: vcl/inc/strings.hrc:77 msgctxt "SV_BUTTONTEXT_OPEN" msgid "~Open" -msgstr "~Åpne" +msgstr "Åpne" #. xxAVY #: vcl/inc/strings.hrc:78 @@ -882,13 +882,13 @@ #: vcl/inc/strings.hrc:90 msgctxt "STR_FPICKER_AUTO_EXTENSION" msgid "~Automatic file name extension" -msgstr "~Automatisk filetternavn" +msgstr "Automatisk filetternavn" #. 9ECLu #: vcl/inc/strings.hrc:91 msgctxt "STR_FPICKER_PASSWORD" msgid "Save with pass~word" -msgstr "~Lagre med passord" +msgstr "Lagre med passord" #. nyers #. dear loplugins, please don't remove this constant, it will be used in follow-up commits @@ -901,43 +901,43 @@ #: vcl/inc/strings.hrc:94 msgctxt "STR_FPICKER_FILTER_OPTIONS" msgid "~Edit filter settings" -msgstr "~Rediger filterinnstillinger" +msgstr "Rediger filterinnstillinger" #. ZDE7y #: vcl/inc/strings.hrc:95 msgctxt "STR_FPICKER_READONLY" msgid "~Read-only" -msgstr "~Skrivebeskyttet" +msgstr "Skrivebeskyttet" #. EYvCH #: vcl/inc/strings.hrc:96 msgctxt "STR_FPICKER_INSERT_AS_LINK" msgid "Insert as ~Link" -msgstr "Sett inn som _lenke" +msgstr "Sett inn som lenke" #. zpPD6 #: vcl/inc/strings.hrc:97 msgctxt "STR_FPICKER_SHOW_PREVIEW" msgid "Pr~eview" -msgstr "~Forhåndsvisning" +msgstr "Forhåndsvisning" #. L7QTs #: vcl/inc/strings.hrc:98 msgctxt "STR_FPICKER_PLAY" msgid "~Play" -msgstr "~Spill av" +msgstr "Spill av" #. rPLAU #: vcl/inc/strings.hrc:99 msgctxt "STR_FPICKER_VERSION" msgid "~Version:" -msgstr "~Versjon:" +msgstr "Versjon:" #. dMPHM #: vcl/inc/strings.hrc:100 msgctxt "STR_FPICKER_TEMPLATES" msgid "S~tyles:" -msgstr "S~tiler:" +msgstr "Stiler:" #. TeuRr #: vcl/inc/strings.hrc:101 @@ -955,7 +955,7 @@ #: vcl/inc/strings.hrc:103 msgctxt "STR_FPICKER_SELECTION" msgid "~Selection" -msgstr "~Utvalg" +msgstr "Utvalg" #. QFCuE #: vcl/inc/strings.hrc:104 @@ -979,7 +979,7 @@ #: vcl/inc/strings.hrc:107 msgctxt "STR_FPICKER_ALREADYEXISTOVERWRITE_SECONDARY" msgid "The file already exists in \"$dirname$\". Replacing it will overwrite its contents." -msgstr "Fila eksisterer allerede i «$dirname$». Ved erstatning overskrives innholdet." +msgstr "Filen eksisterer allerede i «$dirname$». Ved erstatning overskrives innholdet." #. pF5CC #: vcl/inc/strings.hrc:108 @@ -1208,7 +1208,7 @@ #: vcl/inc/strings.hrc:156 msgctxt "STR_SEPARATOR" msgid "Separator" -msgstr "Separator" +msgstr "Skille" #. V2EuY #. To translators: This is the first entry of a sequence of measurement unit names @@ -1855,13 +1855,13 @@ #: vcl/uiconfig/ui/cupspassworddialog.ui:76 msgctxt "cupspassworddialog|label1" msgid "_User:" -msgstr "_Bruker:" +msgstr "Bruker:" #. mdDrQ #: vcl/uiconfig/ui/cupspassworddialog.ui:90 msgctxt "cupspassworddialog|label2" msgid "_Password:" -msgstr "_Passord:" +msgstr "Passord:" #. tmXzc #: vcl/uiconfig/ui/cupspassworddialog.ui:104 @@ -2227,19 +2227,19 @@ #: vcl/uiconfig/ui/printdialog.ui:828 msgctxt "printdialog|singlejobs" msgid "Create separate print jobs for collated output" -msgstr "" +msgstr "Lag separate utskriftsjobber for sortert utskrift" #. X4Am9 #: vcl/uiconfig/ui/printdialog.ui:836 msgctxt "printdialog|extended_tip|collate" msgid "Check to not rely on the printer to create collated copies but create a print job for each copy instead." -msgstr "" +msgstr "Marker for å ikke stole på at skriveren oppretter sorterte kopier, men opprett en utskriftsjobb for hver kopi i stedet." #. 2MdHu #: vcl/uiconfig/ui/printdialog.ui:857 msgctxt "printdialog|rangeexpander" msgid "_More" -msgstr "" +msgstr "Mer" #. ehfCG #: vcl/uiconfig/ui/printdialog.ui:875 @@ -2443,7 +2443,7 @@ #: vcl/uiconfig/ui/printdialog.ui:1345 msgctxt "printdialog|layoutexpander" msgid "M_ore" -msgstr "" +msgstr "Mer" #. rCBA5 #: vcl/uiconfig/ui/printdialog.ui:1363 @@ -2467,31 +2467,31 @@ #: vcl/uiconfig/ui/printerdevicepage.ui:35 msgctxt "printerdevicepage|label7" msgid "_Option:" -msgstr "_Valg:" +msgstr "Valg:" #. deJLS #: vcl/uiconfig/ui/printerdevicepage.ui:49 msgctxt "printerdevicepage|label8" msgid "Current _value:" -msgstr "Gjeldende _verdi:" +msgstr "Gjeldende verdi:" #. e9E5A #: vcl/uiconfig/ui/printerdevicepage.ui:174 msgctxt "printerdevicepage|label11" msgid "Color _depth:" -msgstr "Farge_dybde:" +msgstr "Fargedybde:" #. U29RG #: vcl/uiconfig/ui/printerdevicepage.ui:188 msgctxt "printerdevicepage|label10" msgid "Co_lor:" -msgstr "_Farge:" +msgstr "Farge:" #. LG4Fe #: vcl/uiconfig/ui/printerdevicepage.ui:202 msgctxt "printerdevicepage|label9" msgid "Printer language _type:" -msgstr "_Skriverspråk:" +msgstr "Skriverspråk:" #. yDrz5 #: vcl/uiconfig/ui/printerdevicepage.ui:218 @@ -2563,7 +2563,7 @@ #: vcl/uiconfig/ui/printerpaperpage.ui:20 msgctxt "printerpaperpage|paperft" msgid "_Paper size:" -msgstr "_Papirstørrelse:" +msgstr "Papirstørrelse:" #. mC9U8 #: vcl/uiconfig/ui/printerpaperpage.ui:34 @@ -2575,7 +2575,7 @@ #: vcl/uiconfig/ui/printerpaperpage.ui:48 msgctxt "printerpaperpage|duplexft" msgid "_Duplex:" -msgstr "_Begge sider av arket:" +msgstr "Begge sider av arket:" #. CDcLD #: vcl/uiconfig/ui/printerpaperpage.ui:62 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/wizards/messages.po libreoffice-7.1.3~rc2/translations/source/nb/wizards/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/wizards/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/wizards/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-08-06 19:23+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556781445.000000\n" #. gbiMx @@ -536,7 +536,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:119 msgctxt "RID_LETTERWIZARDDIALOG_START_65" msgid "Marine" -msgstr "Marine blå" +msgstr "Marineblå" #. QdyaD #: wizards/com/sun/star/wizards/common/strings.hrc:120 @@ -818,7 +818,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:174 msgctxt "RID_FAXWIZARDDIALOG_START_34" msgid "~Include page number" -msgstr "Ta med sidetall" +msgstr "Inkluder sidetall" #. 2FBzM #: wizards/com/sun/star/wizards/common/strings.hrc:175 @@ -920,7 +920,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:191 msgctxt "RID_FAXWIZARDDIALOG_START_51" msgid "Marine" -msgstr "Marine blå" +msgstr "Marineblå" #. SAhLc #: wizards/com/sun/star/wizards/common/strings.hrc:192 diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/wizards/source/resources.po libreoffice-7.1.3~rc2/translations/source/nb/wizards/source/resources.po --- libreoffice-7.1.2~rc2/translations/source/nb/wizards/source/resources.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/wizards/source/resources.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-23 20:36+0000\n" -"Last-Translator: kingu \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Karl Morten Ramberg \n" "Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556781457.000000\n" #. 8UKfi @@ -212,7 +212,7 @@ "RID_COMMON_21\n" "property.text" msgid "The wizard could not be run, because important files were not found.\\nUnder 'Tools - Options - %PRODUCTNAME - Paths' click the 'Default' button to reset the paths to the original default settings.\\nThen run the wizard again." -msgstr "Veiviseren kunne ikke starte fordi noen viktige filer mangler. \\nUnder «Verktøy → Innstillinger → %PRODUCTNAME → Stier», kan du trykke på knappen «Standard» for å tilbakestille innstillingene for stiene.\\nStart deretter veiviseren på nytt." +msgstr "Veiviseren kunne ikke starte fordi noen viktige filer mangler. \\n Under «Verktøy → Innstillinger → %PRODUCTNAME → Stier», kan du trykke på knappen «Standard» for å tilbakestille innstillingene for stiene.\\n Start deretter veiviseren på nytt." #. GohbP #: resources_en_US.properties @@ -1526,7 +1526,7 @@ "RID_QUERY_11\n" "property.text" msgid "~Detailed query (Shows all records of the query.)" -msgstr "Detaljert spørring (viser alle postene i spørringa)" +msgstr "Detaljert spørring (viser alle postene i spørringen)" #. fnzhE #: resources_en_US.properties @@ -2147,7 +2147,7 @@ "RID_FORM_2\n" "property.text" msgid "Binary fields are always listed and selectable from the left list.\\nIf possible, they are interpreted as images." -msgstr "Binære felt blir alltid listet opp, og er valgbare i listen til venstre.\\nOm mulig, blir disse tolket som bilder." +msgstr "Binære felt blir alltid listet opp, og er valgbare i listen til venstre.\\n Om mulig, blir disse tolket som bilder." #. BCBCd #: resources_en_US.properties @@ -2156,7 +2156,7 @@ "RID_FORM_3\n" "property.text" msgid "A subform is a form that is inserted in another form.\\nUse subforms to show data from tables or queries with a one-to-many relationship." -msgstr "Et underskjema er et skjema som er satt inn i et annet skjema.\\nBruk underskjemaer til å vise data fra tabeller eller spørringer med en «en til mange»-relasjon." +msgstr "Et underskjema er et skjema som er satt inn i et annet skjema.\\n Bruk underskjemaer til å vise data fra tabeller eller spørringer med en «en til mange»-relasjon." #. h4XzG #: resources_en_US.properties @@ -2237,7 +2237,7 @@ "RID_FORM_19\n" "property.text" msgid "The join '' and '' has been selected twice.\\nBut joins may only be used once." -msgstr "Sammenføyningen «» og «» er valgt to ganger.\\nSammenføyninger kan bare gjøres en gang." +msgstr "Sammenføyningen «» og «» er valgt to ganger.\\n Sammenføyninger kan bare gjøres en gang." #. 9uFd2 #: resources_en_US.properties @@ -3110,7 +3110,7 @@ "RID_TABLE_48\n" "property.text" msgid "The name '%TABLENAME' already exists.\\nPlease enter another name." -msgstr "Navnet «%TABLENAME» finnes allerede i databasen.\\nSkriv inn et annet navn." +msgstr "Navnet «%TABLENAME» finnes allerede i databasen.\\n Skriv inn et annet navn." #. CSsZM #: resources_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/nb/xmlsecurity/messages.po libreoffice-7.1.3~rc2/translations/source/nb/xmlsecurity/messages.po --- libreoffice-7.1.2~rc2/translations/source/nb/xmlsecurity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nb/xmlsecurity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-09 17:34+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Karl Morten Ramberg \n" -"Language-Team: Norwegian Bokmål \n" +"Language-Team: Norwegian Bokmål \n" "Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554919482.000000\n" #. EyJrF @@ -524,9 +524,9 @@ "All macros will be executed without confirmation.\n" "Use this setting only if you are certain that all documents that will be opened are safe." msgstr "" -"~Lav (ikke anbefalt).\n" +"Lav (ikke anbefalt).\n" "Alle makroer blir kjørt uten bekreftelse.\n" -"Bruk denne innstillinga hvis du er sikker på at alle dokumenter som skal åpnes er trygge." +"Bruk denne innstillingen hvis du er sikker på at alle dokumenter som skal åpnes er trygge." #. peYqm #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:31 @@ -541,7 +541,7 @@ "_Medium.\n" "Confirmation required before executing macros from untrusted sources." msgstr "" -"~Middels.\n" +"Middels.\n" "Krever bekreftelse før makroer fra ikke tiltrodde kilder blir kjørt." #. kZB2g @@ -558,7 +558,7 @@ "Only signed macros from trusted sources are allowed to run.\n" "Unsigned macros are disabled." msgstr "" -"_Høy.\n" +"Høy.\n" "Kun signerede makroer fra betrodde kilder tillates å kjøre.\n" "Usignerede makroer deaktiveres." @@ -576,9 +576,9 @@ "Only macros from trusted file locations are allowed to run.\n" "All other macros, regardless whether signed or not, are disabled." msgstr "" -"_Meget høj.\n" +"Meget høy.\n" "Kun signerede makroer fra betrodde filplasseringer tillates å kjøre.\n" -"Alle andre makroer, uansett om de er signerede eller ikke, deaktiveres." +"Alle andre makroer, uansett om de er signerte eller ikke, deaktiveres." #. UESj3 #: xmlsecurity/uiconfig/ui/securitylevelpage.ui:102 @@ -590,7 +590,7 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:68 msgctxt "securitytrustpage|viewcert" msgid "_View..." -msgstr "_Visning …" +msgstr "Visning …" #. c3ydP #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:75 @@ -602,7 +602,7 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:94 msgctxt "extended_tip|removecert" msgid "Removes the selected certificate from the list of trusted certificates." -msgstr "Fjerner det valgte sertifikatet fra lista over sertifikater du stoler på." +msgstr "Fjerner det valgte sertifikatet fra listen over sertifikater du stoler på." #. Y7LGC #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:134 @@ -644,7 +644,7 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:268 msgctxt "securitytrustpage|addfile" msgid "A_dd..." -msgstr "Le_gg til …" +msgstr "Legg til …" #. 9bJoL #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:275 @@ -656,7 +656,7 @@ #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:294 msgctxt "extended_tip|removefile" msgid "Removes the selected folder from the list of trusted file locations." -msgstr "Fjerner den valgte mappen fra lista over betrodde filplasseringer." +msgstr "Fjerner den valgte mappen fra listen over betrodde filplasseringer." #. yZBo6 #: xmlsecurity/uiconfig/ui/securitytrustpage.ui:345 diff -Nru libreoffice-7.1.2~rc2/translations/source/ne/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ne/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ne/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ne/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:42+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2462,1071 +2462,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ne/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-07-28 14:35+0000\n" "Last-Translator: sophie \n" "Language-Team: Nepali \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinking fonts फन्टहरू फ्ल्यास गर्दा" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "झिम्किरहने" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/nl/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-07 09:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547631046.000000\n" #. NCRDD @@ -2826,7 +2826,7 @@ #: 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 "Selecteer een ontwerp in de keuzelijst of klik op één van de keuzevakken er onder." +msgstr "Selecteer een ontwerp in de keuzelijst of klik op één van de keuzevakjes er onder." #. EyGsf #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78 @@ -4290,7 +4290,7 @@ #: 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 "De standaardrichting waarin de punten van de taart geordend zijn, is tegen de klok in. Zet een vink in het keuzevak Met de klok mee om de delen in de tegenovergestelde richting te tekenen." +msgstr "De standaardrichting waarin de punten van de taart geordend zijn, is tegen de klok in. Zet een vink in het keuzevakje Met de klok mee om de delen in de tegenovergestelde richting te tekenen." #. ATHCu #: chart2/uiconfig/ui/tp_PolarOptions.ui:50 @@ -4404,7 +4404,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:155 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 "Voor gegevensreeksen in kolommen: De eerste rij in het bereik wordt gebruikt als naam voor de gegevensreeks. Voor gegevensreeksen in rijen: De eerste rij in het bereik wordt gebruikt als categorie. De resterende rijen bevatten de gegevensreeksen. Als dit keuzevak niet geselecteerd is, zijn alle rijen gegevensreeksen." +msgstr "Voor gegevensreeksen in kolommen: De eerste rij in het bereik wordt gebruikt als naam voor de gegevensreeks. Voor gegevensreeksen in rijen: De eerste rij in het bereik wordt gebruikt als categorie. De resterende rijen bevatten de gegevensreeksen. Als dit keuzevakje niet geselecteerd is, zijn alle rijen gegevensreeksen." #. ER2D7 #: chart2/uiconfig/ui/tp_RangeChooser.ui:166 @@ -4416,7 +4416,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:175 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 "Voor gegevensreeksen in kolommen: De eerste kolom in het bereik wordt gebruikt als naam voor gegevensreeksen. Voor gegevensreeksen in rijen: De eerste kolom in het bereik wordt gebruikt als categorie. De resterende kolommen bevatten de gegevenskolommen. Als dit keuzevak niet geselecteerd is, zijn alle kolommen gegevenskolommen." +msgstr "Voor gegevensreeksen in kolommen: De eerste kolom in het bereik wordt gebruikt als naam voor gegevensreeksen. Voor gegevensreeksen in rijen: De eerste kolom in het bereik wordt gebruikt als categorie. De resterende kolommen bevatten de gegevenskolommen. Als dit keuzevakje niet geselecteerd is, zijn alle kolommen gegevenskolommen." #. k9TMD #: chart2/uiconfig/ui/tp_RangeChooser.ui:196 @@ -4737,7 +4737,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:231 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 "Voor \"gestapelde\" en \"procentuele\" kolomdiagrammen (verticale staafdiagrammen) markeert u dit keuzevak om de kolomlagen die bij elkaar horen met lijnen te verbinden." +msgstr "Voor \"gestapelde\" en \"procentuele\" kolomdiagrammen (verticale staafdiagrammen) markeert u dit keuzevakje om de kolomlagen die bij elkaar horen met lijnen te verbinden." #. VHcU3 #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:249 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/cui/messages.po libreoffice-7.1.3~rc2/translations/source/nl/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-13 07:26+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME ondersteunt vier macrobeveiligingsniveaus (van laag tot zeer hoog) en vertrouwde bronnen." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 wil van toepassing zijn als een organisatie voor Google Summer of Code (GSoC) zie:" - -#. SNTbc -#: 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 "Wist u dat u opmerkingen kunt toevoegen aan delen van tekst? Gebruik gewoon de sneltoetsen %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Moet u een of meer alinea's verplaatsen? U hoeft niet te knippen en plakken: gebruik de sneltoets %MOD1+%MOD2+pijl (omhoog/omlaag)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Wijzig de basislettertypen voor de vooraf gedefinieerde sjabloon of het huidige document met Extra ▸ Opties ▸ %PRODUCTNAME Writer ▸ Standaardlettertypen." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Wilt u woorden vinden die meer dan 10 tekens bevatten? Bewerken ▸ Zoeken en vervangen ▸ Zoeken ▸ [a-z] {10,} ▸ Andere opties ▸ activeer Reguliere expressie." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Open een CSV bestand als een nieuw blad in het huidige werkblad via Blad > Blad uit bestand invoegen." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Bij het typen in vet, cursief of onderstreept kunt u in Writer blijven typen met de standaard attributen door de sneltoets %MOD1+Shift+X (directe tekenopmaak verwijderen) te gebruiken." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Gebruik %MOD1+%MOD2+Shift+V om de inhoud van het klembord als onopgemaakte tekst te plakken." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Pas het uiterlijk van een voetnoot aan met Extra > Voet- en eindnoten…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Met Presentatie > Aangepaste presentatie, herschik en selecteer dia's zodat de presentatie voldoet aan de wensen van uw kijkers." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Wilt u de spellingcontrole voor een deel van de tekst wijzigen? Klik in de taalzone van de statusbalk of beter, pas een opmaakprofiel toe." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer kan een lege pagina invoegen tussen (even) pagina's die elkaar opvolgen. \"Automatisch ingevoegde lege pagina's afdrukken\" in de tab %PRODUCTNAME Writer van het dialoogvenster Afdrukken." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Wilt u niet alle kolommen afdrukken? Verberg of groepeer degenen die je niet nodig hebt." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Als u een AutoPlay-presentatie wilt wijzigen, opent u deze en klikt u met de rechtermuisknop en selecteert u Bewerken in het contextmenu." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Moet u zeer precies positioneren? %MOD2+pijltjes toetsen verplaatst objecten (vormen, afbeeldingen, formules) met één pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Ingebouwde hulp is beschikbaar door F1 te drukken, als u deze geïnstalleerd heeft. Ander kijkt u online op:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Klik met rechts in de statusbalk %PRODUCTNAME Calc en selecteer \"Aantal geselecteerd\" om het aantal geselecteerde cellen te tonen." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Wenst u twee of meerdere kolommen op slechts een gedeelte van een %PRODUCTNAME Writer pagina? Invoegen > Sectie, stel in met de tab Kolommen en plaats de tekst in deze sectie." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Gebruik Gegevens > Statistiek voor steekproefneming, beschrijvende statistieken, variantieanalyse, correlatie en veel meer in %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "U kunt kopiëren van het ene blad naar het andere zonder het klemboord. Selecteer het te kopiëren gebied, %MOD1+klik op de tab van het doelblad en gebruik Blad > Cellen vullen > Bladen vullen." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "U kunt het uiterlijk van PRODUCTNAME wijzigen via Extra > Opties > Beeld > Gebruikersinterface." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "In %PRODUCTNAME Impress, gebruik Invoegen > Media > Fotoalbum om een presentatie te maken van een reeks foto's met de functie \"Fotoalbum\"." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "U kunt formules tonen in plaats van resultaten met Beeld > Formule weergeven (of Extra > Opties > PRODUCTNAME Calc > Beeld > Weergave > Formules." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME is ontwikkeld door een vriendelijke gemeenschap, die bestaat uit honderden bijdragers over de hele wereld. Doe mee met uw vaardigheden, ook anders dan coderen." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Linkshandig? Hulpmiddelen inschakelen; Extra ▸ Opties ▸ Taalinstellingen ▸ Talen ▸ Aziatische en vink Extra ▸ Opties ▸ %PRODUCTNAAM Writer ▸ Beeld ▸ Weergave ▸ Rechts uitgelijnd, waardoor de schuifbalk links wordt weergegeven." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Wenst u dat u uw hoofdstuktitels steeds met een nieuwe pagina beginnen? Bewerk Kop1 (alinea-opmaakprofiel) > Tekstverloop > Regeleinden en vink Invoegen > Pagina > Ervoor aan." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datum/tijd waarde is niet meer dan een getal dat aangeeft hoeveel dagen er zijn verlopen sinds een dag nul; in het getal stelt het geheel gedeelte de datum voor en het decimale gedeelte is de tijd het verlopen gedeelte van de dag met 0,5 als middag." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+del wist vanaf de cursor tot het einde van de huidige zin." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Gebruik kolom- of rijkoppen in formules. Bijvoorbeeld, als u twee kolommen heeft \"Tijd\" en \"km\", gebruik Tijd/km om minuten per kilometer te krijgen." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Heeft u een hekel aan de rondlopende mieren omheen de cellen in Calc? Druk de Escape-toets om ze te stoppen; de gekopieerde inhoud blijft beschikbaar om te plakken." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Wilt u een ambassadeur van %PRODUCTNAME worden? Er zijn certificeringen voor ontwikkelaars, beheerders en trainers." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Mix portret- en landschapsoriëntaties in een Calc-werkblad door verschillende pagina-opmaakprofielen op bladen toe te passen." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klik op het pictogram met speciale tekens op de werkbalk om snel toegang te krijgen tot favoriete en recente tekens die u kunt invoegen." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Kies \"Hiërarchisch\" in het zijpaneel Opmaakprofielen om de relaties tussen opmaakprofielen te zien." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "U kunt opmaakprofielen gebruiken om de tabellen in uw document consistent te maken. Kies er één uit de voorgedefinieerde per Opmaakprofiel (F11) of via Tabel ▸ AutoOmaak opmaakprofielen." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Configureer het gebruik van de %MOD1 toets om hyperlinks te openen? Extra ▸ Opties ▸ %PRODUCTNAME ▸ Beveiliging ▸ Opties ▸ \"%MOD1+klik noodzakelijk om hyperlinks te openen\"." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "U wilt de berekening van afzonderlijke elementen van een formule bekijken, de respectieve elementen selecteren en op F9 drukken." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "U kunt cellen beveiligen met Opmaak ▸ Cellen ▸ Celbeveiliging. Om te voorkomen dat bladen worden ingevoegd, verwijderd, hernoemd, verplaatst / gekopieerd, gebruikt u Extra ▸ Blad beveiligen." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Langs een curve schrijven? Teken de lijn, dubbelklik, typ de tekst, Opmaak ▸ Tekstvak en Vorm ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Wilt u alleen de hoogste waarden in een werkblad weergeven? Selecteer menu Gegevens ▸ AutoFilter, klik op de vervolgkeuzepijl en kies \"Top10\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Ga naar Invoegen ▸ Inhoudsopgave en index ▸ Inhoudsopgave, index of woordenlijst (of klik met rechts en bewerk de eerder ingevoegde index) om het paginanummer uit uw inhoudsopgave te verwijderen. Verwijder op het tabblad Inhoud regels het paginanummer (#) uit de regel Structuur." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Met de Navigator kunt u koppen omhoog/omlaag en de tekst onder de kop, in de Navigator en in het document selecteren en verplaatsen." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Als u snel een wiskundig object in Writer wilt krijgen, typt u uw formule, markeert u deze en gebruikt u Invoegen ▸ Object ▸ Formule om de tekst te converteren." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Met %PRODUCTNAME is het zeer eenvoudig om een nieuwe bibliotheek te installeren: ze worden als extensie verkregen." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME heeft een draagbare versie die u mobiliteit biedt. Zelfs zonder beheerdersrechten op uw computer kunt u %PRODUCTNAME Portable ook op uw harde schijf installeren." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Met Writer kunt u uw voetnoten nummeren per pagina, hoofdstuk, document: Extra ▸ Voet- en eindnoten ▸ Tabblad Voetnoten ▸ Telling." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Uw Writer-document wordt niet opnieuw geopend met de tekstcursor op dezelfde bewerkingspositie als toen u het opsloeg? Voeg voor- of achternaam toe in Extra ▸ Opties ▸ %PRODUCTNAME ▸ Gebruikersgegevens ▸ Voor-/achternaam." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Citatiebeheer? Gebruik een extensie van derden." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Wilt u op meerdere bladen een waarde op dezelfde plaats invoegen? Selecteer de bladen: houd de %MOD1-toets ingedrukt en klik op hun bladtabs voordat u invoert." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Wenst u tekst te verbergen in een tekst. Selecteer de tekst. Invoegen > Sectie en selecteer \"Verbergen\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "U kunt de middelste muisknop aanpassen via Extra ▸ Opties ▸ %PRODUCTNAAM ▸ Beeld ▸ Middelste knop." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Wilt u twee portretpagina's afdrukken op een liggende pagina (verkleinen van A4 naar A5)? Bestand ▸ Afdrukken en 2 selecteren bij \"Pagina's per blad\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Voor snelle toegang tot uw documentbladwijzers, klikt u met rechts op het paginanummer op de statusbalk (linkerbenedenhoek van het documentvenster)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Selecteer een object op de achtergrond van het document via het hulpmiddel Selecteren op de werkbalk Tekenen om het te selecteren object te markeren." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definieer teksten die u vaak gebruikt als AutoTekst. U kunt ze invoegen op naam, snelkoppeling of werkbalk in elk Writer-document." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Speel muziek af tijdens een diavoorstelling door het geluid toe te wijzen aan de eerste diaovergang zonder op de knop \"Overgang op alle dia's toepassen\" te klikken." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "%PRODUCTNAAM Calc berekent niet van links naar rechts, maar respecteert de volgorde Haakjes - Exponenten - Vermenigvuldigen - Delen - Optellen - Aftrekken." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Krijg %PRODUCTNAME-documentatie en gratis gebruikershandleidingen bij:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Wilt u alle <> in één keer verwijderen en de tekst binnen behouden? Bewerken ▸ Zoeken en vervangen: Zoeken = [<>], Vervangen = leeg en vink \"Reguliere expressie\" aan onder Andere opties." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Moet u een rapport presenteren dat is geschreven met Writer? Bestand ▸ Verzenden ▸ Overzicht naar presentatie maakt automatisch een diavoorstelling vanuit het overzicht." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Wilt u de presentatie van hyperlinks in een spreadsheet beheren? Plaats ze met de HYPERLINK-functie." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Verwijder het vinkje bij Extra ▸ Opties ▸ %PRODUCTNAAM Calc ▸ Beeld ▸ Inzoomen: \"Synchroniseer bladen\" zodat elk blad in Calc zijn eigen zoomfactor heeft." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "U kunt een kleur instellen voor elke tab: klik met rechts op de tab of gebruik Blad > Kleur van bladtab." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Traceer cellen die worden gebruikt in een formule, voorgangers (Shift+F9) of afhankelijkheden (Shift+F5) (of gebruik Extra ▸ Detective). Bij elke hit gaat u een stap verder in de keten." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Voeg uw formules in en nummer ze in één stap: typ fn en dan F3. Een AutoTekst wordt ingevoegd met formule en nummer uitgelijnd in een tabel." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "U kunt een illustratie-index maken van objectnamen, niet alleen van onderschriften." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Gebruik uw Android of iPhone om uw Impress-presentatie op afstand te bedienen." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Wilt u weten hoeveel dagen er zijn in de huidige maand? Gebruik de functie Wil je weten hoeveel dagen er zijn in de huidige maand? Gebruik de functie DAGENINMAAND (VANDAAG())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Getallen worden weergegeven als ### in uw werkblad? De kolom is te smal om alle cijfers weer te geven." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Maak massale parallelle berekeningen van formulecellen mogelijk via Extra ▸ Opties ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Gebruik het hulpmiddel Verbinding op de werkbalk Tekenen in Draw/Impress om mooie stroomdiagrammen te maken en desgewenst het object in Writer te kopiëren/plakken." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Uw donaties ondersteunen onze wereldwijde gemeenschap." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Wilt u x maanden aan een datum toevoegen? Gebruik =ZELFDE.DAG(Begindatum;Maanden)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "U selecteert een aaneengesloten bereik cellen, die gegevens bevatten en begrensd zijn door lege rijen en kolommen door %MOD1+* (numeriek toetsenblok) te gebruiken." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Is uw datum aanvaardingspatroon ongepast? Gebruik de Extra ▸ Opties ▸ Taalinstellingen ▸ Talen ▸ Datum aanvaardingspatronen om het patroon aan te passen." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Wilt u formules exporteren naar CSV? Bestand ▸ Opslaan als ▸ Bestandstype: Tekst CSV, vink “Filterinstellingen bewerken” aan en vink “De formules van de cel opslaan in plaats van uitgerekende waarden” aan in het volgende dialoogvenster." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Presentor-console is een geweldige functie bij het presenteren met %PRODUCTNAME Impress. Heeft u dit al bekeken?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "U verwijdert meerdere notities door de cellen met opmerkingen te selecteren en dan Blad ▸ Celnotities ▸ Alle notities verwijderen te gebruiken." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Documenten eenvoudig naar PDF converteren, met één klik door op het PDF-pictogram op de werkbalk te klikken." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Wilt u een groot aantal cellen selecteren zonder te scrollen? Typ de bereikreferentie (bijvoorbeeld A1: A1000) in het vak Naam en druk vervolgens op Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Wilt u de geldige parameters van de opdrachtregel kennen? Start soffice met --help of -h of -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Pas uw blad- of afdrukbereik aan een pagina aan met Opmaak ▸ Pagina ▸ Blad tab ▸ Schaalmodus." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Een ongenummerd item in een lijst nodig? Gebruik \"Item zonder nummer invoegen\" op de werkbalk Nummering en opsommingstekens." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "U kunt de oriëntatie van de inhoud van een cel in een tabel roteren met Tabel > Eigenschappen > Tekstverloop > Tekstrichting." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Sleep in %PRODUCTNAME Draw, om het 0-punt van de linialen te wijzigen, de kruising van de twee linialen in de linkerbovenhoek naar de werkruimte" #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Een kolom in Calc verplaatsen tussen twee andere? Klik op de kolomkop dan een cel in de kolom, hou de muisknop ingedrukt en verplaats naar het doel met de %MOD2 toets." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automatisch alfabetische indexvermeldingen markeren met behulp van een concordantiebestand." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Gebruik Opmaak ▸ Uitlijnen (of het contextmenu) voor precieze positionering van objecten in Draw / Impress: het centreert op de pagina als respectievelijk één object is geselecteerd of werkt op de groep." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Gebruik geen tabs om plaats tussen items in een Writer document te voorzien. Afhankelijk van wat je probeert te doen, kan een tabel zonder randen een betere keuze zijn." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "U hoeft niet door de lijst op Extra ▸ Aanpassen ▸ Toetsenbord te scrollen om een sneltoets te vinden: u hoeft deze alleen maar te typen." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME kan automatisch een genummerd bijschrift toevoegen wanneer u objecten invoegt. Zie Extra ▸ Opties ▸ %PRODUCTNAME Writer ▸ Automatische bijschriften." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Met %PRODUCTNAME kunt u uw Google Mail-account gebruiken om standaardbrieven te maken. Vul in Extra ▸ Opties ▸ %PRODUCTNAME Writer ▸ Standaardbrief E-mail." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Houd de kolomkoppen van een blad zichtbaar bij het scrollen van lijnen via Beeld ▸ Cellen vastzetten ▸ Eerste rij vastzetten." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "U wilt gaan werken met Basic macro's? Kijk dan naar de voorbeelden onder Extra ▸ Macro's ▸ Macro's bewerken." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Pas alinea-opmaakprofielen Kop toe in Writer met sneltoetsen: %MOD1+1 past Kop1 toe, %MOD1+2 past Kop2 toe, enz." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Loop niet verloren in grote documenten. Gebruik de Navigator (F5) om uw weg te vinden in de inhoud." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Bewerken ▸ Zoeken en vervangen laat u rechtstreeks speciale tekens invoegen: klik met rechts in invoervelden of druk op Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Heeft u aangepaste inhoud nodig voor metadata-eigenschappen? Bestand ▸ Eigenschappen ▸ In het tabblad Gebruikergedefinieerde eigenschappen kunt u maken wat u wilt." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Wilt u een voorwerp in Draw zien, maar niet afdrukken? Teken het op een laag waarvoor de vlag \"Afdrukbaar\" niet is ingesteld (klik met de rechtermuisknop op het tabblad en \"Laag wijzigen\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "U kunt de huidige datum in uw document invoegen: Invoegen > Veld > Datum." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Heeft u veel afbeeldingen in uw Writer document? Versnel het tonen door Beeld > Afbeeldingen en diagrammen uit te schakelen." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Gebruik Blad ▸ Cellen vullen ▸ Willekeurige getallen vullen om een willekeurige reeks te genereren op basis van verschillende distributies." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Hernoem uw dia's in Impress om u te helpen bij het definiëren van \"Ga naar pagina\" interacties en om een samenvatting te hebben die explicieter is dan Dia1, Dia2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Met het dialoogvenster hoofdstuknummering kunt u instellen dat tekst vóór het hoofdstuknummer moet worden weergegeven. Typ bijvoorbeeld \"Hoofdstuk \" om \"Hoofdstuk 1\" weer te geven." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Een Writer-tabel transponeren? Kopieer en plak in Calc, transponeer met kopiëren/plakken speciaal en kopiëren/plakken speciaal ▸ Opgemaakte tekst in Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Om de knop \"Verticale tekst\" in de werkbalk Tekenen te krijgen, vinkt u Extra ▸ Opties ▸ Taalinstellingen ▸ Standaardtalen ▸ Aziatische talen aan (en maakt u de knop zichtbaar door met rechts te klikken)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Als u snel wilt inzoomen op bereikselectie, klikt u met rechts op het zoompercentage van de Statusbalk en kiest u Optimale weergave." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "U kunt bestaande PDF-bestanden ondertekenen en ook die handtekeningen verifiëren." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Vaak een document maken van een andere? Overweeg een sjabloon te gebruiken." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Gebruik Opmaak ▸ Voorwaardelijke opmaak ▸ Beheren in Calc om erachter te komen welke cellen zijn gedefinieerd met voorwaardelijke opmaak." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Extra ▸ Detective ▸ Ongeldige gegevens markeren markeert alle cellen in het blad die waarden bevatten die buiten de validatieregels vallen." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Gebruik lettertype-inbedding voor een grotere interoperabiliteit met andere kantoorsuites met Bestand ▸ Eigenschappen ▸ Lettertype." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Om een formule om te zetten in statische waarden hoeft u niet te kopiëren/plakken; gebruik Gegevens ▸ Berekenen ▸ Formule naar waarde." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "U kunt alle notities in een document opnieuw opmaken door op de pijl naar beneden in een opmerking te klikken en te kiezen voor \"Alle notities opmaken\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Wilt u dezelfde lay-out voor de schermweergave en het afdrukken? Controleer Extra ▸ Opties ▸ %PRODUCTNAME Calc ▸ Algemeen ▸ Printerafmetingen voor tekstopmaak gebruiken." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer helpt u bij het maken van back-ups: met Bestand ▸ Kopie opslaan maakt u een nieuw document dat verder werkt aan het origineel." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Wanneer u een opmaakprofiel heeft gemaakt op basis van een ander, kunt u een procentuele waarde of een puntwaarde invoeren (bijv. 110% of -2pt of +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Om een notitie te kopiëren zonder de inhoud van de doelcel te verliezen, moet u Plakken speciaal gebruiken en alles uitvinken, behalve \"Notities\" in het dialoogvenster. Gebruik Bewerkingen \"Toevoegen\" om de bestaande inhoud niet te overschrijven." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Converteer uw MS Office documenten in batch naar het OpenDocument-formaat met de Assistent Conversieprogramma in het menu Bestand ▸ Assistent ▸ Conversieprogramma voor documenten." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Bij het bewerken van een cel kunt u met de rechtermuisknop klikken en velden invoegen: Datum, naam van het blad, titel van het document, enz." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Moet u een tabel in Writer verplaatsen? Tabel ▸ Selecteer ▸ Tabel en Invoegen ▸ Frame ▸ Frame in en verplaats de tabel waar u wilt." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Met Extra ▸ AutoTekst ▸ AutoTekst importeren kunt u een Word-document of een sjabloon met de AutoTekst-items selecteren, die u wilt importeren." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Voeg geen manuele onderbrekingen toe om twee alinea's te scheiden. Verander eerder de Inspringingen en afstanden ▸ Afstand ▸ Onder alinea bij de opmaak van een alinea." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Bewaar de nullen voor een getal door gebruik te maken van de optie \"voorloopnullen\" cel opmaak of maak de cel op als tekst voordat u het getal invoert." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Wilt u terugkeren naar de standaardinstelling nadat u een lijststijl hebt toegepast? Klik op Lijst met opsommingstekens of Genummerde lijst wisselen op de werkbalk Opmaak." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Verwijder al uw afdrukbereiken in één stap: selecteer alle bladen en vervolgens Opmaak ▸ Afdrukbereiken ▸ Wissen." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Voeg achtergrondafbeeldingen toe aan werkbladen via Invoegen ▸ Afbeelding of sleep een achtergrond uit de Galerij en dan Opmaak ▸ Schikken ▸ Op achtergrond." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Heeft u moeite met het plakken van tekst uit PDF-bestanden of webpagina's in documenten? Probeer te plakken als niet opgemaakte tekst (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Gebruik in Calc GETRIMD.GEM() om het gemiddelde van een gegevensset te retourneren met uitzondering van de hoogste en laagste waarden." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "De 4e optionele parameter van de functie VERT.ZOEKEN van Calc geeft aan of de eerste kolom met gegevens is gesorteerd. Als dit niet het geval is, voert u ONWAAR of nul in." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Werkbalken zijn contextueel - ze openen afhankelijk van de context. Als u een werkbalk niet wilt tonen, verwijder dan het vinkje bij Beeld ▸ Werkbalken." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Wenst u een hoofddocument te maken van het huidige Writer-document? Bestand ▸ Verzenden ▸ Hoofddocument maken (sub-documenten worden afhankelijk van het schema gemaakt)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Wilt u cellen centreren bij het afdrukken van een pagina in Calc? Opmaak ▸ Pagina, Pagina ▸ Lay-outinstellingen ▸ Tabel uitlijning." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Frames kunnen worden gekoppeld, zodat de tekst van de ene naar de andere kan vloeien, zoals bij desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Maak een diagram op basis van een Writer-tabel door in de tabel te klikken en te kiezen voor Invoegen ▸ Diagram." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Selecteer opties in Extra ▸ Opties ▸ %PRODUCTNAME Writer ▸ Opmaakhulp ▸ Opmaak weergeven om te specificeren welke niet-afdrukbare tekens worden weergegeven." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Wilt u naar een bepaalde pagina springen aan de hand van het paginanummer? Klik op de meest linkse statusbalk of gebruik Bewerken ▸ Ga naar pagina... of druk op %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME ondersteunt meer dan 150 talen." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Schakel het vinkje bij Presentatie ▸ Instellingen presentatie ▸ Presentatie steeds op de voorgrond als het nodig is dat een ander programma zijn venster voor uw presentatie toont." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Wilt u de vetgedrukte woorden vinden in een Writer-document? Bewerken ▸ Zoeken en vervangen ▸ Andere opties ▸ Attributen ▸ Tekendikte." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "U kunt alinea's of tabelrijen alfabetisch of numeriek sorteren per Extra ▸ Sorteren." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Om een alinea voor (na) een sectie in te voegen, drukt u %MOD2+Enter aan het begin (einde) van de sectie." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME heeft een sjablooncentrum om goed uitziende documenten te maken - bekijk het eens." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Bereken met Calc terugbetalingen van leningen: bijv. RMB (2%/12;36;2500) rentepercentage per betaalperiode 2%/12, 36 maanden, geleende bedrag 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Kunt u niet vinden wat u wilt met de VLOOKUP-functie in Calc? Met INDEX en MATCH kunt u alles doen!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Wilt u de verborgen kolom A laten zien? Klik op een cel in kolom B, druk op de linker muisknop, beweeg de muis naar links, laat los. Maak de kolom dan zichtbaar met Opmaak ▸ Kolommen ▸ Weergeven." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Als u het nummer van een pagina in Writer wilt wijzigen, gaat u naar de eigenschappen van de eerste alinea en vinkt u, onder Regeleinden op het tabblad Tekstverloop, het selectievakje Invoegen aan en voert u het nummer in." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Voer %PRODUCTNAME uit in elke browser via rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Vreemde foutcode in Calc, Fout: gevolgd door een cijfer? Deze pagina geeft de uitleg:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Voeg een alinea toe die geen titel is in de inhoudsopgave door Overzicht en Nummering in de alinea-instellingen te wijzigen naar een overzichtsniveau." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Naast de inhoudsopgave kan %PRODUCTNAME ook alfabetisch, illustratie, tabellen, objecten, bibliografie en door de gebruiker gedefinieerde indexen maken." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Kunt u een aangepaste celopmaakprofiel niet wijzigen of verwijderen? Controleer alle bladen, geen enkele mag zijn beveiligd." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Moet u een serie vullen? Selecteer het celbereik en Blad ▸ Cellen vullen ▸ Reeks en kies tussen Lineair, Groei, Datum en Autovullen." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Wilt u weten of een cel wordt doorverwezen in formules van andere cellen? Extra ▸ Detective ▸ Afhankelijkheden opsporen (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "In het veld Vervangen van AutoCorrectie kunt u de jokertekens gebruiken. *" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Wilt u de bovenstaande regel dupliceren? Druk op %MOD1+D of gebruik Blad ▸ Cellen vullen ▸ Omlaag." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Als u in verschillende werkbladen wilt zoeken, selecteert u deze voordat u begint met zoeken." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Slepen en neerzetten van cellen van Calc naar de normale weergave van een dia maakt een tabel; in de overzichtsweergave maakt elke cel een regel in het overzicht." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME helpt u om geen twee of meer spaties in Writer in te voeren. Controleer Extra ▸ Opties voor AutoCorrectie ▸ Opties ▸ Dubbele spaties verwijderen." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Wilt u dat de cursor naar de cel rechts gaat, nadat u een waarde in Calc hebt ingevoerd? Gebruik de Tab-toets in plaats van Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Om de schuifbalk links weer te geven, schakelt u Extra ▸ Opties ▸ Taalinstellingen ▸ Talen ▸ Complexe tekst in en vinkt u Blad ▸ Rechts naar links aan." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Sleep een opgemaakt object naar het paneel Opmaakprofielen van de Zijbalk. Er wordt een dialoogvenster geopend, voer de naam van het nieuwe opmaakprofiel in." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nieuwe versies van %PRODUCTNAME bieden nieuwe functies, bugfixes en beveiligingspatches. Houd uw software bijgewerkt!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Nieuwe XSLT- en XML-filters ontwikkelen?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Druk op Shift + F1 om eventuele beschikbare uitgebreide Helptips in dialoogvensters te zien, wanneer \"Uitgebreide Help\" niet is ingeschakeld in Extra ▸ Opties ▸% PRODUCTNAAM ▸ Algemeen." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Help voor %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Meer informatie" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Deze actie nu uitvoeren..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tip van de dag: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -3811,7 +3805,7 @@ #: cui/inc/treeopt.hrc:83 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Mail Merge Email" -msgstr "Standaardbrief E-mail" +msgstr "Assistent Brief E-mail" #. trEVm #: cui/inc/treeopt.hrc:88 @@ -6782,7 +6776,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:488 msgctxt "colorconfigwin|index" msgid "Index and table shadings" -msgstr "Inhoudsopgave- en registerarceringen" +msgstr "Inhoudsopgave- en tabelarceringen" #. fitqS #: cui/uiconfig/ui/colorconfigwin.ui:504 @@ -11281,7 +11275,7 @@ #: cui/uiconfig/ui/insertoleobject.ui:267 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 "Schakel dit keuzevak in om het OLE-object als een koppeling naar het originele bestand in te voegen. Als dit keuzevak niet is ingeschakeld, zal het OLE-object in uw document worden opgenomen." +msgstr "Schakel dit keuzevakje in om het OLE-object als een koppeling naar het originele bestand in te voegen. Als dit keuzevakje niet is ingeschakeld, zal het OLE-object in uw document worden opgenomen." #. G8yfb #: cui/uiconfig/ui/insertoleobject.ui:278 @@ -14099,7 +14093,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:61 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 "De VBA-code (Visual Basic for Applications) zal worden geladen, gereed om te worden uitgevoerd. Indien dit keuzevak niet is gemarkeerd, zal de VBA-code als opmerkingen worden weergegeven zodat die wel kan worden bekeken, maar niet zal kunnen worden uitgevoerd." +msgstr "De VBA-code (Visual Basic for Applications) zal worden geladen, gereed om te worden uitgevoerd. Indien dit keuzevakje niet is gemarkeerd, zal de VBA-code als opmerkingen worden weergegeven zodat die wel kan worden bekeken, maar niet zal kunnen worden uitgevoerd." #. avyQV #: cui/uiconfig/ui/optfltrpage.ui:72 @@ -14141,7 +14135,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:161 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 "De VBA-code (Visual Basic for Applications) zal worden geladen, gereed om te worden uitgevoerd. Indien dit keuzevak niet is gemarkeerd, zal de VBA-code als opmerkingen worden weergegeven zodat die wel kan worden bekeken, maar niet zal kunnen worden uitgevoerd." +msgstr "De VBA-code (Visual Basic for Applications) zal worden geladen, gereed om te worden uitgevoerd. Indien dit keuzevakje niet is gemarkeerd, zal de VBA-code als opmerkingen worden weergegeven zodat die wel kan worden bekeken, maar niet zal kunnen worden uitgevoerd." #. K6YYX #: cui/uiconfig/ui/optfltrpage.ui:172 @@ -17942,7 +17936,7 @@ #: cui/uiconfig/ui/positionpage.ui:378 msgctxt "positionpage|rotateandscale" msgid "Rotation / Scaling" -msgstr "Rotatie / schaling" +msgstr "Draaien / schalen" #. k8oBH #: cui/uiconfig/ui/positionpage.ui:394 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/nl/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-22 17:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562580168.000000\n" #. BiN6g @@ -3285,7 +3285,7 @@ #: dbaccess/uiconfig/ui/generalpagedialog.ui:32 msgctxt "generalpagedialog|datasourceTypeLabel" msgid "Database _type:" -msgstr "Database _type:" +msgstr "_Type database:" #. CBhUu #: dbaccess/uiconfig/ui/generalpagedialog.ui:60 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/dictionaries/da_DK.po libreoffice-7.1.3~rc2/translations/source/nl/dictionaries/da_DK.po --- libreoffice-7.1.2~rc2/translations/source/nl/dictionaries/da_DK.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/dictionaries/da_DK.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: LibO 350-l10n\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-27 14:58+0100\n" -"PO-Revision-Date: 2013-05-24 00:21+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: none\n" +"PO-Revision-Date: 2021-03-25 16:36+0000\n" +"Last-Translator: vpanter \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1369354871.000000\n" #. M5yh2 @@ -39,3 +39,9 @@ "and Center for Sprogteknologi, Københavns Universitet\n" "Hyphenation dictionary Based on the TeX hyphenation tables.\n" msgstr "" +"Deens woordenboek van Stavekontrolden\n" +"Dit woordenboek is gebaseerd op gegevens van Det Danske Sprog- og Litteraturselskab\n" +"(De Deense vereniging voor Taal en Literatuur), http://www.dsl.dk.\n" +"De Deense thesaurus is gebaseerd op gegevens van Det Danske Sprog- og Litteraturselskab\n" +"en Center for Sprogteknologi, Københavns Universitet\n" +"Het woordenboek voor woordafbreking is gebaseerd op de tabellen van TeX woordafbreking.\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/nl/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-23 20:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1555829622.000000\n" #. cBx8W @@ -2188,7 +2188,7 @@ #: extensions/inc/strings.hrc:267 msgctxt "RID_STR_PROPTITLE_CHECKBOX" msgid "Check Box" -msgstr "Keuzevak" +msgstr "Keuzevakje" #. NFysA #: extensions/inc/strings.hrc:268 @@ -3077,7 +3077,7 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:43 msgctxt "datasourcepage|embed" msgid "Embed this address book definition into the current document." -msgstr "Integreer deze definitie van het adressenboek in het huidig document." +msgstr "Integreer deze definitie van het adresboek in het huidig document." #. jcF56 #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:67 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/extras/source/autocorr/emoji.po libreoffice-7.1.3~rc2/translations/source/nl/extras/source/autocorr/emoji.po --- libreoffice-7.1.2~rc2/translations/source/nl/extras/source/autocorr/emoji.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/extras/source/autocorr/emoji.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-09-28 07:35+0000\n" -"Last-Translator: vpanter \n" -"Language-Team: Dutch \n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" +"Last-Translator: kees538 \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1516391994.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -1944,7 +1944,7 @@ "BALLOT_BOX\n" "LngText.text" msgid "checkbox" -msgstr "keuzevak" +msgstr "keuzevakje" #. ☑ (U+02611), see http://wiki.documentfoundation.org/Emoji #. g5A4j @@ -1954,7 +1954,7 @@ "BALLOT_BOX_WITH_CHECK\n" "LngText.text" msgid "checkbox2" -msgstr "keuzevak2" +msgstr "keuzevakje2" #. ☒ (U+02612), see http://wiki.documentfoundation.org/Emoji #. WCu8C @@ -1964,7 +1964,7 @@ "BALLOT_BOX_WITH_X\n" "LngText.text" msgid "checkbox3" -msgstr "keuzevak3" +msgstr "keuzevakje3" #. ☓ (U+02613), see http://wiki.documentfoundation.org/Emoji #. XgRVb @@ -11554,7 +11554,7 @@ "BALLOT_BOX_WITH_BOLD_SCRIPT_X\n" "LngText.text" msgid "checkbox4" -msgstr "keuzevak" +msgstr "keuzevakje" #. 🛉 (U+1F6C9), see http://wiki.documentfoundation.org/Emoji #. htBDW @@ -12854,7 +12854,7 @@ "BALLOT_BOX_WITH_BOLD_CHECK\n" "LngText.text" msgid "checkbox5" -msgstr "keuzevak5" +msgstr "keuzevakje5" #. 🗴 (U+1F5F4), see http://wiki.documentfoundation.org/Emoji #. K9FkL @@ -12904,7 +12904,7 @@ "BALLOT_BOX_WITH_SCRIPT_X\n" "LngText.text" msgid "checkbox6" -msgstr "keuzevak6" +msgstr "keuzevakje6" #. 🗸 (U+1F5F8), see http://wiki.documentfoundation.org/Emoji #. C3B4F diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-03-14 08:36+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565254635.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Kleine hoofdletters - Verandert de geselecteerde kleine letters in hoofdletters en verkleint hun grootte." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "knipperende lettertypenlettertypen die knipperen" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Knipperend" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Laat de geselecteerde tekens knipperen. U kunt de knippersnelheid niet aanpassen." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-15 09:37+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -7694,7 +7694,7 @@ "Label\n" "value.text" msgid "~Mail Merge..." -msgstr "~Standaardbrief..." +msgstr "A~ssistent Brief..." #. PkuBG #: DbuCommands.xcu @@ -18434,7 +18434,7 @@ "TooltipLabel\n" "value.text" msgid "Set Line Spacing" -msgstr "Regelafstand instellen" +msgstr "Regelafstand" #. hptqE #: GenericCommands.xcu @@ -19826,7 +19826,7 @@ "Label\n" "value.text" msgid "Cycle Case" -msgstr "Schrijfwijze roteren" +msgstr "Schrijfwijze wisselen" #. pvCBX #: GenericCommands.xcu @@ -19836,7 +19836,7 @@ "TooltipLabel\n" "value.text" msgid "Cycle Case (Title Case, Sentence case, UPPERCASE, lowercase)" -msgstr "Schrijfwijze roteren (Elk Woord Hoofdletter, Begin hoofdletter, HOOFDLETTER, kleine letter)" +msgstr "Schrijfwijze wisselen (Elk Woord Hoofdletter, Begin hoofdletter, HOOFDLETTER, kleine letter)" #. JUhRq #: GenericCommands.xcu @@ -24756,7 +24756,7 @@ "Label\n" "value.text" msgid "Replace with Check Box" -msgstr "Vervangen door keuzevak" +msgstr "Vervangen door keuzevakje" #. 6LZBU #: GenericCommands.xcu @@ -26296,7 +26296,7 @@ "Label\n" "value.text" msgid "Signatu~re Line..." -msgstr "Ha~ndtekeningregel..." +msgstr "O~ndertekeninsgregel..." #. azmKp #: GenericCommands.xcu @@ -29986,7 +29986,7 @@ "Label\n" "value.text" msgid "~Comment..." -msgstr "~Opmerking..." +msgstr "~Notitie..." #. hupz9 #: WriterCommands.xcu @@ -30446,7 +30446,7 @@ "Label\n" "value.text" msgid "~Mail Merge..." -msgstr "~Standaardbrief..." +msgstr "A_ssitent Brief..." #. FT8oF #: WriterCommands.xcu @@ -30456,7 +30456,7 @@ "Label\n" "value.text" msgid "Mail Merge Wi~zard..." -msgstr "Assistent Standaardbrie~f..." +msgstr "Assistent Brie~f..." #. 4GmoX #: WriterCommands.xcu @@ -31446,7 +31446,7 @@ "Label\n" "value.text" msgid "Two Pages Preview" -msgstr "Paginavoorbeeld; twee pagina's" +msgstr "Paginavoorbeeld: Weergave van meerdere pagina's" #. G7JBA #: WriterCommands.xcu @@ -31456,7 +31456,7 @@ "Label\n" "value.text" msgid "Single Page Preview" -msgstr "Paginavoorbeeld; één pagina" +msgstr "Paginavoorbeeld: Enkele pagina-weergave" #. APPcq #: WriterCommands.xcu @@ -31476,7 +31476,7 @@ "Label\n" "value.text" msgid "Multiple Pages Preview" -msgstr "Paginavoorbeeld; meerdere pagina's" +msgstr "Paginavoorbeeld: Boekweergave" #. HRuMm #: WriterCommands.xcu @@ -35376,7 +35376,7 @@ "UIName\n" "value.text" msgid "Mail Merge" -msgstr "Standaardbrief" +msgstr "Assistent Brief" #. QQkF8 #: WriterFormWindowState.xcu @@ -36376,7 +36376,7 @@ "UIName\n" "value.text" msgid "Mail Merge" -msgstr "Standaardbrief" +msgstr "Assistent Brief" #. pXj5p #: WriterReportWindowState.xcu @@ -37316,7 +37316,7 @@ "UIName\n" "value.text" msgid "Mail Merge" -msgstr "Standaardbrief" +msgstr "Assistent Brief" #. EWYQC #: WriterWindowState.xcu @@ -37376,7 +37376,7 @@ "UIName\n" "value.text" msgid "Bullets and Numbering" -msgstr "Nummering en opsommingstekens" +msgstr "Opsommingstekens en nummering" #. cFtve #: WriterWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/nl/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-31 16:37+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559888382.000000\n" #. fLdeV @@ -5597,7 +5597,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:85 msgctxt "restartdialog|reason_mailmerge_install" msgid "For mail merge to work properly, %PRODUCTNAME must be restarted." -msgstr "%PRODUCTNAME moet opnieuw worden gestart om Standaardbrief juist te laten werken." +msgstr "%PRODUCTNAME moet opnieuw worden gestart om de Assistent Brief juist te laten werken." #. x2ZNk #: svtools/uiconfig/ui/restartdialog.ui:100 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/svx/messages.po libreoffice-7.1.3~rc2/translations/source/nl/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-22 17:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564903866.000000\n" #. 3GkZj @@ -6616,7 +6616,7 @@ #: include/svx/strings.hrc:1191 msgctxt "RID_STR_PROPTITLE_CHECKBOX" msgid "Check Box" -msgstr "Keuzevak" +msgstr "Keuzevakje" #. NFysA #: include/svx/strings.hrc:1192 @@ -18466,7 +18466,7 @@ #: svx/uiconfig/ui/redlineviewpage.ui:225 msgctxt "redlineviewpage|comment" msgid "Comment" -msgstr "Opmerking" +msgstr "Notitie" #. nUz2M #: svx/uiconfig/ui/redlineviewpage.ui:144 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/sw/messages.po libreoffice-7.1.3~rc2/translations/source/nl/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-23 20:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: kees538 \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562579985.000000\n" #. v3oJv @@ -849,19 +849,19 @@ #: sw/inc/inspectorproperties.hrc:72 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family" -msgstr "Karakters: Lettertypefamily" +msgstr "Karakters: Lettertypefamilie" #. bYGhE #: sw/inc/inspectorproperties.hrc:73 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family Asian" -msgstr "Teken: Aziatische lettertypefamily" +msgstr "Teken: Aziatische lettertypefamilie" #. 72RGq #: sw/inc/inspectorproperties.hrc:74 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Family Complex" -msgstr "Teken: Lettertypefamily CTL" +msgstr "Teken: Lettertypefamilie CTL" #. Ef9Rc #: sw/inc/inspectorproperties.hrc:75 @@ -3637,7 +3637,7 @@ #: sw/inc/strings.hrc:278 msgctxt "STR_FDLG_TEMPLATE_NAME" msgid "separated by: " -msgstr "gescheiden door: " +msgstr "Gescheiden door: " #. CV6nr #: sw/inc/strings.hrc:279 @@ -4076,7 +4076,7 @@ #: sw/inc/strings.hrc:359 msgctxt "STR_CONTENT_TYPE_INDEX" msgid "Indexes" -msgstr "Indices" +msgstr "Indexen" #. xDXB4 #: sw/inc/strings.hrc:360 @@ -6736,7 +6736,7 @@ #: sw/inc/strings.hrc:823 msgctxt "ST_DRAGSALUTATION" msgid "1. ~Drag salutation elements into the box below" -msgstr "1. ~Aanhefelementen naar onderstaande vak slepen" +msgstr "1. ~Aanhefelementen naar onderstaand vak slepen" #. 4VJWL #: sw/inc/strings.hrc:824 @@ -6946,7 +6946,7 @@ #: sw/inc/strings.hrc:859 msgctxt "ST_MMWTITLE" msgid "Mail Merge Wizard" -msgstr "Assistent Standaardbrief" +msgstr "Assistent Brief" #. CEhZj #: sw/inc/strings.hrc:861 @@ -7157,7 +7157,7 @@ #: sw/inc/strings.hrc:903 msgctxt "STR_DBFLD" msgid "Mail merge fields" -msgstr "Standaardbriefveld" +msgstr "Assistent Brief-veld" #. JP2DU #: sw/inc/strings.hrc:904 @@ -7663,7 +7663,7 @@ #: sw/inc/strings.hrc:1015 msgctxt "FMT_REF_UPDOWN" msgid "Above/Below" -msgstr "Boven/beneden" +msgstr "Boven/onder" #. Vq8mj #: sw/inc/strings.hrc:1016 @@ -7897,7 +7897,7 @@ #: sw/inc/strings.hrc:1063 msgctxt "STR_VIEWLAYOUT_BOOK" msgid "Book view" -msgstr "boekweergave" +msgstr "Boekweergave" #. xBHUG #: sw/inc/strings.hrc:1064 @@ -8138,7 +8138,7 @@ #: sw/inc/strings.hrc:1105 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "Pagina-regelafstand" +msgstr "Paginaregelafstand" #. Cui3U #: sw/inc/strings.hrc:1106 @@ -10892,7 +10892,7 @@ #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:8 msgctxt "bulletsandnumbering|BulletsAndNumberingDialog" msgid "Bullets and Numbering" -msgstr "Opsomming- en nummeringstekens" +msgstr "Opsommingstekens en nummering" #. 9Ad8z #: sw/uiconfig/swriter/ui/bulletsandnumbering.ui:27 @@ -11648,7 +11648,7 @@ #: sw/uiconfig/swriter/ui/columnpage.ui:185 msgctxt "columnpage|widthft" msgid "Width:" -msgstr "Breedte:" +msgstr "Dikte:" #. 4jPyG #: sw/uiconfig/swriter/ui/columnpage.ui:213 @@ -13202,7 +13202,7 @@ #: sw/uiconfig/swriter/ui/envaddresspage.ui:287 msgctxt "envaddresspage|extended_tip|senderedit" msgid "Includes a return address on the envelope. Select the Sender check box, and then enter the return address." -msgstr "Bevat het adres van de afzender op de omslag. Selecteer het keuzevak Afzender, en voeg dan het adres van de afzender bij." +msgstr "Bevat het adres van de afzender op de omslag. Selecteer het keuzevakje Afzender, en voeg dan het adres van de afzender bij." #. t3YBo #: sw/uiconfig/swriter/ui/envaddresspage.ui:300 @@ -18144,7 +18144,7 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:16 msgctxt "mailmerge|MailmergeDialog" msgid "Mail Merge" -msgstr "Standaardbrief" +msgstr "Assistent Brief" #. GwH4i #: sw/uiconfig/swriter/ui/mailmerge.ui:135 @@ -18384,13 +18384,13 @@ #: sw/uiconfig/swriter/ui/mailmerge.ui:896 msgctxt "mailmerge|extended_tip|MailmergeDialog" msgid "The Mail Merge dialog helps you in printing and saving form letters." -msgstr "Het dialoogvenster Standaardbriefhelpt u bij het afdrukken en opslaan van standaardbrieven." +msgstr "Het dialoogvenster Assistent Brief helpt u bij het afdrukken en opslaan van standaardbrieven." #. SjjnV #: sw/uiconfig/swriter/ui/mailmergedialog.ui:8 msgctxt "mailmergedialog|MailMergeDialog" msgid "Mail Merge" -msgstr "Standaardbrief" +msgstr "Assistent Brief" #. BSJ4X #: sw/uiconfig/swriter/ui/mailmergedialog.ui:101 @@ -18576,7 +18576,7 @@ #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:133 msgctxt "mergeconnectdialog|label2" msgid "Fields are used to personalize form letters. The fields are placeholders for data from a data source, such as a database. The fields in the form letter must be connected to the data source." -msgstr "Velden worden gebruikt om standaardbrieven persoonlijk te maken. De velden staan voor de gegevens uit een gegevensbron, zoals een database. De velden in de standaardbrief moeten worden gekoppeld aan de gegevensbron." +msgstr "Velden worden gebruikt om standaardbrieven persoonlijk te maken. De velden staan voor de gegevens uit een gegevensbron, zoals een database. De velden in de Assistent Brief moeten worden gekoppeld aan de gegevensbron." #. erCDQ #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:152 @@ -19134,7 +19134,7 @@ #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:19 msgctxt "mmresultemaildialog|MMResultEmailDialog" msgid "Email merged document" -msgstr "Standaardbrief e-mailen" +msgstr "Assistent Brief e-mailen" #. gT9YY #: sw/uiconfig/swriter/ui/mmresultemaildialog.ui:35 @@ -19536,7 +19536,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:144 msgctxt "mmsalutationpage|prev|tooltip_text" msgid "Preview Previous Address Block" -msgstr "Voorbeeld van vorige adresblok" +msgstr "Voorbeeld van vorig adresblok" #. WUhJW #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:148 @@ -19548,7 +19548,7 @@ #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:162 msgctxt "mmsalutationpage|next|tooltip_text" msgid "Preview Next Address Block" -msgstr "Voorbeeld van volgende adresblok" +msgstr "Voorbeeld van volgend adresblok" #. rnqbV #: sw/uiconfig/swriter/ui/mmsalutationpage.ui:166 @@ -19740,7 +19740,7 @@ #: sw/uiconfig/swriter/ui/mmselectpage.ui:118 msgctxt "mmselectpage|recentdoc" msgid "Start fro_m a recently saved starting document" -msgstr "Start van_uit een onlangs opgeslagen startdocument" +msgstr "Begin van_uit een onlangs opgeslagen startdocument" #. xomYf #: sw/uiconfig/swriter/ui/mmselectpage.ui:128 @@ -20136,7 +20136,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:549 msgctxt "navigatorpanel|listbox|tooltip_text" msgid "List Box On/Off" -msgstr "Keuzevak in-/uitschakelen" +msgstr "Keuzevakje in-/uitschakelen" #. y7YBB #: sw/uiconfig/swriter/ui/navigatorpanel.ui:553 @@ -20184,7 +20184,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:627 msgctxt "navigatorpanel|chapterdown|tooltip_text" msgid "Demote Chapter" -msgstr "Hoofdstuk lager" +msgstr "Hoofdstuk omlaag" #. sGNbn #: sw/uiconfig/swriter/ui/navigatorpanel.ui:631 @@ -25835,7 +25835,7 @@ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:188 msgctxt "selecttabledialog|extended_tip|preview" msgid "Opens the Mail Merge Recipients dialog." -msgstr "Opent het dialoogvenster Ontvangers van standaardbrief." +msgstr "Opent het dialoogvenster Ontvangers van de Assistent Brief." #. HvjeJ #: sw/uiconfig/swriter/ui/selecttabledialog.ui:224 diff -Nru libreoffice-7.1.2~rc2/translations/source/nl/writerperfect/messages.po libreoffice-7.1.3~rc2/translations/source/nl/writerperfect/messages.po --- libreoffice-7.1.2~rc2/translations/source/nl/writerperfect/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nl/writerperfect/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2019-11-13 13:11+0000\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: kees538 \n" -"Language-Team: Dutch \n" +"Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564904462.000000\n" #. DXXuk @@ -104,7 +104,7 @@ #: writerperfect/uiconfig/ui/exportepub.ui:165 msgctxt "exportepub|splitft" msgid "Split method:" -msgstr "Splits methode:" +msgstr "Splitsmethode:" #. DvEkf #: writerperfect/uiconfig/ui/exportepub.ui:179 diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/nn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/nn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-19 17:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME har støtte for fire tryggingsnivå for makroar, frå låg til svært høg, og truverdige kjelder." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 vil som organisasjon søkja om Google Summer of Code (GSoC). Sjå" - -#. SNTbc -#: 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 "Visste du at du kan knyta kommentarar til delar av teksten? Bruk snarvegen %MOD1 + %MOD2 + C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Du kan flytta eitt eller fleire avsnitt utan å klippe og lime. Bruk tastesnarvegen %MOD1 + %MOD2 + Pil opp/ned." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Bruk «Verktøy → Innstillingar → %PRODUCTNAME Writer → Grunnleggjande skrift» for å endra dei grunnleggjande skrifttypane i ein førehandsdefinert mal eller i eit dokument." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Ønskjer du å finna ord med meir enn 10 teikn? Bruk «Rediger → Søk og byt ut». I tekstfeltet «Søk» skriv du «[a-z] {10,}» og merkjer av for «Regulære uttrykk» i feltet «Andre innstillingar»." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Du kan opna ei CSV-fil som eit nytt ark i det gjeldande reknearket ved å bruka «Ark → Set inn ark frå fil»." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Dersom du brukar halvfeit, kursiv eller understreka skrift i Writer, kan du gå tilbake til standardoppsettet med tastesnarvegen «%MOD1 + Shift + X» (fjern direkte formatering)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Bruk «%MOD1 + %MOD2 + Shift + V» for å lima inn innhaldet i utklippstavla som uformatert tekst." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Du kan tilpassa fotnotar med «Verktøy → Fotnotar og sluttnotar»." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Bruk «Lysbiletframvising → Tilpassa lysbiletframvising» for å endra på rekkjefølgja eller plukka ut lysbilete for å tilpassa framsyninga til publikum." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Ønskjer du å endra stavekontrollen for ein del av dokumentet, trykkjer du språkområdet på statuslinja, eller betre: brukar ein stil." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer kan setja inn ei blank side mellom to oddtals- eller partalssider som kjem etter kvarandre. Merk av for «Skriv ut automatisk innsette tomme sider» i fana «%PRODUCTNAME Writer» i dialogvindauget for utskriving." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Ønskjer du å ikkje skriva ut alle kolonnane, kan du gøyma eller gruppera dei du ikkje treng." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "For å endra ei automatisk lysbiletframsyning, opna framsyninga og høgreklikk og vel «Rediger» i menyen som kjem opp." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Treng du nøyaktig plassering? %MOD2 + Piltast flyttar eit objekt (former, bilete, formlar) ein piksel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Du kan få innebygd hjelp ved å trykkja F1 viss dette er installert. Elles kan du få hjelp på" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Høgreklikk på statuslinja i %PRODUCTNAME Calc og vel «Talet på markeringar» for å visa kor mange celler som er merkte." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Ønskjer du å setja inn to eller fleire spalter i deler av eit dokument i %PRODUCTNAME Writer, bruk «Set inn → Bolk» og vel talet på spalter i fana «Spalter». Set teksten inn i denne bolken." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Bruk «Data → Statistikk» for å laga statistikkar over prøvetaking, beskrivande statistikkar, variansanalysar, korrelasjonar og mykje meir i %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Du kan kopiera frå eit ark til eit anna utan å bruka utklippstavla. Merk området som skal kopierast og %MOD1 + klikk på fana til arket det skal kopierast til og bruk «Ark → Fyll celler → Fyll ark»." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Du kan endra utsjånaden til %PRODUCTNAME frå «Verktøy → Innstillingar → %PRODUCTNAME → Vis → Brukargrensesnitt»." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "I %PRODUCTNAME Impress kan du bruka «Set inn → Media → Fotoalbum» for å laga ei lysbiletframvising frå ein serie bilete med «Fotoalbum»-funksjonen." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Du kan visa formlar i staden for resultat med «Vis → Vis formel» eller med «Verktøy → Innstillingar → %PRODUCTNAME Calc → Vis → Formlar»." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME vert utvikla av eit venleg fellesskap av hundrevis av frivillige rundt om i verda. Bli gjerne med i fellesskapet med det du måtte kunne bidra med." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Venstrehendt? Du kan få rullefeltet på venstre side frå «Verktøy → Innstillingar → Språk → Asiatisk» og deretter setja «Verktøy → Innstillingar → %PRODUCTNAME Writer → Vis → Linjal → Høgrestilt»." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Vil du at tittelen på kapittelet alltid skal stå øvst på ei side? Høgreklikk på «Overskrift 1» i sidefana «Stilar - Avsnittsstil» og vel «Endra». I fana »Tekstflyt» merkjer du av for «Set inn» og deretter «Med sidestil», Type: «Side» og Plassering: «Før»." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Verdiane for dato og tidspunkt er berre talet på dagar frå ein vald dag null. Heiltalet representerer datoen og desimaltalet tidspunktet. Såleis vil 0,5 vere kl 12 middag." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift + %MOD1 + Del slettar frå der markøren er til slutten av setninga." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Bruk kolonne- eller radnamna i formlar. Har du for eksempel to kolonnar, «Tid» og «Km» kan du bruka «=Tid/Km» for å finna minutt per kilometer." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Vert du irritert over dei «marsjerande maura» rundt celler i Calc? Trykk tasten Escape for å stoppa dei. Dette gjer også at innhaldet i cella er tilgjengeleg for innliming." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Ønskjer du å vera ambassadør for %PRODUCTNAME? Det finst sertifiseringar av utviklarar, administratorar og undervisarar." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Bland ståande og liggjande utskrift av Calc-rekneark ved å bruka ulike sidestilar på arka." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klikk på ikonet for spesielle skriftteikn på verktøylinja for å få rask tilgang til favorittar og tidlegare brukte teikn som skal setjast inn." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Vel «Hierarkisk vising» i sidepanelet for stilar for å sjå forholdet mellom stilane." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Du kan bruka stilar til å gjera tabellane i dokumentet einsarta. Vel ein førehandsdefinert stil (F11) eller bruk «Tabell → Autoformater stilar»." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Du kan setja opp %MOD1-tasten for å opna hyperlenkjer frå «Verktøy → Innstillingar → %PRODUCTNAME → Tryggleik → «%MOD1 + klikk for å følgja hyperlenkjer»." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "For å sjå utrekningane for kvart element i ein formel, merk elementa og trykk F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Du kan verna celler med «Format → Celler → Vern». For å hindra innsetjing, sletting, endring av namn eller flytting/kopiering av ark, bruk «Verktøy → Vern ark»." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Skriva langs ei kurve? Teikna linja, dobbeltklikk, skriv teksten, bruk «Format → Tekstboks og form → Fontwork»." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Ønskjer du å berre visa dei høgaste verdiane i eit rekneark? Bruk menyen «Data → Autofiltrering» og vel «Ti på topp» i nedtrekksmenyen som kjem fram i cella." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Du kan fjerna sidenummera i innhaldslista ved å gå til «Set inn → Innhaldsliste og register → Innhaldsliste, register eller biografi» (eller høgreklikka og velja «Rediger» i ei innhaldsliste som finst frå før). Slett sidenummeret frå fana «Oppføringar → Sidenr.» på strukturlinja." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Du kan bruka dokumentstrukturen til å merkja og flytta overskrifter og teksten under overskriftene opp eller ned både i dokumentsturkturen og i dokumentet." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Du kan gjera ein tekst om til eit matematisk objekt i Writer ved å skriva inn formelen, merkja han og bruka «Set inn → Objekt → Formel»." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Det er lett å installera nye ordlister i %PRODUCTNAME. Dei vert leverte som utvidingar." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME har også ein portabel versjon som gjev deg fridom. Sjølv utan administratorrettar kan du installera %PRODUCTNAME Portable på datamaskinen din." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Du kan nummerera fotnotene i Writer for kvar side, kvart kapittel eller for heile dokumentet frå «Verktøy → Fotnotar og sluttnotar» og velja stil i fana «Fotnotar → Tel»." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Når du opnar eit Writer-dokument, vert då markøren ikkje vist der han var då du lagra det? Skriv inn fornamn og etternamn i «Verktøy → Innstillingar → %PRODUCTNAME → Brukardata»." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Handsaming av sitat? Bruk ei utviding frå ein tredjepart." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Ønskjer du å setja inn den same verdien på den same staden i fleire ark? Merk arka, hald nede %MOD1-tasten og trykk på fana deira før du skriv inn." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Du kan gøyma ein tekst i eit dokument ved å merkja teksten og bruka «Set inn → Bolk» og velja «Gøym»." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Du kan tilpassa den midtre museknappen frå «Verktøy → Innstillingar → %PRODUCTNAME → Vis → Mus → Den midtre museknappen«." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Du kan skriva ut to ståande sider på ei liggande side (redusera A4 til A5) frå «Fil → Skriv ut» og setja «Sider per ark» til 2." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Høgreklikk på sidenummeret på statuslinja (det nedre, venstre hjørnet i dokumentvindauget) for å få tilgang til bokmerka." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Merk eit objekt i bakgrunnen av dokumentet ved å bruka utvalsverktøyet i verktøylinja for teikning og teikna rundt objektet." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definera tekstar du ofte brukar som autotekst. Du kan setja dei inn i kva Writer-dokument som helst ved hjelp av namnet på teksten, ein snarveg eller frå verktøylinja." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Spel musikk gjennom heile lysbiletframvisinga ved å tilordna lyden til den første lysbiletovergangen utan å trykka på «Bruk på alle lysbilete»." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 reknar ikkje ut frå venstre til høgre, men i rekkjefølgja Parentesar – Eksponentar – Multiplikasjon – Divisjon – Addisjon – Subtraksjon." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Få dokumentasjonen for %PRODUCTNAME og gratis brukarrettleiing på" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Ønskjer du å sletta alle <> samstundes men behalda teksten? «Rediger → Søk og erstatt: Søk = [<>], Byt ut = blank og merk av for «Regulære uttrykk» i «Andre innstillingar»." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Ønskjer du å presentera ein rapport skrive med Writer? «Fil → Send → Ein disposisjon til ein presentasjon» vil automatisk laga ei lysbiletframvising av dokumentet." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Ønskjer du å handsama presentasjonen av hyperlenkjer i eit rekneark, set dei inn med hyperlenkje-funksjonen." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Fjern merkinga for «Verktøy → Innstillingar → %PRODUCTNAME Calc → Vis → Forstørr: Synkroniser ark» slik at kvart ark i Calc kan forstørrast uavhengig av kvarandre." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Du kan setja ein farge for kvar fane: høgreklikk på fana eller bruk «Ark → Farge for arkfane»." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Spor celler som er brukt i ein formel, overordna (Shift + F9) eller avhengige (Shift + F5). Du kan også bruka «Verktøy → Sporing». For kvart treff går du eit steg i kjeda." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Set inn og nummerer formlane dine i eitt steg ved å skriva inn «fn» og trykka på F3. Det vert sett inn ein autotekst med nummer i ein tabell." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Du kan laga ei innhaldsliste over illustrasjonar ut frå objektnamna, ikkje berre bilettekstane." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Du kan bruka Android og iPhone for å fjernstyra Impress-presentasjonar." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Ønskjer du å vita kor mange dagar det er i den gjeldande månaden? Bruk funksjonen DAGAR.I.MÅNADEN(IDAG())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Vert tala viste som «###» i reknearket? Dette betyr at kolonnen er for smal for å visa alle siffera." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Slår på massive parallelle utrekningar av formelceller via «Verktøy → Innstillingar → OpenCL»." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Bruk sambandslinjene på verktøylinja for teikning i Draw/Impress for å laga pene flytkart som eventuelt kan setjast inn i Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Gåva di hjelper vår verdsomspennande fellesskap." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Ønskjer du å leggja x månadar til ein dato? Bruk =DAG.ETTER(dao;månad)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Bruk %MOD1 + * (numerisk tastatur) for å merkja eit samanhengande område med celler som inneheld data og er avgrensa av tomme rader og kolonnar." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Passar ikkje datomønsteret? Bruk «Verktøy → Innstillingar → Språkinnstillingar → Godkjende datomønster» for å velja eit høveleg mønster." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vil du eksportera formlane til ei CSV-file, kan du gjere dette ved å bruka menyen «Fil → Lagra som»og velja filtype CSV i nedtrekkslista. Merk av for «Rediger filterinnstillingane». trykk «Lagra». Trykk og vel «Bruk Tekst, CVS-formatet» i åtvaringa som kjem opp. I det nye vindauget som kjem opp, merkjer du av for «Lagra celleformlar i staden for utrekna verdiar»." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Presentasjonskonsollen er svært grei å bruka når du arbeider med %PRODUCTNAME Impress. Har du prøvd han?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Du kan sletta fleire merknadar på éin gong ved å merkja cellene og bruka «Ark → Cellemerknad → Slett merknad»." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Du kan enkelt omforma dokumenta dine til PDF ved å klikka på PDF-symbolet på verktøylinja." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Du kan merkja eit stort område med celler utan å rulle ved å skriva inn områdereferansen (for eksempel A1:A1000) i namnefeltet og trykkja Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "For å sjå kva kommandolinjeparameter som er gyldige, opna office med -help eller -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Tilpass arket eller utskriftsområda til ei side med «Format → Side → Ark → Skaleringsmodus»." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Treng du eit unummerert element på lista? Bruk «Set inn unummerert oppføring» i verktøylinja «Punkt og nummerering»." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Du kan rotera celleretninga i ein tabell med «Tabell → Eigenskapar«. I fana «Tekstflyt» vel du retninga i «Tekstretning»." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "I %PRODUCTNAME Draw kan du flytta 0/0-punktet for linjalane ved å dra kryssingspunktet i det øvre, venstre hjørnet for dei to linjalane inn i arbeidsområdet." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Du kan flytta ein kolonne i Calc ved å trykkja på overskrifta og deretter på ei celle i kolonnen. Hald nede museknappen og flytt til ønskt plassering med %MOD2-tasten." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Du kan bruka ei samsvarsfil for å merkja ei alfabetisk innhaldsliste automatisk." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Bruk «Format → Juster» (eller sprettoppmenyen) for å plassera objekt nøyaktig i Draw/Impress. Dette vil midtstille eit objekt eller ei gruppe, alt etter kva som er merkt." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Bruk helst ikkje tabulatorinnrykk for å plassera element i Writer. Ofte kan ein kantlaus tabell vera ei betre løysing." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Det er ingen grunn til å rulla gjennom lista i «Verktøy → Tilpass → Tastatur» for å finna ein tastesnarveg. Du kan berre skriva han." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME kan setja inn ein nummerert bilettekst automatisk i Writer. Sjå «Verktøy → Innstillingar → %PRODUCTNAME Writer → Automatisk bilettekst»." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Med %PRODUCTNAME kan du bruka kontoen din i Google Mail for å laga brevfletting. Fyll ut «Verktøy → Innstillingar → %PRODUCTNAME Writer → Brevfletting av e-post»." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Du kan halda kolonneoverskriftene på eit ark synlege når du blar nedover i linjene ved å bruka «Vis → Frys celer → Frys første rad»." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Dersom du ønskjer å byrja å arbeida med Basic-makroar, sjå på eksempla under «Verktøy → Makroar → Rediger makroar»." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Du kan bruka paragrafstilar for overskrifter i Writer med snarvegane %MOD1 + 1 gjeld overskrift 1, %MOD1 + 2 gjeld overskrift 2 osv." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Ikkje gå deg vill i eit stort dokument. Bruk «Dokumentstruktur» (F5) for å navigera deg rundt i innhaldet." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Du kan setja inn spesialteikn ved å bruka «Rediger → Søk og byt ut». Høgreklikk i innskrivingsfelta eller trykk Shift + + %MOD1 + S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Treng du å tilpassa innhald for metadataeigenskapar, kan du gjera dette i «Fil → Eigenskapar → Tilpassa eigenskapar»." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vil du sjå, men ikkje skriva ut, eit objekt i Draw, kan du teikna dette på eit lag der utskriftsflagget ikkje er sett (høgreklikk på fana og vel «Endra lag»)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Bruk «Set inn → Felt → Dato» for å setja inn gjeldande dato i dokumentet." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Har du mange bilete i eit Writer-dokument? Gjer visinga raskare ved å kopla ut «Vis → Bilete og diagram»." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Bruk «Ark → Fyll celler → Tilfeldige tal» for å generera tilfeldige seriar ut frå ulike fordelingar." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Gi lysbileta i Impress logiske namn som gjer det enklare å bruka «Gå til side» og å laga eit samandrag som er meir forståeleg enn Bilete-1, Bilete-2 osv." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "I dialogvindauget for nummerering av kapittel, kan du setja inn tekst som skal visast før kapittelnummeret. Skriv for eksempel «Kapittel» for å visa «Kapittel 1»." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Overføre ein Writer-tabell? «Kopier og lim inn» i Calc. Overfør med «kopier / lim inn utval» og deretter «Kopier / lim inn utval ➞ Formatert tekst» i Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "For å få fram verktøyet for «loddrett tekst» slår du på «Verktøy → Innstillingar → Språkinnstillingar → Språk → Standardspråk for dokument → Asiatisk» og gjer knappen synleg ved å høgreklikka." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "For å raskt forstørra ei eit merkt område, høgreklikk på forstørringsdelen av statuslinja og vel «Beste vising»." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Du kan signera PDF-filer og også verifisera desse signaturane." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Lagar du ofte eit dokument ut frå eit anna? Vurder å bruka mal i staden." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Bruk «Format → Vilkårsformatering → Handsam» i Calc for å finna ut kva celler som har vilkårsformatering." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Bruk «Verktøy → Sporing → Marker ugyldige data» for å utheva alle celler som inneheld verdiar utføre valideringsreglane." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Bruk innebygde skrifttype for å gjera dokumentet meir interoperabelt med andre kontorpakkar med «Fil → Eigenskapar → Skrift»." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "For å omforma ein formel til statiske verdiar, treng du ikkje bruka «kopier / lim inn», men kan i staden bruka «Data → Rekn ut på nytt → Formater som verdi»." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Du kan formatera alle merknadane i eit dokument ved å klikka på Pil ned i ein merknad og velja «Formater alle merknadar\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Ønskjer du same utforminga på skjermvisinga som på utskrifta? Merk av for «Verktøy → Innstillingar → %PRODUCTNAME Calc → Generelt → Bruk skrivarinnstillingane til tekstformateringa»." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer hjelper deg med å laga reservekopiar. Bruk «Fil → Lagra ein kopi» for å lagra ein kopi slik at du kan arbeida vidare med originaldokumentet." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Når du har laga ein stil basert på ein annan stil, kan du skriva inn ein prosentverdi eller ein punktverdi, for eksempel «110%», «-2pt» eller «+5pt»." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Du kan kopiera ein merknad utan å mista innhaldet i målcella ved å bruka «Lim inn utval» og fjerna alle merke unntatt for «Merknadar» i dialogvindauget. Bruk operasjonen «Legg til» for ikkje å overskriva det eksisterande innhaldet." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Du kan konvertera fleire MS Office-dokument på éin gong til OpenDocument-format ved å bruka «Fil → Vegvisarar → Dokumentkonvertering»." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Når du redigerer ei celle direkte på arket, kan du høgreklikka på cella og setja inn felt: dato, arknamn, dokumenttittel osv." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Du kan flytta ein tabell i Writer med «Tabell → Vel → Tabell» og deretter «Set inn → Ramme» og flytta tabellen dit du ønskjer." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Du kan velja eit Word-dokument eller ein mal som inneheld Autotekstoppføringar du vil importera med «Verktøy → Autotekst» og trykkja på knappen «Autotekst» og deretter på «Importer»." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Ikkje set inn manuelle linjeskift for å auka avstanden mellom avsnitta. Endra i staden verdien i «Innrykk og mellomrom → Avstand → Under avsnitt» i innstillingane for stilar/avsnitt." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Du kan behalda nullane framføre eit tal ved å bruka «Innleiande nullar» i formatinnstillingane for cella, eller formatera cella som tekstcelle før talet vert skrive inn." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vil du gå tilbake til standardstilen etter å ha brukt ein listestil, gjer du dette ved å trykkja på «Slå punktliste av/på» på verktøylinja for formatering." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Du kan sletta alle utskriftsområda på éin gong ved å merkja alle arka og deretter bruka «Format → Utskriftsområde → Slett»." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Du kan setja inn eit bakgrunnsbilete i eit rekneark med «Set inn → Bilete» eller ved å dra eit bilete frå galleriet. Bruk deretter «Format → Still opp → Til bakgrunnen»." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Har du problem med å lima inn tekst frå PDF-filer eller nettsider? Prøv å lima inn som uformatert tekst (%MOD1 + %MOD2 + Shift + V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "I Calc kan du bruka TRIMMA.GJENNOMSNITT() for å finna gjenomsnittsverdien for eit datasett utan å ta med dei høgaste og lågaste verdiane." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Det fjerde valet i Calc-funksjonen FINN.RAD viser om den første datakolonnen er sortert. Skriv inn USANN eller 0 dersom kolonnen ikkje er sortert." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Innhaldet i verktøylinjene er avhengig av samanhengen. Dersom du ikkje ønskjer dette, fjern merket framføre for dei i «Vis → Verktøylinjer»." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Vil du laga eit hovuddokument frå det gjeldande Writer-dokumentet? Bruk «Fil → Send → Lag hovuddokument». Om det også vert laga underdokument, er avhengig av disposisjonen." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Har du bruk for å midtstille celler på ei trykt side i Calc, kan du gjera dette ved å bruka «Format → Side». I fana «Side» merkjer du av for «Tabelljustering» i avsnittet «Utformingsinnstillingar»." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Rammer kan lenkjast saman slik at teksten kan flyta frå den eine tilden andre på same måten som i datatrykkeprogram (desktop publishing)." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Du kan laga eit diagram ut frå ein tabell i Writer ved å velja «Set inn → Diagram»." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Du kan velja kva ikkje-skrivbare teikn som skal visast i «Verktøy → Innstillingar → %PRODUCTNAME Writer → Formateringsstøtte»." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Du kan hoppa til eit bestemt sidenummer ved å trykkja på området lengst til venstre på statuslinja, ved å bruka «Rediger → Gå til side» eller trykkja %MOD1 + G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME finst på over 150 språk." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Dersom du har behov for at eit anna program viser vindauget sitt over presentasjonen din, fjern merkinga framføre «Lysbiletframvising → Innstillingar for biletframvising → Legg alltid presentasjonen øvst»." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Du kan finna alle ord i halvfeit skrift i Writer ved å bruka «Rediger → Søk og byt ut». I «Andre innstillingar» vel du «Attributt → Skriftvekt»." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Du kan sortera avsnitt eller tabellrader alfabetisk eller numerisk med «Verktøy → Sorter»." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Trykk %MOD2 + Enter i byrjinga (slutten) av ein bolk for å setja inn eit avsnitt framføre (etter) bolken." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME har eit malsenter for å laga flotte dokument – prøv det." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Rekna ut tilbakebetalingane med Calc: for eksempel vil AVDRAG(2%/12;36;2500) visa månadleg rente når rentesatsen er 2 % p. a. for eit lån på 2500 kr. over 36 månadar." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Finn du ikkje det du ønskjer med FINN.RAD i Calc, prøv med INDEKS eller SAMANLIKNA, som kan gjere omlag alt." #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Har du bruk for å visa eit gøymd dokument? Trykk på ei celle i kolonne B, flytt musa til venstre medan du held nede museknappen. Slepp opp knappen og slå på visinga med «Format → Kolonnar → Vis»." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Du kan endra sidenummeret til ei side i Writer ved å gå til fana «Tekstflyt» i innstillingane for avsnittet og merkja av for «Skift → Set inn» og skriva inn det ønskte nummeret." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Køyr %PRODUCTNAME i alle nettlesarar ved hjelp av rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Får du merkelege feilkodar i Calc: Feil: og eit tal? Denne sida gjev forklaringa:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Ta med eit avsnitt som ikkje er ein tittel i innhaldslista ved å endra disposisjon og nummerering i paragrafinnstillingane til eit disposisjonsnivå." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "I tillegg til innhaldslister kan %PRODUCTNAME laga alfabetiske lister, lister over illustrasjonar, tabellar, bibliografiske lister og brukardefinerte lister." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Får du ikkje til å endra eller sletta ein brukardefinert cellestil? Kontroller at ingen av arka er verna." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Skal du fylla ut ein serie? Merk celleområdet og bruk «Ark → Fyll celler → Seriar» og vel mellom lineær, vekst, dato eller autofyll." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Dersom du har bruk for å finna ut kva celler som er refererte til i formlar, kan du gjere dette med «Verktøy → Sporing → Finn avhengige» (Shift + F5)," #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Du kan bruka jokerteikna .* i innskrivingsfeltet for autoretting." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Du kan kopiera linja ovanfor ved å trykkja %MOD1 + D eller bruka «Ark → Fyll celler → Fyll nedover»." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Du kan søkja i fleire rekneark ved å merkja dei før du byrjar søket." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Dra og slepp celler frå Calc over i normalvisinga for lysbilete vil laga ein tabell i disposisjonsvisinga der kvar linje representerer ei celle i disposisjonen." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "I %PRODUCTNAM kan du automatisk fjerna to eller fleire mellomrom etter kvarandre i Writer med «Verktøy → Innstillingar for autoretting». I fana «Val» merkjer du av for «Ignorer doble mellomrom»." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Ønskjer du at markøren skal gå inn i den neste cella til høgre når du skriv inn ein verdi? Bruk tabulatortasten i staden for Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Du kan flytta rullefeltet til venstre ved hjelp av «Verktøy → Innstillingar → Språkinnstillingar → Språk → Kompleks tekstutforming» og merkja av for «Ark → Høgre-til-venstre»." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Dra eit formatert objekt inn i vindauget «Stilar og formatering». Det vert då opna eit dialogvindauge der du kan skriva inn namnet på den nye stilen." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nye versjonar av %PRODUCTNAME inneheld nye funksjonar, feilretttingar og tryggleiksoppdateringar. Hald programmet oppdatert." #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Treng du å laga nye XSLT- og XML-filter?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Trykk på Shift + F1 for å sjå tilgjengelege utvida vertøytips i dialogvindauget når «Utvida tips» er slått av i «Verktøy → Innstillingar → %PRODUCTNAME → Generelt»." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Hjelp for %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Meir informasjon" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Utfør denne handlinga nå …" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Dagens tips: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -13639,7 +13633,7 @@ #: cui/uiconfig/ui/optasianpage.ui:261 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 "Når du markerer Standard, vert dei følgjande to tekstboksane utfylte med standardteikna for det valde språket: " +msgstr "Når du markerer Standard, vert dei følgjande to tekstboksane utfylte med standardteikna for det valde språket:" #. WmjE9 #: cui/uiconfig/ui/optasianpage.ui:281 @@ -17070,20 +17064,20 @@ #: cui/uiconfig/ui/pageformatpage.ui:543 msgctxt "pageformatpage|checkRegisterTrue" msgid "Use page li_ne-spacing" -msgstr "Bruk _sidelinjeavstand" +msgstr "Bruk «_Lås til registerlinjene»" #. DtZQG #. xdds #: cui/uiconfig/ui/pageformatpage.ui:547 msgctxt "pageformatpage|checkRegisterTrue" msgid "Enables page line-spacing (register-true) using the selected Reference Style" -msgstr "Slår på sidelinjeavstanden (i registeret) med den valde referansestilen" +msgstr "Slår på «Lås til registerlinjene» med den valde referansestilen" #. p2egb #: cui/uiconfig/ui/pageformatpage.ui:553 msgctxt "extended_tip|checkRegisterTrue" msgid "If enabled, then all paragraph styles with the option page line-spacing activated will be affected, assuming the line spacing of the Reference Style. This will align them to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "" +msgstr "Viss denne er slått på, vil alle avsnittsstilar som har slått på «Lås til registerlinjene» påverka og vil ta i bruk linjeavstanden til referansestilen. Dette vil justera linjene i høve til eit usynleg, loddrett rutenett, uavhengig av skriftstorleik, slik at kvar linje får same høgda." #. 46djR #: cui/uiconfig/ui/pageformatpage.ui:567 @@ -17419,20 +17413,20 @@ #: cui/uiconfig/ui/paraindentspacing.ui:486 msgctxt "paraindentspacing|checkCB_REGISTER" msgid "Activate page li_ne-spacing" -msgstr "Slå på linjeavstand for side" +msgstr "Slå på «_Lås til registerlinjene»" #. uesRM #. xdds #: cui/uiconfig/ui/paraindentspacing.ui:489 msgctxt "paraindentspacing|checkCB_REGISTER|tooltip_text" msgid "Applies page line-spacing (register-true) if set for the Page Style." -msgstr "Brukar sidelinjeavstanden (i registeret) dersom denne er sett for sidestilen." +msgstr "Brukar «Lås til registerlinjene» dersom denne er sett for sidestilen." #. MwL9j #: cui/uiconfig/ui/paraindentspacing.ui:495 msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER" msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "Viss linjeavstand for sider er slått på, og sida brukar linjeavstand for side, vert dette avsnittet justert etter ei loddrett, usynleg linje uavhengig av skriftstorleiken. Kvar linje får såleis same høgd." +msgstr "Viss «Lås til registerlinjene» er slått på, og sida brukar linjeavstanden i «Lås til registerlinjene», vert dette avsnittet justert etter ei loddrett, usynleg linje uavhengig av skriftstorleiken. Kvar linje får såleis same høgd." #. GxJB6 #: cui/uiconfig/ui/paraindentspacing.ui:513 @@ -19301,7 +19295,7 @@ #: cui/uiconfig/ui/similaritysearchdialog.ui:176 msgctxt "similaritysearchdialog|extended_tip|otherfld" msgid "Enter the number of characters in the search term that can be exchanged." -msgstr "Skriv inn kor mange teikn som kan bytast ut i søkjeuttrykket. " +msgstr "Skriv inn kor mange teikn som kan bytast ut i søkjeuttrykket." #. K5dwk #: cui/uiconfig/ui/similaritysearchdialog.ui:193 diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-11-08 19:34+0100\n" -"PO-Revision-Date: 2020-12-04 19:32+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" -"Language-Team: Norwegian Nynorsk \n" +"Language-Team: Norwegian Nynorsk \n" "Language: nn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563873716.000000\n" #. WcTKB @@ -68,7 +68,7 @@ "par_idA2B005\n" "help.text" msgid "The functionalities provided by the implemented macros are all directly inspired by Microsoft Access. The macros are callable mainly from a LibreOffice Base application, but also from any LibreOffice document (Writer, Calc, ...) where access to data stored in a database makes sense." -msgstr "Funksjonane i dei innebygde makroane er direkte inspirerte av Microsoft Access. Makroane kan kallast opp frå LibreOffice Base og frå kva LibreOffice-dokument som helst (Writer, Calc, …) der det er behov for tilgang til ein database." +msgstr "Funksjonane i dei innebygde makroane er direkte inspirerte av Microsoft Access. Makroane kan kallast opp frå LibreOffice Base og frå kva LibreOffice-dokument som helst (Writer, Calc, …) der det er behov for tilgang til ein database." #. tmNkV #: access2base.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/python.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/python.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/python.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566316183.000000\n" #. naSFZ @@ -320,7 +320,7 @@ "N0373\n" "help.text" msgid "Examples in Input/Output to Screen detail Python to Basic invocation calls. Monitoring Document Events illustrates the usage of *args Python idiom to print a variable number of parameters to Access2Base logging console dialog." -msgstr "Eksempla i Input/Output to Screen forklarar i detalj oppkall frå Python til Basic. Monitoring Document Events viser bruk av *args Python-formspråk for å skriva ut varierande mengde parametrar til dialogvindauget med logkonsollen for Access2Base." +msgstr "Eksempla i Input/Output to Screen forklarar i detalj oppkall frå Python til Basic. Monitoring Document Events viser bruk av *args Python-formspråk for å skriva ut varierande mengde parametrar til dialogvindauget med logkonsollen for Access2Base." #. dt25D #: python_2_basic.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-12-17 14:17+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557251498.000000\n" #. 6Kkin @@ -230,7 +230,7 @@ "par_id3146117\n" "help.text" msgid "Runs the macro and stops it after the next command." -msgstr "Startar makroen og stoppar den etter neste kommando." +msgstr "Startar makroen og stoppar han etter neste kommando." #. nCFSZ #: 11050000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sbasic/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-18 08:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566317546.000000\n" #. yzYVt @@ -131,7 +131,7 @@ "par_id3154731\n" "help.text" msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter." -msgstr "Ein «twip» er ei skjermuavhengig eining som vert brukt til å definera ein einskapleg posisjon og storleik for skjermelement på alle visingstypane. Ein twip er 1/1440 tomme eller 1/20 av eit punkt på skrivaren. Det er såleis 1440 twip i ein tomme, eller omkring 567 twip i éin centimeter. " +msgstr "Ein «twip» er ei skjermuavhengig eining som vert brukt til å definera ein einskapleg posisjon og storleik for skjermelement på alle visingstypane. Ein twip er 1/1440 tomme eller 1/20 av eit punkt på skrivaren. Det er såleis 1440 twip i ein tomme, eller omkring 567 twip i éin centimeter." #. Qei2N #: 00000002.xhp @@ -212,7 +212,7 @@ "par_id3150870\n" "help.text" msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting." -msgstr "Det same gjeld for dei lokale innstillingane for dato-, tid- og valuta-format. Basic-formatet vil verta tolka og vist i høve til dei lokale språkinnstillingane. " +msgstr "Det same gjeld for dei lokale innstillingane for dato-, tid- og valuta-format. Basic-formatet vil verta tolka og vist i høve til dei lokale språkinnstillingane." #. 3P4FS #: 00000003.xhp @@ -4559,7 +4559,7 @@ "par_id511599837683562\n" "help.text" msgid "View is going to be closed" -msgstr "" +msgstr "Visinga vert lukka" #. EtV6o #: 01040000.xhp @@ -4568,7 +4568,7 @@ "par_id331599838046012\n" "help.text" msgid "Document layout is getting removed." -msgstr "" +msgstr "Dokumentutforminga er fjerna." #. 7FemV #: 01040000.xhp @@ -4577,7 +4577,7 @@ "par_id951599837684882\n" "help.text" msgid "View closed" -msgstr "" +msgstr "Visinga er lukka" #. qGdPR #: 01040000.xhp @@ -4586,7 +4586,7 @@ "par_id51599837816122\n" "help.text" msgid "Document layout is cleared prior to the document closure." -msgstr "" +msgstr "Dokumentutforminga er rydda før dokumentet vert lukka." #. eovzZ #: 01040000.xhp @@ -4667,7 +4667,7 @@ "par_id161599838976700\n" "help.text" msgid "Saving of document failed" -msgstr "" +msgstr "Lagring av dokumentet mislukka" #. FnDEp #: 01040000.xhp @@ -4676,7 +4676,7 @@ "par_id391599838979652\n" "help.text" msgid "Document could not be saved." -msgstr "" +msgstr "Klarte ikkje lagra dokumentet." #. VUPBD #: 01040000.xhp @@ -4721,7 +4721,7 @@ "par_id561599839702598\n" "help.text" msgid "'Save As' has failed" -msgstr "" +msgstr "«Lagra som» mislukka" #. FGnZt #: 01040000.xhp @@ -4730,7 +4730,7 @@ "par_id951599840240048\n" "help.text" msgid "Document could not be saved." -msgstr "" +msgstr "Klarte ikkje lagra dokumentet." #. 9PEDi #: 01040000.xhp @@ -4739,7 +4739,7 @@ "par_id851599839190548\n" "help.text" msgid "-no UI-" -msgstr "" +msgstr "-no UI-" #. FsrLe #: 01040000.xhp @@ -4748,7 +4748,7 @@ "par_id961599839198859\n" "help.text" msgid "When the document disk location has changed, for example after a File - Save As... action." -msgstr "" +msgstr "Når dokumentet si diskplassering er endra, for eksempel ved Fil → Lagra som." #. n5TCf #: 01040000.xhp @@ -4757,7 +4757,7 @@ "par_id501600150804809\n" "help.text" msgid "Storing or exporting copy of document" -msgstr "" +msgstr "Lagra eller eksportera kopi av dokumentet" #. wP2PH #: 01040000.xhp @@ -4766,7 +4766,7 @@ "par_id471610080505705\n" "help.text" msgid "...before a document is saved with File - Save a Copy, File - Export, File - Export as PDF or the Save icons." -msgstr "" +msgstr "… før eit dokument vert lagra med ikona Fil → Lagra ein kopi,Fil → Eksporter,Fil → Eksporter som PDF eller Lagra." #. ECboz #: 01040000.xhp @@ -4775,7 +4775,7 @@ "par_id502600180504809\n" "help.text" msgid "Document copy has been created" -msgstr "" +msgstr "Det er laga ein kopi av dokumentet" #. gF2u2 #: 01040000.xhp @@ -4784,7 +4784,7 @@ "par_id471601180505705\n" "help.text" msgid "...after a document is saved with File - Save a Copy, File - Export, File - Export as PDF or the Save icons." -msgstr "" +msgstr "… etter at eit dokument er lagra via ikona Fil → Lagra ein kopi, Fil → Eksporter, Eksporter som PDF eller Lagra." #. uAeBw #: 01040000.xhp @@ -4793,7 +4793,7 @@ "par_id501006180504809\n" "help.text" msgid "Creating of document copy failed" -msgstr "" +msgstr "Fekk ikkje til å laga dokumentkopi" #. dFCuE #: 01040000.xhp @@ -4802,7 +4802,7 @@ "par_id471600081505705\n" "help.text" msgid "Document could not be copied or exported." -msgstr "" +msgstr "Klarte ikkje å kopiera eller eksportera dokumentet." #. qDSzB #: 01040000.xhp @@ -4811,7 +4811,7 @@ "par_id501600180504809\n" "help.text" msgid "Print document" -msgstr "" +msgstr "Skriv ut dokumentet" #. kDap2 #: 01040000.xhp @@ -4820,7 +4820,7 @@ "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 "" +msgstr "… etter at dialogvindauget for utskriving er lukka, men før utskrivinga byrjar. Denne hendinga skjer ved kvar utskriven kopi." #. KNASw #: 01040000.xhp @@ -4829,7 +4829,7 @@ "par_id371600180345993\n" "help.text" msgid "-no UI-" -msgstr "" +msgstr "-no UI-" #. fNkWD #: 01040000.xhp @@ -4838,7 +4838,7 @@ "par_id851600180346872\n" "help.text" msgid "...after document security settings have changed." -msgstr "" +msgstr "… etter at innstillingane for trygging av dokumentet er endra." #. 5Cfig #: 01040000.xhp @@ -4847,7 +4847,7 @@ "par_id921600180238854\n" "help.text" msgid "'Modified' status was changed" -msgstr "" +msgstr "Endring i statusen «Endra»" #. vVXPg #: 01040000.xhp @@ -4856,7 +4856,7 @@ "par_id321600180239944\n" "help.text" msgid "Modified state of a document has changed." -msgstr "" +msgstr "Den modifiserte statusen for dokumentet er endra." #. po5DD #: 01040000.xhp @@ -4865,7 +4865,7 @@ "par_id741600180121445\n" "help.text" msgid "Document title changed" -msgstr "" +msgstr "Dokumenttittelen er endra" #. KjqSB #: 01040000.xhp @@ -4874,7 +4874,7 @@ "par_id801600180122852\n" "help.text" msgid "When the document title gets updated." -msgstr "" +msgstr "Når dokumenttittelen vert oppdatert." #. AkeoE #: 01040000.xhp @@ -4883,7 +4883,7 @@ "par_id641600180121445\n" "help.text" msgid "Loaded a sub component" -msgstr "" +msgstr "Lasta inn ein delkomponent" #. Vq5NQ #: 01040000.xhp @@ -4892,7 +4892,7 @@ "par_id701600180122852\n" "help.text" msgid "...after a database form has been opened." -msgstr "" +msgstr "… etter at eit databaseskjema er opna." #. 7zuFb #: 01040000.xhp @@ -4901,7 +4901,7 @@ "par_id641700180131445\n" "help.text" msgid "Closed a sub component" -msgstr "" +msgstr "Lukka ein delkomponent" #. Gzmes #: 01040000.xhp @@ -4910,7 +4910,7 @@ "par_id701600290122852\n" "help.text" msgid "...after a database form has been closed." -msgstr "" +msgstr "… etter at eit databaseskjema er lukka." #. KHhEE #: 01040000.xhp @@ -4919,7 +4919,7 @@ "par_id421600097736759\n" "help.text" msgid "Printing of form letters started" -msgstr "" +msgstr "Utskrivinga av skjemabrevet har byrja" #. AAYeB #: 01040000.xhp @@ -8537,7 +8537,7 @@ "tit\n" "help.text" msgid "Print# Statement" -msgstr "" +msgstr "Print#-uttrykk" #. addUg #: 03010103.xhp @@ -8555,7 +8555,7 @@ "hd_id3147230\n" "help.text" msgid "Print# Statement" -msgstr "" +msgstr "Print#-uttrykket" #. ZDGAu #: 03010103.xhp @@ -8564,7 +8564,7 @@ "par_id3156281\n" "help.text" msgid "Outputs the specified strings or numeric expressions to the screen or to a sequential file." -msgstr "" +msgstr "Skriv ut dei valde strengane eller numeriske uttrykka til skjermen eller til ei sekvensiell fil." #. xCJRj #: 03010103.xhp @@ -8573,7 +8573,7 @@ "par_id461596463969009\n" "help.text" msgid "Use Put# statement to write data to a binary or a random file. Use Write# statement to write data to a sequential text file with delimiting characters." -msgstr "" +msgstr "Bruk uttrykket Put# for å skriva data til ei binær eller tilfeldig fil. Bruk uttrykket Write# for å skriva data til ei sekvensiell tekstfil med avgrensingsteikn." #. AhB82 #: 03010103.xhp @@ -9815,7 +9815,7 @@ "hd_id3157896\n" "help.text" msgid "Close Statement" -msgstr "" +msgstr "Close-uttrykket" #. UxFz9 #: 03020101.xhp @@ -9833,7 +9833,7 @@ "par_id971587473488701\n" "help.text" msgid "Close Statement diagram" -msgstr "" +msgstr "Diagram over uttrykket Close" #. FEDAa #: 03020101.xhp @@ -9842,7 +9842,7 @@ "par_id3147265\n" "help.text" msgid "Close [[#]fileNum [, [#]fileNum2 [,...]]]" -msgstr "" +msgstr "Close [[#]fileNum [, [#]fileNum2 [,...]]]" #. gdqMu #: 03020101.xhp @@ -9851,7 +9851,7 @@ "par_id3150791\n" "help.text" msgid "fileNum: Any integer expression that specifies the number of the data channel that was opened with the Open statement." -msgstr "" +msgstr "fileNum: Eit heiltalsuttrykk som spesifiserer nummeret på datakanalen som vart opne med Opna." #. uP5nk #: 03020102.xhp @@ -9986,7 +9986,7 @@ "hd_id3150791\n" "help.text" msgid "Open Statement" -msgstr "" +msgstr "Open-uttrykket" #. Etqck #: 03020103.xhp @@ -10004,7 +10004,7 @@ "par_id971587473488701\n" "help.text" msgid "Open Statement diagram" -msgstr "" +msgstr "Diagram over uttrykket Open" #. CRDEh #: 03020103.xhp @@ -10013,7 +10013,7 @@ "par_id971587473488702\n" "help.text" msgid "access fragment diagram" -msgstr "" +msgstr "Diagram over access fragment" #. N3tit #: 03020103.xhp @@ -10022,7 +10022,7 @@ "par_id971587473488703\n" "help.text" msgid "locking fragment diagram" -msgstr "" +msgstr "Diagram over uttrykket locking fragment" #. dbM7e #: 03020103.xhp @@ -10031,7 +10031,7 @@ "par_id3155132\n" "help.text" msgid "pathname: 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 "" +msgstr "pathname: Sti til og namn på fila du vil opna.Viss du prøver å lesa ei fil som ikkje finst (Access = Read), får du ei feilmelding. Prøver du å skriva til ei fil som ikkje finst, vert denne fila laga som ny fil." #. XqfP8 #: 03020103.xhp @@ -10040,7 +10040,7 @@ "par_id3149262\n" "help.text" msgid "mode: 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 "" +msgstr "Mode: Nøkkelord som bestemmer filmodus. Gyldige verdiar: Append (legg til i sekvensiell fil), Binary (data er tilgjengelege som byte med Get og Put), Input (opnar datakanal for lesing), Output (opnar datakanal for skriving) og Random (redigerar relative filer)." #. 3983q #: 03020103.xhp @@ -10049,7 +10049,7 @@ "par_id3154014\n" "help.text" msgid "io: Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)." -msgstr "" +msgstr "io: nøkkelord som definerer tilgangstypen. Gyldige verdiar er: Read only (kan berre lesast frå, skrivesperra), Write (kan berre skrivast til, lesesperra), Read Write (begge)." #. kzzkr #: 03020103.xhp @@ -10058,7 +10058,7 @@ "par_id3150011\n" "help.text" msgid "locking: 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 "" +msgstr "locking: nøkkelord som definerer tryggingsstatusen til fila etter at ho er opna. Gyldige verdiar er: Shared (fila kan opnast av andre program), Lock Read (fila er verna mot lesing), Lock Write (fila er verna mot skriving), Lock Read Write (nektar filtilgang)." #. D2D4q #: 03020103.xhp @@ -10067,7 +10067,7 @@ "par_id3153190\n" "help.text" msgid "filenum: 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 "" +msgstr "filenum: Kva heiltal som helst frå 0 til 511 for å indikera nummeret på ein fri datakanal. Du kan deretter overføra kommandoar gjennom datakanalen for å få tilgang til fila. Filnummeret må bestemmast av funksjonen FreeFile like før Open-kommandoen." #. LgCLi #: 03020103.xhp @@ -10076,7 +10076,7 @@ "par_id3151115\n" "help.text" msgid "recLen: For Random access files, set the length of the records." -msgstr "" +msgstr "recLen: Set lengda på postane i Random access-filer." #. mvgxB #: 03020103.xhp @@ -10130,7 +10130,7 @@ "hd_id3154141\n" "help.text" msgid "Reset Statement" -msgstr "" +msgstr "Reset-uttrykket" #. iLCKn #: 03020104.xhp @@ -10148,7 +10148,7 @@ "par_id971587473488701\n" "help.text" msgid "Reset Statement diagram" -msgstr "" +msgstr "Diagram over Reset-uttrykket" #. BXAjN #: 03020104.xhp @@ -10211,7 +10211,7 @@ "hd_id3154927\n" "help.text" msgid "Get Statement" -msgstr "" +msgstr "Get-uttrykket" #. cpLtG #: 03020201.xhp @@ -10238,7 +10238,7 @@ "par_id971587473488701\n" "help.text" msgid "Get Statement diagram" -msgstr "" +msgstr "Diagram over Get-uttrykket" #. xBhKA #: 03020201.xhp @@ -10247,7 +10247,7 @@ "par_id3150792\n" "help.text" msgid "Get [#]fileNum, [recordNum|filePos], variable" -msgstr "" +msgstr "Get [#]fileNum, [recordNum|filePos], variabel" #. UM9CG #: 03020201.xhp @@ -10256,7 +10256,7 @@ "par_id3150448\n" "help.text" msgid "fileNum: Any integer expression that determines the file number." -msgstr "" +msgstr "fileNum: Kva heiltal som helst som bestemmer filnummeret." #. khxG7 #: 03020201.xhp @@ -10265,7 +10265,7 @@ "par_id3154684\n" "help.text" msgid "recordNum: For files opened in Random mode, recordNum is the number of the record that you want to read." -msgstr "" +msgstr "recordNum: For filer opna i Random-modus er recordNum nummeret på den posten du ønskjer å lesa." #. 3w9MJ #: 03020201.xhp @@ -10274,7 +10274,7 @@ "par_id3153768\n" "help.text" msgid "For files opened in Binary mode, filePos is the byte position in the file where the reading starts." -msgstr "" +msgstr "For filer opna i Binary-modus er filePos byte-posisjonen i fila der lesinga byrjar." #. NvcjF #: 03020201.xhp @@ -10283,7 +10283,7 @@ "par_id3147319\n" "help.text" msgid "If recordNum and filePos are omitted, the current position or the current data record of the file is used." -msgstr "" +msgstr "Viss recordNum og filePos er sløyfa, vert den gjeldande posisjonen eller den gjeldande dataposten i fila brukt." #. GZcaW #: 03020201.xhp @@ -10292,7 +10292,7 @@ "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 "" +msgstr "variable: Namnet på variabelen som skal lesast. Du kan bruka kva variabeltype som helst, bortsett frå objektvariablar." #. PQRf6 #: 03020201.xhp @@ -10400,7 +10400,7 @@ "par_id971587473488701\n" "help.text" msgid "Input Statement diagram" -msgstr "" +msgstr "Diagram over Input-uttrykket" #. NqnvX #: 03020202.xhp @@ -10409,7 +10409,7 @@ "par_id3150440\n" "help.text" msgid "Input #fileNum {,|;} var1 [, var2 [, ...]]" -msgstr "" +msgstr "Input #fileNum {,|;} var1 [, var2 [, ...]]" #. EUrQA #: 03020202.xhp @@ -10418,7 +10418,7 @@ "par_id3145749\n" "help.text" msgid "fileNum: 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 "" +msgstr "fileNum: Nummeret på fila som inneheld dataa du ønskjer å lesa. Fila må vera opna med uttrykket «Open» med nøkkelordet «INPUT»." #. kJyKM #: 03020202.xhp @@ -10490,7 +10490,7 @@ "tit\n" "help.text" msgid "Line Input# Statement" -msgstr "" +msgstr "Line Input#-uttrykket" #. CCEuD #: 03020203.xhp @@ -10508,7 +10508,7 @@ "hd_id3153361\n" "help.text" msgid "Line Input# Statement" -msgstr "" +msgstr "Line Input#-uttrykket" #. 5FZ8D #: 03020203.xhp @@ -10517,7 +10517,7 @@ "par_id3156280\n" "help.text" msgid "Reads a line from a sequential file into a variable." -msgstr "" +msgstr "Les ei linje frå ei sekvensiell fil til ein variabel." #. enCkE #: 03020203.xhp @@ -10526,7 +10526,7 @@ "par_id971587473488701\n" "help.text" msgid "Line Input Statement diagram" -msgstr "" +msgstr "Diagram over uttrykket Line Input" #. wrpF7 #: 03020203.xhp @@ -10535,7 +10535,7 @@ "par_id3161832\n" "help.text" msgid "fileNum: 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 "" +msgstr "FileNum: Nummeret på den fila som inneheld dataa som skal lesast. Fila må vera opna med uttrykket «Open» ved å bruka nøkkelordet INPUT." #. qAR2M #: 03020203.xhp @@ -10544,7 +10544,7 @@ "par_id3151119\n" "help.text" msgid "variable: The name of the variable that stores the result." -msgstr "" +msgstr "variable: Namnet på variabelen som resultatet er lagra i." #. foxtA #: 03020203.xhp @@ -10562,7 +10562,7 @@ "tit\n" "help.text" msgid "Put# Statement" -msgstr "" +msgstr "Put#-uttrykket" #. psWQE #: 03020204.xhp @@ -10580,7 +10580,7 @@ "hd_id3150360\n" "help.text" msgid "Put# Statement" -msgstr "" +msgstr "Put#-uttrykket" #. e8rUp #: 03020204.xhp @@ -10598,7 +10598,7 @@ "par_id461596463969009\n" "help.text" msgid "Use Print# statement to print data to a sequential text file. Use Write# statement to write data to a sequential text file with delimiting characters." -msgstr "" +msgstr "Bruk uttrykket Print# for å skriva data til ei sekvensiell datafil. Bruk uttrykket Write# for å skriva data til ei sekvensiell datafil med avgrensa teikn." #. 9HgEG #: 03020204.xhp @@ -10607,7 +10607,7 @@ "par_id971587473488701\n" "help.text" msgid "Put Statement diagram" -msgstr "" +msgstr "Diagram over uttrykket Put" #. RBpeh #: 03020204.xhp @@ -10616,7 +10616,7 @@ "par_id3155132\n" "help.text" msgid "Put [#]fileNum, [recordNum|filePos], variable" -msgstr "" +msgstr "Put [#]fileNum, [recordNum|filePos], variable" #. bSFd2 #: 03020204.xhp @@ -10625,7 +10625,7 @@ "par_id3146120\n" "help.text" msgid "fileNum: Any integer expression that defines the file that you want to write to." -msgstr "" +msgstr "fileNum: Eit heiltalsuttrykk som definerer fila du vil skriva til." #. AiZUD #: 03020204.xhp @@ -10634,7 +10634,7 @@ "par_id3155411\n" "help.text" msgid "recordNum, filePos: For relative files (random access files), the number of the record that you want to write." -msgstr "" +msgstr "recordNum, filePos: For relative filer (dvs. filer med tilfeldig tilgang) er dette nummeret på den dataposten du vil skriva." #. dUyzK #: 03020204.xhp @@ -10652,7 +10652,7 @@ "par_id3153729\n" "help.text" msgid "variable: Name of the variable that you want to write to the file." -msgstr "" +msgstr "variable: Namnet på variabelen som du vil skriva til fila." #. yyf95 #: 03020204.xhp @@ -13127,7 +13127,7 @@ "par_id971587473488701\n" "help.text" msgid "RmDir Statement diagram" -msgstr "" +msgstr "Diagram over RmDir-uttrykket" #. uE7FC #: 03020413.xhp @@ -16889,7 +16889,7 @@ "tit\n" "help.text" msgid "Date Function" -msgstr "" +msgstr "Dato-funksjonen" #. HEEFx #: 03030301.xhp @@ -16898,7 +16898,7 @@ "bm_id3156027\n" "help.text" msgid "Date function" -msgstr "" +msgstr "Dato-funksjonen" #. u9AkG #: 03030301.xhp @@ -16907,7 +16907,7 @@ "hd_id3156027\n" "help.text" msgid "Date Function" -msgstr "" +msgstr "Dato-funksjonen" #. AaA3G #: 03030301.xhp @@ -16916,7 +16916,7 @@ "par_id3147291\n" "help.text" msgid "Returns the current system date as a string, or date variant." -msgstr "" +msgstr "Returnerer den gjeldande systemdatoen som ein streng eller ein datovariant." #. BUc3C #: 03030301.xhp @@ -16934,7 +16934,7 @@ "tit\n" "help.text" msgid "Time Function" -msgstr "" +msgstr "Klokkeslett-funksjonen" #. peCLU #: 03030302.xhp @@ -16943,7 +16943,7 @@ "bm_id3145090\n" "help.text" msgid "Time function" -msgstr "" +msgstr "Klokkeslett-funksjonen" #. tBoRS #: 03030302.xhp @@ -16952,7 +16952,7 @@ "hd_id3145090\n" "help.text" msgid "Time Function" -msgstr "" +msgstr "Klokkeslett-funksjonen" #. FHKSk #: 03030302.xhp @@ -17897,7 +17897,7 @@ "par_id3145173\n" "help.text" msgid "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}" -msgstr "" +msgstr "On [Local] Error {GoTo Labelname | GoTo 0 | Resume Next}" #. EBAKU #: 03050500.xhp @@ -22685,7 +22685,7 @@ "par_id311592320434736\n" "help.text" msgid "Do statement" -msgstr "" +msgstr "Do-uttrykket" #. Ebajb #: 03090201.xhp @@ -22694,7 +22694,7 @@ "bas_id171592386317704\n" "help.text" msgid "' Do While: The statement block is repeated as long as the condition is true" -msgstr "" +msgstr "' Do While: Blokka med uttrykket vert repetert så lenge vilkåret er SANN" #. VDEWA #: 03090201.xhp @@ -22703,7 +22703,7 @@ "bas_id11592386319239\n" "help.text" msgid "' Do Until: The statement block is repeated as long as the condition is false" -msgstr "" +msgstr "' Do Until: Blokka med uttrykket vert repetert så lenge vilkåret er USANN" #. Dsqzg #: 03090201.xhp @@ -22712,7 +22712,7 @@ "par_id591592320435808\n" "help.text" msgid "Do...Loop statement" -msgstr "" +msgstr "Do … Loop-uttrykket" #. VVtxi #: 03090201.xhp @@ -22721,7 +22721,7 @@ "bas_id911592386676044\n" "help.text" msgid "' Loop While: The statement block repeats as long as the condition is true" -msgstr "" +msgstr "' Loop While: Blokka med uttrykket vert repetert så lenge vilkåret er SANN" #. 92FMy #: 03090201.xhp @@ -22730,7 +22730,7 @@ "bas_id971592386677004\n" "help.text" msgid "' Loop Until: The statement block repeats until the condition is true" -msgstr "" +msgstr "' Loop Until: Blokka med uttrykket vert repetert til vilkåret er SANN" #. YFnQL #: 03090201.xhp @@ -22739,7 +22739,7 @@ "par_id3150791\n" "help.text" msgid "The Do...Loop 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 Do or the Loop statement. The above examples are valid combinations." -msgstr "" +msgstr "Uttrykket Do … Loop utfører ei løkke (loop) så lenge eller til eit bestemt vilkår er SANN. Vilkåret for å avslutta sløyfa må skrivast inn anten etter uttrykket Do eller Loop. Eksempelet ovanfor viser gyldige kombinasjonar." #. 8QxEA #: 03090201.xhp @@ -22748,7 +22748,7 @@ "par_id3156344\n" "help.text" msgid "condition: A comparison, numeric or Basic expression, that evaluates to either True or False." -msgstr "" +msgstr "condition: Ei samanlikning, eit nummerisk uttrykk eller eit BASIC-uttrykk som anten er Sann eller Usann." #. C6QdX #: 03090201.xhp @@ -22757,7 +22757,7 @@ "par_id3149669\n" "help.text" msgid "statements: Statements that you want to repeat while or until a condition is True." -msgstr "" +msgstr "statements: Uttrykk som du vil taka oppatt medan eller til eit vilkår er Sann." #. iXQfC #: 03090201.xhp @@ -22775,7 +22775,7 @@ "par_id161588865796615\n" "help.text" msgid "For, Select Case or While statements" -msgstr "" +msgstr "For, Select Case or While-uttrykk." #. NEcfM #: 03090201.xhp @@ -22784,7 +22784,7 @@ "par_id281588865818334\n" "help.text" msgid "Iif or Switch functions" -msgstr "" +msgstr "Iif eller Switch-funksjonar" #. QECNJ #: 03090202.xhp @@ -22802,7 +22802,7 @@ "bm_id3149205\n" "help.text" msgid "For statementFor Each statementIn keywordNext keywordStep keywordTo keyword" -msgstr "" +msgstr "For-uttrykketFor Each-uttrykketIn-nøkkelordetNext-nøkkelordetdStep-nøkkelordetdTo-nøkkelordet" #. LVP76 #: 03090202.xhp @@ -23189,7 +23189,7 @@ "par_id281588865818334\n" "help.text" msgid "Exit statement" -msgstr "" +msgstr "Exit-uttrykket" #. kSjtx #: 03090300.xhp @@ -23423,7 +23423,7 @@ "par_id471588670859073\n" "help.text" msgid "label: A line identifier indicating where to continue execution. The scope of a label is that of the routine it belongs to." -msgstr "" +msgstr "label: Ein linjeidentifikator som viser kvar køyringa skal halda fram. Omfanget av «label» er det same som den rutinen han høyrer til." #. ocGjF #: 03090302.xhp @@ -23432,7 +23432,7 @@ "par_id3152596\n" "help.text" msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and end it with a colon (\":\")." -msgstr "" +msgstr "Bruk uttrykket GoTo for å fortelja at $[officename] Basic skal halda fram køyringa frå ein annan stad i prosedyren. Staden må vera merkt med ein etikett (label). Du plasserer ein etikett ved å skriva eit namn for han. Namnet må avsluttast med kolon («:»)." #. 8o2aP #: 03090302.xhp @@ -24350,7 +24350,7 @@ "par_id661588586825434\n" "help.text" msgid "Sub, Function or Property 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 "" +msgstr "Uttrykka Sub, Function og Property er like metodar. Det er ingen skilnad mellom dei. Dei tek i mot parameterar med referanse som kan endra verdi når dei kjem i retur. %PRODUCTNAME Basic-tolkaren godtek den brukte argumentsyntaksen. Alle syntaksane kan brukast om kvarandre." #. zFnQ7 #: 03090406.xhp @@ -24575,7 +24575,7 @@ "par_id971587473488701\n" "help.text" msgid "Stop Statement diagram" -msgstr "" +msgstr "Diagram for Stop-uttrykket" #. BsgsP #: 03090409.xhp @@ -24602,7 +24602,7 @@ "hd_id3147226\n" "help.text" msgid "Sub Statement" -msgstr "" +msgstr "Sub-uttrykket" #. YELg8 #: 03090409.xhp @@ -24818,7 +24818,7 @@ "par_id3159158\n" "help.text" msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached." -msgstr "" +msgstr "Set eit objekt som standardobjekt. Dersom det ikkje er definert eit anna objektnamn, vil alle eigenskapane og metodane referera til standardobjektet heilt til uttrykket End With er nådd." #. WZgyY #: 03090411.xhp @@ -24827,7 +24827,7 @@ "par_id491585753339474\n" "help.text" msgid "With statement diagram" -msgstr "" +msgstr "Diagram for With-uttrykket" #. gnpSD #: 03090411.xhp @@ -24836,7 +24836,7 @@ "par_id3147560\n" "help.text" msgid "Use With and End With if you have several properties or methods for a single object or an extended data type definition." -msgstr "" +msgstr "Bruk With og End With viss du har fleire eigenskapar eller metodar for eit enkelt objekt eller ein utvida datatype-definisjon." #. PzPzj #: 03090411.xhp @@ -24845,7 +24845,7 @@ "par_id311606839557245\n" "help.text" msgid "Nesting With statements helps writing and reading Basic routines." -msgstr "" +msgstr "Nøsting av With-uttrykk gjer det enklare å skriva og lesa BASIC-rutinar." #. C8YyY #: 03090411.xhp @@ -24854,7 +24854,7 @@ "par_id921606840180540\n" "help.text" msgid "Type Statement" -msgstr "" +msgstr "Type-uttrykket" #. zLuzY #: 03090412.xhp @@ -26087,7 +26087,7 @@ "par_id3154143\n" "help.text" msgid "Defines one or more identifiers as constants." -msgstr "" +msgstr "Definerer ein eller fleire indentifikatorar som konstantar." #. 4sYHn #: 03100700.xhp @@ -26096,7 +26096,7 @@ "par_id3147264\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." -msgstr "" +msgstr "Ein konstant er ein variabel som gjer programmet lettare å lesa. Konstantane vert ikkje definerte som spesielle variabeltypar, men vert brukte meir som plasshaldarar i koden. Du kan definera ein konstant berre éin gong, og verdien kan ikkje seinare endrast." #. ucqd6 #: 03100700.xhp @@ -26105,7 +26105,7 @@ "par_id831588865616326\n" "help.text" msgid "Const syntax" -msgstr "" +msgstr "Const-syntaks" #. QZJkC #: 03100700.xhp @@ -26114,7 +26114,7 @@ "par_id3150984\n" "help.text" msgid "[Global|Private|Public] Const name = expression[, ...]" -msgstr "" +msgstr "[Global|Private|Public] Const name = expression[, …]" #. 8cNC9 #: 03100700.xhp @@ -26123,7 +26123,7 @@ "par_id3153897\n" "help.text" msgid "name: Any identifier that follows the standard variable naming conventions." -msgstr "" +msgstr "name: Kva identifikator som helst som følgjer reglane for standard namngjeving." #. MYNoo #: 03100700.xhp @@ -26132,7 +26132,7 @@ "par_id791593689338208\n" "help.text" msgid "expression: Any literal expression." -msgstr "" +msgstr "expression: Kva bokstavleg uttrykk som helst." #. C8b4Z #: 03100700.xhp @@ -26141,7 +26141,7 @@ "par_id3150400\n" "help.text" 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 "" +msgstr "Datatypen må sløyfast. Når eit bibliotek vert lese inn i minnet, konverterer %PRODUCTNAME Basic programkoden internt slik at kvar gong ein konstant vert brukt, vert han bytt ut med det definerte uttrykket." #. fYdeb #: 03100700.xhp @@ -26150,7 +26150,7 @@ "hd_id51593690561479\n" "help.text" msgid "Scope" -msgstr "" +msgstr "Virkefelt" #. QwPhy #: 03100700.xhp @@ -26159,7 +26159,7 @@ "par_id431593690612961\n" "help.text" 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 "" +msgstr "Som standard vert konstantar definerte som private i modular og rutinar. Konstantar kan gjerast offentlege eller globale for å kunne brukast frå alle modulane frå alle BASIC-bibliotek." #. EAL5T #: 03100700.xhp @@ -26168,7 +26168,7 @@ "par_id241593693307830\n" "help.text" msgid "Global, Private and Public specifiers can only be used for module constants." -msgstr "" +msgstr "Spesifikatorane Global, Private og Public kan berre brukast som modulkonstantar." #. 7HRGK #: 03100700.xhp @@ -26177,7 +26177,7 @@ "bas_id911593692598060\n" "help.text" msgid "Const EARTH = \"♁\" ' module scope" -msgstr "" +msgstr "Const EARTH = \"♁\" ' modul-verkeområde" #. pCVMW #: 03100700.xhp @@ -26186,7 +26186,7 @@ "bas_id441593692601125\n" "help.text" msgid "Private Const MOON = \"☾\" ' module scope" -msgstr "" +msgstr "Private Const MOON = \"☾\" ' modul-verkeområde" #. xjhjq #: 03100700.xhp @@ -26195,7 +26195,7 @@ "bas_id161593692601597\n" "help.text" msgid "Public Const VENUS=\"♀\", MARS=\"♂\" ' general scope" -msgstr "" +msgstr "Public Const VENUS=\"♀\", MARS=\"♂\" ' generelt verkeområde" #. 6LzLX #: 03100700.xhp @@ -26204,7 +26204,7 @@ "bas_id581593692602046\n" "help.text" msgid "Global Const SUN = \"☉\", STAR = \"☆\" ' general scope" -msgstr "" +msgstr "Global Const SUN = \"☉\", STAR = \"☆\" ' generelt verkeområde" #. aFEH7 #: 03100700.xhp @@ -26213,7 +26213,7 @@ "par_idm1341160752\n" "help.text" msgid "Const SUN = 3 * 1.456 / 56 ' SUN is local" -msgstr "" +msgstr "Const SUN = 3 * 1.456 / 56 ' SUN er lokal" #. 5ZVn4 #: 03100700.xhp @@ -26222,7 +26222,7 @@ "par_idm1341159520\n" "help.text" msgid "MsgBox SUN,, MOON ' SUN global constant is unchanged" -msgstr "" +msgstr "MsgBox SUN,, MOON ' den globale konstanten SUN er uendra" #. e9BxY #: 03100700.xhp @@ -26231,7 +26231,7 @@ "par_id111593694878677\n" "help.text" msgid "Enum statement" -msgstr "" +msgstr "Enum-uttrykket" #. ZYFUV #: 03100700.xhp @@ -26240,7 +26240,7 @@ "par_id111953694878677\n" "help.text" msgid "Type statement" -msgstr "" +msgstr "Type-uttrykket" #. FmimE #: 03100900.xhp @@ -26591,7 +26591,7 @@ "par_id971587473488701\n" "help.text" msgid "DefType statements diagram" -msgstr "" +msgstr "Diagram for DefType-uttrykket" #. NFRzL #: 03101100.xhp @@ -26600,7 +26600,7 @@ "par_id3147336\n" "help.text" msgid "char: Letter prefix that specifies default data type for variables." -msgstr "" +msgstr "char: Bokstavprefiks som spesifiserer standard datatype for variablar." #. CBqSz #: 03101100.xhp @@ -26609,7 +26609,7 @@ "par_id3147226\n" "help.text" msgid "char-char: Letter range prefixes that specify default data type for variables." -msgstr "" +msgstr "char-char: Prefiks for eit bokstavområde som spesifiserer standard datatype for variablar." #. 9vqSg #: 03101100.xhp @@ -26618,7 +26618,7 @@ "par_id3156152\n" "help.text" msgid "' Prefix definitions for variable types:" -msgstr "" +msgstr "' Prefiks-definisjonar for variabeltypar:" #. QC5gr #: 03101100.xhp @@ -26627,7 +26627,7 @@ "par_id3152481\n" "help.text" msgid "Print TypeName(Boole), VarType(Babbage), bitcoin ' Displays: Boolean 11 False" -msgstr "" +msgstr "Print TypeName(Boole), VarType(Babbage), bitcoin ' Viser: Boolsk 11 Usann" #. i5aFp #: 03101100.xhp @@ -26636,7 +26636,7 @@ "par_id3151381\n" "help.text" msgid "bOK=True ' bOK is an implicit boolean variable" -msgstr "" +msgstr "bOK = True ' bOK er ein implisitt boolsk variabel" #. zabpF #: 03101110.xhp @@ -26681,7 +26681,7 @@ "par_idN105D8\n" "help.text" msgid "Print liquid, Typename(coinbit), VarType(money) ' Result is: 0.0000 Currency 6" -msgstr "" +msgstr "Print liquid, Typename(coinbit), VarType(money) ' Resultatet er: 0,0000 Valuta 6" #. uA7E4 #: 03101110.xhp @@ -26780,7 +26780,7 @@ "par_idN105D3\n" "help.text" msgid "wSng=Single ' wSng is an implicit single variable" -msgstr "" +msgstr "wSng=Single ' wSng er ein implisitt enkeltvariabel" #. B2kjC #: 03101130.xhp @@ -26789,7 +26789,7 @@ "par_idN105D4\n" "help.text" msgid "Print afloat, Typename(Word), VarType(anyNum) ' Result is : 0 single 4" -msgstr "" +msgstr "Print afloat, Typename(Word), VarType(anyNum) ' Resultatet er : 0 single 4" #. zfvWo #: 03101140.xhp @@ -26843,7 +26843,7 @@ "par_idN105D4\n" "help.text" msgid "Print VarType(slice), strng, TypeName(sheet) ' Result is: 8 \"\" String" -msgstr "" +msgstr "Print VarType(slice), strng, TypeName(sheet) ' Resultatet er: 8 \"\" streng" #. E5nXi #: 03101300.xhp @@ -26897,7 +26897,7 @@ "par_id3153562\n" "help.text" msgid "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Displays: 7 00:00:00 Date True" -msgstr "" +msgstr "Print VarType(tea), train, TypeName(timedate), IsDate(tick) ' Viser: 7 00:00:00 Dato Sann" #. c8vDs #: 03101400.xhp @@ -26942,7 +26942,7 @@ "par_id3154244\n" "help.text" msgid "fValue=1.23e43 ' fValue is an implicit double variable type" -msgstr "" +msgstr "fValue = 1.23e43 ' fValue er ein implisitt variabel av typen double" #. DcRHT #: 03101400.xhp @@ -26951,7 +26951,7 @@ "par_id3153144\n" "help.text" msgid "Print Typename(float), VarType(fire), factory ' Result is: Double 5 0" -msgstr "" +msgstr "Print Typename(float), VarType(fire), factory ' Resultatet er: Double 5 0" #. mcUhD #: 03101500.xhp @@ -26996,7 +26996,7 @@ "par_id3164728\n" "help.text" msgid "iCount=200 ' iCount is an implicit integer variable" -msgstr "" +msgstr "iCount=200 ' iCount er ein implisitt heiltalsvariabel" #. kXjfq #: 03101500.xhp @@ -27005,7 +27005,7 @@ "par_id3153728\n" "help.text" msgid "Print kilos, Typename(number), VarType(Java) ' Result is: 0 Integer 2" -msgstr "" +msgstr "Print kilos, Typename(number), VarType(Java) ' Resultatet er: 0 Heiltal 2" #. kK2Aw #: 03101600.xhp @@ -27050,7 +27050,7 @@ "par_id3145273\n" "help.text" msgid "xCount=123456789 ' xCount is an implicit long integer variable" -msgstr "" +msgstr "xCount=123456789 ' xCount er ein implisitt lang heiltalsvariabel" #. Pg49N #: 03101600.xhp @@ -27059,7 +27059,7 @@ "par_id3255273\n" "help.text" msgid "Print VarType(Yes), zinc, Typename(Max) ' Result is: 3 0 Long" -msgstr "" +msgstr "Print VarType(Yes), zinc, Typename(Max) ' Resultatet er: 3 0 Lang" #. k5A5k #: 03101700.xhp @@ -27104,7 +27104,7 @@ "par_id3255273\n" "help.text" msgid "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Result is: Object 9 True False" -msgstr "" +msgstr "Print Typename(properties), VarType(ordinal), IsNull(unique), IsObject(org)' Resultatet er: Objekt 9 Sann Usann" #. oaF9W #: 03102000.xhp @@ -27158,7 +27158,7 @@ "par_id3146121\n" "help.text" msgid "values=\"Hello world\"" -msgstr "" +msgstr "values=\"Hallo verda\"" #. BoCFz #: 03102000.xhp @@ -27167,7 +27167,7 @@ "par_id3147221\n" "help.text" msgid "Print Typename(glob), VarType(values), IsEmpty(vOffer) ' Displays: Empty 8 True" -msgstr "" +msgstr "Print Typename(glob), VarType(values), IsEmpty(vOffer) ' Viser: Tom 8 Sann" #. 2jpst #: 03102100.xhp @@ -40955,7 +40955,7 @@ "par_id181593699546735\n" "help.text" msgid "case[[sep]…] An ellipsis indicates a possible repetition, an optional separator may be specified," -msgstr "" +msgstr "case[[sep]…] Eit ellipseteikn (…) indikerer ei mogleg gjentaking. Du kan bruka eit valfritt separatorteikn." #. FEGF3 #: conventions.xhp @@ -40964,7 +40964,7 @@ "par_id712593699548486\n" "help.text" msgid "{choice1|choice2} Items inside curly braces are compulsory, alternatives are indicated with a vertical bar." -msgstr "" +msgstr "{choice1|choice2} Element inne i krøllparentes er obligatoriske. Alternativ er indikerte med ein loddrett strek." #. VFKcU #: conventions.xhp @@ -40973,7 +40973,7 @@ "par_id411593701639711\n" "help.text" msgid "A set of %PRODUCTNAME Basic statements - with optional labels - is using a colon : sign to separate them, it can be terminated with an optional comment. REM or an apostrophe sign introduce a comment." -msgstr "" +msgstr "Eit sett med %PRODUCTNAME Basic-uttrykk – med valfrie etikettars – brukar eit kolon : som skiljeteikn mellom dei. Det kan avsluttast med ein valfri merknad. REM eller ein apostrof (') innleiar ein merknad." #. RUhNn #: conventions.xhp @@ -40982,7 +40982,7 @@ "N0018\n" "help.text" msgid "GoTo there ' skip first statement" -msgstr "" +msgstr "GoTo there ' hopp over det første uttrykket" #. oCE77 #: conventions.xhp @@ -40991,7 +40991,7 @@ "N0019\n" "help.text" msgid "here: Print 1, : there: Print 2 REM explanatory text here" -msgstr "" +msgstr "here: Print 1, : there: Print 2 REM forklarande tekst her" #. 7pf8S #: enum.xhp @@ -41153,7 +41153,7 @@ "hd_id431587045941514\n" "help.text" msgid "argument fragment" -msgstr "" +msgstr "argumentfragment" #. pfHq8 #: fragments.xhp @@ -41315,7 +41315,7 @@ "hd_id231587046013458\n" "help.text" msgid "typename fragment" -msgstr "" +msgstr "typenamn-fragment" #. AqfYj #: fragments.xhp @@ -41333,7 +41333,7 @@ "hd_id231587046013459\n" "help.text" msgid "char fragment" -msgstr "" +msgstr "teikn-fragment" #. JFwPg #: fragments.xhp @@ -41810,7 +41810,7 @@ "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 dependent routines. Using Get, Let or Set accessors enforces properties' consistency when necessary." -msgstr "" +msgstr "Ein eigenskap (property), også kalla felt eller attributt, karakteriserer eit gjeve objekt eller ein opplysning. Eigenskapar kan brukast til å kontrollera tilgangen til data. Det er vanleg å ta med instruksjonar når eigenskapane vert sette eller lesne. Kodane kan vera alt frå enkle tildelingar til komplekse innhaldsavhengige rutinar. Bruk av Get, Let eller Set tvingar konsistensen for eigenskapen når det er nødvendig." #. hD9fA #: property.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-22 12:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565441848.000000\n" #. sZfWF @@ -9995,7 +9995,7 @@ "par_id3149312\n" "help.text" msgid "This category contains the Logical functions." -msgstr "" +msgstr "Denne kategorien inneheld dei logiske funksjonane." #. ADKTB #: 04060105.xhp @@ -42278,7 +42278,7 @@ "par_id401599494815994\n" "help.text" msgid "Example" -msgstr "" +msgstr "Eksempel" #. PcMRq #: 04060199.xhp @@ -42512,7 +42512,7 @@ "par_id201599495083374\n" "help.text" msgid "Example" -msgstr "" +msgstr "Eksempel" #. AdNBV #: 04060199.xhp @@ -42719,7 +42719,7 @@ "par_id201599494708332\n" "help.text" msgid "Example" -msgstr "" +msgstr "Eksempel" #. s2CGS #: 04060199.xhp @@ -42809,7 +42809,7 @@ "par_id521599494740206\n" "help.text" msgid "Example" -msgstr "" +msgstr "Eksempel" #. 52L2C #: 04060199.xhp @@ -52196,7 +52196,7 @@ "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 "" +msgstr "Calc har ikkje multippel-hierarki for eit enkelt felt, og dette valet er normalt gråa ut. Viss du brukar ein pivottabell med datakjeldeutviding, kan utvidinga definera fleire hierarki for nokre felt og gjera valet tilgjengeleg. Sjå dokumentasjonen som følgde med utvidinga for meir informasjon om dette." #. B9FE5 #: 12090200.xhp @@ -52745,7 +52745,7 @@ "par_id221603980244052\n" "help.text" msgid "Only up to 255 characters are saved, when using Excel format." -msgstr "" +msgstr "Når du brukar EXcel-format, vert berre 255 teikn lagra." #. pfATZ #: 12120100.xhp @@ -53204,7 +53204,7 @@ "hd_id1000013\n" "help.text" msgid "This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.3." -msgstr "" +msgstr "Denne funksjonen høyrer til Open Document Format for Office Applications (OpenDocument) standard versjon 1.3." #. SGHPh #: calculate.xhp @@ -54608,7 +54608,7 @@ "par_id1001601332672155\n" "help.text" msgid "This function is always recalculated whenever a recalculation occurs." -msgstr "" +msgstr "Denne funksjonen vert alltid rekna ut på nytt når rekna ut på nytt vert utført." #. 8DbP2 #: func_aggregate.xhp @@ -56480,7 +56480,7 @@ "par_id831605805755075\n" "help.text" msgid "For these examples to work as described, make sure that Enable regular expressions in formulas is selected in %PRODUCTNAME - PreferencesTools - Options - $[officename] Calc - Calculate." -msgstr "" +msgstr "For at desse eksempla skal verka slik som omtalt, sjå etter at det er merkt av for Bruk regulære uttrykk i formlar is selected in %PRODUCTNAME → PreferansarVerktøy → Innstillingar → $[officename] Calc → Rekn ute." #. iHFsx #: func_countifs.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/02.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/02.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-29 13:08+0200\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547397710.000000\n" #. aSE5T @@ -248,7 +248,7 @@ "par_id3150792\n" "help.text" msgid "Adds one decimal place to the numbers in the selected cells." -msgstr "Legg ein desimal til tala i dei valde cellene." +msgstr "Legg ein desimal til tala i dei valde cellene." #. BuLUg #: 02160000.xhp @@ -293,7 +293,7 @@ "par_id3147264\n" "help.text" msgid "Removes one decimal place from the numbers in the selected cells." -msgstr "Fjern ein desimal frå tala i dei valde cellene." +msgstr "Fjernar ein desimal frå tala i dei valde cellene." #. FCfMZ #: 02170000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/05.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-12-28 12:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565114717.000000\n" #. Cxzki @@ -77,7 +77,7 @@ "bm_id3148428\n" "help.text" msgid "invalid names; error messages #NAME error message" -msgstr "ugyldige namn; feilmeldingar#NAME-feilmeldingafeilmeldinga #NAME" +msgstr "ugyldige namn; feilmeldingar#NAME-feilmeldinga" #. xVUPK #: 02140000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/scalc/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -10580,7 +10580,7 @@ "par_id701519308848244\n" "help.text" msgid "Setting sheet names is an important feature to produce readable and understandable spreadsheets documents." -msgstr "" +msgstr "Valet av namn på arka er viktig for å laga oversiktlege og lett forståelege rekneark." #. DE2ji #: rename_table.xhp @@ -10598,7 +10598,7 @@ "par_id471607437423400\n" "help.text" msgid "To rename a sheet in your document:" -msgstr "" +msgstr "Slik kan du gje eit ark nytt namn:" #. 99JMV #: rename_table.xhp @@ -10607,7 +10607,7 @@ "par_id3146976\n" "help.text" msgid "Double-click the sheet tab or open its context menu and choose Rename Sheet. A dialog box appears where you can enter a new name." -msgstr "" +msgstr "Høgreklikk på arkfana for å opna sprettoppmenyen og vel Gje arket nytt namn. Det kjem opp eit dialogvindauge der du kan skriva inn det nye namnet. Du kan også opna dialogvindauget ved å dobbeltklikka på arkfana." #. GtGtQ #: rename_table.xhp @@ -10643,7 +10643,7 @@ "hd_id541607437294635\n" "help.text" msgid "Sheet Naming Restrictions" -msgstr "" +msgstr "Avgrensingar for namngjevinga på ark" #. ynfez #: rename_table.xhp @@ -10661,7 +10661,7 @@ "par_id090920081050281\n" "help.text" msgid "colon :" -msgstr "" +msgstr "kolon :" #. a2JXE #: rename_table.xhp @@ -10670,7 +10670,7 @@ "par_id0909200810502897\n" "help.text" msgid "back slash \\" -msgstr "" +msgstr "bakoverstrek \\" #. mkHAC #: rename_table.xhp @@ -10679,7 +10679,7 @@ "par_id090920081050299\n" "help.text" msgid "forward slash /" -msgstr "" +msgstr "skråstrek /" #. V9Z6i #: rename_table.xhp @@ -10688,7 +10688,7 @@ "par_id0909200810502913\n" "help.text" msgid "question mark ?" -msgstr "" +msgstr "spørjeteikn ?" #. 42B5r #: rename_table.xhp @@ -10697,7 +10697,7 @@ "par_id090920081050298\n" "help.text" msgid "asterisk *" -msgstr "" +msgstr "asterisk *" #. sAMTR #: rename_table.xhp @@ -10706,7 +10706,7 @@ "par_id0909200810502969\n" "help.text" msgid "left square bracket [" -msgstr "" +msgstr "venstre hakeparentes [" #. 32rAi #: rename_table.xhp @@ -10715,16 +10715,17 @@ "par_id0909200810502910\n" "help.text" msgid "right square bracket ]" -msgstr "" +msgstr "høgre hakeparentes ]" #. ESD5B #: rename_table.xhp +#, fuzzy msgctxt "" "rename_table.xhp\n" "par_id0909200810502971\n" "help.text" msgid "single quote ' as the first or last character of the name" -msgstr "" +msgstr "apostrof ' som første eller siste teikn i namnet" #. 36nvo #: rename_table.xhp @@ -10733,7 +10734,7 @@ "par_id761607437686157\n" "help.text" msgid "The single quote is Unicode U+0027, also known as apostrophe. Other single-quote characters, similar to apostrophe, are allowed, such as ʼ and ." -msgstr "" +msgstr "Enkelt hermeteikn er Uniccode U+0027 vert som oftast kalla apostrof. Andre enkle hermeteikn som liknar på apostrof, for eksempel ʼ og kan også brukast." #. DMm29 #: rename_table.xhp @@ -10742,7 +10743,7 @@ "hd_id251607438968588\n" "help.text" msgid "Using a Default Prefix for Sheet Names" -msgstr "" +msgstr "Bruka eit standardprefiks for arknamn" #. MEc8r #: rename_table.xhp @@ -10751,7 +10752,7 @@ "par_id81519309108908\n" "help.text" msgid "You can set a prefix for the names of new sheets you create. Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Calc - Defaults and enter the prefix name in Prefix name for new worksheet." -msgstr "" +msgstr "Du kan setja opp eit prefiks for namngjevinga av nye ark ved å velja %PRODUCTNAME → PreferansarVerktøy → Innstillingar→ %PRODUCTNAME Calc → Standardverdiar og skriva inn prefikset i Prefiksnamn for nytt ark." #. Ev9Ae #: rename_table.xhp @@ -10760,7 +10761,7 @@ "hd_id821607437571713\n" "help.text" msgid "Referencing Sheet Names with Special Characters" -msgstr "" +msgstr "Tilvisande arknamn med spesialteikn" #. BAZ4z #: rename_table.xhp @@ -10769,7 +10770,7 @@ "par_id090920081050307\n" "help.text" msgid "In cell references, a sheet name must be enclosed in single quotes ' when the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes)." -msgstr "" +msgstr "I cellereferansane må namn på ark stå mellom enkle hermeteikn (apostrofar ') dersom namnet inneheld teikn som ikkje er alfanumeriske eller understrek. Er det apostrof i eit namn, må du doble teiknet (to apostrofar)." #. ZjbDT #: rename_table.xhp @@ -10778,7 +10779,7 @@ "par_id321519307869857\n" "help.text" msgid "For example, you want to reference the cell A1 on a sheet named This year's sheet." -msgstr "" +msgstr "Viss du for eksempel vil visa til celle A1 i eit ark med namnet Jens' rekneskap." #. tAj5V #: rename_table.xhp @@ -10787,7 +10788,7 @@ "par_id0909200810503054\n" "help.text" msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled: 'This year''s sheet'.A1" -msgstr "" +msgstr "Tilvisinga må skrivast mellom apostrofar og apostrofen i namnet må doblast: 'Jens''s rekneskap'.A1" #. bwZRy #: rounding_numbers.xhp @@ -12488,7 +12489,7 @@ "par_id3156280\n" "help.text" msgid "Pressing the CommandCtrl+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expanded to the multi-line by the Down arrow button on the right." -msgstr "" +msgstr "Du kan setja inn inn eit manuelt linjeskift med KommandoCtrl + Enter. Denne snarvegen verkar direkte i ei celle og i innskrivingslinja. Du kan utvida innskrivingslinja ved å bruka nedoverpila på høgre sida." #. Cs3FE #: text_wrap.xhp @@ -12515,7 +12516,7 @@ "par_id3148575\n" "help.text" msgid "In Format - Cells - Alignment, mark the Wrap text automatically option and click OK." -msgstr "" +msgstr "Slå på Bryt tekst automatisk i Format → Celler → Justering og trykk OK." #. GGFPz #: text_wrap.xhp @@ -12524,7 +12525,7 @@ "par_id201608575657740\n" "help.text" msgid "For automatic wrapping in XLS files, the rows in question should be set to Optimal Height." -msgstr "" +msgstr "For å bruka automatisk linjeskift i XLS-filer, må dei aktuelle radene setjast til best mogleg høgd." #. pED9m #: text_wrap.xhp @@ -12605,7 +12606,7 @@ "par_id3148456\n" "help.text" msgid "Choose Tools - Macros - Edit Macros." -msgstr "" +msgstr "Vel Verktøy → Makroar → Redigera makroar." #. N4uB4 #: userdefined_function.xhp @@ -12614,7 +12615,7 @@ "par_id3154510\n" "help.text" msgid "You will now see the Basic IDE." -msgstr "" +msgstr "Du vil nå sjå Basic-IDE-en." #. jXhZH #: userdefined_function.xhp @@ -12623,7 +12624,7 @@ "par_id651603905832952\n" "help.text" msgid "In the Object Catalog window, double-click on the module where you want to store your macro." -msgstr "" +msgstr "I vindauget for objektkatalogar dobbeltklikkar du på modulen der du ønskjer å lagra makroen." #. G6mwG #: userdefined_function.xhp @@ -12650,7 +12651,7 @@ "par_id3150043\n" "help.text" msgid "Your function is automatically saved in the selected module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section." -msgstr "" +msgstr "Funksjonen vert automatisk lagra i standard-modulen og er nå tilgjengeleg. Viss du brukar funksjonen i eit Calc-dokument som skal brukast på ein annan datamaskin, kan du kopiera funksjonen til Calc-dokumentet slik det er forklart i neste avsnitt." #. 3bcAE #: userdefined_function.xhp @@ -12686,7 +12687,7 @@ "par_id3150304\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - Basic." -msgstr "" +msgstr "Vel Verktøy → Makroar → Organiser makroar → Basic." #. HZciB #: userdefined_function.xhp @@ -12722,7 +12723,7 @@ "par_id3150517\n" "help.text" msgid "Choose Tools - Macros - Organize Macros - Basic ." -msgstr "" +msgstr "Vel Verktøy → Makroar → Organiser makroar → Basic." #. oTBX8 #: userdefined_function.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/schart/01.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/schart/01.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/schart/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/schart/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547758081.000000\n" #. DsZFP @@ -113,7 +113,7 @@ "par_id6064943\n" "help.text" msgid "Choose View - Chart Data Table to open the Data Table dialog." -msgstr "Vel Vis → Diagramdatatabell for å opna dialogvindauget Datatabell." +msgstr "Vel Vis → Diagramdatatabell for å opna dialogvindauget «Datatabell»." #. CtH6Q #: 03010000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-03-21 13:36+0000\n" +"PO-Revision-Date: 2021-03-28 17:36+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -2677,7 +2677,7 @@ "par_id3148994\n" "help.text" msgid "Specifies two data fields that will be joined by a relation." -msgstr "" +msgstr "Spesifiserer to datafelt som skal slåast saman med ein relasjon." #. R8CbB #: 02010101.xhp @@ -2686,7 +2686,7 @@ "hd_id3159267\n" "help.text" msgid "Options" -msgstr "" +msgstr "Innstillingar" #. MRJCp #: 02010101.xhp @@ -2695,7 +2695,7 @@ "hd_id3147340\n" "help.text" msgid "Type" -msgstr "" +msgstr "Type" #. rxAGo #: 02010101.xhp @@ -2740,7 +2740,7 @@ "par_id3166450\n" "help.text" msgid "In a left join, the results table contains all records of the queried fields from the left table and only those records of the queried fields from the right table for which the content of the linked fields is the same. In $[officename] SQL this type of link corresponds to the LEFT OUTER JOIN command." -msgstr "" +msgstr "I ei venstre-samanføying vil resultattabellen innehalda alle postane i spørjingsfelta frå venstre tabell og berre dei postane i den høgre tabellen som er lik spørjefeltet. I $[officename] SQL svarar denne typen til lenkjer laga med LEFT OUTER JOIN." #. DxGWD #: 02010101.xhp @@ -2749,7 +2749,7 @@ "hd_id3155607\n" "help.text" msgid "Right Join" -msgstr "" +msgstr "Høgre samanslåing" #. 9eD8R #: 02010101.xhp @@ -2758,7 +2758,7 @@ "par_id3150647\n" "help.text" msgid "In a right join, the results table contains all records of the queried fields from the right table and only those records of the queried fields from the left table for which the content of the linked fields is the same. In $[officename] SQL this type of link corresponds to the RIGHT OUTER JOIN command." -msgstr "" +msgstr "I ei høgre-samanføying vil resultattabellen innehalda alle postane i spørjingsfelta frå høgre tabell og berre dei postane i den venstre tabellen som er lik spørjefeltet. I $[officename] SQL svarar denne typen til lenkjer laga med RIGHT OUTER JOIN." #. wcFAd #: 02010101.xhp @@ -2767,7 +2767,7 @@ "hd_id3158215\n" "help.text" msgid "Full Join" -msgstr "" +msgstr "Full samanslåing" #. wAFid #: 02010101.xhp @@ -2974,7 +2974,7 @@ "par_id3153968\n" "help.text" msgid "The Open in Design Mode iconIcon allows you to save a form document so that it always opens in form design mode." -msgstr "" +msgstr "Ikonet Opna i utformingsmodusIkon gjer at eit skjemadokument kan lagrast slik at det alltid vert opna i utformingsmodus." #. 4AXt6 #: 04030000.xhp @@ -2983,7 +2983,7 @@ "par_id3154948\n" "help.text" msgid "If there is an error when assigning properties to the objects contained in the form (for example, when assigning a non-existent database table to an object), a corresponding error message appears. This error message may contain a More button. If you click on More, a dialog displaying more information about the current problem appears." -msgstr "" +msgstr "Viss det oppstår ein feil medan du definerer eigenskapar til objekt i skjemaet (f. eks. ved tildeling av ein ikkje-eksisterande databasetabell til eit objekt), kjem det opp ei tilhøyrande feilmelding. Dialogvindauget til denne feilmeldinga kan innehalda knappen Meir. Viss du trykkjer på Meir, vert det vist eit dialogvindauge med meir informasjon om feilen." #. cLmBi #: main.xhp @@ -3120,7 +3120,7 @@ "tit\n" "help.text" msgid "Toolbars" -msgstr "" +msgstr "Verktøylinjer" #. Tzgdb #: toolbars.xhp @@ -3129,7 +3129,7 @@ "par_idN10541\n" "help.text" msgid "Toolbars" -msgstr "" +msgstr "Verktøylinjer" #. B3mEW #: toolbars.xhp @@ -3138,7 +3138,7 @@ "par_idN10545\n" "help.text" msgid "In a database file window, you can see the following toolbars." -msgstr "" +msgstr "I eit databasefilvindauge kan du sjå desse verktøylinjene." #. ZNxCw #: toolbars.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/00.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/00.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-22 12:51+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-27 19:52+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -2678,7 +2678,7 @@ "hd_id551604189872115\n" "help.text" msgid "Page line-spacing (register-true)" -msgstr "" +msgstr "Lås til registerlinjene" #. yspD9 #: 00000005.xhp @@ -2687,7 +2687,7 @@ "par_id3145230\n" "help.text" msgid "In %PRODUCTNAME, the register-true feature is called Page line-spacing." -msgstr "" +msgstr "I %PRODUCTNAME vert å setja i kegel kalla Lås til registerlinjene." #. WxQBJ #: 00000005.xhp @@ -2696,7 +2696,7 @@ "par_id3154223\n" "help.text" msgid "Page line-spacing refers to the coincident imprint of the lines within a type area on the front and the back side of a page. The page line-spacing feature makes a page easier to read by preventing gray shadows from shining through between the lines of text. The page line-spacing term also refers to lines in adjacent text columns, where lines in different columns use the same vertical grid, thereby aligning them vertically with each other." -msgstr "Sidelinjeavstand viser til det samanfallande avtrykket av linjene på begge sidene av ei side. Funksjonen for sidelinjeavstand gjer det enklare å lesa ei side ved å hindra at grå skuggar av teksten bakføre skin gjennom mellom tekstlinjene. Termen sidelinjeavstand refererer også til linjer i tekstkolonnar som ligg inntil kvarandre, der linjer i ulike kolonnar brukar det same loddrette rutenettet og såleis justerar dei loddrett med kvarandre." +msgstr "«Lås til registerlinjene» viser til det samanfallande avtrykket av linjene på begge sidene av ei side. Funksjonen for «Lås til registerlinjene» gjer det enklare å lesa ei side ved å hindra at grå skuggar av teksten bakføre skin gjennom mellom tekstlinjene. Termen «Lås til registerlinjene» refererer også til linjer i tekstkolonnar som ligg inntil kvarandre, der linjer i ulike kolonnar brukar det same loddrette rutenettet og såleis justerar dei loddrett i høve til kvarandre." #. BNJUC #: 00000005.xhp @@ -2705,7 +2705,7 @@ "par_id761604345191168\n" "help.text" msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing." -msgstr "Utskrift av linjeavstand er særleg nyttig for dokument som har to sider ved sida av kvarandre (for eksempel i ei bok eller ein brosjyre), for utformingar med fleire kolonnar og for dokument som skal skrivast ut dobbeltsidig." +msgstr "«Lås til registerlinjene» er særleg nyttig for dokument som har to sider ved sida av kvarandre (for eksempel i ei bok eller ein brosjyre), for utformingar med fleire kolonnar og for dokument som skal skrivast ut dobbeltsidig." #. Es2pF #: 00000005.xhp @@ -2741,7 +2741,7 @@ "par_id3146919\n" "help.text" msgid "In various dialogs (for example, Tools - AutoText) you can select whether you want to save files relatively or absolutely." -msgstr "" +msgstr "I fleire dialogvindauge (for eksempel Verktøy → Autotekst) kan du velja om filer skal lagrast relativt eller absolutt." #. vUiBY #: 00000005.xhp @@ -6872,7 +6872,7 @@ "par_idN11163\n" "help.text" msgid "Choose File - Digital Signatures - Digital Signatures." -msgstr "" +msgstr "Vel Fil → Digitale signaturar → Digitale signaturar." #. QA6UC #: 00000401.xhp @@ -6881,7 +6881,7 @@ "par_idN11168\n" "help.text" msgid "Choose Tools - Macros - Digital Signature." -msgstr "" +msgstr "Vel Verktøy → Makroar → Digital signatur." #. u6Rcy #: 00000401.xhp @@ -6890,7 +6890,7 @@ "par_idN11156\n" "help.text" msgid "Choose File - Properties - General tab, click Digital Signatures button." -msgstr "" +msgstr "Vel fana Fil → Eigenskapar → Generelt og trykk på knappen Digitale signaturar." #. G3b6A #: 00000401.xhp @@ -6908,7 +6908,7 @@ "par_idN11173\n" "help.text" msgid "Choose File - Properties - General tab, press Digital Signatures button, then click Sign Document button." -msgstr "" +msgstr "Vel fana Fil → Eigenskapar → Generelt og trykk på knappen Digitale signaturar og deretter knappen Signer dokumentet." #. EpJQ7 #: 00000401.xhp @@ -8042,7 +8042,7 @@ "par_idN10EEE\n" "help.text" msgid "Icon Symbol Shapes" -msgstr "" +msgstr "Ikon Symbolformer" #. raBMx #: 00000404.xhp @@ -8474,7 +8474,7 @@ "par_id3145171\n" "help.text" msgid "Choose Tools - Customize - Keyboard tab. A document must be opened." -msgstr "" +msgstr "Vel fana Verktøy → Tilpass → Tastatur. Eit dokument må vera opna." #. qxnqP #: 00000406.xhp @@ -8483,7 +8483,7 @@ "par_id3153968\n" "help.text" msgid "Choose Tools - Customize - Toolbars tab." -msgstr "" +msgstr "Vel fana Verktøy → Tilpass → Verktøylinjer." #. 9wtYU #: 00000406.xhp @@ -8492,7 +8492,7 @@ "par_id3144432\n" "help.text" msgid "Choose Tools - Customize - Events tab." -msgstr "" +msgstr "Vel fana Verktøy → Tilpass → Hendingar." #. 6kyDw #: 00000406.xhp @@ -8681,7 +8681,7 @@ "par_id3156091\n" "help.text" msgid "Choose Tools - ImageMap." -msgstr "" +msgstr "Vel Verktøy → Biletkart." #. q5E7e #: 00000406.xhp @@ -8690,7 +8690,7 @@ "par_id3155936\n" "help.text" msgid "Choose Tools - ImageMap, then select a section of the ImageMap and click Properties - Description." -msgstr "" +msgstr "Vel Verktøy → Biletkart, merk deretter eit område av biletet og trykk Eigenskapar → Skildring." #. AMRtZ #: 00000406.xhp @@ -8969,7 +8969,7 @@ "par_idN10F2F\n" "help.text" msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge Email." -msgstr "" +msgstr "Opna eit tekstdokument og vel %PRODUCTNAME → InnstillingarVerktøy → Innstillingar → %PRODUCTNAME Writer" #. T5u9S #: 00000406.xhp @@ -9833,7 +9833,7 @@ "par_id3148998\n" "help.text" msgid "Icon Character" -msgstr "" +msgstr "Ikon Teikn" #. AdBzN #: 00040500.xhp @@ -9914,7 +9914,7 @@ "par_id3156306\n" "help.text" msgid "Menu Format - Page - Header/Footer - Edit button (spreadsheets)." -msgstr "" +msgstr "Menyen Format → Side → Topptekst/Botntekst → knappen Rediger (rekneark)." #. f7aHb #: 00040500.xhp @@ -10049,7 +10049,7 @@ "par_id3155995\n" "help.text" msgid "Icon Paragraph" -msgstr "" +msgstr "Ikon Avsnitt" #. E7XoA #: 00040500.xhp @@ -10220,7 +10220,7 @@ "par_id3155915\n" "help.text" msgid "Menu Format - Paragraph - Border tab - Padding." -msgstr "" +msgstr "Menyen Format → Avsnitt → fana KantarFyll." #. krmqa #: 00040500.xhp @@ -10229,7 +10229,7 @@ "par_id3159130\n" "help.text" msgid "Menu Format - Page - Border - Padding." -msgstr "" +msgstr "Menyen Format → Side → Kantar → Fyll." #. PGrMv #: 00040500.xhp @@ -10247,7 +10247,7 @@ "par_id3147330\n" "help.text" msgid "Choose Format - Character - Highlighting tab." -msgstr "" +msgstr "Vel fana Format → Teikn → Utheving." #. nd9vD #: 00040500.xhp @@ -10400,7 +10400,7 @@ "par_id3154482\n" "help.text" msgid "Choose View - Styles (Command+T)(F11) - open context menu of an entry and choose Modify/New - Organizer tab." -msgstr "" +msgstr "Vel Vis → Stilar (Kommando + T)(F11). Høgreklikk på ein stil. Vel fana Ny(tt) → Handsamar." #. eEUQg #: 00040500.xhp @@ -10409,7 +10409,7 @@ "par_id3149323\n" "help.text" msgid "Choose Slide - Properties - Slide tab" -msgstr "" +msgstr "Vel fana Lysbilete → Innstillingar → Lysbilete." #. 8xjGD #: 00040500.xhp @@ -10418,7 +10418,7 @@ "par_id3154972\n" "help.text" msgid "Choose Page - Properties - Page tab." -msgstr "" +msgstr "Vel fana Side → Innstillingar → Side." #. sZU8Q #: 00040500.xhp @@ -10562,7 +10562,7 @@ "par_id3148533\n" "help.text" msgid "Icon Styles" -msgstr "" +msgstr "Icon Stilar" #. GGmAC #: 00040500.xhp @@ -10580,7 +10580,7 @@ "par_id3159313\n" "help.text" msgid "On the Drawing bar, click" -msgstr "" +msgstr "På linja for teikning, trykk" #. GtJbA #: 00040500.xhp @@ -11012,7 +11012,7 @@ "par_id3151054\n" "help.text" msgid "Icon Properties" -msgstr "" +msgstr "Ikon Eigenskapar" #. 89DTS #: 00040501.xhp @@ -11030,7 +11030,7 @@ "par_id3149292\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties." -msgstr "" +msgstr "Opna sprettoppmenyen for eit vald skjemaelement – vel Skjemaeigenskapar." #. CMsFE #: 00040501.xhp @@ -11039,7 +11039,7 @@ "par_id3152933\n" "help.text" msgid "Icon Form" -msgstr "" +msgstr "Ikon Skjema" #. F5LMe #: 00040501.xhp @@ -11057,7 +11057,7 @@ "par_id3150447\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties - General tab." -msgstr "" +msgstr "Opna sprettoppmenyen for eit vald skjemaelement – vel fana Skjemaeigenskapar → Generelt." #. CPHGz #: 00040501.xhp @@ -11066,7 +11066,7 @@ "par_id3144448\n" "help.text" msgid "Open Form Design toolbar, click Form Properties icon - General tab." -msgstr "" +msgstr "Opna verktøylinja Skjemautforming og trykk ikonet Skjemaeigenskapar → fana Generelt." #. pKDYX #: 00040501.xhp @@ -11075,7 +11075,7 @@ "par_id3145786\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties - Data tab." -msgstr "" +msgstr "Opna sprettoppmenyen for eit vald skjemaelement – vel fana Skjemaeigenskapar → Data." #. BbiDH #: 00040501.xhp @@ -11084,7 +11084,7 @@ "par_id3158156\n" "help.text" msgid "Open Form Design toolbar, click Form Properties icon - Data tab." -msgstr "" +msgstr "Opna verktøylinja Skjemautforming og trykk ikonet Skjemaeigenskapar → fana Data." #. gyPpR #: 00040501.xhp @@ -11093,7 +11093,7 @@ "par_id1979125\n" "help.text" msgid "Open context menu of a selected control on an XML Form document, choose Control Properties - Data tab." -msgstr "" +msgstr "Opna sprettoppmenyen for eit vald kontrollelement i eit XML-skjema og vel fana Kontrolleigenskapar → Data." #. DtgW8 #: 00040501.xhp @@ -11102,7 +11102,7 @@ "par_id1769463\n" "help.text" msgid "Open Form Controls toolbar of an XML Form document, click Control icon - Data tab." -msgstr "" +msgstr "Opna verktøylinja Kontrollelement for skjema i eit XML-skjemadokumentet, trykk på symbolet Kontrollelement og vel fana Data." #. jGM6T #: 00040501.xhp @@ -11111,7 +11111,7 @@ "par_id3145364\n" "help.text" msgid "Open context menu of a selected form element - choose Form Properties - Events tab." -msgstr "" +msgstr "Opna sprettoppmenyen til eit valt skjemaelement og vel fana Skjemaeigenskapar → Hendingar" #. ErFpd #: 00040501.xhp @@ -11120,7 +11120,7 @@ "par_id3153575\n" "help.text" msgid "Open Form Design toolbar, click Form Properties icon - Events tab." -msgstr "" +msgstr "Opna verktøylinja Skjemautforming og trykk ikonet Skjemaeigenskapar → fana Hendingar." #. w9Zuc #: 00040501.xhp @@ -11129,7 +11129,7 @@ "par_id3147234\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties." -msgstr "" +msgstr "Opna sprettoppmenyen til eit valt skjemaelement og vel fana Kontrollelement." #. z6tko #: 00040501.xhp @@ -11138,7 +11138,7 @@ "par_id3153953\n" "help.text" msgid "Icon Control" -msgstr "" +msgstr "Ikon Kontrollelement" #. ADmRP #: 00040501.xhp @@ -11156,7 +11156,7 @@ "par_id3153943\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties - General tab." -msgstr "" +msgstr "Opna sprettoppmenyen til eit valt skjemaelement og vel fana Kontrollelement → Generelt" #. XDaSr #: 00040501.xhp @@ -11165,7 +11165,7 @@ "par_id3159198\n" "help.text" msgid "Open Form Design toolbar, click Control icon - General tab." -msgstr "" +msgstr "Opna verktøylinja Skjemautforming og trykk ikonet Kontrollelement → fana Generelt." #. MAnJk #: 00040501.xhp @@ -11174,7 +11174,7 @@ "par_id3153203\n" "help.text" msgid "Open context menu of a selected form element - choose Control Properties - Data tab." -msgstr "" +msgstr "Opna sprettoppmenyen til eit valt skjemaelement og vel fana Kontrollelement → Data" #. LW7yw #: 00040501.xhp @@ -12875,7 +12875,7 @@ "par_id3145666\n" "help.text" msgid "Choose Format - Text Box and Shape - Object - Position and Size - Slant & Corner Radius tab." -msgstr "" +msgstr "Vel Format → Tekstboks og form → Objekt → Posisjon og storleik → Helling og hjørneradius." #. he3t3 #: 00040502.xhp @@ -13091,7 +13091,7 @@ "par_id3152767\n" "help.text" msgid "Open context menu - choose Style - Subscript." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Stil → Senka skrift." #. ATNzQ #: 00040502.xhp @@ -13100,7 +13100,7 @@ "par_id3155377\n" "help.text" msgid "Open context menu - choose Line Spacing." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Linjeavstand." #. zWwjF #: 00040502.xhp @@ -13109,7 +13109,7 @@ "par_id3154475\n" "help.text" msgid "Open context menu - choose Line Spacing - Single." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Linjeavstand → Enkel." #. GdBSL #: 00040502.xhp @@ -13118,7 +13118,7 @@ "par_id3150478\n" "help.text" msgid "Open context menu - choose Line Spacing - 1.5 Lines." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Linjeavstand → 1,5 linjer." #. pNDFU #: 00040502.xhp @@ -13127,7 +13127,7 @@ "par_id3147167\n" "help.text" msgid "Open context menu - choose Line Spacing - Double." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Linjeavstand → Dobbel." #. 4TwEA #: 00040502.xhp @@ -13136,7 +13136,7 @@ "par_id3146978\n" "help.text" msgid "Choose Format - Align - Left (drawing functions)." -msgstr "" +msgstr "Vel Format → Juster → Venstre (teiknefunksjonar)." #. reirq #: 00040502.xhp @@ -13145,7 +13145,7 @@ "par_id3153009\n" "help.text" msgid "Open context menu - choose Align - Left." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Juster → Venstre." #. hUH97 #: 00040502.xhp @@ -13154,7 +13154,7 @@ "par_id3147310\n" "help.text" msgid "Icon Align Left" -msgstr "" +msgstr "Ikon Juster venstre" #. okQkj #: 00040502.xhp @@ -13172,7 +13172,7 @@ "par_id3155823\n" "help.text" msgid "Choose Format - Align - Right (drawing functions)." -msgstr "" +msgstr "Vel Format → Juster → Høgre (teiknefunksjonar)." #. 2MorN #: 00040502.xhp @@ -13181,7 +13181,7 @@ "par_id3155762\n" "help.text" msgid "Open context menu - choose Align - Right." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Juster → Høgre." #. jddUQ #: 00040502.xhp @@ -13190,7 +13190,7 @@ "par_id3149408\n" "help.text" msgid "Icon Align Right" -msgstr "" +msgstr "Ikon Juster høgre" #. XnJxD #: 00040502.xhp @@ -13208,7 +13208,7 @@ "par_id3149189\n" "help.text" msgid "Choose Format - Align - Centered (drawing functions)." -msgstr "" +msgstr "Vel Format → Juster → Midtstill (teiknefunksjonar)." #. YutM3 #: 00040502.xhp @@ -13217,7 +13217,7 @@ "par_id3154624\n" "help.text" msgid "Open context menu - choose Align - Center." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Juster → Midtstilt." #. kZk7u #: 00040502.xhp @@ -13226,7 +13226,7 @@ "par_id3153815\n" "help.text" msgid "Icon Centered" -msgstr "" +msgstr "Ikon Midtstilt" #. CQD3j #: 00040502.xhp @@ -13244,7 +13244,7 @@ "par_id3146151\n" "help.text" msgid "Choose Format - Align - Justified (drawing functions)." -msgstr "" +msgstr "Vel Format → Juster → Blokkjustert (teiknefunksjonar)." #. Mj8VD #: 00040502.xhp @@ -13253,7 +13253,7 @@ "par_id3168612\n" "help.text" msgid "Open context menu - choose Align - Justified." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Juster → Blokkjustert." #. jfsgi #: 00040502.xhp @@ -13262,7 +13262,7 @@ "par_id3156189\n" "help.text" msgid "Icon Justified" -msgstr "" +msgstr "Ikon Blokkjustert" #. YBkwj #: 00040502.xhp @@ -13289,7 +13289,7 @@ "par_id3144503\n" "help.text" msgid "Choose Format - Group." -msgstr "" +msgstr "Vel Format → Grupper." #. YJ3t9 #: 00040502.xhp @@ -13298,7 +13298,7 @@ "par_id3154854\n" "help.text" msgid "Open context menu - choose Group." -msgstr "" +msgstr "Opna sprettoppmenyen og vel Grupper." #. 3AJkC #: 00040502.xhp @@ -13307,7 +13307,7 @@ "par_id3157985\n" "help.text" msgid "Choose Format - Group - Group (text documents, spreadsheets)." -msgstr "" +msgstr "Vel Format → Grupper → Grupper (tekstdokument, rekneark)." #. bdCDb #: 00040502.xhp @@ -13316,7 +13316,7 @@ "par_id3157980\n" "help.text" msgid "Choose Shape - Group - Group (drawing documents)." -msgstr "" +msgstr "Vel Form → Grupper → Grupper (teiknedokument)." #. RvPBU #: 00040502.xhp @@ -13334,7 +13334,7 @@ "par_id3146858\n" "help.text" msgid "Icon Group" -msgstr "" +msgstr "Ikon Grupper" #. DVEkd #: 00040502.xhp @@ -13352,7 +13352,7 @@ "par_id3153023\n" "help.text" msgid "Choose Format - Group - Ungroup (text documents, spreadsheets)." -msgstr "" +msgstr "Vel Format → Grupper → Løys opp gruppe (tekstdokument, rekneark)." #. WFDj3 #: 00040502.xhp @@ -13361,7 +13361,7 @@ "par_id3163378\n" "help.text" msgid "Choose Shape - Group - Ungroup (drawing documents)." -msgstr "" +msgstr "Vel Form → Grupper → Løys opp gruppe (teiknedokument)." #. 9k3ef #: 00040502.xhp @@ -13370,7 +13370,7 @@ "par_id3156038\n" "help.text" msgid "Open context menu - choose Ungroup." -msgstr "" +msgstr "Opna sprettoppmenyen – vel Løys opp gruppe." #. zcmBV #: 00040502.xhp @@ -13379,7 +13379,7 @@ "par_id3151300\n" "help.text" msgid "Icon Ungroup" -msgstr "" +msgstr "Ikon Løys opp gruppe" #. DGWSV #: 00040502.xhp @@ -13397,7 +13397,7 @@ "par_id3153109\n" "help.text" msgid "Choose Format - Group - Exit Group (text documents, spreadsheets)." -msgstr "" +msgstr "Vel Format → Gruppe → Gå ut av gruppa (tekstdokument, rekneark)." #. P2Xae #: 00040502.xhp @@ -13406,7 +13406,7 @@ "par_id3145678\n" "help.text" msgid "Choose Shape - Group - Exit Group (drawing documents)." -msgstr "" +msgstr "Vel Form → Gruppe → Gå ut av gruppa (teiknedokument)." #. Bszjv #: 00040502.xhp @@ -13415,7 +13415,7 @@ "par_id3152367\n" "help.text" msgid "Open context menu - choose Exit Group." -msgstr "" +msgstr "Opna sprettoppmenyen – vel Gå ut av gruppa." #. BBvnq #: 00040502.xhp @@ -13424,7 +13424,7 @@ "par_id3158402\n" "help.text" msgid "Icon Exit Group" -msgstr "" +msgstr "Ikon Gå ut av gruppa" #. ndpeo #: 00040502.xhp @@ -13442,7 +13442,7 @@ "par_id3149129\n" "help.text" msgid "Choose Format - Group - Enter Group (text documents, spreadsheets)." -msgstr "" +msgstr "Vel Format → Grupper → Gå inn i gruppa (tekstdokument, rekneark)." #. hn7Hv #: 00040502.xhp @@ -13451,7 +13451,7 @@ "par_id3145354\n" "help.text" msgid "Choose Shape - Group - Enter Group (drawing documents)." -msgstr "" +msgstr "Vel Form - Grupper - Gå inn i gruppa (teiknedokument)." #. 4rTmw #: 00040502.xhp @@ -13460,7 +13460,7 @@ "par_id3149946\n" "help.text" msgid "Open context menu - choose Enter Group." -msgstr "" +msgstr "Opna sprettoppmenyen – vel Gå inn i gruppa." #. oDBK3 #: 00040502.xhp @@ -13469,7 +13469,7 @@ "par_id3152388\n" "help.text" msgid "Icon Enter Group" -msgstr "" +msgstr "Ikon Gå inn i gruppa" #. yXmKi #: 00040502.xhp @@ -14297,7 +14297,7 @@ "par_id3156106\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. ZtHb2 #: edit_menu.xhp @@ -14414,7 +14414,7 @@ "par_id3148555\n" "help.text" msgid "Choose Edit - Select All." -msgstr "" +msgstr "Vel Rediger → Merk alt." #. mia2c #: edit_menu.xhp @@ -14423,7 +14423,7 @@ "par_id3152417\n" "help.text" msgid "CommandCtrl+A" -msgstr "" +msgstr "KommandoCtrl + A" #. Fmcad #: edit_menu.xhp @@ -14432,7 +14432,7 @@ "par_id3145748\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. 8xMiC #: edit_menu.xhp @@ -14450,7 +14450,7 @@ "par_id3145251\n" "help.text" msgid "Choose Edit - Track Changes." -msgstr "" +msgstr "Vel Rediger → Spor endringar." #. FtngJ #: edit_menu.xhp @@ -14459,7 +14459,7 @@ "par_id3153336\n" "help.text" msgid "Choose Edit - Track Changes - Record." -msgstr "" +msgstr "Vel Rediger → Spor endringar → Registrer. " #. eaiZ6 #: edit_menu.xhp @@ -14477,7 +14477,7 @@ "par_id3153845\n" "help.text" msgid "Choose Edit - Track Changes - Manage." -msgstr "" +msgstr "Vel Rediger → Spor endringar → Handsam." #. RLwDH #: edit_menu.xhp @@ -14486,7 +14486,7 @@ "par_id3148587\n" "help.text" msgid "Choose Edit - Track Changes - Manage - List tab." -msgstr "" +msgstr "Vel fana Rediger → Spor endringar → Handsam → Liste." #. KKGxQ #: edit_menu.xhp @@ -14495,7 +14495,7 @@ "par_id3150396\n" "help.text" msgid "Choose Tools - AutoCorrect - Apply and Edit Changes. The AutoCorrect dialog appears.
Click the Edit Changes button and navigate to the List tab." -msgstr "" +msgstr "Vel Verktøy → Autoretting → Utfør og rediger endringar. Dialogvindauget for autoretting kjem opp.
Trykk på Rediger endringar og så fana Liste." #. DRyHd #: edit_menu.xhp @@ -14504,7 +14504,7 @@ "par_id3153878\n" "help.text" msgid "Choose Edit - Track Changes - Manage - Filter tab." -msgstr "" +msgstr "Vel fana Rediger → Spor endringar → Handsam → Filter." #. XycHj #: edit_menu.xhp @@ -14513,7 +14513,7 @@ "par_id3151281\n" "help.text" msgid "Choose Edit - Track Changes - Merge Document." -msgstr "" +msgstr "Vel Rediger → Spor endringar → Slå saman dokument." #. DLA3A #: edit_menu.xhp @@ -14522,7 +14522,7 @@ "par_id3153224\n" "help.text" msgid "Choose Edit - Track Changes - Compare Document." -msgstr "" +msgstr "Vel Rediger → Spor endringar → Samanlikna dokument." #. DrLSp #: edit_menu.xhp @@ -14531,7 +14531,7 @@ "par_id3148773\n" "help.text" msgid "Choose Edit - Track Changes - Comment." -msgstr "" +msgstr "Vel Rediger → Spor endringar → Merknad." #. BuLKS #: edit_menu.xhp @@ -14540,7 +14540,7 @@ "par_id3149488\n" "help.text" msgid "Choose Edit - Track Changes - Manage - List tab.
Click an entry in the list and open the context menu.
Choose Edit Comment." -msgstr "" +msgstr "Vel fana Rediger → Spor endringar → Handsam → Liste.
Trykk på ei oppføring i lista og opna sprettoppmenyen.
Vel Rediger merknad." #. oGZeX #: edit_menu.xhp @@ -14549,7 +14549,7 @@ "par_id31562971\n" "help.text" msgid "Choose Edit - Find." -msgstr "" +msgstr "Vel Rediger → Finn." #. cPD4u #: edit_menu.xhp @@ -14558,7 +14558,7 @@ "par_id31545031\n" "help.text" msgid "CommandCtrl+F" -msgstr "" +msgstr "KommandoCtrl + F" #. f4EM6 #: edit_menu.xhp @@ -14567,7 +14567,7 @@ "par_id3156297\n" "help.text" msgid "Choose Edit - Find & Replace." -msgstr "" +msgstr "Vel Rediger → Søk og byt ut." #. 4pWKe #: edit_menu.xhp @@ -14576,7 +14576,7 @@ "par_id3154503\n" "help.text" msgid "CommandCtrl+H" -msgstr "" +msgstr "KommandoCtrl + H" #. UPprs #: edit_menu.xhp @@ -14594,7 +14594,7 @@ "par_id3150020\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. jRcHP #: edit_menu.xhp @@ -14612,7 +14612,7 @@ "par_id3156357\n" "help.text" msgid "Choose Edit - Find & Replace - Attributes." -msgstr "" +msgstr "Vel Rediger → Søk og byt ut → Attributt." #. DCnDy #: edit_menu.xhp @@ -14621,7 +14621,7 @@ "par_id3153840\n" "help.text" msgid "Choose Edit - Find & Replace - Format button." -msgstr "" +msgstr "Vel knappen Rediger → Søk og byt ut → Format." #. 6929F #: edit_menu.xhp @@ -14630,7 +14630,7 @@ "par_id781602175775847\n" "help.text" msgid "Search Icon or CommandCtrl+F" -msgstr "" +msgstr "Søkjeikonet eller KommandoCtrl + F" #. CNnsD #: edit_menu.xhp @@ -14639,7 +14639,7 @@ "par_id3153709\n" "help.text" msgid "On the Table Data bar, click Find icon, then Similarity search check box, then click the Similarities button (database table view)." -msgstr "" +msgstr "Trykk på knappen Søk på verktøylinja Tabelldata. Kryss av for Likskapssøk og trykk på Likskapar (databasetabellvising)." #. PGzfH #: edit_menu.xhp @@ -14648,7 +14648,7 @@ "par_id551602176159965\n" "help.text" msgid "Search Icon" -msgstr "" +msgstr "Søkjeikon" #. 8FD2j #: edit_menu.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-27 19:52+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -3218,7 +3218,7 @@ "tit\n" "help.text" msgid "Description (File Properties)" -msgstr "" +msgstr "Skildring (fileigenskapar)" #. LaoBx #: 01100100.xhp @@ -5387,7 +5387,7 @@ "hd_id3154398\n" "help.text" msgid "Email Document" -msgstr "" +msgstr "E-postdokument" #. Q86XQ #: 01160000.xhp @@ -5414,7 +5414,7 @@ "hd_id8111514\n" "help.text" msgid "Email as OpenDocument Spreadsheet" -msgstr "" +msgstr "Som OpenDocument-rekneark i e-post" #. ewW2i #: 01160000.xhp @@ -6827,7 +6827,7 @@ "par_id3146969\n" "help.text" msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected." -msgstr "" +msgstr "Set inn celleområdet som ei lenkje, slik at endringar som vert gjort i celler i kjeldefila vert oppdatert i målfila. Om du vil sikra at endringar som er gjort i tomme celler i kjeldefila vert oppdatert i målfila så sjå etter at òg «Set inn alt» er merkt." #. 5BxP6 #: 02070000.xhp @@ -7682,7 +7682,7 @@ "hd_id3145650\n" "help.text" msgid "Comments" -msgstr "" +msgstr "Merknadar" #. MTECk #: 02100000.xhp @@ -8006,7 +8006,7 @@ "par_id3159252\n" "help.text" msgid "For certain symbol fonts the symbol (glyph) that you see on screen may look related to a different Unicode code than that is actually used for it in the font. The Unicode codes can be viewed by choosing Insert - Special Character, or using Unicode conversion shortcut." -msgstr "" +msgstr "For nokre symbolskrifter kan symbolet (teiknet) som du ser på skjermen sjå ut til som ein annanUnicode-kode enn den som faktisk er brukt til det i skrifttypen. Du kan få fram Unicode-kodane ved å velja Set inn → Spesialteikn eller ved å bruka snarvegen for Unicode-konvertering." #. 6Swuu #: 02100001.xhp @@ -8177,7 +8177,7 @@ "par_id5311440\n" "help.text" msgid "For a full list of supported metacharacters and syntax, see ICU Regular Expressions documentation" -msgstr "" +msgstr "Du finn ei fullstendig liste over støtta metateikn og syntaks i ICU Regular Expressions documentation" #. HBqoH #: 02100001.xhp @@ -8501,7 +8501,7 @@ "par_id3145629\n" "help.text" msgid "Set the options for the similarity search." -msgstr "" +msgstr "Sett innstillingane for likskapssøket." #. FLKW6 #: 02100100.xhp @@ -8600,7 +8600,7 @@ "par_id491602292458634\n" "help.text" msgid "Using Combine better meets a user's expectations from looking at the settings, but may return false positives. Not using Combine may match less than expected, but does not return false positives." -msgstr "" +msgstr "Ved å bruka «Kombiner» vil ein få fleire treff ut frå det ein ventar ut frå innstillingane, men kan få falske positive svar. Utan «Kombiner» kan ein få færre treff, men ingen falske positive." #. 9xE34 #: 02100100.xhp @@ -8609,7 +8609,7 @@ "par_id401602236795437\n" "help.text" msgid "A Weighted Levenshtein Distance (WLD) algorithm is used. If Combine is not checked, then settings are treated as an exclusive-OR (strict WLD).If Combine is checked, then settings are treated as an inclusive-OR (relaxed WLD)." -msgstr "" +msgstr "Det vert brukt ein vekta Levenshtein avstandsalgoritme (WLD). Viss det ikkje er avmerkt for «Kombiner», vert innstillingane handsama som ein EKSKLUSIV-ELLER. Elles vert innstillingane handsama som ein INKLUSIV-ELLER (tillempa WLD)." #. eZ2dA #: 02100100.xhp @@ -8618,7 +8618,7 @@ "par_id371602294412458\n" "help.text" msgid "Be careful when using Replace All with Similarity Search. Best to be certain first about what will be found." -msgstr "" +msgstr "Ver varsam når du brukar Byt ut alle i likskapssøk. Det beste er å sjå etter på førehand kva som kan verta funne." #. Fvuvx #: 02100200.xhp @@ -8888,7 +8888,7 @@ "hd_id3156062\n" "help.text" msgid "Page line-spacing" -msgstr "" +msgstr "Lås til registerlinjene" #. KJDV7 #: 02100200.xhp @@ -8897,7 +8897,7 @@ "par_id3152886\n" "help.text" msgid "Finds the Activate page line-spacing attribute." -msgstr "" +msgstr "Finn attributtet Slå på «Lås til registerlinjene»." #. kbwRT #: 02100200.xhp @@ -9383,7 +9383,7 @@ "par_id3145313\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. 3Lq2G #: 02110000.xhp @@ -9419,7 +9419,7 @@ "par_id3153716\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. nRB3E #: 02110000.xhp @@ -9455,7 +9455,7 @@ "par_id3159166\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. F4J5u #: 02110000.xhp @@ -9590,7 +9590,7 @@ "par_id3153951\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. ijR7M #: 02110000.xhp @@ -9698,7 +9698,7 @@ "par_id3151351\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. ADEyJ #: 02110000.xhp @@ -9734,7 +9734,7 @@ "par_id3156178\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. GqEUL #: 02110000.xhp @@ -9770,7 +9770,7 @@ "par_id3154790\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. DLEGF #: 02110000.xhp @@ -9806,7 +9806,7 @@ "tit\n" "help.text" msgid "Edit Links to External Files" -msgstr "" +msgstr "Rediger lenkjer til eksterne filer" #. YrBSL #: 02180000.xhp @@ -9824,7 +9824,7 @@ "hd_id3150279\n" "help.text" msgid "Edit Links to External Files" -msgstr "" +msgstr "Rediger lenkjer til eksterne filer" #. hN2Am #: 02180000.xhp @@ -9833,7 +9833,7 @@ "par_id3150774\n" "help.text" msgid "You can change or remove each link to external files in the current document. You can also update the content of the current file to the most recently saved version of linked external file. This command does not apply to hyperlinks, and is not available if the current document does not contain links to other files." -msgstr "" +msgstr "Du kan endra eller fjerna lenkjer til eksterne filer i det gjeldande dokumentet. Du kan også oppdatera innhaldet i den gjeldande fila til slik det var sist ho vart lagra. Kommandoen gjeld ikkje for hyperlenkjer og er berre tilgjengeleg viss det gjeldande dokumentet inneheld lenkjer til andre filer." #. nGE7F #: 02180000.xhp @@ -9842,7 +9842,7 @@ "par_id271603459179173\n" "help.text" msgid "This command can be used with external file links to sections (place cursor outside of the section), master documents,sheets linked with Sheet - Insert Sheet from File or Sheet - Link to External Data, Function WEBSERVICE, images and OLE objects (when inserted with a link to an external file)." -msgstr "" +msgstr "Denne kommandoen kan brukast med eksterne filer lenkja til bolkar (set markøren utføre bolken), hovuddokument, ark som er lenkja til med Ark → Set inn ark frå fil eller Ark → Lenkje til eksterne data, funksjonen WEBSERVICE, bilete og OLE.objekt (når dei er sette inn med ei lenkje til ei ekstern fil)." #. g3wLZ #: 02180000.xhp @@ -13289,7 +13289,7 @@ "par_id621603817886869\n" "help.text" msgid "Status Bar - Overview" -msgstr "" +msgstr "Statuslinje – oversyn" #. NGFKi #: 03060000.xhp @@ -13298,7 +13298,7 @@ "par_id971603817903925\n" "help.text" msgid "Status Bar - Overview" -msgstr "" +msgstr "Statuslinje – oversyn" #. ENxHS #: 03060000.xhp @@ -13307,7 +13307,7 @@ "par_id441603817913885\n" "help.text" msgid "Status Bar - Overview" -msgstr "" +msgstr "Statuslinje – oversyn" #. hjuib #: 03060000.xhp @@ -13316,7 +13316,7 @@ "par_id111603817924684\n" "help.text" msgid "Status Bar - Overview" -msgstr "" +msgstr "Statuslinje – oversyn" #. DpD8W #: 03110000.xhp @@ -13406,7 +13406,7 @@ "par_id3153255\n" "help.text" msgid "Show or hide the Color bar. To modify or change the color table that is displayed, choose Format - Area, and then click on the Colors tab." -msgstr "" +msgstr "Vis eller gøym Fargelinja. For å endra fargepaletten som vert vist, vel Format → Område og gå til fana Fargar." #. EFZwD #: 03170000.xhp @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Små versalargjer dei merkte små bokstavane til store bokstavar og reduserer storleiken." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinkande tekst blinkande skrift" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinkande" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Gjer at det valde teiknet blinkar. Du kan ikkje endra blinkfrekvensen." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -20516,7 +20489,7 @@ "par_id3156042\n" "help.text" msgid "The paragraph style for the current paragraph is displayed at the Formatting toolbar, and is highlighted in the Styles window." -msgstr "" +msgstr "Avsnittsstilen for det valde avsnittet vert vist på verktøylina Formatering og utheva i vindauget Stilar. " #. 3xcFE #: 05030100.xhp @@ -20561,7 +20534,7 @@ "par_id3153910\n" "help.text" msgid "To change the measurement units used in this dialog, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - General , and then select a new measurement unit in the Settings area." -msgstr "" +msgstr "For å endra måleeiningane som er brukte i dette dialogvindauget, må du velja%PRODUCTNAME → InnstillingarVerktøy → Innstillingar → %PRODUCTNAME Writer → Generelt og deretter ei ny måleeining under «Innstillingar»." #. 4fwpx #: 05030100.xhp @@ -20570,7 +20543,7 @@ "par_id3154823\n" "help.text" msgid "You can also set indents using the ruler. To display the ruler, choose View - Ruler." -msgstr "" +msgstr "Du kan også setja innrykk ved å bruka linjalen. Du får fram linjalen ved å velja Vis → Linjal." #. JndpY #: 05030100.xhp @@ -20723,7 +20696,7 @@ "hd_id3145591\n" "help.text" msgid "Do not add space between paragraphs of the same style" -msgstr "" +msgstr "Ikkje set inn mellomrom mellom avsnitt med den same stilen." #. eqZaq #: 05030100.xhp @@ -20777,7 +20750,7 @@ "hd_id3199345\n" "help.text" msgid "1.15 lines" -msgstr "" +msgstr "1,15 linjer" #. zihYd #: 05030100.xhp @@ -20786,7 +20759,7 @@ "par_id3184601\n" "help.text" msgid "Sets the line spacing to 1.15 lines." -msgstr "" +msgstr "Set linjeavstanden til 1,15 linjer. " #. 5SLdx #: 05030100.xhp @@ -20930,7 +20903,7 @@ "hd_id3146316\n" "help.text" msgid "Activate page line-spacing" -msgstr "" +msgstr "Slå på «Lås til registerlinjene»" #. ckCgA #: 05030100.xhp @@ -20939,7 +20912,7 @@ "par_id3156315\n" "help.text" msgid "Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the Use page line-spacing option for the current page style. Choose Format - Page Style, click on the Page tab, and then select the Use page line-spacing box in the Layout settings section." -msgstr "" +msgstr "Justerer grunnlinja for kvar tekstlinje til eit loddrett rutenett slik at alle linjene får den same høgda. For å bruka denne funksjonen, må du først slå på Lås til registerlinjene for den gjeldande sidestilen. Vel Format → Sidestil, klikk på fana Side og vel så Bruk «Lås til registerlinjene» i feltet Utforminngsinnstillingar." #. qLQP7 #: 05030100.xhp @@ -22919,7 +22892,7 @@ "hd_id3151318\n" "help.text" msgid "Fit object to paper format" -msgstr "" +msgstr "Tilpass objektet til papirformatet" #. AEasi #: 05040200.xhp @@ -25907,7 +25880,7 @@ "par_id3149827\n" "help.text" msgid "Creates a new line style using the current settings. Enter a name for the new line style." -msgstr "" +msgstr "Lagar ei ny linje med dei gjeldande innstillingane. Skriv inn eit namn for den nye linjestilen." #. 6Yvch #: 05200200.xhp @@ -27347,7 +27320,7 @@ "par_id3145068\n" "help.text" msgid "Icon Add Shadow" -msgstr "" +msgstr "Ikon Legg til skugge" #. 6XJUi #: 05210600.xhp @@ -27635,7 +27608,7 @@ "tit\n" "help.text" msgid "Pattern" -msgstr "" +msgstr "Mønsterelement" #. 5FVqC #: 05210800.xhp @@ -27644,7 +27617,7 @@ "bm_id431592861834899\n" "help.text" msgid "pattern;areapattern;backgroundbackground;patternbackground;area" -msgstr "" +msgstr "mønster;områdemønster;bakgrunnbakgrunn;mønsterbakgrunn;område" #. S8BBE #: 05210800.xhp @@ -27653,7 +27626,7 @@ "hd_id801592861657875\n" "help.text" msgid "Pattern" -msgstr "" +msgstr "Mønster" #. qLwKU #: 05210800.xhp @@ -27662,7 +27635,7 @@ "par_id3153626\n" "help.text" msgid "Fills the object with a simple two color pattern selected on this page." -msgstr "" +msgstr "Fyller objektet med eit enkelt tofarga mønster vald på denne sida." #. p5uGC #: 05210800.xhp @@ -27671,7 +27644,7 @@ "hd_id3159147\n" "help.text" msgid "Pattern" -msgstr "" +msgstr "Mønster" #. KW3Ah #: 05210800.xhp @@ -27680,7 +27653,7 @@ "par_id3149955\n" "help.text" msgid "Lists the available patterns. You can also modify or create your own pattern." -msgstr "" +msgstr "Lister ut dei tilgjengelege mønstra. Du kan også endra og laga dine eigne mønster." #. rpQaV #: 05210800.xhp @@ -27689,7 +27662,7 @@ "par_id161584528499683\n" "help.text" msgid "To rename a pattern, select the pattern, right-click and choose Rename. To delete a pattern, select the pattern, right-click and choose Delete." -msgstr "" +msgstr "Du kan endra namnet på eit mønster ved å merkja mønsteret, høgreklikka og velja Endra namn. Du kan sletta eit mønster ved å merkja det, høgreklikka og velja Slett." #. VrE5t #: 05210800.xhp @@ -27698,7 +27671,7 @@ "hd_id3153823\n" "help.text" msgid "Add" -msgstr "" +msgstr "Legg til" #. 8fyh4 #: 05210800.xhp @@ -27707,7 +27680,7 @@ "par_id3148924\n" "help.text" msgid "Adds a custom pattern to the current list. Specify the properties of your pattern, and then click this button." -msgstr "" +msgstr "Legg eit eigendefinert mønster til den gjeldande lista. Oppgje eigenskapane til mønsteret og trykk på denne knappen." #. 5waZ4 #: 05210800.xhp @@ -27716,7 +27689,7 @@ "hd_id3147620\n" "help.text" msgid "Modify" -msgstr "" +msgstr "Endra" #. BSeBy #: 05210800.xhp @@ -27725,7 +27698,7 @@ "par_id3156023\n" "help.text" msgid "Applies the current pattern properties to the selected pattern. If you want, you can save the pattern under a different name." -msgstr "" +msgstr "Brukar eigenskapane frå det gjeldande mønsteret til mønsteret du har valt. Mønsteret kan lagrast under eit anna namn om du vil." #. WCFwi #: 05210800.xhp @@ -27734,7 +27707,7 @@ "hd_id3156042\n" "help.text" msgid "Options" -msgstr "" +msgstr "Innstillingar" #. CVD9L #: 05210800.xhp @@ -27743,7 +27716,7 @@ "par_id3147291\n" "help.text" msgid "Draw or modify a pattern." -msgstr "" +msgstr "Teikna eller endra eit mønster." #. ruCpD #: 05210800.xhp @@ -27752,7 +27725,7 @@ "hd_id3147834\n" "help.text" msgid "Pattern Editor" -msgstr "" +msgstr "Mønsterredigering" #. rFfJm #: 05210800.xhp @@ -27761,7 +27734,7 @@ "par_id3147010\n" "help.text" 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 "" +msgstr "Teikna mønsteret på eit område på 8 × 8 pikslar. Trykk på ein piksel i mønsteret for å slå han på, trykk igjen for å slå han av." #. hNAPN #: 05210800.xhp @@ -27770,7 +27743,7 @@ "hd_id3155355\n" "help.text" msgid "Foreground Color" -msgstr "" +msgstr "Forgrunnsfarge" #. sHjjw #: 05210800.xhp @@ -27779,7 +27752,7 @@ "par_id3156410\n" "help.text" msgid "Set the color of the activated pattern pixels." -msgstr "" +msgstr "Set fargen på den aktiverte mønsterpikselen." #. nh8wk #: 05210800.xhp @@ -27788,7 +27761,7 @@ "hd_id3155449\n" "help.text" msgid "Background Color" -msgstr "" +msgstr "Bakgrunnsfarge" #. JqSDi #: 05210800.xhp @@ -27797,7 +27770,7 @@ "par_id3152909\n" "help.text" msgid "Set the color of the deactivated pattern pixels." -msgstr "" +msgstr "Set fargen på den deaktiverte mønsterpikselen." #. fZrDg #: 05220000.xhp @@ -28148,7 +28121,7 @@ "tit\n" "help.text" msgid "Position and Size (Text Box and Shape)" -msgstr "" +msgstr "Plassering og storleik (tekstboks og form)" #. rrFri #: 05230100.xhp @@ -28202,7 +28175,7 @@ "par_id891602774200160\n" "help.text" msgid "Coordinate axes start at column A - row 1." -msgstr "" +msgstr "Koordinataksane byrjar i kolonne A - rad 1." #. TZgsN #: 05230100.xhp @@ -28211,7 +28184,7 @@ "par_id711602774229336\n" "help.text" msgid "X-coordinates are negative in a \"right-to-left\" table." -msgstr "" +msgstr "X-koordinata er negative i ein «høgre-til-venstre»-tabell." #. FkhZd #: 05230100.xhp @@ -28220,7 +28193,7 @@ "par_id491602774311111\n" "help.text" msgid "Coordinates are relative to the origin. Left/top corner of the page content area is the initial default." -msgstr "" +msgstr "Koordinata er relative til nullpunktet.Øvre, venstre hjørne av sidefeltet er den opphavlege standarden." #. Snfmr #: 05230100.xhp @@ -28238,7 +28211,7 @@ "par_id3155616\n" "help.text" msgid "Enter the horizontal coordinate where the selected base point should be placed." -msgstr "" +msgstr "Skriv inn vassrett koordinat der det valde utgangspunktet skal vera." #. qHcAA #: 05230100.xhp @@ -28256,7 +28229,7 @@ "par_id3147373\n" "help.text" msgid "Enter the vertical coordinate where the selected base point should be placed." -msgstr "" +msgstr "Skriv inn loddrett koordinat der det valde utgangspunktet skal vera." #. AWT9v #: 05230100.xhp @@ -28274,7 +28247,7 @@ "par_id3147008\n" "help.text" msgid "The selected base point will be moved to the specified Position Y and Position X." -msgstr "" +msgstr "Det valde utgangspunktet vert flytt til oppgjeve Plassering Y og Plassering X." #. cE49F #: 05230100.xhp @@ -28283,7 +28256,7 @@ "par_id61602773901231\n" "help.text" msgid "The base point always returns to the left/top corner on reopening the dialog." -msgstr "" +msgstr "Utgangspunktet vender alltid tilbake til øvre, venstre hjørne når dialogvindauget vert opna på nytt." #. 2qMEV #: 05230100.xhp @@ -28301,7 +28274,7 @@ "par_id31507749753\n" "help.text" msgid "Specify the size of the selected object." -msgstr "" +msgstr "Set storleiken for det merkte objektet." #. oaVxX #: 05230100.xhp @@ -28310,7 +28283,7 @@ "par_id3150774\n" "help.text" msgid "Resize the selected object to the chosen width and height relative to the selected base point." -msgstr "" +msgstr "Endra storleiken på det merkte objektet til vald høgd og breidd i høve til det valde utgangspunktet." #. gfmHb #: 05230100.xhp @@ -28364,7 +28337,7 @@ "par_id3155341\n" "help.text" msgid "Maintains the width and height ratio when changing the width or height setting in the dialog box." -msgstr "" +msgstr "Beheld forholdet mellom høgd og breidd når du endrar ein av dei i dialogvindauget." #. RS3Rj #: 05230100.xhp @@ -28373,7 +28346,7 @@ "par_id501602631263504\n" "help.text" msgid "Only for shapes." -msgstr "" +msgstr "Berre for former." #. D3kAe #: 05230100.xhp @@ -28382,7 +28355,7 @@ "hd_id731601417097805\n" "help.text" msgid "To frame" -msgstr "" +msgstr "Til ramme" #. WRzKk #: 05230100.xhp @@ -28391,7 +28364,7 @@ "par_id181601417265098\n" "help.text" msgid "Anchors the selection to the surrounding frame." -msgstr "" +msgstr "Forankrar markeringa til den omgjevande ramma." #. uREAs #: 05230100.xhp @@ -28418,7 +28391,7 @@ "par_id501602631133297\n" "help.text" msgid "The selected base point remains fixed in the grid. The object is resized relative to that point." -msgstr "" +msgstr "Det valde utgangspunktet vert verande fast på rutenettet. Storleiken på objektet vert endra i høve til dette punktet." #. J2shX #: 05230100.xhp @@ -28445,7 +28418,7 @@ "par_id3149784\n" "help.text" msgid "Prevents changes to the position and size of the selected object." -msgstr "" +msgstr "Hindrar endringar i posisjon og storleik på det valde objektet." #. jqJ6D #: 05230100.xhp @@ -28526,7 +28499,7 @@ "par_id841603276770477\n" "help.text" msgid "Adapt is only available for Text Boxes. To adapt Shapes to text, use Format - Object - Text." -msgstr "" +msgstr "Tilpass er berre tilgjengeleg for tekstboksar. Bruk Format → Objekt → Tekst for å tilpassa forma til teksten." #. fqg3X #: 05230100.xhp @@ -28535,7 +28508,7 @@ "par_id591602522244128\n" "help.text" msgid " Format - Text." -msgstr "" +msgstr " Format → Tekst." #. F5Va7 #: 05230100.xhp @@ -28544,7 +28517,7 @@ "par_id3145606\n" "help.text" msgid "Positioning Objects" -msgstr "" +msgstr "Plassera objekt" #. jswWJ #: 05230100.xhp @@ -28553,7 +28526,7 @@ "par_id31456062468\n" "help.text" msgid "Rotating Objects" -msgstr "" +msgstr "Rotera objekt" #. NxdaT #: 05230100.xhp @@ -28562,7 +28535,7 @@ "par_id3145624967\n" "help.text" msgid "Rotation" -msgstr "" +msgstr "Rotering" #. UuCyG #: 05230300.xhp @@ -28598,7 +28571,7 @@ "hd_id3148983\n" "help.text" msgid "Pivot Point" -msgstr "" +msgstr "Pivotpunkt" #. Zzs3U #: 05230300.xhp @@ -28625,7 +28598,7 @@ "hd_id3145382\n" "help.text" msgid "Position X" -msgstr "" +msgstr "Posisjon X" #. yxcU2 #: 05230300.xhp @@ -28643,7 +28616,7 @@ "hd_id3155323\n" "help.text" msgid "Position Y" -msgstr "" +msgstr "Posisjon Y" #. oRJxp #: 05230300.xhp @@ -28661,7 +28634,7 @@ "hd_id3153332\n" "help.text" msgid "Default settings" -msgstr "" +msgstr "Standardinnstillingar" #. icmC7 #: 05230300.xhp @@ -28679,7 +28652,7 @@ "hd_id3146847\n" "help.text" msgid "Rotation Angle" -msgstr "" +msgstr "Rotasjonsvinkel" #. owCBC #: 05230300.xhp @@ -28715,7 +28688,7 @@ "hd_id3148474\n" "help.text" msgid "Default settings" -msgstr "" +msgstr "Standardinnstillingar" #. EvNrr #: 05230300.xhp @@ -28742,7 +28715,7 @@ "bm_id3149988\n" "help.text" msgid "slanting draw objectsdraw objects; slantingareas; slantingshapes; control pointsdraw objects; control points" -msgstr "" +msgstr "skrå teikneobjektteikneobjekt; skråstillingområde; skråstillingformer; kontrollpunktteikneobjekt; kontrollpunkt" #. DxadW #: 05230400.xhp @@ -28832,7 +28805,7 @@ "par_id3153683\n" "help.text" msgid "Enter the angle of the slant axis.. The slant angle relates to how much an object inclines or slants from its normal vertical position." -msgstr "" +msgstr "Skriv inn vinkelen på skråaksane. Hellingsvinkelen er relatert til kor mykje eit objekt skrånar eller kor mykje det heller frå den normale, loddrette plasseringa." #. cCmPK #: 05230400.xhp @@ -28841,7 +28814,7 @@ "hd_id621600964074859\n" "help.text" msgid "Control points 1 and 2" -msgstr "" +msgstr "Kontrollpunkt 1 og 2" #. XXRdh #: 05230400.xhp @@ -28850,7 +28823,7 @@ "par_id551600994115345\n" "help.text" msgid "Some shapes have a special handle which you can drag to change the properties of the shape. The mouse pointer changes to a hand symbol over these special handles. The control points refers to the X and Y coordinates of the position of these handles. When the object has no handle, the values in these boxes are zero. When the shape has one control point, the coordinates of the other control point are zero." -msgstr "" +msgstr "Nokre former har eit spesielt handtak som du kan dra i for å endra utsjånaden på figuren. Når musepeikaren er over eit kontrollpunkt, vert han endra til ei hand. Når objektet ikkje har kontrollpunkt, vert verdien i felta sett til null. Har forma berre eitt kontrollpunkt, vert koordinata for det andre kontrollpunktet sett til null." #. fbzxN #: 05230400.xhp @@ -28859,7 +28832,7 @@ "par_id841600966950007\n" "help.text" msgid "Enter a value to set the X and Y coordinates of the control points of the object." -msgstr "" +msgstr "Skriv inn ein verdi for X- og Y-koordinata for kontrollpunkta." #. wGED2 #: 05230400.xhp @@ -28868,7 +28841,7 @@ "par_id911600993420542\n" "help.text" msgid "Control points in a shape" -msgstr "" +msgstr "Kontrollpunkt på ei form" #. m8GMy #: 05230500.xhp @@ -43331,7 +43304,7 @@ "par_id651526423393786\n" "help.text" msgid "The signature line displays an horizontal line, a location mark, the name, title and email of signer." -msgstr "" +msgstr "Signatulinja viser ei vassrett linje, lokaliseringsmerke, personnamn, tittel og e-postadressa til underskrivaren." #. auwte #: addsignatureline.xhp @@ -43385,7 +43358,7 @@ "par_id111526467993387\n" "help.text" 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 "" +msgstr "Skriv inn ei e-postadresse til underskrivaren. Adressa vert ikkje vist i signaturlinja i grafikkfeltet, med vert brukt til den digitale signaturen." #. EpDAG #: addsignatureline.xhp @@ -43448,7 +43421,7 @@ "tit\n" "help.text" msgid "Certificate Paths" -msgstr "" +msgstr "Sertifikatstiar" #. FBox6 #: certificatepath.xhp @@ -43457,7 +43430,7 @@ "bm_id211594767045571\n" "help.text" msgid "digital signatures;certificate path certificate path" -msgstr "" +msgstr "digitale signaturar;sertifikatsti sertifikatsti" #. MhnU5 #: certificatepath.xhp @@ -43466,7 +43439,7 @@ "hd_id141594763815174\n" "help.text" msgid "Certificate" -msgstr "" +msgstr "Sertifikat" #. BuRGD #: certificatepath.xhp @@ -43475,7 +43448,7 @@ "par_id841594763815175\n" "help.text" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Vel eller legg til den korrekte mappa med Network Security Services-sertifikata som skal brukast for digitale signaturar." #. vCwDA #: certificatepath.xhp @@ -43484,7 +43457,7 @@ "hd_id511594765946403\n" "help.text" msgid "Available Certificate Paths" -msgstr "" +msgstr "Tilgjengelege sertifikatstiar" #. NK4GB #: certificatepath.xhp @@ -43493,7 +43466,7 @@ "par_id981594766097073\n" "help.text" msgid "Shows the list of Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Viser lista over Network Security Services-sertifikat som skal brukast for digitale signaturar." #. DABZF #: certificatepath.xhp @@ -43502,7 +43475,7 @@ "hd_id741594764591263\n" "help.text" msgid "Select NSS path" -msgstr "" +msgstr "Vel NNS-sti" #. 8gaEP #: certificatepath.xhp @@ -43511,7 +43484,7 @@ "par_id851594766090600\n" "help.text" msgid "Opens a file picker dialog to add a new Network Security Services Certificate directory to the list." -msgstr "" +msgstr "Opnar eit dialogvindauge der du kan leggja til ei ny Network Security Services Certificate-mappe i lista." #. ViF5g #: digitalsignatures.xhp @@ -44582,7 +44555,7 @@ "tit\n" "help.text" msgid "Snap Guides" -msgstr "" +msgstr "Festelinjer" #. c8J5E #: guides.xhp @@ -44600,7 +44573,7 @@ "par_idN10562\n" "help.text" msgid "Snap Guides" -msgstr "" +msgstr "Festelinjer" #. XeU3j #: guides.xhp @@ -44609,7 +44582,7 @@ "par_id3146313\n" "help.text" msgid "Specifies the display options for snap guides." -msgstr "" +msgstr "Bestemmer visingsalternativa for festelinjer." #. R26xc #: guides.xhp @@ -44618,7 +44591,7 @@ "par_idN1057B\n" "help.text" msgid "Display Snap Guides" -msgstr "" +msgstr "Vis festelinjer" #. jQwEy #: guides.xhp @@ -44627,7 +44600,7 @@ "par_idN1057F\n" "help.text" msgid "Displays or hides snap guides that you can use to align objects on a page." -msgstr "" +msgstr "Vis eller gøym festelinjene som du kan bruka som ei hjelp til å justera objekt på ei side." #. Wpp35 #: guides.xhp @@ -44636,7 +44609,7 @@ "par_idN105C6\n" "help.text" msgid "Snap Guides to Front" -msgstr "" +msgstr "Festelinjer fremst" #. euVcC #: guides.xhp @@ -44645,7 +44618,7 @@ "par_idN105CA\n" "help.text" msgid "Displays the snap guides in front of the objects on the pageslidepage." -msgstr "" +msgstr "Viser festelinjene framføre objekta på sidalysbiletetsida." #. FELMB #: image_compression.xhp @@ -47597,7 +47570,7 @@ "bm_id761574111929927\n" "help.text" msgid "PDF export;digital signaturePDF export;sign PDF documentPDF export;time stamp" -msgstr "" +msgstr "PDF-eksport;digital signaturPDF-eksport;signera PDF-dokumentPDF-eksport;tidsstempel" #. ChX9A #: ref_pdf_export_digital_signature.xhp @@ -48146,7 +48119,7 @@ "hd_id2796411\n" "help.text" msgid "Archive (PDF/A, ISO 19005)" -msgstr "" +msgstr "Archive (PDF/A, ISO 19005)" #. ELsXa #: ref_pdf_export_general.xhp @@ -48155,7 +48128,7 @@ "par_id5016327\n" "help.text" msgid "Converts to the PDF/A-1b, PDF/A-2b, or PDF/A-3b format. All fonts used in the source document are embedded in the generated PDF file, and PDF tags are written. The primary purpose is to create an electronic document whose appearance is device and application independent, making it suitable for long term preservation." -msgstr "" +msgstr "Konverterar til PDF/A-1b, PDF/A-2b eller PDF/A-3b format. Alle skrifttypar i kjeldedokumentet vert bygde inn i den genererte PDF-fila og det vert skrive inn PDF-merke (taggar). Det viktigaste føremålet er å laga eit elektronisk dokument som er uavhengig av maskinvare og programvare slik at det er eigna for langtidslagring." #. RyRdK #: ref_pdf_export_general.xhp @@ -48164,7 +48137,7 @@ "par_id301602634061241\n" "help.text" msgid "PDF/A-2b is recommended for most users, because it allows for layers and transparency with shapes and images. It also compresses better (JPEG 2000) than PDF/A-1b, usually producing smaller files. PDF/A-3b is identical to PDF/A-2b, but also accepts embedding of other file formats." -msgstr "" +msgstr "PDF/A-2b vert tilrådd for dei fleste brukarane sidan formatet tillet lag og gjennomsiktige former og bilete. Det komprimerer også betre (JPEG 2000) enn PDF/A-1b og lagar normalt mindre filer. PDF/A-3b er identisk med PDF/A-2b, men godtek også innebygging av andre filformat." #. UTPZ7 #: ref_pdf_export_general.xhp @@ -48272,7 +48245,7 @@ "hd_id671602451425200\n" "help.text" msgid "Structure" -msgstr "" +msgstr "Struktur" #. FWYXV #: ref_pdf_export_general.xhp @@ -48281,7 +48254,7 @@ "par_id51602451783950\n" "help.text" msgid "Sets options for diverse features such as bookmarks, comments, page layout." -msgstr "" +msgstr "Set innstillingane for ulike funksjonar, som bokmerke, merknadar og sideutforming." #. ZbwvD #: ref_pdf_export_general.xhp @@ -48290,7 +48263,7 @@ "hd_id8257087\n" "help.text" msgid "Export outlines" -msgstr "" +msgstr "Eksporter disposisjonar" #. 72zLQ #: ref_pdf_export_general.xhp @@ -48299,7 +48272,7 @@ "par_id3479415\n" "help.text" 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 "" +msgstr "Vel å eksportera bokmerke i Writer-dokument som PDF-bokmerke. Bokmerke vert laga for alle disposisjonsavsnittae (Verktøy → Kapittelnummerering) og for alle elementa i innhaldslista som du har tildelt lenkjer i kjeldedokumentet." #. iTBMB #: ref_pdf_export_general.xhp @@ -48308,7 +48281,7 @@ "par_id71603283849925\n" "help.text" msgid "Only paragraphs with Outline level 1 - 10 will be exported. The name of the Paragraph Style is irrelevant. For example, the default version of Paragraph Style Title is not exported when its Outline level is Text Body. To see a paragraph’s Outline level, choose Format - Paragraph - Outline & Numbering tab." -msgstr "" +msgstr "Berre avsnitt med disposisjonsnivå 1 - 10 vert eksporterte. Namnet på avsnittsstilen er likegyldig. For eksempel vert standardversjonen av avsnittsstilen Tittel ikkje eksportert når disposisjonsnivået er Brødtekst. For å sjå eit avsnittsdisposisjonsnivå, vel du Format → Avsnitt → fana - Disposisjon og nummerering." #. PejFz #: ref_pdf_export_general.xhp @@ -48515,7 +48488,7 @@ "hd_id7464217\n" "help.text" msgid "Outlines and page" -msgstr "" +msgstr "Disposisjon og side" #. 8e4Tz #: ref_pdf_export_initial_view.xhp @@ -48794,7 +48767,7 @@ "par_id9302346\n" "help.text" msgid "Specify how to export outlines and hyperlinks in your document." -msgstr "" +msgstr "Bestemmer korleis bokmerke og lenkjer skal eksporterast i dokumentet." #. CDBGh #: ref_pdf_export_links.xhp @@ -48812,7 +48785,7 @@ "hd_id8296151\n" "help.text" msgid "Export outlines as named destinations" -msgstr "" +msgstr "Eksporter bokmerke som namngjevne mål" #. YmVwd #: ref_pdf_export_links.xhp @@ -49208,7 +49181,7 @@ "tit\n" "help.text" msgid "Universal Accessibility (PDF Export)" -msgstr "" +msgstr "Universal Accessibility (PDF-eksport)" #. 9h83z #: ref_pdf_export_universal_accessibility.xhp @@ -49217,7 +49190,7 @@ "bm_id791603045631184\n" "help.text" msgid "PDF export;Universal Accessibility" -msgstr "" +msgstr "PDF-eksport;universalt tilgjenge" #. EJegu #: ref_pdf_export_universal_accessibility.xhp @@ -49226,7 +49199,7 @@ "hd_id711602623643384\n" "help.text" msgid "Universal Accessibility (PDF/UA)" -msgstr "" +msgstr "Universalt tilgjenge (PDF/UA)" #. 5iM7L #: ref_pdf_export_universal_accessibility.xhp @@ -49235,7 +49208,7 @@ "par_id221602623934399\n" "help.text" msgid "Creates a universal accessibility-complaint PDF file that follows the requirements of PDF/UA (ISO 14289) specifications." -msgstr "" +msgstr "Lagar ei universell PDF-fil for tilgjengeklage som følgjer krava i PDF/UA (ISO 14289)-spesifikasjonane." #. 69kZa #: ref_pdf_export_universal_accessibility.xhp @@ -49244,7 +49217,7 @@ "par_id891603046173838\n" "help.text" msgid "then choose Universal Accessibility (PDF/UA)." -msgstr "" +msgstr "og vel så Universal Accessibility (PDF/UA)." #. zBYd6 #: ref_pdf_export_universal_accessibility.xhp @@ -49253,7 +49226,7 @@ "par_id151603044639549\n" "help.text" msgid "The specification defines the required structure and formatting of a document and PDF features that are better suited for accessibility. This specification can also be used to produce documents that achieve W3C's Web Content Accessibility Guidelines 2.0 (WCAG 2.0)." -msgstr "" +msgstr "Spesifikasjonen definerer den strukturen og formateringa som krevst av eit dokument og PDF-funksjonar som er betre eigna for tilgjenge. Denne spesifikasjonen kan også brukast for å laga eit dokument der lever opp til W3C retningslinjer for tilgang til nettinnhald (Web Content Accessibility Guidelines 2.0 (WCAG 2.0))." #. V8cE4 #: ref_pdf_export_universal_accessibility.xhp @@ -49262,7 +49235,7 @@ "par_id701603046818148\n" "help.text" msgid "The present implementation (January 2020) checks the following:" -msgstr "" +msgstr "Den nåverande implementeringa (januar 2020) kontrollerer dette:" #. 2EEdB #: ref_pdf_export_universal_accessibility.xhp @@ -49271,7 +49244,7 @@ "par_id601603042936801\n" "help.text" msgid "Document title is set." -msgstr "" +msgstr "Tittelen på dokumentet er sett." #. QsPya #: ref_pdf_export_universal_accessibility.xhp @@ -49280,7 +49253,7 @@ "par_id951603042978520\n" "help.text" msgid "Document language is set, or that all styles in use, have the language set." -msgstr "" +msgstr "Språket for dokumentet er sett, eller alle stilane som er i bruk har språket sett." #. oJPrg #: ref_pdf_export_universal_accessibility.xhp @@ -49289,7 +49262,7 @@ "par_id951603042984032\n" "help.text" msgid "All images, graphics, OLE objects have an \"alt\" text (or title in some objects)." -msgstr "" +msgstr "Alle bilete, grafikk og OLE-objekt har ein «alt»-tekst (eller tittel i nokre objekt)." #. LNFSf #: ref_pdf_export_universal_accessibility.xhp @@ -49307,7 +49280,7 @@ "par_id481603043007920\n" "help.text" msgid "Only integrated numbering is used. No manual numbering (e.g., writing \"1.\" \"2.\" \"3.\" at the beginning of paragraphs)." -msgstr "" +msgstr "Berre integrert nummerering vert brukt. Ingen manuell nummerering (for eksempel å skriva «1.» «2.» «3.» i byrjinga av avsnitta)." #. ADFrw #: ref_pdf_export_universal_accessibility.xhp @@ -49325,7 +49298,7 @@ "par_id521603043019328\n" "help.text" msgid "Contrast between text and background meets the WCAG specification." -msgstr "" +msgstr "Kontrasten mellom teksten og bakgrunnen følgjer WCAG-spesifikasjonen." #. SFkn5 #: ref_pdf_export_universal_accessibility.xhp @@ -49334,7 +49307,7 @@ "par_id71603043022999\n" "help.text" msgid "No blinking text." -msgstr "" +msgstr "Ingen blinkande tekst." #. NojG4 #: ref_pdf_export_universal_accessibility.xhp @@ -49343,7 +49316,7 @@ "par_id251603043029601\n" "help.text" msgid "No footnotes and endnotes." -msgstr "" +msgstr "Ingen fotnotar og sluttnotar." #. EMMCG #: ref_pdf_export_universal_accessibility.xhp @@ -49352,7 +49325,7 @@ "par_id101603043034257\n" "help.text" msgid "Headings must increase incrementally with no skips (e.g., cannot have Heading 1 to Heading 3, skipping Heading 2)." -msgstr "" +msgstr "Overskrifter må auka stegvis utan hopp. Du kan såleis ikkje gå frå Overskrift 1 til Overskrift 3 (altså hoppa over Overskrift 2)." #. vfTEE #: ref_pdf_export_universal_accessibility.xhp @@ -49361,7 +49334,7 @@ "par_id281603043041040\n" "help.text" msgid "Text does not convey additional meaning with (direct) formatting." -msgstr "" +msgstr "Tekst gjev ikkje noko meir meining med (direkte) formatering." #. V7hAY #: ref_pdf_export_universal_accessibility.xhp @@ -49370,7 +49343,7 @@ "par_id311603047235460\n" "help.text" msgid "Check Accessibility before trying to export with Tools - Check Accessibility" -msgstr "" +msgstr "Kontroller tilgjenget med Verktøy → Tilgjengekontroll før du prøvar å eksportere." #. ihxeF #: ref_pdf_export_user_interface.xhp @@ -49586,7 +49559,7 @@ "hd_id9053926\n" "help.text" msgid "Collapse Outlines" -msgstr "" +msgstr "Gøym strukturen" #. cKYhi #: ref_pdf_export_user_interface.xhp @@ -49595,7 +49568,7 @@ "hd_id1941892\n" "help.text" msgid "Show All" -msgstr "" +msgstr "Vis alle" #. m3Aft #: ref_pdf_export_user_interface.xhp @@ -49604,7 +49577,7 @@ "par_id341807\n" "help.text" msgid "Select to show all outline levels as bookmarks when the reader opens the PDF file." -msgstr "" +msgstr "Vel for å visa alle disposisjonsnivåa når lesaren opnar PDF-fila." #. MtH4p #: ref_pdf_export_user_interface.xhp @@ -49613,7 +49586,7 @@ "hd_id486770\n" "help.text" msgid "Visible levels" -msgstr "" +msgstr "Synlege nivå" #. r8MX6 #: ref_pdf_export_user_interface.xhp @@ -49622,7 +49595,7 @@ "par_id4850001\n" "help.text" msgid "Select to show bookmarks down to the selected level when the reader opens the PDF file." -msgstr "" +msgstr "Vel for å visa bokmerka ned til det valde nivået når lesaren opnar PDF-fila." #. 5AeZF #: ref_pdf_send_as.xhp @@ -49631,7 +49604,7 @@ "tit\n" "help.text" msgid "Email as PDF" -msgstr "" +msgstr "E-post som PDF" #. rAFEF #: ref_pdf_send_as.xhp @@ -49640,7 +49613,7 @@ "hd_id3146902\n" "help.text" msgid "Email as PDF" -msgstr "" +msgstr "E-post som PDF" #. 7Uvgd #: ref_pdf_send_as.xhp @@ -49649,7 +49622,7 @@ "par_id3150756\n" "help.text" msgid "Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an email sending window with the PDF as an attachment." -msgstr "" +msgstr "Opnar dialogvindauget «Lagra som PDF», eksporterer det gjeldande dokumentet i portabelt dokumentformat (PDF) og opnar eit vindauge for å senda e-post med PDF-fila som eit vedlegg." #. wTQMX #: securitywarning.xhp @@ -49874,7 +49847,7 @@ "hd_id201526432498222\n" "help.text" msgid "Signing Existing PDF files" -msgstr "" +msgstr "Underskriving av eksisterande PDF-filer" #. RM32g #: signexistingpdf.xhp @@ -50063,7 +50036,7 @@ "tit\n" "help.text" msgid "Time Stamp Authorities for Digital Signatures" -msgstr "" +msgstr "Tidsstemplings-autoritetar til digitale signaturar" #. HgFt5 #: timestampauth.xhp @@ -50072,7 +50045,7 @@ "bm_id371597437796483\n" "help.text" msgid "time stamp;digital signature digital signature;time stamp time stamp authority TSA time stamp for PDF digital signature" -msgstr "" +msgstr "tidsstempel;digital signatur digital signatur;tidsstempel tidsstempelutferdar TSA tidsstempel for PDF-digital signatur" #. QwKC7 #: timestampauth.xhp @@ -50081,7 +50054,7 @@ "hd_id901597433114069\n" "help.text" msgid "Time Stamp Authority" -msgstr "" +msgstr "Tidsstempelutferdar" #. L47NV #: timestampauth.xhp @@ -50090,7 +50063,7 @@ "par_id961597433114070\n" "help.text" msgid "Time Stamp Authorities (TSA) issue digitally signed timestamps (RFC 3161) that are optionally used during signed PDF export." -msgstr "" +msgstr "Tidsstempelutferdarar (TSA) sender ut digitalt signerte tidsstempel (RFC 3161) som kan brukast valfritt ved signering av PDF-eksport." #. jcBGy #: timestampauth.xhp @@ -50099,7 +50072,7 @@ "par_id571597434502189\n" "help.text" msgid "Adding a trusted timestamp to an electronic signature provides a digital seal of data integrity and a trusted date and time of when the transaction took place. Recipients of documents with a trusted timestamp can verify when the document was digitally or electronically signed, as well as verify that the document was not altered after the date the timestamp vouches for." -msgstr "" +msgstr "Legg du til eit klarert tidsstempel i ein elektronisk signatur, får du ei digital forsegling av dataintegritet og ein klarert dato og eit klarert klokkeslett for når transaksjonen vart utført. Mottakarar av dokument med eit klarert tidsstempel kan bekrefta når dokumentet vart digitalt eller elektronisk signert, i tillegg til å kontrollera at dokumentet ikkje vart endra etter datoen tidsstempelet gjeld for." #. HP6fQ #: timestampauth.xhp @@ -50108,7 +50081,7 @@ "par_id721597436315261\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Security - TSAs" -msgstr "" +msgstr "Vel %PRODUCTNAME → PreferensarVerktøy → Innstillingar → %PRODUCTNAME → Tryggleik → TSA-ar." #. n27rF #: timestampauth.xhp @@ -50117,7 +50090,7 @@ "hd_id281597438357127\n" "help.text" msgid "List of Time Stamp Authorities" -msgstr "" +msgstr "Liste over utferdarar av tidstempel" #. Msech #: timestampauth.xhp @@ -50126,7 +50099,7 @@ "par_id701597438367251\n" "help.text" msgid "Display the list of existing TSAs." -msgstr "" +msgstr "Viser ei liste over dei TSA-ane som finst." #. 2TESq #: timestampauth.xhp @@ -50135,7 +50108,7 @@ "par_idN106871\n" "help.text" msgid "Add" -msgstr "" +msgstr "Legg til" #. vZdyd #: timestampauth.xhp @@ -50144,7 +50117,7 @@ "par_idN1068B1\n" "help.text" msgid "Opens the Name dialog to enter a new Time Stamping Authority URL." -msgstr "" +msgstr "Opnar dialogvindauget Namn der du kan skriva inn adressa for ein ny tidsstempelutferdar." #. stnAc #: timestampauth.xhp @@ -50153,7 +50126,7 @@ "hd_id251597435168013\n" "help.text" msgid "Delete" -msgstr "" +msgstr "Slett" #. PPq6D #: timestampauth.xhp @@ -50162,7 +50135,7 @@ "par_id381597435161810\n" "help.text" msgid "Deletes the selected entry in the list. Deletion is immediate and does not display a confirmation dialog." -msgstr "" +msgstr "Slettar den merkte oppføringa frå lista. Slettinga skjer straks, utan stadfesting." #. m3D8J #: webhtml.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/02.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/02.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/02.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/02.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-01-23 09:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:52+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565284211.000000\n" #. Edm6o @@ -68,7 +68,7 @@ "par_id9547105\n" "help.text" msgid "If the current document uses a printer that is not the default printer for your operating system, the Print File Direct icon opens the Print dialog." -msgstr "Dersom dokumentet brukar ein annan skrivar enn standardskrivaren til operativsystemet, vert dialogvindauget Skriv ut opna når du trykkjer på Skriv ut fil direkte." +msgstr "Dersom dokumentet brukar ein annan skrivar enn standardskrivaren til operativsystemet, vil ikonet Skriv ut direkte opna dialogvindauget Skriv ut." #. JkNUh #: 01140000.xhp @@ -7916,7 +7916,7 @@ "tit\n" "help.text" msgid "Database Form Events" -msgstr "" +msgstr "Hendingar for databaseskjema" #. 67JbJ #: 01170202.xhp @@ -7925,7 +7925,7 @@ "bm_id3150499\n" "help.text" msgid "forms; events events;in database forms forms;database events" -msgstr "" +msgstr "skjema; hendingar hendingar;i databaseskjema skjema;databasehendingar" #. 4UQe2 #: 01170202.xhp @@ -7934,7 +7934,7 @@ "hd_id3150499\n" "help.text" msgid "Database Form Events" -msgstr "" +msgstr "Hendingar i databaseskjema" #. UDFJU #: 01170202.xhp @@ -7943,7 +7943,7 @@ "par_id3147043\n" "help.text" msgid "The Events tab page, allows you to assign a macro to certain events which occur in a database form." -msgstr "" +msgstr "På fana Hendingar kan du tilordna makroar til visse hendingar som kan skje i eit databaseskjema." #. Tw8Ez #: 01170202.xhp @@ -8015,7 +8015,7 @@ "par_id0409200920562590\n" "help.text" msgid "The events that are shown in the Events dialog cannot be edited directly. You can remove an event from the list by pressing the Del key." -msgstr "" +msgstr "Hendingane som vert viste i dialogvindauget «Hendingar» kan ikkje endrast direkte. Du kan sletta ei hending frå lista ved å trykkja på Delete-tasten." #. zFnar #: 01170202.xhp @@ -8033,7 +8033,7 @@ "bm_id311600955182139\n" "help.text" msgid "API;XUpdateListener" -msgstr "" +msgstr "API;XUpdateListener" #. PAUWN #: 01170202.xhp @@ -8051,7 +8051,7 @@ "par_id3149669\n" "help.text" msgid "The Before update event occurs before the control content changed by the user is written into the data source. The linked macro can, for example, prevent this action by returning FALSE." -msgstr "" +msgstr "Hendinga Før oppdatering vert utført før innhaldet i kontrollelementet som er endra av brukaren vert skrive til datakjelda. Den lenkja makroen kan mellom anna hindra handlinga ved å returnera USANN." #. CF9MK #: 01170202.xhp @@ -8078,7 +8078,7 @@ "bm_id601600955240219\n" "help.text" msgid "API;XResetListener" -msgstr "" +msgstr "API;XResetListener" #. vXXSb #: 01170202.xhp @@ -8096,7 +8096,7 @@ "par_id3155390\n" "help.text" msgid "The Prior to reset event occurs before a form is reset. Returning True approves the reset, returning False cancels the operation." -msgstr "" +msgstr "Hendinga Før tilbakestillinga skjer før eit skjema vert tilbakestilt. Når tilbakestillinga er godkjent, vert det returnert Sann, returnering av usann annullerer operasjonen." #. 6sgdu #: 01170202.xhp @@ -8150,7 +8150,7 @@ "bm_id361600961200031\n" "help.text" msgid "API;XSubmitListener API;XSubmissionVetoListener" -msgstr "" +msgstr "API;XSubmitListener API;XSubmissionVetoListener" #. UXPzb #: 01170202.xhp @@ -8168,7 +8168,7 @@ "par_id3159152\n" "help.text" msgid "The Before submitting event occurs before the form data is sent. Returning True approves the submission, False stops it." -msgstr "" +msgstr "Hendinga Før innsending skjer før dataskjemaet vert send. Returnering av Sann godkjenner innsendinga, Usann stoppar ho." #. uF4JK #: 01170202.xhp @@ -8177,7 +8177,7 @@ "bm_id472600961200142\n" "help.text" msgid "API;XLoadListener" -msgstr "" +msgstr "API;XLoadListener" #. jBWf3 #: 01170202.xhp @@ -8276,7 +8276,7 @@ "bm_id351600961291078\n" "help.text" msgid "API;XConfirmDeleteListener" -msgstr "" +msgstr "API;XConfirmDeleteListener" #. a9qCx #: 01170202.xhp @@ -8294,7 +8294,7 @@ "par_id3154988\n" "help.text" msgid "The Confirm deletion event occurs as soon as data has been deleted from the form. Return True to allow row deletion, False otherwise. For example, the linked macro can request confirmation in a dialog." -msgstr "" +msgstr "Hendinga Stadfest slettinga finn stad så snart dataa er sletta frå skjemaet.. Returnerer Sann når det er lov å sletta, elles Usann. For eksempel kan den lenkja makroen krevja stadfesting i eit dialogvindauge." #. wEtEF #: 01170202.xhp @@ -8303,7 +8303,7 @@ "bm_id411600961384949\n" "help.text" msgid "API;XRowSetApproveListener" -msgstr "" +msgstr "API;XRowSetApproveListener" #. qqitd #: 01170202.xhp @@ -8321,7 +8321,7 @@ "par_id3156007\n" "help.text" msgid "The Before record action event occurs before the current record or record set are changed. Return True when changing is allowed, otherwise False. For example, the linked macro can request confirmation in a dialog." -msgstr "" +msgstr "Handlinga Før posthandling vert slått på før den aktuelle posten eller settet av postar vert endra. Returnerer Sann når det er lov å endra, elles Usann. For eksempel kan den lenkja makroen krevja stadfesting i eit dialogvindauge." #. qsaCS #: 01170202.xhp @@ -8330,7 +8330,7 @@ "bm_id361601071200031\n" "help.text" msgid "API;XRowSetListener" -msgstr "" +msgstr "API;XRowSetListener" #. FgLFD #: 01170202.xhp @@ -8366,7 +8366,7 @@ "par_id3149664\n" "help.text" msgid "The Before record change event occurs before the current record pointer - SQL cursor - is changed. Return True when moving is allowed, otherwise False." -msgstr "" +msgstr "Hendinga Før endring av post skjer før den gjeldande postpeikaren – SQL-markøren – vert endra. Returnerer Sann når flyttinga er lov, elles Usann." #. vrG8D #: 01170202.xhp @@ -8393,7 +8393,7 @@ "bm_id881600961491605\n" "help.text" msgid "API;XDatabaseParameterListener" -msgstr "" +msgstr "API;XDatabaseParameterListener" #. nmEEy #: 01170202.xhp @@ -8411,7 +8411,7 @@ "par_id3147396\n" "help.text" msgid "The Fill parameters event occurs when the form to be loaded has parameters that must be filled out. For example, the data source of the form can be the following SQL command:" -msgstr "Hendinga Fyll parametrar dersom skjemaet som skal lastast inn har parametrar som må fyllast ut. For eksempel kan datakjelda i skjemaet innehalda denne SQL-kommandoen:" +msgstr "Hendinga Fyll parametrar dersom skjemaet som skal lastast inn har parametrar som må fyllast ut. For eksempel kan datakjelda i skjemaet innehalda denne SQL-kommandoen:" #. tC96e #: 01170202.xhp @@ -8429,7 +8429,7 @@ "par_id3149581\n" "help.text" msgid "Here :name is a parameter that must be filled out when loading. The parameter is automatically filled out from the parent form if possible. If the parameter cannot be filled out, this event is called and a linked macro can fill out the parameter. Return True when the execution of the parametrized statement should continue, False otherwise." -msgstr "" +msgstr "Her er :name ein parameter som må fyllast ut ved innlastinga. Parameteren vert fylt ut automatisk frå foreldre-skjemaet om det er mogleg. Er det ikkje mogleg, vert denne hendinga kalla opp og ein lenkja makro kan fylla ut parameteren. Returnerer Sann dersom utføringa av den parametrerte setninga skal halda fram, elles Usann." #. 78nYk #: 01170202.xhp @@ -8438,7 +8438,7 @@ "bm_id372700961200031\n" "help.text" msgid "API;XSQLErrorListener" -msgstr "" +msgstr "API;XSQLErrorListener" #. qbwER #: 01170202.xhp @@ -8465,7 +8465,7 @@ "hd_id351601902633144\n" "help.text" msgid "Vetoable events" -msgstr "" +msgstr "Hendingar som kan forbydast" #. ZLgBH #: 01170202.xhp @@ -8474,7 +8474,7 @@ "par_id311600962806301\n" "help.text" msgid "Macros can interrupt event execution when they return a boolean value: True allows the execution of the event to continue and False stops the event execution." -msgstr "" +msgstr "Makroar kan avbryta utføringa av hendingar når dei mottek ein logisk verdi: Sann gjer at utføringa kan halda fram, Usann stoppar utføringa." #. vMAAY #: 01170202.xhp @@ -8483,7 +8483,7 @@ "par_id881601902428903\n" "help.text" msgid "The following events are interruptable by returning False:" -msgstr "" +msgstr "Dei følgjande hendingane kan avbrytast ved å returnere Usann:" #. vZERE #: 01170202.xhp @@ -8492,7 +8492,7 @@ "par_id441601902102235\n" "help.text" msgid "Before record action" -msgstr "" +msgstr "Før posthandling" #. DWmSK #: 01170202.xhp @@ -8501,7 +8501,7 @@ "par_id51601902106123\n" "help.text" msgid "Before record change" -msgstr "" +msgstr "Før endring av post" #. kwyVg #: 01170202.xhp @@ -8510,7 +8510,7 @@ "par_id451601902107636\n" "help.text" msgid "Before submitting" -msgstr "" +msgstr "Før sending" #. dtBgY #: 01170202.xhp @@ -8519,7 +8519,7 @@ "par_id821601902108413\n" "help.text" msgid "Before update" -msgstr "" +msgstr "Før oppdatering" #. DfeUE #: 01170202.xhp @@ -8528,7 +8528,7 @@ "par_id81601902108958\n" "help.text" msgid "Fill parameters" -msgstr "" +msgstr "Fyllparameterar" #. Jj9wR #: 01170203.xhp @@ -8960,7 +8960,7 @@ "par_id3149568\n" "help.text" msgid "The subform is based on an SQL query; more specifically, on a Parameter Query. If a field name is entered in the Link master fields box, the data contained in that field in the main form is read to a variable that you must enter in Link slave fields. In an appropriate SQL statement, this variable is compared to the table data that the subform refers to. Alternatively, you can enter the column name in the Link master fields box." -msgstr "" +msgstr "Underskjemaet er basert på ei SQL-spørjing av typen parameterspørjing. Dersom eit feltnamn er skrive i Lenk saman hovudfelta, vert dataa frå feltet lagde inn i ein variabel som du må skriva inn i Lenk saman slavefelta. I eit tilsvarande SQL-uttrykk, vert denne variabelen samanlikna med tabelldataa som underskjemaet viser til. Du kan òg skriva inn kolonnenamnet i Lenk saman hovudfelta." #. KAQ4c #: 01170203.xhp @@ -9338,7 +9338,7 @@ "par_id3150040\n" "help.text" msgid "Toggles the Design mode on or off. This function is used to switch quickly between Design and User mode. Activate to edit the form controls, deactivate to use the form controls." -msgstr "" +msgstr "Slår utformingsmodus av og på. Denne funskajonen vert brukt for raskt å kunna velja mellom Utforming- og brukarmodus. Slå på for å redigera kontrollelementa i skjemaet, slå av for å bruka kontrollelementa." #. HQ3Ny #: 01170500.xhp @@ -10400,7 +10400,7 @@ "par_id3146130\n" "help.text" msgid "Opens forms in Design Mode so that the form can be edited." -msgstr "" +msgstr "Opnar skjema i utformingsmodus slik at dei kan redigerast." #. heWLU #: 01171000.xhp @@ -10679,7 +10679,7 @@ "par_id3143267\n" "help.text" msgid "Icon Styles" -msgstr "" +msgstr "Ikon Stilar" #. Cwybn #: 01230000.xhp @@ -11039,7 +11039,7 @@ "hd_id3154228\n" "help.text" msgid " Decrease Indent" -msgstr "" +msgstr " Gjer innrykket mindre" #. DCXbA #: 02130000.xhp @@ -11066,7 +11066,7 @@ "par_id3155338\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. 9iqpg #: 02130000.xhp @@ -11111,7 +11111,7 @@ "hd_id3148520\n" "help.text" msgid "Increase Indent" -msgstr "" +msgstr "Auk innrykket" #. FBggx #: 02140000.xhp @@ -11138,7 +11138,7 @@ "par_id3147576\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Icklon" #. bAyat #: 02140000.xhp @@ -11273,7 +11273,7 @@ "hd_id3109850\n" "help.text" msgid "Highlighting" -msgstr "" +msgstr "Utheving" #. TLSg8 #: 02160000.xhp @@ -11282,7 +11282,7 @@ "par_id3154927\n" "help.text" msgid "Applies the current highlight color to the background of a character style or text selection." -msgstr "" +msgstr "Legg den gjeldande uthevingsfargen til bakgrunnen for ein teiknstil eller eit tekstutval." #. E9d9L #: 02160000.xhp @@ -11291,7 +11291,7 @@ "par_id871592838003088\n" "help.text" msgid "If no text is selected, click the Highlight Color icon, select the text that you want to highlight, and then click the Highlight Color icon again. To change the highlight color, click the arrow next to the Highlight Color icon, and then click the color that you want." -msgstr "" +msgstr "Viss ingentekst er merkt, trykk på ikonet Uthevingsfarge, merk teksten som skal uthevast og trykk på Uthevingsfarge igjen. Du kan endra fargen ved å trykkja på pila like ved Uthevingsfarge og trykkja på den fargen du vil bruka." #. KrAa6 #: 02160000.xhp @@ -11300,7 +11300,7 @@ "par_id3147330\n" "help.text" msgid "Choose Format - Character - Highlighting tab." -msgstr "" +msgstr "Vel fana Format → Teikn → Utheving." #. 6YA7C #: 02160000.xhp @@ -11309,7 +11309,7 @@ "par_id61592838932801\n" "help.text" msgid "When editing a character style, choose Highlighting tab." -msgstr "" +msgstr "Når du redigerar ein teiknstil, vel fana Utheving" #. AkVGB #: 02160000.xhp @@ -11318,7 +11318,7 @@ "par_id3152551\n" "help.text" msgid "Icon Highlighting" -msgstr "" +msgstr "Ikon Utheving" #. gZTBs #: 02160000.xhp @@ -11912,7 +11912,7 @@ "par_id3148548\n" "help.text" msgid "Icon Line Ends" -msgstr "" +msgstr "Ikon Linjeslutt" #. RuXvo #: 05020000.xhp @@ -12443,7 +12443,7 @@ "bm_id3153089\n" "help.text" msgid "write protection on/offprotected documentsdocuments; read-onlyread-only documents; editingcursor;in read-only textread-only documents;cursorEdit Mode icon" -msgstr "" +msgstr "skrivevern av/påverna dokumentdokument; skrivevernaskriveverna dokument; redigeramarkør;i skriveverna tekstskriveverna dokument;markørikonet Redigeringsmodus" #. cQEWf #: 07070000.xhp @@ -12452,7 +12452,7 @@ "hd_id3148520\n" "help.text" msgid "Edit Mode" -msgstr "" +msgstr "Redigeringsmodus" #. B9CS6 #: 07070000.xhp @@ -12461,7 +12461,7 @@ "par_id3153089\n" "help.text" msgid "Enables you to edit a read-only document or database table. Use the Edit Mode icon to activate or deactivate the edit mode." -msgstr "" +msgstr "Gjev deg høve til å redigera eit skriveverna dokument eller ein databasetabell. Bruk ikonet Redigeringsmodus for å slå av eller på redigeringsmodus." #. HpbAm #: 07070000.xhp @@ -12470,7 +12470,7 @@ "par_id3145090\n" "help.text" msgid "Edit Mode Icon" -msgstr "" +msgstr "Ikon Redigeringsmodus" #. BeKLH #: 07070000.xhp @@ -12479,7 +12479,7 @@ "par_id3150694\n" "help.text" msgid "Edit Mode" -msgstr "" +msgstr "Redigeringsmodus" #. 2GUFC #: 07070000.xhp @@ -12488,7 +12488,7 @@ "par_id3147576\n" "help.text" msgid "You can enable a selection cursor in a read-only text document or in the Help. Choose Edit - Select Text or open the context menu of a read-only document and choose Select Text. The selection cursor does not blink." -msgstr "" +msgstr "Du kan slå på eit markeringsmerke i eit skriveverna tekstdokument eller i hjelp. Vel Rediger → Merk tekst eller opna sprettoppmenyen til eit skriveverna dokument og vel Merk tekst. Markeringsmerket blinkar ikkje." #. hGeVC #: 07070100.xhp @@ -13181,7 +13181,7 @@ "par_id3153049\n" "help.text" msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses." -msgstr "" +msgstr "Du kan redigera e-postadresser på E-postsida i dialogvindauget Hyperlenkje." #. mDsga #: 09070200.xhp @@ -13208,7 +13208,7 @@ "par_id3166460\n" "help.text" msgid "Assigns the specified email address to the hyperlink. Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the Recipient field." -msgstr "" +msgstr "Tilordnar den oppgjevne e-postadressa til hyperlenkja. Ved å trykkja på den nye hyperkoplinga i dokumentet vert det opna eit nytt meldingsdokument adressert til mottakaren som er sett i Mottakar-feltet." #. Hop8w #: 09070200.xhp @@ -13226,7 +13226,7 @@ "par_id3149514\n" "help.text" msgid "Hides or shows the data source browser. Drag the receiver's Email data field from the data source browser into the Recipient text field." -msgstr "" +msgstr "Gøymer eller viser lesaren for datakjelde. Dra mottakaren sitt datafelt E-post frå datakjeldelesaren inn i tekstfeltet Mottakar." #. AMsuz #: 09070200.xhp @@ -15521,7 +15521,7 @@ "par_id3148539\n" "help.text" msgid "Your search terms will be saved as long as the table or the form document is open. If you are running more than one search and you would like to repeat the search term, you can select a previously used search term from the combo box." -msgstr "" +msgstr "Søkjeorda vert lagra så lenge tabellen eller skjemadokumentet er ope. Dersom du køyrer meir enn eitt søk og vil søkja etter det same på nytt, kan du velja eit tidlegare utført søk frå kombinasjonsboksen." #. GkrL9 #: 12100200.xhp @@ -16673,7 +16673,7 @@ "bm_id571605452705033\n" "help.text" msgid "cell widths; using rulercell widths; using mouse" -msgstr "" +msgstr "cellebreidder; med linjalcellebreidder; med mus" #. EFuiR #: 13020000.xhp @@ -16727,7 +16727,7 @@ "par_id3156136\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. JJcBs #: 13020000.xhp @@ -16745,7 +16745,7 @@ "par_id3150774\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. Wr4CA #: 13020000.xhp @@ -17186,7 +17186,7 @@ "par_id3155535\n" "help.text" msgid "Click the icon again to return to normal mode, in which the changes in the New Query Design are synchronized with the permitted changes through SQL." -msgstr "" +msgstr "Trykk på ikonet igjen for å gå tilbake til normalmodus, der endringane i Ny spørjingsutforming vert synkroniserte med dei endringane som kan gjerast via SQL." #. tTG7m #: 14040000.xhp @@ -17213,7 +17213,7 @@ "par_id3159224\n" "help.text" msgid "Displays the Function row in the lower part of the design view of the Query Design window." -msgstr "" +msgstr "Viser Funksjon-rada nedst i utformingsvisinga til vindauget Spørjingsutforming." #. iGFfH #: 14040000.xhp @@ -17258,7 +17258,7 @@ "par_id3154232\n" "help.text" msgid "Displays the Table row in the lower part of the Query Design." -msgstr "" +msgstr "Viser linja Funksjon nedst i utformingsvisinga til vindauget Spørjingsutforming." #. t48DA #: 14050000.xhp @@ -17303,7 +17303,7 @@ "par_id3148731\n" "help.text" msgid "Displays the Alias row in the lower part of the Query Design." -msgstr "" +msgstr "Viser Alias-rada nedst i Spørjingsutforming." #. CcbaZ #: 14060000.xhp @@ -17357,7 +17357,7 @@ "par_id3154894\n" "help.text" msgid "Expands the created select statement of the SQL Query in the current column by the parameter DISTINCT. The consequence is that identical values occurring multiple times are listed only once." -msgstr "" +msgstr "Utvidar «select»-uttrykket i SQL-spørjinga i den gjeldande kolonnen med DISTINCT-parameteren. Resultatet er at like verdiar vert viste berre ein gong, sjølv om dei er lista fleire gongar." #. EXAFG #: 14070000.xhp @@ -17645,7 +17645,7 @@ "par_id3150935\n" "help.text" msgid "Click this field to open the Zoom dialog, where you can change the current zoom factor." -msgstr "" +msgstr "Trykk på dette feltet for å opna dialogvindauget Skalering og vising, der du kan endra den gjeldande skaleringsfaktoren." #. fyWyi #: 20030000.xhp @@ -17654,7 +17654,7 @@ "par_id3159194\n" "help.text" msgid "Right-click to open the context menu on this field to see a selection of available zoom factors." -msgstr "" +msgstr "Høgreklikk for å opna sprettoppmenyen til dette feltet for å sjå kva forstørringsfaktorar du kan velja mellom." #. ty7UE #: 20040000.xhp @@ -19400,7 +19400,7 @@ "par_id3154894\n" "help.text" msgid "Expands the created select statement of the SQL Query by the LIMIT X clause. This can be used to limit your SQL Query results to those that fall within the first X number of it." -msgstr "" +msgstr "Utvidar utvals-uttrykket SQL-spørjing med LIMIT X-avgrensinga. Dette kan brukast for å avgrensa SQL-spørjingsresultata til dei som fell innføre dei første X tala på treff." #. bbAX7 #: namedialog.xhp @@ -19409,7 +19409,7 @@ "tit\n" "help.text" msgid "Enter Name" -msgstr "" +msgstr "Skriv namn" #. pymwL #: namedialog.xhp @@ -19418,7 +19418,7 @@ "hd_id581597430248366\n" "help.text" msgid "Enter Name Dialog" -msgstr "" +msgstr "Dialogvindauget for å skriva inn namn" #. edfxG #: namedialog.xhp @@ -19427,7 +19427,7 @@ "par_id3153681\n" "help.text" msgid "Enter a name or any requested text on the label." -msgstr "" +msgstr "Skriv inn eit namn eller ein vilkårleg tekst på etiketten." #. Ae3Qb #: paintbrush.xhp @@ -19679,4 +19679,4 @@ "par_id911600993420542\n" "help.text" msgid "Control points in a shape" -msgstr "" +msgstr "Kontrollpunkt på ei form" diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/autopi.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/autopi.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/autopi.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1529490310.000000\n" #. hCAzG @@ -32,7 +32,7 @@ "bm_id3152551\n" "help.text" msgid "wizards; overviewAutoPilots, see wizards" -msgstr "vegvisarar; oversikt" +msgstr "vegvisarar; oversiktAutopilotar, sjå vegvisarar" #. uWmcx #: 01000000.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -2768,7 +2768,7 @@ "par_id170820161605428591\n" "help.text" msgid "The Remote files dialog appears. Select the remote file server." -msgstr "" +msgstr "Dialogvindauget Eksterne filer kjem fram. Vel den eksterne filtenaren." #. wQjzG #: cmis-remote-files.xhp @@ -6818,7 +6818,7 @@ "par_idN1065F\n" "help.text" msgid "You see the Query Design window." -msgstr "" +msgstr "Vindauget spørjingsutforming vert opna." #. xGFGr #: data_register.xhp @@ -7700,7 +7700,7 @@ "par_idN10617\n" "help.text" msgid "Data is stored in tables. As an example, your system address book that you use for your email addresses is a table of the address book database. Each address is a data record, presented as a row in that table. The data records consist of data fields, for example the first and the last name fields and the email field." -msgstr "" +msgstr "Data vert lagra i tabellar. For eksempel er systemadresseboka di, som du bruker til e-post-adresser, ein tabell i adresseboksdatabasen. Kvar adresse er ein datapost, presentert som ei rekkje i tabellen. Datapostane er bygd opp av datafelt, for eksempel felta «Fornamn», «Etternamn» og «E-post»." #. No5nx #: data_tables.xhp @@ -7844,7 +7844,7 @@ "par_idN10795\n" "help.text" msgid "You see the View Design window, which is almost the same as the Query Design window." -msgstr "" +msgstr "Dette opnar vindauget Visingsutforming som er nesten det same som vindauget for spørjingsutforming." #. bTx8G #: data_view.xhp @@ -8033,7 +8033,7 @@ "par_id3154909\n" "help.text" msgid "Create new form document, edit form controls, Form Wizard" -msgstr "" +msgstr "Lag eit nytt skjemadokument, rediger kontrollelement for skjema,Skjemavegvisar" #. sD4GB #: database_main.xhp @@ -8069,7 +8069,7 @@ "par_id3125864\n" "help.text" msgid "Create new query or table view, edit query structure" -msgstr "" +msgstr "Laga ny spørjing eller tabellvising, redigera spørjingsstruktur" #. A3f6p #: database_main.xhp @@ -8420,7 +8420,7 @@ "par_id7953123\n" "help.text" msgid "Example: Think about someone who wants to camouflage his identity to be a sender from your bank. He can easily get a certificate using a false name, then send you any signed email pretending he is working for your bank. You will get that email, and the email or the document within has the \"valid signed\" icon." -msgstr "" +msgstr "Eksempel: Tenk deg at ein eller annan ønskjer å kamuflera identiteten sin slik at det ser ut som han sender frå banken din. Han kan lett skaffa seg eit sertifikat ved å brua falskt namn og deretter senda deg ein e-post der han gjev opp at han er tilsett i banken din. Når du får e-posten, vil han vera merkt med ikonet «gyldig signatur»." #. DGz9C #: digital_signatures.xhp @@ -10283,7 +10283,7 @@ "hd_id3153561\n" "help.text" msgid "To make a button visible on a toolbar" -msgstr "" +msgstr "Slik gjer du ein knapp synleg i verktøylinja" #. c3Nvo #: edit_symbolbar.xhp @@ -10292,7 +10292,7 @@ "par_id3159157\n" "help.text" msgid "Open the context menu of the toolbar (right click) and choose Visible Buttons and then select the button you want to display." -msgstr "" +msgstr "Opna sprettoppmenyen for verktøylinja (høgreklikk) og vel Synlege knappar og merk den knappen du vil visa." #. AdQVC #: edit_symbolbar.xhp @@ -10310,7 +10310,7 @@ "hd_id3151384\n" "help.text" msgid "To add a button to a toolbar" -msgstr "" +msgstr "Slik legg du til ein knapp i ei verktøylinje" #. NAZNp #: edit_symbolbar.xhp @@ -10319,7 +10319,7 @@ "par_id3147264\n" "help.text" msgid "Choose Tools - Customize, and click on the Toolbars tab." -msgstr "" +msgstr "Vel Verktøy → Tilpass og trykk på fana Verktøylinjer." #. p5667 #: edit_symbolbar.xhp @@ -10328,7 +10328,7 @@ "par_id3154071\n" "help.text" msgid "In the Target box, select the toolbar you want to change." -msgstr "" +msgstr "Vel verktøylinja du vil endra i nedtrekksmenyen Mål." #. aABvW #: edit_symbolbar.xhp @@ -10337,7 +10337,7 @@ "par_id3148797\n" "help.text" msgid "Select the command to be added in the Available Commands box. (Use the Category and/or Search boxes to restrict possibilities.)" -msgstr "" +msgstr "Vel den kommandoen som skal leggjast til i feltet Tilgjengelege kommandoar. Bruk felta Kategori og/eller Søk for å avgrensa vala." #. W6XK5 #: edit_symbolbar.xhp @@ -10346,7 +10346,7 @@ "par_id611603924436655\n" "help.text" msgid "Click the Right Arrow icon to add the selected command." -msgstr "" +msgstr "Trykk på symbolet Høgrepil for å leggja til den valde kommandoen." #. E4p3Y #: edit_symbolbar.xhp @@ -10355,7 +10355,7 @@ "par_id611603924900693\n" "help.text" msgid "The check box in the Assigned Commands list controls whether the command is visible on the toolbar." -msgstr "" +msgstr "Avkryssingsfeltet i lista over Tilordna kommandoar kontrollerer om kommandoen er synleg på verktøylinja eller ikkje." #. HcHB7 #: edit_symbolbar.xhp @@ -10364,7 +10364,7 @@ "par_id3152922\n" "help.text" msgid "You can rearrange the Assigned Commands list by selecting a command name and clicking Move Up and Move Down." -msgstr "" +msgstr "Du kan også endra rekkjefølgja elementa vert viste i i lista Tilordna kommandoar ved å merkja ein kommando og bruka knappane Pil opp og Pil ned til å endra rekkjefølgja." #. VgXfX #: edit_symbolbar.xhp @@ -10382,7 +10382,7 @@ "tit\n" "help.text" msgid "Sending Documents as Email" -msgstr "" +msgstr "Senda dokument som e-post" #. noFBE #: email.xhp @@ -10391,7 +10391,7 @@ "bm_id3153345\n" "help.text" msgid "documents; sending as emailsending; documents as emailemail attachmentsfiles; sending as emailtext documents;sending as emailspreadsheets; sending as emaildrawings; sending as emailpresentations; sending as emailattachments in emails" -msgstr "" +msgstr "dokument; senda som e-postsenda; dokument som e-poste-postvedleggfiler; senda som e-posttekstdokument;senda som e-postrekneark; senda som e-postteikningar; senda som e-postpresentasjonar; senda som e-postvedlegg i e-post" #. CU2Ym #: email.xhp @@ -10400,7 +10400,7 @@ "hd_id3153345\n" "help.text" msgid "Sending Documents as Email" -msgstr "" +msgstr "Senda dokument som e-post" #. Z3E7r #: email.xhp @@ -10409,7 +10409,7 @@ "par_id3154897\n" "help.text" msgid "Working in $[officename], you can send the current document as an email attachment." -msgstr "" +msgstr "Når du arbeidar med $[officename], kan du senda det gjeldande dokumentet som eit vedlegg i e-post." #. 8jsBd #: email.xhp @@ -10436,7 +10436,7 @@ "par_id3150986\n" "help.text" msgid "In your email program, enter the recipient, subject and any text you want to add, then send the email." -msgstr "" +msgstr "I e-postprogrammet skriv du inn mottakaren, emnet og teksten du vil leggja til og sender e-posten." #. XdVXq #: email.xhp @@ -10445,7 +10445,7 @@ "par_id3595385\n" "help.text" msgid "In case you want to send the email to a recipient who only has software that cannot read the OpenDocument format, you can send the current document in an often used proprietary format.
For a text document, choose File - Send - Email as Microsoft Word. For a spreadsheet, choose File - Send - Email as Microsoft Excel. And for a presentation, choose File - Send - Email as Microsoft PowerPoint.
If you want to send the document as a read-only file, choose File - Send - Email as PDF.
These commands do not change your current document. Only a temporary copy is created and sent." -msgstr "" +msgstr "Dersom du vil senda e-posten til ein mottakar som ikkje har program for å opna OpenDocument-formatet, kan du senda dokumentet i eit mykje brukt merkevareprodukt sitt format.
For tekstdokument vel du for eksempel Fil → Send → E-post som Microsoft Word. For rekneark kan du velja Fil → Send → E-post som Microsoft Excel og for presentasjonar via Fil → Send → E-post som Microsoft PowerPoint.
Ønskjer du å senda dokumentet i eit skriveverna format, vel Fil → Send → E-post som PDF.
Desse kommandoane endrar ikkje dokumentet. Det som vert sendt er ein mellombels kopi." #. MK28A #: error_report.xhp @@ -10454,7 +10454,7 @@ "tit\n" "help.text" msgid "Crash Report Tool" -msgstr "" +msgstr "Feilmeldingsverktøy" #. uvF7J #: error_report.xhp @@ -10463,7 +10463,7 @@ "bm_id3150616\n" "help.text" msgid "Crash Report Tool reports;crash reports crash reports activating;Crash Report Tool" -msgstr "" +msgstr "Feilmeldingsverktøy rapportar;feilrapportar krasjrapportar slå på;feilmeldingsverktøy" #. sNc7D #: error_report.xhp @@ -10472,7 +10472,7 @@ "hd_id3150616\n" "help.text" msgid "Crash Report Tool" -msgstr "" +msgstr "Feilmeldingssverktøyet" #. ECi7s #: error_report.xhp @@ -10481,7 +10481,7 @@ "par_id3153345\n" "help.text" msgid "The Crash Report Tool starts automatically after a program crash occurs." -msgstr "" +msgstr "Feilmeldingsverktøyet vert opna automatisk når eit program krasjar." #. MGnxx #: error_report.xhp @@ -10490,7 +10490,7 @@ "par_id3147088\n" "help.text" msgid "The Crash Report Tool gathers necessary information that can help the program developers to improve the code, so that in later versions this error can possibly be avoided. Please help us to improve the software and send the generated crash report." -msgstr "" +msgstr "Feilmeldingsverktøyet samlar inn all informasjon som programutviklarane treng for å gjera koden betre, slik at dei kan hindra at den same feilen oppstår i seinare versjonar av programmet. Vi oppfordrar deg til å senda inn feilmeldinga som vert laga. På denne måten hjelper du oss til å gjera programma betre." #. aWFas #: error_report.xhp @@ -10499,7 +10499,7 @@ "hd_id3148538\n" "help.text" msgid "Starting the Crash Report Tool" -msgstr "" +msgstr "Startar feilrapporteringsverktøyet" #. nTAZD #: error_report.xhp @@ -10508,7 +10508,7 @@ "par_id3149811\n" "help.text" msgid "With most program crashes the Crash Report Tool will start automatically." -msgstr "" +msgstr "Ved dei fleste programkrasja vil feilrapporteringsverktøyet starta automatisk." #. ioZKn #: error_report.xhp @@ -10517,7 +10517,7 @@ "hd_id3159399\n" "help.text" msgid "Sending the Crash Report" -msgstr "" +msgstr "Sender feilrapporten" #. QZiPi #: error_report.xhp @@ -10526,7 +10526,7 @@ "par_id711605615413339\n" "help.text" msgid "Select the checkbox if you want to restart %PRODUCTNAME in safe mode. Then click the Send Crash Report button." -msgstr "" +msgstr "Merk avkryssingsfeltet om du ønskjer å starta %PRODUCTNAME på nytt i sikker modus. Trykk deretter på knappen Send krasjrapporten." #. SPdCD #: error_report.xhp @@ -10535,7 +10535,7 @@ "par_id521605621252890\n" "help.text" msgid "If a crash report is sent successfully, then a dialog box will provide a URL for the report. To see the report, copy the URL and paste into a webbrowser." -msgstr "" +msgstr "Viss sendinga av krasjrapporten var vellukka, kjem det opp eit dialogvindauge med adressa til rapporten. Kopier denne adressa over i nettlesaren for å sjå rapporten." #. 3PFBB #: error_report.xhp @@ -10544,7 +10544,7 @@ "par_id3149670\n" "help.text" msgid "You will not get an answer to your crash report. If you need support, please visit Community Assistance for an overview of different possibilities." -msgstr "" +msgstr "Du får ikkje noko svar på krasjrapporten. Treng du hjelp, sjå innom Community Assistance for å få eit oversyn over dei ulike moglegheitene." #. jaz2y #: error_report.xhp @@ -10553,7 +10553,7 @@ "hd_id3150792\n" "help.text" msgid "What Data are Sent?" -msgstr "" +msgstr "Kva data vert sende?" #. CHASG #: error_report.xhp @@ -10562,7 +10562,7 @@ "par_id3154366\n" "help.text" msgid "The crash report sends information about the error type that caused the crash and the process memory contents at the time of the crash. The memory contents include: a list of loaded libraries and their version number; a list of the current threads with the contents of their stack memory and processor register states. The memory trace is gathered locally by standard system tools: dbghelp.dll on Windows systems; clone(), ptrace() and /proc directory on Linux systems; Apple's Crash Reporter on Mac systems." -msgstr "" +msgstr "Krasjrapporten sender informasjon om feiltypen som var årsaka til krasjet og innhaldet av prosessminnet då krasjet oppstod. Minneinnhaldet inneheld ei liste over lasta bibliotek og versjonsnummeret deira, ei liste over gjeldande trådar med innhaldet i deira i stakkminnet og prosessorregistertilstandar. Minnesporet vert samla lokalt av standard systemverktøy: dbghelp.dll på Windows-system og i katalogane clone (), ptrace ( og proc på Linux-system, Apples Crash Reporter på Mac-system." #. yu8Rq #: error_report.xhp @@ -10571,7 +10571,7 @@ "par_id731607157836334\n" "help.text" msgid "Information is also sent about the %PRODUCTNAME version, the operating system name and version, and the computing hardware (CPU identification; graphics device and driver)." -msgstr "" +msgstr "Det vert også sendt informasjon om versjonen av %PRODUCTNAME, namnet på og versjonen av operativsystemet og maskinvarene (CPU-identifisering, grafisk utstyr og drivar) brukte i datamaskinen." #. oCk4J #: error_report.xhp @@ -10580,7 +10580,7 @@ "par_id3150504\n" "help.text" msgid "The crash report is anonymous. No identification information is sent and no document content is sent. The report data are sent as a multipart HTTP POST request." -msgstr "" +msgstr "Krasjrapporten er anonym. Det vert ikkje sendt opplysningar som kan identifisera deg eller maskinen, heller ikkje noko av dokumentinnhaldet. Dataa vert sende som ei multipart HTTP POST spørjing." #. uD7Ga #: export_ms.xhp @@ -11642,7 +11642,7 @@ "par_id951604586347866\n" "help.text" msgid "Push Button Icon" -msgstr "" +msgstr "Ikon Trykknapp" #. 4GWCF #: formfields.xhp @@ -11678,7 +11678,7 @@ "par_idN107B2\n" "help.text" msgid "Right-click the button and choose Control Properties." -msgstr "" +msgstr "Høgreklikk på knappen og vel Kontrolleigenskapar." #. Atf22 #: formfields.xhp @@ -11732,7 +11732,7 @@ "par_idN10828\n" "help.text" msgid "Right-click the button and choose Form Properties." -msgstr "" +msgstr "Høgreklikk på knappen og vel Skjemaeigenskapar." #. kGATC #: formfields.xhp @@ -12533,7 +12533,7 @@ "par_id3147008\n" "help.text" msgid "Choose %PRODUCTNAME - PreferencesTools - Options - Load/Save - General and specify in the Save URLs relative to field if $[officename] creates relative or absolute hyperlinks. Relative linking is only possible when the document you are working on and the link destination are on the same drive." -msgstr "" +msgstr "Vel %PRODUCTNAME → PreferansarVerktøy → InnstillingarLast inn/lagra → Generelt og merk av i feltet Lagra nettadresser relativt til for at $[officename] skal lagranettadresser som relative eller absolutte hyperlenkjer. Relativ lenkjing er berre mogleg når dokumentet du arbeider på og lenkjemålet er på det same lagringsmediet." #. Ue6zh #: hyperlink_rel_abs.xhp @@ -13406,7 +13406,7 @@ "par_id3155535\n" "help.text" msgid "To view a repertoire of all characters, choose Insert - Special Character." -msgstr "" +msgstr "Du kan sjå alle tilgjengelege teikn ved å velja Set inn → Spesialteikn." #. fFAT9 #: insert_specialchar.xhp @@ -19832,7 +19832,7 @@ "par_id381566315781439\n" "help.text" msgid "Generate QR Code for any text or URL." -msgstr "" +msgstr "Lagar QR-kode for tekst og nettadresser." #. SzeNM #: qrcode.xhp @@ -19868,7 +19868,7 @@ "par_id251566316519649\n" "help.text" msgid "The text from which to generate the QR code." -msgstr "" +msgstr "Teksten som QR-koden skal lagast frå." #. 6mj5K #: qrcode.xhp @@ -19904,7 +19904,7 @@ "par_id271566316757549\n" "help.text" msgid "Low: 7% of codewords can be restored." -msgstr "" +msgstr "Låg: 7 % av kodeorda kan gjenopprettast." #. gNLdh #: qrcode.xhp @@ -19913,7 +19913,7 @@ "par_id751566316834436\n" "help.text" msgid "Medium: 15% of codewords can be restored." -msgstr "" +msgstr "Medium: 15 % av kodeorda kan gjenopprettast." #. GQtTJ #: qrcode.xhp @@ -19922,7 +19922,7 @@ "par_id481566316843503\n" "help.text" msgid "Quartile: 25% of codewords can be restored." -msgstr "" +msgstr "Kvartil: 25 % av kodeorda kan gjenopprettast." #. QBceY #: qrcode.xhp @@ -19931,7 +19931,7 @@ "par_id641566316849901\n" "help.text" msgid "High: 30% of codewords can be restored." -msgstr "" +msgstr "Høg: 30 % av kodeorda kan gjenopprettast." #. F32vf #: qrcode.xhp @@ -19949,7 +19949,7 @@ "par_id981566316947064\n" "help.text" msgid "The width in dots of the border surrounding the QR code." -msgstr "" +msgstr "Breidda i punkt for ramma rundt QR-koden." #. kZPNW #: qrcode.xhp @@ -20156,7 +20156,7 @@ "par_id551562796791417\n" "help.text" msgid "Redacted Export (Black): finalize your document by converting the semitransparent redaction shapes to opaque black and export as pixels in the PDF file." -msgstr "" +msgstr "Sladda eksport (svart): fullfør dokumentet ved å konvertere dei halvgjennomsiktige sladdingane til ugjennomsiktig svart og eksportera som ei piksellisert PDF-fil." #. HSvWX #: redaction.xhp @@ -20165,7 +20165,7 @@ "par_id191562796822685\n" "help.text" msgid "Redacted Export (White): finalize your document by converting the semitransparent redaction shapes to opaque white shapes, and export as pixels in the PDF file." -msgstr "" +msgstr "Sladda eksport (kvit): fullfør dokumentet ved å konvertere dei halvgjennomsiktige sladdingane til ugjennomsiktig kvit og eksportera som ei piksellisert PDF-fil." #. 2w5mE #: redaction.xhp @@ -20255,7 +20255,7 @@ "par_id3146957\n" "help.text" msgid "Let's say you also emailed a copy of the report to a good friend and colleague who has done research on a similar topic in the past. You asked for a few suggestions, and the document is now returned by email with your colleague's suggestions." -msgstr "" +msgstr "Lat oss seia at du også har sendt ein kopi av rapporten i e-post til ein god ven og kollega, som har arbeidd med eit liknande emne tidlegare. Du har bede denne kollegaen leggja fram forslag til forbetringar og får eit redigert dokument tilbake via e-post." #. CoW6n #: redlining.xhp @@ -20813,7 +20813,7 @@ "hd_id3159201\n" "help.text" msgid "Protecting Changes" -msgstr "" +msgstr "Vernar mot endringar" #. jVeUw #: redlining_protect.xhp @@ -21803,7 +21803,7 @@ "tit\n" "help.text" msgid "Creating and Changing Default and Custom Templates" -msgstr "" +msgstr "Laga og endra standard- og tilpassa malar" #. CaTEi #: standard_template.xhp @@ -21812,7 +21812,7 @@ "bm_id3154285\n" "help.text" msgid "modifying, see changingchanging, see also editing and replacingdefault templates; changingdefault templates; creatingdefaults;documentscustom templatesupdating; templatesediting;templatestemplates;editing and savingsaving;templatesresetting;templates" -msgstr "" +msgstr "forandra, sjå endraendra, sjå også redigera og byta utgstandardmalar; endrastandardmalar; lagastandardar;dokumentilpassa malaroppdatera; malarredigera;malamalar;redigera og lagralagra;malanullstilla;mala" #. fZ8SR #: standard_template.xhp @@ -21821,7 +21821,7 @@ "hd_id3154285\n" "help.text" msgid "Creating and Changing Default and Custom Templates" -msgstr "" +msgstr "Laga og endra standardmalar og tilpassa malar" #. nWgSj #: standard_template.xhp @@ -21839,7 +21839,7 @@ "par_id3159152\n" "help.text" msgid "You can define document templates for each $[officename] application." -msgstr "" +msgstr "Du kan definera dokumentsmalar til kvart $[officename]-program." #. T3xE3 #: standard_template.xhp @@ -21848,7 +21848,7 @@ "hd_id3150792\n" "help.text" msgid "Creating a Default Template" -msgstr "" +msgstr "Laga ein standardmal" #. WaygD #: standard_template.xhp @@ -21857,7 +21857,7 @@ "par_id3154365\n" "help.text" msgid "First, open either an existing $[officename] template and modify it, or open a new document and edit it as necessary to create the desired template." -msgstr "" +msgstr "Først opnar du ein $[officename]-mal som finst frå før, eller du opnar eit nytt dokument. Du kan nå redigera dokumentet slik du vil ha den nye malen." #. bnC8i #: standard_template.xhp @@ -21866,7 +21866,7 @@ "par_id3145748\n" "help.text" msgid "Save the document by choosing File - Templates - Save as Template, then enter the template name, click the Set as default template checkbox, and save in the My Templates category." -msgstr "" +msgstr "Lagra dokumentet med Fil → Malar → Lagra som mal. I dialogvindauget skriv du inn namnet på malen og merkjer av for Set som standardmal før du lagrar han i kategorien Mine malar." #. td5TZ #: standard_template.xhp @@ -21875,7 +21875,7 @@ "par_id3146901\n" "help.text" msgid "The next time you open a new text document, the new document will be based on this new default template." -msgstr "" +msgstr "Neste gong du opnar eit nytt dokument, vil det bruka den nye standardmalen." #. MEA5R #: standard_template.xhp @@ -21884,7 +21884,7 @@ "hd_id751605458425017\n" "help.text" msgid "Modifying a Default Template" -msgstr "" +msgstr "Endra ein standardmal" #. 7bPEX #: standard_template.xhp @@ -21893,7 +21893,7 @@ "par_id3154011\n" "help.text" msgid "Choose File - Templates - Manage Templates." -msgstr "" +msgstr "Vel Fil → Malar → Ordna malane." #. mhwYW #: standard_template.xhp @@ -21902,7 +21902,7 @@ "par_id531605464645795\n" "help.text" msgid "Use Filter to select the type of document." -msgstr "" +msgstr "Bruk Filter for å velja dokumenttypen." #. qaBUc #: standard_template.xhp @@ -21911,7 +21911,7 @@ "par_id981605464830645\n" "help.text" msgid "The default template is marked with a green check mark. Right-click that template and choose Edit." -msgstr "" +msgstr "Standardmalen er merkt med ein grøn hake. Høgreklikk på denne malen og vel Rediger." #. Us6Qr #: standard_template.xhp @@ -21920,7 +21920,7 @@ "par_id211605464919603\n" "help.text" msgid "Make desired changes, choose File - Save, and close the document." -msgstr "" +msgstr "Gjer dei ønskte endringane og vel Fil → Lagra og lukk dokumentet." #. Mype2 #: standard_template.xhp @@ -21929,7 +21929,7 @@ "par_id851605464921341\n" "help.text" msgid "When you open a new document, the modified default template will be used." -msgstr "" +msgstr "Når du opnar eit nytt dokument, vert den endra malen brukt." #. SrDht #: standard_template.xhp @@ -21938,7 +21938,7 @@ "par_id131605483428241\n" "help.text" msgid "%PRODUCTNAME provides built-in presentation templates, which cannot be edited, renamed, or deleted. To modify a built-in presentation template, open a document using the template, modify, then save as a new template." -msgstr "" +msgstr "%PRODUCTNAME vert levert med innebygde malar for presentasjonar. Desse kan ikkje redigerast, gjevast nye namn eller slettast. Ønskjer du å endra ein innebygd mal, opnar du eit dokument som brukar malen og lagrar det med eit anna namn som ein ny mal." #. o4GyG #: standard_template.xhp @@ -21947,7 +21947,7 @@ "par_id461605483905608\n" "help.text" msgid "%PRODUCTNAME provides built-in templates for Writer, which cannot be edited, renamed, or deleted. To modify a built-in template, open a document using the template, modify, then save as a new template." -msgstr "" +msgstr "%PRODUCTNAME vert levert med innebygde malar for Writer. Desse kan ikkje redigerast, gjevast nye namn eller slettast. Ønskjer du å endra ein innebygd mal, opnar du eit dokument som brukar malen og lagrar det med eit anna namn som ein ny mal." #. S3sg4 #: standard_template.xhp @@ -21956,7 +21956,7 @@ "hd_id891605476755142\n" "help.text" msgid "Setting a Template as Default" -msgstr "" +msgstr "Setja ein mal som standard" #. YPWzX #: standard_template.xhp @@ -21965,7 +21965,7 @@ "par_id501605476796634\n" "help.text" msgid "" -msgstr "" +msgstr "" #. AvnDi #: standard_template.xhp @@ -21974,7 +21974,7 @@ "par_id711605476873605\n" "help.text" msgid "Right-click on template to be made default, choose Set as Default." -msgstr "" +msgstr "Høgreklikk på malen du vil bruka som standard og vel Set som standard." #. LNBjE #: standard_template.xhp @@ -21983,7 +21983,7 @@ "hd_id3153764\n" "help.text" msgid "Creating a Custom Template" -msgstr "" +msgstr "Laga ein tilpassa mal" #. eUBit #: standard_template.xhp @@ -21992,7 +21992,7 @@ "par_id231605475396242\n" "help.text" msgid "" -msgstr "" +msgstr "" #. DuAAp #: standard_template.xhp @@ -22001,7 +22001,7 @@ "par_id251605475503009\n" "help.text" msgid "Choose File - Templates - Save As Template, then enter the template name, choose a Template category, and save." -msgstr "" +msgstr "Vel Fil → Malar → Lagra som mal. Skriv eit namn på malen, vel ein malkategori og lagra han" #. FZqGj #: standard_template.xhp @@ -22010,7 +22010,7 @@ "hd_id311605475738848\n" "help.text" msgid "Modifying a Custom Template" -msgstr "" +msgstr "Endra ein tilpassa mal" #. CpDHT #: standard_template.xhp @@ -22019,7 +22019,7 @@ "par_id901605475822840\n" "help.text" msgid "" -msgstr "" +msgstr "" #. 3w93A #: standard_template.xhp @@ -22028,7 +22028,7 @@ "par_id51605476162735\n" "help.text" msgid "Right-click on the template to be modified, and choose Edit." -msgstr "" +msgstr "Høgreklikk på malen som skal endrast og vel Rediger." #. VMFLZ #: standard_template.xhp @@ -22037,7 +22037,7 @@ "par_id191605477448444\n" "help.text" msgid "" -msgstr "" +msgstr "" #. 2BZGR #: standard_template.xhp @@ -22046,7 +22046,7 @@ "hd_id3149109\n" "help.text" msgid "Saving a Template in the Template Folder" -msgstr "" +msgstr "Lagra ein mal i mappa for malar" #. eWjFn #: standard_template.xhp @@ -22055,7 +22055,7 @@ "par_id3146918\n" "help.text" msgid "You can save any document as a template by selecting \"Template\" file type in the Save dialog. To access the template from the Template Manager, save the template in the User Paths directory specified for Templates in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME - Paths. It is often easier to save a document with File - Templates - Save As Template, because it automatically places the template in the appropriate directory." -msgstr "" +msgstr "Du kan lagra kva dokument som helst som mal ved å velja filtypen «mal» i dialogvindauget for lagring.For å få tilgang til malen frå malhandsamaren, må du lagra malen i mappa for malar vist i Brukarstiar i Malar i %PRODUCTNAME → PreferansarVerktøy → Innstillingas → %PRODUCTNAME → Stiar. Som oftast er det enklare å lagra dokumentet som mal med Fil → Malar → Lagra som mal fordi malen då automatisk vert lagra i den rette mappa." #. 4VMWF #: standard_template.xhp @@ -22064,7 +22064,7 @@ "par_id271605485719890\n" "help.text" msgid "The Template Manager is the preferred method for working with templates. File - New - Templates and File - Templates - Manage Templates are equivalent for opening the Template Manager. Ctrl+Shift+N is the predefined shortcut key." -msgstr "" +msgstr "Den beste staden å arbeida med malar er malhandsamaren. Du kan opna malhandsamaren frå Fil → Ny(tt) → Malar og frå Fil → Malar → Ordna malane. Du kan også bruka tastesnarvegen Ctrl + Shift + N." #. 6YAP3 #: standard_template.xhp @@ -23045,7 +23045,7 @@ "par_id0820200802525413\n" "help.text" msgid "Click the Recent Documents button to show thumbnails of the most recent documents you opened in the right side of the window. Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath." -msgstr "" +msgstr "Knappen Tidlegare brukte filer viser til høgre i vindauget miniatyrar av dei dokumenta du har opna tidlegare. Hald musepeikaren over miniatyren for å utheva dokumentet , visa eit tips om kvar det er lagra. Du får då også opp eit symbol oppe til høgre som du kan trykkja på for å sletta miniatyren frå visinga og frå den gjeldande fillista. Klikk på miniatyren for å opna dokumentet." #. FRzQw #: startcenter.xhp @@ -23054,7 +23054,7 @@ "par_id0820200802626414\n" "help.text" msgid "You can remove an item from the Recent Documents list by clicking the button in the upper-right corner of the icon. The document itself is not deleted. You can remove all items on the Recent Documents list by pressing the Recent Documents dropdown button and selecting Clear Recent Documents." -msgstr "" +msgstr "Du kan fjerna eit element frå lista Tidlegare brukte dokument ved å trykkja på knappen oppe til høgre i ikonet. Sjølve dokumentet vert ikkje sletta, berre oppføringa. Du kan fjerna alle elementa i lista Tidlegare brukte dokument ved å trykkja på nedtrekksknappen i Tidlegare brukte dokument og velja Tøm lista over tidlegare brukte dokument." #. fALjn #: startcenter.xhp @@ -23063,7 +23063,7 @@ "hd_id41607696972873\n" "help.text" msgid "Working with Templates" -msgstr "" +msgstr "Arbeida med malar" #. kBTaf #: startcenter.xhp @@ -23072,7 +23072,7 @@ "par_id0820200803105045\n" "help.text" msgid "Click the Templates button to display templates for all applications in the right side of the window." -msgstr "" +msgstr "Trykk på nedtrekksknappen Malar for å visa på høgre sida i vindauget dei malane som finst." #. mDftQ #: startcenter.xhp @@ -23081,7 +23081,7 @@ "par_id0820200802626412\n" "help.text" msgid "Click the down arrow after the Templates button to open a menu where you can select a filter to display templates by application type or open the Template Manager dialog." -msgstr "" +msgstr "Trykk på nedoverpila etter knappen Malar for å opna ein meny der du kan velja eit filter for å visa malane etter programtype eller opna dialogvindauget for malhandsamaren." #. PcEEX #: startcenter.xhp @@ -23180,7 +23180,7 @@ "par_id0820200802626413\n" "help.text" msgid "Encrypted files will not display a thumbnail image of its content." -msgstr "" +msgstr "Krypterte filer vil ikkje visa eit miniatyrbilete av innhaldet." #. vRgcu #: tabs.xhp @@ -24116,7 +24116,7 @@ "par_id041620170723523966\n" "help.text" msgid "See Creating a Document Template for related information." -msgstr "" +msgstr "Du kan finna meir informasjon under Laga ein dokumentmal." #. AGfmF #: template_manager.xhp @@ -24251,7 +24251,7 @@ "bm_id3159233\n" "help.text" msgid "text; overwriting or inserting overwrite mode insert mode for entering text" -msgstr "" +msgstr "tekst; skriva over eller setja innoverskrivingsmodusinnsetjingsmodus for å skriva inn tekst" #. AWrGk #: textmode_change.xhp @@ -24260,7 +24260,7 @@ "hd_id3159233\n" "help.text" msgid " Switching Between Insert Mode and Overwrite Mode " -msgstr "" +msgstr "Veksla mellom «Set inn modus» og «Overskriv-modus»" #. qhFEZ #: textmode_change.xhp @@ -24278,7 +24278,7 @@ "par_id3153031\n" "help.text" msgid "Press Insert to toggle between overwrite mode and insert mode. The current mode is displayed on the Status Bar. The text cursor must be enabled in the cell or in the input line." -msgstr "" +msgstr "Trykk Insert for å skifta mellom overskriving og innsetjing. Den gjeldande modus vert vist på statuslinja.Tekstmarkøren må vera aktiv i ei celle eller på innskrivingslinja." #. Hd4Vg #: textmode_change.xhp @@ -24305,7 +24305,7 @@ "par_id3145673\n" "help.text" msgid "Insert" -msgstr "" +msgstr "Set inn" #. DjbYz #: textmode_change.xhp @@ -24314,7 +24314,7 @@ "par_id3154307\n" "help.text" msgid " Insert mode is active. The area in the status bar is blank, when Insert mode is active. The text cursor is a blinking vertical line. Click on the area to activate the overwrite mode." -msgstr "" +msgstr "Innsettingsmodus er slått på.Området på statuslinja er blankt når innsetjingsmodus er slått på.Tekstmarkøren er ein blinkande, loddrett strek. Trykk på området for å slå på overskrivingsmodus." #. XFgYi #: textmode_change.xhp @@ -24323,7 +24323,7 @@ "par_id3150984\n" "help.text" msgid "Overwrite" -msgstr "" +msgstr "Overskriv" #. idAmv #: textmode_change.xhp @@ -24332,7 +24332,7 @@ "par_id3148491\n" "help.text" msgid "The overwrite mode is active. The text cursor is a blinking block. Click on the area to activate insert mode." -msgstr "" +msgstr "Overskriving er slått på. Tekstmarkøren er ei blinkande blokk. Trykk på området for å slå på innsetjing." #. tHRqe #: textmode_change.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-27 19:52+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -3537,7 +3537,6 @@ #. inCeL #: 01010800.xhp -#, fuzzy msgctxt "" "01010800.xhp\n" "par_idN107A3\n" @@ -3858,7 +3857,7 @@ "par_id361606171335950\n" "help.text" msgid "If you experience graphical display problems (e.g., with the appearance of toolbar icons or drawing objects) and Skia is enabled, then you can try to disable Force Skia software rendering or disable Skia entirely." -msgstr "" +msgstr "Viss du opplever problem med grafisk vising (det vil seia med ikona og teikna objekt på verktøylinjene) og Skia er slått på, kan du prøva å slå av Tving fram Skia-programgjengjeving eller slå Skia heilt av." #. wPnrb #: 01010800.xhp @@ -3912,7 +3911,7 @@ "hd_id451605831585825\n" "help.text" msgid "from" -msgstr "" +msgstr "frå" #. tckLs #: 01010800.xhp @@ -4929,7 +4928,7 @@ "tit\n" "help.text" msgid "Email" -msgstr "" +msgstr "E-post" #. 8iAf5 #: 01020300.xhp @@ -4938,7 +4937,7 @@ "par_idN1054D\n" "help.text" msgid "Email" -msgstr "" +msgstr "E-post" #. zqXGG #: 01020300.xhp @@ -4947,7 +4946,7 @@ "par_idN1056B\n" "help.text" msgid "On UNIX systems, specifies the email program to use when you send the current document as email." -msgstr "" +msgstr "Vel kva e-postprogram som skal brukast når du sender det gjeldande dokumentet som ein e-post på UNIX-system." #. DFhk6 #: 01020300.xhp @@ -4956,7 +4955,7 @@ "par_idN10576\n" "help.text" msgid "Email program" -msgstr "" +msgstr "E-postprogram" #. KBusD #: 01020300.xhp @@ -4965,7 +4964,7 @@ "par_idN1057A\n" "help.text" msgid "Enter the email program path and name." -msgstr "" +msgstr "Skriv inn stien til og namnet på e-postprogrammet." #. aP7pK #: 01020300.xhp @@ -4983,7 +4982,7 @@ "par_idN10595\n" "help.text" msgid "Opens a file dialog to select the email program." -msgstr "" +msgstr "Opnar eit fildialogvindauge der du kan velja e-postprogram." #. KhbuR #: 01030000.xhp @@ -7640,7 +7639,7 @@ "par_id411597332706569\n" "help.text" msgid "Introduce an identifier to improve accuracy of document comparison when done by word or by characters." -msgstr "" +msgstr "Introduserer ein identifikator for å gjera samanlikninga av dokument meir nøyaktig når ho vert gjort med ord eller teikn." #. SBPxy #: 01040800.xhp @@ -7649,7 +7648,7 @@ "par_id631597333767341\n" "help.text" msgid "These options are enabled when the Compare documents options are by words or by characters." -msgstr "" +msgstr "Desse vala vert slått på når samanlikninga av dokument er sett til å vera ordvis eller teiknvis." #. D8X8F #: 01040800.xhp @@ -7658,7 +7657,7 @@ "hd_id601597323591520\n" "help.text" msgid "Take it into account when comparing" -msgstr "" +msgstr "Ta det med ved samanlikning" #. AzAaF #: 01040800.xhp @@ -7667,7 +7666,7 @@ "par_id191597335836486\n" "help.text" msgid "Activates the document comparison using By word and By character options." -msgstr "" +msgstr "Slår på dokumentsamanlikninga med innstillinga ordvis eller teiknvis." #. BRybW #: 01040800.xhp @@ -7676,7 +7675,7 @@ "hd_id1001597323596761\n" "help.text" msgid "Ignore pieces of length" -msgstr "" +msgstr "Ignorer lengdestykke" #. jrR5L #: 01040800.xhp @@ -7685,7 +7684,7 @@ "par_id751597333853235\n" "help.text" msgid "Set the minimum number of characters to trigger a valid comparison." -msgstr "" +msgstr "Set inn det minste talet på teikn som skal utløysa ei gyldig samanlikning." #. hZ7bt #: 01040800.xhp @@ -7694,7 +7693,7 @@ "hd_id291597323603653\n" "help.text" msgid "Store it when changing the document" -msgstr "" +msgstr "Lagra det når dokumentet vert endra" #. GgGrD #: 01040800.xhp @@ -7703,7 +7702,7 @@ "par_id421597332757267\n" "help.text" msgid "Stores the random number in the document." -msgstr "" +msgstr "Lagrar det tilfeldige talet i dokumentet." #. CxgNP #: 01040900.xhp @@ -8144,7 +8143,7 @@ "hd_id691599000315902\n" "help.text" msgid "Show standardized page count" -msgstr "" +msgstr "Vis standardisert sideteljing" #. 67L2A #: 01040900.xhp @@ -8153,7 +8152,7 @@ "par_id581599002628645\n" "help.text" msgid "Editors and publishers often define a “standard” page as containing a specified number of characters or words. Mark this field to allows quick calculation of the number of these pages." -msgstr "" +msgstr "Mange definerer ei «standardside» med eit spesifisert tal på ord eller teikn. Merk dette feltet for raskt å rekna ut dette talet på desse sidene." #. eQjAd #: 01040900.xhp @@ -8162,7 +8161,7 @@ "hd_id511599000321915\n" "help.text" msgid "Characters per standardized page" -msgstr "" +msgstr "Teikn per standardisert side" #. AFkck #: 01040900.xhp @@ -8171,7 +8170,7 @@ "par_id271599002636069\n" "help.text" msgid "Set the number of characters for the standardized page." -msgstr "" +msgstr "Sett talet på teikn i ei standardisert side." #. RPuAH #: 01041000.xhp @@ -9197,7 +9196,7 @@ "par_id3151114\n" "help.text" msgid "Click a color. Click the None button to remove a background color." -msgstr "" +msgstr "Trykk på ein farge. Trykk knappen Ingen for å fjerna ein bakgrunnsfarge." #. YvDPU #: 01060000.xhp @@ -10736,7 +10735,7 @@ "par_id3155093\n" "help.text" msgid "Specifies that wildcards are enabled when searching and also for character string comparisons. This relates to the database functions, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH." -msgstr "" +msgstr "Spesifiserer at jokerteikn er slått på ved søkjinga og også ved samanlikning av tekststrengar. Dette gjeld databasefunksjonar og SLÅ.OPP, FINN.RAD, FINN.KOLONNE, SAMANLIKNA, GJENNOMSNITT.VISS, GJENNOMSNITT.VISS.SETT, TAL.VISS, TAL.VISS.SETT, SUMMER.VISS, SUMMER.VISS.SETT og SØK." #. aP5eL #: 01060500.xhp @@ -10790,7 +10789,7 @@ "par_id3155092\n" "help.text" msgid "Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons. This relates to the database functions, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH." -msgstr "" +msgstr "Bestemmer at regulære uttrykk kan brukast i staden for jokerteikn når du søkjer og ved samanlikning av tekststrengar. Dette gjeld databasefunksjonane og for FINN.RAD, FINN.KOLONNE, SAMANLIKNA, GJENNOMSNITT.VISS, GJENNOMSNITT.VISS.SETT, TAL.VISS, TAL.VISS.SETT, SUMMER.VISS, SUMMER.VISS.SETT og SØK." #. ysDUq #: 01060500.xhp @@ -10817,7 +10816,7 @@ "par_id3155097\n" "help.text" msgid "Specifies that only literal strings are used when searching and also for character string comparisons. This relates to the database functions, and to LOOKUP, VLOOKUP, HLOOKUP, MATCH, AVERAGEIF, AVERAGEIFS, COUNTIF, COUNTIFS, SUMIF, SUMIFS and SEARCH." -msgstr "" +msgstr "Bestemmer at berre bokstavstrengar kan brukast når du søkjer og ved samanlikning av tekststrengar. Dette gjeld også for databasefunksjonane og for FINN.RAD, FINN.KOLONNE, SAMANLIKNA, GJENNOMSNITT.VISS, GJENNOMSNITT.VISS.SETT, TAL.VISS, TAL.VISS.SETT, SUMMER.VISS, SUMMER.VISS.SETT og SØK." #. xpfmF #: 01060500.xhp @@ -11915,7 +11914,7 @@ "hd_id3163802\n" "help.text" msgid "To snap guides" -msgstr "" +msgstr "Til festelinjer" #. qZazt #: 01070300.xhp @@ -11924,7 +11923,7 @@ "par_id3149516\n" "help.text" msgid "Snaps the edge of a dragged object to the nearest snap guide when you release the mouse." -msgstr "" +msgstr "Festar kantane på eit dradd objekt til den næraste festelinja når du slepp museknappen." #. Dwoaz #: 01070300.xhp @@ -11933,7 +11932,7 @@ "par_id3154142\n" "help.text" msgid "You can also define this setting by using the Snap to Snap GuidesSnap to Snap GuidesSnap to Snap Guides icon, which is available in the Options bar in a presentation or drawing document." -msgstr "" +msgstr "Du kan også slå på denne innstillinga ved å trykkja på knappen Fest til hjelpelinjerFest til hjelpelinjerFest til hjelpelinjer som kjem fram på verktøylinja Innstillingar til ein presentasjon eller eit teiknedokument." #. eUCCJ #: 01070300.xhp @@ -15479,7 +15478,7 @@ "par_id0609201521430059\n" "help.text" msgid "Choose Tools - Options - %PRODUCTNAME - Advanced - Open Expert Configuration." -msgstr "" +msgstr "Merk av for Verktøy → Innstillingar → %PRODUCTNAME → Avansert → Slå på eksperimentelle funksjonar." #. 7CGay #: expertconfig.xhp @@ -15695,7 +15694,7 @@ "par_id0609201523043085\n" "help.text" msgid "Double-click in the preference row to edit current string and long values or toggle boolean types." -msgstr "" +msgstr "Dobbeltklikk i innstillingsrada for å redigera gjeldande streng og lange verdiar eller veksla mellom boolske typar." #. HGh4N #: expertconfig.xhp @@ -15803,7 +15802,7 @@ "par_id431600889434242\n" "help.text" msgid "You can override the default JRE of the operating system with one of the following alternatives:" -msgstr "" +msgstr "Du kan overstyra standard JRE for operativsystemet med eit av desse alternativa:" #. Skrxp #: java.xhp @@ -15812,7 +15811,7 @@ "par_id191600889458048\n" "help.text" msgid "By setting the environment variable JAVA_HOME," -msgstr "" +msgstr "Ved å setja omgjevnadsvariabelen JAVA_HOME," #. Z6Vzz #: java.xhp @@ -15821,7 +15820,7 @@ "par_id131600889466713\n" "help.text" msgid "By adding a JRE to the $PATH variable," -msgstr "" +msgstr "Ved å leggja JRE til variabelen $PAT," #. CFjhz #: java.xhp @@ -15830,7 +15829,7 @@ "par_id501600889473339\n" "help.text" msgid "By providing the configuration file javasettings_macOS_X86_64.xml javasettings_Windows_X86_64.xml javasettings_Linux_X86_64.xml javasettings_${_OS}_${_ARCH}.xml in the folder /presets/config." -msgstr "" +msgstr "Ved å setja inn innstillingsfila javasettings_macOS_X86_64.xml javasettings_Windows_X86_64.xml javasettings_Linux_X86_64.xml javasettings_${_OS}_${_ARCH}.xml i mappa /presets/config." #. UM9FC #: java.xhp @@ -16550,7 +16549,7 @@ "tit\n" "help.text" msgid "Mail Merge Email" -msgstr "" +msgstr "Brevfletting av e-post" #. DzJfg #: mailmerge.xhp @@ -16559,7 +16558,7 @@ "par_idN10554\n" "help.text" msgid "Mail Merge Email" -msgstr "" +msgstr "Brevflett e-post" #. tXuUS #: mailmerge.xhp @@ -16568,7 +16567,7 @@ "par_idN10564\n" "help.text" msgid "Specifies the user information and server settings for when you send form letters as email messages." -msgstr "" +msgstr "Spesifiserer brukarinformasjonen og innstillingane for tenaren som vert brukte til å senda skjemabrev som e-post." #. vYkrk #: mailmerge.xhp @@ -16586,7 +16585,7 @@ "par_idN1057F\n" "help.text" msgid "Enter the user information to use when you send email." -msgstr "" +msgstr "Skriv inn brukaropplysningane som skal brukast når du sender e-post." #. CZo2m #: mailmerge.xhp @@ -16613,7 +16612,7 @@ "par_idN105A5\n" "help.text" msgid "Email address" -msgstr "" +msgstr "E-postadresse" #. 6fFPM #: mailmerge.xhp @@ -16622,7 +16621,7 @@ "par_idN105A9\n" "help.text" msgid "Enter your email address for replies." -msgstr "" +msgstr "Skriv inn e-postadressa svara skal sendast til." #. EpoB6 #: mailmerge.xhp @@ -16631,7 +16630,7 @@ "par_idN105C0\n" "help.text" msgid "Send replies to different email address" -msgstr "" +msgstr "Send svar til ulike e-postadresser" #. jgiMB #: mailmerge.xhp @@ -16640,7 +16639,7 @@ "par_idN105C4\n" "help.text" msgid "Uses the email address that you enter in the Reply address text box as the reply-to email address." -msgstr "" +msgstr "Brukar e-postadressa som du skriv inn i feltet «Svaradresse» som «Svar til»-adresse." #. EbiSo #: mailmerge.xhp @@ -16658,7 +16657,7 @@ "par_idN105DF\n" "help.text" msgid "Enter the address to use for email replies." -msgstr "" +msgstr "Skriv inn e-postadressa som svara skal sendast til." #. KxDNm #: mailmerge.xhp @@ -16676,7 +16675,7 @@ "par_idN105F2\n" "help.text" msgid "Specify the server settings for outgoing emails." -msgstr "" +msgstr "Set opp innstillingar for tenaren for utgåande e-post." #. MGAFY #: mailmerge.xhp @@ -16730,7 +16729,7 @@ "par_idN10637\n" "help.text" msgid "When available, uses a secure connection to send emails." -msgstr "" +msgstr "Dersom ho er tilgjengeleg, vert ei sikker tilkopling brukt for å senda e-post." #. xN8RP #: mailmerge.xhp @@ -16748,7 +16747,7 @@ "par_idN10652\n" "help.text" msgid "Opens the Server Authentication dialog where you can specify the server authentication settings for secure email." -msgstr "" +msgstr "Opnar dialogvindauget for Tenargodkjenning der du kan setja innstillingane for sikker e-post." #. AnELG #: mailmerge.xhp @@ -17009,7 +17008,7 @@ "tit_opencl\n" "help.text" msgid "OpenCL" -msgstr "" +msgstr "OpenCL" #. sDXCB #: opencl.xhp @@ -17018,7 +17017,7 @@ "bm_id4077578\n" "help.text" msgid "OpenCL;setting optionssetting options;OpenCL" -msgstr "" +msgstr "OpenCL;innstillingsvalinnstillingsval;OpenCL" #. RAY7n #: opencl.xhp @@ -17027,7 +17026,7 @@ "par_idN10558\n" "help.text" msgid "OpenCL" -msgstr "" +msgstr "OpenCL" #. KoASK #: opencl.xhp @@ -17036,7 +17035,7 @@ "par_idN10568\n" "help.text" msgid "OpenCL is a technology to speed up calculation on large spreadsheets." -msgstr "" +msgstr "Open CL er ein teknologi for å auka farten ved utrekninga av store rekneark." #. ddvkj #: opencl.xhp @@ -17279,7 +17278,7 @@ "par_idN1054E\n" "help.text" msgid "On the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge Email tab page, click the Server Authentication button to specify the server security settings." -msgstr "" +msgstr "Du kan kontrollera innstillingane for tryggingsinnstillingane for tenaren ved å trykkja på knappen Tenargodkjenning på fana %PRODUCTNAME → InnstillingarVerktøy → Innstillingar%PRODUCTNAME Writer → Brevfletting av e-post." #. QEP5M #: serverauthentication.xhp @@ -17297,7 +17296,7 @@ "par_idN105BE\n" "help.text" msgid "Enables the authentication that is required to send email by SMTP." -msgstr "" +msgstr "Slår på autentiseringa som krevst for å senda e-post via SMTP." #. JEin8 #: serverauthentication.xhp @@ -17369,7 +17368,7 @@ "par_idN1061A\n" "help.text" msgid "Select if you are required to first read your email before you can send email. This method is also called \"SMTP after POP3\"." -msgstr "" +msgstr "Kryss av her viss det er nødvendig at du les e-post før du kan senda e-post. Denne metoden vert også kalla «SMTP etter POP3»." #. GtmDj #: serverauthentication.xhp @@ -17504,7 +17503,7 @@ "par_idN10557\n" "help.text" msgid "When you enter settings on the %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Mail Merge Email tab page, you can click the Test Settings button to test your settings." -msgstr "" +msgstr "Når du skriv inn innstillingar på fana %PRODUCTNAME → InnstillingarVerktøy → Innstillingar%PRODUCTNAME Writer → Brevfletting av e-post, kan du trykkja på knappen Testinnstillingar for å kontrollera innstillingane." #. 4AK5G #: testaccount.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547488937.000000\n" #. DBz3U @@ -230,7 +230,7 @@ "par_id3153990\n" "help.text" msgid "The Help menu allows you to start and control the $[officename] Help system." -msgstr "Frå Hjelpmenyen kan du opna og bla i hjelpesystemet for $[officename]." +msgstr "Frå «Hjelpmenyen» kan du opna og bla i hjelpesystemet for $[officename]." #. qpCaX #: main0108.xhp @@ -284,7 +284,7 @@ "hd_id230120170827189453\n" "help.text" msgid "Opens the documentation page in the web browser, where users can download, read or purchase %PRODUCTNAME user guides, written by the community." -msgstr "Opnar dokumentasjonssida i nettlesaren der brukaren kan lasta ned, lesa eller skaffa seg brukarrettleiingar for %PRODUCTNAME. " +msgstr "Opnar dokumentasjonssida i nettlesaren der brukaren kan lasta ned, lesa eller skaffa seg brukarrettleiingar for %PRODUCTNAME." #. APWDa #: main0108.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/simpress/00.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/simpress/00.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/simpress/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/simpress/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-03 12:43+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -50,7 +50,7 @@ "par_id5316324\n" "help.text" msgid "Opens the Custom Animation sidebar deck." -msgstr "Opnar vindauget Tilpassa animasjon i oppgåvepanelet." +msgstr "Opnar vindauget «Tilpassa animasjon» i sidepanelet." #. AgwPX #: 00000004.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-28 21:36+0000\n" +"PO-Revision-Date: 2021-04-08 05:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547660934.000000\n" #. QmNGE @@ -122,7 +122,7 @@ "bm_id3150299\n" "help.text" msgid "error search; next errorfinding ;errors in %PRODUCTNAME Math" -msgstr "feilsøking; neste feilsøkja etter;feil i %PRODUCTNAME Mathfinna;feil i %PRODUCTNAME Math" +msgstr "feilsøking; neste feilsøkja etter;feil i %PRODUCTNAME Math" #. jWYi3 #: 02100000.xhp @@ -4613,7 +4613,7 @@ "par_id3145230\n" "help.text" msgid "For more information about formatting in %PRODUCTNAME Math, see Brackets and Grouping." -msgstr "" +msgstr "Du kan finna meir om formatering av %PRODUCTNAME Math i Parentesar og gruppering." #. 5WAfz #: 03090600.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-22 18:37+0000\n" +"PO-Revision-Date: 2021-04-23 23:05+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -932,7 +932,7 @@ "par_id431603287134620\n" "help.text" msgid "Collapse/Expand All, Send Outline to Clipboard, Outline Content Visibility, Outline Tracking, Outline Level" -msgstr "" +msgstr "Fall saman/utvid alle, Send disposisjonen til utklippstavla, Synleg disposisjonsinnhald, Disposisjonssporing, Dispposisjonsnivå" #. uH7Av #: 02110000.xhp @@ -950,7 +950,7 @@ "par_id611603291783875\n" "help.text" msgid "Collapse/Expand All, Go to, Select, Delete, Promote Chapter, Demote Chapter, Promote Level, Demote Level, Outline Content Visibility, Outline Tracking, Outline Level" -msgstr "" +msgstr "Fall saman/utvid alle, Gå til, Vel, Slett, Fremja kapittel, Reduser kapittel, Fremja nivå, Reduser nivå, Vis disposisjonsinnhaldet, Disposisjonssporing, Disposisjonsnivå" #. bdbZB #: 02110000.xhp @@ -2039,7 +2039,7 @@ "par_id3149968\n" "help.text" msgid "You can configure $[officename] according to your specific preferences for navigating within a document. To do this, choose Tools - Customize. The various tables for adapting menus, keyboard input or toolbars contain various functions for navigation within the document under the \"Navigate\" area. In this way you can jump to the index tags in the document with the \"To Next/Previous Index Tag\" functions." -msgstr "Du kan setja opp dokumentstrukturen i $[officename] slik du sjølv ønskjer. Dette gjer du med menyvalet Verktøy → Innstillingar. Dei ulike tabellane for å tilpassa menyar, tastaturinnskriving og verktøylinjer inneheld mange funksjonar for å kunna navigera i dokumentet i området «Dokumentstruktur». På denne måten kan du hoppa til indeksmerke i dokumentet med funksjonane «Til neste/førre indeksmerke»." +msgstr "Du kan setja opp dokumentstrukturen i $[officename] slik du sjølv ønskjer å navigera i eit dokument. Dette gjer du med menyvalet Verktøy → Tilpass. Dei ulike tabellane for å tilpassa menyar, tastaturinnskriving og verktøylinjer inneheld mange funksjonar for å kunna navigera i dokumentet i området «Dokumentstruktur». På denne måten kan du hoppa til indeksmerke i dokumentet med funksjonane «Til neste/førre indeksmerke»." #. gh75t #: 02110100.xhp @@ -4433,7 +4433,7 @@ "par_id3157875\n" "help.text" msgid "To enable this feature, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - View, and ensure that the Hidden paragraphs check box in the Display fields area is selected." -msgstr "" +msgstr "Du slår på denne funksjonen ved å velja %PRODUCTNAME → PreferansarVerktøy → Innstillingar%PRODUCTNAME Writer → Formateringsstøtte og merkja av i Gøymde avsnitt i feltet Vising av." #. EAERL #: 03140000.xhp @@ -4550,7 +4550,7 @@ "par_id61601653541581\n" "help.text" msgid "Insert a column break by pressing Ctrl+Shift+Enter" -msgstr "" +msgstr "Set inn eit kolonneskift med Ctrl + Shift + Enter" #. P7DHK #: 04010000.xhp @@ -4577,7 +4577,7 @@ "par_id3145758\n" "help.text" msgid "You can also insert a page break by pressing CommandCtrl+Enter. However, if you want to assign the following page a different Page Style, you must use the menu command to insert the manual page break." -msgstr "" +msgstr "Du kan også setja inn eit sideskift ved å trykkja på KommandoCtrl + Enter. Dersom du ønskjer å bruka ein annan sidestil på den neste sida, må du bruka menykommandoen for å setja inn eit manuelt sideskift." #. cDBHn #: 04010000.xhp @@ -4586,7 +4586,7 @@ "hd_id3149175\n" "help.text" msgid "Page Style" -msgstr "" +msgstr "Sidestil" #. E3CxE #: 04010000.xhp @@ -4640,7 +4640,7 @@ "par_id3150554\n" "help.text" msgid "To display manual breaks, choose View - Nonprinting Characters." -msgstr "" +msgstr "Du kan visa eit manuelt sideskrift ved å velja Vis formateringsmerke." #. YTDkt #: 04020000.xhp @@ -5081,7 +5081,7 @@ "tit\n" "help.text" msgid "Indents (Sections)" -msgstr "" +msgstr "Innrykk (bolkar)" #. ZHUTB #: 04020200.xhp @@ -6755,7 +6755,7 @@ "par_id3148975\n" "help.text" msgid "Name or initials of current user (as entered in %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data)." -msgstr "" +msgstr "Namnet eller initialane til den gjeldande brukaren (slik det er skrive inn i %PRODUCTNAME → PrefereansarVerktøy → Innstillingar$[officename] → Brukardata)." #. 6D5LL #: 04090001.xhp @@ -6791,7 +6791,7 @@ "par_id3151370\n" "help.text" msgid "Inserts the current date. You can insert the date as a fixed field - Date (fixed) - that does not change, or as a dynamic field - Date - that it is updated automatically. To manually update the Date field, press F9." -msgstr "" +msgstr "Set inn gjeldande dato. Du kan setja inn datoen som eit fast felt – Dato (fast) – som ikkje vert endra, eller som eit dynamisk felt – Dato – som vert oppdatert automatisk. Du kan oppdatera feltet Dato manuelt ved å trykkja F9." #. DtBK4 #: 04090001.xhp @@ -6836,7 +6836,7 @@ "par_id821601755856152\n" "help.text" msgid "Paragraph Signature" -msgstr "" +msgstr "Avsnittsignatur" #. xYn3y #: 04090001.xhp @@ -6845,7 +6845,7 @@ "par_id611601755863247\n" "help.text" msgid "Inserts a meta-data field with a digital signature for the paragraph. You must have a digital certificate to sign a paragraph." -msgstr "" +msgstr "Set inn eit metadatafelt med ein signatur for avsnittet. Du må ha ein digital signatur for å signera eit avsnitt." #. N2r6D #: 04090001.xhp @@ -6863,7 +6863,7 @@ "par_id3146341\n" "help.text" msgid "Inserts fields containing user data. You can change the user-data that is displayed by choosing %PRODUCTNAME - PreferencesTools - Options - $[officename] - User Data." -msgstr "" +msgstr "Set inn felt som inneheld brukardata. Du kan endra den viste brukarinformasjonen ved å velja %PRODUCTNAME → PreferansarVerktøy → Innstillingar$[officename] → Brukarinformasjon." #. WxVLH #: 04090001.xhp @@ -6881,7 +6881,7 @@ "par_id3151091\n" "help.text" msgid "Inserts document statistics, such as page and word counts, as a field. To view the statistics of a document, choose File - Properties, and then click the Statistics tab." -msgstr "" +msgstr "Set inn dokumentstatistikk, som teljing av sider og ord, som eit felt. Vel Fil → Eigebskapar og fana Statistikkar for å sjå statistikkane." #. u227i #: 04090001.xhp @@ -7664,7 +7664,7 @@ "hd_id3154922\n" "help.text" msgid "Value" -msgstr "" +msgstr "Verdi" #. DCA8i #: 04090002.xhp @@ -7673,7 +7673,7 @@ "par_id3153049\n" "help.text" msgid "Enter the contents that you want to add to a user-defined field." -msgstr "" +msgstr "Skriv inhaldet du vil bruka i eit sjølvdefinert felt." #. zRBwU #: 04090002.xhp @@ -8348,7 +8348,7 @@ "par_id3149692\n" "help.text" msgid "DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose File - Properties." -msgstr "" +msgstr "Felta for dokumentinformasjon inneheld informasjon om eigenskapane til eit dokument slik dei var då dokumentet vart laga. For å sjå eigenskapane, vel Fil → Eigenskapar." #. uXwon #: 04090004.xhp @@ -8402,7 +8402,7 @@ "par_id3147490\n" "help.text" msgid "Inserts the comments as entered in the Description tab page of the File - Properties dialog." -msgstr "" +msgstr "Set inn merknadane som er skrivne inn i fana Skildring i dialogvindauget Fil → Eigenskapar." #. fZJ33 #: 04090004.xhp @@ -8438,7 +8438,7 @@ "par_id3154784\n" "help.text" msgid "Inserts the contents of the properties found on the Custom Properties tab of the File - Properties dialog. (Only shown if Custom properties are added.)" -msgstr "" +msgstr "Set inn innhaldet av eigenskapane funne i fana Tilpassa eigenskapar i dialogvindauget Fil → Eigenskapar. (Er berre synleg dersom det er skrive inn tilpassa eigenskapar)." #. GZvq9 #: 04090004.xhp @@ -8456,7 +8456,7 @@ "par_id3150912\n" "help.text" msgid "Inserts the keywords as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Set inn nøkkelorda slik dei er skrivne inn i fana Skildring i dialogvindauget Fil → Eigenskapar." #. 2CUCo #: 04090004.xhp @@ -8528,7 +8528,7 @@ "par_id3146942\n" "help.text" msgid "Inserts the subject as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Set inn emnet slik det vart skrive inn i fana Skildring i dialogvindauget Fil → Eigenskapar." #. BeCQj #: 04090004.xhp @@ -8546,7 +8546,7 @@ "par_id3150033\n" "help.text" msgid "Inserts the title as entered in the Description tab of the File - Properties dialog." -msgstr "" +msgstr "Set inn tittelen som vart skrive inn i fana Skildring i dialogvindauget Fil → Eigenskapar." #. nK4Xe #: 04090004.xhp @@ -8555,7 +8555,7 @@ "par_id3150108\n" "help.text" msgid "Total editing time" -msgstr "" +msgstr "Samla redigeringstid" #. fnmmz #: 04090004.xhp @@ -8573,7 +8573,7 @@ "par_id0902200804290272\n" "help.text" msgid "Lists the available fields for the field type selected in the Type list. To insert a field, click the field, and then click Insert." -msgstr "" +msgstr "Viser dei tilgjengelege felta for felttypen som er vald i lista Type. Du kan setja inn eit felt ved å trykkja på feltet og deretter Set inn." #. NDsUM #: 04090004.xhp @@ -8699,7 +8699,7 @@ "par_id3150996\n" "help.text" msgid "Defines a variable and its value. You can change the value of a variable by clicking in front of the variable field, and then choosing Edit - Field." -msgstr "" +msgstr "Definerer ein variabel og verdien for denne. Du kan endra verdien for ein variabel ved å klikka framføre variabelfeltet og deretter velja Rediger → Felt." #. WjgAZ #: 04090005.xhp @@ -10472,7 +10472,7 @@ "par_id3154948\n" "help.text" msgid "Email address" -msgstr "" +msgstr "E-postadresse" #. cQpP3 #: 04090200.xhp @@ -14027,7 +14027,7 @@ "par_id771599006446118\n" "help.text" msgid "The default filter for creating or opening concordance files is *.sdi. However, the file format of the concordance file is plain text." -msgstr "" +msgstr "Standardfilteret for å laga eller opna samsvarsfilter er *.sdi. Filformatet for samsvarsfiltera er rein tekst." #. cFHDU #: 04120250.xhp @@ -14090,7 +14090,7 @@ "par_id91599005949275\n" "help.text" msgid "Term" -msgstr "" +msgstr "Uttrykk" #. zMi8V #: 04120250.xhp @@ -14099,7 +14099,7 @@ "par_id461599005949276\n" "help.text" msgid "Meaning" -msgstr "" +msgstr "Meining" #. e7Npc #: 04120250.xhp @@ -14108,7 +14108,7 @@ "par_id291599005949278\n" "help.text" msgid "Search term" -msgstr "" +msgstr "Søkjeord" #. zFwbQ #: 04120250.xhp @@ -14126,7 +14126,7 @@ "par_id811599006053151\n" "help.text" msgid "Alternative entry" -msgstr "" +msgstr "Alternativ post" #. rxooN #: 04120250.xhp @@ -14162,7 +14162,7 @@ "par_id521599007507727\n" "help.text" msgid "Comment" -msgstr "" +msgstr "Merknad" #. GCW2W #: 04120250.xhp @@ -14171,7 +14171,7 @@ "par_id981599007507728\n" "help.text" msgid "Add a comment line above the entry. Commented lines start with #." -msgstr "" +msgstr "Legg ei merknadslinje over innføringa. Merknadslinjene byrjar med #." #. MPT5J #: 04120250.xhp @@ -14180,7 +14180,7 @@ "par_id441599006128506\n" "help.text" msgid "Match case" -msgstr "" +msgstr "Skil store og små bokstavar" #. PqJ9t #: 04120250.xhp @@ -14198,7 +14198,7 @@ "par_id361599006161460\n" "help.text" msgid "Word only" -msgstr "" +msgstr "Berre ord" #. hFig3 #: 04120250.xhp @@ -14306,7 +14306,7 @@ "par_id3151370\n" "help.text" msgid "Boston;Boston;Cities;;0;0" -msgstr "" +msgstr "Oslo;Oslo;Byar;;0;0" #. NQkQN #: 04120250.xhp @@ -14333,7 +14333,7 @@ "par_id3150116\n" "help.text" msgid "Beacon Hill;Boston;Cities;" -msgstr "" +msgstr "St. Hanshaugen;Oslo;Byar;" #. aG6Cj #: 04120300.xhp @@ -15512,7 +15512,7 @@ "hd_id3147405\n" "help.text" msgid "Field" -msgstr "" +msgstr "Felt" #. qVhAD #: 04990000.xhp @@ -16403,7 +16403,7 @@ "hd_id3155625\n" "help.text" msgid "Settings" -msgstr "" +msgstr "Innstillingar" #. eEhFJ #: 05040500.xhp @@ -16448,7 +16448,7 @@ "par_id971604735234085\n" "help.text" msgid "Tooltips describe each predefined selection." -msgstr "" +msgstr "Verktøytipsa skildrar kvart førehandsdefinerte val." #. 2Dr2B #: 05040500.xhp @@ -16475,7 +16475,7 @@ "par_id321604744698332\n" "help.text" msgid "The following two options are only available when formatting sections." -msgstr "" +msgstr "Dei to neste vala er berre tilgjengelege ved formatering av bolkar." #. znZph #: 05040500.xhp @@ -16538,7 +16538,7 @@ "par_id3147176\n" "help.text" msgid "If the AutoWidth check box is not selected, enter the width and spacing options for the columns." -msgstr "" +msgstr "Dersom avkryssingsboksen Automatisk breidd ikkje er merkt av, skriv inn breidde og avstandsalternativa for spaltene." #. WKBWJ #: 05040500.xhp @@ -16547,7 +16547,7 @@ "hd_id3147562\n" "help.text" msgid "Column" -msgstr "" +msgstr "Spalte" #. EQzit #: 05040500.xhp @@ -16583,7 +16583,7 @@ "par_id3149287\n" "help.text" msgid "Left Arrow Icon" -msgstr "" +msgstr "Ikon Venstrepil" #. xFUCF #: 05040500.xhp @@ -16619,7 +16619,7 @@ "par_id3152938\n" "help.text" msgid "Right Arrow Icon" -msgstr "" +msgstr "Ikon Høgrepil" #. EFqg6 #: 05040500.xhp @@ -16691,7 +16691,7 @@ "hd_id3155775\n" "help.text" msgid "Style" -msgstr "" +msgstr "Stil" #. yYDqn #: 05040500.xhp @@ -16709,7 +16709,7 @@ "hd_id931604684769944\n" "help.text" msgid "Width" -msgstr "" +msgstr "Breidd" #. H2vfk #: 05040500.xhp @@ -16718,7 +16718,7 @@ "par_id931604684783303\n" "help.text" msgid "Enter width of the separator line." -msgstr "" +msgstr "Skriv inn breidda på skiljelinja." #. jT4PA #: 05040500.xhp @@ -16727,7 +16727,7 @@ "hd_id421604684687071\n" "help.text" msgid "Color" -msgstr "" +msgstr "Farge" #. CuuBH #: 05040500.xhp @@ -16736,7 +16736,7 @@ "par_id601604684699407\n" "help.text" msgid "Select a color for the separator line." -msgstr "" +msgstr "Vel farge for skiljelinja." #. u3jAb #: 05040500.xhp @@ -20336,7 +20336,7 @@ "par_id3149352\n" "help.text" msgid "Opens a dialog where you can modify the properties of the selected object, for example, its size and name." -msgstr "" +msgstr "Opnar eit dialogvindauge du kan bruka til å endra eigenskapane for det valde objektet, for eksempel namn og storleik. " #. F8EcE #: 05080000.xhp @@ -23036,7 +23036,7 @@ "par_id3147490\n" "help.text" msgid "Style actions menu" -msgstr "" +msgstr "Menyen for stilhandlingar" #. KFB5g #: 05140000.xhp @@ -23090,7 +23090,7 @@ "par_idN10A31\n" "help.text" msgid "Load Styles" -msgstr "" +msgstr "Last inn stilar" #. TSnrm #: 05140000.xhp @@ -23270,7 +23270,7 @@ "par_id3154017\n" "help.text" msgid "Automatically formats the document while you type. To set the formatting options, choose Tools - AutoCorrect - Options, and then click the Options tab." -msgstr "" +msgstr "Formaterer dokumentet medan du skriv. Du kan setja innstillingane for formateringane ved å velja Verktøy → Autoretting → Val og deretter fana Val." #. Ddr5r #: 05150100.xhp @@ -24053,7 +24053,7 @@ "par_id3147514\n" "help.text" msgid "Replaces styles in the current document that have the same name as the styles you are loading. No warning message is given." -msgstr "" +msgstr "Erstattar stilar i dette dokumentet med stilar du hentar inn med same namn. Du får ingen åtvaringar." #. EqEyd #: 05170000.xhp @@ -24062,7 +24062,7 @@ "par_id3150358\n" "help.text" msgid "Only applied styles and modified styles are loaded from a document or template. The styles shown in the sidebar cannot be used as a guide." -msgstr "" +msgstr "Berre tidlegare brukte eller endra stilar vert lasta inn frå eit dokument eller ein mal. Stilane som vert viste i sidepanelet kan ikkje brukast som rettleiing." #. ivfvH #: 05170000.xhp @@ -24521,7 +24521,7 @@ "par_idN1062D\n" "help.text" msgid "File - Properties - Statistics " -msgstr "" +msgstr "Fil → Eigenskapar → Statistikk" #. qinJr #: 06060000.xhp @@ -27005,7 +27005,7 @@ "tit\n" "help.text" msgid "Reference (Edit)" -msgstr "" +msgstr "Reference (Rediger)" #. 5sECM #: edit_reference_submenu.xhp @@ -27014,7 +27014,7 @@ "hd_id1001603128268578\n" "help.text" msgid "Reference" -msgstr "" +msgstr "Reference" #. 6LFFX #: edit_reference_submenu.xhp @@ -27023,7 +27023,7 @@ "par_id411603128291771\n" "help.text" msgid "A submenu that offers possibilities to edit footnotes, endnotes, index entries, and bibliography entries." -msgstr "" +msgstr "Ein undermeny som gjev deg høve til å redigera fotnotar, sluttnotar, indeksoppføringar og bibliografioppføringar." #. vfaCD #: edit_reference_submenu.xhp @@ -27032,7 +27032,7 @@ "hd_id3147302\n" "help.text" msgid "Footnote or Endnote" -msgstr "" +msgstr "Fotnote eller sluttnote" #. RKfyJ #: edit_reference_submenu.xhp @@ -27041,7 +27041,7 @@ "hd_id3147327\n" "help.text" msgid "Index Entry" -msgstr "" +msgstr "Indeksoppføring" #. cH3QF #: edit_reference_submenu.xhp @@ -27050,7 +27050,7 @@ "hd_id3147352\n" "help.text" msgid "Bibliography Entry" -msgstr "" +msgstr "Bibliografioppføring" #. 4qVPZ #: format_object.xhp @@ -27284,7 +27284,7 @@ "par_idN10559\n" "help.text" msgid "Starts the Mail Merge Wizard to create form letters or send email messages to many recipients." -msgstr "" +msgstr "Opnar vegvisaren for brevfletting, der du kan laga fletta skjemabrev eller senda e-post til mange mottakarar." #. bXSUB #: mailmerge00.xhp @@ -27545,7 +27545,7 @@ "hd_id6954863\n" "help.text" msgid "Email message" -msgstr "" +msgstr "E-postmelding" #. YA54f #: mailmerge02.xhp @@ -27554,7 +27554,7 @@ "par_idN10561\n" "help.text" msgid "Creates mail merge documents that you can send as an email message or an email attachment." -msgstr "" +msgstr "Lagar brevflettingsdokument som du kan senda som e-postmeldingar eller som vedlegg i e-post." #. 8sABv #: mailmerge02.xhp @@ -27617,7 +27617,7 @@ "par_idN10556\n" "help.text" msgid "The title of this page is Insert address block for letters and Select address list for email messages." -msgstr "" +msgstr "Tittelen på denne sida er Adresseblokk for brev og Adresseliste for e-postmeldingar." #. GEW7x #: mailmerge03.xhp @@ -28292,7 +28292,7 @@ "par_idN1053D\n" "help.text" msgid "Specify additional email recipients for the mail merge document." -msgstr "" +msgstr "Set inn fleire mottakarar av fletta e-post-dokument." #. fg2kJ #: mm_copyto.xhp @@ -28310,7 +28310,7 @@ "par_idN10552\n" "help.text" msgid "Enter the recipients of email copies, separated by a semicolon (;)." -msgstr "" +msgstr "Skriv inn mottakarane av e-postkopiane, skilde med semikolon (;)." #. wUHkK #: mm_copyto.xhp @@ -28328,7 +28328,7 @@ "par_idN10559\n" "help.text" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Skriv inn mottakarane av dei blinde e-postkopiane, skilde med semikolon (;)." #. FHSJ5 #: mm_cusaddlis.xhp @@ -28454,7 +28454,7 @@ "par_idN10540\n" "help.text" msgid "Specify the salutation layout for mail merge or email merge documents. The name of this dialog is different for female recipients and male recipients." -msgstr "" +msgstr "Vert brukt til å velja utforminga av helsingar i dokument som skal brukast til brevfletting eller e-postfletting. Namnet på dette dialogvindauget er ulikt for kvinnelege og mannlege mottakarar." #. 2wy4R #: mm_cusgrelin.xhp @@ -28607,7 +28607,7 @@ "par_idN10540\n" "help.text" msgid "Type the message and the salutation for files that you send as email attachments." -msgstr "" +msgstr "Skriv inn meldinga og helsinga du vil bruka når du sender fletta brev som vedlegg i e-post." #. 5SMA7 #: mm_emabod.xhp @@ -28616,7 +28616,7 @@ "par_idN10554\n" "help.text" msgid "This email should contain a salutation" -msgstr "" +msgstr "Denne e-posten skal innehalda ei helsing" #. rmBz6 #: mm_emabod.xhp @@ -28625,7 +28625,7 @@ "par_idN10558\n" "help.text" msgid "Adds a salutation to the email." -msgstr "" +msgstr "Legg til ei helsing i e-posten." #. GFHN4 #: mm_emabod.xhp @@ -28787,7 +28787,7 @@ "par_idN105B3\n" "help.text" msgid "Enter the main text of the email." -msgstr "" +msgstr "Skriv inn hovudteksten til e-posten." #. A5QMX #: mm_emailmergeddoc.xhp @@ -28796,7 +28796,7 @@ "tit\n" "help.text" msgid "Send merged document as email" -msgstr "" +msgstr "Senda fletta dokument som e-post" #. ZEELF #: mm_emailmergeddoc.xhp @@ -28805,7 +28805,7 @@ "hd_id201703192214041173\n" "help.text" msgid "Send merged document as email" -msgstr "" +msgstr "Senda fletta dokument som e-post" #. TmBHD #: mm_emailmergeddoc.xhp @@ -28814,7 +28814,7 @@ "par_id201703192214161498\n" "help.text" msgid "Sends the mail merge output as email messages to all or some recipients." -msgstr "" +msgstr "Sender det fletta dokumentet som e-post til alle mottakarane eller til nokre av dei." #. z8DLS #: mm_emailmergeddoc.xhp @@ -28823,7 +28823,7 @@ "par_idN10556\n" "help.text" msgid "Email options" -msgstr "" +msgstr "Innstillingar for e-post" #. P3AsV #: mm_emailmergeddoc.xhp @@ -28841,7 +28841,7 @@ "par_idN105EC\n" "help.text" msgid "Select the database field that contains the email address of the recipient." -msgstr "" +msgstr "Vel kva databasefelt som inneheld e-postadressa til mottakaren." #. AERBW #: mm_emailmergeddoc.xhp @@ -28877,7 +28877,7 @@ "par_idN10604\n" "help.text" msgid "Enter the subject line for the email messages." -msgstr "" +msgstr "Skriv inn emnelinja til e-postmeldingane." #. FY8Cr #: mm_emailmergeddoc.xhp @@ -28895,7 +28895,7 @@ "par_idN1060B\n" "help.text" msgid "Select the mail format for the email messages." -msgstr "" +msgstr "Vel formatet på e-postmeldingane." #. vtgFn #: mm_emailmergeddoc.xhp @@ -28922,7 +28922,7 @@ "par_idN10615\n" "help.text" msgid "Opens the E-Mail Message dialog where you can enter the email message for the mail merge files that are sent as attachments." -msgstr "" +msgstr "Opna dialogvindauget E-postmelding, der du kan skriva inn e-postmeldinga til brevflettingsfilene som vert sende som vedlegg." #. bARe2 #: mm_emailmergeddoc.xhp @@ -28967,7 +28967,7 @@ "par_idN10631\n" "help.text" msgid "Select to send emails to all recipients." -msgstr "" +msgstr "Merk for å senda e-post til alle mottakarane." #. TLnNz #: mm_emailmergeddoc.xhp @@ -29039,7 +29039,7 @@ "par_idN10646\n" "help.text" msgid "Click to start sending emails." -msgstr "" +msgstr "Trykk her for å byrja å senda e-postane." #. udnuD #: mm_finent.xhp @@ -30110,7 +30110,7 @@ "tit\n" "help.text" msgid "Outline Content Visibility" -msgstr "" +msgstr "Synleggjer disposisjonsinnhaldet" #. vE4fu #: outlinecontent_visibility.xhp @@ -30119,7 +30119,7 @@ "bm_id141603814665942\n" "help.text" msgid "Outline Content Visibility;enabling" -msgstr "" +msgstr "Disposisjonsinnhald synelg;slå på" #. JDacS #: outlinecontent_visibility.xhp @@ -30128,7 +30128,7 @@ "hd_id311603588857975\n" "help.text" msgid "Outline Content Visibility" -msgstr "" +msgstr "Kor synleg disposisjonsinnhaldet skal vera" #. iBBcY #: outlinecontent_visibility.xhp @@ -30137,7 +30137,7 @@ "par_id781603591328239\n" "help.text" msgid "Hide and show all content under headings, including text, images, tables, frames, shapes, and textboxes." -msgstr "" +msgstr "Gøym og vis alt innhaldet i overskrifter, altså også tekst, bilete, tabellar, rammer, former og tekstboksar." #. 9uBsE #: outlinecontent_visibility.xhp @@ -30147,6 +30147,8 @@ "help.text" msgid "This feature is experimental. It is believed to be stable, but unexpected or unreliable behavior is possible.

To enable, , then still in Options, choose %PRODUCTNAME Writer (or %PRODUCTNAME Writer/Web) - View, and select the Show outline content visibility checkbox." msgstr "" +"Denne funksjonen er eksperimentell og kan laga feil eller gje uventa resultat

.\n" +"Du slår på medan du framleis er i Innstillingar. Vel då %PRODUCTNAME Writer (eller %PRODUCTNAME Writer/Web) → Vis og merk av for Vis knappen for vising av disposisjonsinnhaldet." #. WeiZ3 #: outlinecontent_visibility.xhp @@ -30155,7 +30157,7 @@ "par_id431603592299868\n" "help.text" msgid "In Navigator (F5) (for Headings in Content View)" -msgstr "" +msgstr "I dokumentstrukturen (F5) (for Overskrifter i innhaldsvisinga)" #. uqAng #: outlinecontent_visibility.xhp @@ -30164,7 +30166,7 @@ "par_id801603592797580\n" "help.text" msgid "With mouse (on a heading)" -msgstr "" +msgstr "Med datamus (på ei overskrift)" #. DKDnc #: outlinecontent_visibility.xhp @@ -30173,7 +30175,7 @@ "par_id401603902789914\n" "help.text" msgid "Use this feature to selectively hide and show content under all paragraphs that have a non-zero outline level (commonly called headings and subheadings). In %PRODUCTNAME, a heading is a paragraph with an outline level from 1 to 10, where 1 is the highest level and 10 the lowest. For example, a paragraph with outline level 3 would be a sub-sub-heading of a paragraph with outline level 1. This feature can be used to selectively hide and show content for a single heading, or for subheadings relative to a chosen outline level." -msgstr "" +msgstr "Bruk denne funksjonen for å gøyma og vise innhald selektivt under alle avsnitt som har eit disposisjonsnivå som ikkje er null (ofte kalla overskrifter og underoverskrifter). I %PRODUCTNAME er ei overskrift eit avsnitt med disposisjonsnivå frå 1 til 10, der 1 er det høgaste nivået og 10 det lågaste. For eksempel vil eit avsnitt med disposisjonsnivå 3 vera ei underoverskrift til eit avsnitt med disposisjonsnivå 1. Denne funksjonen kan brukast for å selektivt gøyma og vise innhald for ei enkelt overskrift, eller for underoverskrifter i høve til eit vald disposisjonsnivå ." #. ZnHHW #: outlinecontent_visibility.xhp @@ -30182,7 +30184,7 @@ "bm_id711604659189386\n" "help.text" msgid "Navigator;Outline Content VisibilityOutline Content Visibility;with Navigator" -msgstr "" +msgstr "dokumentstruktur;synleg disposisjonsinnhaldsynleg disposisjonsinnhald;med dokumentstruktur" #. xVBGd #: outlinecontent_visibility.xhp @@ -30191,7 +30193,7 @@ "hd_id931603593824856\n" "help.text" msgid "Using Outline Content Visibility with Navigator" -msgstr "" +msgstr "Bruka «Synleg disposisjonsinnhald» med dokumentstrukturen" #. iHEx5 #: outlinecontent_visibility.xhp @@ -30200,7 +30202,7 @@ "par_id161603902590811\n" "help.text" msgid "In Navigator, all commands are shown in the context menu for Headings and items under Headings. Use right-click anywhere in the Content View window to open the context menu for the selected item (including the Headings icon), then choose Outline Content Visibility, and one of the following commands, depending on what is selected." -msgstr "" +msgstr "I «Dokumentstruktur» vert alle kommandoane viste i snarmenyen for Overskrifter og element under Overskrifter. Høgreklikk kvar som helst i vindauget for vising av innhaldet for å opna sprettoppmenyen for det valde elementet (medrekna overskriftsikonet), og vel deretter Synleg disposisjonsinnhald og ein av dei følgjande kommandoane, avhengig av kva som er vald." #. XymTC #: outlinecontent_visibility.xhp @@ -30209,7 +30211,7 @@ "hd_id111603594832364\n" "help.text" msgid "Hide content for all headings" -msgstr "" +msgstr "Gøym innhaldet for alle overskriftene" #. Ya9AD #: outlinecontent_visibility.xhp @@ -30218,7 +30220,7 @@ "par_id171603594868435\n" "help.text" msgid "Headings icon is selected. Right-click and choose Outline Content Visibility - Hide All." -msgstr "" +msgstr "Overskriftsikonet er merkt. Høgreklikk og vel Synleggjer disposisjonsinnhaldet → Gøym alle." #. qAiBQ #: outlinecontent_visibility.xhp @@ -30227,7 +30229,7 @@ "par_id201603902018701\n" "help.text" msgid "Headings Icon" -msgstr "" +msgstr "Overskriftsikon" #. yTGK2 #: outlinecontent_visibility.xhp @@ -30236,7 +30238,7 @@ "par_id111603902018701\n" "help.text" msgid "Headings icon" -msgstr "" +msgstr "Overskriftsikon" #. YzYYt #: outlinecontent_visibility.xhp @@ -30245,7 +30247,7 @@ "hd_id381603902284237\n" "help.text" msgid "Show content for all headings" -msgstr "" +msgstr "Vis innhaldet for alle overskriftene" #. uHoJa #: outlinecontent_visibility.xhp @@ -30254,7 +30256,7 @@ "par_id431603902342365\n" "help.text" msgid "Headings icon is selected. Right-click and choose Outline Content Visibility - Show All." -msgstr "" +msgstr "Overskriftsikonet er merkt. Høgreklikk og vel Synleggjer disposisjonsinnhaldet → Vis alle." #. mRE8s #: outlinecontent_visibility.xhp @@ -30263,7 +30265,7 @@ "hd_id991603595158130\n" "help.text" msgid "Hide content for all subheadings, relative to an outline level" -msgstr "" +msgstr "Gøym innhaldet for alle underoverskrifter, relativt til eit disposisjonsnivå" #. q8qzv #: outlinecontent_visibility.xhp @@ -30272,7 +30274,7 @@ "par_id871603595297049\n" "help.text" msgid "Heading with subheadings is selected. Right-click and choose Outline Content Visibility - Hide All to hide all content until the next heading at the same outline level." -msgstr "" +msgstr "Overskriftene med underoverskriftert er merkt. Høgreklikk og vel Synleggjer disposisjonsinnhaldet → Gøym alle for å gøyma alt innhaldet fram til neste overskrift i det same disposisjonsnivået." #. ZidnP #: outlinecontent_visibility.xhp @@ -30281,7 +30283,7 @@ "hd_id131603923006495\n" "help.text" msgid "Show content for all subheadings, relative to an outline level" -msgstr "" +msgstr "Vis innhaldet for alle underoverskrifter, relativt til eit disposisjonsnivå" #. PBKaL #: outlinecontent_visibility.xhp @@ -30290,7 +30292,7 @@ "par_id501603923049090\n" "help.text" msgid "Heading with subheadings is selected. Right-click and choose Outline Content Visibility - Show All to show all content until the next heading at the same outline level." -msgstr "" +msgstr "Overskriftene med underoverskriftert er merkt. Høgreklikk og vel Synleggjer disposisjonsinnhaldet → Vis alle for å visa alt innhaldet fram til neste overskrift i det same disposisjonsnivået." #. TEbxh #: outlinecontent_visibility.xhp @@ -30299,7 +30301,7 @@ "par_id111604356830363\n" "help.text" msgid "When content is hidden for one or more (but not all) subheadings, then the context menu for a higher level heading will show both Show All and Hide All." -msgstr "" +msgstr "Når innhaldet er gøymd for ei eller fleire (men ikkje alle) underoverskriftene, vil sprettoppmenyen for ei overskrift på høgare nivå visa både Vis alle og Gøym alle." #. YZWyc #: outlinecontent_visibility.xhp @@ -30308,7 +30310,7 @@ "hd_id431603594946909\n" "help.text" msgid "Hide or show content under a single heading" -msgstr "" +msgstr "Gøym eller vis innhaldet for ei enkelt overskrift" #. t26Hb #: outlinecontent_visibility.xhp @@ -30317,7 +30319,7 @@ "par_id441603594965562\n" "help.text" msgid "For selected heading, right-click and choose Outline Content Visibility - Toggle" -msgstr "" +msgstr "For den merkte overskrifta, høgreklikk og vel Synleggjer disposisjonsinnhaldet → Slå av/på" #. DFcCW #: outlinecontent_visibility.xhp @@ -30326,7 +30328,7 @@ "par_id961604566488300\n" "help.text" msgid "The commands change whether content is shown in the document. They do not change what is shown in Navigator. For that purpose, use - and + (or arrow) signs or Collapse All / Expand All in context menu for headings." -msgstr "" +msgstr "Kommandoane endrar om innhaldet er synleg eller ikkje. Dei endrar ikkje på det som vert vist i disposisjonsvindauget. Då må du bruka - og + (eller pilene) ellerGøym alle/Utvid alle i sprettoppmenyen for overskrifter." #. jCcW3 #: outlinecontent_visibility.xhp @@ -30335,7 +30337,7 @@ "bm_id861604659229058\n" "help.text" msgid "Outline Content Visibility;with mouse" -msgstr "" +msgstr "Synleggjer disposisjonsinnhaldet;med mus" #. FKecH #: outlinecontent_visibility.xhp @@ -30344,7 +30346,7 @@ "hd_id961603593527184\n" "help.text" msgid "Using Outline Content Visibility with Mouse" -msgstr "" +msgstr "Bruka «Synleggjer disposisjonsinnhaldet» med datamus" #. trciq #: outlinecontent_visibility.xhp @@ -30353,7 +30355,7 @@ "hd_id641604365236177\n" "help.text" msgid "Over a heading" -msgstr "" +msgstr "Over ei overskrift" #. zBdgM #: outlinecontent_visibility.xhp @@ -30362,7 +30364,7 @@ "par_id331603591793655\n" "help.text" msgid "Press the Ctrl key. Place mouse over (or close to a line with) a heading.
(Arrow in left margin gives visual cue.)" -msgstr "" +msgstr "Hald nede Ctrl-tasten. Hald musepeikaren over (eller nær ei linje i) ei overskrift.
(Pil i venstre marg gjev visuell indikasjon)." #. FRtMg #: outlinecontent_visibility.xhp @@ -30371,7 +30373,7 @@ "par_id681604492926867\n" "help.text" msgid "When mouse pointer image changes to hand pointer, the following commands are possible:" -msgstr "" +msgstr "Når biletet på musepeikaren skifter til ei hand, er desse vala moglege:" #. BnPmu #: outlinecontent_visibility.xhp @@ -30380,7 +30382,7 @@ "par_id451603594434731\n" "help.text" msgid "Click to toggle visibility of content from selected heading to next heading." -msgstr "" +msgstr "Klikk for å slå av/på visinga av innhaldet frå den merkte overskrifta til den neste." #. CwqVy #: outlinecontent_visibility.xhp @@ -30389,7 +30391,7 @@ "par_id71603594448708\n" "help.text" msgid "Right-click to hide or show all content from selected heading (and all its subheadings) to next heading at same outline level." -msgstr "" +msgstr "Høgreklikk for å gøyma eller visa innhaldeti overskriftene frå den merkte overskrifta, og underoverskriftene, til den neste overskrifta i det same disposisjonsnivået." #. bhurB #: outlinecontent_visibility.xhp @@ -30398,7 +30400,7 @@ "hd_id101604365425000\n" "help.text" msgid "Arrows in left margin" -msgstr "" +msgstr "Piler i venstre marg" #. CVGFc #: outlinecontent_visibility.xhp @@ -30407,7 +30409,7 @@ "par_id541604366257774\n" "help.text" msgid "Place mouse in left margin next to a heading. (Arrow appears if content is shown.)" -msgstr "" +msgstr "Set musemarkøren i den venstre margen like ved ei overskrift. Det kjem fram piler viss innhaldet er synleg." #. UkamL #: outlinecontent_visibility.xhp @@ -30416,7 +30418,7 @@ "hd_id681603875505853\n" "help.text" msgid "Customized Control" -msgstr "" +msgstr "Tilpassa kontroll" #. GEyFk #: outlinecontent_visibility.xhp @@ -30425,7 +30427,7 @@ "par_id661603875533124\n" "help.text" msgid "For additional control, the following commands can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key." -msgstr "" +msgstr "For ytterlegare kontroll kan kommandoane nedanfor leggjast til som ein knapp til ei verktøylinje, eit element i ein meny eller snøggmeny eller ein snartast." #. DZDTC #: outlinecontent_visibility.xhp @@ -30434,7 +30436,7 @@ "par_id541603875590171\n" "help.text" msgid "Show outline content visibility enables and disables this feature (both for mouse and Navigator)." -msgstr "" +msgstr "Synleggjer disposisjonsinnhaldet slår av og på denne eigenskapen både for mus og disposisjon." #. XeqHN #: outlinecontent_visibility.xhp @@ -30443,7 +30445,7 @@ "par_id791603875551155\n" "help.text" msgid "Toggle Outline Content Visibility toggles " -msgstr "" +msgstr "Synleggjer disposisjonsinnhaldet av/på slår av og på." #. DKBZq #: outlinecontent_visibility.xhp @@ -30452,7 +30454,7 @@ "par_id481604366466503\n" "help.text" msgid "Place the cursor in the document. Use the Toggle command to hide the content in relation to the first heading above the cursor position." -msgstr "" +msgstr "Set markøren i dokumentet. Bruk Av/på for å gøyma innhaldet i høve til den første overskrifta over markøren." #. wqMek #: outlinecontent_visibility.xhp @@ -30461,7 +30463,7 @@ "par_id861604494831275\n" "help.text" msgid "Depending on your customization, this Toggle command could be available as a button in a toolbar, a menu item, a context menu (recommended Target is \"Text\"), or a shortcut key." -msgstr "" +msgstr "Avhengig av tilpassinga du har gjort, kan denne Av/på-kommandoen vera tilgjengeleg som ein knapp i ei verktøylinje, ei menyoppføring, ein sprettoppmeny (tilrådd mål er «Tekst») eller ein snarvegstast." #. PPkhx #: outlinecontent_visibility.xhp @@ -30470,7 +30472,7 @@ "hd_id81604416400633\n" "help.text" msgid "Saving Your Configuration" -msgstr "" +msgstr "Lagra innstillingane dine" #. VbFMU #: outlinecontent_visibility.xhp @@ -30479,7 +30481,7 @@ "par_id101604416417417\n" "help.text" msgid "Documents saved in .odt format will retain the current configuration of hidden and shown content. Note that changing content visibility does not modify the document. If you change visibility after saving a document, then you must save again to preserve the visibility changes." -msgstr "" +msgstr "Dokument lagra i .odt-format beheld det gjeldande oppsettet av gøymd og vist innhald. Merk at endring av om innhaldet er synleg eller ikkje, ikkje endrar dokumentet. Viss du endrar synleggjeringa etter at dokumentet er lagra, må du lagra det på nytt for å behalda endringa." #. RQvTc #: outlinecontent_visibility.xhp @@ -30488,7 +30490,7 @@ "par_id981604412273516\n" "help.text" msgid "Set Paragraph Outline Level" -msgstr "" +msgstr "Set disposisjonsnivået for avsnittet" #. By4tx #: outlinecontent_visibility.xhp @@ -30497,7 +30499,7 @@ "par_id31604412603892\n" "help.text" msgid "Modify Outline Levels for Headings" -msgstr "" +msgstr "Endra disposisjonsnivå for overskriftene" #. GFNAq #: outlinecontent_visibility.xhp @@ -30506,7 +30508,7 @@ "par_id401603926410184\n" "help.text" msgid "Adding a Button to a Toolbar" -msgstr "" +msgstr "Leggja til ein knapp i ei verktøylinje" #. UEKDH #: outlinecontent_visibility.xhp @@ -30515,7 +30517,7 @@ "par_id271604411886782\n" "help.text" msgid "Customizing a Context Menu" -msgstr "" +msgstr "Tilpassing av ein sprettoppmeny" #. ucbYZ #: outlinecontent_visibility.xhp @@ -30524,7 +30526,7 @@ "par_id251603931664784\n" "help.text" msgid "Making a Shortcut Key" -msgstr "" +msgstr "Laga ein snarvegstast" #. KadxR #: selection_mode.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po --- libreoffice-7.1.2~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/helpcontent2/source/text/swriter/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-08 13:07+0100\n" -"PO-Revision-Date: 2021-03-23 11:55+0000\n" +"PO-Revision-Date: 2021-04-27 19:52+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -230,7 +230,7 @@ "par_id3155461\n" "help.text" msgid "To dock the Navigator, drag the title bar to the edge of the workspace. To undock the Navigator, double-click its frame while holding the CommandCtrl key." -msgstr "For å festa dokumentstruktur-vindauget, dra tittellinja på det til enden av arbeidsområdet. Dobbeltklikk på ramma medan du held nede tasten CmdCtrl for å losna dokumentstruktur-vindauget att." +msgstr "For å festa dokumentstruktur-vindauget, dra tittellinja på det til enden av arbeidsområdet. Dobbeltklikk på ramma medan du held nede tasten KommandoCtrl for å losna dokumentstruktur-vindauget att." #. Atf4S #: arrange_chapters.xhp @@ -4955,7 +4955,7 @@ "par_id3147294\n" "help.text" msgid "Email address" -msgstr "" +msgstr "E-postadresse" #. eGMqy #: fields_userdata.xhp @@ -7817,7 +7817,7 @@ "par_id1631824\n" "help.text" msgid "Right-click a paragraph and choose Paragraph - Edit Style - Indents & Spacing tab to change the indents for all paragraphs that have the same Paragraph Style." -msgstr "" +msgstr "Høgreklikk på eit avsnitt og vel fana Rediger avsnittsstil → Innrykk og mellomrom for å endra på innrykka i alle avsnitta som brukar den same avsnittsstilen." #. MR5fF #: indenting.xhp @@ -7835,7 +7835,7 @@ "hd_id361605222538173\n" "help.text" msgid "Positioning indents" -msgstr "" +msgstr "Plassera innrykk" #. qUxKq #: indenting.xhp @@ -7871,7 +7871,7 @@ "hd_id671605222596649\n" "help.text" msgid "Hanging indents" -msgstr "" +msgstr "Hengjande innrykk" #. mF3Ak #: indenting.xhp @@ -7889,7 +7889,7 @@ "par_id811605224853050\n" "help.text" msgid "The Hanging Indent icon is found in the Paragraph section of the Properties sidebar. Click on this icon to switch the values of Before text and First line. This enables you to toggle a paragraph between an indented first line and a hanging indent." -msgstr "" +msgstr "Ikonet for Hengande innrykk finn du i området «Avsnitt» i «Eigenskapar» i sidepanelet. Trykk på dette ikonet for å endra verdien for Innrykk før tekst og Innrykk første linje. Dette gjer at du kan endra eit avsnitt mellom ei innrykka førstelinje og eit hengande innrykk." #. C5rYC #: indenting.xhp @@ -7898,7 +7898,7 @@ "par_id151605225966778\n" "help.text" msgid "To create a hanging indent: Enter a first line indent where you want the indent to start, then click the Hanging Indent icon to create the hanging indent." -msgstr "" +msgstr "Slik lagar du eit hengjande innrykk: Legg inn eit innrykk på den første linja der du vil at innrykkinga skal byrja. Trykk deretter på ikonet for hengjande innrykk for å laga nettopp dette." #. 3kNCk #: indenting.xhp @@ -7907,7 +7907,7 @@ "par_id331605223016307\n" "help.text" msgid "Hanging Indent Icon" -msgstr "" +msgstr "Ikon Hengjande innrykk" #. qgELJ #: indenting.xhp @@ -7916,7 +7916,7 @@ "par_id881605223016307\n" "help.text" msgid "Hanging Indent Icon" -msgstr "" +msgstr "Ikonet «Hengjande innrykk»" #. kSX2M #: indenting.xhp @@ -7925,7 +7925,7 @@ "par_id901605225508322\n" "help.text" msgid "The Hanging Indent command can be added as a button to a toolbar, an item in a menu or context menu, or a shortcut key." -msgstr "" +msgstr "Kommandoen Hengjande innrykk kan setjast inn som ein knapp på ei verktøylinje, eit element i ein meny eller i ein sprettoppmeny eller ein snarvegstast." #. YBBUC #: indenting.xhp @@ -10302,6 +10302,8 @@ "help.text" msgid "numbers; automatic recognition in text tables tables; number recognition tables; date formatting dates;formatting automatically in tables recognition;numbers" msgstr "" +"tal; automatisk gjenkjenning i teksttabellartabellar; talgjenkjenning tabellar; datoformatering\n" +"datoar;automatisk formatering i tabellargjenkjenning;tal" #. aahB7 #: number_date_conv.xhp @@ -10337,7 +10339,7 @@ "par_id3155919\n" "help.text" msgid "Choose Table > Number recognition." -msgstr "" +msgstr "Vel Tabell → Talgjenkjenning." #. en4GC #: number_date_conv.xhp @@ -10346,7 +10348,7 @@ "par_id531605970858214\n" "help.text" msgid "When this feature is on, a check mark is displayed in front of the Number recognition command." -msgstr "" +msgstr "Når dette valet er slått på, vert det sett eit merke framføre kommandoen Talgjenkjenning." #. hDANA #: number_date_conv.xhp @@ -10364,7 +10366,7 @@ "par_id781605970689063\n" "help.text" msgid "This feature applies globally to all tables in all documents. When enabled, typing a date into a table cell will result in automatic formatting. Enabling and disabling this feature does not change existing data formatting." -msgstr "" +msgstr "Denne eigenskapen vert brukt på alle tabellane i alle dokument. Når denne er slått på, vert ein dato i ei tabellcelle formatert automatisk. Formateringar som finst frå før, vert ikkje påverka om du slår denne eigenskapen av eller på." #. gsMre #: number_date_conv.xhp @@ -10823,7 +10825,7 @@ "par_id2172612\n" "help.text" msgid "If you want numbered headings, use the Tools - Chapter Numbering menu command to assign a numbering to a paragraph style. Do not use the Numbering icon on the Formatting toolbar." -msgstr "" +msgstr "Viss du vil bruka nummererte overskrifter, vel du Verktøy → Kapittelnummerering for å tildela nummerering til ein avsnittsstil. Ikkje bruk nummereringsknappen på formateringsverktøylinja til dette." #. XdFDM #: numbering_paras.xhp @@ -10895,7 +10897,7 @@ "par_id3155895\n" "help.text" msgid "Choose Format - Bullets and Numbering, and then click the Customize tab." -msgstr "" +msgstr "Vel Format → Punkt og nummerering og opna fana Tilpass." #. UiczS #: numbering_paras.xhp @@ -12092,7 +12094,7 @@ "par_id3153411\n" "help.text" msgid "Choose View - Styles." -msgstr "" +msgstr "Vel Vis → Stilar." #. dMpbc #: pagestyles.xhp @@ -12182,7 +12184,7 @@ "par_id3155888\n" "help.text" msgid "Choose View - Styles, and then click the Page Style icon." -msgstr "" +msgstr "Vel Vis → Stilar og trykk på ikonet Sidestil." #. LbhQq #: pagestyles.xhp @@ -12218,7 +12220,7 @@ "par_id3150210\n" "help.text" msgid "Choose Insert - More Breaks - Manual Break." -msgstr "" +msgstr "Vel Set inn → Fleire slag skift → Manuelt skift." #. zK2Gi #: pagestyles.xhp @@ -12236,7 +12238,7 @@ "par_id3150939\n" "help.text" msgid "In the Page Style box, select the page style that you want to apply to the page that follows the manual break." -msgstr "" +msgstr "I boksen Sidestil vel du sidestilen som skal brukast på den sida som kjem etter eit manuelt sideskift." #. x3Z8D #: pagestyles.xhp @@ -12299,7 +12301,7 @@ "par_id871605701051745\n" "help.text" msgid "%PRODUCTNAME is not designed to handle brochure printing of documents that include landscape page orientations, but it is possible to print such documents." -msgstr "" +msgstr "%PRODUCTNAME er ikkje utforma for å skriva ut brosjyrar i liggjande papirretning, men det er råd å skriva ut også slike dokument." #. 5tGLL #: print_brochure.xhp @@ -12308,7 +12310,7 @@ "par_id191605701997366\n" "help.text" msgid "It is not possible to print a large image across two pages. Cut the image into two parts, and insert each part on different pages." -msgstr "" +msgstr "Det er ikkje råd å skriva ut store bilete på to sider. Klipp biletet i to og skriv ut kvar del på ulike sider." #. BGTYA #: print_brochure.xhp @@ -12362,7 +12364,7 @@ "par_idN10628\n" "help.text" msgid "Return to Print dialog." -msgstr "" +msgstr "Gå tilbake til dialogvindauget Skriv ut." #. fkF4i #: print_brochure.xhp @@ -12371,7 +12373,7 @@ "par_idN1062C\n" "help.text" msgid "In the Page Layout section, select Brochure." -msgstr "" +msgstr "Vel Brosjyre i området Sideutforming." #. vB8vh #: print_brochure.xhp @@ -12380,7 +12382,7 @@ "par_idN10740\n" "help.text" msgid "For a printer that automatically prints on both sides of a page, specify in the Range and Copies section to include Odd and Even Pages." -msgstr "" +msgstr "For ein skrivar som automatisk skriv på begge sidene av papiret, merk av for Ulike og like sider i området Område og kopiar." #. DwUEJ #: print_brochure.xhp @@ -12389,7 +12391,7 @@ "par_idN10630\n" "help.text" msgid "Click Print." -msgstr "" +msgstr "Trykk på Skriv ut." #. 3HQ8i #: print_brochure.xhp @@ -12398,7 +12400,7 @@ "par_idN106EA\n" "help.text" msgid "If %PRODUCTNAME prints the pages in the wrong order, select Print in reverse order in the Range and Copies section, and then print the document again." -msgstr "" +msgstr "Viss %PRODUCTNAME skriv ut sidene i feil rekkjefølgje, vel Skriv ut i motsett rekkjefølgje i området Område og kopiar og skriv ut dokumentet på nytt." #. FgeK4 #: print_preview.xhp @@ -12479,7 +12481,7 @@ "tit\n" "help.text" msgid "Selecting What to Print" -msgstr "" +msgstr "Å velja kva som skal skrivast ut" #. AiDCa #: print_selection.xhp @@ -12488,7 +12490,7 @@ "bm_id541605272263762\n" "help.text" msgid "selecting; pages to printprinting;page rangeprinting;selection" -msgstr "" +msgstr "velja; sider for utskrivingskriva ut;sideområdeskriva ut;utval" #. WiStT #: print_selection.xhp @@ -12497,7 +12499,7 @@ "hd_id721605269733190\n" "help.text" msgid "Selecting What to Print" -msgstr "" +msgstr "Å velja kva som skal skrivast ut" #. FzVEC #: print_selection.xhp @@ -12506,7 +12508,7 @@ "par_id501605271321756\n" "help.text" msgid "You can choose to print individual pages, a range of pages, or a selection from a document." -msgstr "" +msgstr "Du kan velja å skriva ut enkeltsider, ei rad med sider eller eit utval frå eit dokument." #. 4KAbF #: print_selection.xhp @@ -12515,7 +12517,7 @@ "hd_id601605269573468\n" "help.text" msgid "Printing a single page" -msgstr "" +msgstr "Å skriva ut ei enkelt side" #. nFVLk #: print_selection.xhp @@ -12524,7 +12526,7 @@ "par_id571605684186001\n" "help.text" msgid "Choose File - Print to open the Print dialog." -msgstr "" +msgstr "Vel Fil → Skriv ut for å opna dialogvindauget Skriv ut." #. 2GBM8 #: print_selection.xhp @@ -12533,7 +12535,7 @@ "par_id31605269603220\n" "help.text" msgid "In the Range and Copies section, select the Pages option. The text box will show the current page number." -msgstr "" +msgstr "I Område og kopiar vel du Side. Tekstfeltet viser det gjeldande sidenummeret." #. QtixM #: print_selection.xhp @@ -12542,7 +12544,7 @@ "par_id251605269806172\n" "help.text" msgid "Enter the page number you want to print." -msgstr "" +msgstr "Skriv inn nummeret på sida du vil skriva ut." #. 3oqEG #: print_selection.xhp @@ -12551,7 +12553,7 @@ "par_id641605269861744\n" "help.text" msgid "The preview box on the left shows the selected page." -msgstr "" +msgstr "Førehandsvisinga til venstre viser den valde sida." #. KkcGy #: print_selection.xhp @@ -12560,7 +12562,7 @@ "hd_id171605269647972\n" "help.text" msgid "Printing a range of pages" -msgstr "" +msgstr "Skriva ut ei rekkje med sider" #. xdCdZ #: print_selection.xhp @@ -12569,7 +12571,7 @@ "par_id731605685039891\n" "help.text" msgid "Choose File - Print to open the Print dialog." -msgstr "" +msgstr "Vel Fil → Skriv ut for å opna dialogvindauget Skriv ut." #. hWBFk #: print_selection.xhp @@ -12578,7 +12580,7 @@ "par_id261605269669284\n" "help.text" msgid "In the Range and Copies section, select the Pages option. The text box will show the current page number." -msgstr "" +msgstr "I Område og kopiar vel du Side. Tekstfeltet viser det gjeldande sidenummeret." #. 9F38F #: print_selection.xhp @@ -12587,7 +12589,7 @@ "par_id331605269672260\n" "help.text" msgid "Enter the page numbers to print." -msgstr "" +msgstr "Skriv inn sidenummera du vil skriva ut." #. 5D8g2 #: print_selection.xhp @@ -12596,7 +12598,7 @@ "par_id481605270284520\n" "help.text" msgid "Use - for a range of pages. For example, 1-4 prints all pages from 1 to 4." -msgstr "" +msgstr "Bruk - for å skriva ut fleire sider. For eksempel 1-4 for å skriva ut alle sidene frå 1 til 4." #. AShg2 #: print_selection.xhp @@ -12605,7 +12607,7 @@ "par_id651605685305228\n" "help.text" msgid "Partial ranges are also allowed: -5 prints all pages up to page 5; 10- prints from page 10 to end of document." -msgstr "" +msgstr "Det er også råd å skriva ut delvise område: -5 skriv ut alle sidene opp til 5. 10- skriv ut frå side 10 til slutten av dokumentet." #. WBqMB #: print_selection.xhp @@ -12614,7 +12616,7 @@ "par_id951605270474391\n" "help.text" msgid "Use , or ; for a list of pages. For example, 1,3;7 prints pages 1, 3 and 7. Spaces are optional: 1, 3, 7 also works." -msgstr "" +msgstr "Bruk , eller ; for å skriva ut bestemte sider. For eksempel vil 1,3;7 skriva ut sidene 1, 3 og 7. Du kan gjerne også bruka mellomrom: 1, 3, 7 er heilt i orden." #. EAR8E #: print_selection.xhp @@ -12623,7 +12625,7 @@ "par_id611605270697509\n" "help.text" msgid "Combinations are also possible. For example, 1, 3, 5-10, 15- prints pages 1,3, 5 to 10, and 15 to end of document." -msgstr "" +msgstr "Det er også råd å kombinera utskrivinga. Såleis vil 1, 3, 5-10,15-skriva ut sidene 1, 3, 5 til 10 og 15 til slutten av dokumentet." #. FRjsx #: print_selection.xhp @@ -12632,7 +12634,7 @@ "par_id581605269685019\n" "help.text" msgid "The preview box on the left shows the selected pages." -msgstr "" +msgstr "Førehandsvisinga til venstre viser dei merkte sidene." #. PZtKv #: print_selection.xhp @@ -12641,7 +12643,7 @@ "hd_id571605269596899\n" "help.text" msgid "Printing a selection of text or graphics" -msgstr "" +msgstr "Å skriva ut eit utval av tekst og grafikk" #. 5KxGz #: print_selection.xhp @@ -12650,7 +12652,7 @@ "par_id261605270158305\n" "help.text" msgid "Select the content to print." -msgstr "" +msgstr "Merk det som skal skrivast ut." #. Q82VP #: print_selection.xhp @@ -12659,7 +12661,7 @@ "par_id481605687683495\n" "help.text" msgid "Choose File - Print to open the Print dialog." -msgstr "" +msgstr "Vel Fil → Skriv ut for å opna dialogvindauget Skriv ut." #. iaYKz #: print_selection.xhp @@ -12668,7 +12670,7 @@ "par_id911605270164153\n" "help.text" msgid "In the Range and Copies section, choose the Selection option." -msgstr "" +msgstr "Merk av for Utval i området Område og kopiar." #. aFMaJ #: print_selection.xhp @@ -12677,7 +12679,7 @@ "par_id871605270949919\n" "help.text" msgid "The preview box shows the selected material." -msgstr "" +msgstr "Førehandsvisdinga viser det merkte området." #. bJ768 #: print_small.xhp @@ -12713,7 +12715,7 @@ "par_id3149829\n" "help.text" msgid "In the Page Layout section of the File - Print dialog, you have the option to print multiple pages on one sheet." -msgstr "" +msgstr "I området Sideutforming i dialogvindauget Fil → Skriv ut finn du innstillingar for å skriva fleire sider på eitt ark." #. 7nqCv #: print_small.xhp @@ -12722,7 +12724,7 @@ "par_id3156098\n" "help.text" msgid "Choose File - Print" -msgstr "" +msgstr "Vel Fil → Skriv ut" #. 5EBvC #: print_small.xhp @@ -12731,7 +12733,7 @@ "par_id3155055\n" "help.text" msgid "In the Page Layout section, do one of the following:" -msgstr "" +msgstr "I området Sideutforming vel du eitt av desse vala:" #. G8yiU #: print_small.xhp @@ -13676,7 +13678,7 @@ "tit\n" "help.text" msgid "Printing with Page line-spacing (register-true)" -msgstr "" +msgstr "Utskriving med «Lås til registerlinjene»" #. jawYy #: registertrue.xhp @@ -13694,7 +13696,7 @@ "par_idN10652\n" "help.text" msgid "Printing with Page line-spacing" -msgstr "" +msgstr "Utskriving med linjene låste til registerlinjene" #. dagQY #: registertrue.xhp @@ -13703,7 +13705,7 @@ "par_id391604248923423\n" "help.text" msgid "Page line-spacing printing is particularly useful for documents that will have two pages set next to each other (for example, in a book or brochure), for multi-column layouts, and for documents intended for double-sided printing." -msgstr "" +msgstr "Lås til registerlinjene er spesielt nyttig i dokument som har to motståande sider (for eksempel i ei bok eller ein brosjyre), for oppsett med fleire kolonnar og for dobbeltsidig utskrift." #. XHAM3 #: registertrue.xhp @@ -13712,7 +13714,7 @@ "par_idN1065E\n" "help.text" msgid "To Enable a Document for Page Line-spacing Printing" -msgstr "" +msgstr "Slik slår du på «Lås til registerlinjene» for eit dokument" #. sBNyF #: registertrue.xhp @@ -13721,7 +13723,7 @@ "par_idN10669\n" "help.text" msgid "Choose Format - Page Style - Page tab." -msgstr "" +msgstr "Vel fana Format → Sidestil → Side." #. boDjD #: registertrue.xhp @@ -13730,7 +13732,7 @@ "par_idN10671\n" "help.text" msgid "In the Layout Settings section, select the Use page line-spacing checkbox, set the Reference Style, and click OK." -msgstr "" +msgstr "I feltet Utformingsinnstillingar merkjer du av for Bruk «Lås til registerlinjene», set Referansestilen og trykkjer OK." #. 8EtBy #: registertrue.xhp @@ -13739,7 +13741,7 @@ "par_id911604247329772\n" "help.text" msgid "The Reference Style sets an invisible vertical (typographical) grid, using the line distance specified in the style. All paragraphs that have Page line-spacing activated will use that line distance, aligning the bottom of a text line to the next grid line, regardless of font size or presence of graphics." -msgstr "" +msgstr "Referansestilen set opp eit loddrett (typografisk) rutenett med avstanden som er definert i stilen. Alle sider som har slått på «Lås til registerlinjene» vil bruka denne avstanden og justera den nedre kanten av ei tekstlinje i høve til den neste rutenettlinja, uavhengig av skriftstorleiken eller om det finst grafikk i dokumentet." #. SoczS #: registertrue.xhp @@ -13748,7 +13750,7 @@ "par_idN10678\n" "help.text" msgid "All paragraphs with the selected Reference Style (or that inherit the Reference Style) will be activated automatically for Page line-spacing." -msgstr "" +msgstr "Alle avsnitt som brukar den valde referansestilen (eller arvar referansestilen) vil automatisk bruka «Lås til registerlinjene»." #. fedGE #: registertrue.xhp @@ -13757,7 +13759,7 @@ "par_idN1067B\n" "help.text" msgid "To Exempt or Enable Paragraphs for Page Line-spacing Printing" -msgstr "" +msgstr "Å fritaka eller aktivera avsnitt som skal skrivast ut med «Lås til registerlinjene»" #. mBwoB #: registertrue.xhp @@ -13766,7 +13768,7 @@ "par_idN10685\n" "help.text" msgid "Select all the paragraphs you want to exempt, then choose Format - Paragraph - Indents & Spacing." -msgstr "" +msgstr "Merk alle avsnitta du vil gjera unnatak for og vel Format → Avsnitt → Innrykk og mellomrom." #. rrNUV #: registertrue.xhp @@ -13775,7 +13777,7 @@ "par_idN10698\n" "help.text" msgid "Clear the Activate page line-spacing checkbox to exempt paragraphs. Set the checkbox to enable." -msgstr "" +msgstr "Fjern avkryssinga for Bruk «Lås til registerlinjene» for å gjera unnatak for avsnitt. Merk igjen for å ta i bruk «Lås til registerlinjene»." #. aApC9 #: registertrue.xhp @@ -13784,7 +13786,7 @@ "par_id581604248041562\n" "help.text" msgid "The checkbox has no effect, if Page line-spacing is disabled in the Page style." -msgstr "" +msgstr "Avkryssingsfeltet verkar ikkje dersom «Lås til registerlinjene» er slått av i sidestilen." #. gHM9i #: registertrue.xhp @@ -13793,7 +13795,7 @@ "hd_id791604249131743\n" "help.text" msgid "To Exempt or Enable Paragraph Styles for Page Line-spacing Printing" -msgstr "" +msgstr "Å fritaka eller aktivera avsnittstilar for utskriving med «Lås til registerlinjene»" #. 5gyDE #: registertrue.xhp @@ -13802,7 +13804,7 @@ "par_idN1068C\n" "help.text" msgid "Open the Styles window (Command+TF11), click the Paragraph Style you want to exempt, right-click that style, choose Modify. In the dialog, click the Indents & Spacing tab." -msgstr "" +msgstr "Opna stilvindauget (Kommando + TF11) og trykk på avsnittsstilen du vil gjera unnatak for. Høgreklikk på denne stilen og vel Endra. Opna fana Innrykk og avstand i dialogvindauget." #. rzTBT #: registertrue.xhp @@ -13811,7 +13813,7 @@ "par_id481604252645547\n" "help.text" msgid "" -msgstr "" +msgstr "" #. ig8av #: registertrue.xhp @@ -13820,7 +13822,7 @@ "par_id911604252806932\n" "help.text" msgid "" -msgstr "" +msgstr "" #. swii5 #: removing_line_breaks.xhp @@ -14036,7 +14038,7 @@ "bm_id8186284\n" "help.text" msgid "rulers;using rulershorizontal rulersvertical rulersindents; setting on rulerspage margins on rulerstable cells;adjusting the width on rulersshowing;rulershiding;rulersadjusting page margins" -msgstr "" +msgstr "linjalar;bruka linjalarvassrette linjalarloddrette linjalarinnrykk; innstilling på linjalarsidemargane på linjalartabellceller;justera breidda på linjalarvisa;linjalargøyma;linjalarjustera sidemargar og cellebreidder" #. FTeNL #: ruler.xhp @@ -16367,7 +16369,7 @@ "par_id3149615\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Ikon" #. BErzm #: table_sizing.xhp @@ -16898,7 +16900,7 @@ "par_id3149974\n" "help.text" msgid "$[officename] has a number of predefined templates that you can use to create different types of text documents, such as business letters." -msgstr "" +msgstr "$[officename] har mange førehandsdefinerte malar som du kan bruka for å laga ulike typar tekstdokument, for eksempel forretningsbrev." #. VFfAP #: text_animation.xhp @@ -17258,7 +17260,7 @@ "par_idN106A3\n" "help.text" msgid "On the Tools bar, click the Direct Cursor icon Icon." -msgstr "" +msgstr "Klikk på symbolet Direktemarkør på verktøylinja Funksjonar." #. AmitQ #: text_direct_cursor.xhp @@ -17276,7 +17278,7 @@ "par_idN106C8\n" "help.text" msgid "Icon Align left" -msgstr "" +msgstr "Ikon Align left" #. CSXBU #: text_direct_cursor.xhp @@ -17285,7 +17287,7 @@ "par_idN106E4\n" "help.text" msgid "Icon Centered" -msgstr "" +msgstr "Ikon Centered" #. XcT6v #: text_direct_cursor.xhp @@ -17294,7 +17296,7 @@ "par_idN10700\n" "help.text" msgid "Icon Align right" -msgstr "" +msgstr "Ikon Align right" #. EuMGF #: text_direct_cursor.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -14204,7 +14204,7 @@ "Label\n" "value.text" msgid "Toggle pause" -msgstr "Pause" +msgstr "Pause av/på" #. rfNfc #: Effects.xcu @@ -25796,7 +25796,7 @@ "Label\n" "value.text" msgid "Formatting Mark" -msgstr "Formateringsteikn" +msgstr "Formateringsmerke" #. FbCCL #: GenericCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/sc/messages.po libreoffice-7.1.3~rc2/translations/source/nn/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/nn/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-18 15:36+0000\n" +"PO-Revision-Date: 2021-03-26 18:37+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -31838,7 +31838,7 @@ #: sc/uiconfig/scalc/ui/tpviewpage.ui:495 msgctxt "tpviewpage|break" msgid "_Page breaks" -msgstr "_Sidebryting" +msgstr "_Sideskift" #. Vc5tW #: sc/uiconfig/scalc/ui/tpviewpage.ui:504 diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/nn/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/nn/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -749,7 +749,7 @@ #: include/sfx2/strings.hrc:142 msgctxt "STR_QUICKSTART_RECENTDOC" msgid "Recent Documents" -msgstr "Sist brukte dokument" +msgstr "Tidlegare brukte dokument" #. DirQf #: include/sfx2/strings.hrc:143 diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/svx/messages.po libreoffice-7.1.3~rc2/translations/source/nn/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/nn/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -10074,7 +10074,7 @@ #: include/svx/svxitems.hrc:69 msgctxt "RID_ATTR_NAMES" msgid "Page line-spacing" -msgstr "Linjeavstand på sida" +msgstr "Lås til registerlinjene" #. t2uX7 #: include/svx/svxitems.hrc:70 @@ -15592,7 +15592,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:447 msgctxt "dockingfontwork|slant|tooltip_text" msgid "Slant" -msgstr "Helling" +msgstr "På skrå" #. WxAZv #: svx/uiconfig/ui/dockingfontwork.ui:453 diff -Nru libreoffice-7.1.2~rc2/translations/source/nn/sw/messages.po libreoffice-7.1.3~rc2/translations/source/nn/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/nn/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nn/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-20 20:36+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Kolbjørn Stuestøl \n" "Language-Team: Norwegian Nynorsk \n" "Language: nn\n" @@ -705,7 +705,7 @@ #: sw/inc/inspectorproperties.hrc:48 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Kerning" -msgstr "Teikn: automatisk kerving" +msgstr "Teikn: automatisk kerning" #. jP3gx #: sw/inc/inspectorproperties.hrc:49 @@ -5774,7 +5774,7 @@ #: sw/inc/strings.hrc:650 msgctxt "STR_OUTLINE_CONTENT" msgid "Outline Content Visibility" -msgstr "Disposisjonsinnhaldet synleg" +msgstr "Synleggjer disposisjonsinnhaldet" #. oBH6y #: sw/inc/strings.hrc:651 @@ -5804,7 +5804,7 @@ #: sw/inc/strings.hrc:656 msgctxt "STR_COLLAPSEALL" msgid "Collapse All" -msgstr "Reduser alle" +msgstr "Gøym alle" #. xvSRm #: sw/inc/strings.hrc:657 @@ -8138,13 +8138,13 @@ #: sw/inc/strings.hrc:1105 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "Linjeavstand side" +msgstr "Lås til registerlinjene" #. Cui3U #: sw/inc/strings.hrc:1106 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "Ingen sidelinjeavstand" +msgstr "Ikkje lås til registerlinjene" #. 4RL9X #: sw/inc/strings.hrc:1107 @@ -19968,7 +19968,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:189 msgctxt "navigatorcontextmenu|STR_OUTLINE_CONTENT" msgid "Outline Content Visibility" -msgstr "Kor synleg disposisjonsinnhaldet skal vera" +msgstr "Synleggjer disposisjonsinnhaldet" #. EBK2E #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:209 @@ -28835,7 +28835,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:395 msgctxt "viewoptionspage|outlinecontentvisibilitybutton" msgid "_Show outline content visibility button" -msgstr "Vis knappen for vising av _disposisjonsinnhaldet" +msgstr "Vis knappen «Synleggjer _disposisjonsinnhaldet»" #. jQBeb #: sw/uiconfig/swriter/ui/viewoptionspage.ui:416 diff -Nru libreoffice-7.1.2~rc2/translations/source/nr/cui/messages.po libreoffice-7.1.3~rc2/translations/source/nr/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/nr/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nr/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2473,1071 +2473,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/nso/cui/messages.po libreoffice-7.1.3~rc2/translations/source/nso/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/nso/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/nso/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Pedi \n" @@ -2484,1071 +2484,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/cui/messages.po libreoffice-7.1.3~rc2/translations/source/oc/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556857952.000000\n" #. GyY9M @@ -26,7 +26,7 @@ #: cui/inc/numcategories.hrc:17 msgctxt "numberingformatpage|liststore1" msgid "User-defined" -msgstr "Definit per l'usancièr" +msgstr "Definit per l'utilizaire" #. YPFu3 #: cui/inc/numcategories.hrc:18 @@ -38,7 +38,7 @@ #: cui/inc/numcategories.hrc:19 msgctxt "numberingformatpage|liststore1" msgid "Percent" -msgstr "per cent" +msgstr "Percentatge" #. 6C4cy #: cui/inc/numcategories.hrc:20 @@ -284,7 +284,7 @@ #: 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 "I a pas de comanda dins la barra d'aisinas. Volètz suprimir la barra d'aisinas ?" +msgstr "I a pas de comandas dins la barra d'aisinas. Volètz suprimir la barra d'aisinas ?" #. saf9m #. Translators: Do not translate %SAVE IN SELECTION% It is a placeholder @@ -1784,13 +1784,13 @@ #: cui/inc/strings.hrc:340 msgctxt "RID_SVXSTR_RIGHT_MARGIN" msgid "Combine single line paragraphs if length greater than %1" -msgstr "" +msgstr "Fusionar los paragrafs amb una sola linha a partir de %1" #. M9kNQ #: cui/inc/strings.hrc:341 msgctxt "RID_SVXSTR_NUM" msgid "Bulleted and numbered lists. Bullet symbol: %1" -msgstr "" +msgstr "Piuses e listas numerotadas. Simbòl per piuse : %1" #. BJVGT #: cui/inc/strings.hrc:342 @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." -msgstr "" +msgstr "%PRODUCTNAME pren en carga mai de 150 lengas." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Mai d’informacions" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Astúcia del jorn : %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" @@ -10441,13 +10435,13 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:319 msgctxt "hyperlinkdocpage|extended_tip|indication" msgid "Specifies the visible text or button caption for the hyperlink." -msgstr "" +msgstr "Definís lo tèxt visible o la legenda del boton per l'iperligam." #. RszPA #: cui/uiconfig/ui/hyperlinkdocpage.ui:336 msgctxt "hyperlinkdocpage|extended_tip|name" msgid "Enter a name for the hyperlink." -msgstr "" +msgstr "Picatz un nom per l'iperligam." #. y3amv #: cui/uiconfig/ui/hyperlinkdocpage.ui:357 @@ -10459,7 +10453,7 @@ #: cui/uiconfig/ui/hyperlinkdocpage.ui:374 msgctxt "hyperlinkdocpage|extended_tip|form" msgid "Specifies whether the hyperlink is inserted as text or as a button." -msgstr "" +msgstr "Definís se l'iperligam es inserit coma tèxt o coma boton." #. sAAC7 #: cui/uiconfig/ui/hyperlinkdocpage.ui:388 @@ -10513,7 +10507,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:75 msgctxt "hyperlinkinternetpage|extended_tip|linktyp_ftp" msgid "Creates an \"FTP://\" hyperlink." -msgstr "" +msgstr "Crèa un iperligam « FTP:// »." #. qgyrE #: cui/uiconfig/ui/hyperlinkinternetpage.ui:95 @@ -10573,7 +10567,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:237 msgctxt "hyperlinkinternetpage|extended_tip|indication" msgid "Specifies the visible text or button caption for the hyperlink." -msgstr "" +msgstr "Definís lo tèxt visible o la legenda del boton per l'iperligam." #. ABK2n #: cui/uiconfig/ui/hyperlinkinternetpage.ui:251 @@ -10603,7 +10597,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:345 msgctxt "hyperlinkinternetpage|extended_tip|name" msgid "Enter a name for the hyperlink." -msgstr "" +msgstr "Picatz un nom per l'iperligam." #. UG2wE #: cui/uiconfig/ui/hyperlinkinternetpage.ui:366 @@ -10615,7 +10609,7 @@ #: cui/uiconfig/ui/hyperlinkinternetpage.ui:383 msgctxt "hyperlinkinternetpage|extended_tip|form" msgid "Specifies whether the hyperlink is inserted as text or as a button." -msgstr "" +msgstr "Definís se l'iperligam es inserit coma tèxt o coma boton." #. MyGFB #: cui/uiconfig/ui/hyperlinkinternetpage.ui:397 @@ -10711,13 +10705,13 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:239 msgctxt "hyperlinkmailpage|extended_tip|indication" msgid "Specifies the visible text or button caption for the hyperlink." -msgstr "" +msgstr "Definís lo tèxt visible o la legenda del boton per l'iperligam." #. pJbde #: cui/uiconfig/ui/hyperlinkmailpage.ui:256 msgctxt "hyperlinkmailpage|extended_tip|name" msgid "Enter a name for the hyperlink." -msgstr "" +msgstr "Picatz un nom per l'iperligam." #. zkpdN #: cui/uiconfig/ui/hyperlinkmailpage.ui:277 @@ -10729,7 +10723,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:294 msgctxt "hyperlinkmailpage|extended_tip|form" msgid "Specifies whether the hyperlink is inserted as text or as a button." -msgstr "" +msgstr "Definís se l'iperligam es inserit coma tèxt o coma boton." #. 7wzYs #: cui/uiconfig/ui/hyperlinkmailpage.ui:308 @@ -10885,13 +10879,13 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:328 msgctxt "hyperlinknewdocpage|extended_tip|indication" msgid "Specifies the visible text or button caption for the hyperlink." -msgstr "" +msgstr "Definís lo tèxt visible o la legenda del boton per l'iperligam." #. FExJ9 #: cui/uiconfig/ui/hyperlinknewdocpage.ui:345 msgctxt "hyperlinknewdocpage|extended_tip|name" msgid "Enter a name for the hyperlink." -msgstr "" +msgstr "Picatz un nom per l'iperligam." #. cSknQ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:366 @@ -10903,7 +10897,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:382 msgctxt "hyperlinknewdocpage|extended_tip|form" msgid "Specifies whether the hyperlink is inserted as text or as a button." -msgstr "" +msgstr "Definís se l'iperligam es inserit coma tèxt o coma boton." #. 5xVHb #: cui/uiconfig/ui/hyperlinknewdocpage.ui:396 @@ -13721,7 +13715,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:118 msgctxt "extended_tip|autoclose_paren" msgid "Automatically close open parenthesis." -msgstr "" +msgstr "Tampadura automatica de las parentèsis dobèrtas." #. EExBY #: cui/uiconfig/ui/optbasicidepage.ui:129 @@ -13733,7 +13727,7 @@ #: cui/uiconfig/ui/optbasicidepage.ui:138 msgctxt "extended_tip|autoclose_quotes" msgid "Automatically close open quotes." -msgstr "" +msgstr "Tampadura automatica de las verguetas dobèrtas." #. CCtUM #: cui/uiconfig/ui/optbasicidepage.ui:149 @@ -15123,13 +15117,13 @@ #: cui/uiconfig/ui/optlanguagespage.ui:561 msgctxt "extended_tip|OptLanguagesPage" msgid "Defines the default languages and some other locale settings for documents." -msgstr "" +msgstr "Definís los paramètres de lenga per defaut e d’unes autres paramètres regionals pels documents." #. CgUDR #: cui/uiconfig/ui/optlingupage.ui:136 msgctxt "lingumodules" msgid "Contains the installed language modules." -msgstr "" +msgstr "Conten los moduls lingüistics installats." #. 8kxYC #: cui/uiconfig/ui/optlingupage.ui:149 @@ -17562,7 +17556,7 @@ #: cui/uiconfig/ui/password.ui:135 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 "Remarca : un còp qu'un senhal es estat definit, lo document se dobrirà pas qu'amb lo senhal. Se perdètz lo senhal, i aurà pas cap de mejan de recuperar lo document. Notatz tanben que lo senhal es sensible a la cassa. " +msgstr "Remarca : un còp qu'un senhal es estat definit, lo document se dobrirà pas qu'amb lo senhal. Se perdètz lo senhal, i aurà pas cap de mejan de recuperar lo document. Notatz tanben que lo senhal es sensible a la cassa." #. scLkF #: cui/uiconfig/ui/password.ui:171 @@ -17772,13 +17766,13 @@ #: cui/uiconfig/ui/personalization_tab.ui:50 msgctxt "personalization_tab|default_persona" msgid "Preinstalled Theme" -msgstr "" +msgstr "Tèma preinstallat" #. hWiJZ #: cui/uiconfig/ui/personalization_tab.ui:189 msgctxt "personalization_tab|personas_label" msgid "LibreOffice Themes" -msgstr "" +msgstr "Tèmas LibreOffice" #. C5MHG #: cui/uiconfig/ui/pickbulletpage.ui:43 @@ -21351,7 +21345,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:396 msgctxt "wordcompletionpage|delete" msgid "_Delete" -msgstr "" +msgstr "_Suprimir" #. 4HjyH #: cui/uiconfig/ui/wordcompletionpage.ui:405 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/desktop/messages.po libreoffice-7.1.3~rc2/translations/source/oc/desktop/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/desktop/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/desktop/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-16 13:42+0100\n" -"PO-Revision-Date: 2021-02-09 12:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1535976303.000000\n" #. v2iwK @@ -134,19 +134,19 @@ #: desktop/inc/strings.hrc:48 msgctxt "RID_STR_DYN_COMPONENT" msgid "UNO Dynamic Library Component" -msgstr "UNO Dynamic Library Component" +msgstr "Compausant bibliotèca dinamica per UNO" #. SK5Ay #: desktop/inc/strings.hrc:49 msgctxt "RID_STR_JAVA_COMPONENT" msgid "UNO Java Component" -msgstr "UNO Java Component" +msgstr "Compausant Java per UNO" #. a7o4C #: desktop/inc/strings.hrc:50 msgctxt "RID_STR_PYTHON_COMPONENT" msgid "UNO Python Component" -msgstr "UNO Python Component" +msgstr "Compausant Python per UNO" #. QyN3F #: desktop/inc/strings.hrc:51 @@ -158,13 +158,13 @@ #: desktop/inc/strings.hrc:52 msgctxt "RID_STR_RDB_TYPELIB" msgid "UNO RDB Type Library" -msgstr "UNO RDB Type Library" +msgstr "Bibliotèca RDB Type per UNO" #. KcXfh #: desktop/inc/strings.hrc:53 msgctxt "RID_STR_JAVA_TYPELIB" msgid "UNO Java Type Library" -msgstr "UNO Java Type Library" +msgstr "Bibliotèca Java Type per UNO" #. wBhDU #: desktop/inc/strings.hrc:55 @@ -332,7 +332,7 @@ msgstr "" "Sètz a mand de suprimir l'extension '%NAME'.\n" "Clicatz sus 'D'acòrdi' per suprimir l'extension.\n" -"Clicatz sus 'Anullar' per arrestar la supression de l'extension. " +"Clicatz sus 'Anullar' per arrestar la supression de l'extension." #. fiYMH #: desktop/inc/strings.hrc:90 @@ -416,7 +416,7 @@ #: desktop/inc/strings.hrc:110 msgctxt "RID_DLG_UPDATE_INSTALL_ERROR_LIC_DECLINED" msgid "The license agreement for extension %NAME was refused. " -msgstr "L'acòrd de licéncia de l'extension %NAME es estat refusat." +msgstr "L'acòrd de licéncia de l'extension %NAME es estat refusat. " #. q4fDv #: desktop/inc/strings.hrc:111 @@ -466,7 +466,7 @@ "Sètz a mand d'installar la version $NEW de l'extension '$NAME'.\n" "La version la mai recenta $DEPLOYED es ja installada.\n" "Clicatz sus 'D'acòrdi' per remplaçar l'extension installada.\n" -"Clicatz sus 'Anullar' per interrompre l'installacion. " +"Clicatz sus 'Anullar' per interrompre l'installacion." #. TmQCx #: desktop/inc/strings.hrc:123 @@ -494,7 +494,7 @@ "Sètz a mand d'installar la version $NEW de l'extension '$NAME'.\n" "Aquesta version es ja installada.\n" "Clicatz sus 'D'acòrdi' per remplaçar l'extension installada.\n" -"Clicatz sus 'Anullar' per interrompre l'installacion. " +"Clicatz sus 'Anullar' per interrompre l'installacion." #. 5TDnT #: desktop/inc/strings.hrc:131 @@ -522,7 +522,7 @@ "Sètz a mand d'installar la version $NEW de l'extension '$NAME'.\n" "La version anteriora $DEPLOYED, es ja installada.\n" "Clicatz sus 'D'acòrdi' per remplaçar l'extension installada.\n" -"Clicatz sus 'Anullar' per interrompre l'installacion. " +"Clicatz sus 'Anullar' per interrompre l'installacion." #. 2WQJk #: desktop/inc/strings.hrc:139 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/oc/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858024.000000\n" #. cBx8W @@ -3268,7 +3268,7 @@ #: extensions/uiconfig/sabpilot/ui/gridfieldsselectionpage.ui:401 msgctxt "gridfieldsselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "Element de tablèu" #. Xk7cV #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:54 @@ -3322,7 +3322,7 @@ #: extensions/uiconfig/sabpilot/ui/groupradioselectionpage.ui:310 msgctxt "groupradioselectionpage|label2" msgid "Table Element" -msgstr "" +msgstr "Element de tablèu" #. 3dtcD #: extensions/uiconfig/sabpilot/ui/invokeadminpage.ui:15 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/extras/source/autocorr/emoji.po libreoffice-7.1.3~rc2/translations/source/oc/extras/source/autocorr/emoji.po --- libreoffice-7.1.2~rc2/translations/source/oc/extras/source/autocorr/emoji.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/extras/source/autocorr/emoji.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-02-02 18:36+0000\n" -"Last-Translator: Quentin PAGÈS \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858035.000000\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji @@ -13434,7 +13434,7 @@ "MRS._CLAUS\n" "LngText.text" msgid "mrs. claus" -msgstr "mrs. claus" +msgstr "Paire Nadal" #. 🤦 (U+1F926), see http://wiki.documentfoundation.org/Emoji #. DMAKw @@ -14234,7 +14234,7 @@ "MERPERSON\n" "LngText.text" msgid "merperson" -msgstr "merperson" +msgstr "sirèna" #. 🧝 (U+1F9DD), see http://wiki.documentfoundation.org/Emoji #. 7WZ3s diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/filter/messages.po libreoffice-7.1.3~rc2/translations/source/oc/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-02-02 18:36+0000\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858078.000000\n" #. 5AQgJ @@ -519,7 +519,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:560 msgctxt "pdfgeneralpage|forms" msgid "Create PDF for_m" -msgstr "" +msgstr "Crear un for_mulari PDF" #. 3Vg8V #: filter/uiconfig/ui/pdfgeneralpage.ui:564 @@ -603,13 +603,13 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:739 msgctxt "pdfgeneralpage|pdfaversion" msgid "PDF_/A version:" -msgstr "" +msgstr "Version PDF_/A :" #. VQGHi #: filter/uiconfig/ui/pdfgeneralpage.ui:773 msgctxt "pdfgeneralpage|pdfua" msgid "Universal Accessibilit_y (PDF/UA)" -msgstr "" +msgstr "Accessibilitat universala (PDF/UA)" #. 4B3FD #: filter/uiconfig/ui/pdfgeneralpage.ui:777 @@ -711,7 +711,7 @@ #: filter/uiconfig/ui/pdflinkspage.ui:43 msgctxt "pdflinkspage|extended_tip|export" msgid "Exports the current file in PDF format." -msgstr "" +msgstr "Permet d’exportar lo fichièr actual al format PDF." #. aCCLQ #: filter/uiconfig/ui/pdflinkspage.ui:54 @@ -927,7 +927,7 @@ #: filter/uiconfig/ui/pdfsecuritypage.ui:314 msgctxt "pdfsecuritypage|extended_tip|printnone" msgid "Printing the document is not permitted." -msgstr "" +msgstr "L’impression del document es pas permesa." #. kSfrd #: filter/uiconfig/ui/pdfsecuritypage.ui:325 @@ -1659,7 +1659,7 @@ #: filter/uiconfig/ui/xmlfiltersettings.ui:63 msgctxt "xmlfiltersettings|extended_tip|close" msgid "Closes the dialog." -msgstr "" +msgstr "Tampar la fenèstra de dialòg." #. VvrGU #: filter/uiconfig/ui/xmlfiltersettings.ui:110 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858113.000000\n" #. W5ukN @@ -4054,7 +4054,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Excel..." -msgstr "" +msgstr "Mandar per corrièr electronic jos la forma d'un classador Microsoft Excel..." #. ZiTq5 #: CalcCommands.xcu @@ -4064,7 +4064,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Spreadsheet..." -msgstr "" +msgstr "Mandar per corrièr electronic jos la forma d'un classador OpenDocument" #. UNYDc #: CalcCommands.xcu @@ -4594,7 +4594,7 @@ "Label\n" "value.text" msgid "Default" -msgstr "" +msgstr "Per defaut" #. uh4sC #: CalcCommands.xcu @@ -4604,7 +4604,7 @@ "TooltipLabel\n" "value.text" msgid "Default Cell Style" -msgstr "" +msgstr "Estil de cellula per defaut" #. 9tAAv #: CalcCommands.xcu @@ -10144,7 +10144,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft PowerPoint Presentation..." -msgstr "" +msgstr "Mandar per corrièr electronic jos la forma d'una presentacion ~Microsoft PowerPoint..." #. GDg6X #: DrawImpressCommands.xcu @@ -10154,7 +10154,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Presentation..." -msgstr "" +msgstr "Mandar per corrièr electronic jos la forma d'una presentacion ~OpenDocument..." #. 4SNT3 #: DrawImpressCommands.xcu @@ -10624,7 +10624,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "Suprimir lo tablèu" #. Lbfd9 #: DrawImpressCommands.xcu @@ -10654,7 +10654,7 @@ "PopupLabel\n" "value.text" msgid "Select Table" -msgstr "" +msgstr "Seleccionar lo tablèu" #. yvdda #: DrawImpressCommands.xcu @@ -18504,7 +18504,7 @@ "Label\n" "value.text" msgid "Rotation Angle" -msgstr "Rotation Angle" +msgstr "Angle de rotacion" #. ViV9E #: GenericCommands.xcu @@ -19134,7 +19134,7 @@ "Label\n" "value.text" msgid "Arc" -msgstr "Arc" +msgstr "Arc d'ellipsa" #. 4fLec #: GenericCommands.xcu @@ -20646,7 +20646,7 @@ "Label\n" "value.text" msgid "~Hyperlink" -msgstr "" +msgstr "~Iperligam" #. UgtoL #: GenericCommands.xcu @@ -20656,7 +20656,7 @@ "PopupLabel\n" "value.text" msgid "Edit Hyperlink..." -msgstr "" +msgstr "Editar l'iperligam..." #. a7D2m #: GenericCommands.xcu @@ -20666,7 +20666,7 @@ "Label\n" "value.text" msgid "Copy Hyperlink Location" -msgstr "" +msgstr "Copiar l'adreça de l'iperligam" #. EaNDM #: GenericCommands.xcu @@ -21196,7 +21196,7 @@ "Label\n" "value.text" msgid "Table Styles" -msgstr "" +msgstr "Estils de tablèu" #. GF4U9 #: GenericCommands.xcu @@ -22856,7 +22856,7 @@ "Label\n" "value.text" msgid "Clear" -msgstr "" +msgstr "Escafar" #. AqQCJ #: GenericCommands.xcu @@ -23096,7 +23096,7 @@ "Label\n" "value.text" msgid "Pop Art" -msgstr "Pop Art" +msgstr "Pop'art" #. ruAbz #: GenericCommands.xcu @@ -23306,7 +23306,7 @@ "Label\n" "value.text" msgid "Email as P~DF..." -msgstr "" +msgstr "Mandar per corrièr electronic en P~DF..." #. MCknE #: GenericCommands.xcu @@ -23396,7 +23396,7 @@ "Label\n" "value.text" msgid "Sanitized PDF" -msgstr "" +msgstr "PDF assanit" #. v8Az3 #: GenericCommands.xcu @@ -23786,7 +23786,7 @@ "Label\n" "value.text" msgid "Step Into" -msgstr "Step Into" +msgstr "Pas a pas entrant" #. LtDqH #: GenericCommands.xcu @@ -23796,7 +23796,7 @@ "Label\n" "value.text" msgid "Step Over" -msgstr "Step Over" +msgstr "Passar otra" #. X2aH5 #: GenericCommands.xcu @@ -23896,7 +23896,7 @@ "Label\n" "value.text" msgid "Step Out" -msgstr "Step Out" +msgstr "Pas a pas sortent" #. hiaBF #: GenericCommands.xcu @@ -25486,7 +25486,7 @@ "Label\n" "value.text" msgid "~Delete" -msgstr "" +msgstr "~Suprimir" #. ZMsAG #: GenericCommands.xcu @@ -26136,7 +26136,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Format..." -msgstr "" +msgstr "Mandar per corrièr electronic al format ~Microsoft..." #. BrAfB #: GenericCommands.xcu @@ -26146,7 +26146,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Format..." -msgstr "" +msgstr "Mandar per corrièr electronic al format ~OpenDocument..." #. kJNVF #: GenericCommands.xcu @@ -26406,7 +26406,7 @@ "Label\n" "value.text" msgid "~Remove Hyperlink" -msgstr "" +msgstr "~Suprimir l'iperligam" #. KmJBw #: GenericCommands.xcu @@ -29896,7 +29896,7 @@ "Label\n" "value.text" msgid "T~ooltips" -msgstr "" +msgstr "Inf~obullas" #. EitKc #: WriterCommands.xcu @@ -29906,7 +29906,7 @@ "TooltipLabel\n" "value.text" msgid "Show change authorship in tooltips" -msgstr "" +msgstr "Afichar l'autor de las modificacions dins las infobullas." #. rYNAa #: WriterCommands.xcu @@ -29976,7 +29976,7 @@ "Label\n" "value.text" msgid "Go t~o Page..." -msgstr "" +msgstr "~Anar a la pagina..." #. FFXsF #: WriterCommands.xcu @@ -31716,7 +31716,7 @@ "Label\n" "value.text" msgid "Insert Columns Before" -msgstr "" +msgstr "Inserir colomnas abans" #. Q4jKn #: WriterCommands.xcu @@ -31726,7 +31726,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~Before" -msgstr "" +msgstr "Colomnas a~bans" #. oY3As #: WriterCommands.xcu @@ -31736,7 +31736,7 @@ "Label\n" "value.text" msgid "Insert Columns After" -msgstr "" +msgstr "Inserir colomnas aprèp" #. ZAewq #: WriterCommands.xcu @@ -31746,7 +31746,7 @@ "ContextLabel\n" "value.text" msgid "Columns ~After" -msgstr "" +msgstr "Colomnas a~prèp" #. B44pP #: WriterCommands.xcu @@ -31816,7 +31816,7 @@ "Label\n" "value.text" msgid "Paste as Columns Before" -msgstr "" +msgstr "Pegar coma colomnas abans" #. kQfFH #: WriterCommands.xcu @@ -31826,7 +31826,7 @@ "PopupLabel\n" "value.text" msgid "Columns ~Before" -msgstr "" +msgstr "Colomnas a~bans" #. rzDZU #: WriterCommands.xcu @@ -31886,7 +31886,7 @@ "TooltipLabel\n" "value.text" msgid "Delete selected columns" -msgstr "" +msgstr "Suprimir las colomnas seleccionadas" #. RxF66 #: WriterCommands.xcu @@ -33936,7 +33936,7 @@ "Label\n" "value.text" msgid "Email as ~Microsoft Word..." -msgstr "" +msgstr "Mandar per corrièr electronic jos la forma d'un document ~Word..." #. CRkbD #: WriterCommands.xcu @@ -33946,7 +33946,7 @@ "Label\n" "value.text" msgid "Email as ~OpenDocument Text..." -msgstr "" +msgstr "Mandar per corrièr electronic jos la forma d'un tèxte ~OpenDocument..." #. wnFCt #: WriterCommands.xcu @@ -34636,7 +34636,7 @@ "Label\n" "value.text" msgid "Default ~Character" -msgstr "" +msgstr "~Caractèr per defaut" #. UJ5WP #: WriterCommands.xcu @@ -34656,7 +34656,7 @@ "TooltipLabel\n" "value.text" msgid "Default Character Style" -msgstr "" +msgstr "Estil de caractèr per defaut" #. idpKA #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-02-22 17:36+0000\n" -"Last-Translator: Quentin PAGÈS \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1543410536.000000\n" #. HhMVS @@ -1074,7 +1074,7 @@ "STR_INTRODUCTION_T\n" "value.text" msgid "The Presentation Minimizer is used to reduce the file size of the current presentation. Images will be compressed and data, that is no longer needed, will be removed. At the last step of the wizard you can choose to apply the changes to the current presentation or to create an optimized new version of the presentation." -msgstr "Lo Presentation Minimizer es utilizat per reduire la talha del fichièr de la presentacion activa. Los imatges seràn compressats e las donadas que son pas mai necessàrias seràn suprimidas. A la darrièra etapa de l'assistent, podètz causir d'aplicar las modificacions a la presentacion activa o de crear una novèla version optimizada de la presentacion. " +msgstr "Lo Presentation Minimizer es utilizat per reduire la talha del fichièr de la presentacion activa. Los imatges seràn compressats e las donadas que son pas mai necessàrias seràn suprimidas. A la darrièra etapa de l'assistent, podètz causir d'aplicar las modificacions a la presentacion activa o de crear una novèla version optimizada de la presentacion." #. SSBgt #: PresentationMinimizer.xcu @@ -1234,7 +1234,7 @@ "STR_EMBED_LINKED_GRAPHICS\n" "value.text" msgid "~Embed external images" -msgstr "Integrar los imatges ~extèrnes " +msgstr "Integrar los imatges ~extèrnes" #. hbwsE #: PresentationMinimizer.xcu @@ -2064,7 +2064,7 @@ "Right\n" "value.text" msgid "Move caret in notes view backward/forward" -msgstr "Desplaça lo puntador dins l'afichatge de las nòtas en arrièr/endavant " +msgstr "Desplaça lo puntador dins l'afichatge de las nòtas en arrièr/endavant" #. nJ4gM #: PresenterScreen.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/sc/messages.po libreoffice-7.1.3~rc2/translations/source/oc/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858243.000000\n" #. kBovX @@ -16921,13 +16921,13 @@ #: sc/inc/strings.hrc:106 msgctxt "SCSTR_PRINTOPT_ALLSHEETS" msgid "Print All Sheets" -msgstr "" +msgstr "Imprimir totes los fuèlhs" #. xcKcm #: sc/inc/strings.hrc:107 msgctxt "SCSTR_PRINTOPT_SELECTEDSHEETS" msgid "Print Selected Sheets" -msgstr "" +msgstr "Imprimir totes los fuèlhs seleccionats" #. e7kTj #: sc/inc/strings.hrc:108 @@ -24748,13 +24748,13 @@ #: sc/uiconfig/scalc/ui/notebookbar.ui:14967 msgctxt "CalcNotebookbar|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "_Imprimir" #. sCGyG #: sc/uiconfig/scalc/ui/notebookbar.ui:15051 msgctxt "CalcNotebookbar|PrintLabel" msgid "~Print" -msgstr "" +msgstr "~Imprimir" #. 5JVAt #: sc/uiconfig/scalc/ui/notebookbar.ui:15886 @@ -24947,13 +24947,13 @@ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14209 msgctxt "notebookbar_compact|PrintPreviewButton" msgid "Print" -msgstr "" +msgstr "Imprimir" #. goiqQ #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:14261 msgctxt "notebookbar_compact|FormLabel" msgid "~Print" -msgstr "" +msgstr "~Imprimir" #. EBGs5 #: sc/uiconfig/scalc/ui/notebookbar_compact.ui:15616 @@ -25168,7 +25168,7 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:11309 msgctxt "notebookbar_groupedbar_compact|PrintMenuButton" msgid "_Print" -msgstr "" +msgstr "_Imprimir" #. RC7F3 #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:12226 @@ -29470,7 +29470,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:83 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "Time" -msgstr "" +msgstr "Ora" #. EukSF #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:84 @@ -30250,7 +30250,7 @@ #: sc/uiconfig/scalc/ui/sortoptionspage.ui:284 msgctxt "sortoptionspage|extended_tip|algorithmlb" msgid "Select a sorting option for the language." -msgstr "" +msgstr "Seleccionatz una opcion de tria per la lenga." #. u52Ei #: sc/uiconfig/scalc/ui/sortoptionspage.ui:306 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/scp2/source/impress.po libreoffice-7.1.3~rc2/translations/source/oc/scp2/source/impress.po --- libreoffice-7.1.2~rc2/translations/source/oc/scp2/source/impress.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/scp2/source/impress.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2015-04-22 23:41+0200\n" -"PO-Revision-Date: 2015-01-31 08:57+0000\n" -"Last-Translator: Cédric \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" +"Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-POOTLE-MTIME: 1422694623.000000\n" +"X-Generator: Weblate 4.4.2\n" +"X-POOTLE-MTIME: 1429932866.000000\n" +#. USjxN #: folderitem_impress.ulf msgctxt "" "folderitem_impress.ulf\n" @@ -24,6 +25,7 @@ msgid "Presentation" msgstr "Presentacion" +#. MaeYG #: folderitem_impress.ulf msgctxt "" "folderitem_impress.ulf\n" @@ -32,6 +34,7 @@ msgid "Create and edit presentations for slideshows, meeting and Web pages by using Impress." msgstr "Crear e editar de presentacions per de diaporamqs, d'acamps e de paginas Web amb Presentacion." +#. 4XJxj #: module_impress.ulf msgctxt "" "module_impress.ulf\n" @@ -40,6 +43,7 @@ msgid "%PRODUCTNAME Impress" msgstr "%PRODUCTNAME Impress" +#. 44gb8 #: module_impress.ulf msgctxt "" "module_impress.ulf\n" @@ -48,6 +52,7 @@ msgid "Create and edit presentations for slideshows, meeting and Web pages by using %PRODUCTNAME Impress." msgstr "%PRODUCTNAME Impress : creacion e edicion de presentacions per diaporamas, acamps e paginas Web." +#. 33n88 #: module_impress.ulf msgctxt "" "module_impress.ulf\n" @@ -56,6 +61,7 @@ msgid "Program Module" msgstr "Modul del programa" +#. gfK75 #: module_impress.ulf msgctxt "" "module_impress.ulf\n" @@ -64,6 +70,7 @@ msgid "The application %PRODUCTNAME Impress" msgstr "L'aplicacion %PRODUCTNAME Impress" +#. CsaFh #: module_impress.ulf msgctxt "" "module_impress.ulf\n" @@ -72,6 +79,7 @@ msgid "%PRODUCTNAME Impress Help" msgstr "Ajuda de %PRODUCTNAME Impress" +#. vAPBy #: module_impress.ulf msgctxt "" "module_impress.ulf\n" @@ -80,6 +88,7 @@ msgid "Help about %PRODUCTNAME Impress" msgstr "L'ajuda pel modul de presentacion %PRODUCTNAME Impress" +#. Bg4eB #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -88,6 +97,7 @@ msgid "&New" msgstr "&Novèl" +#. A64Em #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -96,6 +106,7 @@ msgid "Show" msgstr "Afichar" +#. oR4ox #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -104,6 +115,7 @@ msgid "%SXWFORMATNAME %SXWFORMATVERSION Presentation" msgstr "Presentacion %SXWFORMATNAME %SXWFORMATVERSION" +#. AFWjY #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -112,6 +124,7 @@ msgid "%SXWFORMATNAME %SXWFORMATVERSION Presentation Template" msgstr "Modèl de presentacion %SXWFORMATNAME %SXWFORMATVERSION" +#. GbPTM #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -120,6 +133,7 @@ msgid "OpenDocument Presentation" msgstr "Presentacion OpenDocument" +#. 6KPeW #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -128,46 +142,52 @@ msgid "OpenDocument Presentation Template" msgstr "Modèl de presentacion OpenDocument" +#. FPmTX #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" "STR_REG_VAL_MS_POWERPOINT_PRESENTATION_OLD\n" "LngText.text" msgid "Microsoft PowerPoint 97-2003 Presentation" -msgstr "Microsoft PowerPoint 97-2003 Presentation" +msgstr "Presentacion Microsoft PowerPoint 97-2003" +#. XVGBP #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" "STR_REG_VAL_MS_POWERPOINT_SHOW\n" "LngText.text" msgid "Microsoft PowerPoint Show" -msgstr "Microsoft PowerPoint Show" +msgstr "Diaporama Microsoft PowerPoint" +#. c8FUE #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" "STR_REG_VAL_MS_POWERPOINT_PRESENTATION\n" "LngText.text" msgid "Microsoft PowerPoint Presentation" -msgstr "Microsoft PowerPoint Presentation" +msgstr "Presentacion Microsoft PowerPoint" +#. krens #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" "STR_REG_VAL_MS_POWERPOINT_TEMPLATE_OLD\n" "LngText.text" msgid "Microsoft PowerPoint 97-2003 Template" -msgstr "Microsoft PowerPoint 97-2003 Template" +msgstr "Modèl Microsoft PowerPoint 97-2003" +#. DkZrz #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" "STR_REG_VAL_MS_POWERPOINT_TEMPLATE\n" "LngText.text" msgid "Microsoft PowerPoint Template" -msgstr "Microsoft PowerPoint Template" +msgstr "Modèl Microsoft PowerPoint" +#. n8qaR #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" @@ -176,6 +196,7 @@ msgid "Uniform Office Format Presentation" msgstr "Presentacion Uniform Office Format" +#. v6y5o #: registryitem_impress.ulf msgctxt "" "registryitem_impress.ulf\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/scp2/source/ooo.po libreoffice-7.1.3~rc2/translations/source/oc/scp2/source/ooo.po --- libreoffice-7.1.2~rc2/translations/source/oc/scp2/source/ooo.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/scp2/source/ooo.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-17 15:06+0100\n" -"PO-Revision-Date: 2021-02-20 04:36+0000\n" -"Last-Translator: Quentin PAGÈS \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1542024495.000000\n" #. CYBGJ @@ -5000,7 +5000,7 @@ "STR_DESC_MODULE_EXTENSION_DICTIONARY_PT_BR\n" "LngText.text" msgid "Portuguese (Brazil) spelling Dictionary (1990 Spelling Agreement), and hyphenation rules" -msgstr "Diccionari ortografic (agrat de 1990) e règlas de copadura dels mots portugueses (Brasil) " +msgstr "Diccionari ortografic (agrat de 1990) e règlas de copadura dels mots portugueses (Brasil)" #. KZETs #: module_ooo.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/sd/messages.po libreoffice-7.1.3~rc2/translations/source/oc/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557838643.000000\n" #. WDjkB @@ -5480,7 +5480,7 @@ #: sd/uiconfig/simpress/ui/dlgfield.ui:200 msgctxt "dlgfield|extended_tip|languageLB" msgid "Select the language for the field." -msgstr "" +msgstr "Seleccionatz la lenga pel camp." #. WTcEe #: sd/uiconfig/simpress/ui/dlgfield.ui:235 @@ -5930,7 +5930,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:126 msgctxt "headerfootertab|extended_tip|datetime_cb" msgid "Adds the date and time to the slide." -msgstr "" +msgstr "Inserís la data e l’ora a la diapositiva." #. LDq83 #: sd/uiconfig/simpress/ui/headerfootertab.ui:155 @@ -5966,7 +5966,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:253 msgctxt "headerfootertab|extended_tip|language_list" msgid "Select the language for the date and time format." -msgstr "" +msgstr "Seleccionatz la lenga pel format de data e d’ora." #. iDwM5 #: sd/uiconfig/simpress/ui/headerfootertab.ui:266 @@ -6410,7 +6410,7 @@ #: sd/uiconfig/simpress/ui/navigatorpanel.ui:12 msgctxt "navigatorpanelSTR_DRAGTYPE_URL" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Inserir coma iperligam" #. ptpuN #: sd/uiconfig/simpress/ui/navigatorpanel.ui:20 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/oc/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1540151083.000000\n" #. bHbFE @@ -1520,7 +1520,7 @@ #: include/sfx2/strings.hrc:277 msgctxt "STR_READONLY_PDF" msgid "This PDF is open in read-only mode to allow signing the existing file." -msgstr "" +msgstr "Aqueste PDF es dobèrt en mòde lectura sola per poder signar lo fichièr existent." #. MENvD #: include/sfx2/strings.hrc:278 @@ -1864,13 +1864,13 @@ #: include/sfx2/strings.hrc:342 msgctxt "STR_CTRLCLICKHYPERLINK" msgid "%{key}-click to open hyperlink: %{link}" -msgstr "" +msgstr "%{key}-clic per dobrir l'iperligam : %{link}" #. jC3AK #: include/sfx2/strings.hrc:343 msgctxt "STR_CLICKHYPERLINK" msgid "Click to open hyperlink: %{link}" -msgstr "" +msgstr "Clicar per dobrir l'iperligam : %{link}" #. eFJMp #: include/sfx2/strings.hrc:345 @@ -3022,7 +3022,7 @@ #: sfx2/uiconfig/ui/helpwindow.ui:117 msgctxt "helpwindow|print|tooltip_text" msgid "Print" -msgstr "" +msgstr "Imprimir" #. 7wgqt #: sfx2/uiconfig/ui/helpwindow.ui:129 @@ -3040,7 +3040,7 @@ #: sfx2/uiconfig/ui/infobar.ui:66 msgctxt "infobar|close|tooltip_text" msgid "Close Infobar" -msgstr "" +msgstr "Tampar la barra d’informacion" #. DpXCY #: sfx2/uiconfig/ui/inputdialog.ui:87 @@ -4303,7 +4303,7 @@ #: sfx2/uiconfig/ui/templatepanel.ui:148 msgctxt "templatepanel|STR_STYLE_NEW_STYLE_FROM_SELECTION" msgid "New Style from Selection" -msgstr "" +msgstr "Estil novèl a partir de la seleccion" #. tAdD9 #: sfx2/uiconfig/ui/templatepanel.ui:161 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/oc/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-21 11:36+0000\n" -"Last-Translator: Quentin PAGÈS \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858270.000000\n" #. fLdeV @@ -28,7 +28,7 @@ #: include/svtools/strings.hrc:27 msgctxt "STR_REDO" msgid "Redo: " -msgstr "" +msgstr "Refar : " #. 2utVD #: include/svtools/strings.hrc:28 @@ -70,13 +70,13 @@ #: include/svtools/strings.hrc:35 msgctxt "STR_FORMAT_ID_RICHTEXT" msgid "Rich text formatting (Richtext)" -msgstr "" +msgstr "Tèxt al format enriquit (Richtext)" #. oZgfj #: include/svtools/strings.hrc:36 msgctxt "STR_FORMAT_ID_DRAWING" msgid "%PRODUCTNAME drawing format" -msgstr "" +msgstr "Format de dessenh %PRODUCTNAME" #. 84ABF #: include/svtools/strings.hrc:37 @@ -448,7 +448,7 @@ #: include/svtools/strings.hrc:98 msgctxt "STR_FORMAT_ID_PNG_BITMAP" msgid "Portable Network Graphic (PNG)" -msgstr "" +msgstr "Portable Network Graphic (PNG)" #. wDxCa #: include/svtools/strings.hrc:100 @@ -3827,13 +3827,13 @@ #: svtools/inc/langtab.hrc:250 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tigrigna (Eritrea)" -msgstr "Tigrigna (Eritrea)" +msgstr "Tigrigna (Eritrèa)" #. 4X4SP #: svtools/inc/langtab.hrc:251 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Tigrigna (Ethiopia)" -msgstr "Tigrigna (Ethiopia)" +msgstr "Tigrigna (Etiòpia)" #. vebCw #: svtools/inc/langtab.hrc:252 @@ -4169,7 +4169,7 @@ #: svtools/inc/langtab.hrc:307 msgctxt "STR_ARR_SVT_LANGUAGE_TABLE" msgid "Papiamentu (Netherlands Antilles)" -msgstr "Papiamentu (Netherlands Antilles)" +msgstr "Papiamentu (Antilhas neerlandesas)" #. fbGn8 #: svtools/inc/langtab.hrc:308 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/svx/messages.po libreoffice-7.1.3~rc2/translations/source/oc/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-04-21 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557837472.000000\n" #. 3GkZj @@ -5640,7 +5640,7 @@ #: include/svx/strings.hrc:1011 msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR" msgid "Recovery of your documents was finished. Click 'Finish' to see your documents." -msgstr "La recuperacion dels documents es acabada. Clicatz sus 'Acabar' per veire vòstres documents." +msgstr "La recuperacion dels documents es acabada. Clicatz sus « Acabar » per veire vòstres documents." #. ZbeCG #: include/svx/strings.hrc:1012 @@ -15707,7 +15707,7 @@ #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:90 msgctxt "docrecoveryrecoverdialog|desc" msgid "%PRODUCTNAME will attempt to recover the state of the files you were working on before it crashed. Click 'Start' to begin the process, or click 'Discard' to cancel the recovery." -msgstr "%PRODUCTNAME va ensajar de recuperar l'estat dels fichièrs suls quals trabalhàvetz abans l'arrèst brutal. Clicatz sus 'Aviar' per començar lo processús o clicatz sus 'Abandonar' per anullar la recuperacion." +msgstr "%PRODUCTNAME va ensajar de recuperar l'estat dels fichièrs suls quals trabalhàvetz abans l'arrèst brutal. Clicatz sus « Aviar » per començar lo processús o clicatz sus 'Abandonar' per anullar la recuperacion." #. B98AV #: svx/uiconfig/ui/docrecoveryrecoverdialog.ui:116 @@ -15737,7 +15737,7 @@ #: svx/uiconfig/ui/docrecoverysavedialog.ui:78 msgctxt "docrecoverysavedialog|label1" msgid "Due to an error, %PRODUCTNAME crashed. All the files you were working on will now be saved. The next time %PRODUCTNAME is launched, your files will be recovered automatically." -msgstr "" +msgstr "A causa d’una error %PRODUCTNAME s’arrestèt brutalament. Totes los fichièrs que trabalhàvetz seràn ara enregistrats. A l’aviada venenta de %PRODUCTNAME vòstres fichièrs seràn automaticament restaurats." #. JEJdG #: svx/uiconfig/ui/docrecoverysavedialog.ui:101 @@ -15797,13 +15797,13 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:8 msgctxt "findreplacedialog-mobile|FindReplaceDialog" msgid "Find & Replace" -msgstr "" +msgstr "Cercar e remplaçar" #. eByBj #: svx/uiconfig/ui/findreplacedialog-mobile.ui:142 msgctxt "findreplacedialog-mobile|label4" msgid "_Find:" -msgstr "" +msgstr "_Cercar :" #. oNJkY #: svx/uiconfig/ui/findreplacedialog-mobile.ui:196 @@ -15857,19 +15857,19 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:460 msgctxt "findreplacedialog-mobile|searchall" msgid "Find _All" -msgstr "" +msgstr "To_t recercar" #. xizGS #: svx/uiconfig/ui/findreplacedialog-mobile.ui:474 msgctxt "findreplacedialog-mobile|backsearch" msgid "Find Pre_vious" -msgstr "" +msgstr "Cercar lo pre_cedent" #. Fnoy9 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:488 msgctxt "findreplacedialog-mobile|search" msgid "Find Ne_xt" -msgstr "" +msgstr "Cercar lo se_guent" #. 4xbpA #: svx/uiconfig/ui/findreplacedialog-mobile.ui:504 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/sw/messages.po libreoffice-7.1.3~rc2/translations/source/oc/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Quentin PAGÈS \n" "Language-Team: Occitan \n" "Language: oc\n" @@ -13,86 +13,86 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557839363.000000\n" #. v3oJv #: sw/inc/AccessibilityCheckStrings.hrc:16 msgctxt "STR_NO_ALT" msgid "No alt text for graphic '%OBJECT_NAME%'" -msgstr "" +msgstr "Cap de tèxt alternatiu per l’imatge « %OBJECT_NAME% »" #. 3CdQr #: sw/inc/AccessibilityCheckStrings.hrc:17 msgctxt "STR_TABLE_MERGE_SPLIT" msgid "Table '%OBJECT_NAME%' contains merges or splits" -msgstr "" +msgstr "Lo tablèu « %OBJECT_NAME% » conten de fusions o de divisions de cellulas" #. idEDM #: sw/inc/AccessibilityCheckStrings.hrc:18 msgctxt "STR_FAKE_NUMBERING" msgid "Fake numbering '%NUMBERING%'" -msgstr "" +msgstr "Numerotacion falsa « %NUMBERING% »" #. zE4PU #: sw/inc/AccessibilityCheckStrings.hrc:19 msgctxt "STR_HYPERLINK_TEXT_IS_LINK" msgid "Hyperlink text is the same as the link address '%LINK%'" -msgstr "" +msgstr "Lo tèxt de l’iperligam es identic a l’adreça del ligam « %LINK% »" #. xYUv3 #: sw/inc/AccessibilityCheckStrings.hrc:20 msgctxt "STR_TEXT_CONTRAST" msgid "Text contrast is too low." -msgstr "" +msgstr "Lo contrast del tèxt es tròp febla." #. m5DEP #: sw/inc/AccessibilityCheckStrings.hrc:21 msgctxt "STR_TEXT_BLINKING" msgid "Blinking text." -msgstr "" +msgstr "Tèxt cluquejant." #. CQviA #: sw/inc/AccessibilityCheckStrings.hrc:22 msgctxt "STR_AVOID_FOOTNOTES" msgid "Avoid footnotes." -msgstr "" +msgstr "Evitar las nòtas de nòtas de bas de pagina." #. sg2MT #: sw/inc/AccessibilityCheckStrings.hrc:23 msgctxt "STR_AVOID_ENDNOTES" msgid "Avoid endnotes." -msgstr "" +msgstr "Evitar las nòtas de fin." #. qhNEG #: sw/inc/AccessibilityCheckStrings.hrc:24 msgctxt "STR_HEADINGS_NOT_IN_ORDER" msgid "Headings not in order." -msgstr "" +msgstr "Los títols son pas dins l’òrdre." #. Ryz5w #: sw/inc/AccessibilityCheckStrings.hrc:25 msgctxt "STR_TEXT_FORMATTING_CONVEYS_MEANING" msgid "The text formatting conveys additional meaning." -msgstr "" +msgstr "Lo formatatge del tèxt exprimís un sens addicional." #. MXVBm #: sw/inc/AccessibilityCheckStrings.hrc:26 msgctxt "STR_NON_INTERACTIVE_FORMS" msgid "An input form is not interactive." -msgstr "" +msgstr "Un formulari de picada es pas interactiu." #. Z6sHT #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_FLOATING_TEXT" msgid "Avoid floating text." -msgstr "" +msgstr "Evitar un tèxt flotant." #. 77aXx #: sw/inc/AccessibilityCheckStrings.hrc:28 msgctxt "STR_HEADING_IN_TABLE" msgid "Tables must not contain headings." -msgstr "" +msgstr "Los tablèus devon pas conténer cap de títol." #. LxJKy #: sw/inc/AccessibilityCheckStrings.hrc:29 @@ -110,19 +110,19 @@ #: sw/inc/AccessibilityCheckStrings.hrc:32 msgctxt "STR_DOCUMENT_DEFAULT_LANGUAGE" msgid "Document default language is not set" -msgstr "" +msgstr "La lenga per defaut del document es pas definida" #. CgEBJ #: sw/inc/AccessibilityCheckStrings.hrc:33 msgctxt "STR_STYLE_NO_LANGUAGE" msgid "Style '%STYLE_NAME%' has no language set" -msgstr "" +msgstr "Cap de lenga pas definida per l’estil « %STYLE_NAME% »" #. FG4Vn #: sw/inc/AccessibilityCheckStrings.hrc:34 msgctxt "STR_DOCUMENT_TITLE" msgid "Document title is not set" -msgstr "" +msgstr "Lo títol del document es pas definit" #. DdjvG #: sw/inc/app.hrc:29 @@ -612,86 +612,86 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "" +msgstr "Format dirèct de caractèrs" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "" +msgstr "Format dirèct dels paragrafes" #. YUbUQ #. Format names #: sw/inc/inspectorproperties.hrc:35 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Color" -msgstr "" +msgstr "Color" #. 5Btdu #: sw/inc/inspectorproperties.hrc:36 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Border Distance" -msgstr "" +msgstr "Distància de la bordadura" #. sKjYr #: sw/inc/inspectorproperties.hrc:37 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Inner Line Width" -msgstr "" +msgstr "Largor de linha interiora" #. yrAyD #: sw/inc/inspectorproperties.hrc:38 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Distance" -msgstr "" +msgstr "Distància entre las linhas" #. jS4tt #: sw/inc/inspectorproperties.hrc:39 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Style" -msgstr "" +msgstr "Estil de linha" #. noNDX #: sw/inc/inspectorproperties.hrc:40 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Width" -msgstr "" +msgstr "Largor de linha" #. MVL7X #: sw/inc/inspectorproperties.hrc:41 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outer Line Width" -msgstr "" +msgstr "Largor de linha exteriora" #. c7Qfp #: sw/inc/inspectorproperties.hrc:42 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border" -msgstr "" +msgstr "Bordadura inferiora" #. EWncC #: sw/inc/inspectorproperties.hrc:43 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Bottom Border Distance" -msgstr "" +msgstr "Distància a la bordadura inferiora" #. rLqgx #: sw/inc/inspectorproperties.hrc:44 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Break Type" -msgstr "" +msgstr "Tipe de copadura" #. kFMbA #: sw/inc/inspectorproperties.hrc:45 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Category" -msgstr "" +msgstr "Categoria" #. cd79Y #: sw/inc/inspectorproperties.hrc:46 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Cell" -msgstr "" +msgstr "Cellula" #. JzYHd #: sw/inc/inspectorproperties.hrc:47 @@ -751,7 +751,7 @@ #: sw/inc/inspectorproperties.hrc:56 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Color" -msgstr "" +msgstr "Caractèr color" #. FBN8b #: sw/inc/inspectorproperties.hrc:57 @@ -823,7 +823,7 @@ #: sw/inc/inspectorproperties.hrc:68 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Flash" -msgstr "" +msgstr "Caractèr cluquejant" #. XXqBJ #: sw/inc/inspectorproperties.hrc:69 @@ -937,7 +937,7 @@ #: sw/inc/inspectorproperties.hrc:87 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Hidden" -msgstr "" +msgstr "Caractèr rescondut" #. TkovG #: sw/inc/inspectorproperties.hrc:88 @@ -1225,7 +1225,7 @@ #: sw/inc/inspectorproperties.hrc:135 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Endnote" -msgstr "" +msgstr "Nòta de fin" #. YmvFY #: sw/inc/inspectorproperties.hrc:136 @@ -1393,37 +1393,37 @@ #: sw/inc/inspectorproperties.hrc:163 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Footnote" -msgstr "" +msgstr "Nòtas de pè de pagina" #. NuA4J #: sw/inc/inspectorproperties.hrc:164 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hidden" -msgstr "" +msgstr "Amagat" #. TwGWU #: sw/inc/inspectorproperties.hrc:165 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Events" -msgstr "" +msgstr "Eveniment de l'iperligam" #. XU6P3 #: sw/inc/inspectorproperties.hrc:166 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Name" -msgstr "" +msgstr "Nom de l'iperligam" #. qRBxH #: sw/inc/inspectorproperties.hrc:167 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink Target" -msgstr "" +msgstr "Cibla de l'iperligam" #. BoFLZ #: sw/inc/inspectorproperties.hrc:168 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Hyperlink URL" -msgstr "" +msgstr "URL de l'iperligam" #. CbvLt #: sw/inc/inspectorproperties.hrc:169 @@ -1459,7 +1459,7 @@ #: sw/inc/inspectorproperties.hrc:174 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "List Id" -msgstr "" +msgstr "ID lista" #. b73Zq #: sw/inc/inspectorproperties.hrc:175 @@ -1489,7 +1489,7 @@ #: sw/inc/inspectorproperties.hrc:179 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Numbering Rules" -msgstr "" +msgstr "Règlas de numerotacion" #. nTMoh #: sw/inc/inspectorproperties.hrc:180 @@ -1531,7 +1531,7 @@ #: sw/inc/inspectorproperties.hrc:186 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Page Style Name" -msgstr "" +msgstr "Nom de l'estil de pagina" #. UyyB6 #: sw/inc/inspectorproperties.hrc:187 @@ -1849,7 +1849,7 @@ #: sw/inc/inspectorproperties.hrc:239 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Rsid" -msgstr "" +msgstr "RSID" #. Uoosp #: sw/inc/inspectorproperties.hrc:240 @@ -1879,7 +1879,7 @@ #: sw/inc/inspectorproperties.hrc:244 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Ruby Text" -msgstr "" +msgstr "Tèxt ruby" #. tJEtt #: sw/inc/inspectorproperties.hrc:245 @@ -1897,31 +1897,31 @@ #: sw/inc/inspectorproperties.hrc:247 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Field" -msgstr "" +msgstr "Camp de tèxt" #. a6k8F #: sw/inc/inspectorproperties.hrc:248 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Frame" -msgstr "" +msgstr "Quadre de tèxte" #. CNyuR #: sw/inc/inspectorproperties.hrc:249 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Paragraph" -msgstr "" +msgstr "Paragraf de tèxt" #. nTTEM #: sw/inc/inspectorproperties.hrc:250 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Section" -msgstr "" +msgstr "Seccion de tèxt" #. VCADG #: sw/inc/inspectorproperties.hrc:251 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Text Table" -msgstr "" +msgstr "Tablèu de tèxt" #. hDjMA #: sw/inc/inspectorproperties.hrc:252 @@ -1957,7 +1957,7 @@ #: sw/inc/inspectorproperties.hrc:257 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Writing Mode" -msgstr "" +msgstr "Mòde escritura" #. QBR3s #: sw/inc/mmaddressblockpage.hrc:27 @@ -2147,7 +2147,7 @@ #: sw/inc/pageformatpanel.hrc:29 msgctxt "RID_PAGEFORMATPANEL_MARGINS_INCH" msgid "Normal (%1)" -msgstr "" +msgstr "Normal (%1)" #. DjCNK #: sw/inc/pageformatpanel.hrc:30 @@ -2187,7 +2187,7 @@ #: sw/inc/pageformatpanel.hrc:45 msgctxt "RID_PAGEFORMATPANEL_MARGINS_CM" msgid "Normal (%1)" -msgstr "" +msgstr "Normal (%1)" #. oJfxD #: sw/inc/pageformatpanel.hrc:46 @@ -2206,7 +2206,7 @@ #: sw/inc/strings.hrc:27 msgctxt "STR_POOLCHR_STANDARD" msgid "Default Character Style" -msgstr "" +msgstr "Estil de caractèrs per defaut" #. iVg2a #: sw/inc/strings.hrc:28 @@ -2242,7 +2242,7 @@ #: sw/inc/strings.hrc:33 msgctxt "STR_POOLCHR_BULLET_LEVEL" msgid "Bullets" -msgstr "" +msgstr "Piuses" #. HsfNg #: sw/inc/strings.hrc:34 @@ -2461,7 +2461,7 @@ #: sw/inc/strings.hrc:72 msgctxt "STR_POOLCOLL_NUMBER_BULLET_BASE" msgid "List" -msgstr "" +msgstr "Lista" #. ffDqU #: sw/inc/strings.hrc:73 @@ -2665,121 +2665,121 @@ #: sw/inc/strings.hrc:106 msgctxt "STR_POOLCOLL_BULLET_LEVEL1S" msgid "List 1 Start" -msgstr "" +msgstr "Debuta lista 1" #. baq6K #: sw/inc/strings.hrc:107 msgctxt "STR_POOLCOLL_BULLET_LEVEL1" msgid "List 1" -msgstr "" +msgstr "Lista 1" #. TiBqs #: sw/inc/strings.hrc:108 msgctxt "STR_POOLCOLL_BULLET_LEVEL1E" msgid "List 1 End" -msgstr "" +msgstr "Fin lista 1" #. VvvEa #: sw/inc/strings.hrc:109 msgctxt "STR_POOLCOLL_BULLET_NONUM1" msgid "List 1 Cont." -msgstr "" +msgstr "Lista 1 seguida" #. 9ACKm #: sw/inc/strings.hrc:110 msgctxt "STR_POOLCOLL_BULLET_LEVEL2S" msgid "List 2 Start" -msgstr "" +msgstr "Debuta lista 2" #. ABCWg #: sw/inc/strings.hrc:111 msgctxt "STR_POOLCOLL_BULLET_LEVEL2" msgid "List 2" -msgstr "" +msgstr "Lista 2" #. R9iEV #: sw/inc/strings.hrc:112 msgctxt "STR_POOLCOLL_BULLET_LEVEL2E" msgid "List 2 End" -msgstr "" +msgstr "Fin lista 2" #. XTGpX #: sw/inc/strings.hrc:113 msgctxt "STR_POOLCOLL_BULLET_NONUM2" msgid "List 2 Cont." -msgstr "" +msgstr "Lista 2 seguida" #. n97tD #: sw/inc/strings.hrc:114 msgctxt "STR_POOLCOLL_BULLET_LEVEL3S" msgid "List 3 Start" -msgstr "" +msgstr "Debuta lista 3" #. JBTGo #: sw/inc/strings.hrc:115 msgctxt "STR_POOLCOLL_BULLET_LEVEL3" msgid "List 3" -msgstr "" +msgstr "Lista 3" #. B9RA4 #: sw/inc/strings.hrc:116 msgctxt "STR_POOLCOLL_BULLET_LEVEL3E" msgid "List 3 End" -msgstr "" +msgstr "Fin lista 3" #. ZB29x #: sw/inc/strings.hrc:117 msgctxt "STR_POOLCOLL_BULLET_NONUM3" msgid "List 3 Cont." -msgstr "" +msgstr "Lista 3 seguida" #. zFXDk #: sw/inc/strings.hrc:118 msgctxt "STR_POOLCOLL_BULLET_LEVEL4S" msgid "List 4 Start" -msgstr "" +msgstr "Debuta lista 4" #. 34JZ2 #: sw/inc/strings.hrc:119 msgctxt "STR_POOLCOLL_BULLET_LEVEL4" msgid "List 4" -msgstr "" +msgstr "Lista 4" #. 3T3WD #: sw/inc/strings.hrc:120 msgctxt "STR_POOLCOLL_BULLET_LEVEL4E" msgid "List 4 End" -msgstr "" +msgstr "Fin lista 4" #. buakQ #: sw/inc/strings.hrc:121 msgctxt "STR_POOLCOLL_BULLET_NONUM4" msgid "List 4 Cont." -msgstr "" +msgstr "Lista 4 seguida" #. vGaiE #: sw/inc/strings.hrc:122 msgctxt "STR_POOLCOLL_BULLET_LEVEL5S" msgid "List 5 Start" -msgstr "" +msgstr "Debuta lista 5" #. B4dDL #: sw/inc/strings.hrc:123 msgctxt "STR_POOLCOLL_BULLET_LEVEL5" msgid "List 5" -msgstr "" +msgstr "Lista 5" #. HTfse #: sw/inc/strings.hrc:124 msgctxt "STR_POOLCOLL_BULLET_LEVEL5E" msgid "List 5 End" -msgstr "" +msgstr "Fin lista 5" #. dAYD6 #: sw/inc/strings.hrc:125 msgctxt "STR_POOLCOLL_BULLET_NONUM5" msgid "List 5 Cont." -msgstr "" +msgstr "Lista 5 seguida" #. DB3VN #: sw/inc/strings.hrc:126 @@ -2893,13 +2893,13 @@ #: sw/inc/strings.hrc:144 msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS" msgid "Addressee" -msgstr "" +msgstr "Destinatari" #. PvoVz #: sw/inc/strings.hrc:145 msgctxt "STR_POOLCOLL_SEND_ADDRESS" msgid "Sender" -msgstr "" +msgstr "Expeditor" #. AChE4 #: sw/inc/strings.hrc:146 @@ -3073,7 +3073,7 @@ #: sw/inc/strings.hrc:174 msgctxt "STR_POOLCOLL_TOX_ILLUSH" msgid "Figure Index Heading" -msgstr "" +msgstr "Títol d'indèx de las figuras" #. rA84j #: sw/inc/strings.hrc:175 @@ -3134,7 +3134,7 @@ #: sw/inc/strings.hrc:185 msgctxt "STR_POOLCOLL_DOC_APPENDIX" msgid "Appendix" -msgstr "" +msgstr "Annèxe" #. xiVb7 #: sw/inc/strings.hrc:186 @@ -3195,7 +3195,7 @@ #: sw/inc/strings.hrc:196 msgctxt "STR_POOLPAGE_ENVELOPE" msgid "Envelope" -msgstr "" +msgstr "Envolopa" #. jGSGz #: sw/inc/strings.hrc:197 @@ -3328,7 +3328,7 @@ #: sw/inc/strings.hrc:224 msgctxt "STR_TABSTYLE_DEFAULT" msgid "Default Table Style" -msgstr "" +msgstr "Estil de tablèu per defaut" #. fCbrD #: sw/inc/strings.hrc:226 @@ -3430,13 +3430,13 @@ #: sw/inc/strings.hrc:243 msgctxt "STR_BOOKMARK_YES" msgid "Yes" -msgstr "" +msgstr "Òc" #. tvmJD #: sw/inc/strings.hrc:244 msgctxt "STR_BOOKMARK_NO" msgid "No" -msgstr "" +msgstr "Non" #. DCJBh #: sw/inc/strings.hrc:245 @@ -3701,7 +3701,7 @@ #: sw/inc/strings.hrc:289 msgctxt "STR_OUTLINE_NUMBERING" msgid "Chapter Numbering" -msgstr "" +msgstr "Numerotacion dels capítols" #. 8mutJ #. To translators: $1 == will be replaced by STR_WORDCOUNT_WORDARG, and $2 by STR_WORDCOUNT_COLARG @@ -4032,7 +4032,7 @@ #: sw/inc/strings.hrc:352 msgctxt "STR_CONTENT_TYPE_FRAME" msgid "Frames" -msgstr "" +msgstr "Quadres" #. YFZFi #: sw/inc/strings.hrc:353 @@ -4140,13 +4140,13 @@ #: sw/inc/strings.hrc:370 msgctxt "STR_IDXEXAMPLE_IDXMARK_CHAPTER" msgid "Chapter" -msgstr "" +msgstr "Capítol" #. s9w3k #: sw/inc/strings.hrc:371 msgctxt "STR_IDXEXAMPLE_IDXMARK_KEYWORD" msgid "Keyword" -msgstr "" +msgstr "Mot clau" #. 8bbUo #: sw/inc/strings.hrc:372 @@ -4158,25 +4158,25 @@ #: sw/inc/strings.hrc:373 msgctxt "STR_IDXEXAMPLE_IDXMARK_ENTRY" msgid "Entry" -msgstr "" +msgstr "Entrada" #. cT6YY #: sw/inc/strings.hrc:374 msgctxt "STR_IDXEXAMPLE_IDXMARK_THIS" msgid "this" -msgstr "" +msgstr "aquò" #. KNkfh #: sw/inc/strings.hrc:375 msgctxt "STR_IDXEXAMPLE_IDXMARK_PRIMARY_KEY" msgid "Primary key" -msgstr "" +msgstr "Clau primària" #. 2J7Ut #: sw/inc/strings.hrc:376 msgctxt "STR_IDXEXAMPLE_IDXMARK_SECONDARY_KEY" msgid "Secondary key" -msgstr "" +msgstr "Clau segondària" #. beBJ6 #: sw/inc/strings.hrc:377 @@ -4282,13 +4282,13 @@ #: sw/inc/strings.hrc:393 msgctxt "STR_HYPH_MISSING" msgid "Missing hyphenation data" -msgstr "" +msgstr "Donadas de copadura de mots absentas" #. TEP66 #: sw/inc/strings.hrc:394 msgctxt "STR_HYPH_MISSING" msgid "Please install the hyphenation package for locale “%1”." -msgstr "" +msgstr "Installatz lo paquet de copadura de mots per la lenga « %1 »." #. MEN2d #. Undo @@ -4904,8 +4904,8 @@ msgctxt "STR_UNDO_NLS" msgid "One line break" msgid_plural "$1 line breaks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Un saut de linha" +msgstr[1] "$1 sauts de linha" #. yS3nP #: sw/inc/strings.hrc:499 @@ -5121,7 +5121,7 @@ #: sw/inc/strings.hrc:534 msgctxt "STR_UNDO_INSERT_TEXTBOX" msgid "text box" -msgstr "" +msgstr "Zòna de tèxt" #. yNjem #. undo: STR_PARAGRAPHS, string.text @@ -5213,8 +5213,8 @@ msgctxt "STR_CHAPTERS" msgid "chapter" msgid_plural "chapters" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "capítol" +msgstr[1] "capítols" #. 2JCL2 #: sw/inc/strings.hrc:551 @@ -5268,7 +5268,7 @@ #: sw/inc/strings.hrc:559 msgctxt "STR_UNDO_INSERT_FORM_FIELD" msgid "Insert form field" -msgstr "" +msgstr "Inserir un camp de formulari" #. 2zJmG #: sw/inc/strings.hrc:560 @@ -5622,7 +5622,7 @@ #: sw/inc/strings.hrc:623 msgctxt "STR_PRINTOPTUI_PRINTALLPAGES" msgid "~All Pages" -msgstr "" +msgstr "~Totas las paginas" #. ZDRM2 #: sw/inc/strings.hrc:624 @@ -5730,7 +5730,7 @@ #: sw/inc/strings.hrc:643 msgctxt "STR_OUTLINE_TRACKING_DEFAULT" msgid "Default" -msgstr "" +msgstr "Per defaut" #. HGDgJ #: sw/inc/strings.hrc:644 @@ -5742,7 +5742,7 @@ #: sw/inc/strings.hrc:645 msgctxt "STR_OUTLINE_TRACKING_OFF" msgid "Off" -msgstr "" +msgstr "Desactivat" #. 4ASQ7 #: sw/inc/strings.hrc:646 @@ -5796,13 +5796,13 @@ #: sw/inc/strings.hrc:655 msgctxt "STR_EXPANDALL" msgid "Expand All" -msgstr "" +msgstr "O expendir tot" #. FxGVt #: sw/inc/strings.hrc:656 msgctxt "STR_COLLAPSEALL" msgid "Collapse All" -msgstr "" +msgstr "O reduire tot" #. xvSRm #: sw/inc/strings.hrc:657 @@ -6638,7 +6638,7 @@ #: sw/inc/strings.hrc:805 msgctxt "STR_PRIVATETEXT" msgid "%PRODUCTNAME %PRODUCTVERSION Text Document" -msgstr "" +msgstr "Document tèxt %PRODUCTNAME %PRODUCTVERSION Text" #. 8ygN3 #: sw/inc/strings.hrc:806 @@ -6893,13 +6893,13 @@ #: sw/inc/strings.hrc:851 msgctxt "ST_STARTING" msgid "Select Starting Document" -msgstr "" +msgstr "Seleccionar lo document de basa" #. FiUyK #: sw/inc/strings.hrc:852 msgctxt "ST_DOCUMENTTYPE" msgid "Select Document Type" -msgstr "" +msgstr "Seleccionar un tipe de document" #. QwrpS #: sw/inc/strings.hrc:853 @@ -6971,7 +6971,7 @@ #: sw/inc/strings.hrc:866 msgctxt "STR_DICTIONARY_UNAVAILABLE" msgid "No dictionary available" -msgstr "" +msgstr "Cap de diccionari pas disponible" #. 8gBWQ #. -------------------------------------------------------------------- @@ -8007,13 +8007,13 @@ #: sw/inc/strings.hrc:1084 msgctxt "STR_SURROUND_IDEAL" msgid "Optimal" -msgstr "" +msgstr "Optimal" #. HEuGy #: sw/inc/strings.hrc:1085 msgctxt "STR_SURROUND_NONE" msgid "None" -msgstr "" +msgstr "Cap" #. 4tA4q #: sw/inc/strings.hrc:1086 @@ -8031,13 +8031,13 @@ #: sw/inc/strings.hrc:1088 msgctxt "STR_SURROUND_LEFT" msgid "Before" -msgstr "" +msgstr "Abans" #. bGBtQ #: sw/inc/strings.hrc:1089 msgctxt "STR_SURROUND_RIGHT" msgid "After" -msgstr "" +msgstr "Aprèp" #. SrG3D #: sw/inc/strings.hrc:1090 @@ -8968,7 +8968,7 @@ #: sw/inc/strings.hrc:1249 msgctxt "STR_PAGE_COUNT_PRINTED" msgid "Page %1 of %2 (Page %3 of %4 to print)" -msgstr "" +msgstr "Pagina %1 de %2 (Pagina %3 de %4 d’imprimir)" #. KjML8 #. Strings for gallery/background @@ -9483,7 +9483,7 @@ #: sw/inc/strings.hrc:1351 msgctxt "STR_DROP_DOWN_EMPTY_LIST" msgid "No Item specified" -msgstr "" +msgstr "Cap d’element pas especificat" #. e2tTF #. -------------------------------------------------------------------- @@ -9537,7 +9537,7 @@ #: sw/inc/strings.hrc:1370 msgctxt "STR_MAILCONFIG_DLG_TITLE" msgid "Email settings" -msgstr "" +msgstr "Paramètres de corrièl" #. PwrB9 #: sw/inc/strings.hrc:1372 @@ -9939,13 +9939,13 @@ #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:12 msgctxt "alreadyexistsdialog|textbuffer1" msgid "A document with the name '%1' already exists." -msgstr "" +msgstr "Un document amb lo nom « %1 » existe déjà existís ja." #. rstcF #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:13 msgctxt "alreadyexistsdialog|textbuffer2" msgid "Please save this document under a different name." -msgstr "" +msgstr "Mercés de causir un nom diferent." #. Q9ieU #: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:83 @@ -10151,7 +10151,7 @@ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:216 msgctxt "assignfieldsdialog|ST_MATCHESTO" msgid "Matches to field" -msgstr "" +msgstr "Correspond al camp" #. maVoT #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:242 @@ -10205,7 +10205,7 @@ #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:226 msgctxt "assignstylesdialog|right-atkobject" msgid "Right" -msgstr "Dreita" +msgstr "Drecha" #. vmpZc #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:227 @@ -10397,7 +10397,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:410 msgctxt "extended_tip|inpassword" msgid "Enter the password." -msgstr "" +msgstr "Picatz lo senhal" #. eEGih #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:424 @@ -10763,7 +10763,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:555 msgctxt "autotext|example-atkobject" msgid "Preview" -msgstr "" +msgstr "Apercebut" #. 2FEex #: sw/uiconfig/swriter/ui/autotext.ui:591 @@ -10793,7 +10793,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:80 msgctxt "bibliographyentry|extended_tip|close" msgid "Closes the dialog." -msgstr "" +msgstr "Tampar la fenèstra de dialòg." #. sQJ4e #: sw/uiconfig/swriter/ui/bibliographyentry.ui:92 @@ -10817,7 +10817,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:153 msgctxt "bibliographyentry|frombibliography" msgid "Bibliography Database" -msgstr "" +msgstr "Basa de donadas bibliografica" #. TyGCb #: sw/uiconfig/swriter/ui/bibliographyentry.ui:163 @@ -10829,7 +10829,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:174 msgctxt "bibliographyentry|fromdocument" msgid "Document Content" -msgstr "" +msgstr "Contengut del document" #. m4Ynn #: sw/uiconfig/swriter/ui/bibliographyentry.ui:184 @@ -10877,7 +10877,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:337 msgctxt "bibliographyentry|label4" msgid "Entry" -msgstr "" +msgstr "Entrada" #. 3trf6 #: sw/uiconfig/swriter/ui/bibliographyentry.ui:361 @@ -11021,7 +11021,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:226 msgctxt "businessdatapage|url-atkobject" msgid "Fax number" -msgstr "" +msgstr "Numèro de fax" #. RshDE #: sw/uiconfig/swriter/ui/businessdatapage.ui:227 @@ -11549,7 +11549,7 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:131 msgctxt "charurlpage|extended_tip|nameed" msgid "Enter a name for the hyperlink." -msgstr "" +msgstr "Picatz un nom per l'iperligam" #. grQbi #: sw/uiconfig/swriter/ui/charurlpage.ui:149 @@ -11921,7 +11921,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:106 msgctxt "conditionpage|contextft" msgid "Context" -msgstr "" +msgstr "Contèxt" #. y3tzD #: sw/uiconfig/swriter/ui/conditionpage.ui:119 @@ -11951,7 +11951,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:230 msgctxt "conditionpage|styleft" msgid "Paragraph Styles" -msgstr "" +msgstr "Estils de paragraf" #. BAsYG #: sw/uiconfig/swriter/ui/conditionpage.ui:241 @@ -12485,13 +12485,13 @@ #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:118 msgctxt "customizeaddrlistdialog|extended_tip|add" msgid "Inserts a new text field." -msgstr "" +msgstr "Inserir un camp de tèxt novèl." #. zesMS #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:137 msgctxt "customizeaddrlistdialog|extended_tip|delete" msgid "Deletes the selected field." -msgstr "" +msgstr "Suprimir lo camp seleccionat." #. 8TKnG #: sw/uiconfig/swriter/ui/customizeaddrlistdialog.ui:149 @@ -12545,7 +12545,7 @@ #: sw/uiconfig/swriter/ui/dateformfielddialog.ui:90 msgctxt "dateformfielddialog|date_format_list_label" msgid "Date Format" -msgstr "" +msgstr "Format de data" #. DQ6DH #: sw/uiconfig/swriter/ui/dropcapspage.ui:62 @@ -12683,13 +12683,13 @@ #: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:100 msgctxt "dropdownformfielddialog|item_label" msgid "Item" -msgstr "" +msgstr "Element" #. PXnt4 #: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:153 msgctxt "dropdownformfielddialog|listitem_label" msgid "Items on list" -msgstr "" +msgstr "Element de la lista" #. mrXBF #: sw/uiconfig/swriter/ui/dropdownformfielddialog.ui:225 @@ -12785,7 +12785,7 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:104 msgctxt "editfielddialog|extended_tip|prev" msgid "Edit field contents." -msgstr "" +msgstr "Editar lo contengut del camp." #. T4GAj #: sw/uiconfig/swriter/ui/editfielddialog.ui:118 @@ -12797,7 +12797,7 @@ #: sw/uiconfig/swriter/ui/editfielddialog.ui:123 msgctxt "editfielddialog|extended_tip|next" msgid "Edit field contents." -msgstr "" +msgstr "Editar lo contengut del camp." #. Gg5FB #: sw/uiconfig/swriter/ui/editfielddialog.ui:134 @@ -13019,7 +13019,7 @@ #: sw/uiconfig/swriter/ui/editsectiondialog.ui:810 msgctxt "editsectiondialog|extended_tip|EditSectionDialog" msgid "Sets the properties of the section." -msgstr "" +msgstr "Definís las proprietats de la seccion." #. Sy8Ao #: sw/uiconfig/swriter/ui/endnotepage.ui:42 @@ -13265,25 +13265,25 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:44 msgctxt "envformatpage|character1" msgid "C_haracter..." -msgstr "" +msgstr "C_aractèr..." #. 69pND #: sw/uiconfig/swriter/ui/envformatpage.ui:52 msgctxt "envformatpage|paragraph1" msgid "P_aragraph..." -msgstr "" +msgstr "P_aragraf..." #. NUhGf #: sw/uiconfig/swriter/ui/envformatpage.ui:64 msgctxt "envformatpage|character2" msgid "C_haracter..." -msgstr "" +msgstr "C_aractèr..." #. NTzVU #: sw/uiconfig/swriter/ui/envformatpage.ui:72 msgctxt "envformatpage|paragraph2" msgid "P_aragraph..." -msgstr "" +msgstr "P_aragraf..." #. uXLxV #: sw/uiconfig/swriter/ui/envformatpage.ui:133 @@ -13701,7 +13701,7 @@ #: sw/uiconfig/swriter/ui/fielddialog.ui:65 msgctxt "fielddialog|extended_tip|cancel" msgid "Closes the dialog." -msgstr "" +msgstr "Tampar la fenèstra de dialòg." #. kViDy #: sw/uiconfig/swriter/ui/fielddialog.ui:143 @@ -13917,7 +13917,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:169 msgctxt "flddocinfopage|label2" msgid "_Select" -msgstr "" +msgstr "_Seleccionar" #. oGvBL #: sw/uiconfig/swriter/ui/flddocinfopage.ui:237 @@ -13941,7 +13941,7 @@ #: sw/uiconfig/swriter/ui/flddocinfopage.ui:278 msgctxt "flddocinfopage|label3" msgid "_Format" -msgstr "" +msgstr "_Format" #. BmH6G #: sw/uiconfig/swriter/ui/flddocumentpage.ui:103 @@ -13965,7 +13965,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:190 msgctxt "flddocumentpage|label2" msgid "_Select" -msgstr "" +msgstr "_Seleccionar" #. xtXnr #: sw/uiconfig/swriter/ui/flddocumentpage.ui:267 @@ -13977,7 +13977,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:327 msgctxt "flddocumentpage|label3" msgid "_Format" -msgstr "" +msgstr "_Format" #. k7KnK #: sw/uiconfig/swriter/ui/flddocumentpage.ui:343 @@ -13995,7 +13995,7 @@ #: sw/uiconfig/swriter/ui/flddocumentpage.ui:371 msgctxt "flddocumentpage|levelft" msgid "_Level" -msgstr "" +msgstr "_Nivèl" #. VX38D #: sw/uiconfig/swriter/ui/flddocumentpage.ui:389 @@ -14049,7 +14049,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:167 msgctxt "fldfuncpage|label4" msgid "_Select" -msgstr "" +msgstr "_Seleccionar" #. b3UqC #: sw/uiconfig/swriter/ui/fldfuncpage.ui:229 @@ -14061,7 +14061,7 @@ #: sw/uiconfig/swriter/ui/fldfuncpage.ui:242 msgctxt "fldfuncpage|label2" msgid "_Format" -msgstr "" +msgstr "_Format" #. CGoTS #: sw/uiconfig/swriter/ui/fldfuncpage.ui:267 @@ -14295,7 +14295,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:214 msgctxt "fldvarpage|label2" msgid "_Select" -msgstr "" +msgstr "_Seleccionar" #. ZuuQf #: sw/uiconfig/swriter/ui/fldvarpage.ui:306 @@ -14313,7 +14313,7 @@ #: sw/uiconfig/swriter/ui/fldvarpage.ui:371 msgctxt "fldvarpage|label3" msgid "_Format" -msgstr "" +msgstr "_Format" #. qPpKb #: sw/uiconfig/swriter/ui/fldvarpage.ui:388 @@ -14433,7 +14433,7 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:64 msgctxt "floatingnavigation|ST_GRF" msgid "Graphics" -msgstr "" +msgstr "Imatges" #. EAAkn #: sw/uiconfig/swriter/ui/floatingnavigation.ui:78 @@ -14445,13 +14445,13 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:92 msgctxt "floatingnavigation|ST_PGE" msgid "Page" -msgstr "" +msgstr "Pagina" #. UDWkR #: sw/uiconfig/swriter/ui/floatingnavigation.ui:106 msgctxt "floatingnavigation|ST_OUTL" msgid "Headings" -msgstr "" +msgstr "Títol" #. 3xmFf #: sw/uiconfig/swriter/ui/floatingnavigation.ui:120 @@ -14475,13 +14475,13 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:162 msgctxt "floatingnavigation|STR_IMGBTN_PGE_UP" msgid "Previous page" -msgstr "" +msgstr "Pagina precedenta" #. ASLap #: sw/uiconfig/swriter/ui/floatingnavigation.ui:189 msgctxt "floatingnavigation|ST_REG" msgid "Section" -msgstr "" +msgstr "Seccion" #. TAc6D #: sw/uiconfig/swriter/ui/floatingnavigation.ui:203 @@ -14493,7 +14493,7 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:217 msgctxt "floatingnavigation|ST_SEL" msgid "Selection" -msgstr "" +msgstr "Seleccion" #. vcT7p #: sw/uiconfig/swriter/ui/floatingnavigation.ui:231 @@ -14505,7 +14505,7 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:245 msgctxt "floatingnavigation|ST_POSTIT" msgid "Comment" -msgstr "" +msgstr "Comentari" #. AYXsF #: sw/uiconfig/swriter/ui/floatingnavigation.ui:259 @@ -14535,7 +14535,7 @@ #: sw/uiconfig/swriter/ui/floatingnavigation.ui:315 msgctxt "floatingnavigation|STR_IMGBTN_PGE_DOWN" msgid "Next page" -msgstr "" +msgstr "Pagina seguenta" #. b5iXT #: sw/uiconfig/swriter/ui/floatingsync.ui:7 @@ -15873,7 +15873,7 @@ #: sw/uiconfig/swriter/ui/frmurlpage.ui:64 msgctxt "frmurlpage|extended_tip|name" msgid "Enter a name for the hyperlink." -msgstr "" +msgstr "Picatz un nom per l'iperligam." #. rJNqX #: sw/uiconfig/swriter/ui/frmurlpage.ui:78 @@ -18549,7 +18549,7 @@ #: sw/uiconfig/swriter/ui/mastercontextmenu.ui:126 msgctxt "mastercontextmenu|STR_DELETE_ENTRY" msgid "_Delete" -msgstr "" +msgstr "_Suprimir" #. Gnk7X #: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:8 @@ -19347,7 +19347,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:135 msgctxt "mmresultprintdialog|extended_tip|printers" msgid "Select the printer." -msgstr "" +msgstr "Seleccionatz l’imprimenta." #. SBDzy #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:146 @@ -19365,7 +19365,7 @@ #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:170 msgctxt "mmresultprintdialog|label2" msgid "Printer Options" -msgstr "" +msgstr "Opcions de l’imprimenta" #. VemES #: sw/uiconfig/swriter/ui/mmresultprintdialog.ui:206 @@ -19875,7 +19875,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:57 msgctxt "navigatorcontextmenu|STR_DELETE" msgid "Delete" -msgstr "" +msgstr "Suprimir" #. CQSp3 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:66 @@ -19935,7 +19935,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:142 msgctxt "navigatorcontextmenu|STR_DELETE_ENTRY" msgid "_Delete" -msgstr "" +msgstr "_Suprimir" #. CUqD5 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:151 @@ -19995,7 +19995,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:18 msgctxt "navigatorpanel|hyperlink" msgid "Insert as Hyperlink" -msgstr "" +msgstr "Inserir coma iperligam" #. YFPAS #: sw/uiconfig/swriter/ui/navigatorpanel.ui:28 @@ -22504,7 +22504,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:470 msgctxt "optformataidspage|fillmargin" msgid "Paragraph alignment" -msgstr "" +msgstr "Alinhament de paragraf" #. zGjgi #: sw/uiconfig/swriter/ui/optformataidspage.ui:493 @@ -25878,7 +25878,7 @@ #: sw/uiconfig/swriter/ui/sidebartableedit.ui:340 msgctxt "sidebartableedit|delete_label" msgid "Delete:" -msgstr "" +msgstr "Suprimir :" #. 6wzLa #: sw/uiconfig/swriter/ui/sidebartableedit.ui:400 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/swext/mediawiki/help.po libreoffice-7.1.3~rc2/translations/source/oc/swext/mediawiki/help.po --- libreoffice-7.1.2~rc2/translations/source/oc/swext/mediawiki/help.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/swext/mediawiki/help.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2018-11-15 13:53+0100\n" -"PO-Revision-Date: 2019-05-03 04:43+0000\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Cédric Valmary \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858583.000000\n" +#. 7EFBE #: help.tree msgctxt "" "help.tree\n" @@ -24,6 +25,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. E2gyu #: help.tree msgctxt "" "help.tree\n" @@ -32,6 +34,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. qUKTw #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -40,6 +43,7 @@ msgid "Wiki Publisher" msgstr "Wiki Publisher" +#. FJwZh #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -48,6 +52,7 @@ msgid "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" msgstr "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" +#. AQP9D #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -56,6 +61,7 @@ msgid "Wiki Publisher" msgstr "Wiki Publisher" +#. Cn2Za #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -64,6 +70,7 @@ msgid "By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki." msgstr "En utilizant lo Wiki Publisher podètz cargar vòstre document tèxte Writer actual sus un servidor MediaWiki. Aprèp lo cargament, totes los utilizaires del Wiki piràn legir vòstre document sul Wiki." +#. CJbT6 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -72,6 +79,7 @@ msgid "Choose File - Send - To MediaWiki to upload the current Writer document to a MediaWiki server." msgstr "Causir Fichièr - Mandar - A MediaWiki per encargar lo document Escriure actual dins un servidor MediaWiki." +#. GWuG5 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -80,6 +88,7 @@ msgid "System Requirements" msgstr "Besonhs sistèma" +#. Qu7zC #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -88,14 +97,16 @@ msgid "Java Runtime Environment" msgstr "Environament Java Runtime" +#. TpDDo #: wiki.xhp msgctxt "" "wiki.xhp\n" "par_id7387615\n" "help.text" msgid "A wiki account on a supported MediaWiki server" -msgstr "" +msgstr "Un compte wiki sus un servidor MediaWiki pres en carga" +#. XCFLj #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -104,8 +115,8 @@ msgid "Installing Wiki Publisher" msgstr "Installacion d'Wiki Publisher" +#. a43c7 #: wiki.xhp -#, fuzzy msgctxt "" "wiki.xhp\n" "par_id4277169\n" @@ -113,6 +124,7 @@ msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose Tools - Options - %PRODUCTNAME - Advanced. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME." msgstr "Abans d'utilizar Wiki Publisher, asseguratz-vos que %PRODUCTNAME utiliza un environament d'execucion Java (JRE). Per verificar l'estatut du JRE, causissètz Aisinas - Opcions - %PRODUCTNAME - Avançat. Asseguratz-vos que \"Utilizar un environament d'execucion Java\" es marcat e qu'un dorsièr d'execucion Java es seleccionat dins la zòna de lista. Se cap de JRE es pas activat, activatz alara un JRE 1.4 o superior e reaviatz %PRODUCTNAME." +#. AgmN5 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -121,6 +133,7 @@ msgid "To Connect to a Wiki" msgstr "Per se connectar a un wiki" +#. v3JN9 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -129,6 +142,7 @@ msgid "Note: You can store your user name and password for all respective dialogs inside %PRODUCTNAME. The password will be stored in a secure way, where access is maintained by a master password. To enable the master password, choose Tools - Options - %PRODUCTNAME - Security." msgstr "Remarca : podètz emmagazinar vòstre nom d'utilizaire e vòstre senhal per totas las bóstias de dialòg respectivas dins %PRODUCTNAME. Lo senhal serà emmagazinat d'un biais securizat e son accès es gerit per un senhal principal. Per activar lo senhal principal, causissètz Aisinas - Opcions - %PRODUCTNAME - Seguretat." +#. 5xi4b #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -137,6 +151,7 @@ msgid "Note: If you connect to the web using a proxy server, enter the proxy information to Tools - Options - Internet - Proxy, and restart the software." msgstr "Notar : Se vos connectatz a internet amb un servidor intermediari o proxy, picatz las informacions del servidor intermediari dins Aisinas - Opcions - Internet - Servidor intermediari, e reaviatz lo logicial." +#. CCnbF #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -145,6 +160,7 @@ msgid "Open a Writer document, and choose Tools - Options - Internet - MediaWiki." msgstr "Dobrissètz un document Writer e causissètz Aisinas - Opcions - Internet - MediaWiki." +#. fGcyZ #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -153,6 +169,7 @@ msgid "In the Options dialog, click Add." msgstr "" +#. pkAFV #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -161,6 +178,7 @@ msgid "In the MediaWiki dialog, enter the account information for the wiki." msgstr "" +#. L5NjG #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -169,6 +187,7 @@ msgid "In the URL text box, enter the address of a wiki that you want to connect to." msgstr "" +#. xc4AX #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -177,6 +196,7 @@ msgid "You can copy the URL from a web browser and paste it into the textbox." msgstr "Podètz copiar l'URL a partir d'un navigador web e l'empegar dins l'airal de tèxte." +#. HKsED #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -185,15 +205,16 @@ msgid "In the Username box, enter your user ID for your wiki account." msgstr "" +#. RRpwP #: wiki.xhp -#, fuzzy msgctxt "" "wiki.xhp\n" "par_id9297158\n" "help.text" msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty." -msgstr "Se lo Wiki autoriza d'accèsses en escritura anonima, podètz daissar voidas los airals Nom d'utilizaire e Senhal." +msgstr "Se lo Wiki autoriza d'accèsses en escritura anonimes, podètz daissar voides los airals Nom d'utilizaire e Senhal." +#. JvYgU #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -202,6 +223,7 @@ msgid "In the Password box, enter the password for your wiki account, then click OK." msgstr "" +#. 5c9bL #: wiki.xhp #, fuzzy msgctxt "" @@ -211,6 +233,7 @@ msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose Tools - Options - %PRODUCTNAME - Security to enable the master password. “Save password” is unavailable when the master password is not enabled." msgstr "Facultativament, activatz \"Enregistrar lo senhal\" per enregistrar lo senhal entre doas sessions. Un senhal principal es utilizat per manténer l'accès a totes los senhals enregistrats. Causissètz Aisinas - Opcions - %PRODUCTNAME - Seguretat per activar lo senhal principal. \"Enregistrar lo senhal\" n'es pas disponible se lo senhal principal es pas activat." +#. Afp56 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -219,6 +242,7 @@ msgid "To Create a New Wiki Page" msgstr "Per crear una pagina de wiki novèla" +#. rWxKE #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -227,6 +251,7 @@ msgid "Open a Writer document." msgstr "Dobrissètz un document Writer." +#. VNAGB #: wiki.xhp #, fuzzy msgctxt "" @@ -236,6 +261,7 @@ msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the list of supported formats." msgstr "Escrivètz lo contengut de la pagina Wiki. Podètz utilizar de formatatges tals coma los formats tèxte, las entèstas, las nòtas de bas de pagina e plan mai encara. Vejatz la lista de formats pres en carga a list of supported formats." +#. sqvcC #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -244,6 +270,7 @@ msgid "Choose File - Send - To MediaWiki." msgstr "Causissètz Fichièr - Mandar - A MediaWiki." +#. 6jREj #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -252,6 +279,7 @@ msgid "In the Send to MediaWiki dialog, specify the settings for your entry." msgstr "" +#. i7MPF #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -260,6 +288,7 @@ msgid "MediaWiki server: Select the wiki." msgstr "Servidor MediaWiki : Seleccionatz lo Wiki." +#. Vghfw #: wiki.xhp #, fuzzy msgctxt "" @@ -269,6 +298,7 @@ msgid "Title: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki." msgstr "Títol: Picatz lo títol de vòstra pagina. Picatz lo títol d'una pagina existenta per espotir la pagina amb lo document tèxte actiu. Picatz un títol novèl per crear una pagina novèla dins lo Wiki." +#. AAS4F #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -277,6 +307,7 @@ msgid "Summary: Enter an optional short summary of your page." msgstr "Resumit: picatz un resumit brèu facultatiu de vòstra pagina." +#. QidFi #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -285,6 +316,7 @@ msgid "This is a minor edit: Check this box to mark the uploaded page as a minor edit of the already existing page with the same title." msgstr "Es un edicion menora: marcatz aquela casa per marcar la pagina mesa en linha coma una edicion menora per la pagina existenta amb lo meteis títol." +#. 6qSqt #: wiki.xhp #, fuzzy msgctxt "" @@ -294,6 +326,7 @@ msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." msgstr "Afichar dins lo navigador web: marcatz aquela casa per dobrir lo navigador web del sistèma e afichatz la pagina Wiki mesa en linha." +#. Ehnz2 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -302,6 +335,7 @@ msgid "Click Send." msgstr "Clicatz sus Mandar." +#. JoNcG #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -310,6 +344,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. MQ3NB #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -318,6 +353,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. kXBwS #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -326,6 +362,7 @@ msgid "Use the MediaWiki dialog to add or edit your MediaWiki account settings." msgstr "" +#. F32QW #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -334,6 +371,7 @@ msgid "Enter the URL of a MediaWiki server, starting with \"https://\"." msgstr "" +#. PiGDX #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -342,6 +380,7 @@ msgid "Enter your user name on the MediaWiki server. Leave empty for anonymous access." msgstr "Picatz vòstre nom d'utilizaire sul servidor MediaWiki. Daissatz le camp void per un accès anonime." +#. FSKfy #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -350,6 +389,7 @@ msgid "Enter your password on the MediaWiki server. Leave empty for anonymous access." msgstr "Picatz vòstre senhal pel servidor MediaWiki. Daissatz lo camp void per un accès anonime." +#. zLCx7 #: wikiaccount.xhp #, fuzzy msgctxt "" @@ -359,6 +399,7 @@ msgid "Enable to store your password between sessions. The master password must be enabled; see Tools - Options - %PRODUCTNAME - Security." msgstr "Activatz per emmagazinar vòstre senhal entre doas sessions. Lo senhal principal deu èsser activat, vejatz Aisinas - Opcions - %PRODUCTNAME - Seguretat." +#. EDeV9 #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -367,6 +408,7 @@ msgid "Enter the Internet address of a wiki server in a format like “https://wiki.documentfoundation.org” or copy the URL from a web browser." msgstr "" +#. boKaA #: wikiaccount.xhp #, fuzzy msgctxt "" @@ -376,6 +418,7 @@ msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password." msgstr "Se lo Wiki autoriza un accès anonime, podètz daissar los airals de dialòg pel compte voids. Siquenon picatz-i vòstre nom d'utilizaire e vòstre senhal." +#. M6uYF #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -384,6 +427,7 @@ msgid "If you have enabled the master password feature on the Security tab page of the Tools - Options - %PRODUCTNAME dialog, then the software can store your password and automatically insert the data where necessary. Enable the Save password checkbox to store your password." msgstr "" +#. TpaPN #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -392,6 +436,7 @@ msgid "MediaWiki Formats" msgstr "Formats MediaWiki" +#. C6oUL #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -400,6 +445,7 @@ msgid "MediaWiki Formats" msgstr "Formats MediaWiki" +#. sKvY6 #: wikiformats.xhp #, fuzzy msgctxt "" @@ -409,6 +455,7 @@ msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server." msgstr "La lista seguenta balha un apercebut dels formats de tèxte que Wiki Publisher pòt metre en linha sul servidor Wiki." +#. wC6T7 #: wikiformats.xhp #, fuzzy msgctxt "" @@ -418,6 +465,7 @@ msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other." msgstr "Lo format OpenDocument utilizat per Writer e lo de WikiMedia son un briu diferents. Sonque de sosensemble de totas las foncionalitats pòt èsser transformat d'un format cap a l'autre." +#. R74Ai #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -426,6 +474,7 @@ msgid "Headings" msgstr "Títols" +#. 5nuqC #: wikiformats.xhp #, fuzzy msgctxt "" @@ -435,6 +484,7 @@ msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine." msgstr "Aplicatz un estil de paragraf títol als títols dins lo document Writer. Lo Wiki aficharà los estils de títols al meteis nivèl de plan, formatat coma definit pel motor del Wiki." +#. YAjYW #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -443,6 +493,7 @@ msgid "Hyperlinks" msgstr "Iperligams" +#. u3Gky #: wikiformats.xhp #, fuzzy msgctxt "" @@ -452,6 +503,7 @@ msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links." msgstr "Los iperligams OpenDocument natius son transformats en ligams Wiki \"extèrnes\". E mai la facilitat intèrna de ligam oferta per OpenDocument deu èsser utilizada sonque per crear de ligams que puntan sus d'autres sites en defòra del web Wiki. Per crear de ligams Wiki que puntan cap a d'autres subjèctes del meteis domeni Wiki, utilizatz los ligams Wiki." +#. ULYGr #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -460,6 +512,7 @@ msgid "Lists" msgstr "Listas" +#. Cah9p #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -468,6 +521,7 @@ msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use Format - Bullets and Numbering to define and apply the respective list style." msgstr "Las listas se pòdon exportar en tota fisança quora la lista completa utiliza un estil de lista coerent. Utilizatz l'icòna Piuses e numerotacions per generar una lista dins Writer. S'avètz besonh d'una lista sens numerotacions o piuses, utilizatz Format - Piuses e numerotacions per definir e aplicar l'estil de lista respectiu." +#. GJaHG #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -476,6 +530,7 @@ msgid "Paragraphs" msgstr "Paragrafes" +#. LBFtS #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -484,6 +539,7 @@ msgid "Alignment" msgstr "Alinhament" +#. Gdu22 #: wikiformats.xhp #, fuzzy msgctxt "" @@ -493,6 +549,7 @@ msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text." msgstr "L'alinhament de tèxte explicit deu pas èsser utilizat dins los articles de Wiki. Pasmens, l'alinhament del tèxte es suportat per l'alinhament a esquèrra, central e a dreita del tèxte." +#. gUGmf #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -501,6 +558,7 @@ msgid "Pre-formatted text" msgstr "Tèxte preformatat" +#. Luezz #: wikiformats.xhp #, fuzzy msgctxt "" @@ -510,6 +568,7 @@ msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text." msgstr "Un estil de paragraf amb una poliça de largor fixa es transformada en tèxte preformatat. Lo tèxte preformatat es afichat sul Wiki amb un bordadura a l'entorn del tèxte." +#. 22nLD #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -518,6 +577,7 @@ msgid "Character styles" msgstr "Estils de caractèrs" +#. fvYKL #: wikiformats.xhp #, fuzzy msgctxt "" @@ -527,6 +587,7 @@ msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style." msgstr "Los estils de caractèr modifican l'aparéncia de las partidas d'un paragraf. La transformacion supòrta lo gras, l'italica, l'italica gras, l'exponent e l'indici. Totas las poliças fixas son transformadas dins l'estil maquina d'escriure Wiki." +#. uhHcL #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -535,6 +596,7 @@ msgid "Images" msgstr "Imatges" +#. G3qA6 #: wikiformats.xhp #, fuzzy msgctxt "" @@ -544,6 +606,7 @@ msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported." msgstr "Los imatges se pòdon pas exportar per una transformacion que produirà un sol fichièr de tèxte Wiki. Mas se l'imatge ja es cargada del domeni Wiki (ex. WikiMedia Commons), alara la transformacion produtz una etiqueta d'imatge valida que inclutz l'imatge ela meteissa. Las legendas de l'imatge tanben son suportadas." +#. nGuGG #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -552,6 +615,7 @@ msgid "Tables" msgstr "Tablèus" +#. w8BUf #: wikiformats.xhp #, fuzzy msgctxt "" @@ -561,6 +625,7 @@ msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored." msgstr "Los tablèus simples son preses en carga plan. Las entèstas de tablèus son transformadas en entèstas que correspondon amb l'estil Wiki. Totun, lo formatatge personalizat de las taulas per las bordaduras, la talha de colomas e las colors de rèireplan son ignoradas." +#. DF3o9 #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -569,6 +634,7 @@ msgid "Joined Cells" msgstr "Cellulas juntas" +#. b3CZe #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -577,6 +643,7 @@ msgid "OpenDocument and especially LibreOffice represent tables that have joined cells that span rows as tables with nested tables. In contrast, the wiki model of table is to declare column and row spans for such joined cells." msgstr "OpenDocument e mai especialament LibreOffice representan los tablèus qu'an de cellulas juntas que cobrisson mantuna linhas coma de tablèus imbricats. En revenge, lo modèl dels tablèus de wiki es de declarar las linhas e las colomnas sus las qualas s'espandisson per de talas cellulas." +#. vn3bR #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -585,6 +652,7 @@ msgid "If only columns of the same row are joined, the result of the transformation resembles the source document very well." msgstr "Se sonque las colomnas d'una meteissa linha son juntas, lo resultat de la transformacion se sembla fòrça al document font." +#. DCjAG #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -593,6 +661,7 @@ msgid "Borders" msgstr "Bordaduras" +#. GXBsK #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -601,6 +670,7 @@ msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header." msgstr "Sens tenir compte dels estils de tablèus personalizats per çò que concernís las bordaduras e lo rèireplan, un tablèu es totjorn exportat coma «prettytable», çò qu'es rendut pels motors de Wiki amb una bordadura simpla e un títol en gras." +#. kDcRS #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -609,6 +679,7 @@ msgid "Character set and special characters" msgstr "Jòc de caractèrs e caractèrs especials" +#. zv83m #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -617,6 +688,7 @@ msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice." msgstr "Lo jòc de caractèrs del resultat de la transformacion es fixat en UTF-8. En foncion de vòstre sistèma operatiu, benlèu qu'aqueste darrièr es pas lo jòc de caractèrs per defaut. Los \"caractèrs especials\" semblaràn copats quand seràn afichats amb los paramètres per defaut. Çaquelà, podètz reglar vòstre editor sus un encodatge UTF-8 per corregir aquò. Se vòstre editor supòrta pas un cambiament d'encodatge, podètz afichar lo resultat de la transformacion dins lo navigador Firefox e reglar l'encodatge sus UTF-8 ici. Ara, podètz talhar e pegar lo resultat de la transformacion dins lo programa qu'auretz causit." +#. CTEdB #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -625,6 +697,7 @@ msgid "Send to MediaWiki" msgstr "Mandar a MediaWiki" +#. Uomdh #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -633,6 +706,7 @@ msgid "Send to MediaWiki" msgstr "Mandar a MediaWiki" +#. F4YJF #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -641,6 +715,7 @@ msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload." msgstr "" +#. KmSsg #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -649,6 +724,7 @@ msgid "Select the MediaWiki server where you want to publish your document. Click Add to add a new server to the list." msgstr "" +#. D9EhE #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -657,6 +733,7 @@ msgid "Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry." msgstr "Picatz lo títol de vòstra entrada Wiki.Per una entrada novèla, lo títol deu èsser unic dins aqueste Wiki. Se picatz un títol qu'existís ja, vòstra mesa en linha va espotir l'entrada Wiki existenta." +#. ACh6X #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -665,6 +742,7 @@ msgid "Enter an optional short summary or comment. See https://meta.wikimedia.org/wiki/Help:Edit_summary." msgstr "" +#. 6dCeT #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -673,6 +751,7 @@ msgid "This is a minor edit: Check this box to mark the uploaded page as a minor edit of the already existing page with the same title." msgstr "Es un edicion menora : marcatz aquela casa per marcar la pagina mesa en linha coma una edicion menora d'una pagina existenta qu'a lo meteis títol." +#. KF3qq #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -681,6 +760,7 @@ msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." msgstr "Afichar dins lo navigador web: marcatz aquela casa per dobrir lo navigador web del sistèma e afichatz la pagina Wiki mesa en linha." +#. rt8Df #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -689,6 +769,7 @@ msgid "MediaWiki Options" msgstr "Opcions de MediaWiki" +#. R7RVE #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -697,6 +778,7 @@ msgid "MediaWiki Options" msgstr "Opcions de MediaWiki" +#. 39jox #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -705,6 +787,7 @@ msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to Tools - Options - Internet - MediaWiki." msgstr "" +#. 44myu #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -713,6 +796,7 @@ msgid "Click Add to add a new wiki server.
Select an entry and click Edit to edit the account settings.
Select an entry and click Remove to remove the entry from the list.
" msgstr "Clicatz sus Apondre per apondre un servidor Wiki novèl.
Seleccionatz una entrada e clicatz sus Editar per editar los paramètres del compte.
Seleccionatz una entrada e clicatz sus Suprimir per suprimir una entrada de la lista.
" +#. 5JhsD #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -721,6 +805,7 @@ msgid "Opens the MediaWiki dialog to add a new entry to the list." msgstr "Dobrís la bóstia de dialòg MediaWiki per apondre una entrada novèla a la lista." +#. Q2kSq #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -729,6 +814,7 @@ msgid "Opens the MediaWiki dialog to edit the selected entry." msgstr "Dobrís la bóstia de dialòg MediaWiki per editar l'entrada seleccionada." +#. GCH8n #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -737,6 +823,7 @@ msgid "Removes the selected entry from the list." msgstr "Suprimís l'entrada seleccionada de la lista." +#. mi2NR #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/vcl/messages.po libreoffice-7.1.3~rc2/translations/source/oc/vcl/messages.po --- libreoffice-7.1.2~rc2/translations/source/oc/vcl/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/vcl/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-02 18:36+0000\n" -"Last-Translator: Quentin PAGÈS \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557839768.000000\n" #. k5jTM @@ -949,7 +949,7 @@ #: vcl/inc/strings.hrc:102 msgctxt "STR_FPICKER_IMAGE_ANCHOR" msgid "A~nchor: " -msgstr "A~ncorar :" +msgstr "A~ncorar : " #. 7yacA #: vcl/inc/strings.hrc:103 @@ -1747,7 +1747,7 @@ #: vcl/inc/font/OpenTypeFeatureStrings.hrc:87 msgctxt "STR_FONT_FEATURE_ID_SUPS" msgid "Superscript" -msgstr "Exponent " +msgstr "Exponent" #. HQF8g #: vcl/inc/font/OpenTypeFeatureStrings.hrc:88 @@ -1963,7 +1963,7 @@ #: vcl/uiconfig/ui/printdialog.ui:95 msgctxt "printdialog|print" msgid "_Print" -msgstr "" +msgstr "Im_primir" #. M3L4L #: vcl/uiconfig/ui/printdialog.ui:154 @@ -2053,7 +2053,7 @@ #: vcl/uiconfig/ui/printdialog.ui:426 msgctxt "printdialog|status" msgid "Default Printer" -msgstr "" +msgstr "Imprimenta per defaut" #. McZgQ #: vcl/uiconfig/ui/printdialog.ui:432 @@ -2077,7 +2077,7 @@ #: vcl/uiconfig/ui/printdialog.ui:477 msgctxt "printdialog|labelprinter" msgid "Printer" -msgstr "" +msgstr "Imprimenta" #. AyxGJ #: vcl/uiconfig/ui/printdialog.ui:519 diff -Nru libreoffice-7.1.2~rc2/translations/source/oc/wizards/source/resources.po libreoffice-7.1.3~rc2/translations/source/oc/wizards/source/resources.po --- libreoffice-7.1.2~rc2/translations/source/oc/wizards/source/resources.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/oc/wizards/source/resources.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2021-02-20 04:36+0000\n" -"Last-Translator: Quentin PAGÈS \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Cédric Valmary \n" "Language-Team: Occitan \n" "Language: oc\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556858415.000000\n" #. 8UKfi @@ -1589,7 +1589,7 @@ "RID_QUERY_21\n" "property.text" msgid "Table:" -msgstr "Taula : " +msgstr "Taula :" #. jaKR7 #: resources_en_US.properties @@ -1598,7 +1598,7 @@ "RID_QUERY_22\n" "property.text" msgid "Query:" -msgstr "Requèsta : " +msgstr "Requèsta :" #. TpbSv #: resources_en_US.properties @@ -1661,7 +1661,7 @@ "RID_QUERY_30\n" "property.text" msgid "is equal or less than" -msgstr "es inferior o egal a " +msgstr "es inferior o egal a" #. yT9cM #: resources_en_US.properties @@ -1805,7 +1805,7 @@ "RID_QUERY_50\n" "property.text" msgid "Fie~lds in the Query:" -msgstr "Cam~ps dins la requèsta : " +msgstr "Cam~ps dins la requèsta :" #. CScUQ #: resources_en_US.properties @@ -1814,7 +1814,7 @@ "RID_QUERY_51\n" "property.text" msgid "Sorting order:" -msgstr "Òrdre de triada : " +msgstr "Òrdre de triada :" #. JDHFH #: resources_en_US.properties @@ -1832,7 +1832,7 @@ "RID_QUERY_53\n" "property.text" msgid "Search conditions:" -msgstr "Condicions de recèrca : " +msgstr "Condicions de recèrca :" #. DocWB #: resources_en_US.properties @@ -3398,7 +3398,7 @@ "STATUSLINE_0\n" "property.text" msgid "Conversion status:" -msgstr "Estat de conversion : " +msgstr "Estat de conversion :" #. 8EcKA #: resources_en_US.properties @@ -4496,7 +4496,7 @@ "NoDirCreation\n" "property.text" msgid "The '%1' directory cannot be created:" -msgstr "Impossible de crear lo repertòri '%1' : " +msgstr "Impossible de crear lo repertòri '%1' :" #. JDcBR #: resources_en_US.properties diff -Nru libreoffice-7.1.2~rc2/translations/source/om/cui/messages.po libreoffice-7.1.3~rc2/translations/source/om/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/om/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/om/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Oromo \n" @@ -2479,1071 +2479,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/om/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/om/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/om/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:07+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15378,33 +15378,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "bocquuwwan libsuu bocquuwwan calaqqeessuu" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Libsachuu" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/or/cui/messages.po libreoffice-7.1.3~rc2/translations/source/or/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/or/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/or/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:43+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2462,1071 +2462,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/pa-IN/cui/messages.po libreoffice-7.1.3~rc2/translations/source/pa-IN/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/pa-IN/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pa-IN/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2019-01-28 02:34+0000\n" "Last-Translator: a7talam \n" "Language-Team: LANGUAGE \n" @@ -2473,1071 +2473,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/pl/cui/messages.po libreoffice-7.1.3~rc2/translations/source/pl/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/pl/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pl/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-23 11:54+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1554834561.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME obsługuje cztery poziomy bezpieczeństwa makr (od niskiego do bardzo wysokiego) oraz zaufane źródła." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 zamierza złożyć wniosek jako organizacja do Google Summer of Code (GSoC), zobacz:" - -#. SNTbc -#: 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 "Czy wiesz, że możesz dołączać komentarze do fragmentów tekstu? Wystarczy użyć skrótu %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Chcesz przenieść jeden lub więcej akapitów? Nie trzeba wycinać i wklejać: użyj skrótu klawiaturowego %MOD1+%MOD2+strzałka górna lub dolna" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Zmień podstawowe czcionki dla wstępnie zdefiniowanego szablonu lub bieżącego dokumentu poprzez Narzędzia ▸ Opcje ▸ %PRODUCTNAME Writer ▸ Czcionki podstawowe." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Chcesz znaleźć słowa zawierające więcej niż 10 znaków? Edycja ▸ Znajdź i zamień ▸ Znajdź ▸ [a-z]{10,} ▸ Inne opcje ▸ zaznacz Wyrażenia regularne." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Otwórz plik CSV jako nowy arkusz w bieżącym arkuszu kalkulacyjnym za pomocą opcji Arkusz ▸ Wstaw arkusz z pliku." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Pisząc czcionką pogrubioną, kursywą lub podkreśloną w programie Writer, możesz kontynuować korzystanie z domyślnych atrybutów za pomocą skrótu %MOD1+Shift+X (usuń bezpośrednie formatowanie znaków)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Użyj %MOD1+%MOD2+Shift+V, aby wkleić zawartość schowka jako niesformatowany tekst." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Dostosuj wygląd przypisu dolnego za pomocą Narzędzia ▸ Przypisy dolne i końcowe…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Dzięki Pokaz slajdów ▸ Niestandardowy pokaz slajdów możesz zmieniać kolejność i wybierać slajdy, aby dopasować pokaz do potrzeb widzów." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Chcesz zmienić sprawdzanie pisowni w jakiejś części tekstu? Kliknij w strefie językowej paska stanu lub zastosuj styl." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Program Writer może wstawić pustą stronę między dwiema nieparzystymi (parzystymi) stronami. Zaznacz “Drukuj automatycznie wstawione puste strony” w oknie dialogowym karty drukowania programu %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Nie chcesz wydrukować wszystkich kolumn? Ukryj lub zgrupuj te, których nie potrzebujesz." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Aby zmodyfikować autoodtwarzaną prezentację, otwórz ją, a po jej uruchomieniu kliknij prawym przyciskiem myszy i wybierz Edycja z menu kontekstowego." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Potrzebujesz precyzyjnie ustawić? %MOD2+klawisze strzałek przenoszą obiekty (kształty, obrazy, formuły) o jeden piksel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Wbudowana pomoc jest dostępna po naciśnięciu F1, jeśli ją zainstalowałeś. W przeciwnym razie sprawdź online pod adresem:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Kliknij prawym przyciskiem myszy pasek stanu w %PRODUCTNAME Calc i wybierz “Zlicz zaznaczone”, aby wyświetlić liczbę zaznaczonych komórek." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Chcesz mieć dwie lub więcej kolumn tylko dla części strony programu %PRODUCTNAME Writer? Wstaw ▸ Sekcja, ustaw za pomocą karty Kolumny i umieść tekst w tej sekcji." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Użyj Dane ▸ Statystyka do próbkowania, statystyki opisowej, analizy wariancji, korelacji i wielu innych parametrów w programie %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Możesz kopiować z jednego arkusza na drugi bez schowka. Wybierz obszar do skopiowania, %MOD1+kliknij kartę docelowego arkusza i użyj Arkusz ▸ Wypełnij komórki ▸ Wypełnij arkusze." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Możesz zmienić wygląd %PRODUCTNAME poprzez Narzędzia ▸ Opcje ▸ Widok ▸ Interfejs użytkownika." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "W %PRODUCTNAME Impress użyj polecenia Wstaw ▸ Multimedia ▸ Album fotograficzny, aby utworzyć pokaz slajdów z serii zdjęć za pomocą funkcji “Album fotograficzny”." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Możesz wyświetlać formuły zamiast wyników za pomocą Widok ▸ Pokaż formułę (lub Narzędzia ▸ Opcje ▸ %PRODUCTNAME Calc ▸ Widok ▸ Wyświetl ▸ Formuły)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME jest rozwijany przez życzliwą społeczność, która składa się z setek współpracowników z całego świata. Dołącz do nas z umiejętnościami wykraczającymi poza kodowanie." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Leworęczny? Włącz Narzędzia ▸ Opcje ▸ Ustawienia języka ▸ Języki ▸ Azjatyckie oraz zaznacz Narzędzia ▸ Opcje ▸ %PRODUCTNAME Writer ▸ Widok ▸ Linijka ▸ Z prawej, która wyświetla pasek przewijania po lewej." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Chcesz, aby tytuły rozdziałów zawsze zaczynały stronę? Edytuj Nagłówek1 (styl akapitu) ▸ Przepływ tekstu ▸ Podziały i zaznacz Wstaw ▸ Strona ▸ Przed." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Wartość daty/godziny to tylko liczba dni od wybranego dnia zero; pod względem liczby część całkowita reprezentuje datę, a część ułamkowa to godzina (upływająca część dnia), a 0,5 reprezentuje południe." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del usuwa od kursora do końca bieżącego zdania." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "W formułach używaj etykiet kolumn lub wierszy. Na przykład, jeśli masz dwie kolumny: “Czas” i “KM”, użyj =Czas/KM, aby uzyskać minuty na kilometr." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Zirytowany “maszerującymi mrówkami” wokół komórek w programie Calc? Naciśnij klawisz Escape, aby je zatrzymać; skopiowana treść pozostanie dostępna do wklejenia." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Chcesz zostać Ambasadorem %PRODUCTNAME? Istnieją certyfikaty dla programistów, administratorów i szkoleniowców." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Mieszaj orientację pionową i poziomą w arkuszu kalkulacyjnym Calc, stosując różne style stron w arkuszach." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Kliknij ikonę znaku specjalnego na pasku narzędzi, aby uzyskać szybki dostęp do ulubionych i ostatnich znaków do wstawienia." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Wybierz “Widok hierarchiczny” na panelu bocznym stylów, aby zobaczyć relację między stylami." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Możesz użyć stylów, aby tabele w dokumencie były spójne. Wybierz jeden ze wstępnie zdefiniowanych stylów poprzez Style (F11) lub za pomocą Tabela ▸ Autoformatowanie." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Chcesz skonfigurować użycie klawisza %MOD1 do otwierania hiperłączy? Narzędzia ▸ Opcje > %PRODUCTNAME ▸ Bezpieczeństwo ▸ Opcje ▸ “%MOD1+kliknięcie wymagane do otwarcia hiperłączy”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Jeżeli chcesz zobaczyć obliczenia poszczególnych elementów formuły, wybierz odpowiednie elementy i naciśnij F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Możesz chronić komórki, wybierając Format ▸ Komórki ▸ Ochrona. Aby zapobiec wstawianiu, usuwaniu, zmianie nazwy, przenoszeniu/kopiowaniu arkuszy, użyj Narzędzia ▸ Chroń arkusz." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Chcesz pisać wzdłuż krzywej? Narysuj linię, kliknij ją dwukrotnie, wpisz tekst, Format ▸ Pole tekstowe i kształt ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Chcesz wyświetlić tylko najwyższe wartości w arkuszu kalkulacyjnym? Wybierz menu Dane ▸ Autofiltr, kliknij strzałkę listy rozwijanej i wybierz “10 pierwszych”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Aby usunąć numer strony ze spisu treści, przejdź do Wstaw ▸ Spis treści (lub kliknij prawym przyciskiem myszy i edytuj poprzednio wstawiony indeks). Na karcie Wpisy usuń numer strony (#) z wiersza Struktura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Za pomocą Nawigatora możesz wybierać i przesuwać nagłówki w górę/w dół oraz tekst pod nagłówkiem, w Nawigatorze i w dokumencie." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Aby szybko uzyskać obiekt matematyczny w programie Writer, wpisz swoją formułę, zaznacz ją i użyj polecenia Wstaw ▸ Obiekt ▸ Formuła, aby przekonwertować tekst." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Dzięki %PRODUCTNAME bardzo łatwo zainstalować nowy słownik: są one dostarczane jako rozszerzenia." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME ma przenośną wersję, która zapewnia mobilność. Nawet bez uprawnień administratora na komputerze możesz zainstalować %PRODUCTNAME Portable na dysku twardym." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Program Writer pozwala numerować przypisy dolne na stronie, rozdziale, dokumencie: Narzędzia ▸ Przypisy dolne i końcowe ▸ karta Przypisy dolne ▸ Zliczanie." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Twój dokument programu Writer nie otwiera się ponownie z kursorem tekstowym w tej samej pozycji edycji, co w momencie zapisywania? Dodaj imię lub nazwisko w menu Narzędzia ▸ Opcje ▸ %PRODUCTNAME ▸ Dane użytkownika ▸ Imię/nazwisko." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Zarządzanie cytowaniem? Użyj rozszerzenia strony trzeciej." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Chcesz wstawić wartość w tym samym miejscu na kilku arkuszach? Wybierz arkusze: przytrzymaj klawisz %MOD1 i kliknij ich karty przed wejściem." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Chcesz ukryć jakiś tekst w dokumencie? Zaznacz tekst. Wstaw ▸ Sekcja i wybierz “Ukryj”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Możesz dostosować środkowy przycisk myszy poprzez Narzędzia ▸ Opcje ▸ %PRODUCTNAME ▸ Widok ▸ Środkowy przycisk myszy." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Chcesz wydrukować dwie strony pionowe na poziomej (zmniejszenie formatu A4 do A5)? Plik ▸ Drukuj i wybierz 2 w “Stron na arkusz”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Aby uzyskać szybki dostęp do zakładek dokumentu, kliknij prawym przyciskiem myszy numer strony paska stanu (lewy dolny róg okna dokumentu)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Zaznacz obiekt w tle dokumentu za pomocą narzędzia Zaznacz na pasku narzędzi Rysunek, aby otoczyć obiekt do zaznaczenia." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Zdefiniuj teksty, których często używasz jako autotekst. Będziesz mógł wstawić je według nazwy, skrótu lub paska narzędzi w dowolnym dokumencie Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Odtwarzaj muzykę podczas pokazu slajdów, przypisując dźwięk do pierwszego przejścia slajdu bez klikania przycisku “Zastosuj do wszystkich slajdów”." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 nie oblicza od lewej do prawej, ale przestrzega kolejności Nawiasy – Potęgi – Mnożenie – Dzielenie – Dodawanie – Odejmowanie." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Uzyskaj dokumentację %PRODUCTNAME i bezpłatne podręczniki użytkownika na stronie:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Chcesz usunąć wszystkie <> jednocześnie i zachować tekst w środku? Edycja ▸ Znajdź i zamień: Znajdź = [<>], Zamień = puste i zaznacz “Wyrażenia regularne” pod opcjami Inne." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Chcesz przedstawić raport napisany w programie Writer? Plik ▸ Wyślij ▸ Konspekt do prezentacji automatycznie tworzy pokaz slajdów z konspektu." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Chcesz zarządzać prezentacją hiperłączy w arkuszu kalkulacyjnym? Wstaw je za pomocą funkcji HIPERŁĄCZE." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Odznacz Narzędzia ▸ Opcje ▸ %PRODUCTNAME Calc ▸ Widok ▸ Powiększenie: “Synchronizuj arkusze”, aby każdy arkusz w programie Calc miał swój własny współczynnik powiększenia." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Możesz ustawić kolor dla każdej karty: kliknij kartę prawym przyciskiem myszy lub użyj opcji Arkusz ▸ Kolor karty arkusza." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Śledź komórki używane w formule, poprzednikach (Shift+F9) lub zależnościach (Shift+F5) (lub użyj Narzędzia ▸ Detektyw). Za każdym trafieniem wykonujesz jeszcze jeden krok w łańcuchu." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Wstaw i ponumeruj formuły w jednym kroku: wpisz fn, a następnie F3. Autotekst jest wstawiany z formułą i liczbą wyrównaną w tabeli." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Możesz utworzyć indeks ilustracji z nazw obiektów, a nie tylko z podpisów." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Użyj Androida lub iPhone'a do zdalnego sterowania prezentacją Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Chcesz wiedzieć, ile dni jest w bieżącym miesiącu? Użyj funkcji DNI.MIESIĄCA(DZIŚ())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Twoje liczby są wyświetlane w arkuszu jako ###? Kolumna jest zbyt wąska, aby wyświetlić wszystkie cyfry." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Włącz masywne obliczenia równoległe komórek formuły za pomocą Narzędzia ▸ Opcje ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Użyj narzędzia Łącznik z paska narzędzi Rysynek w programach Draw/Impress, aby utworzyć ładne schematy blokowe i opcjonalnie skopiować/wkleić obiekt do programu Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Twoje darowizny wspierają naszą społeczność na całym świecie." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Chcesz dodać x miesięcy do daty? Użyj =NR.SER.DATY(data;miesiące)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Aby zaznaczyć ciągły zakres komórek zawierających dane i ograniczony pustym wierszem i kolumnami, użyj %MOD1+* (klawiatura numeryczna)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Twój akceptowany wzorzec daty jest nieodpowiedni? Użyj Narzędzia ▸ Opcje ▸ Ustawienia języka ▸ Języki ▸ Akceptowane wzorce dat, aby dostosować wzorzec." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Chcesz wyeksportować formuły do CSV? Plik ▸ Zapisz jako ▸ Typ: Tekst CSV, zaznacz “Edycja ustawienia filtra” i zaznacz “Zapisz formuły komórek” w następnym oknie dialogowym." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konsola prezentera jest świetną funkcją podczas pracy z %PRODUCTNAME Impress. Sprawdziłeś ją?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Aby usunąć wiele komentarzy, zaznacz komórki z komentarzami i użyj Arkusz ▸ Komentarze do komórki ▸ Usuń komentarz." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Łatwo przekonwertuj dokumenty do formatu PDF za pomocą jednego kliknięcia, klikając ikonę PDF na pasku narzędzi." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Chcesz wybrać duży zakres komórek bez przewijania? Wpisz odwołanie do zakresu (np. A1:A1000) w polu nazwy, a następnie Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Chcesz poznać prawidłowe parametry wiersza poleceń? Uruchom soffice z --help albo -h albo -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Dopasuj zakres arkusza lub wydruku do strony za pomocą opcji Format ▸ Strona ▸ karta Arkusz ▸ Tryb skalowania." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Potrzebujesz nienumerowanego elementu na liście? Użyj “Wstaw wpis bez numeru” na pasku narzędzi Wypunktowanie i numeracje." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Możesz obrócić orientację tabeli komórek, wybierając Tabela ▸ Właściwości… ▸ Przepływ tekstu ▸ Orientacja tekstu." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "W programie %PRODUCTNAME Draw, aby zmienić punkt 0/0 linijek, przeciągnij przecięcie dwóch linijek w lewym górnym rogu do obszaru roboczego." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Przenieść kolumnę w programie Calc między dwoma innymi w jednym kroku? Kliknij główkę, a następnie komórkę w kolumnie, przytrzymaj przycisk myszy i przejdź do celu za pomocą klawisza %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automatycznie oznaczaj alfabetyczne wpisy indeksu za pomocą pliku konkordancji." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Użyj Format ▸ Wyrównaj (lub menu kontekstowego), aby precyzyjnie pozycjonować obiekty w programach Draw/Impress: centruje się na stronie, jeśli wybrany jest jeden obiekt lub działa odpowiednio na grupie." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Nie używaj tabulatorów do rozmieszczania elementów w dokumencie programu Writer. W zależności od tego, co próbujesz zrobić, lepszym wyborem może być tabela bez krawędzi." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Nie trzeba przewijać listy w Narzędzia ▸ Dostosuj ▸ Klawiatura, aby znaleźć skrót: wystarczy go wpisać." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME może automatycznie dodawać podpisy numeryczne podczas wstawiania obiektów. Zobacz Narzędzia ▸ Opcje ▸ %PRODUCTNAME Writer ▸ Autopodpis." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Dzięki %PRODUCTNAME możesz używać swojego konta Google Mail do korespondencji seryjnej. Wypełnij Narzędzia ▸ Opcje ▸ %PRODUCTNAME Writer ▸ Korespondencja seryjna e-mail." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Zachowaj widoczność główek kolumn arkusza podczas przewijania linii poprzez Widok ▸ Przytwierdź komórki ▸ Przytwierdź pierwszy wiersz." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Chcesz rozpocząć pracę z makrami Basic? Spójrz na przykłady w Narzędzia ▸ Makra ▸ Edycja makr." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Zastosuj style akapitu nagłówka w programie Writer za pomocą klawiszy skrótu: %MOD1+1 stosuje Nagłówek 1, %MOD1+2 stosuje Nagłówek 2 itd." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Nie zgub się w dużych dokumentach. Użyj Nawigatora (F5), aby znaleźć drogę przez zawartość." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Edycja ▸ Znajdź i zamień pozwala wstawiać znaki specjalne bezpośrednio: kliknij prawym przyciskiem myszy w polach wprowadzania lub naciśnij Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Potrzebujesz niestandardowej zawartości dla właściwości metadanych? Plik ▸ Właściwości ▸ karta Właściwości niestandardowe pozwala tworzyć to, co chcesz." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Chesz zobaczyć, ale nie wydrukować, obiekt w programie Draw? Narysuj go na warstwie, dla której nie ustawiono flagi “Do druku” (kliknij prawym przyciskiem myszy kartę i “Modyfikuj warstwę”)." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Aby wstawić bieżącą datę do dokumentu, użyj Wstaw ▸ Pole ▸ Data." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Masz wiele obrazów w dokumencie Writer? Przyspiesz wyświetlanie, wyłączając Widok ▸ Obrazy i wykresy." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Użyj Arkusz ▸ Wypełnij komórki ▸ Liczba losowa, aby wygenerować losową serię na podstawie różnych rozkładów." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Zmień nazwy slajdów w programie Impress, aby ułatwić określenie interakcji “Idź do strony” i uzyskać bardziej przejrzyste podsumowanie niż Slajd1, Slajd2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Okno dialogowe numeracji rozdziałów pozwala ustawić tekst, który będzie wyświetlany przed numerem rozdziału. Na przykład wpisz “Rozdział ”, aby wyświetlić “Rozdział 1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transponować tabelę programu Writer? Kopiuj i wklej w programie Calc, transponuj za pomocą funkcji kopiuj/wklej specjalnie, a następnie kopiuj/wklej specjalnie ▸ sformatowany tekst w programe Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Aby wyświetlić narzędzie “Tekst w pionie” na pasku narzędzi Rysunek, zaznacz Narzędzia ▸ Opcje ▸ Ustawienia języka ▸ Języki ▸ Domyślny język dokumentów ▸ Azjatycki (i pokaż przycisk kliknięciem prawym przyciskiem myszy)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Aby szybko powiększyć wybór zakresu, kliknij prawym przyciskiem myszy część paska stanu i wybierz Optymalny." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Możesz podpisywać istniejące pliki PDF, a także weryfikować te podpisy." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Często tworzysz jeden dokument z drugiego? Rozważ użycie szablonu." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Użyj Format ▸ Formatowanie warunkowe ▸ Zarządzanie w programie Calc, aby dowiedzieć się, które komórki zostały zdefiniowane za pomocą formatowania warunkowego." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Narzędzia ▸ Detektyw ▸ Zaznacz nieprawidłowe dane wyróżnia wszystkie komórki w arkuszu, które zawierają wartości poza regułami sprawdzania poprawności." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Użyj osadzania czcionek, aby zwiększyć interoperacyjność z innymi pakietami biurowymi w Plik ▸ Właściwości ▸ Czcionka." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Aby przekonwertować formułę na wartości statyczne, nie trzeba kopiować/wklejać; użyj Dane ▸ Oblicz ▸ Formuła na wartość." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Możesz ponownie sformatować wszystkie komentarze w dokumencie, klikając strzałkę w dół w komentarzu i wybierając “Formatuj wszystkie komentarze”." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Chcesz mieć taki sam układ ekranu i drukowania? Sprawdź Narzędzia ▸ Opcje▸ %PRODUCTNAME Calc ▸ Ogólne ▸ Do sformatowania tekstu użyj metryki drukarki." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Program Writer pomaga tworzyć kopie zapasowe: za pomocą Plik ▸ Zapisz kopię tworzysz nowy dokument, kontynuując pracę z oryginałem." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Po utworzeniu stylu na podstawie innego, możesz wprowadzić wartość procentową lub wartość punktową (np. 110% lub -2 pkt lub +5 pkt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Aby skopiować komentarz bez utraty zawartości komórki docelowej, użyj polecenia Wklej specjalnie i odznacz wszystko oprócz “Komentarze” w oknie dialogowym. Użyj operacji “Dodaj”, aby nie zastępować istniejącej zawartości." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Przekonwertuj wiele dokumentów MS Office na format OpenDocument za pomocą kreatora Konwertera dokumentów w menu Plik ▸ Kreatory ▸ Konwerter dokumentów." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Podczas edycji komórki na miejscu możesz kliknąć prawym przyciskiem myszy i wstawić pola: Data, Nazwa arkusza, Tytuł dokumentu itp." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Chcesz przenieść tabelę programu Writer? Tabela ▸ Zaznacz ▸ Tabela oraz Wstaw ▸ Ramka ▸ Ramka i przenieś tam, gdzie chcesz." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Za pomocą Narzędzia ▸ Autotekst ▸ Autotekst ▸ Importuj możesz wybrać dokument Word lub szablon zawierający wpisy autotekstu, które chcesz zaimportować." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Nie wstawiaj ręcznych podziałów, aby rozdzielić dwa akapity. Raczej zmień Wcięcia i odstępy ▸ Odstępy ▸ Poniżej akapitu we właściwościach stylu/akapitu." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Zachowaj zera przed liczbą za pomocą opcji formatu komórki “Zera wiodące” lub sformatowaniu komórki jako tekstu przed wprowadzeniem liczby." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Chcesz wrócić do ustawień domyślnych po zastosowaniu stylu listy? Kliknij narzędzie włączania lub wyłączania Wypunktowanie i numeracja na pasku narzędzi Formatowanie." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Usuń wszystkie obszary drukowania w jednym kroku: zaznacz wszystkie arkusze, a następnie Formatuj ▸ Zakresy wydruku ▸ Wyczyść." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Dodaj obrazy tła do arkuszy kalkulacyjnych poprzez Wstaw ▸ Obraz lub przeciągnij tło z Galerii, a następnie Format ▸ Rozmieść ▸ W tle." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Masz problem z wklejeniem tekstu z plików PDF lub stron internetowych do dokumentów? Spróbuj wkleić jako niesformatowany tekst (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "W programie Calc użyj ŚREDNIA.WEWN(), aby zwrócić średnią zbioru danych z wyłączeniem najwyższych i najniższych wartości." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Czwarty opcjonalny parametr funkcji WYSZUKAJ.PIONOWO wskazuje, czy pierwsza kolumna danych jest posortowana. Jeśli nie, wprowadź FAŁSZ lub zero." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Paski narzędzi są kontekstowe—otwierają się w zależności od kontekstu. Jeśli nie chcesz tego, odznacz je w Widok ▸ Paski narzędzi." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Utworzyć dokument główny z bieżącego dokumentu programu Writer? Plik ▸ Wyślij ▸ Utwórz dokument główny (podrzędne dokumenty są tworzone w zależności od konspektu)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Chcesz wyśrodkować komórki na wydrukowanej stronie w programie Calc? Format ▸ Strona, Strona ▸ Ustawienia układu ▸ Wyrównanie tabeli." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Ramki mogą być łączone, dzięki czemu tekst może przepływać od jednej do drugiej, tak jak w przypadku DTP." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Utwórz wykres na podstawie tabeli programu Writer, klikając tabelę i wybierając Wstaw ▸ Wykres." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Wybierz opcje w Narzędzia ▸ Opcje ▸ %PRODUCTNAME Writer ▸ Pomoc w formatowaniu ▸ Wyświetlanie, aby określić, które znaki niedrukowalne mają być wyświetlane." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Chcesz przeskoczyć do konkretnej strony według jej numeru? Kliknij pozycję paska statusu znajdującą się najbardziej z lewej strony lub użyj Edycja ▸ Idź do strony… lub naciśnij %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME obsługuje ponad 150 języków." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Odznacz Pokaz slajdów ▸ Ustawienia pokazu slajdów ▸ Prezentacja zawsze na wierzchu, jeśli potrzebujesz, aby inny program wyświetlał swoje okno z przodu prezentacji." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Chcesz znaleźć pogrubione słowa w dokumencie programu Writer? Edycja ▸ Znajdź i zamień ▸ Inne opcje ▸ Atrybuty ▸ Grubość czcionki." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Możesz sortować akapity lub wiersze tabeli alfabetycznie lub numerycznie poprzez Narzędzia ▸ Sortuj." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Aby wstawić akapit przed lub po sekcji, naciśnij klawisze %MOD2+Enter na początku lub końcu sekcji." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME ma centrum szablonów do tworzenia dobrze wyglądających dokumentów—sprawdź je." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Oblicz spłaty kredytu za pomocą programu Calc: np. PMT(2%/12;36;2500) oprocentowanie na okres płatności 2%/12, 36 miesięcy, kwota pożyczki 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Nie możesz znaleźć tego, czego chcesz, korzystając z funkcji WYSZUKAJ.PIONOWO w programie Calc? Dzięki INDEKS i PODAJ.POZYCJĘ możesz zrobić wszystko!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Chcesz wyświetlić ukrytą kolumnę A? Kliknij komórkę w kolumnie B, naciśnij lewy przycisk myszy, przesuń mysz w lewo, zwolnij. Następnie włącz, wybierając Format ▸ Kolumny ▸ Pokaż." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Aby zmienić numer strony w programie Writer, przejdź do właściwości pierwszego akapitu i na karcie Przepływ tekstu zaznacz Podziały ▸ Wstaw i wprowadź numer." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Uruchom %PRODUCTNAME w dowolnej przeglądarce za pomocą rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Dziwny kod błędu w programie Calc, Błąd: po którym następuje liczba? Ta strona zawiera wyjaśnienie:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Dołącz akapit, który nie jest tytułem w spisie treści, zmieniając Konspekt i numeracja w ustawieniach akapitu na poziom konspektu." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Oprócz spisu treści %PRODUCTNAME może tworzyć alfabetycznie, ilustracje, tabele, obiekty, bibliografię, indeksy użytkownika." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Nie możesz zmodyfikować lub usunąć niestandardowego stylu komórki? Sprawdź wszystkie arkusze, żaden nie powinien być chroniony." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Musisz wypełnić serię? Wybierz zakres komórek oraz Arkusz ▸ Wypełnij komórki ▸ Wypełnij serię i wybierz pomiędzy: Linearny, Wzrost, Data i Autowypełnianie." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Chcesz wiedzieć, czy komórka jest odwoływana we wzorach innych komórek? Narzędzia ▸ Detektyw ▸ Śledź zależności (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "W polu wejściowym zamiany w opcjach autokorekty można używać symboli wieloznacznych .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Chcesz powielić powyższy wiersz? Naciśnij %MOD1+D lub użyj Arkusz ▸ Wypełnij komórki ▸ W dół." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Aby wyszukać w kilku arkuszach kalkulacyjnych, wybierz je przed rozpoczęciem wyszukiwania." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Przeciąganie i upuszczanie komórek z programu Calc do normalnego widoku slajdu tworzy tabelę; w widoku konspektu każda komórka tworzy linię w konspekcie." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME pomaga nie wprowadzać dwóch lub więcej spacji w programie Writer. Zaznacz Narzędzia ▸ Autokorekta ▸ Opcje autokorekty ▸ Opcje ▸ Ignoruj podwójne spacje." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Chcesz, aby kursor wchodził do komórki po prawej stronie po wprowadzeniu wartości w programie Calc? Użyj klawisza Tab zamiast Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Aby wyświetlić pasek przewijania po lewej, włącz Narzędzia ▸ Opcje ▸ Ustawienia języka ▸ Języki ▸ Złożony układ tekstu oraz zaznacz Arkusz ▸ Od prawej do lewej." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Przeciągnij sformatowany obiekt do okna stylów i formatowania. Otworzy się okno dialogowe, wystarczy wpisać nazwę nowego stylu." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nowa wersja %PRODUCTNAME zapewnia nowe funkcje oraz poprawki błędów i bezpieczeństwa. Aktualizuj swoje oprogramowanie!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Opracowujesz nowe filtry XSLT i XML?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Naciśnij Shift+F1, aby wyświetlić wszystkie dostępne rozszerzone podpowiedzi w oknach dialogowych, gdy opcja \"Porady rozszerzone\" nie jest włączona w menu Narzędzia ▸ Opcje ▸ %PRODUCTNAME ▸ Ogólne." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Pomoc %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Więcej informacji" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Uruchom tę akcję teraz..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Porada dnia: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pl/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-31 16:36+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1564159292.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "czcionki mrugające czcionki błyskające" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Miganie" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Powoduje miganie zaznaczonych znaków. Nie można zmienić częstotliwości migania." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/pl/sd/messages.po libreoffice-7.1.3~rc2/translations/source/pl/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/pl/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pl/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-18 21:36+0000\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Adam Rak \n" "Language-Team: Polish \n" "Language: pl\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554834667.000000\n" #. WDjkB @@ -7474,7 +7474,7 @@ #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:151 msgctxt "notebookbar_groups|crossreference" msgid "Cross-Reference" -msgstr "Odnośnik" +msgstr "Odsyłacz" #. LMhUg #: sd/uiconfig/simpress/ui/notebookbar_groups.ui:168 @@ -8860,7 +8860,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1262 msgctxt "publishingdialog|extended_tip|resolution3Radiobutton" msgid "Select a high resolution for a high quality slide display." -msgstr "Określa wysoką rozdzielczość, w której jakość slajdów jest bardzo dobra." +msgstr "Określa wysoką rozdzielczość, w której jakość slajdów jest wysoka." #. zsvW6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1280 diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/cui/messages.po libreoffice-7.1.3~rc2/translations/source/pt/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-01 18:36+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "O %PRODUCTNAME disponibiliza quatro níveis de segurança para macros (de baixo a muito alto) e fontes fidedignas." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "O %PRODUCTNAME participa do Google Summer of Code (GSoC). Consulte:" - -#. SNTbc -#: 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 "Sabia que pode anexar comentários a partes de um texto? Basta utilizar o atalho %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Necessita de mover um ou mais parágrafos? Não tem que copiar o colar. Basta utilizar o atalho %MOD1+%MOD2+Seta (cima/baixo)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Pode alterar o tipo de letra para um modelo ou do documento com Ferramentas -> Opções -> %PRODUCTNAME Writer -> Tipos de letra base." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Gostaria de localizar todas as palavras com mais do que 10 caracteres? Em Editar -> Assinale Expressões regulares em Editar -> Localizar e substituir-> Procurar -> [a-z]{10,} -> Outras opções." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Pode abrir um ficheiro CSV como uma nova folha do livro atual com Folha -> Inserir folha do ficheiro." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Ao escrever a negrito, itálico ou sublinhado no Writer, pode continuar a usar os atributos padrão com o atalho %MOD1+Shift+X (remove a formatação direta de caracteres)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Utilize %MOD1+%MOD2+Shift+V para colar o conteúdo da área de transferência como texto sem formatação." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Pode personalizar o aspeto das notas de rodapé com Ferramentas -> Notas de rodapé e notas finais." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Em Apresentação de diapositivos > Apresentação de diapositivos personalizada pode ordenar e escolher os diapositivos ajustados às suas necessidades." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Deseja mudar a verificação ortográfica de parte do texto? Clique na zona de idiomas da barra de status, ou ainda melhor, aplique um estilo." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "O Writer pode inserir uma página em branco entre duas páginas ímpares (ou pares) seguidas. Marque \"Imprimir páginas vazias inseridas automaticamente\" na caixa de diálogo de impressão do %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Não quer imprimir todas as colunas? Oculte ou agrupe as que não precisar." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Para modificar uma apresentação em autoexecução, abra-a e depois de iniciar, clique no botão direito e selecione Editar no menu de contexto." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Posicionamento com precisão? Utilize %MOD2+Seta para mover os objetos (formas, imagens, fórmulas) por um pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Se a ajuda estiver instalada, pode aceder-lhe com a tecla F1. Caso contrário, aceda a:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Clique no botão direito da barra de estado do %PRODUCTNAME Calc e selecione \"Contar seleção\" para mostrar o número de células selecionadas." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Quer ter duas ou mais colunas para apenas uma parte de uma página do Writer %PRODUCTNAME? Em Inserir -> Secção, defina com o separador Colunas e coloque o texto nessa secção." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Utilize Dados > Estatísticas para as funções amostragem, estatística descritiva, análise de variância, correlação e muito mais no %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Pode copiar dados de uma folha para outra sem usar a área de transferência. Selecione a área a copiar, %MOD1+clique no separador da folha de destino e utilize Folha > Preencher células > Preencher folhas." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Pode mudar a aparência do %PRODUCTNAME em Ferramentas -> Opções -> Ver -> Interface de utilizador." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "No %PRODUCTNAME Impress, utilize Inserir > Multimédia > Álbum de fotos para criar uma apresentação com uma série de imagens." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Pode mostrar as fórmulas em vez dos resultados com Ver > Mostrar fórmula (ou Ferramentas > Opções > %PRODUCTNAME Calc > Ver > Mostrar > Fórmulas)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "O %PRODUCTNAME é desenvolvido por uma comunidade amistosa, constituída por centenas de contribuidores em todo o mundo. Faça parte desta comunidade com as suas competências além da programação." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "É esquerdino? Ative Ferramentas > Opções > Definições de idioma > Idiomas > Asiático , Assinale Ferramentas > Opções > %PRODUCTNAME Writer > Ver > Régua > Alinhado à direita, que mostrará a barra de deslocação à esquerda." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Quer que os seus títulos de capítulos comecem sempre numa nova página? Edite o estilo de parágrafo Titulo 1 (estilo de parágrafo)> Fluxo do texto > Quebras e depois Inserir > Página > Antes." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "O valor data/hora é o número de dias a partir do dia zero escolhido. No número, a parte inteira representa a data e a parte fracionária representa a hora (parte de um dia), sendo 0,5 a representação de meio-dia." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del elimina tudo desde o local do cursor até ao final da frase." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Utilize os cabeçalhos de coluna e linha nas fórmulas. Por exemplo, se tiver duas colunas, \"Tempo\" e \"KM\", utilize =Tempo/KM para obter os minutos por quilómetro." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Incomodado com as \"formigas caminhantes\" em redor de células no Calc? Prima Esc para parar; o conteúdo copiado continua disponível para colar." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Gostaria de ser um embaixador do %PRODUCTNAME? Há programas de certificação para programadores, administradores e instrutores." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Combine as orientações retrato e paisagem num documento do Calc ao aplicar diferentes estilos de página às folhas." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Clique no ícone Caracteres especiais da barra de ferramentas para aceder rapidamente aos caracteres favoritos e recentes." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Escolha \"Vista hierárquica\" na barra lateral Estilos para ver a relação entre os vários estilos usados." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Pode utilizar estilos para tornar as tabelas dos seus documentos mais consistentes. Escolha um dos estilos (F11) ou através de Tabela -> Formato automático." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Deseja utilizar a tecla %MOD1 para abrir hiperligações? Aceda a Ferramentas > Opções > %PRODUCTNAME -> Segurança -> Opções -> \"%MOD1+clique para abrir hiperligações\"." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Deseja ver os cálculos individuais dos elementos da fórmula? Selecione o elemento respetivo e pressione F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Pode proteger o conteúdo das células com Formatar -> Células -> proteção. Para impedir a inserção, eliminação, mudar o nome e mover ou copiar folhas, utilize Ferramentas -> Proteger folha." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Quer escrever na forma de curva. Desenhe uma linha, clique-lhe duas vezes e escreva o texto. De seguida, utilize Formatar -> Caixa de texto e forma -> Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Gostaria de exibir apenas os maiores valores de uma folha? Selecione Dados > Filtro automático, clique na seta para baixo e escolha \"os primeiros 10\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Para remover o número da página do seu índice, aceda a Inserir > Índice remissivo (ou clique com botão da direita num índice existente). No separador Entradas, elimine o número da página (#) da linha Estrutura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Com o Navegador, pode selecionar e mover para cima ou para baixo os títulos e o texto abaixo do cabeçalho, tanto no navegador como no documento." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Para inserir rapidamente um objeto de cálculo no Writer, introduza sua fórmula, selecione-a e utilize Inserir > Objeto > Fórmula para converter o texto." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "No %PRODUCTNAME é muito fácil instalar dicionários pois estes são disponibilizados como extensões." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "O %PRODUCTNAME tem uma versão portátil que lhe dá mobilidade. Mesmo sem ser administrador do computador, você pode instalar o %PRODUCTNAME Portable no seu disco rígido." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "O Writer permite numerar notas de rodapé por página, capítulo ou por documento: Ferramentas > Notas de rodapé e notas finais > Notas de rodapé > Contagem." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "O seu documento do Writer não colocou o cursor na mesma posição de edição quando foi guardado? Verifique se em Ferramentas > Opções > %PRODUCTNAME > Dados do utilizador > Nome/apelido está preenchido." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Deseja gerir citações? Utilize uma extensão." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Quer inserir um valor no mesmo lugar em várias folhas? Selecione as folhas, prima a tecla %MOD1 e clique nos separadores antes de introduzir o valor." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Gostaria de ocultar partes do texto de um documento? Selecione o texto, escolha Inserir -> Secção e selecione \"Ocultar\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Pode personalizar o botão do meio do rato em Ferramentas > Opções > %PRODUCTNAME > Ver > Botão central do rato." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Deseja imprimir duas páginas na vertical numa página paisagem (reduzindo de A4 para A5)? Escolha Ficheiro > Imprimir e selecione 2 em \"Páginas por folha\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Para aceder rapidamente aos marcadores de um documento, clique com o botão direito do rato no número de página da barra de estado (canto inferior esquerdo da janela)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Selecione um objeto no plano de fundo do documento via ferramenta de seleção na barra de ferramentas Desenho para cercar o objeto a selecionar." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Pode definir textos que utiliza frequentemente como texto automático. Poderá inseri-los através do seu nome, atalho ou barra de ferramentas em qualquer documento do Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Reproduza música durante uma apresentação atribuindo um áudio à primeira transição de diapositivo mas sem clicar no botão 'Aplicar a todos os diapositivos'." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "O %PRODUCTNAME Calc não calcula da esquerda para a direita mas respeita a ordem Parênteses - Expoentes - Multiplicação - Divisão - Adição - Subtração." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Consiga a documentação do %PRODUCTNAME e guias grátis do utilizador em:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Pretende remover todas as <> de uma só vez e manter o texto no interior? Em Editar > Localizar e substituir: Procurar =[<|>], Substituir = (em branco) e marque 'Expressões regulares' em Outras opções." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Tem que apresentar um relatório feito no Writer? Em Ficheiro > Enviar > Tópicos para apresentação cria uma apresentação de diapositivos com os tópicos." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Deseja gerir a apresentação de hiperligações numa folha de cálculo? Insira-as com a função HIPERLIGAÇÃO." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Desmarque Ferramentas > Opções > %PRODUCTNAME Calc > Ver > Ampliação: \"Sincronizar folhas\" para que cada folha tenha o seu próprio fator de ampliação." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Pode definir uma cor para cada um dos seus separadores: clique com o botão direito do rato ou então Folha -> Cor do separador da folha." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Rastreie as células usadas numa fórmula, precedentes (Shift+F9) ou dependentes (Shift+F5) (ou utilize Ferramentas > Auditoria). Por cada acerto, sobe um degrau na cadeia." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Insira e numere suas fórmulas num único passo: digite 'fn' seguido de F3. Um autotexto é inserido com uma fórmula e um número alinhado numa tabela." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Pode criar um índice de ilustrações a partir de nomes de objetos, não apenas de legendas." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Controle a sua apresentação Impress com o controlo remoto para Android e iPhone." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Deseja saber quantos dias existem no mês corrente? Utilize a função =DIASNOMÊS(AGORA())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Existem números mostrados como ### na folha? A coluna está estreita demais para mostrar todos os dígitos." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Pode ativar cálculos paralelos de células em fórmulas com Ferramentas > Opções > OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Utilize a ferramenta Conector na barra de desenho no Draw, ou no Impress, para criar fluxogramas, e opcionalmente copiar e colar o objeto no Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Os seus donativos apoiam a nossa comunidade mundial." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Quer adicionar x meses a uma data? Utilize = DATAM(data;meses)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Para selecionar um intervalo contínuo de células contendo dados e limitado por uma linha e coluna vazias, utilize %MOD1+* (no teclado numérico)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "O padrão de aceitação de datas não está apropriado? Em Ferramentas > Opções > Definições de idioma > Idiomas > Formatos para aceitação de datas pode ajustar o padrão de aceitação." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Gostaria de exportar fórmulas para o formato CSV? Em Ficheiro > Guardar como > Tipo: Texto CSV, assinale ‘Editar definições de filtros’ e no diálogo seguinte escolha \"Guardar fórmulas das células\"." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "A consola do apresentador é um recurso sensacional para o %PRODUCTNAME Impress. Já deu uma olhada?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Para eliminar vários comentários em simultâneo, selecione as células com os comentários e utilize Folha > Comentários de células > Eliminar comentário." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Converta o seu documento para PDF com um clique no ícone PDF na barra de ferramentas." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Gostaria de selecionar um conjunto de células sem deslocar a folha? Introduza o intervalo desejado (ex: A1:A100) na caixa Nome e prima Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Deseja saber quais os parâmetros válidos para a linha de comandos? Inicie soffice com --help ou -h ou -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Ajuste a sua folha ou os intervalos de impressão com Formatar > Página > Folha > Modo de escala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Precisa de um item sem numeração numa lista? Utilize \"Inserir entrada sem número\" na barra Marcas e numeração." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Pode alterar a orientação das células de uma tabela com Tabela > Propriedades > Fluxo de texto > Orientação do texto." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "No %PRODUCTNAME Draw, para mudar o ponto 0/0 das réguas, arraste a intersecção das duas réguas em cima à esquerda para a área de trabalho." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Deseja mover uma coluna entre duas outras no Calc? Clique no cabeçalho e numa célula da coluna, prima o botão do rato e mova-se para o destino com a tecla %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Marque automaticamente as entradas do índice alfabético com um arquivo de concordâncias." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Utilize Formatar > Alinhar (ou no menu de contexto) para um posicionamento preciso de objetos no Draw e no Impress: centra na página se um dos objetos for selecionado ou atua no grupo." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Não use o tabulador para afastar itens em documentos do Writer. Dependendo do que está a fazer, uma tabela sem contornos pode ser a melhor escolha." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Não é preciso percorrer a lista em Ferramentas > Personalizar > Teclado para encontrar um atalha; basta digitar." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "O %PRODUCTNAME pode adicionar automaticamente uma legenda numerada ao inserir objetos. Consulte Ferramentas > Opções > %PRODUCTNAME Writer > Legendas automáticas." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Pode utilizar a sua conta do GMail com o %PRODUCTNAME para criar um e-mail em série. Preencha os campos em Ferramentas > Opções > %PRODUCTNAME Writer > E-mail em série." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Pode manter os cabeçalhos das colunas da folha visíveis com Ver > Fixar células > Fixar primeira linha." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Quer trabalhar com macros Basic no %PRODUCTNAME? Dê uma olhada nos exemplos em Ferramentas > Macros > Editar macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Pode aplicar estilos de parágrafo no Writer com teclas de atalho: %MOD1+1 aplica Título 1, %MOD1+2 aplica Título 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Não se perca em documentos grandes. Utilize o Navegador (F5) para se orientar dentro do documento." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Em Editar > Localizar e substituir pode inserir caracteres especiais diretamente: clique no botão direito no campo de entrada ou prima Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Precisa de meta-dados com conteúdo personalizados? Em Ficheiro > Propriedades > Propriedades personalizadas pode criar o que quiser." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Deseja ver, mas não imprimir, um objeto no Draw? Desenhe-o numa camada cuja opção \"Imprimível\" esteja desativada (clique com o botão direito no separador e selecione \"Modificar camada\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Pode inserir a data atual no seu documento, escolha Inserir > Campo > Data." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Tem muitas imagens no seu documento do Writer? Acelere a sua exibição desativando Ver > Imagens e gráficos." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Utilize Folha > Preencher células > Número aleatório para gerar uma série aleatória baseada em diferentes distribuições." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Mude o nome dos seus diapositivos no Impress para ajudar a definir as interações “Ir para a página” e para ter um resumo mais explícito do que apenas Diapositivo1, Diapositivo2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "A numeração de capítulos permite definir um texto antes do número do capítulo. Por exemplo, coloque 'Capítulo' para mostrar 'Capítulo 1'." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Quer transpor uma tabela do Writer? Copie e cole no Calc, transponha com copiar e colar especial e no Writer escolha Colar especial > Texto formatado." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Para ter a ferramenta \"Texto vertical\" na barra de ferramentas Desenho, assinale Ferramentas > Opções > Definições de idioma > Idiomas > Idiomas padrão > Asiático (e torne o botão visível com um clique no botão direito)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Para ampliar rapidamente o intervalo selecionado, clique com o botão da direita percentagem de ampliação da barra de status, e escolha Ideal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Você pode assinar os ficheiros PDF existentes e também verificar essas assinaturas." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Costuma duplicar documentos? Pode criar e utilizar documentos como modelos." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Utilize Formatar > Formatação condicional > Gerir no Calc para descobrir quais as células que têm definidas uma formatação condicional." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Em Ferramentas > Auditoria > Marcar dados inválidos destaca todas as células da folha que possuam dados que violam as regras de validação." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Para melhor interoperabilidade com outras aplicações, incorpore os tipos de letra do seu documento em Ficheiro > Propriedades > Tipo de letra." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Para converter uma fórmula em valor estático, não precisa copiar e colar; utilize Dados > Calcular > Fórmula para valor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Pode reformatar todas os comentários de um documento ao clicar na seta para baixo num comentário e escolher \"Formatar todos os comentários\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Deseja a mesma disposição para o ecrã e para a impressão? Assinale Ferramentas > Opções > %PRODUCTNAME Calc > Geral > Utilizar métrica da impressora para formatar o texto." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "O Writer ajuda a fazer cópias de segurança: em Ficheiro > Guardar uma cópia pode criar um novo documento e continuar a trabalhar no original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Se estiver a criar um estilo baseado em outro estilo, pode introduzir um valor percentual ou em pontos (por exemplo: 110%, -2pt ou +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Para copiar um comentário sem perder o conteúdo da célula de destino, utilize Colar especial e desmarque tudo menos \"Comentários\" na caixa de diálogo. Utilize a operações \"Adicionar\" para não substituir o conteúdo existente." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Pode converter vários ficheiros do MS Office para o formato Open Document com o assistente de conversão em Ficheiro > Assistentes > Conversor de documentos." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Ao editar uma célula na posição, pode clicar com o botão direito do rato e inserir campos: data, nome da folha, título do documento, etc..." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Precisa mover uma tabela no Writer? Aceda a Tabela > Selecionar > Tabela e Inserir > Moldura > Moldura e mova-a para onde quiser." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Em Ferramentas > Texto automático > Texto automático > Importar, pode selecionar um documento ou modelo do Word que contém as entradas de texto automático que deseja importar." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Não introduza quebras manuais para separar dois parágrafos. Em vez disso, utilize Avanços e espaçamento > Espaçamento > Abaixo do parágrafo nas propriedades/estilo do parágrafo." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Pode manter os zeros antes do número com a opção de formatação de células \"Zeros à esquerda\" ou formatar a célula como texto antes de introduzir o número." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Quer retornar ao estilo padrão ao padrão depois de aplicar um estilo de lista? Clique em Ativar/desativar marcas e numeração na barra de ferramentas Formatação." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Para eliminar todos os intervalos de impressão de uma só vez: selecione todas as folhas, depois Formatar > Intervalos de impressão > Limpar." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Pode adicionar imagens de fundo às folhas de cálculo com Inserir > Imagem ou arrastando uma imagem de fundo da Galeria. Posteriormente Formatar > Dispor > Para segundo plano." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Está a ter problemas ao colar texto de ficheiros PDF ou de páginas web nos seus documentos? Experimente a opção Colar como texto não formatado (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Utilize a função MÉDIA.INTERNA() para devolver a média de dados, excluindo o maior e o menor valor." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "O 4.º parâmetro opcional da função PROCV do Calc indica se a primeira coluna dos dados está ordenada. Se não estiver, insira 0 ou FALSO." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "As barras de ferramentas dependem do contexto. Se não quiser este comportamento, desmarque o que quiser em Ver > Barras de ferramentas." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Deseja criar um documento modelo a partir do documento atual do Writer? Em Ficheiro > Enviar > Criar modelo global de documentos (os sub-documentos são criados de acordo com a estrutura de tópicos)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Deseja centrar as células do Calc ao imprimir? Utilize Formatar > Página, separador Página > Definições de esquema > Alinhamento da tabela." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "As molduras podem estar ligadas para permitir que o texto possa fluir entre elas como em programas de publicação em área de trabalho." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Para criar um gráfico a partir de uma tabela no Writer: clique na tabela e escolha Inserir > Gráfico." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Selecione Ferramentas > Opções > %PRODUCTNAME Writer > Auxiliares de formatação > Mostrar formatação para especificar quais os caracteres não imprimíveis que serão mostrados." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Deseja aceder a uma página pelo seu número? Clique no campo mais à esquerda da barra de estado ou utilize Editar > Ir para a página... ou ainda através do atalho %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "O %PRODUCTNAME está disponível em mais do que 150 idiomas." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Desmarque Apresentação de diapositivos > Definições > Apresentação sempre em primeiro plano se desejar que outro programa mostre a sua janela à frente da sua apresentação." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Deseja encontra palavras em negrito nos documentos do Writer? Aceda a Editar > Localizar e substituir > Outras opções > Atributos > Espessura do tipo de letra." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Pode ordenar parágrafos e/ou linhas de tabelas alfabeticamente ou numericamente em Ferramentas > Ordenar." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Para inserir um parágrafo antes ou depois de uma secção, prima %MOD2+Enter no início ou no fim dessa secção." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "O %PRODUCTNAME tem um centro de modelos para criar documentos que está à sua disposição!" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcule pagamentos de empréstimos no Calc: PGTO(2%/12;36;2500) taxa de juros por período de pagamento 2%/12, a 36 meses, num empréstimo de 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Não consegue encontrar o que deseja com a função PROCV? Com ÍNDICE e CORRESP pode fazer tudo!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Quer mostrar a coluna A que está oculta? Clique numa célula na coluna B, prima o botão do rato, mova-o para a esquerda e solte-o. Posteriormente Formatar > Colunas > Mostrar." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Para alterar o número de uma página no Writer, aceda às propriedades do primeiro parágrafo e no separador Fluxo do texto marque Quebra > Inserir e digite o número." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Execute o %PRODUCTNAME em qualquer navegador via rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Erro estranho no Calc, Err: seguido de número? Esta página explica:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Inclua um parágrafo que não é um título no índice remissivo ao mudar 'Tópicos e numeração' do parágrafo para um nível de tópico." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Para além do índice remissivo, o %PRODUCTNAME pode criar índices alfabéticos, de ilustrações, de tabelas, de objetos, bibliográficos ou outros definidos pelo utilizador." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Incapaz de modificar ou excluir um estilo de célula personalizado? Verifique todas as folhas. Nenhuma deve estar protegida." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Gostaria de preencher uma série? Selecione um intervalo, escolha Folha -> Preencher células -> Preencher série e escolha um dos tipos disponíveis." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Quer saber se uma célula é referenciada por fórmulas de outras células? Aceda a Ferramentas > Auditoria > Rastrear dependentes (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "No campo Substituir das opções de autocorreção, você pode utilizar caracteres universais .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Quer duplicar a linha de cima? Prima %MOD1+D ou utilize Folha > Preencher células > Preencher para baixo." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Para efetuar uma pesquisa em várias folhas do seu livro, selecione-as antes de iniciar a pesquisa." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Arraste e solte células do Calc num diapositivo na vista Normal para criar uma tabela. Ao soltar na vista de Tópicos, cada célula cria uma linha de tópico." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "O %PRODUCTNAME pode impedir a introdução de dois ou mais espaços consecutivos no Writer. Em Ferramentas > Opções de correção automática > Opções, assinale Ignorar espaços duplos." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Deseja que o cursor vá para a célula à direita após inserir um valor no Calc? Utilize a tecla Tab em vez de Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Para mostrar a barra de deslocação à esquerda, ative Ferramentas > Opções > Definições de idiomas > Idiomas > Texto complexo Folha > Da direita para esquerda." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arraste um objeto formatado para a janela Estilos. Abre-se uma caixa de diálogo para digitar um nome para o novo estilo." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "As novas versões do %PRODUCTNAME disponibilizam novas funcionalidades, correções de erros e correções de segurança. Mantenha o seu software atualizado!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Quer desenvolver um novo filtro XML e o seu XLST?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Prima Shift+F1 para ver as dicas suplementares nas caixas de diálogo se a opção \"Dicas suplementares\" não estiver ativada em Ferramentas -> Opções -> %PRODUCTNAME -> Geral." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Ajuda do %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Mais informação" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Executar esta ação agora..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Dica do dia: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/sbasic/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-11-08 19:34+0100\n" -"PO-Revision-Date: 2020-09-13 11:35+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Sérgio Marques \n" -"Language-Team: Portuguese \n" +"Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560439496.000000\n" #. WcTKB @@ -293,7 +293,7 @@ "N0444\n" "help.text" msgid "''' Grab Python script object before execution" -msgstr "" +msgstr "\"\"\" Obter o objecto de script Python antes da execução" #. woGvx #: basic_2_python.xhp @@ -329,7 +329,7 @@ "N0448\n" "help.text" msgid "' Result:" -msgstr "" +msgstr "' Resultado:" #. kskTS #: basic_2_python.xhp @@ -338,7 +338,7 @@ "N0449\n" "help.text" msgid "' located com.sun.star.script.provider.XScript UNO service'''" -msgstr "" +msgstr "' localizado o serviço UNO com.sun.star.script.provider.XScript'''" #. F9Hvi #: basic_2_python.xhp @@ -347,7 +347,7 @@ "N0452\n" "help.text" msgid "Dim sp As Object ' com.sun.star.script.provider.XScriptProvider compatible" -msgstr "" +msgstr "Dim sp As Object ' compatível com com.sun.star.script.provider.XScriptProvider" #. osCpU #: basic_2_python.xhp @@ -356,7 +356,7 @@ "N0463\n" "help.text" msgid "Executing Python Scripts" -msgstr "" +msgstr "Executar scripts Python" #. pAfKa #: basic_2_python.xhp @@ -365,7 +365,7 @@ "N0464\n" "help.text" msgid "Syntax" -msgstr "" +msgstr "Sintaxe" #. gVpsb #: basic_2_python.xhp @@ -374,7 +374,7 @@ "N0466\n" "help.text" msgid "opSysName = script.invoke(Array(), in_outs, Array()) ' in_out is an Array" -msgstr "" +msgstr "opSysName = script.invoke(Array(), in_outs, Array()) ' in_out é um Array" #. jiU2w #: basic_2_python.xhp @@ -383,7 +383,7 @@ "N0469\n" "help.text" msgid "Embedded Scripts Examples" -msgstr "" +msgstr "Exemplos de scripts incorporados em documentos" #. FadCx #: basic_2_python.xhp @@ -392,7 +392,7 @@ "N0470\n" "help.text" msgid "Below ComputerName, and GetFilelen routines are calling their Python counterparts, using aforementioned GetPythonScript function. Exception handling is not detailed." -msgstr "" +msgstr "As rotinas ComputerName, e GetFilelen chamam as suas contrapartidas em Python, utilizando a função GetPythonScript. O tratamento de exceções não é detalhado." #. YbMbS #: basic_2_python.xhp @@ -401,7 +401,7 @@ "N0472\n" "help.text" msgid "Option Compatible ' Properties are supported" -msgstr "" +msgstr "Option Compatible ' Suporta propriedades" #. KVNHH #: basic_2_python.xhp @@ -410,7 +410,7 @@ "N0477\n" "help.text" msgid "'''Workstation name'''" -msgstr "" +msgstr "'''Nome da Workstation'''" #. FCaBa #: basic_2_python.xhp @@ -419,7 +419,7 @@ "N0483\n" "help.text" msgid "'''File size in bytes'''" -msgstr "" +msgstr "'''Tamanho do ficheiro em bytes'''" #. D9Cbu #: basic_2_python.xhp @@ -428,7 +428,7 @@ "N0489\n" "help.text" msgid "ISEMBEDDED As String ' document script" -msgstr "" +msgstr "ISEMBEDDED As String ' script do documento" #. bD77H #: basic_2_python.xhp @@ -437,7 +437,7 @@ "N0490\n" "help.text" msgid "ISPERSONAL As String ' user script" -msgstr "" +msgstr "ISPERSONAL As String ' script do utilizador" #. TEbDh #: basic_2_python.xhp @@ -446,7 +446,7 @@ "N0491\n" "help.text" msgid "ISSHARED As String ' %PRODUCTNAME macro" -msgstr "" +msgstr "ISSHARED As String ' Macro de %PRODUCTNAME" #. CHTxq #: basic_2_python.xhp @@ -455,7 +455,7 @@ "N0497\n" "help.text" msgid ".ISEMBEDDED = \"document\" ' document script" -msgstr "" +msgstr ".ISEMBEDDED = \"document\" ' script do documento" #. GGD4G #: basic_2_python.xhp @@ -464,7 +464,7 @@ "N0498\n" "help.text" msgid ".ISPERSONAL = \"user\" ' user scripts" -msgstr "" +msgstr ".ISPERSONAL = \"user\" ' script do utilizador" #. hz9VR #: basic_2_python.xhp @@ -473,7 +473,7 @@ "N0499\n" "help.text" msgid ".ISSHARED = \"share\" ' %PRODUCTNAME macro" -msgstr "" +msgstr ".ISSHARED = \"share\" ' Macro de %PRODUCTNAME" #. KfKCA #: basic_2_python.xhp @@ -482,7 +482,7 @@ "N0503\n" "help.text" msgid "Two different Python modules are called. They can either be embedded in the current document, either be stored on the file system. Argument type checking is skipped for clarity:" -msgstr "" +msgstr "São chamados dois módulos Python diferentes. Podem ser incluídos no documento atual ou guardados no sistema de ficheiros. Por clareza, omitiu-se a verificação dos argumentos:" #. igPCi #: basic_2_python.xhp @@ -491,7 +491,7 @@ "N0526\n" "help.text" msgid "Personal or Shared Scripts Examples" -msgstr "" +msgstr "Exemplos de scripts pessoais ou partilhados" #. EPVTC #: basic_2_python.xhp @@ -500,7 +500,7 @@ "N0527\n" "help.text" msgid "The calling mechanism for personal or shared Python scripts is identical to that of embedded scripts. Library names are mapped to folders. Computing %PRODUCTNAME user profile and shared modules system file paths can be performed as detailed in Getting session information. Below OSName, HelloWorld and NormalizePath routines are calling their Python counterparts, using aforementioned GetPythonScript function. Exception handling is not detailed." -msgstr "" +msgstr "O mecanismo de chamadas para scripts Python pessoais ou partilhados é idêntico ao dos scripts incluídos. Os nomes de bibliotecas são mapeados em pastas. O cálculo dos caminhos do perfil de utilizador do %PRODUCTNAME e dos ficheiros de sistema dos módulos artilhados pode ser feito como indicado em Obter informação da sessão. As rotinas OSName, HelloWorld e NormalizePath chamam as suas contrapartidas em Python, utilizando a função GetPythonScript. O tratamento de exceções não é detalhado." #. bwkSJ #: basic_2_python.xhp @@ -509,7 +509,7 @@ "N0529\n" "help.text" msgid "Option Compatible ' Properties are supported" -msgstr "" +msgstr "Option Compatible ' Suporta propriedades" #. 3W9xB #: basic_2_python.xhp @@ -518,7 +518,7 @@ "N0534\n" "help.text" msgid "'''Platform name as \"Linux\", \"Darwin\" or \"Windows\"'''" -msgstr "" +msgstr "'''Nome de plataforma, como «Linux», «Darwin» ou «Windows»'''" #. WAE7X #: basic_2_python.xhp @@ -527,7 +527,7 @@ "N0540\n" "help.text" msgid "'''%PRODUCTNAME Python shared sample'''" -msgstr "" +msgstr "'''exemplo de Python partilhado em %PRODUCTNAME'''" #. MYSSL #: basic_2_python.xhp @@ -536,7 +536,7 @@ "N0546\n" "help.text" msgid "'''Strip superfluous '\\..' in path'''" -msgstr "" +msgstr "'''Eliminar '\\..' supérfluo no caminho'''" #. yTqsy #: basic_2_python.xhp @@ -545,7 +545,7 @@ "N0550\n" "help.text" msgid "Python standard modules" -msgstr "" +msgstr "Módulos Python padrão" #. 3F9RQ #: basic_2_python.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/scalc/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-18 19:24+0000\n" +"PO-Revision-Date: 2021-04-03 16:37+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -10769,7 +10769,7 @@ "par_id090920081050307\n" "help.text" msgid "In cell references, a sheet name must be enclosed in single quotes ' when the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes)." -msgstr "" +msgstr "Nas referências de células, o nome de folha tem que estar entre plicas ' caso o nome inclua outros caracteres que não alfanuméricos ou sublinhado. Uma plica no nome tem que ser precedida através da sua duplicação (duas plicas)." #. ZjbDT #: rename_table.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/sdatabase.po libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/sdatabase.po --- libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/sdatabase.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/sdatabase.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2021-02-13 13:36+0000\n" +"PO-Revision-Date: 2021-04-03 16:37+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" #. ugSgG #: 02000000.xhp @@ -674,7 +674,6 @@ #. N2f8q #: 02010100.xhp -#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3145646\n" @@ -729,7 +728,6 @@ #. 3UCig #: 02010100.xhp -#, fuzzy msgctxt "" "02010100.xhp\n" "par_id3150715\n" @@ -825,7 +823,7 @@ "par_id3154754\n" "help.text" msgid "Enter the name of the schema that is assigned to the query or table view." -msgstr "" +msgstr "Introduza o nome do esquema que foi atribuído à vista de consulta ou de tabela." #. 6Q72c #: 02010100.xhp @@ -843,7 +841,7 @@ "par_id3154253\n" "help.text" msgid "Enter the name of the query or table view." -msgstr "" +msgstr "Introduza o nome da consulta ou da vista de tabela." #. qgbNu #: 02010100.xhp @@ -897,7 +895,7 @@ "par_id3146315\n" "help.text" msgid "Specifies an alias. This alias will be listed in the query instead of the field name. This makes it possible to use user-defined column labels. For example, if the data field is named PtNo and, instead of that name, you would like to have PartNum appear in the query, enter PartNum as the alias." -msgstr "" +msgstr "Especifica um nome alternativo. Este nome alternativo será listado numa consulta em vez do nome do campo. Este procedimento faz com que seja possível utilizar etiquetas de coluna definidas pelo utilizador. Por exemplo, se o campo de dados tiver o nome PtNo e, em vez desse nome, preferir que apareça PartNum na consulta, introduza PartNum como nome alternativo." #. vvWbt #: 02010100.xhp @@ -906,7 +904,7 @@ "par_id3155959\n" "help.text" msgid "In a SQL statement, aliases are defined as follows:" -msgstr "" +msgstr "Numa instrução SQL, os nomes alternativos são definidos da seguinte forma:" #. CGsBz #: 02010100.xhp @@ -915,7 +913,7 @@ "par_id3149922\n" "help.text" msgid "SELECT column AS alias FROM table." -msgstr "" +msgstr "SELECT coluna AS alias FROM tabela." #. TWexq #: 02010100.xhp @@ -924,7 +922,7 @@ "par_id3159335\n" "help.text" msgid "For example:" -msgstr "" +msgstr "Por exemplo:" #. ynSGq #: 02010100.xhp @@ -933,7 +931,7 @@ "par_id3148478\n" "help.text" msgid "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\"" -msgstr "" +msgstr "SELECT \"PtNo\" AS \"PartNum\" FROM \"Parts\"" #. roTzi #: 02010100.xhp @@ -942,7 +940,7 @@ "hd_id3148485\n" "help.text" msgid "Table" -msgstr "" +msgstr "Tabela" #. GM9Sp #: 02010100.xhp @@ -951,7 +949,7 @@ "par_id3163665\n" "help.text" msgid "The corresponding database table of the selected data field is listed here. If you activate this cell with a mouse click, an arrow will appear which enables you to select a different table for the current query." -msgstr "" +msgstr "A tabela da base de dados correspondente do campo de dados selecionado é aqui listada. Se ativar a célula com um clique do rato, irá surgir uma seta que lhe permite selecionar outra tabela da consulta atual." #. JGcfa #: 02010100.xhp @@ -960,7 +958,7 @@ "hd_id3154207\n" "help.text" msgid "Sort" -msgstr "" +msgstr "Ordenação" #. uXuDt #: 02010100.xhp @@ -969,7 +967,7 @@ "par_id3150979\n" "help.text" msgid "If you click on this cell, you can choose a sort option: ascending, descending and unsorted. Text fields will be sorted alphabetically and numerical fields numerically. For most databases, administrators can set the sorting options at the database level." -msgstr "" +msgstr "Ao clicar nesta célula, pode selecionar as opções de ordenação: ascendente, descendente e sem ordenação. Os campos de textos serão ordenados alfabeticamente, e os campos numéricos serão ordenados numericamente. Na maior parte das bases de dados, os administradores podem definir as opções de ordenação." #. XsqW8 #: 02010100.xhp @@ -978,7 +976,7 @@ "hd_id3150384\n" "help.text" msgid "Visible" -msgstr "" +msgstr "Visível" #. AAZfA #: 02010100.xhp @@ -987,7 +985,7 @@ "par_id3146133\n" "help.text" msgid "If you mark the Visible property for a data field, that field will be visibly displayed in the resulting query. If you are only using a data field to formulate a condition or make a calculation, you do not necessarily need to display it." -msgstr "" +msgstr "Se assinalar a propriedade Visível para um campo de dados, esse campo estará visível na consulta. Se utilizar apenas um campo de dados para formular uma condição, não é obrigatório que este seja visualizado." #. eQFRR #: 02010100.xhp @@ -996,7 +994,7 @@ "hd_id3154714\n" "help.text" msgid "Criteria" -msgstr "" +msgstr "Critérios" #. f3DvJ #: 02010100.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-01 19:36+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563747595.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "tipos de letra intermitentestipos de letra luminosos" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Intermitente" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Cria um efeito de intermitência dos caracteres selecionados. A frequência da intermitência não pode ser alterada." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po --- libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/shared/guide.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-01-16 20:36+0000\n" +"PO-Revision-Date: 2021-04-22 12:37+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560442418.000000\n" #. iharT @@ -104,7 +104,7 @@ "par_id401607339239056\n" "help.text" msgid "Working with Templates" -msgstr "" +msgstr "Trabalhar com modelos" #. AJDDG #: aaa_start.xhp @@ -419,7 +419,7 @@ "par_id3150771\n" "help.text" msgid "Click the Start button on the Windows taskbar. Choose Settings." -msgstr "" +msgstr "Clique no botão Iniciar da barra de tarefas do Windows. Escolha Definições." #. u7g6Z #: activex.xhp @@ -428,7 +428,7 @@ "par_idN106E8\n" "help.text" msgid "In Settings, click Apps." -msgstr "" +msgstr "Nas definições, clique em Aplicações." #. 3UNE4 #: activex.xhp @@ -437,7 +437,7 @@ "par_id3156155\n" "help.text" msgid "In the Apps & features list, click %PRODUCTNAME, then click Change." -msgstr "" +msgstr "Na lista Aplicações e funcionalidades, clique em %PRODUCTNAME e depois em Alterar." #. CaXPY #: activex.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2020-10-04 11:35+0000\n" +"PO-Revision-Date: 2021-04-23 23:05+0000\n" "Last-Translator: Sérgio Marques \n" -"Language-Team: Portuguese \n" +"Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1564159052.000000\n" #. PzSYs @@ -86,7 +86,7 @@ "par_id61597440155071\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options" -msgstr "" +msgstr "%PRODUCTNAME - PreferênciasFerramentas - Opções" #. WS53M #: 01000000.xhp @@ -563,7 +563,7 @@ "hd_id3150592\n" "help.text" msgid "Email" -msgstr "" +msgstr "E-mail" #. FNyZE #: 01010100.xhp @@ -572,7 +572,7 @@ "par_id3154942\n" "help.text" msgid "Type your email address. For example, my.name@my.provider.com" -msgstr "" +msgstr "Introduza o seu endereço de e-mail. Por exemplo, meu.nome@meu.servidor.com" #. DA4Z7 #: 01010100.xhp @@ -590,7 +590,7 @@ "par_id311543858573650\n" "help.text" msgid "Set the preferred public key for OpenPGP encryption and digital signature. These preferred keys will be pre-selected in key selection dialog every time you sign or encrypt a document, so you don't have to select it yourself when signing with one specific key frequently." -msgstr "" +msgstr "Define a chave preferencial para a criptografia e assinatura digital OpenPGP. Estas chaves são pré-selecionadas na caixa de diálogo de seleção de chaves sempre que assinar ou cifrar um documento. Assim não é necessário selecioná-la se assinar frequentemente com uma chave específica." #. WFBnd #: 01010100.xhp @@ -653,7 +653,7 @@ "par_id851543858754421\n" "help.text" msgid "Keep this option selected, if you ever want to be able to decrypt documents you've encrypted for other people." -msgstr "" +msgstr "Mantenha esta opção selecionada, para poder sempre decifrar os documentos que foram cifrados para outras pessoas." #. swkDJ #: 01010200.xhp @@ -725,7 +725,7 @@ "par_id3166460\n" "help.text" msgid "If Load user-specific settings with the document is not selected, the following user-specific settings still apply:" -msgstr "" +msgstr "Se Carregar definições personalizadas com o documento não estiver selecionada, aplicam-se as seguintes definições:" #. aZp7W #: 01010200.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-10 07:37+0000\n" +"PO-Revision-Date: 2021-03-24 15:37+0000\n" "Last-Translator: Sérgio Marques \n" "Language-Team: Portuguese \n" "Language: pt\n" @@ -31266,7 +31266,7 @@ "Label\n" "value.text" msgid "~Page Style..." -msgstr "Estilo da ~página" +msgstr "Estilo de ~página" #. 8aUD6 #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/cui/messages.po libreoffice-7.1.3~rc2/translations/source/pt-BR/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-03-28 22:37+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -578,7 +578,7 @@ #: cui/inc/strings.hrc:115 msgctxt "RID_SVXSTR_EVENT_NEWDOC" msgid "New Document" -msgstr "Ao criar um novo documento" +msgstr "Novo documento" #. G6b2e #: cui/inc/strings.hrc:116 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "O %PRODUCTNAME suporta 4 níveis de segurança de macros (de fraca a muito forte) e de fontes confiáveis." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "O %PRODUCTNAME participa do Google Summer of Code (GSoC). Veja:" - -#. SNTbc -#: 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 "Sabia que podia anexar anotações a trechos do texto? Utilize o atalho %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Precisa mover um ou mais parágrafos? Não precisa cortar ou copiar: utilize o atalho %MOD1+%MOD2+Seta (para cima / para baixo)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Mude as fontes básicas de um modelo predefinido ou documento atual com Ferramentas > Opções > %PRODUCTNAME Writer ▸ Fontes básicas." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Quer encontrar palavras com mais de 10 caracteres? Editar > Localizar e substituir > Localizar [a-z]{10,} > Outras opções > marque Expressões regulares." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Abra um arquivo CSV como nova planilha no documento atual via Planilha - Inserir planilha do arquivo." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Ao digitar em negrito, itálico ou sublinhado no Writer, você pode seguir com os atributos padrão com o atalho %MOD1+Shift+X (remover formatação direta de caracteres)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Utilize %MOD1+%MOD2+Shift+V para colar o conteúdo da área de transferência como texto sem formatação." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Personalize a aparência do rodapé com Ferramentas > Notas de rodapé e notas de fim…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Com Apresentação de slides > Apresentação de slides personalizada, reordene e escolha os slides para compor uma apresentação adequada a seus espectadores." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Deseja mudar a verificação ortográfica de parte do texto? Clique na zona de idiomas da barra de status ou então melhor sendo, aplique um estilo." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "O Writer pode inserir uma página em branco entre duas páginas pares (ímpares) seguintes. Marque \"Imprimir páginas em branco inseridas automaticamente\" na caixa de diálogo de impressão na aba %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Não quer imprimir todas as colunas? Oculte ou agrupe as que não precisa." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Para modificar uma apresentação em autoexecução, abra-a e depois de iniciar, clique no botão direito e selecione Editar no menu de contexto." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Posicionamento com precisão? %MOD2 + setas para mover objetos (formas, imagens, fórmulas) por um pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "A Ajuda incorporada é acessível com F1, se estiver instalada. Senão verifique a ajuda online em:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Clique no botão direito da barra de status do %PRODUCTNAME Calc e selecione \"Contar seleção\" para exibir o número de células selecionadas." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Quer ter duas ou mais colunas num parte de uma página do %PRODUCTNAME Writer? Inserir > Seção, aba Colunas e ponha o texto nesta seção." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Utilize Dados > Estatísticas para amostragem, estatística descritiva, análise de variância, correlação e muito mais no %PRODUCTNAME Calc" #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Você pode copiar uma planilha em outra sem a área de transferência.Selecione a área a copiar, %MOD1+clique na aba da planilha de destino e utilize Planilha > Preencher células > Preencher planilhas" #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Você pode mudar a aparência do %PRODUCTNAME via Ferramentas > Opções > Exibir > Interface do usuário." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "No %PRODUCTNAME Impress, utilize Inserir > Multimídia > Álbum de fotos para criar uma apresentação de slides com uma série de imagens com o recurso \"Álbum de fotos\"." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Você pode mostrar as fórmulas em vez dos resultados com Exibir > Mostrar fórmula (ou Ferramentas > Opções > %PRODUCTNAME Calc > Exibir > Exibir > Fórmulas" #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "O %PRODUCTNAME é desenvolvido com uma comunidade bem bacana, constituída de centenas de contribuidores mundo afora. Faça parte desta comunidade com suas competências e habilidades além do mundo da programação." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Canhoto? Ative Ferramentas > Opções > Configurações de idioma > Idiomas > Asiático e depois marque Ferramentas > Opções > %PRODUCTNAME Writer > Exibir > Régua > Alinhada à direita, que mostrará a barra de rolagem à esquerda." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Quer que seus títulos de capítulo comecem sempre no início da página? Edite o estilo de parágrafo Título 1 > Fluxo do texto > Quebras e marque Inserir > Página > Antes." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Data e hora são números contados a partir de uma data base; no número, a parte inteira é a data e a parte fracionária é a hora do dia, com 0,5 representando o meio-dia." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del exclui do cursor até o fim da frase." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Utilize os rótulos de colunas e linhas nas fórmulas. Por exemplo, se tiver duas colunas \"KM\" e \"Tempo\", utilize =Tempo/KM para ter quilômetros por minuto." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Aborrecido com as \"formiguinhas\" em volta de uma célula do Calc? Pressione Esc para interromper; o conteúdo copiado permanece disponível para colar." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Quer se tornar um Embaixador do %PRODUCTNAME? Há programas de certificação para desenvolvedores, administradores e instrutores." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Combine as orientações retrato e paisagem num documento do Calc ao aplicar estilos de página às planilhas." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Clique no ícone Caracteres especiais na barra de ferramentas para ter acesso rápido aos caracteres favoritos e recentes a inserir." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Escolha \"Hierárquico\" na exibição de estilos da barra lateral para ver a relação entre estilos." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Você pode utilizar estilos para tornar as tabelas de seu documento consistentes. Escolha um dos estilos predefinidos em Estilos (F11) ou via Tabela > Autoformatar." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Configurar a tecla %MOD1 para abrir hiperlinks? Ferramentas > Opções > %PRODUCTNAME > Segurança Opções > \"%MOD1+clique para abrir hiperlinks\"." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Deseja ver os cálculos individuais dos elementos da fórmula? Selecione o elemento respectivo e pressione F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Você pode proteger células com Formatar > Células > Proteção. Para evitar inserir, excluir, renomear, mover ou copiar planilhas, utilize Ferramentas > Proteger planilha." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Escrever seguindo uma curva? Desenhe a curva, duplo-clique nela, digite o texto. Em seguida Formatar > Caixa de texto e Forma > Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Quer exibir somente o maior valor numa planilha? selecione Dados > Autofiltro, clique na seta da lista suspensa, escolha \"Os 10 maiores\"." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Para remover o número da página do seu índice, acesse Inserir > Índices e Sumário (ou clique com botão da direita num índice existente). Na aba Entradas, exclua o número da página (#) da linha Estrutura." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Com o Navegador você pode selecionar e mover para cima ou para baixo os títulos e o texto abaixo do título, no navegador e no documento." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Para inserir rapidamente um objeto do Math no Writer, digite sua fórmula, selecione-a e utilize Inserir > Objeto > Fórmula para converter o texto." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "É fácil instalar um novo dicionário no %PRODUCTNAME: Eles estão disponíveis como extensões." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "O %PRODUCTNAME tem uma versão portátil que permite a mobilidade. Mesmo sem ser administrador do computador, você pode instalar o %PRODUCTNAME Portable no seu disco HD." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "O Writer permite numerar as notas de rodapé por página, capítulo ou documento: Ferramentas > Notas de rodapé e notas de fim, aba Notas de rodapé > Contagem." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Seu documento do Writer não reabre na posição que foi salvo? Adicione seu nome e sobrenome nas Ferramentas > opções > %PRODUCTNAME > Dados do usuário > Nome / sobrenome" #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Precisa gerenciar citações? Utilize uma extensão de terceiros." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Quer inserir um valor no mesmo lugar sem várias planilhas? Selecione as planilhas : pressione a tecla %MOD1 e clique nas abas antes de inserir." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Deseja ocultar texto num documento? Selecione o texto. Inserir > Seção, e selecione \"Ocultar\"." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Você pode personalizar o botão do meio do mouse em Ferramentas > Opções > %PRODUCTNAME > Exibir > Botão do meio do mouse." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Quer imprimir duas páginas em retrato numa página paisagem (reduzindo A4 para A5)? Arquivo > Imprimir e selecione 2 em \"Páginas por folha\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Para acesso rápido aos marca-páginas do seu documento, clique com botão da direita no número da página na barra de status (embaixo à esquerda da janela do documento)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Selecione um objeto no plano de fundo do documento via ferramenta de seleção na barra de ferramentas Desenho para cercar o objeto a selecionar." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Grave textos a repetir como autotexto. Você poderá inseri-los por um nome, atalho ou barra de ferramentas em qualquer documento do Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Toque música ao longo de uma apresentação de slides atribuindo o som à transição do primeiro slide e sem clicar em \"Aplicar a todos os slides\"." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 "O %PRODUCTNAME Calc não calcula da esquerda para a direita mas respeita a ordem Parênteses - Expoentes -Multiplicação - Divisão - Adição - Subtração." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Consiga documentação do %PRODUCTNAME e guias de usuários grátis em:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Quer remover todos os <> de uma só vez mantendo o texto do interior? Menu Editar > Localizar e substituir: Localizar=[<>], Substituir = (vazio) e marque 'Expressões regulares' nas Outras opções." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Precisa apresentar um relatório escrito no Writer? Arquivo > Enviar > Estrutura de tópicos para a presentação cria automaticamente uma apresentação de slides a partir da estrutura de tópicos." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Quer gerenciar a apresentação de hiperlinks em planilhas? Insira-os com a função HIPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Desmarque Ferramentas > Opções > %PRODUCTNAME Calc > Exibir > Zoom \"Sincronizar planilhas\" para que cada planilha tenha seu próprio fator de zoom." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Defina cores para as abas das planilhas: clique no botão direito na aba da planilha ou menu Planilha > Cor da aba da planilha." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Rastreie células usadas numa fórmula, precedentes (Shift+F9) ou dependentes (Shift+F5) (ou utilize Ferramentas > Detetive). Para cada acerto, você sobe um degrau na cadeia." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Insira e numere suas fórmulas em um só passo: digite 'fn' seguido de F3. Um autotexto é inserido com uma fórmula e um número alinhado numa tabela." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Você pode criar um índice de ilustrações a partir dos nomes dos objetos, e não somente das legendas." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Controle sua apresentação Impress com o controle remoto para Android e iPhone." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Deseja saber quantos dias tem no mês corrente? Utilize a função =DIASNOMES(AGORA())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Encontrou números exibidos como ### na planilha? A coluna está estreita demais para mostrar o número todo." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Ative a computação paralela de fórmulas em grandes volumes de dados com Ferramentas > Opções > OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Utilize a ferramenta Conectores na barra de desenho no Draw ou Impress para criar diagramas de fluxo e opcionalmente copiar e colar o objeto no Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Sua doação apoia nossa comunidade internacional." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Quer adicionar x meses a uma data? Utilize = DATAM(data;meses)" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Para selecionar um intervalo contínuo de células contendo dados e limitado por uma linha e coluna vazias, utilize %MOD1+* (no teclado numérico)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "A entrada de datas não está apropriada? Ferramentas > Opções > Configurações de idioma > Idioma > Outros formatos aceitos para data e acerte o padrão desejado." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Quer exportar fórmulas num arquivo CSV? Arquivo > Salvar como > Tipo: Texto CSV, marque \"Editar definições do filtro\" e marque \"Salvar as fórmulas das células...\" na caixa de diálogo que segue." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "A console do apresentador é um recurso sensacional para o %PRODUCTNAME Impress. Já conferiu?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Para excluir várias anotações, selecione as células com anotações e utilize Planilha > Anotações > Excluir anotação." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Converta seu documento para PDF com um clique no ícone PDF na barra de ferramentas." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Quer selecionar um intervalo grande de células sem ter de rolar telas? Digite o intervalo (p. ex. a1:A1000) na caixa de nomes de intervalos e tecle Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Deseja conhecer os parâmetros de chamada válidos? inicie o %PRODUCTNAME com soffice e --help ou -h ou -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Ajuste sua planilha ou seu intervalo de impressão na página com Formatar > Página > Planilha > Modo de escala." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Precisa de um item sem numeração numa lista? Utilize 'Inserir entrada sem numeração' da barra Marcas e numeração." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Você pode girar a orientação das células de uma tabela com Tabela > Propriedades > Fluxo de texto > Orientação do texto" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "No %PRODUCTNAME Draw para mudar a origem das réguas (ponto 0;0), arraste a interseção das duas réguas em cima à esquerda para a área de trabalho." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Mover uma coluna entre duas outras em um só passo no Calc? Clique no cabeçalho e numa célula da coluna, pressione o botão do mouse e mova para o destino com a tecla %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Marque automaticamente as entradas do índice alfabético com um arquivo de concordâncias." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Utilize Formatar > Alinhar (ou pelo menu de contexto) para um posicionamento preciso de objetos no Draw e no Impress: centraliza na página se um dos objetos for selecionado ou trabalha no grupo respectivamente." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Não use o tabulador para afastar itens num documento do Writer. A depender do que está querendo fazer, uma tabela sem bordas é uma escolha melhor." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Não é preciso rolar a lista de atalhos em Ferramentas > Personalizar > Teclado: digite o atalho para achá-lo." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "O %PRODUCTNAME pode inserir uma legenda numerada automaticamente ao inserir objetos. Veja em Ferramentas > Opções %PRODUCTNAME Writer > Autolegendas" #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Você pode utilizar sua conta no Google Mail com o %PRODUCTNAME para fazer uma mala direta. Preencha o e-mail em Ferramentas > Opções > %PRODUCTNAME Writer > Mala direta de E-mail." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Mantenha os cabeçalhos da planilha visíveis ao rolar os dados em linha com Exibir > Fixar células > Fixar primeira linha." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Quer começar a trabalhar com macros Basic? Dê uma olhada nos exemplos em Ferramentas > Macros > Editar macros." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Aplique os estilos de parágrafo Título no Writer com os atalhos %MOD1+1 (Título1), %MOD1+2 (Título2), etc..." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Não fique perdido em documentos grandes. Utilize o Navegador (F5) para se orientar dentro do documento." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Editar > Localizar e substituir permite inserir caracteres especiais diretamente: clique no botão direito no campo de entrada ou pressione Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Precisa de metadados personalizados? Arquivo > Propriedades > Propriedades personalizadas e crie os metadados desejados." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Deseja ver, mas não imprimir, um objeto no Draw? desenhe-o numa camada cuja opção de imprimir está desativada (clique com botão direito na aba e selecione \"Modificar camada\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Para inserir a data de hoje no documento, utilize Inserir > Campo > Data." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Acelere a visualização de seu documento desmarcando Exibir > Figuras e gráficos." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Utilize Planilhas > Preencher células > Números aleatórios para gerar uma série de números aleatórios baseados em várias distribuições." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Renomeie seus slides no Impress pra ajudá-lo a definir as interações 'Ir para' e para ter um sumário mais explícito que Slide1, Slide2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "A numeração de capítulos permite definir um texto antes do número do capítulo. Por exemplo coloque \"Capítulo\" para exibir \"Capítulo 1\"." #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transpor uma tabela do Writer? copie e cole no Calc, transponha com copiar e colar especial e então copiar e colar especial > Formatado no Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Para ter a ferramenta \"Texto Vertical\" na barra de ferramentas Desenho, marque Ferramentas > Opções > Configurações de idiomas > Idiomas padrão > Asiático (e torne o botão visível com um clique no botão direito)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Para aplicar zoom no intervalo selecionado, clique com o botão da direita no capo de zoom da barra de Status e escolha Otimizado." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Você pode assinar digitalmente arquivos PDF existentes e conferir as assinaturas." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Você cria muitos documentos a partir de um único? Considere utilizar um modelo." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "No Calc, utilize Formatar > Formatação condicional > Gerenciar para descobrir que células possuem formatação condicional." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Ferramentas > Detetive > Marcar dados inválidos destaca todas as células na planilha que contém dados que violam as regras de validação." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Para melhor interoperabilidade com outras suítes office, incorpore as fontes utilizadas no seu documento em Arquivo > Propriedades > Fonte." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Para converter uma fórmula num valor estático você não precisa copiar e colar; utilize Dados > Calcular > Converter fórmula para valor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Você pode reformatar todas as anotações ao clicar na seta pra baixo numa anotação e escolher \"Formatar todas as anotações\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Deseja o mesmo leiaute para a tela e a impressão? Marque Ferramentas > Opções > %PRODUCTNAME Calc > Geral > Utilizar métricas da impressora para formatar textos." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "O Writer o ajuda a fazer backups: Com Arquivo > Salvar uma cópia você cria um novo documento e continua a trabalhar com o original." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Se criou um estilo baseado em outro estilo, você pode inserir um valor percentual ou em pontos (por exemplo, 110% ou -2pt ou +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Para copiar o comentário sem perder o conteúdo da célula de destino, utilize Colar especial e desmarque tudo menos 'Anotações' no diálogo. Utilize as operações de Adicionar para não sobrescrever o conteúdo existente." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Converta um lote de arquivos do Microsoft Office para o formato Open Document com o assistente de conversão em Arquivo > Assistentes > Conversor de documentos." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Ao editar uma célula na posição, você pode inserir campos: data, nome da planilha, título do documento, etc..." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Precisa mover uma tabela no Writer? Tabela > Selecionar > Tabela e Inserir > Quadro > Quadro e mova para onde desejar." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Com Ferramentas > Autotexto > Autotexto > Importar você pode selecionar um documento ou modelo do Word contendo as entradas do autotexto que deseja importar." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Não digite parágrafos vazios para separar dois parágrafos de texto. Em vez disso, mude Recuos e espaçamento > Espaçamento > Embaixo do parágrafo nas propriedades ou estilo de parágrafo." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Mantenha os zeros antes do número usando a opção de formatação de células \"zeros à esquerda\" ou formate a célula como texto antes de digitar o número." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Quer voltar ao padrão depois de aplicar um estilo de lista? Clique em Ativar/desativar Marcas e numeração na barra de ferramentas Formatação." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Exclua todos os intervalos de impressão num só passo: selecione todas as planilhas e então Formatar > Intervalos de impressão > Limpar." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Adicione imagens no plano de fundo de planilhas via Inserir > Figura ou arraste um plano de fundo da Galeria, e então Formatar > Dispor > Para o plano de fundo." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Problemas ao colar texto de arquivos PDF ou páginas web em documentos? Tente colar como texto sem formato (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Utilize a função MÉDIA.INTERNA() para retornar a média de dados excluindo o maior e o menor valor." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "O 4º parâmetro opcional da função PROCV do Calc indica se a primeira coluna dos dados está ordenada. Se não estiver, insira 0 ou FALSO." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Barras de ferramentas são contextuais, abrem-se dependendo do contexto. Se não quiser este comportamento desmarque em Exibir > Barras de ferramentas." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Criar um documento mestre a partir do documento do Writer ? Arquivo > Enviar > Criar documento mestre (os subdocumentos são criados a partir da estrutura de tópicos)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Deseja centralizar células do Calc numa página impressa? Formatar > Página, aba Página > Definições de leiaute > Alinhamento da tabela." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Vincule quadros para permitir que o texto possa fluir entre eles como em programas de desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Crie um gráfico de uma tabela do Writer: clique na tabela e escolha Inserir > Gráfico." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Selecione Ferramentas > Opções > %PRODUCTNAME Writer > Recursos de formatação > Exibir para especificar quais caracteres não imprimíveis são exibidos." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Quer ir para uma página particular pelo seu número? clique no campo mais a esquerda da barra de status ou utilize Editar > Ir para a página ou pressione %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "O %PRODUCTNAME suporta mais de 150 idiomas." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Desmarque Apresentação de slide > Configuração da apresentação de slides > apresentação sempre em primeiro plano se desejar que outro programa mostre sua janela na frente de sua apresentação." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Deseja encontrar palavras em negrito num documento do Writer? Editar > Localizar & substituir > Outras opções > Atributos > Espessura da fonte." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Ordene parágrafos ou linhas de tabela alfabeticamente ou numericamente com Ferramentas > Ordenar." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Para inserir um parágrafo antes (depois) de uma seção, pressione %MOD2+Enter no começo (fim) da seção." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "O %PRODUCTNAME tem um sítio web só de modelos para criar documentos bem apresentados - Confira!" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calcule pagamentos de empréstimos no Calc: PGTO(2%/12;36;2500) taxa de juros 2%/12, 36 meses, empréstimo de 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Não consegue achar o que quer com a função PROCV do Calc? Com ÍNDICE e CORRESP você pode fazer tudo!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Quer mostrar a coluna A que está oculta? Clique numa célula na coluna B, pressione o botão do mouse e mova-o para a esquerda, solte-o. Acione em Formatar > Coluna > Mostrar." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Para mudar o número da página no Writer, abra as propriedades do primeiro parágrafo e na aba Fluxo do texto marque Quebra > Inserir e digite o número." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Execute o %PRODUCTNAME em qualquer navegador via rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Erro estranho no Calc, Err: seguido de número? Esta página explica:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Inclua um parágrafo que não é um título no Sumário ao mudar a Estrutura de tópico e numeração do parágrafo para um nível de tópico." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Além do índice, o %PRODUCTNAME pode criar índices alfabéticos, de ilustrações, de tabelas, de objetos, bibliográfico e índices definidos pelo usuário." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Incapaz de modificar ou excluir um estilo de célula personalizado? Verifique todas as planilhas. Nenhuma deve estar protegida." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Precisa preencher uma série? Selecione o intervalo de células e escolha Planilha > Preencher células > Séries e escolha entre linear, crescente, data ou autopreenchimento." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Quer saber se uma célula é usada em fórmulas de outras células? Ferramentas > Detetive > Rastrear dependentes (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "No campo Substituir das opções da autocorreção você pode utilizar caracteres coringa .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Quer duplicar a linha de cima? Pressione %MOD1 + D ou utilize Planilha > Preencher células > Preencher para baixo." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Para pesquisar em várias planilhas, selecione-as antes de iniciar a pesquisa." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Arraste e solte células do Calc num slide no modo normal para criar uma tabela. Ao soltar no modo Estrutura de tópicos, cada célula cria uma linha de tópico." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "O %PRODUCTNAME pode impedir de inserir dois ou mais espaços consecutivos no Writer. Marque Ferramentas > Opções da autocorreção > Opções > ignorar espaços duplos." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Deseja que o cursor vá para a célula à direita após inserir um valor no Calc? Utilize a tecla Tab em vez de Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Para exibir a barra de rolagem à esquerda, ative Ferramentas > Opções > Configurações de idiomas > Idiomas > CTL e marque Planilha > Da direita para esquerda." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Arraste um objeto formatado para a janela Estilos. Uma caixa de diálogo abre para digitar um nome para o novo estilo." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Novas versões do %PRODUCTNAME fornecem novos recursos, correções de bugs e patches de segurança. Mantenha seu software atualizado!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Quer desenvolver um novo filtro XML e seu XLST?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Pressione Shift+F1 para ver as dicas estendidas nas caixas de diálogo, quando a opção \"Dicas estendidas\" não estiver ativada em Ferramentas > Opções > %PRODUCTNAME > Geral" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Ajuda do %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Mais informação" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Execute esta ação agora..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Dica do dia: %CURRENT de %TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -10071,7 +10065,7 @@ #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:133 msgctxt "hangulhanjaoptdialog|extended_tip|new" msgid "Opens the New dictionary dialog box, where you can create a new dictionary." -msgstr "Abre a caixa de diálogo Novo dicionário, para criar um novo dicionário." +msgstr "Abre a caixa de diálogo Novo dicionário, para criar um dicionário." #. UbGjT #: cui/uiconfig/ui/hangulhanjaoptdialog.ui:145 diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/pt-BR/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-10-29 14:36+0000\n" +"PO-Revision-Date: 2021-03-28 22:37+0000\n" "Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562246096.000000\n" #. BiN6g @@ -3273,7 +3273,7 @@ #: dbaccess/uiconfig/ui/finalpagewizard.ui:160 msgctxt "finalpagewizard|finishText" msgid "Click 'Finish' to save the database." -msgstr "Para salvar o banco de dados, clique em 'Concluir'." +msgstr "Para salvar o banco de dados, clique em 'Finalizar'." #. eUk5Q #: dbaccess/uiconfig/ui/generalpagedialog.ui:18 @@ -3309,7 +3309,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:35 msgctxt "generalpagewizard|helpText" msgid "Use the Database Wizard to create a new database, open an existing database file, or connect to a database stored on a server." -msgstr "Utilize o Assistente de banco de dados para criar um novo banco de dados, para abrir um arquivo de banco de dados existente ou para conectar-se a um banco de dados armazenado em um servidor." +msgstr "Utilize o Assistente de banco de dados para criar um banco de dados, para abrir um arquivo de banco de dados existente ou para conectar-se a um banco de dados armazenado em um servidor." #. KxZny #: dbaccess/uiconfig/ui/generalpagewizard.ui:50 @@ -3321,7 +3321,7 @@ #: dbaccess/uiconfig/ui/generalpagewizard.ui:61 msgctxt "generalpagewizard|createDatabase" msgid "Create a n_ew database" -msgstr "Criar um novo banco d_e dados" +msgstr "Criar um banco d_e dados" #. BRSfR #: dbaccess/uiconfig/ui/generalpagewizard.ui:86 diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/pt-BR/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -3137,7 +3137,7 @@ #: extensions/uiconfig/sabpilot/ui/datasourcepage.ui:240 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 "Especifica um local para o arquivo de catálogo de endereços e um nome com o qual a fonte de dados será listada no explorer da fonte de dados." +msgstr "Especifica um local para o arquivo de catálogo de endereços e um nome com o qual a fonte de dados será listada no explorador da fonte de dados." #. CWNrs #: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18 diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/scalc/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-11-20 15:33+0100\n" -"PO-Revision-Date: 2021-02-13 13:36+0000\n" +"PO-Revision-Date: 2021-04-14 19:37+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1559657369.000000\n" #. sZfWF @@ -54617,7 +54617,7 @@ "tit\n" "help.text" msgid "AGGREGATE function" -msgstr "Função AGREGAR" +msgstr "AGREGAR" #. X65dG #: func_aggregate.xhp @@ -62375,7 +62375,7 @@ "tit\n" "help.text" msgid "SUMIFS function" -msgstr "Função SOMASES" +msgstr "SOMASES" #. jDeBL #: func_sumifs.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-03-19 14:35+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1559388658.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "Versaletes - altera os caracteres selecionados em minúsculas para caracteres em maiúsculas e, em seguida, reduz seus tamanhos." -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "fontes intermitentesfontes piscantes" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Piscante" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Torna os caracteres selecionados intermitentes. Não é possível alterar a frequência da intermitência." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-22 18:36+0000\n" -"Last-Translator: Olivier Hallot \n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" +"Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" @@ -7169,7 +7169,7 @@ "par_id241581666070616\n" "help.text" msgid "Specifies that bookmark indicators are shown. | indicates the position of a point bookmark. [ ] indicates the start and end of a bookmark on a text range." -msgstr "Especifica que as marca-páginas devem ser mostradas. | indica a posição de uma marca-página pontual.[] indica o começo e fim de uma marca-página de um trecho." +msgstr "Especifica que os marca-páginas devem ser mostrados. | indica a posição de um marca-página pontual.[] indica o começo e fim de um marca-página de um trecho." #. PoJmB #: 01040600.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/shared.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/shared.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 14:18+0100\n" -"PO-Revision-Date: 2020-10-28 19:35+0000\n" +"PO-Revision-Date: 2021-04-25 11:37+0000\n" "Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1546950112.000000\n" #. DBz3U @@ -2309,7 +2309,7 @@ "par_id3152372\n" "help.text" msgid "Cycles the case of the selected characters between Title Case, Sentence case, UPPERCASE and lowercase." -msgstr "Alterna circularmente a caixa dos caracteres selecionados entre Palavras inciando com maiúsculas, Frase iniciando com maiúscula, MAIÚSCULAS e minúsculas." +msgstr "Alterna circularmente a caixa dos caracteres selecionados entre Palavras iniciando com maiúsculas, Frase iniciando com maiúscula, MAIÚSCULAS e minúsculas." #. v24QT #: submenu_text.xhp @@ -2318,7 +2318,7 @@ "hd_id3147572\n" "help.text" msgid "Sentence case" -msgstr "Frase inciando com maiúscula" +msgstr "Frase iniciando com maiúscula" #. v3Cr9 #: submenu_text.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/00.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:43+0100\n" -"PO-Revision-Date: 2020-11-18 18:35+0000\n" -"Last-Translator: Olivier Hallot \n" -"Language-Team: Portuguese (Brazil) \n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" +"Last-Translator: André Marcelo Alvarenga \n" +"Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1558050152.000000\n" #. E9tti @@ -932,7 +932,7 @@ "par_id3150587\n" "help.text" msgid "Choose Insert - Bookmark" -msgstr "Escolha Inserir - Indicador" +msgstr "Escolha Inserir - Marca-página" #. 2Eb4B #: 00000404.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-02-07 10:36+0000\n" -"Last-Translator: Olivier Hallot \n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" +"Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1558060039.000000\n" #. sZfWF @@ -5333,7 +5333,7 @@ "bm_id4974211\n" "help.text" msgid "bookmarks;inserting" -msgstr "indicadores;inserir" +msgstr "marca-páginas;inserir" #. g6MXd #: 04040000.xhp @@ -5369,7 +5369,7 @@ "par_id3151308\n" "help.text" msgid "You can also right-click the Page Number field at the left end of the Status Bar at the bottom of the document window, and then choose the bookmark that you want to jump to." -msgstr "Você também pode clicar com o botão direito do mouse no campo Número de página no canto esquerdo da barra de status, na parte inferior da janela do documento. Em seguida, escolha o indicador para o qual deseja ir." +msgstr "Você também pode clicar com o botão direito do mouse no campo Número de página no canto esquerdo da barra de status, na parte inferior da janela do documento. Em seguida, escolha o marca-página para o qual deseja ir." #. KdpJp #: 04040000.xhp @@ -5396,7 +5396,7 @@ "par_id3149483\n" "help.text" msgid "You cannot use the following characters in a bookmark name: / \\ @ : * ? \" ; , . #" -msgstr "Não é possível utilizar os seguintes caracteres no nome de um indicador: / \\ @ : * ? \" ; , . #" +msgstr "Não é possível utilizar os seguintes caracteres no nome de um marca-página: / \\ @ : * ? \" ; , . #" #. GZrtc #: 04040000.xhp @@ -5405,7 +5405,7 @@ "hd_id3154188\n" "help.text" msgid "Bookmarks" -msgstr "Indicadores" +msgstr "Marca-páginas" #. MjEEc #: 04040000.xhp @@ -7268,7 +7268,7 @@ "par_id306711\n" "help.text" msgid "Bookmarks" -msgstr "Indicadores" +msgstr "Marca-páginas" #. J5zLW #: 04090002.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter.po libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/helpcontent2/source/text/swriter.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "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-11-20 15:34+0100\n" -"PO-Revision-Date: 2021-02-07 10:36+0000\n" -"Last-Translator: Olivier Hallot \n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" +"Last-Translator: André Marcelo Alvarenga \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1546880458.000000\n" #. P7iNX @@ -1004,7 +1004,7 @@ "hd_id3147281\n" "help.text" msgid "Bookmark" -msgstr "Indicador" +msgstr "Marca-página" #. Bed3E #: main0104.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-17 10:36+0000\n" +"PO-Revision-Date: 2021-03-31 15:37+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -6804,7 +6804,7 @@ "UIName\n" "value.text" msgid "Explorer" -msgstr "Explorer" +msgstr "Explorador" #. cdEBm #: DbBrowserWindowState.xcu @@ -24906,7 +24906,7 @@ "Label\n" "value.text" msgid "Explorer On/Off" -msgstr "Ativar/Desativar Explorer" +msgstr "Ativar/Desativar Explorador" #. 6d5bv #: GenericCommands.xcu @@ -27066,7 +27066,7 @@ "UIName\n" "value.text" msgid "Outline" -msgstr "Contorno" +msgstr "Estrutura de tópicos" #. tBpp5 #: ImpressWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/svx/messages.po libreoffice-7.1.3~rc2/translations/source/pt-BR/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"PO-Revision-Date: 2021-03-28 22:37+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -18128,13 +18128,13 @@ #: svx/uiconfig/ui/querynewcontourdialog.ui:7 msgctxt "querynewcontourdialog|QueryNewContourDialog" msgid "Create a new contour?" -msgstr "Criar um novo contorno?" +msgstr "Criar um contorno?" #. EpgVt #: svx/uiconfig/ui/querynewcontourdialog.ui:14 msgctxt "querynewcontourdialog|QueryNewContourDialog" msgid "Do you want to create a new contour?" -msgstr "Deseja criar um novo contorno?" +msgstr "Deseja criar um contorno?" #. dnsvz #: svx/uiconfig/ui/querysavecontchangesdialog.ui:7 diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/sw/messages.po libreoffice-7.1.3~rc2/translations/source/pt-BR/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"PO-Revision-Date: 2021-03-28 22:37+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562678677.000000\n" #. v3oJv @@ -10784,7 +10784,7 @@ #: sw/uiconfig/swriter/ui/bibliographyentry.ui:42 msgctxt "bibliographyentry|extended_tip|new" msgid "Opens the Define Bibliography Entry dialog, where you can create a new bibliography record. This record is only stored in the document. To add a record to the bibliography database, choose Tools - Bibliography Database." -msgstr "Abre a caixa de diálogo Definir entrada bibliográfica, para poder criar um novo registro bibliográfico. Esse registro é armazenado somente no documento. Para adicionar um registro ao banco de dados bibliográfico, escolha Ferramentas - Banco de dados bibliográfico." +msgstr "Abre a caixa de diálogo Definir entrada bibliográfica, para poder criar um registro bibliográfico. Esse registro é armazenado somente no documento. Para adicionar um registro ao banco de dados bibliográfico, escolha Ferramentas - Banco de dados bibliográfico." #. xHxhn #: sw/uiconfig/swriter/ui/bibliographyentry.ui:61 @@ -16710,7 +16710,7 @@ #: sw/uiconfig/swriter/ui/insertbreak.ui:112 msgctxt "insertbreak|linerb-atkobject" msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph." -msgstr "Encerra a linha atual e move o texto encontrado à direita do cursor na próxima linha, sem criar um novo parágrafo." +msgstr "Encerra a linha atual e move o texto encontrado à direita do cursor na próxima linha, sem criar um parágrafo." #. gqCuB #: sw/uiconfig/swriter/ui/insertbreak.ui:124 diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.1.3~rc2/translations/source/pt-BR/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2021-04-28 16:17:44.000000000 +0000 @@ -2,19 +2,21 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: 2011-04-05 11:17+0200\n" -"Last-Translator: Olivier \n" -"Language-Team: LANGUAGE \n" -"Language: pt_BR\n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-03-28 22:36+0000\n" +"Last-Translator: Olivier Hallot \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt-BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Weblate 4.4.2\n" +"X-POOTLE-MTIME: 1369349228.000000\n" +#. sc9Hg #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -24,6 +26,7 @@ msgid "The operation 'Send to MediaWiki' could not be completed successfully." msgstr "Não foi possível completar com sucesso a operação 'Enviar ao MediaWiki'." +#. UGGhv #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -33,6 +36,7 @@ msgid "The MediaWiki export filter cannot be found. Choose 'Tools-XML Filter Settings' to install the filter, or use the setup to install the component." msgstr "Não foi possível encontrar o filtro de exportação para o MediaWiki. Selecione 'Ferramentas - Filtros XML' para instalar o filtro, ou utilize o setup para instalar o componente." +#. iB82N #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -42,6 +46,7 @@ msgid "A connection to the MediaWiki system at '$ARG1' could not be created." msgstr "Não foi possível criar uma conexão ao sistema MediaWiki em '$ARG1'." +#. Z4jaW #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -51,6 +56,7 @@ msgid "User name or password is incorrect. Please try again, or leave the fields blank for an anonymous connection." msgstr "O nome de usuário ou a senha estão incorretos. Tente novamente, ou deixe os campos em branco para uma conexão anônima." +#. bDNGk #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -60,6 +66,7 @@ msgid "A connection could not be created because the URL is invalid." msgstr "Não foi possível criar uma conexão por que o URL é invalido." +#. rgyi4 #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -69,6 +76,7 @@ msgid "Specify a MediaWiki server by providing a URL." msgstr "Especifique um servidor MediaWiki fornecendo um URL." +#. EUk3J #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -78,6 +86,7 @@ msgid "The transfer has been interrupted. Please check the integrity of the wiki article." msgstr "A transferência foi interrompida. Verifique a integridade do artigo wiki." +#. kAkE2 #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -87,6 +96,7 @@ msgid "U~RL" msgstr "U~RL" +#. Nisvz #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -96,6 +106,7 @@ msgid "~Username" msgstr "Nome de ~usuário" +#. rRpmN #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -105,6 +116,7 @@ msgid "~Password" msgstr "~Senha" +#. J2PDr #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -114,6 +126,7 @@ msgid "Send to MediaWiki" msgstr "Enviar ao MediaWiki" +#. 84fuf #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -123,6 +136,7 @@ msgid "Wiki article" msgstr "Artigo wiki" +#. EZQn5 #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -132,6 +146,7 @@ msgid "No" msgstr "Não" +#. Ck54C #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -141,6 +156,7 @@ msgid "OK" msgstr "OK" +#. GXHo2 #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -150,6 +166,7 @@ msgid "Yes" msgstr "Sim" +#. iqReE #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -159,6 +176,7 @@ msgid "~Add..." msgstr "~Adicionar..." +#. pAx7t #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -168,6 +186,7 @@ msgid "~Edit..." msgstr "~Editar..." +#. UC2XF #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -177,6 +196,7 @@ msgid "~Send" msgstr "~Enviar" +#. j2hBK #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -186,6 +206,7 @@ msgid "~Remove" msgstr "~Remover" +#. BGuwk #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -193,8 +214,9 @@ "Dlg_NewWikiPage_Label1\n" "value.text" msgid "A wiki article with the title '$ARG1' does not exist yet. Do you want to create a new article with that name?" -msgstr "Não existe ainda um artigo wiki com o título '$ARG1'. Deseja criar um novo artigo com esse nome?" +msgstr "Não existe ainda um artigo wiki com o título '$ARG1'. Deseja criar um artigo com esse nome?" +#. PiBrD #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -204,6 +226,7 @@ msgid "Media~Wiki Server" msgstr "Servidor Media~Wiki" +#. GiPyL #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -213,6 +236,7 @@ msgid "~Title" msgstr "~Título" +#. DM8RZ #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -222,6 +246,7 @@ msgid "S~ummary" msgstr "S~umário" +#. yDFJs #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -231,6 +256,7 @@ msgid "This is a ~minor edit" msgstr "Esta é uma edição ~menor" +#. UuPKB #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -240,6 +266,7 @@ msgid "Show in web ~browser" msgstr "Mostrar no navegador we~b" +#. NB2ot #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -249,6 +276,7 @@ msgid "The certificate of the selected site is unknown." msgstr "O certificado do site selecionado é desconhecido." +#. FFtew #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -258,6 +286,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. rcSqA #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -267,6 +296,7 @@ msgid "Account" msgstr "Conta" +#. LRJUJ #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -276,6 +306,7 @@ msgid "MediaWiki Server" msgstr "Servidor MediaWiki" +#. xzqU7 #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -285,6 +316,7 @@ msgid "~Save password" msgstr "~Salvar a senha" +#. CmQ7N #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" @@ -294,6 +326,7 @@ msgid "Wiki Publisher" msgstr "Wiki Publisher" +#. CpbZt #: WikiExtension.xcu msgctxt "" "WikiExtension.xcu\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/pt-BR/wizards/messages.po libreoffice-7.1.3~rc2/translations/source/pt-BR/wizards/messages.po --- libreoffice-7.1.2~rc2/translations/source/pt-BR/wizards/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/pt-BR/wizards/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-09 04:36+0000\n" +"PO-Revision-Date: 2021-03-28 22:36+0000\n" "Last-Translator: Olivier Hallot \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt-BR\n" @@ -758,7 +758,7 @@ #: wizards/com/sun/star/wizards/common/strings.hrc:164 msgctxt "RID_FAXWIZARDDIALOG_START_24" msgid "To create another new fax out of the template, go to the location where you saved the template and double-click the file." -msgstr "Para criar um novo fax a partir do modelo, vá até o local em que salvou o modelo e clique duas vezes no arquivo." +msgstr "Para criar um fax a partir do modelo, vá até o local em que salvou o modelo e clique duas vezes no arquivo." #. keXXU #: wizards/com/sun/star/wizards/common/strings.hrc:165 diff -Nru libreoffice-7.1.2~rc2/translations/source/ro/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ro/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ro/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ro/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2019-11-05 12:31+0000\n" "Last-Translator: Dorian Baciu \n" "Language-Team: Romanian \n" @@ -2455,1071 +2455,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ro/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ro/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ro/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ro/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:08+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ru/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ru/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ru/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ru/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2021-03-17 10:37+0000\n" "Last-Translator: bormant \n" "Language-Team: Russian \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1563375554.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME поддерживает четыре уровня безопасности макросов (от низкого до очень высокого) и доверенные источники." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 намеревается подать заявку, как организация, на Google Summer of Code (GSoC), смотрите:" - -#. SNTbc -#: 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 "Вы знаете, что можно добавлять комментарии в текст? Используйте сочетание клавиш %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Нужно переместить один или более абзацев? Не нужно вырезать / вставлять: используйте сочетание клавиш %MOD1+%MOD2+Стрелка (Вверх/Вниз)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Измените основные шрифты для предопределённого шаблона или текущего документа, используя диалог Сервис ▸ Параметры ▸ %PRODUCTNAME Writer ▸ Осн.шрифты (западные)." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Хотите найти слова, более чем из 10 символов? Правка ▸ Найти и заменить, в поле «Найти» введите [a-zа-я]{10,}. Убедитесь, что опция «Регулярные выражения» включена." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Чтобы открыть файл CSV как новый лист в текущей таблице, используйте меню Лист ▸ Вставить лист из файла." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Набирая текст жирным шрифтом, курсивом или с подчеркиванием в Writer, вы можете продолжить набор простым текстом, используя сочетание клавиш %MOD1+Shift+X (удаляет прямое форматирование символов)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Используй сочетание клавиш %MOD1+%MOD2+Shift+V, чтобы вставить содержимое буфера обмена как неформатированный текст." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Настройте внешний вид сносок в диалоге Сервис ▸ Сноски…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "Хотите изменить язык проверки орфографии для некоторой части текста? Щёлкните по языку в строке состояния или, что будет лучше, примените стиль." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer может вставить пустую страницу между двумя нечётными (чётными) страницами: отметьте флажком опцию «Печатать автоматически вставленные пустые страницы» на вкладке LibreOffice Writer в диалоге Печать." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Надо задать точное положение? Клавиши %MOD2+стрелка курсора перемещают объекты (фигура, рисунок, формула) на один пиксель." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Справка доступна по клавише F1, если вы установили её. В противном случае она доступна онлайн:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Щелкните правой кнопкой мыши по строке состояния в %PRODUCTNAME Calc и выберите Число выделений в контекстном меню, чтобы отобразить количество выделенных ячеек." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Хотите иметь два или более столбца только на части страницы %PRODUCTNAME Writer? «Вставка ▸ Раздел», настройте нужное на вкладке «Колонки» и поместите текст в разделе." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Используйте диалог «Данные ▸ Статистика» для настройки выборки, корреляции и многого другого в %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Вы можете копировать данные с одного листа на другой, не используя буфер обмена. Выделите диапазон для копирования, удерживая клавишу %MOD1 щёлкните по вкладке нужного листа и выберите пункт меню «Лист ▸ Заполнить ▸ Заполнить листы»." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Вы можете изменить внешний вид %PRODUCTNAME в диалоге «Сервис ▸ Параметры ▸ Вид ▸ Интерфейс пользователя»." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "В %PRODUCTNAME Impress используйте меню «Вставка ▸ Медиа ▸ Фотоальбом» для создания презентации из серии изображений c возможностью настройки." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Вы можете показывать формулы вместо результатов, используя меню «Вид ▸ Показать формулу» (или «Сервис ▸ Параметры ▸ %PRODUCTNAME Calc ▸ Вид ▸ Показать ▸ Формулы»)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME разрабатывается дружелюбным сообществом, состоящим из сотен участников по всему миру. Присоединяйтесь к нам, даже если вы не умеете программировать." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Левша? Выберите «Сервис ▸ Параметры ▸ Настройки языка ▸ Языки ▸ Восточно-азиатские» и выберите «Сервис ▸ Параметры ▸ %PRODUCTNAME Writer ▸ Вид ▸ Линейка ▸ По правому краю», чтобы поместить полосу прокрутки влево." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Хотите, чтобы главы начинались с новой страницы? Измените стиль абзаца Заголовок 1 (или иной Заголовок по необходимости), на вкладке Положение на странице, опция Вставить (разрывы) с типом Страница (перед)." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Значение даты/времени — это число дней от выбранной нулевой даты; в этом числе целая часть представляет дату, а дробная — время (прошедшую часть дня), 0,5 представляет полдень." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Delete удалит всё от курсора до конца текущего предложения." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "Раздражают \"марширующие муравьи\" вокруг скопированных ячеек в Calc? Нажмите Escape, чтобы остановить их, скопированный контент останется доступным для вставки." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Хотите стать представителем %PRODUCTNAME? Есть сертификации для разработчиков, администраторов и людей, проводящих тренинги." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Применяйте разную ориентацию страниц для разных листов в файле электронной таблицы Calc, применяя разные стили страниц к разным листам." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Выберите «По иерархии» на боковой панели «Стили», чтобы увидеть связь между стилями." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Вы можете использовать стили для таблиц Writer. Выберите один из доступных в Боковой панели (F11) или используя меню «Таблица ▸ Стили автоформата»." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Настроить использование клавиши %MOD1 для перехода по гиперссылкам? «Сервис ▸ Параметры ▸ %PRODUCTNAME ▸ Безопасность ▸ Параметры ▸ %MOD1 + щелчок для перехода по гиперссылкам»." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Вы хотите просмотреть расчёт отдельных элементов формулы? Выберите соответствующие элементы и нажмите F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "Хотите показать только самые большие значения в таблице? Выберите пункт меню «Данные ▸ Автофильтр», щёлкните по стрелке в ячейке и выберите в окне автофильтра «Первые 10»." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Чтобы удалить номер страницы из оглавления, щёлкните правой кнопкой мыши по оглавлению и выберите Правка оглавления. На вкладке Элементы удалите номер страницы (#) из строки структуры, нажав клавишу Delete." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "Для быстрого получения формулы Math в Writer, введите формулу на языке разметки, выделите, а затем выберите меню «Вставка ▸ Объект ▸ Формула» для конвертирования текста в объект." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "В %PRODUCTNAME очень легко добавлять новые словари: они доступны, как расширения." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "У %PRODUCTNAME есть портативная версия. Даже без прав администратора на вашем компьютере вы сможете установить %PRODUCTNAME Portable на ваш жёсткий диск." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer позволяет нумеровать сноски по страницам, главам, в целом по документу. Используйте диалог «Сервис > Сноски»." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Ваш документ Writer не открывается на месте, которое вы редактировали в последний раз перед закрытием документа? Заполните информацию о пользователе (Фамилию и Имя) в диалоге «Сервис ▸ Параметры ▸ %PRODUCTNAME ▸ Пользователь»." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Управление цитатами? Используйте сторонние расширения." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Хотите вставить значение в одно и то же место на разных листах? Выделите листы: зажмите клавишу %MOD1 и щёлкните по нужным вкладкам листов перед вводом значения." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Вы можете настроить действие для средней кнопки мыши, выбрав вариант из выпадающего списка «Средняя кнопка мыши» в диалоге «Сервис ▸ Параметры ▸ %PRODUCTNAME ▸ Вид»." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Хотите напечатать две книжные страницы на одной альбомной (уменьшить А4 до А5)? Откройте диалог «Файл ▸ Печать» и выберите 2 для «Страниц на листе»." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Задайте текст, который вы часто используете, как Автотекст. Вы сможете вставить свой текст по имени, сочетанию клавиш или используя панель инструментов в любой документ Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 вычисляет не слева направо, а соблюдает следующий порядок Скобки ▸ Степень ▸ Умножение ▸ Деление ▸ Сложение ▸ Вычитание." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Получите документацию по %PRODUCTNAME и бесплатные руководства пользователя:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Нужно презентовать отчёт, написанный в Writer? Меню Файл > Отправить > Структуру в презентацию автоматически создаст презентацию из структуры заголовков документа." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Хотите управлять представлением гиперссылки в электронной таблице? Вставьте их при помощи функции ГИПЕРССЫЛКА." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Снимите флажок с опции «Синхронизировать листы» в диалоге «Сервис ▸ Параметры ▸ %PRODUCTNAME Calc ▸ Вид ▸ Масштаб», чтобы каждый лист в Calc был со своим собственным масштабом." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Вы можете установить цвет для каждой вкладки листа в Calc: щелкните правой кнопкой мыши вкладку или используйте меню «Лист ▸ Цвет ярлычка»." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Отследите ячейки, используемые в формуле, влияющие (Shift+F9) или зависимые (Shift+F5) (или используйте меню «Сервис ▸ Зависимости»)." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Вставляйте и нумеруйте ваши формулы в один шаг: введите 'fn' и затем нажмите клавишу F3. Этим вы вставите в документ формулу и ее порядковый номер в виде однострочной таблицы без границ." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Используйте ваш Android смартфон или iPhone для удалённого управления вашей презентацией Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Хотите узнать, сколько дней в текущем месяце? Используйте функцию DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Число в ячейке таблицы отображается, как ###? Столбец слишком узкий для отображения числа целиком. Просто сделайте столбец шире." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Включите массивные параллельные вычисления формул в ячейках, используя диалог «Сервис ▸ Параметры ▸ OpenCL»." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Используйте инструмент «Соединительная линия» на панели инструментов «Рисование» в Draw/Impress чтобы создавать красивые блок-схемы." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Ваши пожертвования поддерживают наше сообщество по всему миру." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Хотите добавить X месяцев к дате? Используйте функцию =ДАТАМЕС(Начальная дата; Месяцы)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Чтобы выбрать непрерывный диапазон ячеек, содержащий данные и ограниченный пустой строкой и столбцами, используйте %MOD1 + * (цифровая клавиатура)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Хотите экспортировать формулы в CSV? Меню «Файл ▸ Сохранить как», выберите Тип «Text CSV», отметьте флажком опцию «Правка параметров фильтра» и в следующем диалоге отметьте опцию «Сохранять формулы ячеек»." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Консоль презентации (доступна при наличии двух подключенных дисплеев) - это крутая возможность при работе с %PRODUCTNAME Impress. Вы уже проверили это?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Без труда конвертируйте ваши документы в PDF в один щелчок по значку PDF на панели инструментов." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Хотите выделить большой диапазон ячеек без прокрутки листа? Введите адрес диапазона (например, А1:А1000) в поле Область листа (слева от строки ввода формул) и нажмите Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Хотите узнать корректные параметры командной строки? Запустите в терминале команду soffice с параметром --help или -h или -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Вы можете сменить ориентацию текста в ячейках таблицы с помощью «Таблицы ▸ Свойства… ▸ Положение на странице ▸ Ориентация текста»." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "В %PRODUCTNAME Draw для изменения координат точки 0/0 линеек, перетащите пересечение двух линеек из верхнего левого угла в рабочую область." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Переместить столбец в Calc между двумя другими в один шаг? Щёлкните по заголовку, затем ячейку в столбце, удерживая кнопку мыши и клавишу %MOD2 перетащите столбец." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Автоматически отмечайте записи в алфавитном порядке, используя файл соответствия." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Используйте Формат ▸ Выравнивание (или контекстное меню) для точного позиционирования объектов в Draw / Impress: объект центрируется на странице, если выбран только один объект, или выравнивание работает для группы объектов соответственно." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Не используйте табуляцию для размещения элементов в документе Writer. В зависимости от того, что вы хотите сделать, таблица без границ может быть наилучшим вариантом." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME может автоматически добавить нумерованную подпись при вставке объектов. Смотрите диалог «Сервис ▸ Параметры ▸ %PRODUCTNAME Writer ▸ Автоназвание»." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "С %PRODUCTNAME вы можете использовать ваш аккаунт в Google Mail для рассылки почты. Заполните поля в диалоге «Сервис ▸ Параметры ▸ %PRODUCTNAME Writer ▸ Рассылка электронной почты»." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "Вы хотите начать работать с макросами %PRODUCTNAME на BASIC? Посмотрите примеры в разделе «Сервис ▸ Макросы ▸ Редактировать макросы»." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Применяйте стили типа Заголовок в Writer, используя сочетания клавиш: %MOD1+1 применит стиль Заголовок 1, %MOD1+2 применит стиль Заголовок 2 и так далее." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Не теряйтесь в больших документах. Используйте Навигатор (F5), чтобы видеть всё содержимое." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Диалог «Правка ▸ Найти и Заменить» даст вам вставить специальный символ непосредственно в поле: щёлкните по полю правой кнопкой мыши или нажмите сочетание клавиш Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "Хотите видеть объект в Draw, но не хотите его печатать? Нарисуйте его на слое, у которого в его настройках не установлен признак «Для печати»." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Чтобы вставить текущую дату в ваш документ, используйте «Вставка ▸ Поле ▸ Дата»." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Много изображений в документе? Ускорьте работу, отключив «Вид ▸ Изображения и диаграммы»." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "Переименовывайте ваши слайды в Impress для упрощения навигации по слайдам." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Диалоговое окно Нумерация глав позволяет настроить отображение текста перед номером главы. Например, введите «Глава» в поле Перед: для отображения «Глава 1»" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Транспонировать таблицу Writer? Скопируйте и вставьте её в Calc. Транспонируйте таблицу в Calc, используя диалог Вставить как... Транспонированную таблицу скопируйте и вставьте обратно в Writer, используя диалог «Вставить как ▸ Форматированный текст (RTF)»." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Вы можете подписывать существующие файлы PDF и проверять их подписи." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Вы часто создаете документ на основе другого документа? Вы рассматривали возможность использования шаблона?" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Используйте диалог «Формат ▸ Условное форматирование ▸ Управление» в Calc для поиска ячеек с условным форматированием." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "Хотите одинаковую разметку для отображения на экране и для печати? Проверьте опцию «Сервис ▸ Параметры ▸ %PRODUCTNAME Calc ▸ Общие ▸ Применять настройки принтера для форматирования текста»." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer помогает вам делать резервные копии: используя меню «Файл ▸ Сохранить копию» вы создадите новый документ, продолжив работать с оригиналом." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "При создании стиля на основе другого стиля можно ввести процентное значение или значение в пунктах (например, 110% или -2 пт или +5 пт)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "Конвертируйте все документы MS Office в формат OpenDocument, используя конвертер из меню «Файл ▸ Мастер ▸ Конвертер документов»." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Нужно переместить таблицу Writer? Используйте меню «Таблица ▸ Выделить ▸ Таблицу» и затем «Вставка ▸ Врезка ▸ Врезка...» и перемещайте, куда нужно." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "Проблемы со вставкой текста из PDF файла или веб-страницы в документ? Попробуйте вставить как не форматированный текст (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "В Calc используйте функцию УРЕЗСРЕДНЕЕ() для получения среднего значения набора данных, исключая самые высокие и самые низкие значения." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "4-й, необязательный параметр функции ВПР в Calc показывает отсортирован ли первый столбец данных. Если нет, введите ЛОЖЬ или ноль." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "Создать составной документ из текущего документа Writer? «Файл ▸ Отправить ▸ Создать составной документ» (суб-документы будут созданы на основании структуры текущего документа)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Хотите центрировать ячейки на напечатанной странице в Calc? «Формат ▸ Страница ▸ вкладка Страница ▸ опции Выравнивание»." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Создавайте диаграммы, основанные на таблицах Writer, щёлкнув мышью внутри таблицы и выбрав пункт меню «Вставка ▸ Диаграмма»." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Чтобы определить, какие непечатаемые символы показывать, отметьте флажками опции в разделе Показать форматирование в диалоге «Сервис ▸ Параметры ▸ %PRODUCTNAME Writer ▸ Знаки форматирования»." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Хотите перейти на конкретную страницу по её номеру? Щёлкните по записи в левой части строки состояния или используйте меню «Правка ▸ Перейти к странице» или нажмите %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME поддерживает более 150 языков." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "Хотите найти в документе Writer слова, выделенные жирным? «Правка ▸ Найти и заменить ▸ Другие параметры ▸ Атрибуты ▸ Полужирный»." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Вы можете сортировать абзацы или таблицы по алфавиту, используя меню «Сервис ▸ Сортировать»." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Для вставки абзаца перед (после) раздела, нажмите %MOD2+Enter в начале (конце) раздела." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "В %PRODUCTNAME есть центр управления шаблонами для создания прекрасно выглядящих документов, проверьте его прямо сейчас!" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Рассчитайте погашение кредита с Calc: например, формула ПЛТ(2%/12;36;2500), где 2%/12 - это процентная ставка в год, 36 - количество выплат, 2500 - сумма займа, даст ежемесячный размер выплаты." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Не можете найти желаемое функцией Calc ВПР? При помощи функций ИНДЕКС и ПОИСКПОЗ возможно всё!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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 "Чтобы изменить номер страницы в Writer, перейдите в свойства первого абзаца, на вкладке «Положение на странице» выберите «Разрывы ▸ Вставить» и введите номер." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Запустите %PRODUCTNAME в любом браузере через rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Странный код ошибки в Calc, типа Err: с номером? Эта страница даст пояснения:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Помимо оглавления, %PRODUCTNAME может создавать алфавитные указатели, списки иллюстраций, таблиц, объектов и библиографию, заданные пользователем." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Невозможно изменить или удалить пользовательский стиль ячейки? Проверьте все листы, ни один не должен быть защищён." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Хотите знать, упоминается ли ячейка в формулах других ячеек? «Сервис ▸ Зависимости ▸ Зависимые ячейки» (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Хотите продублировать строку над курсором? Нажмите Ctrl+D или используйте меню «Лист ▸ Заполнить ▸ Заполнить вниз»." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Вы будете искать на нескольких листах, если вы выберите их, прежде чем начать поиск." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Перетаскивание ячеек из Calc на слайд презентации Impress в режиме Обычный - создаст таблицу, в режиме Структура - каждая ячейка создаст строку в структуре." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME поможет вам не вводить два или более пробелов подряд в Writer. Установите флажок в диалоге «Сервис ▸ Автозамена ▸ Параметры автозамены ▸ Параметры ▸ Пропускать двойные пробелы»." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Хотите, чтобы курсор в Calc перемещался вправо от ячейки после ввода значения? Используйте клавишу Tab вместо Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Новые версии %PRODUCTNAME содержат новые функции, исправления ошибок и уязвимостей. Используйте актуальную версию!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Разработка новых фильтров XSLT и xml?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Справка %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Больше информации" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Выполнить это действие..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Совет дня: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/ru/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ru/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ru/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ru/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: 01\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-03-13 11:33+0000\n" "Last-Translator: kompilainenn <79045_79045@mail.ru>\n" "Language-Team: Russian \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "мигающие шрифты мерцающие шрифты" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Мигание" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/rw/cui/messages.po libreoffice-7.1.3~rc2/translations/source/rw/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/rw/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/rw/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2479,1071 +2479,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sah/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sah/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sah/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sah/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:44+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2432,1071 +2432,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sa-IN/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sa-IN/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sa-IN/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sa-IN/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Sanskrit \n" @@ -2497,1071 +2497,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sat/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sat/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sat/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sat/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2498,1071 +2498,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sd/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sd/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sd/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sd/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2475,1071 +2475,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/si/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/si/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/si/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/si/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2018-10-21 19:49+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2021-04-01 17:37+0000\n" +"Last-Translator: helabasa \n" +"Language-Team: Sinhala \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1540151388.000000\n" #. NCRDD @@ -110,13 +110,13 @@ #: chart2/inc/strings.hrc:35 msgctxt "STR_PAGE_FONT" msgid "Font" -msgstr "ෆොන්ට" +msgstr "මුද්‍රණාක්ෂරය" #. ByYYG #: chart2/inc/strings.hrc:36 msgctxt "STR_PAGE_FONT_EFFECTS" msgid "Font Effects" -msgstr "ෆොන්ට ප්‍රයෝග" +msgstr "මුද්‍රණාක්ෂර ප්‍රයෝග" #. YydEQ #: chart2/inc/strings.hrc:37 @@ -824,7 +824,7 @@ #: chart2/inc/strings.hrc:154 msgctxt "STR_REGRESSION_POLYNOMIAL" msgid "Polynomial" -msgstr "" +msgstr "බහුපද" #. FWi4g #: chart2/inc/strings.hrc:155 @@ -878,7 +878,7 @@ #: chart2/inc/strings.hrc:164 msgctxt "STR_DONUT" msgid "Donut" -msgstr "Donut" +msgstr "ඩෝනට්" #. 7HjEG #: chart2/inc/strings.hrc:165 @@ -914,7 +914,7 @@ #: chart2/inc/strings.hrc:170 msgctxt "STR_LINES_3D" msgid "3D Lines" -msgstr "3D රේඛා" +msgstr "ත්‍රිමාණ රේඛා" #. ABjEg #: chart2/inc/strings.hrc:171 @@ -1332,17 +1332,15 @@ #. d6M3S #: chart2/uiconfig/ui/dlg_DataLabel.ui:278 -#, fuzzy msgctxt "dlg_DataLabel|liststoreSEPARATOR" msgid "Comma" -msgstr "කොමාව (_C)" +msgstr "අල්පවිරාමය (_C)" #. HUBkD #: chart2/uiconfig/ui/dlg_DataLabel.ui:279 -#, fuzzy msgctxt "dlg_DataLabel|liststoreSEPARATOR" msgid "Semicolon" -msgstr "තිත් කොමාව (_e)" +msgstr "තිත් අල්පවිරාමය (_e)" #. 3CaCX #: chart2/uiconfig/ui/dlg_DataLabel.ui:280 @@ -1568,7 +1566,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171 msgctxt "dlg_InsertErrorBars|RB_PERCENT" msgid "_Percentage" -msgstr "" +msgstr "ප්‍රතිශතය (_P)" #. bGDm2 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:181 @@ -1674,7 +1672,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:411 msgctxt "dlg_InsertErrorBars|label2" msgid "Error Indicator" -msgstr "" +msgstr "දෝෂ දර්ශකය" #. WWuZ8 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:459 @@ -1696,10 +1694,9 @@ #. 5FfdH #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:512 -#, fuzzy msgctxt "dlg_InsertErrorBars|IB_RANGE_POSITIVE|tooltip_text" msgid "Select data range" -msgstr "දත්ත සමුදාය තෝරන්න" +msgstr "දත්ත පරාසය තෝරන්න" #. JYk3c #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:516 @@ -1727,10 +1724,9 @@ #. jsckc #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:595 -#, fuzzy msgctxt "dlg_InsertErrorBars|IB_RANGE_NEGATIVE|tooltip_text" msgid "Select data range" -msgstr "දත්ත සමුදාය තෝරන්න" +msgstr "දත්ත පරාසය තෝරන්න" #. mEwUr #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:599 @@ -1795,10 +1791,9 @@ #. EdZ7j #: chart2/uiconfig/ui/dlg_InsertLegend.ui:145 -#, fuzzy msgctxt "dlg_InsertLegend|right" msgid "_Right" -msgstr "දකුණ" +msgstr "දකුණ (_R)" #. PoZ9R #: chart2/uiconfig/ui/dlg_InsertLegend.ui:161 @@ -1809,10 +1804,9 @@ #. Uvcht #: chart2/uiconfig/ui/dlg_InsertLegend.ui:177 -#, fuzzy msgctxt "dlg_InsertLegend|bottom" msgid "_Bottom" -msgstr "පහළ" +msgstr "පහළ (_B)" #. bxdb5 #: chart2/uiconfig/ui/dlg_InsertLegend.ui:206 @@ -2425,7 +2419,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:75 msgctxt "sidebarerrorbar|comboboxtext_type" msgid "Percentage" -msgstr "" +msgstr "ප්‍රතිශතය" #. Ap367 #: chart2/uiconfig/ui/sidebarerrorbar.ui:76 @@ -2475,13 +2469,13 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:117 msgctxt "sidebarerrorbar|spinbutton_pos" msgid "0.00" -msgstr "" +msgstr "0.00" #. e3GvR #: chart2/uiconfig/ui/sidebarerrorbar.ui:132 msgctxt "sidebarerrorbar|spinbutton_neg" msgid "0.00" -msgstr "" +msgstr "0.00" #. 34Vax #: chart2/uiconfig/ui/sidebarerrorbar.ui:153 @@ -2507,7 +2501,7 @@ #: chart2/uiconfig/ui/sidebarerrorbar.ui:213 msgctxt "sidebarerrorbar|label5" msgid "Indicator" -msgstr "" +msgstr "දර්ශකය" #. qJBsd #: chart2/uiconfig/ui/sidebarseries.ui:45 @@ -2620,7 +2614,7 @@ #: chart2/uiconfig/ui/sidebartype.ui:105 msgctxt "sidebartype|3dscheme" msgid "Simple" -msgstr "" +msgstr "සරල" #. urfc7 #: chart2/uiconfig/ui/sidebartype.ui:106 @@ -2674,7 +2668,7 @@ #: chart2/uiconfig/ui/sidebartype.ui:291 msgctxt "sidebartype|linetype" msgid "Smooth" -msgstr "" +msgstr "සුමට" #. qLn3k #: chart2/uiconfig/ui/sidebartype.ui:292 @@ -2732,10 +2726,9 @@ #. eecxc #: chart2/uiconfig/ui/smoothlinesdlg.ui:171 -#, fuzzy msgctxt "smoothlinesdlg|ResolutionLabel" msgid "_Resolution:" -msgstr "විභේදනය (~l)" +msgstr "විභේදනය (_R)" #. AdG5v #: chart2/uiconfig/ui/smoothlinesdlg.ui:185 @@ -3190,7 +3183,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:64 msgctxt "tp_AxisPositions|LB_CROSSES_OTHER_AXIS_AT" msgid "Start" -msgstr "ආරම්භ කරන්න" +msgstr "අරඹන්න" #. u6i7J #: chart2/uiconfig/ui/tp_AxisPositions.ui:65 @@ -3315,16 +3308,15 @@ #. Hkjze #: chart2/uiconfig/ui/tp_AxisPositions.ui:363 -#, fuzzy msgctxt "tp_AxisPositions|TXT_FL_LABELS" msgid "Labels" -msgstr "ලේබලය" +msgstr "නම් පත්" #. YBk4g #: chart2/uiconfig/ui/tp_AxisPositions.ui:406 msgctxt "tp_AxisPositions|FT_MAJOR" msgid "Major:" -msgstr "" +msgstr "ප්‍රධාන:" #. G8MEU #: chart2/uiconfig/ui/tp_AxisPositions.ui:422 @@ -3466,10 +3458,9 @@ #. FSf6b #: chart2/uiconfig/ui/tp_ChartType.ui:123 -#, fuzzy msgctxt "tp_ChartType|3dlook" msgid "_3D Look" -msgstr "3D පෙනුම" +msgstr "ත්‍රිමාණ පෙනුම" #. EB95g #: chart2/uiconfig/ui/tp_ChartType.ui:134 diff -Nru libreoffice-7.1.2~rc2/translations/source/si/cui/messages.po libreoffice-7.1.3~rc2/translations/source/si/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/si/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/si/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,10 +3,10 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2020-10-31 11:35+0000\n" -"Last-Translator: Christian Lohmaier \n" -"Language-Team: Sinhala \n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-01 17:37+0000\n" +"Last-Translator: helabasa \n" +"Language-Team: Sinhala \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -206,7 +206,7 @@ #: cui/inc/strings.hrc:43 msgctxt "RID_SVXSTR_KEY_CLASSIFICATION_PATH" msgid "Classification" -msgstr "" +msgstr "වර්ගීකරණය" #. FrDws #: cui/inc/strings.hrc:44 @@ -440,19 +440,19 @@ #: cui/inc/strings.hrc:89 msgctxt "RID_SVXSTR_INSERTROW_BEFORE" msgid "Above selection" -msgstr "" +msgstr "ඉහළ තේරීම" #. oBHui #: cui/inc/strings.hrc:90 msgctxt "RID_SVXSTR_INSERTROW_AFTER" msgid "Below selection" -msgstr "" +msgstr "පහළ තේරීම" #. c8nou #: cui/inc/strings.hrc:91 msgctxt "RID_SVXSTR_REMOVE_FAVORITES" msgid "Remove from Favorites" -msgstr "" +msgstr "ප්‍රියතමයන්ගෙන් ඉවත් කරන්න" #. XpjRm #: cui/inc/strings.hrc:92 @@ -464,7 +464,7 @@ #: cui/inc/strings.hrc:93 msgctxt "RID_SVXSTR_ADD_FAVORITES" msgid "Add to Favorites" -msgstr "" +msgstr "ප්‍රියතමයන්ට එකතු කරන්න" #. AvBBC #. PPI is pixel per inch, %1 is a number @@ -502,19 +502,19 @@ #: cui/inc/strings.hrc:101 msgctxt "RID_SVXSTR_EDIT_GRAPHIC" msgid "Link" -msgstr "සබඳින්න" +msgstr "සබැඳිය" #. QCgnw #: cui/inc/strings.hrc:102 msgctxt "RID_SVXSTR_LOADACCELCONFIG" msgid "Load Keyboard Configuration" -msgstr "" +msgstr "යතුරුපුවරු වින්‍යාසය පූරණය කරන්න" #. eWQoY #: cui/inc/strings.hrc:103 msgctxt "RID_SVXSTR_SAVEACCELCONFIG" msgid "Save Keyboard Configuration" -msgstr "" +msgstr "යතුරුපුවරු වින්‍යාසය සුරකින්න" #. ggFZE #: cui/inc/strings.hrc:104 @@ -544,7 +544,7 @@ #: cui/inc/strings.hrc:108 msgctxt "RID_SVXSTR_HANGUL" msgid "Hangul" -msgstr "හගුල්" +msgstr "හන්ගුල්" #. 3t3AC #: cui/inc/strings.hrc:109 @@ -561,34 +561,33 @@ #. XKYHn #: cui/inc/strings.hrc:111 -#, fuzzy msgctxt "RID_SVXSTR_GROUP_STYLES" msgid "Styles" -msgstr "මෝස්තරය" +msgstr "මෝස්තර" #. hFEBv #: cui/inc/strings.hrc:113 msgctxt "RID_SVXSTR_EVENT_STARTAPP" msgid "Start Application" -msgstr "භවිත යෙදවුම ආරම්භ විය" +msgstr "යෙදුම අරඹන්න" #. 6tUvx #: cui/inc/strings.hrc:114 msgctxt "RID_SVXSTR_EVENT_CLOSEAPP" msgid "Close Application" -msgstr "භාවිත යෙදවුම වසාදමන්න" +msgstr "යෙදුම වසන්න" #. 6NsQz #: cui/inc/strings.hrc:115 msgctxt "RID_SVXSTR_EVENT_NEWDOC" msgid "New Document" -msgstr "නව ලිපිය" +msgstr "නව ලේඛනය" #. G6b2e #: cui/inc/strings.hrc:116 msgctxt "RID_SVXSTR_EVENT_CLOSEDOC" msgid "Document closed" -msgstr "ලිපිය වසන ලදි" +msgstr "ලේඛනය වසන ලදි" #. yvsTa #: cui/inc/strings.hrc:117 @@ -654,31 +653,31 @@ #: cui/inc/strings.hrc:127 msgctxt "RID_SVXSTR_EVENT_MAILMERGE" msgid "Printing of form letters started" -msgstr "පෝරම අකුරු මුද්‍රණය ආරම්භ කරන ලදි" +msgstr "ආකෘතිපත්‍රයේ අකුරු මුද්‍රණය ආරම්භ විණි" #. AZ2io #: cui/inc/strings.hrc:128 msgctxt "RID_SVXSTR_EVENT_MAILMERGE_END" msgid "Printing of form letters finished" -msgstr "පෝරම අකුරු මුද්‍රණය කිරීම අවසාන කරන ලදි" +msgstr "ආකෘතිපත්‍රයේ අකුරු මුද්‍රණය කිරීම අවසන් විණි" #. dHtbz #: cui/inc/strings.hrc:129 msgctxt "RID_SVXSTR_EVENT_FIELDMERGE" msgid "Merging of form fields started" -msgstr "පෝරම ක්ෂේත්‍ර ඒකාබද්ධ කිරීම ආරම්ණ කරන ලදි" +msgstr "ආකෘතිපත්‍රයේ ක්ෂේත්‍ර ඒකාබද්ධ කිරීම ඇරඹිණි" #. uGCdD #: cui/inc/strings.hrc:130 msgctxt "RID_SVXSTR_EVENT_FIELDMERGE_FINISHED" msgid "Merging of form fields finished" -msgstr "පෝරම ක්ෂේත්‍ර ඒකාබද්ධ කිරීම අවසාන කරන ලදි" +msgstr "ආකෘතිපත්‍රයේ ක්ෂේත්‍ර ඒකාබද්ධ කිරීම අවසන් විණි" #. srLLa #: cui/inc/strings.hrc:131 msgctxt "RID_SVXSTR_EVENT_PAGECOUNTCHANGE" msgid "Changing the page count" -msgstr "පිටු සංඛ්‍යාව වෙනස් කරමින්" +msgstr "පිටු සංඛ්‍යාව වෙනස් වෙමින්" #. AsuQF #: cui/inc/strings.hrc:132 @@ -894,13 +893,13 @@ #: cui/inc/strings.hrc:167 msgctxt "RID_SVXSTR_EVENT_CREATEDOC" msgid "Document created" -msgstr "ලිපිය තනන ලදි" +msgstr "ලිපිය සාදන ලදි" #. BcPDW #: cui/inc/strings.hrc:168 msgctxt "RID_SVXSTR_EVENT_LOADDOCFINISHED" msgid "Document loading finished" -msgstr "ලිපිය ප්‍රවේශ කිරීම අවසාන කරන ලදි" +msgstr "ලේඛනය පූරණය වීම අවසන් විණි" #. ir7AQ #: cui/inc/strings.hrc:169 @@ -1176,13 +1175,13 @@ #: cui/inc/strings.hrc:219 msgctxt "STR_WAITINGLINK" msgid "Waiting" -msgstr "බලාසිටීම" +msgstr "රැඳෙමින්" #. QJKgF #: cui/inc/strings.hrc:221 msgctxt "RID_SVXSTR_SAVE_SCREENSHOT_AS" msgid "Save Screenshot As..." -msgstr "" +msgstr "ලෙස තිර සේයාව සුරකින්න..." #. CAaFf #. $(ROW) can be a number or the caption of the row in quotes @@ -1199,10 +1198,9 @@ #. RuQiB #: cui/inc/strings.hrc:227 -#, fuzzy msgctxt "RID_SVXSTR_NO" msgid "No" -msgstr "එපා" +msgstr "නැහැ" #. irLeD #: cui/inc/strings.hrc:229 @@ -1213,7 +1211,7 @@ "does not exist." msgstr "" "$file$\n" -"ගොණුව\n" +"ගොනුව\n" "නොපවතී." #. iQYnX @@ -1649,7 +1647,7 @@ #: cui/inc/strings.hrc:315 msgctxt "RID_SVXSTR_ADD" msgid "Add" -msgstr "එක් කරන්න" +msgstr "එකතු කරන්න" #. QgAFH #: cui/inc/strings.hrc:316 @@ -1683,17 +1681,15 @@ #. 6uDkp #: cui/inc/strings.hrc:321 -#, fuzzy msgctxt "RID_SVXSTR_CHARNAME_FONT" msgid "Font:" -msgstr "ෆොන්ට" +msgstr "මුද්‍රණාක්ෂරය:" #. KFXAV #: cui/inc/strings.hrc:322 -#, fuzzy msgctxt "RID_SVXSTR_CHARNAME_STYLE" msgid "Style:" -msgstr "මෝස්තරය" +msgstr "මෝස්තරය:" #. gDu75 #: cui/inc/strings.hrc:323 @@ -1733,14 +1729,13 @@ #: cui/inc/strings.hrc:328 msgctxt "RID_SVXSTR_NO_DBL_SPACES" msgid "Ignore double spaces" -msgstr "" +msgstr "ද්විත්ව හිස්තැන් නොසලකන්න" #. qEA6h #: cui/inc/strings.hrc:329 -#, fuzzy msgctxt "RID_SVXSTR_DETECT_URL" msgid "URL Recognition" -msgstr "URL හඳුනාගැනීම" +msgstr "ඒ.ස.නි. (URL) හඳුනාගැනීම" #. JfySE #: cui/inc/strings.hrc:330 @@ -1978,13 +1973,13 @@ #: cui/inc/strings.hrc:371 msgctxt "RID_SVXSTR_FILTER_ALL" msgid "All files" -msgstr "" +msgstr "සියලුම ගොනු" #. 8bnrf #: cui/inc/strings.hrc:373 msgctxt "RID_SVXSTR_REGISTERED_DATABASES" msgid "Registered Databases" -msgstr "" +msgstr "ලියාපදිංචි දත්ත සමුදායන්" #. xySty #: cui/inc/strings.hrc:375 @@ -1996,7 +1991,7 @@ #: cui/inc/strings.hrc:377 msgctxt "aboutdialog|copyright" msgid "Copyright © 2000–2021 LibreOffice contributors." -msgstr "" +msgstr "ප්‍රකාශන හිමිකම © 2000–2021 ලිබ්රේ ඔෆිස් සහදායකයින්." #. GesDU #: cui/inc/strings.hrc:378 @@ -2014,7 +2009,7 @@ #: cui/inc/strings.hrc:380 msgctxt "aboutdialog|libreoffice" msgid "LibreOffice was based on OpenOffice.org." -msgstr "" +msgstr "ලිබ්රේ ඔෆිස් OpenOffice.org මත පදනම් විය." #. 9aeNR #: cui/inc/strings.hrc:381 @@ -2026,7 +2021,7 @@ #: cui/inc/strings.hrc:382 msgctxt "aboutdialog|uilocale" msgid "UI: $LOCALE" -msgstr "" +msgstr "අ. මුහුණත: $LOCALE" #. 3vXzF #: cui/inc/strings.hrc:384 @@ -2038,13 +2033,13 @@ #: cui/inc/strings.hrc:386 msgctxt "RID_SVXSTR_COMMANDLABEL" msgid "Label" -msgstr "" +msgstr "නම් පත" #. GceL6 #: cui/inc/strings.hrc:387 msgctxt "RID_SVXSTR_COMMANDLABEL" msgid "Command" -msgstr "" +msgstr "විධානය" #. dRqYc #: cui/inc/strings.hrc:388 @@ -2074,31 +2069,31 @@ #: cui/inc/strings.hrc:394 msgctxt "RID_SVXSTR_ADDITIONS_INSTALLBUTTON" msgid "Install" -msgstr "" +msgstr "ස්ථාපනය" #. 2GUFq #: cui/inc/strings.hrc:395 msgctxt "RID_SVXSTR_ADDITIONS_INSTALLEDBUTTON" msgid "Installed" -msgstr "" +msgstr "ස්ථාපිතයි" #. TmK5f #: cui/inc/strings.hrc:396 msgctxt "RID_SVXSTR_ADDITIONS_INSTALLING" msgid "Installing" -msgstr "" +msgstr "ස්ථාපනය වෙමින්" #. izdAK #: cui/inc/strings.hrc:397 msgctxt "RID_SVXSTR_ADDITIONS_SEARCHING" msgid "Searching..." -msgstr "" +msgstr "සොයමින්..." #. HYT6K #: cui/inc/strings.hrc:398 msgctxt "RID_SVXSTR_ADDITIONS_LOADING" msgid "Loading..." -msgstr "" +msgstr "පූරණය වෙමින්..." #. 88Ect #: cui/inc/strings.hrc:399 @@ -2110,7 +2105,7 @@ #: cui/inc/strings.hrc:401 msgctxt "RID_SVXSTR_UI_APPLYALL" msgid "Apply to %MODULE" -msgstr "" +msgstr "%MODULE ට යොදන්න" #. mpS3V #: cui/inc/tipoftheday.hrc:48 @@ -2474,1071 +2469,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" @@ -18707,7 +18696,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:118 msgctxt "qrcodegen|edit_name" msgid "www.libreoffice.org" -msgstr "" +msgstr "https://si.libreoffice.org" #. B4bcB #: cui/uiconfig/ui/qrcodegen.ui:122 @@ -18734,7 +18723,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:172 msgctxt "qrcodegen|label_ecc" msgid "Error Correction:" -msgstr "" +msgstr "දෝෂ නිවැරදි කිරීම:" #. ecSS4 #: cui/uiconfig/ui/qrcodegen.ui:204 @@ -18794,7 +18783,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:332 msgctxt "qrcodegen|QR Code Properties" msgid "Options" -msgstr "" +msgstr "විකල්ප" #. fj4HR #: cui/uiconfig/ui/qrcodegen.ui:363 @@ -18954,19 +18943,19 @@ #: cui/uiconfig/ui/queryduplicatedialog.ui:14 msgctxt "queryduplicatedialog|DuplicateNameDialog" msgid "The name you have entered already exists." -msgstr "" +msgstr "ඔබ ඇතුළත් කළ නම දැනටමත් පවතී." #. 2DhPe #: cui/uiconfig/ui/queryduplicatedialog.ui:15 msgctxt "queryduplicatedialog|DuplicateNameDialog" msgid "Please choose another name." -msgstr "" +msgstr "කරුණාකර වෙනත් නමක් තෝරන්න." #. W5Kgo #: cui/uiconfig/ui/querynoloadedfiledialog.ui:7 msgctxt "querynoloadedfiledialog|NoLoadedFileDialog" msgid "No Loaded File" -msgstr "" +msgstr "පූරණය වූ ගොනුවක් නොමැත" #. xEMFi #: cui/uiconfig/ui/querynoloadedfiledialog.ui:14 @@ -18978,7 +18967,7 @@ #: cui/uiconfig/ui/querynosavefiledialog.ui:7 msgctxt "querynosavefiledialog|NoSaveFileDialog" msgid "No Saved File" -msgstr "" +msgstr "සුරකින ලද ගොනුවක් නොමැත" #. DEBtQ #: cui/uiconfig/ui/querynosavefiledialog.ui:14 @@ -22065,7 +22054,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:320 msgctxt "zoomdialog|singlepage" msgid "Single page" -msgstr "තනි පිටුව (~S)" +msgstr "තනි පිටුව" #. E2onG #: cui/uiconfig/ui/zoomdialog.ui:330 @@ -22075,10 +22064,9 @@ #. FdNqb #: cui/uiconfig/ui/zoomdialog.ui:347 -#, fuzzy msgctxt "zoomdialog|columns" msgid "Columns:" -msgstr "තීරුව" +msgstr "තීරු" #. oXVAa #: cui/uiconfig/ui/zoomdialog.ui:361 diff -Nru libreoffice-7.1.2~rc2/translations/source/si/dictionaries/si_LK.po libreoffice-7.1.3~rc2/translations/source/si/dictionaries/si_LK.po --- libreoffice-7.1.2~rc2/translations/source/si/dictionaries/si_LK.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/si/dictionaries/si_LK.po 2021-04-28 16:17:44.000000000 +0000 @@ -2,22 +2,25 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2013-05-23 12:05+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-01 17:37+0000\n" +"Last-Translator: helabasa \n" +"Language-Team: Sinhala \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Weblate 4.4.2\n" +"X-POOTLE-MTIME: 1369355756.000000\n" +#. iDzxR #: description.xml msgctxt "" "description.xml\n" "dispname\n" "description.text" msgid "Sinhala spelling dictionary" -msgstr "" +msgstr "සිංහල අක්ෂර ශබ්දකෝෂය" diff -Nru libreoffice-7.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/si/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/si/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/si/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-07-28 14:35+0000\n" "Last-Translator: sophie \n" "Language-Team: Sinhala \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sid/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sid/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sid/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sid/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2479,1071 +2479,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sid/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/sid/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/sid/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sid/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-08-08 18:20+0000\n" "Last-Translator: serval2412 \n" "Language-Team: milkyswd@gmail.com\n" @@ -15380,33 +15380,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sk/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sk/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sk/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sk/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2020-12-11 20:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-21 07:37+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565181520.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME podporuje štyri úrovne zabezpečenia makier (od nízkej po veľmi vysokú) a dôveryhodné zdroje." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 sa zúčastňuje Google Summer of Code (GSoC), pozri:" - -#. SNTbc -#: 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 "Viete, že k častiam textu môžete pripájať komentáre? Jednoducho na to použite klávesovú skratku %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Potrebujete presunúť jeden alebo viac odsekov? Nemusíte ich vyberať a vkladať, namiesto toho použite klávesovú skratku %MOD1+%MOD2+šípka (hore / dole)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Základné písma pre prednastavené šablóny alebo pre aktuálny dokument zmeníte pomocou Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Základné písma." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Chcete nájsť slová s viac ako 10 znakmi? Upraviť ▸ Nájsť a nahradiť ▸ Nájsť ▸ [a-z] {10,} ▸ Ďalšie možnosti ▸ zaškrtnúť Regulárne výrazy." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Otvárajte súbory CSV ako nový hárok aktuálneho súboru pomocou Hárok ▸ Vložiť hárok zo súboru." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Ak píšete vo Writeri tučne, kurzívou alebo podčiarknutým písmom, môžete sa prepnúť do východiskového nastavenia klávesovou skratkou %MOD1+Shift+X (odstráni priame formátovanie znakov)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Ak chcete vložiť obsah schránky ako neformátovaný text použite klávesovú skratku %MOD1+%MOD2 + Shift + V." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Vzhľad poznámok pod čiarou prispôsobíte pomocou Nástroje ▸ Poznámky pod čiarou/koncové poznámky..." #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Pomocou „Prezentácia > Verzie prezentácie“ môžete zmeniť poradie a výber snímok tak, aby prezentácia zodpovedala potrebám vášho publika." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Chcete zmeniť pre časť textu kontrolu pravopisu? Kliknite na oblasť s jazykom v stavovom riadku alebo, čo je lepšie, použite príslušný štýl." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer môže vkladať prázdnu stránku medzi dve po sebe nasledujúce nepárne (párne) stránky. Zaškrtnite 'Tlačiť automaticky vložené prázdne stránky' na karte Writer v dialógovom okne tlače." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Nechcete tlačiť všetky stĺpce? Skryte alebo zoskupte tie, ktoré nepotrebujete." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Ak chcete upraviť automaticky spúšťanú prezentáciu, otvorte ju, a akonáhle sa spustí, kliknite pravým tlačidlom a z kontextového menu vyberte Upraviť." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Potrebujete presne umiestniť objekt? Klávesy %MOD2+šípka posunú objekty (tvar, obrázok, vzorec) o jeden pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Pomocník, ak je nainštalovaný, je k dispozícii kliknutím na F1. Inak navštívte adresu:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Kliknite pravým tlačidlom myši na stavový riadok v %PRODUCTNAME Calc a vyberte 'Počet vybraných', aby sa zobrazil počet vybraných buniek." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Chcete mať dva alebo viac stĺpcov len v časti stránky vo Writeri? Vložiť ▸ Oblasť, zadajte nastavenie na karte Stĺpce a vložte do oblasti text." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Použite Dáta > Štatistika pre vzorkovanie, popisné štatistiky, analýzu rozptylu, koreláciu a oveľa viac v %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Kopírovať medzi hárkami môžete aj bez schránky. Vyberte oblasť na kopírovanie, s klávesom %MOD1 kliknite na kartu cieľového hárku a použite Hárok ▸ Vyplniť bunky ▸ Vyplniť hárky." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Vzhľad %PRODUCTNAME môžete zmeniť v Nástroje ▸ Možnosti ▸ Zobrazenie ▸ Používateľské rozhranie." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "V aplikácii %PRODUCTNAME Impress použite funkciu Vložiť > Mediá > Fotoalbum na vytvorenie prezentácie zo série obrázkov pomocou funkcie Vytvoriť fotoalbum." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Namiesto výsledkov môžete zobraziť vzorce, a to pomocou Zobraziť ▸ Zobraziť vzorec (alebo Nástroje ▸ Možnosti ▸ %PRODUCTNAME Calc ▸ Zobrazenie ▸ Zobraziť ▸ Vzorce)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME je vyvíjaný priateľskou komunitou, ktorú tvoria stovky prispievateľov po celom svete. Pridajte sa k nám, znalosť programovanie nie je potrebná." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Pre ľavákov: zobrazte si zvislý posúvač naľavo tak, že zaškrtnete Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Ázijské a potom zaškrtnete Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Zobraziť ▸ Pravítko ▸ zarovnané vpravo." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Chcete mať názvy kapitol vždy na začiatku strany? Otvorte Nadpis1 (štýl odseku) ▸ Tok textu ▸ Zalomenie a zaškrtnite Vložiť ▸ Strana ▸ Pred." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Dátum alebo čas je počet dní od zvoleného dňa nula. V tomto čísle predstavuje celočíselná časť dátum a zlomok zodpovedá času (uplynulej časti dňa), hodnota 0,5 značí poludnie." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Pomocou klávesovej skratky Shift + %MOD1 + Del zmažete text od aktuálnej pozície kurzora do konca vety." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Vo vzorcoch môžete používať popisky stĺpcov a riadkov. Ak máte napríklad dva stĺpce 'Čas' a 'Km', počet minút na kilometer zistíte ako =Čas/Km." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Vadia vám posúvajúce sa pomlčky („pochodujúce mravce“) okolo buniek Calcu? Zrušíte ich stlačením klávesu Esc. Skopírovaný obsah pritom zostane dostupný a bude možné ho vkladať." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Chcete sa stať veľvyslancom %PRODUCTNAME? Existujú certifikácie pre vývojárov, administrátorov a školiteľov." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Orientáciu na výšku a na šírku v môžete v tabuľkovom dokumente Calc zvoliť nezávisle pre jednotlivé hárky použitím ich rôznych štýlov strán." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Po kliknutí na ikonu špeciálneho znaku v nástrojovej lište môžete rýchlo vkladať obľúbené a naposledy použité znaky." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Ak chcete zobraziť vzťahy medzi štýlmi, vyberte na bočnom paneli Štýly voľbu 'Hierarchický'." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Štýly vám pomôžu udržať jednotný vzhľad tabuliek v dokumente. Pripravený štýl zvolíte pomocou Štýlov (F11) alebo v ponuke Tabuľka ▸ Formátuovať tabuľku." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Chcete nastaviť, aby sa odkaz otváral iba pri kliknutí so stlačeným klávesom %MOD1? Použite Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Bezpečnosť ▸ Možnosti ▸ Na otvorenie hypertextových odkazov vyžadovať %MOD1+kliknutie'." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Ak chcete zobraziť výpočet určitej časti vzorca, vyberte ju vo vstupnom riadku a stlačte F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Bunky uzamknete pomocou Formát ▸ Bunky ▸ Ochrana bunky. Ak chcete blokovať vkladanie, mazanie, premenovávanie, presúvanie a kopírovanie hárkov, použite Nástroje ▸ Zamknúť hárok." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Text pozdĺž krivky? Nakreslite čiaru, dvakrát kliknite, zadajte text, Formát ▸ Textové pole a útvar ▸ Písmomaľba." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Chcete si zobraziť v hárku len najväčšie hodnoty? Zvoľte v ponuke Dáta ▸ Automatický filter, kliknite na rozbaľovaciu šípku a zvoľte 'Horných 10'." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Ak chcete odstrániť číslo stránky z obsahu, prejdite na Vložiť ▸ Obsah a register (alebo kliknite pravým tlačidlom a upravte už existujúci obsah). Na karte Položky odstráňte číslo stránky (#) z riadku Štruktúra." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "V Navigátore môžete vyberať nadpisy spolu s nasledujúcim textom a posúvať ich nahor alebo nadol. Nadpis a text sa posunie v navigátore a aj v dokumente." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Ak chcete rýchlo vytvoriť objekt matematického vzorca v aplikácii Writer, zadajte vzorec do textu, vyberte ho a skonvertujte pomocou Vložiť ▸ Objekt ▸ Vzorec." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "V programe %PRODUCTNAME je veľmi jednoduché nainštalovať nový slovník: sú dodávané ako rozšírenie." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME má prenosnú verziu, ktorá vám poskytuje mobilitu. Aj bez administrátorských práv si môžete na vašom počítači nainštalovať %PRODUCTNAME Portable na pevný disk." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer umožňuje číslovať poznámky pod čiarou pre stránku, kapitolu aj dokument: Nástroje ▸ Poznámky pod čiarou / koncové poznámky ▸ karta Poznámky pod čiarou ▸ Počítanie." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Dokument Writeru sa neotvoril s textovým kurzorom na pozícii, kde sa nachádzal pri uložení? Skontrolujte, či je vyplnené meno a priezvisko v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Údaje o používateľovi." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Ak potrebujete spravovať citácie, použite rozšírenie tretej strany." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Chcete vložiť hodnotu na to isté miesto vo viacerých hárkoch naraz? Hárky pred zadaním hodnoty vyberte, tj. kliknite na ich karty so stlačeným klávesom %MOD1." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Chcete v dokumente skryť nejaký text? Vyberte ho, vyberte Vložiť ▸ Oblasť a zaškrtnite 'Skryť'." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Správanie stredného tlačidla myši je možné upraviť v Nástroje ▸ Možnosti ▸ %PRODUCTNAME ▸ Zobraziť ▸ Stredné tlačidlo myši." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Chcete vytlačiť dve strany na výšku na jednu na šírku (napr. zmenšiť A4 na A5)? Súbor ▸ Tlač a 'Strán na hárok'." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Ak chcete v dokumente rýchlo prejsť na záložku, kliknite v stavovom riadku pravým tlačidlom na číslo strany (ľavý dolný roh okna s dokumentom)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Ak chcete vybrať objekt v pozadí dokumentu, na výber objektu použite nástroj Výber v paneli nástrojov Kreslenie." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Zadajte si texty, ktoré často používate, ako automatický text. Potom ich budete môcť vložiť do akéhokoľvek dokumentu Writeru pomocou názvu, skratky alebo z nástrojovej lišty." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Prehrávanie hudby počas celej prezentácie nastavíte tak, že prvému prechodu medzi snímkami priradíte zvuk a nepoužijete pri tom tlačidlo 'Prechody použiť pre všetky snímky'." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 nepočíta zľava doprava, ale rešpektuje poradie priorít Zátvorky - Mocniny - Násobenie - Delenie - Sčítanie - Odčítanie." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Získajte dokumentáciu %PRODUCTNAME a bezplatné používateľské príručky na adrese:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Chcete odstrániť naraz všetky znaky <>, ale zachovať text medzi nimi? Upraviť ▸ Nájsť a nahradiť: Nájsť = [<>], Nahradiť = prázdne a v časti Ďalšie možnosti zaškrtnite 'Regulárne výrazy'." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Potrebujete prezentovať správu napísanú vo Writeri? Pomocou voľby Súbor ▸ Odoslať ▸ Osnova do prezentácie automaticky vytvoríte z osnovy snímky prezentácie." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Chcete použiť v tabuľkovom hárku hypertextové odkazy? Vložte ich pomocou funkcie HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Ak zrušíte zaškrtnutie Nástroje ▸ Možnosti ▸ %PRODUCTNAME Calc ▸ Zobraziť ▸ Zväčšenie: 'Synchronizovať hárky', bude mať každý hárok v Calc vlastnú mierku priblíženia." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Pre každú záložku hárku môžete nastaviť farbu: kliknite pravým tlačidlom na záložku alebo použite príkaz Hárok ▸ Farba záložiek hárkov." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Môžete sledovať bunky použité vo vzorcoch: predchodcov (Shift + F9) a následníkov (Shift + F5); použiť možno tiež Nástroje ▸ Detektív. Každým použitím postúpite v reťazci predchodcov alebo následníkov o jeden krok." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Ako vložiť naraz vzorec a jeho poradové číslo: napíšte fn a stlačte F3. Vloží sa automatický text s tabuľkou obsahujúcou vzorec a číslo." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Zoznam obrázkov môžete vytvoriť aj z názvov objektov, nielen z ich popisov." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Použite svoj Android alebo iPhone na diaľkové ovládanie prezentácie Impress." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Chcete vedieť, koľko dní má aktuálny mesiac? Použite funkciu DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Čísla v bunkách sa zobrazujú ako ###? Stĺpec je príliš úzky na to, aby sa v ňom zobrazili všetky číslice." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "V ponuke Nástroje ▸ Možnosti ▸ OpenCL zapnete paralelné výpočty vzorcov." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Pomocou nástroja Spojnice z lišty Kresba v programoch Draw / Impress vytvoríte prehľadné vývojové diagramy. Vytvorený objekt potom môžete skopírovať a vložiť do Writeru." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Vaše finančné príspevky pomáhajú našej celosvetovej komunite." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Chcete pridať k dátumu x mesiacov? Použite =EDATE (dátum; mesiace)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Súvislú oblasť buniek, ktoré obsahujú dáta a ktoré sú oddelené prázdnym riadkom a stĺpcom, vyberiete pomocou %MOD1 + * (na numerickej klávesnici)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Nerozpoznáva sa správne dátum? Vhodné masky nastavíte v Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Rozpoznávané formáty dátumov." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Chcete exportovať vzorce do CSV? Súbor ▸ Uložiť ako ▸ Typ: Text CSV, zaškrtnite 'Upraviť nastavenia filtra' a v ďalšom okne zaškrtnite 'Uložiť vzorce namiesto vypočítaných hodnôt'." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Konzola prezentujúceho je skvelá pomôcka pri práci s aplikáciou %PRODUCTNAME Impress. Už ste si ju vyskúšali?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Ak chcete zmazať viac komentárov, vyberte oblasť s nimi a použite Hárok ▸ Poznámky bunky ▸ Odstrániť poznámky." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Kliknutím na ikonu PDF na paneli s nástrojmi môžete svoje dokumenty jednoducho konvertovať do PDF." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Chcete vybrať rozsiahlu oblasť buniek bez použitia myši? Zadajte do poľa názvu odkaz na oblasť (napr. A1: A1000) a stlačte Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Chcete sa dozvedieť, aké sú parametre príkazového riadka? Spustite soffice s prepínačom --help, -h alebo -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Hárok alebo oblasť tlače prispôsobíte strane pomocou Formát ▸ Strana ▸ záložka Hárok ▸ Mierka." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Potrebujete nečíslovanú položku v zozname? Použite 'Vložiť nečíslovanú položku' na nástrojovej lište Odrážky a číslovanie." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Orientáciu buniek tabuľky môžete otáčať pomocou Tabuľka ▸ Vlastnosti ▸ Tok textu ▸ Orientácia textu." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "Ak chcete v %PRODUCTNAME Draw zmeniť polohu bodu 0/0 pravítok, presuňte ich priesečník z ľavého horného rohu do pracovného priestoru." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Chcete v Calc v jednom kroku presunúť stĺpec medzi dva iné? Kliknite na záhlavie a potom na nejakú bunku tohto stĺpca a so stlačeným tlačidlom myši a klávesom %MOD2 ho presuňte na požadované miesto." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Automaticky označte abecedné položky registra pomocou súboru zhody." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Ak chcete presne zarovnať objekty v programe Draw / Impress, použite Formát ▸ Zarovnať (alebo kontextové menu): jeden vybraný objekt sa zarovná napríklad na stred stránky a obdobne to funguje aj pre skupinu." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Medzery medzi položkami vo Writeri nemusíte vytvárať pomocou tabulátora. Pre niektoré účely môže byť vhodnejšou voľbou tabuľka bez orámovania." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Aby ste našli klávesovú skratku v zozname Nástroje ▸ Prispôsobiť ▸ Klávesnica, nemusíte rolovať: stačí skratku stlačiť." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "Pri vkladaní objektu môže %PRODUCTNAME automaticky doplniť číslovaný popis, pozri Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Automatické popisy." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "V %PRODUCTNAME môžete na vytvorenie hromadnej korešpondencie použiť e-mailové konto od Googlu. Vyplňte ho v Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Hromadné rozposielanie e-mailov." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Ak chcete ponechať záhlavia stĺpcov pri posúvaní riadkov viditeľné, vyberte Zobraziť ▸ Ukotviť bunky ▸ Ukotviť prvý riadok." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Chcete začať pracovať s makrami v jazyku %PRODUCTNAME Basic? Pozrite sa na príklady v ponuke Nástroje ▸ Makrá ▸ Upraviť makrá." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Štýly odseku pre nadpisy môžete vo Writeri nastaviť klávesovými skratkami: %MOD1+1 použije Nadpis 1, %MOD1+2 Nadpis 2 atď." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Nestraťte sa v rozsiahlych dokumentoch. S Navigátorom (F5) sa v ich obsahu zorientujete." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Úpraviť ▸ Nájsť a nahradiť umožňuje priamo vkladať špeciálne znaky: kliknite pravým tlačidlom myši do vstupných polí alebo stlačte Shift + %MOD1 + S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Vyžadujete vlastný obsah v metadátach? Všetko potrebné vytvoríte v Súbor ▸ Vlastnosti ▸ Vlastné vlastnosti." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Chcete v Draw zobraziť, ale netlačiť nejaký objekt? Nakreslite ho na vrstvu, ktorá nemá vlastnosť 'Tlačiteľná' (kliknite pravým tlačidlom na záložku vrstvy a vyberte 'Upraviť vrstvu')." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Ak chcete do dokumentu vložiť aktuálny dátum, použite Vložiť ▸ Pole ▸ Dátum." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Príliš veľa obrázkov v dokumente Writeri? Urýchlite načítanie dokumentu tým, že ich vypnete pomocou Zobraziť ▸ Obrázky a grafy." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Rad náhodných čísel podľa rôznych rozdelení vygenerujete pomocou Hárok ▸ Vyplniť bunky ▸ Vyplniť náhodnými číslami." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Ak premenujete snímky v Impress, ľahšie potom budete zadávať akciu 'Prechod na stránku' a označenie bude mať väčšiu výpovednú hodnotu ako Snímka1, Snímka2 ..." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Dialógové okno Číslovanie kapitol umožňuje nastaviť text, ktorý sa zobrazí pred číslom kapitoly: napríklad pre text 'Kapitola' sa zobrazí 'Kapitola 1'" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Potrebujete transponovať tabuľku vo Writeru? Skopírujte ju a vložte do Calc, transponujte ju pomocou Skopírovať a Vložiť inak a nakoniec ju skopírujte a vo Writeri vložte ako Vložiť inak ▸ Formátovaný text." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Nástroj 'Zvislý text' z nástrojovej lišty Kresba dostanete, ak zaškrtnete Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Východiskové jazyky ▸ Ázijské (a tlačidlo zmeníte na viditeľné po kliknutí pravým tlačidlom)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Ak chcete rýchlo priblížiť výber, kliknite pravým tlačidlom v stavovom riadku v oblasti priblíženia a vyberte Optimálna zobrazenie." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Môžete podpisovať už existujúce súbory PDF a overovať ich podpisy." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Vytvárate často dokumenty z iných dokumentov? Zvážte použitie šablóny." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "V Calc pomocou Formát ▸ Podmienené ▸ Spravovať zistíte, u ktorých buniek bolo použité podmienené formátovanie." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Nástroje ▸ Detektív ▸ Označiť neplatné dáta zvýrazní v hárku všetky bunky, ktoré nespĺňajú pravidlá platnosti dát." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Väčšia interoperabilitu s inými kancelárskymi balíkmi zaistíte tým, že v ponuke Súbor ▸ Vlastnosti ▸ Písmo použijete vkladanie písma." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Ak chcete previesť vzorec na statickú hodnotu, nemusíte kopírovať a vkladať; použite Dáta ▸ Vypočítať ▸ Vzorec na hodnotu." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Všetky poznámky v dokumente môžete preformátovať kliknutím na šípku nadol v poznámke a zvolením 'Formátovať všetky poznámky'." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Chcete mať rovnaké rozvrhnutie na obrazovke aj pri tlači? Zaškrtnite Nástroje ▸ Možnosti ▸ %PRODUCTNAME Calc ▸ Všeobecné ▸ Pri formátovaní textu použiť metriku tlačiarne." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer vám pomáha zálohovať: pomocou voľby Súbor ▸ Uložiť kópiu vytvoríte nový dokument a ďalej pracujete na tom pôvodnom." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Ak vytvárate štýl založený na inom štýle, je možné zadať percentuálnu hodnotu alebo relatívnu hodnotu v bodoch (napr. 110%, -2 pt alebo +5 pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Ak chcete skopírovať poznámku a zachovať pritom obsah cieľovej bunky, použite príkaz Vložiť inak a v dialógovom okne zrušte zaškrtnutie všetkého okrem pole 'Poznámky'. Existujúci obsah sa neprepíše, ak použijete operáciu 'Pridať'." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Dokumenty MS Office možno dávkovo konvertovať do formátu OpenDocument pomocou sprievodcu v ponuke Súbor ▸ Sprievodcovia ▸ Konvertor dokumentov." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Pri úprave bunky v hárku môžete kliknúť pravým tlačidlom a vložiť polia: Dátum, Názov hárku, Názov dokumentu atď." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Chcete vo Writeri presunúť tabuľku na ľubovoľné miesto? Použite Tabuľka ▸ Vybrať ▸ Tabuľka, potom Vložiť ▸ Rámec ▸ Rámec a presuňte ju, kam treba." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Pomocou Nástroje ▸ Automatický text ▸ Autom. text ▸ Importovať môžete vybrať dokument či šablónu Wordu obsahujúce položky importovaného automatického textu." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Nevytvárajte medzeru medzi dvoma odsekmi ručne. Radšej zmeňte vo vlastnostiach odseku hodnotu Odsadenie a rozostupy ▸ Rozostupy ▸ Pod odsekom." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Nuly na začiatku čísla ponecháte zobrazené pomocou voľby 'Úvodné nuly' v dialógovom okne Formát bunky, alebo keď bunku pred zadaním čísla naformátujete ako text." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Chcete sa vrátiť k východiskovému nastaveniu po použití štýlu zoznamu? Kliknite na nástroj Číslovanie na lište Formátovanie." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Ak chcete vymazať naraz všetky oblasti tlače, vyberte všetky hárky a vyberte Formát ▸ Oblasti tlače ▸ Odstrániť." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Pridajte obrázky na pozadí do tabuliek pomocou Vložiť ▸ Obrázok alebo presuňte pozadia z Galérie a potom Formát ▸ Usporiadať ▸ Na pozadie." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Nedarí sa vám vložiť do dokumentu text zo súboru PDF alebo z webovej stránky? Skúste ho vložiť ako neformátovaný (%MOD1 +%MOD2 + Shift + V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "V Calcu použite TRIMMEAN() na vrátenie priemeru súboru dát s výnimkou najvyšších a najnižších hodnôt." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Štvrtý nepovinný parameter funkcie VLOOKUP v Calc udáva, či je prvý stĺpec dát zoradený. Keď nie je, zadajte hodnotu FALSE alebo nulu." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Panely nástrojov sa otvárajú podľa aktuálneho kontextu. Ak si ich nechcete zobrazovať, zrušte ich zaškrtnutie v Zobraziť ▸ Panely nástrojov." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Chcete vytvoriť z aktuálneho dokumentu Writeru hlavný dokument? Súbor ▸ Odoslať ▸ Vytvoriť hlavný dokument (čiastkové dokumenty sa vytvoria podľa osnovy)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Chcete zarovnať bunky v Calcu na vytlačenej strane na stred? Formát ▸ Strana, Strana ▸ Nastavenie rozloženia ▸ Zarovnanie tabuľky." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Rámce môžu byť prepojené tak, aby text mohol prúdiť z jedného do druhého, ako je to v DTP." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Graf založený na tabuľke vo Writeri vytvoríte tak, že do tabuľky kliknete a zvolíte Vložiť ▸ Graf." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Výberom z Nástroje ▸ Možnosti ▸ %PRODUCTNAME Writer ▸ Pomôcky na formátovanie ▸ Zobraziť formátovanie určíte, ktoré riadiace znaky sa budú zobrazovať." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Chcete prejsť na určitú stranu podľa čísla? Kliknite na položku stavového riadku umiestnenou úplne vľavo, použite Upraviť ▸ Prejsť na stranu alebo stlačte %MOD1 + G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME podporuje viac ako 150 jazykov." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Ak potrebujete zobraziť nad prezentáciou okno iného programu, zrušte označenie poľa Prezentácia ▸ Nastavenie prezentácie ▸ Prezentácia vždy v popredí." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Chcete v dokumente Writeru nájsť slová formátované tučne? Úpraviť ▸ Nájsť a nahradiť ▸ Ďalšie možnosti ▸ Atribúty ▸ Váha písma." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Pomocou Nástroje ▸ Zoradiť môžete vo Writeri zoradiť odseky alebo riadky tabuľky, a to a abecedne, alebo číselne." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Ak chcete vložiť bod pred (za) oblasť, stlačte na jej začiatku (konci) %MOD2 + Enter." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "Dobre vyzerajúce dokumenty môžete vytvoriť pomocou šablón %PRODUCTNAME, vyskúšajte si ich." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Spočítajte splátky úveru s Calcom: napr. =PMT(2%/12;36;2500) dá úrokovú sadzbu za platobnú dobu 2%/12, 36 mesiacov a výšku úveru 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Nedarí sa vám v Calcu nájsť požadovaný výsledok pomocou funkcie VLOOKUP? S funkciami INDEX a MATCH to nebude problém!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Chcete zobraziť skrytý stĺpec A? Kliknite na bunku v stĺpci B, stlačte ľavé tlačidlo myši, pohnite myšou doľava a uvoľnite tlačidlo. Potom prepnite zobrazenie pomocou Formát ▸ Stĺpce ▸ Zobraziť." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Ak chcete zmeniť vo Writeri číslo strany, prejdite na vlastnosti prvého odseku, na karte Tok textu zaškrtnite Zalomenie ▸ Vložiť a zadajte číslo." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME možno pomocou rollApp spúšťať v ľubovoľnom prehliadači." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Zaznamenali ste v Calcu podivný chybový kód (Err: a potom číslo)? Vysvetlenie nájdete na tejto stránke:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Ak chcete zahrnúť do obsahu odsek, ktorý nie je nadpisom, zmeňte Úroveň osnovy v nastavení tohto odseku (karta Osnova a číslovanie)." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Okrem obsahu je možné v %PRODUCTNAME vytvárať zoznamy obrázkov, tabuliek, objektov a použitej literatúry, ako aj abecedné a používateľom definované registre." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Nemožno upraviť alebo odstrániť vlastný štýl bunky? Skontrolujte všetky hárky, žiadny by nemal byť uzamknutý." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Potrebujete vložiť postupnosť? Vyberte rozsah buniek, zvoľte Hárok ▸ Vyplniť bunky ▸ Vyplniť postupnosti, a potom zvoľte lineárnu, geometrickú, dátumovú alebo automatickú postupnosť." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Chcete vedieť, či sa bunka používa vo vzorcoch iných buniek? Nástroje ▸ Detektív ▸ Sledovať následnosti (Shift + F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "V poli Nahradiť v nastavení automatických opráv môžete použiť zástupné znaky .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Chcete duplikovať riadok nad? Stlačte %MOD1 + D alebo použite Hárok ▸ Vyplniť bunky ▸ Vyplniť nadol." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Viac hárkov budete prehľadávať v prípade, že ich pred začiatkom vyhľadávania vyberiete." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Presunutím buniek z Calcu na snímku prezentácie v normálnom zobrazení vytvoríte tabuľku; pri zobrazení Osnova vznikne z každej bunky jeden riadok osnovy." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME napomôže tomu, aby ste vo Writeri nezadali viac medzier za sebou. Zaškrtnite Nástroje ▸ Automatické opravy ▸ Nastavenie automatických opráv ▸ Možnosti ▸ Ignorovať dvojité medzery." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Chcete, aby kurzor prešiel po zadaní hodnoty v Calc do bunky napravo? Použite namiesto klávesy Enter tabulátor." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Ak chcete zobraziť posuvník naľavo, povoľte Nástroje ▸ Možnosti ▸ Nastavenia jazyka ▸ Jazyky ▸ Komplexné text a zaškrtnite Hárok ▸ Sprava doľava." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Ak presuniete formátovaný objekt do okna Štýly a formátovanie, otvorí sa dialógové okno, v ktorom stačí zadať názov nového štýlu." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nové verzie %PRODUCTNAME prinášajú nové funkcie, opravy chýb aj bezpečnostné záplaty. Nezabúdajte na aktualizáciu!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Vyvíjate nové filtre formátov XSLT a XML?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Keď nie je povolená možnosť „Rozšírené tipy“ v časti Nástroje ▸ Možnosti ▸%PRODUCTNAME ▸ Všeobecné, stlačením kombinácie klávesov Shift + F1 zobrazíte všetky rozšírené popisy nástrojov dostupné v dialógových oknách" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Pomocník %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Viac informácií" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Spustiť túto akciu práve teraz..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Tip dňa: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -21329,7 +21323,7 @@ #: cui/uiconfig/ui/wordcompletionpage.ui:350 msgctxt "wordcompletionpage|whenclosing" msgid "_When closing a document, remove the words collected from it from the list" -msgstr "_Pri zatváraní dokumentu, odstrániť slová zo zoznamu, ktoré boli zozbierané z daného dokumentu" +msgstr "_Pri zatváraní dokumentu odstrániť slová zo zoznamu, ktoré boli zozbierané z daného dokumentu" #. RFvtW #: cui/uiconfig/ui/wordcompletionpage.ui:360 diff -Nru libreoffice-7.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sk/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-10-26 21:35+0000\n" "Last-Translator: serval2412 \n" "Language-Team: Slovak \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blikajúce" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sk/svtools/messages.po libreoffice-7.1.3~rc2/translations/source/sk/svtools/messages.po --- libreoffice-7.1.2~rc2/translations/source/sk/svtools/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sk/svtools/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-17 20:36+0000\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Miloš Šrámek \n" -"Language-Team: Slovak \n" +"Language-Team: Slovak \n" "Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560235430.000000\n" #. fLdeV @@ -2355,7 +2355,7 @@ #: svtools/inc/errtxt.hrc:122 msgctxt "RID_ERRHDL" msgid "Execution of macros is disabled. Macros are signed, but the document (containing document events) is not signed." -msgstr "" +msgstr "Spúšťanie makier je zakázané. Makrá sú podpísané, ale dokument (obsahujúci udalosti dokumentu) nie je podpísaný." #. 24FhM #: svtools/inc/errtxt.hrc:123 diff -Nru libreoffice-7.1.2~rc2/translations/source/sq/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sq/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sq/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sq/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2019-01-12 22:12+0000\n" "Last-Translator: Nafie Shehu \n" "Language-Team: LANGUAGE \n" @@ -2466,1071 +2466,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sq/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:10+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Duke Pulsuar" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/sr/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-06-23 11:13+0000\n" -"Last-Translator: gpopac \n" -"Language-Team: Serbian \n" +"PO-Revision-Date: 2021-04-15 15:55+0000\n" +"Last-Translator: Милош Поповић \n" +"Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" #. NCRDD @@ -362,13 +362,13 @@ #: chart2/inc/strings.hrc:77 msgctxt "STR_OBJECT_LABEL" msgid "Label" -msgstr "Натпис" +msgstr "Надпис" #. ag7pg #: chart2/inc/strings.hrc:78 msgctxt "STR_OBJECT_DATALABELS" msgid "Data Labels" -msgstr "Натписи за податаке" +msgstr "Натпис за податаке" #. ts3Cj #: chart2/inc/strings.hrc:79 @@ -1092,7 +1092,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:78 msgctxt "chartdatadialog|extended_tip|InsertRow" msgid "Inserts a new row below the current row." -msgstr "" +msgstr "Умеће нови ред испод тренутног." #. DDsFz #: chart2/uiconfig/ui/chartdatadialog.ui:91 @@ -1104,7 +1104,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:96 msgctxt "chartdatadialog|extended_tip|InsertColumn" msgid "Inserts a new data series after the current column." -msgstr "" +msgstr "Умеће нову серију података након тренутне колоне." #. KuFy7 #: chart2/uiconfig/ui/chartdatadialog.ui:109 @@ -1116,7 +1116,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:114 msgctxt "chartdatadialog|extended_tip|InsertTextColumn" msgid "Inserts a new text column after the current column for hierarchical axes descriptions." -msgstr "" +msgstr "Умеће нову текстуалну колону након тренутне колоне у хијерархијском опису оса." #. 4JgTE #: chart2/uiconfig/ui/chartdatadialog.ui:127 @@ -1128,7 +1128,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:132 msgctxt "chartdatadialog|extended_tip|RemoveRow" msgid "Deletes the current row. It is not possible to delete the label row." -msgstr "" +msgstr "Брише тренутни ред. Није могуће обрисати ред са натписом." #. JCBmW #: chart2/uiconfig/ui/chartdatadialog.ui:145 @@ -1140,7 +1140,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:150 msgctxt "chartdatadialog|extended_tip|RemoveColumn" msgid "Deletes the current series or text column. It is not possible to delete the first text column." -msgstr "" +msgstr "Брише тренутну серију или текстуалну колону. Није могуће обрисати прву текстуалну колону." #. MUkk3 #: chart2/uiconfig/ui/chartdatadialog.ui:173 @@ -1152,7 +1152,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:178 msgctxt "chartdatadialog|extended_tip|MoveLeftColumn" msgid "Switches the current column with its neighbor at the left." -msgstr "" +msgstr "Мења тренутну колону с првим суседом на левој страни." #. DfxQy #: chart2/uiconfig/ui/chartdatadialog.ui:191 @@ -1164,7 +1164,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:196 msgctxt "chartdatadialog|extended_tip|MoveRightColumn" msgid "Switches the current column with its neighbor at the right." -msgstr "" +msgstr "Мења тренутну колону с првим суседом на десној страни." #. EkxKw #: chart2/uiconfig/ui/chartdatadialog.ui:209 @@ -1176,7 +1176,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:214 msgctxt "chartdatadialog|extended_tip|MoveUpRow" msgid "Switches the current row with its neighbor above." -msgstr "" +msgstr "Мења тренутну колону с првим суседом изнад." #. TvbuK #: chart2/uiconfig/ui/chartdatadialog.ui:227 @@ -1188,13 +1188,13 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:232 msgctxt "chartdatadialog|extended_tip|MoveDownRow" msgid "Switches the current row with its neighbor below." -msgstr "" +msgstr "Мења тренутну колону с првим суседом испод." #. rRJDK #: chart2/uiconfig/ui/chartdatadialog.ui:366 msgctxt "chartdatadialog|extended_tip|ChartDataDialog" msgid "Opens the Data Table dialog where you can edit the chart data." -msgstr "" +msgstr "Отвара порозорче за са табелу података где можете уредити податке уз график." #. KbkRw #: chart2/uiconfig/ui/charttypedialog.ui:8 @@ -1236,7 +1236,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:115 msgctxt "dlg_DataLabel|extended_tip|CB_VALUE_AS_NUMBER" msgid "Displays the absolute values of the data points." -msgstr "" +msgstr "Приказује апсолутну вредности тачака података." #. C2XXx #: chart2/uiconfig/ui/dlg_DataLabel.ui:126 @@ -1248,7 +1248,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:135 msgctxt "dlg_DataLabel|extended_tip|CB_VALUE_AS_PERCENTAGE" msgid "Displays the percentage of the data points in each column." -msgstr "" +msgstr "Приказује процента тачака са подацима у свакој колони." #. MYzUe #: chart2/uiconfig/ui/dlg_DataLabel.ui:146 @@ -1260,7 +1260,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:155 msgctxt "dlg_DataLabel|extended_tip|CB_CATEGORY" msgid "Shows the data point text labels." -msgstr "" +msgstr "Приказује текстуални натпис за тачку података." #. 8mMDV #: chart2/uiconfig/ui/dlg_DataLabel.ui:166 @@ -1272,7 +1272,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:175 msgctxt "dlg_DataLabel|extended_tip|CB_SYMBOL" msgid "Displays the legend icons next to each data point label." -msgstr "" +msgstr "Приказује иконицу легенде одмах поред натписа за тачку податка." #. BA3kD #: chart2/uiconfig/ui/dlg_DataLabel.ui:186 @@ -1290,7 +1290,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:209 msgctxt "dlg_DataLabel|extended_tip|PB_NUMBERFORMAT" msgid "Opens a dialog to select the number format." -msgstr "" +msgstr "Отвара прозорче за избор формата броја." #. cFD6D #: chart2/uiconfig/ui/dlg_DataLabel.ui:220 @@ -1302,7 +1302,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:228 msgctxt "dlg_DataLabel|extended_tip|PB_PERCENT_NUMBERFORMAT" msgid "Opens a dialog to select the percentage format." -msgstr "" +msgstr "Отвара прозорче за избор формата процента." #. ETbFx #: chart2/uiconfig/ui/dlg_DataLabel.ui:241 @@ -1344,13 +1344,13 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:281 msgctxt "dlg_DataLabel|liststoreSEPARATOR" msgid "Period" -msgstr "" +msgstr "Тачка" #. 8Z3DJ #: chart2/uiconfig/ui/dlg_DataLabel.ui:285 msgctxt "dlg_DataLabel|extended_tip|LB_TEXT_SEPARATOR" msgid "Selects the separator between multiple text strings for the same object." -msgstr "" +msgstr "Поставља раздвајач између више текстуалних карактера за исти објекат." #. FDBQW #: chart2/uiconfig/ui/dlg_DataLabel.ui:311 @@ -1440,7 +1440,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:344 msgctxt "dlg_DataLabel|extended_tip|LB_LABEL_PLACEMENT" msgid "Selects the placement of data labels relative to the objects." -msgstr "" +msgstr "Поставља положај натписа за податаке у зависности од објекта." #. 69qZL #: chart2/uiconfig/ui/dlg_DataLabel.ui:364 @@ -1458,13 +1458,13 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:426 msgctxt "dlg_DataLabel|extended_tip|CT_DIAL" msgid "Click in the dial to set the text orientation for the data labels." -msgstr "" +msgstr "Кликните на бројчаник да поставите оријентацију натписа за податке." #. MjCoG #: chart2/uiconfig/ui/dlg_DataLabel.ui:447 msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES" msgid "Enter the counterclockwise rotation angle for the data labels." -msgstr "" +msgstr "Унесите угао ротације улево за натписе података." #. Jhjwb #: chart2/uiconfig/ui/dlg_DataLabel.ui:461 @@ -1482,7 +1482,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:503 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 "" +msgstr "Одредите смер текста пасуса који користи комплексни распоред текста (CTL). Ова могућност је доступна само уколико је омогућен распоред текста у комплексном распореду." #. xpAEz #: chart2/uiconfig/ui/dlg_DataLabel.ui:528 @@ -1494,19 +1494,19 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:561 msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "_Повежи размештене натписе података у тачке података" #. MJdmK #: chart2/uiconfig/ui/dlg_DataLabel.ui:570 msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "Нацртај линију која повезује натписе података и тачке података" #. UKVF9 #: chart2/uiconfig/ui/dlg_DataLabel.ui:588 msgctxt "dlg_DataLabel|label3" msgid "Leader Lines" -msgstr "" +msgstr "Водеће линије" #. 6bBph #: chart2/uiconfig/ui/dlg_DataLabel.ui:604 @@ -1518,7 +1518,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:626 msgctxt "dlg_DataLabel|extended_tip|dlg_DataLabels" msgid "Opens the Data Labels dialog, which enables you to set the data labels." -msgstr "" +msgstr "Отвара прозорче за натписе података, које вам омогућава да поставите натписе за податке." #. 3GUtp #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:28 @@ -1536,7 +1536,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:137 msgctxt "dlg_InsertErrorBars|extended_tip|RB_NONE" msgid "Does not show any error bars." -msgstr "" +msgstr "Не приказује траке за грешке." #. sMZoy #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:149 @@ -1548,7 +1548,7 @@ #: 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 "" +msgstr "Приказује константне вредности које сте одредили у области „Параметри“." #. UzxQQ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171 @@ -1560,13 +1560,13 @@ #: 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 "" +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 "" +msgstr "Изаберите функцију за рачунање трака за грешке." #. fkUNn #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:222 @@ -1596,7 +1596,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:229 msgctxt "dlg_InsertErrorBars|extended_tip|LB_FUNCTION" msgid "Select a function to calculate the error bars." -msgstr "" +msgstr "Изаберите функцију да израчунате траке са грешкама." #. Z5yGF #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:248 @@ -1608,7 +1608,7 @@ #: 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 "" +msgstr "Кликните на опсег ћелија, а затим одредите опсег ћелија из кога да се преузму позитивне и негативне вредности трака са грешкама." #. vdvVR #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:276 @@ -1626,7 +1626,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:319 msgctxt "dlg_InsertErrorBars|extended_tip|RB_BOTH" msgid "Shows positive and negative error bars." -msgstr "" +msgstr "Приказује позитивне и негативне траке са грешкама." #. jJw8Y #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:330 @@ -1638,7 +1638,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:340 msgctxt "dlg_InsertErrorBars|extended_tip|RB_POSITIVE" msgid "Shows only positive error bars." -msgstr "" +msgstr "Приказује само траке за позитивне грешке." #. 6YgbM #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:351 @@ -1650,7 +1650,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:361 msgctxt "dlg_InsertErrorBars|extended_tip|RB_NEGATIVE" msgid "Shows only negative error bars." -msgstr "" +msgstr "Прикажи само траке за негативне грешке." #. fkKQH #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:411 @@ -1668,13 +1668,13 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:478 msgctxt "dlg_InsertErrorBars|extended_tip|MF_POSITIVE" msgid "Enter the value to add to the displayed value as the positive error value." -msgstr "" +msgstr "Унесите вредност за додавање на приказане вредности као вредност позитивне грешке." #. SUBEs #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:497 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 "" +msgstr "Унесите адресу опсега одакле желите да преузмете вредности позитивне грешке. Користите дугме „Сузи“ да изаберете опсег из листа." #. 5FfdH #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:512 @@ -1686,7 +1686,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:516 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 "" +msgstr "Кликните дугме да сузите прозорче, а затим користите миша да изаберете опсег ћелија у листу. Кликните на дугме поново да вратите прозорче на пуну величину." #. K9wAk #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:542 @@ -1698,13 +1698,13 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:561 msgctxt "dlg_InsertErrorBars|extended_tip|MF_NEGATIVE" msgid "Enter the value to subtract from the displayed value as the negative error value." -msgstr "" +msgstr "Унесите вредност за одузимање од приказаних вредности као вредност негативне грешке." #. DTR5D #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:580 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 "" +msgstr "Унесите адресу опсега из кога желите да преузмете негативне вредности грешке. Користите дугме „Сузи“ да изаберете опсег са листа." #. jsckc #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:595 @@ -1716,7 +1716,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:599 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 "" +msgstr "Кликните дугме да сузите прозорче, а затим корисите миша да изаберете опсег ћелија у листу. Кликните на дугме поново да вратите прозорче на пуну величину." #. GZS6d #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:618 @@ -1728,7 +1728,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:627 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 "" +msgstr "Омогућава да користите вредности за позитивне грешке и унутар вредности негативних грешака. Можете само изменити вредности у пољу „Позитивне (+)“, а вредности ће бити аутоматски копирање у поље „Негативне (-)“." #. ogVMg #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:645 @@ -1812,7 +1812,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:115 msgctxt "insertaxisdlg|extended_tip|primaryX" msgid "Displays the X axis as a line with subdivisions." -msgstr "" +msgstr "Приказује X осу као линију са подеоцима." #. XeWVu #: chart2/uiconfig/ui/insertaxisdlg.ui:127 @@ -1824,7 +1824,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:136 msgctxt "insertaxisdlg|extended_tip|primaryY" msgid "Displays the Y axis as a line with subdivisions." -msgstr "" +msgstr "Приказује Y осу као линију са подеоцима." #. FoAXW #: chart2/uiconfig/ui/insertaxisdlg.ui:148 @@ -1836,7 +1836,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:157 msgctxt "insertaxisdlg|extended_tip|primaryZ" msgid "Displays the Z axis as a line with subdivisions." -msgstr "" +msgstr "Приказује Z осу као линију са подеоцима." #. YZ7GG #: chart2/uiconfig/ui/insertaxisdlg.ui:176 @@ -1854,7 +1854,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:220 msgctxt "insertaxisdlg|extended_tip|secondaryX" msgid "Displays a secondary X axis in the chart." -msgstr "" +msgstr "Приказује секундарну X осу на графику." #. 598Gk #: chart2/uiconfig/ui/insertaxisdlg.ui:232 @@ -1866,7 +1866,7 @@ #: 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 "" +msgstr "Главна и секундарна оса могу имати различите скале. На пример, можете ставити скалу од 2 cm на једну и 1,5 cm на другу осу. " #. CAFjD #: chart2/uiconfig/ui/insertaxisdlg.ui:253 @@ -1884,7 +1884,7 @@ #: chart2/uiconfig/ui/insertaxisdlg.ui:308 msgctxt "insertaxisdlg|extended_tip|InsertAxisDialog" msgid "Specifies the axes to be displayed in the chart." -msgstr "" +msgstr "Одређује које осе се приказују на графику." #. 2eGKS #: chart2/uiconfig/ui/insertgriddlg.ui:8 @@ -1902,7 +1902,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:115 msgctxt "insertgriddlg|extended_tip|primaryX" msgid "Adds gridlines to the X axis of the chart." -msgstr "" +msgstr "Додаје линије мреже на X осу графика." #. FEBZW #: chart2/uiconfig/ui/insertgriddlg.ui:127 @@ -1914,7 +1914,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:136 msgctxt "insertgriddlg|extended_tip|primaryY" msgid "Adds gridlines to the Y axis of the chart." -msgstr "" +msgstr "Додаје линије мреже на Y осу графика." #. XEXTu #: chart2/uiconfig/ui/insertgriddlg.ui:148 @@ -1926,7 +1926,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:157 msgctxt "insertgriddlg|extended_tip|primaryZ" msgid "Adds gridlines to the Z axis of the chart." -msgstr "" +msgstr "Додаје линије мреже на Z осу графика." #. 9QbAA #: chart2/uiconfig/ui/insertgriddlg.ui:176 @@ -1944,7 +1944,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:220 msgctxt "insertgriddlg|extended_tip|secondaryX" msgid "Adds gridlines that subdivide the X axis into smaller sections." -msgstr "" +msgstr "Додаје линије мреже које деле X осе на мање деонице." #. PkzaY #: chart2/uiconfig/ui/insertgriddlg.ui:232 @@ -1956,7 +1956,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:241 msgctxt "insertgriddlg|extended_tip|secondaryY" msgid "Adds gridlines that subdivide the Y axis into smaller sections." -msgstr "" +msgstr "Додаје линије мреже које деле Y осе на мање деонице." #. CcCG8 #: chart2/uiconfig/ui/insertgriddlg.ui:253 @@ -1968,7 +1968,7 @@ #: chart2/uiconfig/ui/insertgriddlg.ui:262 msgctxt "insertgriddlg|extended_tip|secondaryZ" msgid "Adds gridlines that subdivide the Z axis into smaller sections." -msgstr "" +msgstr "Додаје линије мреже које селе Z осе на мање деонице." #. QBQD4 #: chart2/uiconfig/ui/insertgriddlg.ui:281 @@ -1980,7 +1980,7 @@ #: 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 "" +msgstr "Можете поделити оде на деонице тако што им доделите линије мреже. Ово дозвољава бољи преглед графика, нарочито ако радите са већим графицима." #. rqADt #: chart2/uiconfig/ui/inserttitledlg.ui:8 @@ -2004,13 +2004,13 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:125 msgctxt "inserttitledlg|extended_tip|maintitle" msgid "Enter the desired title for the chart." -msgstr "" +msgstr "Унесите жељени наслов за график." #. 5eiq7 #: chart2/uiconfig/ui/inserttitledlg.ui:143 msgctxt "inserttitledlg|extended_tip|subtitle" msgid "Enter the desired subtitle for the chart." -msgstr "" +msgstr "Унесите жељени поднаслов за график." #. y8KiH #: chart2/uiconfig/ui/inserttitledlg.ui:182 @@ -2034,19 +2034,19 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:229 msgctxt "inserttitledlg|extended_tip|primaryXaxis" msgid "Enter the desired title for the X axis of the chart." -msgstr "" +msgstr "Унесите жељени наслов за X осу графика." #. 3m5Dk #: chart2/uiconfig/ui/inserttitledlg.ui:247 msgctxt "inserttitledlg|extended_tip|primaryYaxis" msgid "Enter the desired title for the Y axis of the chart." -msgstr "" +msgstr "Унесите жељени наслов за Y осу графика." #. PY2EU #: chart2/uiconfig/ui/inserttitledlg.ui:265 msgctxt "inserttitledlg|extended_tip|primaryZaxis" msgid "Enter the desired title for the Z axis of the chart." -msgstr "" +msgstr "Унесите жељени наслов за Z осу графика." #. aHvzY #: chart2/uiconfig/ui/inserttitledlg.ui:282 @@ -2070,13 +2070,13 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:351 msgctxt "inserttitledlg|extended_tip|secondaryXaxis" msgid "Enter the desired secondary title for the X axis of the chart." -msgstr "" +msgstr "Унесите жељени секундарни наслов за X осе графика." #. bnwti #: chart2/uiconfig/ui/inserttitledlg.ui:369 msgctxt "inserttitledlg|extended_tip|secondaryYaxis" msgid "Enter the desired secondary title for the Y axis of the chart." -msgstr "" +msgstr "Унесите жељени секундарни наслов за Y осе графика." #. XvJwD #: chart2/uiconfig/ui/inserttitledlg.ui:386 @@ -2088,7 +2088,7 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:418 msgctxt "inserttitledlg|extended_tip|InsertTitleDialog" msgid "Opens a dialog to enter or modify the titles in a chart." -msgstr "" +msgstr "Отвара прозорче за унос или измену наслова у графику." #. 23FsQ #: chart2/uiconfig/ui/paradialog.ui:8 @@ -2190,7 +2190,7 @@ #: chart2/uiconfig/ui/sidebarelements.ui:143 msgctxt "sidebarelements|checkbutton_legend" msgid "Show legend" -msgstr "" +msgstr "Прикажи легенду" #. XxG3r #: chart2/uiconfig/ui/sidebarelements.ui:147 @@ -2232,7 +2232,7 @@ #: chart2/uiconfig/ui/sidebarelements.ui:206 msgctxt "sidebarelements|checkbutton_no_overlay" msgid "Show the legend without overlapping the chart" -msgstr "" +msgstr "Приказује легенду без преклапања графика" #. UVbZR #: chart2/uiconfig/ui/sidebarelements.ui:228 @@ -2448,7 +2448,7 @@ #: chart2/uiconfig/ui/sidebarseries.ui:45 msgctxt "sidebarseries|checkbutton_label" msgid "Show data labels" -msgstr "Прикажите натписе за податаке" +msgstr "Прикажи натписе за податке" #. BsC9D #: chart2/uiconfig/ui/sidebarseries.ui:69 @@ -2544,91 +2544,91 @@ #: chart2/uiconfig/ui/sidebartype.ui:85 msgctxt "sidebartype|3dlook" msgid "_3D Look" -msgstr "" +msgstr "_3Д изглед" #. mjrkY #: chart2/uiconfig/ui/sidebartype.ui:105 msgctxt "sidebartype|3dscheme" msgid "Simple" -msgstr "" +msgstr "Једноставно" #. urfc7 #: chart2/uiconfig/ui/sidebartype.ui:106 msgctxt "sidebartype|3dscheme" msgid "Realistic" -msgstr "" +msgstr "Реалистично" #. gYXXE #: chart2/uiconfig/ui/sidebartype.ui:127 msgctxt "sidebartype|shapeft" msgid "Sh_ape" -msgstr "" +msgstr "_Облик" #. B6KS5 #: chart2/uiconfig/ui/sidebartype.ui:189 msgctxt "sidebartype|stack" msgid "_Stack series" -msgstr "" +msgstr "На_слагане серије" #. Yau6n #: chart2/uiconfig/ui/sidebartype.ui:214 msgctxt "sidebartype|ontop" msgid "On top" -msgstr "" +msgstr "На врху" #. f2J43 #: chart2/uiconfig/ui/sidebartype.ui:229 msgctxt "sidebartype|percent" msgid "Percent" -msgstr "" +msgstr "Проценат" #. iDSaa #: chart2/uiconfig/ui/sidebartype.ui:244 msgctxt "sidebartype|deep" msgid "Deep" -msgstr "" +msgstr "Дубоко" #. KaS7Z #: chart2/uiconfig/ui/sidebartype.ui:275 msgctxt "sidebartype|linetypeft" msgid "_Line type" -msgstr "" +msgstr "Врста _линије" #. Hqc3N #: chart2/uiconfig/ui/sidebartype.ui:290 msgctxt "sidebartype|linetype" msgid "Straight" -msgstr "" +msgstr "Право" #. EB58Z #: chart2/uiconfig/ui/sidebartype.ui:291 msgctxt "sidebartype|linetype" msgid "Smooth" -msgstr "" +msgstr "Углађено" #. qLn3k #: chart2/uiconfig/ui/sidebartype.ui:292 msgctxt "sidebartype|linetype" msgid "Stepped" -msgstr "" +msgstr "Степенасто" #. jKDXh #: chart2/uiconfig/ui/sidebartype.ui:302 msgctxt "sidebartype|properties" msgid "Properties..." -msgstr "" +msgstr "Особине…" #. xW9CQ #: chart2/uiconfig/ui/sidebartype.ui:320 msgctxt "sidebartype|sort" msgid "_Sort by X values" -msgstr "" +msgstr "По_ређај по X вредностима" #. thu3G #: chart2/uiconfig/ui/sidebartype.ui:343 msgctxt "sidebartype|nolinesft" msgid "_Number of lines" -msgstr "" +msgstr "_Број линија" #. Ledzw #: chart2/uiconfig/ui/smoothlinesdlg.ui:22 @@ -2658,7 +2658,7 @@ #: chart2/uiconfig/ui/smoothlinesdlg.ui:136 msgctxt "smoothlinesdlg|extended_tip|SplineTypeComboBox" msgid "Apply a line curve model." -msgstr "" +msgstr "Примени модел криве линије." #. eecxc #: chart2/uiconfig/ui/smoothlinesdlg.ui:171 @@ -2676,19 +2676,19 @@ #: chart2/uiconfig/ui/smoothlinesdlg.ui:203 msgctxt "smoothlinesdlg|extended_tip|ResolutionSpinbutton" msgid "Set the resolution." -msgstr "" +msgstr "Поставља резолуцију." #. a4btg #: chart2/uiconfig/ui/smoothlinesdlg.ui:221 msgctxt "smoothlinesdlg|extended_tip|PolynomialsSpinButton" msgid "Set the degree of the polynomials." -msgstr "" +msgstr "Поставља степене за полиноме." #. YECJR #: chart2/uiconfig/ui/smoothlinesdlg.ui:255 msgctxt "smoothlinesdlg|extended_tip|SmoothLinesDialog" msgid "Apply a line curve model." -msgstr "" +msgstr "Примењује модел криве линије." #. RyJg5 #: chart2/uiconfig/ui/steppedlinesdlg.ui:132 @@ -2700,7 +2700,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:142 msgctxt "steppedlinesdlg|extended_tip|step_start_rb" msgid "Start with horizontal line and step up vertically at the end." -msgstr "" +msgstr "Почиње за положеном линијом и постепено је помера усправно до краја." #. iJCAt #: chart2/uiconfig/ui/steppedlinesdlg.ui:153 @@ -2712,7 +2712,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:164 msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb" msgid "Start to step up vertically and end with horizontal line." -msgstr "" +msgstr "Почиње померање усправно и помера је ка положеној линији на крају." #. vtGik #: chart2/uiconfig/ui/steppedlinesdlg.ui:175 @@ -2724,7 +2724,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:186 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 "" +msgstr "Почиње са положеном линијом и помера је усправно на средини X вредности и на крају долази до усправне линије." #. X3536 #: chart2/uiconfig/ui/steppedlinesdlg.ui:197 @@ -2736,7 +2736,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:208 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 "" +msgstr "Почиње померај усправно на средини Y вредности, помера линију положено, а на крају долази до усправне линије." #. oDDMr #: chart2/uiconfig/ui/steppedlinesdlg.ui:236 @@ -2748,7 +2748,7 @@ #: chart2/uiconfig/ui/titlerotationtabpage.ui:47 msgctxt "titlerotationtabpage|extended_tip|OrientDegree" msgid "Allows you to manually enter the orientation angle." -msgstr "" +msgstr "Дозвољава да ручно унесете угао окретања." #. ViJ9k #: chart2/uiconfig/ui/titlerotationtabpage.ui:61 @@ -2766,7 +2766,7 @@ #: chart2/uiconfig/ui/titlerotationtabpage.ui:106 msgctxt "titlerotationtabpage|extended_tip|stackedCB" msgid "Assigns vertical text orientation for cell contents." -msgstr "" +msgstr "Поставља усправно усмерење текста за садржаје ћелије." #. 3BaMa #: chart2/uiconfig/ui/titlerotationtabpage.ui:118 @@ -2784,13 +2784,13 @@ #: chart2/uiconfig/ui/titlerotationtabpage.ui:149 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 "" +msgstr "Одређује смер текста за пасус који користи комплексни распоред текста (CTL). Ова могућност је доступна само уколико омогућите комплексни распоред текста." #. 9cDiw #: chart2/uiconfig/ui/titlerotationtabpage.ui:168 msgctxt "titlerotationtabpage|extended_tip|dialCtrl" msgid "Clicking anywhere on the wheel defines the variable text orientation." -msgstr "" +msgstr "Кликните било где на точак да одредите различито усмерење текста." #. syx89 #: chart2/uiconfig/ui/titlerotationtabpage.ui:185 @@ -2826,7 +2826,7 @@ #: 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 "" +msgstr "Изаберите шему са списка или укључите било које поље испод." #. EyGsf #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:78 @@ -2838,7 +2838,7 @@ #: 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 "" +msgstr "Уколико је омогућено, примењује Гурауд сенчење. У супротном примењује равну сенку." #. SMFrD #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:99 @@ -2850,7 +2850,7 @@ #: 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 "" +msgstr "Приказује ивице око области постављањем стила линије на „Испуњено“." #. CpWRj #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:120 @@ -2862,7 +2862,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneAppearance.ui:129 msgctxt "tp_3D_SceneAppearance|extended_tip|CB_ROUNDEDEDGE" msgid "Edges are rounded by 5%." -msgstr "" +msgstr "Ивице су заобљене за 5%." #. U5CTF #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:37 @@ -2874,7 +2874,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:46 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 "" +msgstr "Уколико су омогућене осе са углом удесно, можете окренути садржај графика само у X и Y смеру, тј. паралелно да ивицама графика. Осе са углом удесно су подразумевано омогућене за нове 3Д графике. Графици у виду пите и крофне не подржавају овај тип оса." #. y8Tyg #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:60 @@ -2904,7 +2904,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:112 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 "" +msgstr "Укључите поље „Перспектива“ да прикажете график као што га види објектив камере. Користите дугмиће да подесите проценат. Већи проценат ће повећати ближе објекте у односу на оне који су далеко." #. mdPAi #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:133 @@ -2916,25 +2916,25 @@ #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:134 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 "" +msgstr "Укључите поље „Перспектива“ да прикажете график као што га види објектив камере. Користите дугмиће да подесите проценат. Већи проценат ће повећати ближе објекте у односу на оне који су далеко." #. PP8jT #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:153 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 "" +msgstr "Поставља ротацију графика на z оси. Преглед одговара новим поставкама." #. AyMWn #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:171 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 "" +msgstr "Поставља ротацију графика на y осу. Преглед одговара новим поставкама." #. EGS4B #: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:189 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 "" +msgstr "Поставља ротацију графика на x осу. Преглед одговара новим поставкама." #. RGQDC #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:96 @@ -2946,7 +2946,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:101 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_1" msgid "Click to enable or disable the specular light source with highlights." -msgstr "" +msgstr "Кликните да омогућите или онемогућите метални извор светлости за светле делове." #. bwfDH #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:115 @@ -2958,7 +2958,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:120 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_2" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. uMVDV #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:134 @@ -2970,7 +2970,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:139 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_3" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. 6CBDG #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:153 @@ -2982,7 +2982,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:158 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_4" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. Hf5Du #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:172 @@ -2994,7 +2994,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:177 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_5" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. T7qDZ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:191 @@ -3006,7 +3006,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:196 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_6" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. mSsDD #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:210 @@ -3018,7 +3018,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:215 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_7" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. wY5CR #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:229 @@ -3030,13 +3030,13 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:234 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHT_8" msgid "Click to enable or disable the uniform light source." -msgstr "" +msgstr "Кликните да омогућите или онемогућите уједначен извор светлости." #. DwEDc #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:268 msgctxt "tp_3D_SceneIllumination|extended_tip|LB_LIGHTSOURCE" msgid "Select a color for the selected light source." -msgstr "" +msgstr "Изаберите боју за изабрани извор светлости." #. gfdAB #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:283 @@ -3048,19 +3048,19 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:287 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_LIGHTSOURCE_COLOR" msgid "Select a color using the color dialog." -msgstr "" +msgstr "Изаберите воју помоћу прозорчета за боје." #. mgXyK #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:312 msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE" msgid "_Light Source" -msgstr "" +msgstr "_Извор светлости" #. WssJA #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:358 msgctxt "tp_3D_SceneIllumination|extended_tip|LB_AMBIENTLIGHT" msgid "Select a color for the ambient light." -msgstr "" +msgstr "Изаберите боју амбијенталног светла." #. NpAu7 #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:373 @@ -3072,13 +3072,13 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:377 msgctxt "tp_3D_SceneIllumination|extended_tip|BTN_AMBIENT_COLOR" msgid "Select a color using the color dialog." -msgstr "" +msgstr "Изаберите боју помоћу прозорчета за боје." #. LFMGL #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:395 msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT" msgid "_Ambient Light" -msgstr "" +msgstr "_Амбијентална светлост" #. snUGf #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:439 @@ -3090,7 +3090,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:497 msgctxt "tp_3D_SceneIllumination|extended_tip|tp_3D_SceneIllumination" msgid "Set the light sources for the 3D view." -msgstr "" +msgstr "Поставите извор светлости за 3Д приказ." #. XRVrG #: chart2/uiconfig/ui/tp_AxisPositions.ui:48 @@ -3126,19 +3126,19 @@ #: 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 "" +msgstr "Изаберите тачку пресека осталих оса: на почетку, на крају, на задату вредност или на категорију." #. FwCEp #: chart2/uiconfig/ui/tp_AxisPositions.ui:90 msgctxt "tp_AxisPositions|extended_tip|EDT_CROSSES_OTHER_AXIS_AT" msgid "Enter the value where the axis line should cross the other axis." -msgstr "" +msgstr "Унесите вредност где ће линије осе пресећи остале осе." #. AnLbY #: chart2/uiconfig/ui/tp_AxisPositions.ui:114 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 "" +msgstr "Изаберите категорију где линија осе треба да пресече остале осе." #. VYVhe #: chart2/uiconfig/ui/tp_AxisPositions.ui:133 @@ -3156,7 +3156,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:188 msgctxt "tp_AxisPositions|RB_ON" msgid "_On tick marks" -msgstr "" +msgstr "_На већим ознакама" #. FaKJZ #: chart2/uiconfig/ui/tp_AxisPositions.ui:197 @@ -3216,7 +3216,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:299 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 "" +msgstr "Поставите где желите да поставите натписе: поред осе, поред осе (с друге стране), изван почетка или унутар краја." #. DUNn4 #: chart2/uiconfig/ui/tp_AxisPositions.ui:324 @@ -3318,7 +3318,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:564 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 "" +msgstr "Изаберите где желите да поставите ознаке: на натписе, на осу или на осу и натписе." #. jK9rf #: chart2/uiconfig/ui/tp_AxisPositions.ui:589 @@ -3558,7 +3558,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:87 msgctxt "tp_DataLabel|extended_tip|CB_CATEGORY" msgid "Shows the data point text labels." -msgstr "" +msgstr "Приказује текстуални натпис за тачку података." #. kce65 #: chart2/uiconfig/ui/tp_DataLabel.ui:98 @@ -3570,7 +3570,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:107 msgctxt "tp_DataLabel|extended_tip|CB_SYMBOL" msgid "Displays the legend icons next to each data point label." -msgstr "" +msgstr "Приказује иконицу легенде поред сваког натписа тачке података." #. K3uFN #: chart2/uiconfig/ui/tp_DataLabel.ui:118 @@ -3738,7 +3738,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:276 msgctxt "tp_DataLabel|extended_tip|LB_LABEL_PLACEMENT" msgid "Selects the placement of data labels relative to the objects." -msgstr "" +msgstr "Одређује положај натписа података у односу на објекте." #. PNGYD #: chart2/uiconfig/ui/tp_DataLabel.ui:296 @@ -3756,13 +3756,13 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:358 msgctxt "tp_DataLabel|extended_tip|CT_DIAL" msgid "Click in the dial to set the text orientation for the data labels." -msgstr "" +msgstr "Кликните на бројчаник да изаберете оријентацију за натписе података." #. eKwUH #: chart2/uiconfig/ui/tp_DataLabel.ui:379 msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES" msgid "Enter the counterclockwise rotation angle for the data labels." -msgstr "" +msgstr "Унесите угао ротације улево за натписе података." #. VArif #: chart2/uiconfig/ui/tp_DataLabel.ui:393 @@ -3792,13 +3792,13 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:493 msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "_Повежи приказане натписе и тачке података" #. BXobT #: chart2/uiconfig/ui/tp_DataLabel.ui:502 msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "Црта линију која повезује натписе података и тачке података" #. MBFBB #: chart2/uiconfig/ui/tp_DataLabel.ui:520 @@ -3810,7 +3810,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:536 msgctxt "tp_DataLabel|extended_tip|tp_DataLabel" msgid "Opens the Data Labels dialog, which enables you to set the data labels." -msgstr "" +msgstr "Отвара прозорче за натписе података, који вам омогућава да поставите натписе за податке." #. rXE7B #: chart2/uiconfig/ui/tp_DataPointOption.ui:41 @@ -3948,13 +3948,13 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:425 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 "" +msgstr "Приказује адресу изворног опсега за категорије (текст који можете видети на x оси унутар категорије графика). За XY график, текстуално поље садржи изворни опсег натписа података који се приказују за тачке података. Да умањите овај прозорчић приликом избора опсега података у Рачуну, кликните на дугме „Изабери опсег података“." #. EYFEo #: chart2/uiconfig/ui/tp_DataSource.ui:442 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 "" +msgstr "Приказује адресу изворног опсега за категорије (текст који можете видети на x оси унутар категорије графика). За XY график, текстуално поље садржи изворни опсег натписа података који се приказују за тачке података. Да умањите овај прозорчић приликом избора опсега података у Рачуну, кликните на дугме „Изабери опсег података“." #. YwALA #: chart2/uiconfig/ui/tp_DataSource.ui:479 @@ -4671,7 +4671,7 @@ #: 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 "" +msgstr "Ова опција је подразумевано укључена. Све серије података се равнају на основу Y осу." #. aZ7G8 #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:64 @@ -5073,7 +5073,7 @@ #: chart2/uiconfig/ui/tp_axisLabel.ui:29 msgctxt "tp_axisLabel|extended_tip|showlabelsCB" msgid "Specifies whether to show or hide the axis labels." -msgstr "" +msgstr "Одређује да ли су приказани или сакривени натписи на осама." #. HFhGL #: chart2/uiconfig/ui/tp_axisLabel.ui:67 @@ -5235,19 +5235,19 @@ #: chart2/uiconfig/ui/wizelementspage.ui:92 msgctxt "wizelementspage|extended_tip|primaryXaxis" msgid "Enter a label for the x-axis (horizontal)." -msgstr "" +msgstr "Омогући наптис за x осу (водоравно)." #. 4vThc #: chart2/uiconfig/ui/wizelementspage.ui:110 msgctxt "wizelementspage|extended_tip|primaryYaxis" msgid "Enter a label for the y-axis (vertical)." -msgstr "" +msgstr "Омогући натпис за y осу (усправно)." #. 7zPH5 #: chart2/uiconfig/ui/wizelementspage.ui:128 msgctxt "wizelementspage|extended_tip|primaryZaxis" msgid "Enter a label for the z-axis. This option is only available for three-dimensional charts." -msgstr "" +msgstr "Унесите натпис за z осу. Ова опције је доступна само за тродимензионалне графике." #. Qpj9H #: chart2/uiconfig/ui/wizelementspage.ui:141 @@ -5289,7 +5289,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:238 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 "" +msgstr "Омогућава натпис за секундарну x осу. Ова опције је доступна само за графике који подржавају секундарне x осе." #. E6Y7y #: chart2/uiconfig/ui/wizelementspage.ui:274 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sr/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-22 17:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-Project-Style: openoffice\n" #. GyY9M @@ -2456,1074 +2456,1068 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME подржава четири нивоа сигурности макроа (од најнижег до највишег) и поверљиве изворе." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 ће се пријавити као организација у Гуглово лето за кодирање (GSoC), погледајте:" - -#. SNTbc -#: 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 "Да ли знате да можете прикачити коментаре на део текста? Само користите пречицу %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Треба да померите један или више пасуса? Нема потребе да идете на исеци и убаци, користите пречице са тастатуре %MOD1+%MOD2+стрелица (горе/доле)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Измените основне фонтове за предефинисани шаблон или тренутни документ за Алатке ▸ Опције ▸ %PRODUCTNAME Писац ▸ Основни фонтови." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Желите да пронађете речи које садрже мање од 10 знакова? Укључите опцију Уређивање ▸ Пронађи и замени ▸ Претрага ▸ [a-z]{10,} ▸ Остале опције ▸ Регуларни израз." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Отвара CSV датотеку као нови лист унутар тренутне таблице преко Лист ▸ Лист из датотеке." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Куцање подебљаним, искошеним или подвученим словима у Писцу се може наставити користећи подразумеване особине уз помоћ пречице %MOD1+Shift+X (уклоните директни формат знака)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Користите %MOD1+%MOD2+Shift+V да уметнете садржај из оставе као неформатиран текст." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Уредите изглед фуснота са Алатке ▸ Фусноте и ендноте…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "Желите да измените проверу писања за неки део текста? Кликните на језичку зону у траци стања или још боље примените други стил." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Писац може да уметне празне странице између две узастопне непарне (или парне) странице. Укључите „Штампај аутоматски уметнуте празне странице“ у прозорчету за штампу из језичка %PRODUCTNAME Писца." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Желите да прецизно подесите положај? %MOD2+стрелице померају објекте (облике, слике или формуле) за по један пиксел." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Након инсталирања, помоћ ће бити доступна притиском на тастер F1. У супротном је можете погледати на нету:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Десни клик на траку стања у %PRODUCTNAME Рачуну и изаберите „Бројање у избору да прикажете бројеве изабраних ћелија." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Желите да имате све или више колона само за део странице %PRODUCTNAME Писца? Идите на Уметни ▸ Одељак, подесите ширину у језичку „Колоне“ и поставите текст у избор." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Користите Подаци ▸ Статистика за податке о узорку, описну статистику, анализу варијансе, корелацију и још много тога у %PRODUCTNAME Рачуну." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Можете копирати из једног листа у други без оставе. Изаберите подручје за копирање, %MOD1+клик на језичак циљног листа и користите Лист ▸ Попуни ћелије ▸ Попуни листове." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Можете променити изглед %PRODUCTNAME помоћу Алатке ▸ Опције ▸ Приказ." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "У %PRODUCTNAME Презентацији користите Уметни ▸ Медији ▸ Фото албум да направите приказ слајдова из серије слика са опцијом за фото албум." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Можете приказати формуле уместо резултата са Приказ ▸ Прикажи формулу (или Алатке ▸ Опције ▸ %PRODUCTNAME Рачун ▸ Приказ ▸ Екран ▸ Формуле)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME се развија кроз пријатељску заједницу, коју чине хиљаде аутора широм света. Придружите нам се уколико можете помоћи на неки начин." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Леворуки сте? Омогућите Алатке ▸ Опције ▸ Поставке језика ▸ Језици ▸ Азијски и укључите Алатке ▸ Опције ▸ %PRODUCTNAME Писац ▸ Приказ ▸ Лењири ▸ Поравнато десно, да прикажете линију за клизање са леве стране." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Желите да наслов поглавља увек почиње страницом? Уредите Наслов1 (стил пасуса) ▸ Ток текста ▸ Преломи и изаберите Уметни ▸ Страница ▸ Испред." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Вредност датума/времена представља број дана од изабране нулте вредности: у бројевима, цели број представља датум а децимале представљају време (протекло у данима), где је вредност 0,5 подне." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del брише све од курсора до краја тренутне реченице." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Користите колоне или натписе редова у формулама. На пример, уколико имате две колоне, „Време“ и „km“, можете користити =Време/km да добијете минуте по километру." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Нервирају вас „марширајући мрави“ око ћелија у Рачуну. Притисните Esc да их зауставите; копирани садржај ће остати доступан за уметање." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Желите да постанете %PRODUCTNAME Амбасадор? Постоје сертификати за програмере, администраторе и тренере." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Изаберите „Хијерархијски преглед“ у бочној траци за стилове да видите односе између стилова." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Можете користите стилове да направите уједначене таблице у документу. Изаберите један из предодређених стилова (F11) или преко Табела ▸ Ауто форматирање." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Хоћете да подесите %MOD1 тастер за отварање хипервеза? Алатке ▸ Опције ▸ %PRODUCTNAME ▸ Сигурност ▸ Опције ▸ „%MOD1+кликните потребно за отварање хипервеза“." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Уколико желите да прикажете калкулатор на појединачним елементима формуле, изаберите жељене елементе и притисните F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "Желите да прикажете само највеће вредности из таблице на екран? Изаберите мени Подаци ▸ Ауто филтер, кликните на приложену стрелицу и изаберите „Првих 10“." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Уз %PRODUCTNAME је једноставно да инсталирате нове речнике: они су обезбеђени кроз проширења." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME има преносну верзију која омогућава преносивост. Чак и без администраторског приступа на рачунару можете инсталирати %PRODUCTNAME Преносни на ваш хард диск." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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 "Желите да се документи Писца не отварају са курсором на истом месту као када је сачуван? Додајте име и презиме у Алатке ▸ Опције ▸ %PRODUCTNAME ▸ Кориснички подаци ▸ Име и презиме." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Управљање цитатима? Користите додатна проширења за ову опцију." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Желите да уметнете вредност на исто место на неколико листора? Изаберите лист, притисните %MOD1 и кликните да језичке пре уноса." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Можете прилагодити средње дугме миша преко Алатке ▸ Опције ▸ %PRODUCTNAME ▸ Приказ ▸ Средње дугме миша." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Желите да штампате по две усправне странице на једу положену (смањује А4 на А5)? Користите Датотека ▸ Штампај и изаберите „Странице као листови“." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Поставља текст који често користите као Ауто текст. Моћи ћете да их уметнете на основу имена, пречице или траке алаки у било ком документу Писца." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 Рачун не рачуна са лева на десно, али поштује редослед Заграда – Експонента – Множења – Дељења – Одузимања." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Преузмите %PRODUCTNAME документацију или бесплатне приручнике на:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Желите да уредите приказ хипервеза у таблици? Уметните их преко функције HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Искључите „Синхронизуј листове“ из Алатке ▸ Опције ▸ %PRODUCTNAME Рачун ▸ Приказ ▸ Увећање ако желите да сваки лист Рачуна има свој фактор увећања." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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 "Пратите ћелије коришћене у формули, претходнице (Shift+F9) или зависне (Shift+F5) (или користите Алатке ▸ Детектив). Сваки погодак ће вас померити још један корак у ланцу." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Уметните и нумеришите формуле у једном кораку, укуцајте Fn а затим F3. Ауто текст се умеће уз формулу, а број равна унутар табеле." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Користите Android или iPhone за даљинско управљање презентацијом." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Желите да знате колико дана има у овом месецу? Користите функцију DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Ваши бројеви се приказују као ### у вашој табели? То значи да је колона превише уска за приказ свих цифара." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Омогућите вишеструко паралелно рачунање формула ћелија преко Алатке ▸ Опције ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Ваше донације подржавају заједницу широм света." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Желите да додате x месеци на датум? Користите =EDATE(датум;месеци)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Да изаберете непрекинути опсег ћелија које садрже податке и које су везане за празан ред и колоне, користите %MOD1+* (на нумеричкој тастатури)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Желите да извезете формуле у CSV? Користите Датотеке ▸ Сачувај као ▸ Врста, изаберите Текстуални CSV, укључите „Уреди подешавање филтера“ и „Сачувај формуле ћелија“ у новом прозорчићу." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Конзола презентације је сјајна могућност када радите са %PRODUCTNAME Презентацијама. Да ли сте је већ испробали?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Једноставно претворите документе у PDF једним кликом на PDF иконицу у траци алата." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Желите да изаберете опсег ћелија без листања? Унесите референцу опсега (нпр. A1: A1000) у пољу за име у притисните Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Желите да сазнате исправне параметре наредбе? Покрените soffice са параметрима --help, -h или -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Можете окренути ћелије табеле помоћу Табела ▸ Особине… ▸ Ток текста ▸ Оријентација текста." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "У %PRODUCTNAME Цртању можете изменити тачку 0/0 на лењирима и превући пресек два лењира у горњи леви угао радног простора." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Преместите колону у Рачуну између друге две у само једном кораку. Кликните на заглавље, а затим на ћелију колоне, задржите дугме миша и померите шта желите држећи тастер %MOD2." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Аутоматски означава уносе у азбучном попису уз помоћ датотеке сагласности." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME може аутоматски да додаје нумерисане натписе када уметнете објекте. Погледајте Алатке ▸ Опције ▸ %PRODUCTNAME Писац ▸ Ауто натписи." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Уз %PRODUCTNAME можете користити налог Google поште да шаљете циркуларне е-поруке. Подесите Алатке ▸ Опције ▸ %PRODUCTNAME Писац ▸ Циркуларна е-пошта." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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 "Примените стил пасуса за заглавље у Писцу помоћу пречице %MOD1+1, за Заглавље 1, %MOD1+2 за Заглавље 2,…" #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Немојте се погубити у великим документима. Користите навигатор (F5) да се крећете кроз садржај." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Уреди ▸ Пронаћи и замени вам допушта да директно уметнете посебне знакове. Десни клик на поље за унос или притисните Shift+%MOD+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Да уметнете тренутни датум у ваш документ, користите Уметни ▸ Поље ▸ Датум." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Имате превише слика у документу Писца? Убрзајте приказ искључивањем опције Приказ ▸ Слике и графици." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." -msgstr "" +msgstr "Користите Лист ▸ Попуна ћелије ▸ Насумични број да направите насумичне низове на основу различитих расподела." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Преименујте ваше слајдове у Презентацији да би лакше користили опцију „Иди на страницу“ и да би имали бољи сажети приказ слајдова уместо Слајд1, Слајд2,…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Прозорче за набрајање поглавља вам омогућава да поставите текст пре броја поглавља. На пример, укуцајте „Поглавље“ да прикажење „Поглавље 1“" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "" +msgstr "Желите да транспонујете табелу у Писцу? Отворите је у Рачуну, транспонујте је копирањем садржаја и посебним убацивањем као „Форматиран текст у Писцу“" #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "" +msgstr "Да прикажете „Усправни текст“ у траци алата за цртање, укључите Алатке ▸ Опције ▸ Поставке језика ▸ Језици ▸ Подразумевани језици ▸ Азијски (и укључите видљивост дугмета десним кликом)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "" +msgstr "Да брзо увећате приказ опсега избора, кликните десни тастер на опције за увећање унутар траке стања и изаберите „Оптимално“." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Можете потписати постојеће PDF датотеке, али и проверити постојеће потписе." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Често правите један документ на основу другог? Можете користити шаблоне." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." -msgstr "" +msgstr "Користите Формат ▸ Условно ▸ Уређивање у Рачуну да нађете које ћелије су одређене условним форматирањем." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." -msgstr "" +msgstr "Алатке ▸ Детектив ▸ Означи неисправне податке ће истаћи све ћелије на листу који садржи вредности које се не поклапају са правилима за проверу." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." -msgstr "" +msgstr "Користите угњеђивање фонта за већу сагласност са другим канцеларијским пакетима преко Датотека ▸ Особине ▸ Фонт." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "" +msgstr "Да претворите формулу у статичке вредности не морате из копирати/уметнути. Користите Подаци ▸ Израчунај ▸ Формла у вредност." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "" +msgstr "Можете преформатирати све коментаре у документу кликом на стрелицу унутар коментара и избором „Форматирај све коментаре“." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "" +msgstr "Желите исти распоред приказа на екрану и у штампи? Укључите Алатке ▸ Опције ▸ %PRODUCTNAME Рачун ▸ Опште ▸ Користи мере из штампача за форматирање текста." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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 "Када сте направити Стил који се ослања на неки други, можете унети проценат или вредност у тачки (нпр. 110% или −2pt или +5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "" +msgstr "Да копирате коментар без губитка садржаја циљне ћелије користите „Убаци посебно“ и искључите све осим опције „Коментари“ у прозорчету." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "" +msgstr "Претворите ваше MS Office документе у OpenDocument формат преко помоћника за претварање документа из менија Датотека ▸ Помоћници ▸ Претварач документа." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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 "" +msgstr "Додаје слике у позадини таблице преко Уметни ▸ Слика или превузите позадину из Галерије, а затим Формат ▸ Редослед ▸ У позадину." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "" +msgstr "Имате проблем приликом убацивања текста из PDF документа или са веб страница у документе? Покушаје да уметнете неформатиран текст (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." -msgstr "" +msgstr "Можете користити TRIMMEAN() у Рачуну да добијете средњу вредност сета података без највеће и најмање вредности." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "" +msgstr "Опциони, 4. параметар функције VLOOKUP Рачуна указује да ли је прва колона података поређана. Уколико није, унесите FALSE или нулу." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "" +msgstr "Траке алата у зависности од садржаја се отварају у зависности од садржаја. Уколико то не желите, искључите их из Приказ ▸ Траке алата." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." -msgstr "" +msgstr "Желите да центрирате ћелије на штампану страницу Рачуна? Користите Формат ▸ Страница, Страница ▸ Поставке распореда ▸ Поравнање табеле." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "" +msgstr "Оквири могу бити везани тако да текст може тећи с једног на други као у програмима за стоно издаваштво." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." -msgstr "" +msgstr "Изаберите опције у Алатке ▸ Оопције ▸ %PRODUCTNAME Писац ▸ Помоћ за форматирање ▸ Приказ да изаберете да ли се приказују нештампајући знакови." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "" +msgstr "Желите да одете на страницу са одређеним бројем? Кликните на унос у траку стања и користите Уреди ▸ Иди на страницу… или притисните %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." -msgstr "" +msgstr "%PRODUCTNAME подржава преко 150 језика." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "" +msgstr "Искључите Пројекција ▸ Подешавање пројекције ▸ Презентација је увек на врху уколико желите да други програм прикаже прозор испред презентације." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "" +msgstr "Желите да пронађете подебљане речи у документу Писца? Укључите Уређивање ▸ Пронађи и замени ▸ Остале опције ▸ Особине ▸ Дебљина фонта." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." -msgstr "" +msgstr "Можете поређати пасусе или редове табела по азбучном или нумеричком реду преко Алатке ▸ Поређај." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." -msgstr "" +msgstr "Да уметнете пасус пре (након) одељка, притисните %MOD2+Enter на почетку (крају) одељка." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." -msgstr "" +msgstr "%PRODUCTNAME има одељак за шаблоне где можете направити лепе документе, испробајте га!" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "" +msgstr "Израчунајте наплату зајма са Рачуном: нпр. PMT(2%/12;36;2500) за каматну стопу по раздобљу плаћања од 2% годишње, за 36 месеци износи 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "" +msgstr "Не можете пронаћи то што хоћете преко функције VLOOKUP у рачуну? Уз INDEX и MATCH можете урадити све што пожелите!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "" +msgstr "Желите да прикажете скривену колону A? Кликните на ћелију колоне B, притисните леви тастер миша, пометире миша на лево и пустите тастер. Затим је прикажите преко Формат ▸ Колоне ▸ Прикажи." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "" +msgstr "Да промените број страница у Писцу, идите на особине првог пасуса и у језичку Ток текста означите Преломи ▸ Уметни, а затим унесите жељени број." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." -msgstr "" +msgstr "Покрените %PRODUCTNAME у било ком прегледачу преко rollApp облака." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" -msgstr "" +msgstr "Добили сте чудан код грешке у Рачуну, Err: након чега следи број? Ова страница ће вам дати детаљније појашњење:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "" +msgstr "Укључите пасус који није наслов или садржај изменом у језичку „Контура и нумерисање“ унутар поставки пасуса за жељени ниво контуре." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." -msgstr "" +msgstr "Осим садржаја, %PRODUCTNAME може направити азбучни низ, илустрације, табеле, објекте, библиографију или пописе по жељи корисника." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." -msgstr "" +msgstr "Не можете да измените или обришете произвољни стил ћелије? Проверите све листове, ни један не сме бити заштићен." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." -msgstr "" +msgstr "Потребно вам је да попуните низ? Изаберите опсег ћелија и Лист ▸ Испуни ћелије ▸ Попуни серије, а затим изаберите линерни, растући, датуски или аутоматски начин попуне." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "" +msgstr "Желите да знате да ли се ћелија наводи унутар формула или других ћелија? Идите на Алатке ▸ Детектив ▸ Прати зависне (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" -msgstr "" +msgstr "У улазном пољу за опција аутоматског исправљања можете користити заменски знак .*" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." -msgstr "" +msgstr "Желите да умножите ред изнад? Притисните %MOD1+D или користите Лист ▸ Испуни ћелије ▸ Попуни доле." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Да претражујете неколико табела, изаберите их пре него што започнете претрагу." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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 "" +msgstr "%PRODUCTNAME вам помаже да избегнете унос више размака у Писцу. Укључите Алатке ▸ Аутоматско исправљање ▸ Опције аутоматског исправљања ▸ Опције ▸ Занемари дупли размак." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "" +msgstr "Желите да померите курсор у ћелију десно након уноса вредности у Рачуну? Користите Tab уместо тастера Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "" +msgstr "Да прикажете траке за клизање са леве стране, омогућите Алатке ▸ Опције ▸ Поставке језика ▸ Језици ▸ Сложени текст и укључите Лист ▸ Здесна на лево." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "" +msgstr "Превуците форматирани објекат у прозор Стилови и форматирање. Отвориће се прозорче где можете унети име новог стила." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" -msgstr "" +msgstr "Нова верзија %PRODUCTNAME обезбеђује нове могућности, исправке грешака и сигурносне закрпе. Ажурирајте ваш софтвер!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" -msgstr "" +msgstr "Развијате нове XSLT и XML филтере?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." -msgstr "" +msgstr "Притисните Shift+F1 да видите доступне, проширене савете у пољима прозорчића када су „Проширени савети“ онемогућени у Алатке ▸ Опције ▸ %PRODUCTNAME ▸ Опште." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" -msgstr "" +msgstr "Помоћ за %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" -msgstr "" +msgstr "Више података" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." -msgstr "" +msgstr "Покрени ову радњу сада…" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" -msgstr "" +msgstr "Савет дана: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" -msgstr "" +msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" -msgstr "" +msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" -msgstr "" +msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" -msgstr "" +msgstr "⌥ Opt" #. DKCuY #: cui/inc/toolbarmode.hrc:22 @@ -3541,7 +3535,7 @@ #: 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 "" +msgstr "Стандардно корисничко сучеље са проширеном траком алата. Ово је сјајно за искусне кориснике који желе да сами организују своје алатке." #. MEQAE #: cui/inc/toolbarmode.hrc:25 @@ -3673,7 +3667,7 @@ #: cui/inc/treeopt.hrc:52 msgctxt "SID_LANGUAGE_OPTIONS_RES" msgid "Language Settings" -msgstr "Језичка подешавања" +msgstr "Поставке језика" #. JmAVh #: cui/inc/treeopt.hrc:53 @@ -4796,55 +4790,55 @@ #: cui/uiconfig/ui/applyautofmtpage.ui:78 msgctxt "applyautofmtpage|label1" msgid "[M]: Replace while modifying existing text" -msgstr "" +msgstr "[M]: Мењај приликом измене постојећег текста" #. FtXg9 #: cui/uiconfig/ui/applyautofmtpage.ui:90 msgctxt "applyautofmtpage|label2" msgid "[T]: AutoCorrect while typing" -msgstr "" +msgstr "[T]: Аутоматско исправљање током куцања" #. NujUD #: cui/uiconfig/ui/applyautofmtpage.ui:136 msgctxt "applyautofmtpage|m" msgid "[M]" -msgstr "" +msgstr "[M]" #. qanx6 #: cui/uiconfig/ui/applyautofmtpage.ui:158 msgctxt "applyautofmtpage|t" msgid "[T]" -msgstr "" +msgstr "[T]" #. 2tG6L #: cui/uiconfig/ui/applyautofmtpage.ui:205 msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage" msgid "Select the options for automatically correcting errors as you type, and then click OK." -msgstr "" +msgstr "Изаберите опције за аутоматско исправљање грешака док куцате, а затим кликните „У реду“." #. EjG2g #: cui/uiconfig/ui/applylocalizedpage.ui:92 msgctxt "applylocalizedpage|m" msgid "[M]" -msgstr "" +msgstr "[M]" #. YUBPr #: cui/uiconfig/ui/applylocalizedpage.ui:114 msgctxt "applylocalizedpage|t" msgid "[T]" -msgstr "" +msgstr "[T]" #. 9D3Vt #: cui/uiconfig/ui/applylocalizedpage.ui:139 msgctxt "applylocalizedpage|extended_tip|list" msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]." -msgstr "" +msgstr "Одаберите да ли желите замену док куцате [T], или када измените постојећи текст [M]." #. KM3Dj #: cui/uiconfig/ui/applylocalizedpage.ui:200 msgctxt "applylocalizedpage|extended_tip|checklist" msgid "Select to apply the replacements while you type [T], or when you modify existing text [M]." -msgstr "" +msgstr "Изаберите да ли да примените замену док куцате [T], или када промените постојећи текст [M]." #. srHxL #: cui/uiconfig/ui/applylocalizedpage.ui:245 @@ -4874,7 +4868,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:294 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 "" +msgstr "Изаберите посебан знак који ће аутоматски заменити постојеће отворене наводнике у вашем документу када изаберете Алатке – Аутоматско исправљање – Примени." #. FFEVA #: cui/uiconfig/ui/applylocalizedpage.ui:307 @@ -4916,7 +4910,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:371 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 "" +msgstr "Изаберите посебан знак који ће аутоматски заменити постојеће затворене наводнике у вашем документу када изаберете Алатке – Аутоматско исправљање – Примени." #. M4BCQ #: cui/uiconfig/ui/applylocalizedpage.ui:384 @@ -4958,7 +4952,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:490 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 "" +msgstr "Изаберите посебан знак који ће аутоматски заменити постојеће отворене наводнике у вашем документу када изаберете Алатке – Аутоматско исправљање – Примени." #. oqBJC #: cui/uiconfig/ui/applylocalizedpage.ui:503 @@ -5000,7 +4994,7 @@ #: cui/uiconfig/ui/applylocalizedpage.ui:567 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 "" +msgstr "Изаберите посебан знак који ће аутоматски заменити постојеће затворене наводнике у вашем документу када изаберете Алатке – Аутоматско исправљање – Примени." #. FBndB #: cui/uiconfig/ui/applylocalizedpage.ui:580 @@ -5636,7 +5630,7 @@ #: cui/uiconfig/ui/borderpage.ui:111 msgctxt "borderpage|label14" msgid "Pr_esets:" -msgstr "" +msgstr "Пос_тавке:" #. WTqFr #: cui/uiconfig/ui/borderpage.ui:136 @@ -5714,7 +5708,7 @@ #: cui/uiconfig/ui/borderpage.ui:474 msgctxt "borderpage|label10" msgid "Padding" -msgstr "" +msgstr "Попуна" #. 76zLX #: cui/uiconfig/ui/borderpage.ui:534 @@ -6230,7 +6224,7 @@ #: cui/uiconfig/ui/cellalignment.ui:137 msgctxt "cellalignment|extended_tip|checkVertStack" msgid "Aligns text vertically." -msgstr "" +msgstr "Поређај текст усправно." #. XBFYt #: cui/uiconfig/ui/cellalignment.ui:148 @@ -6242,7 +6236,7 @@ #: cui/uiconfig/ui/cellalignment.ui:159 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 "" +msgstr "Ређа азијске знакове један испод другог у изабраним ћелијама. Уколико ћелија садржи више од једног реда текста, редови ће бити претворени у колоне текста поређане здесна на лево. Западни знакови ће бити окренути за 90 степени на десно. Азијски знакови неће бити ротирани." #. rTfQa #: cui/uiconfig/ui/cellalignment.ui:183 @@ -6266,7 +6260,7 @@ #: cui/uiconfig/ui/cellalignment.ui:247 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 "" +msgstr "Прелама текст у други ред у ивици ћелије. Број линија зависи од ширине ћелије." #. GDRER #: cui/uiconfig/ui/cellalignment.ui:258 @@ -6278,7 +6272,7 @@ #: cui/uiconfig/ui/cellalignment.ui:268 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 "" +msgstr "Смањује видну величину фонта тако да се садржај ћелије уклопи у тренутну ширину ћелије. Не можете применити ову наредбу на ћелије које не садрже прелом редова." #. Phw2T #: cui/uiconfig/ui/cellalignment.ui:279 @@ -6290,7 +6284,7 @@ #: cui/uiconfig/ui/cellalignment.ui:291 msgctxt "cellalignment|extended_tip|checkHyphActive" msgid "Enables word hyphenation for text wrapping to the next line." -msgstr "" +msgstr "Омогућава прелом речи за текст који се премала у наредни ред." #. pQLTe #: cui/uiconfig/ui/cellalignment.ui:309 @@ -6308,25 +6302,25 @@ #: cui/uiconfig/ui/cellalignment.ui:385 msgctxt "cellalignment|extended_tip|spinIndentFrom" msgid "Indents from the left edge of the cell by the amount that you enter." -msgstr "" +msgstr "Увлачење са леве ивице ћелије за вредност коју унесете овде." #. dzBtA #: cui/uiconfig/ui/cellalignment.ui:398 msgctxt "cellalignment|labelHorzAlign" msgid "Hori_zontal:" -msgstr "" +msgstr "_Водоравно:" #. Ck3KU #: cui/uiconfig/ui/cellalignment.ui:412 msgctxt "cellalignment|labelVertAlign" msgid "_Vertical:" -msgstr "" +msgstr "_Усправно:" #. mF2bB #: cui/uiconfig/ui/cellalignment.ui:426 msgctxt "cellalignment|labelIndent" msgid "I_ndent:" -msgstr "" +msgstr "Ув_лачење:" #. FUsYk #: cui/uiconfig/ui/cellalignment.ui:441 @@ -6374,7 +6368,7 @@ #: cui/uiconfig/ui/cellalignment.ui:451 msgctxt "cellalignment|extended_tip|comboboxHorzAlign" msgid "Select the horizontal alignment option that you want to apply to the cell contents." -msgstr "" +msgstr "Изаберите опције водоравног поравнања које желите да примените на садржај ћелије." #. Cu2BM #: cui/uiconfig/ui/cellalignment.ui:465 @@ -6416,7 +6410,7 @@ #: cui/uiconfig/ui/cellalignment.ui:474 msgctxt "cellalignment|extended_tip|comboboxVertAlign" msgid "Select the vertical alignment option that you want to apply to the cell contents." -msgstr "" +msgstr "Изаберите опције усправног поравнања које желите да примените на садржај ћелије." #. FT9GJ #: cui/uiconfig/ui/cellalignment.ui:497 @@ -6446,13 +6440,13 @@ #: cui/uiconfig/ui/cellalignment.ui:550 msgctxt "cellalignment|labelABCD" msgid "ABCD" -msgstr "" +msgstr "АБВГ" #. U4vgj #: cui/uiconfig/ui/cellalignment.ui:566 msgctxt "cellalignment|extended_tip|CellAlignPage" msgid "Sets the alignment options for the contents of the current cell, or the selected cells." -msgstr "" +msgstr "Поставља опције поравнања садржаја тренутне ћелије или изабраних ћелија." #. xPtim #: cui/uiconfig/ui/certdialog.ui:24 @@ -6464,13 +6458,13 @@ #: cui/uiconfig/ui/certdialog.ui:40 msgctxt "certdialog|add" msgid "_Select NSS path..." -msgstr "" +msgstr "_Изабери NSS путању…" #. 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 "" +msgstr "Отвара прозорче за избор датотека како би додали нови директоријум са сертификатима за сигурносне мрежне сервисе (NSS) на списак." #. GFGjC #: cui/uiconfig/ui/certdialog.ui:139 @@ -6488,13 +6482,13 @@ #: cui/uiconfig/ui/certdialog.ui:174 msgctxt "certdialog|certdir" msgid "Select a Certificate directory" -msgstr "" +msgstr "Изаберите директоријум са сертификатом" #. 7NJfB #: cui/uiconfig/ui/certdialog.ui:211 msgctxt "certdialog|profile" msgid "Profile" -msgstr "" +msgstr "Профил" #. YBT5H #: cui/uiconfig/ui/certdialog.ui:233 @@ -6512,19 +6506,19 @@ #: cui/uiconfig/ui/certdialog.ui:284 msgctxt "certdialog|extended_tip|CertDialog" msgid "Select or add the correct Network Security Services Certificate directory to use for digital signatures." -msgstr "" +msgstr "Изаберите или додајте директоријум сертификата за сигурносне мрежне сервисе (NSS) који ће бити коришћен за дигиталне потписе." #. xXVpD #: cui/uiconfig/ui/charnamepage.ui:247 msgctxt "charnamepage|extended_tip|weststylelb-nocjk" msgid "Select the formatting that you want to apply." -msgstr "" +msgstr "Изаберите форматирање које желите да примените." #. MR6Nr #: cui/uiconfig/ui/charnamepage.ui:345 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 "" +msgstr "Унесите или измените величину фонта који желите да примените. За фонтове промењиве величине можете унети и децимални број." #. YcKtn #: cui/uiconfig/ui/charnamepage.ui:377 @@ -6542,13 +6536,13 @@ #: cui/uiconfig/ui/charnamepage.ui:439 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 "" +msgstr "Поставља језик који ће провера језика користити за изабрани текст или текст који унесете. Доступни језички модули испред себе имају поље за њихово укључивање." #. NgZJ9 #: cui/uiconfig/ui/charnamepage.ui:458 msgctxt "charnamepage|west_features_button-nocjk" msgid "Features..." -msgstr "" +msgstr "Могућности…" #. nKfjE #: cui/uiconfig/ui/charnamepage.ui:538 @@ -7742,7 +7736,7 @@ #: cui/uiconfig/ui/croppage.ui:341 msgctxt "croppage|label1" msgid "Crop" -msgstr "Исеци" +msgstr "Изрежи" #. VG8gn #: cui/uiconfig/ui/croppage.ui:377 @@ -8731,7 +8725,7 @@ #: cui/uiconfig/ui/effectspage.ui:646 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 "" +msgstr "Опције приступачности „Користи аутоматску боју фонта на екрану“ је укључена. Особине боје фонта се не користе за приказ текста." #. AZF8Q #: cui/uiconfig/ui/effectspage.ui:660 @@ -8935,7 +8929,7 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:147 msgctxt "eventsconfigpage|extended_tip|savein" msgid "Select first where to save the event binding, in the current document or in %PRODUCTNAME." -msgstr "" +msgstr "Најпре изаберите где желите да сачувате везу са догађајем, у тренутном документу или у %PRODUCTNAME." #. C6KwW #: cui/uiconfig/ui/eventsconfigpage.ui:186 @@ -8953,19 +8947,19 @@ #: cui/uiconfig/ui/eventsconfigpage.ui:221 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 "" +msgstr "Поље са дугачким списком садржи догађаје који су додељени макроима. Након што изаберете место у пољу „Сачувај у“, изаберите догађај са списка, а потом кликните на „Додели макро“." #. aCb4v #: cui/uiconfig/ui/eventsconfigpage.ui:246 msgctxt "eventsconfigpage|extended_tip|EventsConfigPage" msgid "Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs." -msgstr "" +msgstr "Додељује макрое догађајима програма. Додељени макро се покреће аутоматски сваки пут када се деси изабрани догађај." #. BvWSS #: cui/uiconfig/ui/fmsearchdialog.ui:8 msgctxt "fmsearchdialog|RecordSearchDialog" msgid "Record Search" -msgstr "" +msgstr "Сними претрагу" #. BiFWr #: cui/uiconfig/ui/fmsearchdialog.ui:24 @@ -9115,7 +9109,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:590 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 "" +msgstr "Омогућава вам да одредите опције претраге на основу сличности у јапанском тексту. Изаберите ово, а затим кликните на дугме „Звуци“ да одредите опције претраге." #. 2Gsbd #: cui/uiconfig/ui/fmsearchdialog.ui:601 @@ -9163,7 +9157,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:687 msgctxt "fmsearchdialog|extended_tip|cbCase" msgid "Specifies that upper and lower case are taken into consideration during the search." -msgstr "" +msgstr "Омогућава да програм узме у обзир велика и мала слова приликом претраге." #. X5q2K #: cui/uiconfig/ui/fmsearchdialog.ui:698 @@ -9175,7 +9169,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:707 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 "" +msgstr "Поново покреће претрагу. Претрага напред ће почети поново са овим записом. Претрага уназад ће почети поново са последњим записом." #. WP3XA #: cui/uiconfig/ui/fmsearchdialog.ui:718 @@ -9217,13 +9211,13 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:778 msgctxt "fmsearchdialog|cbWildCard" msgid "_Wildcard expression" -msgstr "" +msgstr "Израз са за_менским знаком" #. BES8b #: cui/uiconfig/ui/fmsearchdialog.ui:787 msgctxt "fmsearchdialog|extended_tip|cbWildCard" msgid "Allows a search with a * or ? wildcard." -msgstr "" +msgstr "Дозвољава претрагу помоћу заменских знакова * или ?" #. xHRxu #: cui/uiconfig/ui/fmsearchdialog.ui:811 @@ -11238,7 +11232,7 @@ #: cui/uiconfig/ui/insertfloatingframe.ui:515 msgctxt "insertfloatingframe|label3" msgid "Padding" -msgstr "" +msgstr "Попуна" #. Ehuh3 #: cui/uiconfig/ui/insertfloatingframe.ui:555 @@ -11792,7 +11786,7 @@ #: cui/uiconfig/ui/linetabpage.ui:714 msgctxt "linetabpage|liststoreEDGE_STYLE" msgid "Beveled" -msgstr "" +msgstr "Заобљене ивице" #. biCBC #: cui/uiconfig/ui/linetabpage.ui:727 @@ -12146,25 +12140,25 @@ #: cui/uiconfig/ui/menuassignpage.ui:515 msgctxt "menuassignpage|menugearbtn" msgid "Gear Menu" -msgstr "" +msgstr "Зупчасти мени" #. rnmCf #: cui/uiconfig/ui/menuassignpage.ui:516 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 "" +msgstr "Садржи наредбе за измену или брисање изабраног менија највишег нивоа и радње за додавање нових менија." #. 7PE7X #: cui/uiconfig/ui/menuassignpage.ui:537 msgctxt "menuassignpage|toolbargearbtn" msgid "Gear Menu" -msgstr "" +msgstr "Зупчасти мени" #. L7fQq #: cui/uiconfig/ui/menuassignpage.ui:538 msgctxt "menuassignpage|toolbargearbtn" msgid "Contains commands to modify or delete the selected toolbar, and the command to add new toolbars." -msgstr "" +msgstr "Садржи наредбе за измену или брисање изабраних трака алатки и наредбе за додавање нових трака алатки." #. w7EFX #: cui/uiconfig/ui/menuassignpage.ui:692 @@ -12188,85 +12182,85 @@ #: cui/uiconfig/ui/menuassignpage.ui:751 msgctxt "menuassignpage|defaultsbtn" msgid "Resets the selected toolbar, menu, or context menu to its default state." -msgstr "" +msgstr "Враћа изабране траке алатки или меније на њихово изворно стање." #. B32nz #: cui/uiconfig/ui/menuassignpage.ui:787 msgctxt "menuassignpage|add" msgid "Add item" -msgstr "" +msgstr "Додаје ставку" #. JrYMp #: cui/uiconfig/ui/menuassignpage.ui:797 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 "" +msgstr "Кликните на дугме са стрелицом на десно да изаберете функције на левом приказаном пољу и копирате га у десно поље. Ово ће додати функције на изабрани мени." #. iree8 #: cui/uiconfig/ui/menuassignpage.ui:823 msgctxt "menuassignpage|remove" msgid "Remove item" -msgstr "" +msgstr "Уклони ставку" #. AsenA #: cui/uiconfig/ui/menuassignpage.ui:833 msgctxt "menuassignpage|extended_tip|remove" msgid "Click on the left arrow button to remove the selected command from the current menu." -msgstr "" +msgstr "Кликните на дугме са стрелицом на лево да уклоните изабрану команду из приложеног менија." #. t7BYP #: cui/uiconfig/ui/menuassignpage.ui:866 msgctxt "menuassignpage|moveupbtn" msgid "Move up" -msgstr "" +msgstr "Помени горе" #. BH9fq #: cui/uiconfig/ui/menuassignpage.ui:870 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 "" +msgstr "Кликните на стрелице „Горе“ или „Доле“ са десне стране да померите изабрану наредбу навише или наниже у списак приказаних наредби менија." #. S6K2N #: cui/uiconfig/ui/menuassignpage.ui:884 msgctxt "menuassignpage|movedownbtn" msgid "Move down" -msgstr "" +msgstr "Помери горе" #. RCKEK #: cui/uiconfig/ui/menuassignpage.ui:888 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 "" +msgstr "Кликните на стрелице „Горе“ или „Доле“ са десне стране да померите изабрану наредбу навише или наниже у списак приказаних наредби менија." #. fto8m #: cui/uiconfig/ui/menuassignpage.ui:908 msgctxt "menuassignpage|scopelabel" msgid "S_cope" -msgstr "" +msgstr "_Опсег" #. SLinm #: cui/uiconfig/ui/menuassignpage.ui:921 msgctxt "menuassignpage|targetlabel" msgid "_Target" -msgstr "" +msgstr "_Циљ" #. cZEBZ #: cui/uiconfig/ui/menuassignpage.ui:934 msgctxt "menuassignpage|functionlabel" msgid "Assi_gned Commands" -msgstr "" +msgstr "_Додељене наредбе" #. AZQ8V #: cui/uiconfig/ui/menuassignpage.ui:947 msgctxt "menuassignpage|customizelabel" msgid "_Customize" -msgstr "" +msgstr "_Прилагоди" #. yFQHn #: cui/uiconfig/ui/menuassignpage.ui:1006 msgctxt "menuassignpage|extended_tip|MenuAssignPage" msgid "Lets you customize %PRODUCTNAME menus for all modules." -msgstr "" +msgstr "Дозвољава вам да прилагодите меније програма %PRODUCTNAME унутар свих мнодула." #. Mcir5 #: cui/uiconfig/ui/mosaicdialog.ui:21 @@ -12278,7 +12272,7 @@ #: cui/uiconfig/ui/mosaicdialog.ui:164 msgctxt "mosaicdialog|extended_tip|width" msgid "Defines the width of the individual tiles." -msgstr "" +msgstr "Одређује ширину појединачних плочица." #. yVvs9 #: cui/uiconfig/ui/mosaicdialog.ui:177 @@ -12290,13 +12284,13 @@ #: cui/uiconfig/ui/mosaicdialog.ui:203 msgctxt "mosaicdialog|height" msgid "2" -msgstr "" +msgstr "2" #. zq4c3 #: cui/uiconfig/ui/mosaicdialog.ui:209 msgctxt "mosaicdialog|extended_tip|height" msgid "Defines the height of the individual tiles." -msgstr "" +msgstr "Одређује висину појединачних плочица." #. Ca8nA #: cui/uiconfig/ui/mosaicdialog.ui:222 @@ -12308,13 +12302,13 @@ #: cui/uiconfig/ui/mosaicdialog.ui:240 msgctxt "mosaicdialog|edges" msgid "E_nhance edges" -msgstr "" +msgstr "По_бољшај ивице" #. mEUiS #: cui/uiconfig/ui/mosaicdialog.ui:249 msgctxt "mosaicdialog|extended_tip|edges" msgid "Enhances, or sharpens, the edges of the object." -msgstr "" +msgstr "Побољшава или повећава оштрину ивица објекта." #. LKQEa #: cui/uiconfig/ui/mosaicdialog.ui:272 @@ -12332,25 +12326,25 @@ #: cui/uiconfig/ui/movemenu.ui:26 msgctxt "movemenu|MoveMenuDialog" msgid "New Menu" -msgstr "" +msgstr "Нови мени" #. kJERC #: cui/uiconfig/ui/movemenu.ui:110 msgctxt "movemenu|menunameft" msgid "Menu name:" -msgstr "" +msgstr "Име менија:" #. Dzrz4 #: cui/uiconfig/ui/movemenu.ui:130 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 "" +msgstr "Унесите име менија. Да одредите слово у имену пречице, унесите тилду (~) пре жељеног слова пречице." #. YV2LE #: cui/uiconfig/ui/movemenu.ui:159 msgctxt "movemenu|label1" msgid "Menu _position:" -msgstr "" +msgstr "По_ложај менија:" #. HZFF5 #: cui/uiconfig/ui/movemenu.ui:232 @@ -12368,7 +12362,7 @@ #: cui/uiconfig/ui/movemenu.ui:301 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 "" +msgstr "Помера изабрани унос менија за једно место горе или доле у менију, када кликнете на дугме са стрелицом." #. qoE4K #: cui/uiconfig/ui/multipathdialog.ui:22 @@ -12380,13 +12374,13 @@ #: cui/uiconfig/ui/multipathdialog.ui:45 msgctxt "multipathdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Чува све промене и затвара прозорче." #. LCieM #: cui/uiconfig/ui/multipathdialog.ui:64 msgctxt "multipathdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Затвара прозорче и занемарује све промене." #. yfGYp #: cui/uiconfig/ui/multipathdialog.ui:131 @@ -12398,31 +12392,31 @@ #: cui/uiconfig/ui/multipathdialog.ui:138 msgctxt "cui/ui/multipathdialog/add" msgid "Opens the Select Path dialog to select another folder or the Open dialog to select another file." -msgstr "" +msgstr "Отвара прозорче за избор путање да изаберете другу фасциклу или прозорче за отварање друге датотеке." #. e3JxQ #: cui/uiconfig/ui/multipathdialog.ui:157 msgctxt "multipathdialog|extended_tip|delete" msgid "Deletes the selected element or elements without requiring confirmation." -msgstr "" +msgstr "Брише изабрани елемент или елемента без потребе за потврдом." #. b9DFN #: cui/uiconfig/ui/multipathdialog.ui:203 msgctxt "multipathdialog|pathlist" msgid "Path list" -msgstr "" +msgstr "Списак путање" #. EPpjr #: cui/uiconfig/ui/multipathdialog.ui:223 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 "" +msgstr "Садржи списак путања које су већ додате. Означите подразумевану путању за нове датотеке." #. AsnM3 #: cui/uiconfig/ui/multipathdialog.ui:248 msgctxt "multipathdialog|label1" msgid "Mark the Default Path for New Files" -msgstr "" +msgstr "Означите подразумевану путању за нове датотеке" #. pB3Yj #: cui/uiconfig/ui/namedialog.ui:8 @@ -12434,31 +12428,31 @@ #: cui/uiconfig/ui/newlibdialog.ui:8 msgctxt "newlibdialog|NewLibDialog" msgid "Create Library" -msgstr "" +msgstr "Направи библиотеку" #. Kza8K #: cui/uiconfig/ui/newlibdialog.ui:75 msgctxt "newlibdialog|newlibft" msgid "Enter the name for the new library." -msgstr "" +msgstr "Унесите име за нову библиотеку." #. 8D4QY #: cui/uiconfig/ui/newlibdialog.ui:102 msgctxt "newlibdialog|newmacroft" msgid "Enter the name for the new macro." -msgstr "" +msgstr "Унесите име за нови макро." #. xZRVY #: cui/uiconfig/ui/newlibdialog.ui:116 msgctxt "newlibdialog|renameft" msgid "Enter the new name for the selected object." -msgstr "" +msgstr "Унесите ново име за изабрани објекат." #. awAso #: cui/uiconfig/ui/newlibdialog.ui:130 msgctxt "newlibdialog|altmacrotitle" msgid "Create Macro" -msgstr "" +msgstr "Направи макро" #. 3WDAH #: cui/uiconfig/ui/newlibdialog.ui:141 @@ -12506,7 +12500,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:91 msgctxt "numberingformatpage|extended_tip|formatted" msgid "Displays the number format code for the selected format. You can also enter a custom format." -msgstr "" +msgstr "Приказује број кода формата за изабрани формат. Можете унети и произвољни формат." #. 5ATKM #: cui/uiconfig/ui/numberingformatpage.ui:105 @@ -12518,7 +12512,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:110 msgctxt "numberingformatpage|extended_tip|add" msgid "Adds the number format code that you entered to the user-defined category." -msgstr "" +msgstr "Додаје број кода формата који сте унели за кориснички дефинисану категорију." #. Sjx7f #: cui/uiconfig/ui/numberingformatpage.ui:124 @@ -12530,7 +12524,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:129 msgctxt "numberingformatpage|extended_tip|edit" msgid "Enter a comment for the selected number format, and then click outside this box." -msgstr "" +msgstr "Унесите коментар за изабрани формат броја и кликните изван овог поља." #. YidmA #: cui/uiconfig/ui/numberingformatpage.ui:143 @@ -12542,43 +12536,43 @@ #: cui/uiconfig/ui/numberingformatpage.ui:148 msgctxt "numberingformatpage|extended_tip|delete" msgid "Deletes the selected number format." -msgstr "" +msgstr "Брише изабрани формат броја." #. BFF82 #: cui/uiconfig/ui/numberingformatpage.ui:173 msgctxt "numberingformatpage|commented|tooltip_text" msgid "Comment" -msgstr "" +msgstr "Коментар" #. EF7pt #: cui/uiconfig/ui/numberingformatpage.ui:177 msgctxt "numberingformatpage|extended_tip|commented" msgid "Adds a comment to the selected number format." -msgstr "" +msgstr "Додаје коментар на изабрани формат броја." #. XNdu6 #: cui/uiconfig/ui/numberingformatpage.ui:195 msgctxt "numberingformatpage|formatf" msgid "_Format Code" -msgstr "" +msgstr "_Формат кода" #. 5GA9p #: cui/uiconfig/ui/numberingformatpage.ui:243 msgctxt "numberingformatpage|extended_tip|decimalsed" msgid "Enter the number of decimal places that you want to display." -msgstr "" +msgstr "Унесите број децималних места које желите да прикажете." #. VnduH #: cui/uiconfig/ui/numberingformatpage.ui:261 msgctxt "numberingformatpage|extended_tip|denominatored" msgid "With fraction format, enter the number of places for the denominator that you want to display." -msgstr "" +msgstr "Уз приказ децималних бројеве унесите број децималних места за бројилац које желите да прикажете." #. zG6sE #: cui/uiconfig/ui/numberingformatpage.ui:285 msgctxt "numberingformatpage|extended_tip|leadzerosed" msgid "Enter the maximum number of zeroes to display in front of the decimal point." -msgstr "" +msgstr "Унесите највећи број нула које се приказују испред децималног зареза." #. ZiPyf #: cui/uiconfig/ui/numberingformatpage.ui:306 @@ -12590,7 +12584,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:320 msgctxt "numberingformatpage|denominatorft" msgid "Den_ominator places:" -msgstr "" +msgstr "Места и_мениоца:" #. EXEbk #: cui/uiconfig/ui/numberingformatpage.ui:341 @@ -12608,19 +12602,19 @@ #: cui/uiconfig/ui/numberingformatpage.ui:362 msgctxt "numberingformatpage|extended_tip|negnumred" msgid "Changes the font color of negative numbers to red." -msgstr "" +msgstr "Мења боу фонта негативних бројева у црвено." #. 9DhkC #: cui/uiconfig/ui/numberingformatpage.ui:380 msgctxt "numberingformatpage|engineering" msgid "_Engineering notation" -msgstr "" +msgstr "_Инжињерски запис" #. Fg7BD #: cui/uiconfig/ui/numberingformatpage.ui:388 msgctxt "numberingformatpage|extended_tip|engineering" msgid "With scientific format, Engineering notation ensures that exponent is a multiple of 3." -msgstr "" +msgstr "У научном формату, инжињерски запис омогућава да експонент буде умножак броја 3." #. rrDFo #: cui/uiconfig/ui/numberingformatpage.ui:400 @@ -12632,7 +12626,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:409 msgctxt "numberingformatpage|extended_tip|thousands" msgid "Inserts a separator between thousands. The type of separator that is used depends on your language settings." -msgstr "" +msgstr "Умеће раздвајач између хиљада. Врста раздвајача која се користи зависи од поставке језика на вашем систему." #. rsmBU #: cui/uiconfig/ui/numberingformatpage.ui:433 @@ -12644,7 +12638,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:499 msgctxt "numberingformatpage|extended_tip|categorylb" msgid "Select a category from the list, and then select a formatting style in the Format box." -msgstr "" +msgstr "Изаберите категорију са списка, а затим и стил форматирања помоћу поља за форматирање." #. NTAb6 #: cui/uiconfig/ui/numberingformatpage.ui:512 @@ -12662,13 +12656,13 @@ #: cui/uiconfig/ui/numberingformatpage.ui:561 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 "" +msgstr "Изаберите валуту, а затим листајте до врха списка формата како би видели опије за форматирање валуте." #. TBLU5 #: cui/uiconfig/ui/numberingformatpage.ui:602 msgctxt "numberingformatpage|extended_tip|formatlb" msgid "Select how you want the contents of the selected field to be displayed." -msgstr "" +msgstr "Изаберите како желите да се приказује садржај изабраног поља." #. Wxkzd #: cui/uiconfig/ui/numberingformatpage.ui:621 @@ -12680,19 +12674,19 @@ #: cui/uiconfig/ui/numberingformatpage.ui:662 msgctxt "numberingformatpage|extended_tip|languagelb" msgid "Specifies the language setting for the selected field." -msgstr "" +msgstr "Одређује поставке језика за тренутно изабрано поље." #. hx9FX #: cui/uiconfig/ui/numberingformatpage.ui:673 msgctxt "numberingformatpage|sourceformat" msgid "So_urce format" -msgstr "" +msgstr "Из_ворни формат" #. Pugh9 #: cui/uiconfig/ui/numberingformatpage.ui:682 msgctxt "numberingformatpage|extended_tip|sourceformat" msgid "Uses the same number format as the cells containing the data for the chart." -msgstr "" +msgstr "Користи исти формат броја као у ћелији која садржи податке за график." #. iCX4U #: cui/uiconfig/ui/numberingformatpage.ui:725 @@ -12704,7 +12698,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:747 msgctxt "numberingformatpage|extended_tip|NumberingFormatPage" msgid "Specify the formatting options for the selected cell(s)." -msgstr "" +msgstr "Одређује опције форматирања за изабрану ћелију или ћелије." #. XxX2T #: cui/uiconfig/ui/numberingoptionspage.ui:42 @@ -12722,7 +12716,7 @@ #: 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 "" +msgstr "Изаберите ниво(е) за које желите да одредите опције форматирања." #. iHsAJ #: cui/uiconfig/ui/numberingoptionspage.ui:129 @@ -12740,7 +12734,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:193 msgctxt "numberingoptionspage|extended_tip|charstyle" msgid "Select the Character Style that you want to use in the numbered list." -msgstr "" +msgstr "Изаберите стил знакова који желите да користите у листи за набрајање." #. UaFF9 #: cui/uiconfig/ui/numberingoptionspage.ui:212 @@ -12752,7 +12746,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:230 msgctxt "numberingoptionspage|extended_tip|startat" msgid "Enter a new starting number for the current level." -msgstr "" +msgstr "Унесите нови почетни број за тренутни ниво." #. xWX3x #: cui/uiconfig/ui/numberingoptionspage.ui:243 @@ -12782,7 +12776,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:306 msgctxt "numberingoptionspage|extended_tip|widthmf" msgid "Enter a width for the graphic." -msgstr "" +msgstr "Унесите ширину графика." #. PBvy6 #: cui/uiconfig/ui/numberingoptionspage.ui:319 @@ -12794,7 +12788,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:340 msgctxt "numberingoptionspage|extended_tip|heightmf" msgid "Enter a height for the graphic." -msgstr "" +msgstr "Унесите висину графике." #. bRHQn #: cui/uiconfig/ui/numberingoptionspage.ui:351 @@ -12806,7 +12800,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:360 msgctxt "numberingoptionspage|extended_tip|keepratio" msgid "Maintains the size proportions of the graphic." -msgstr "" +msgstr "Одржава величину размере графика." #. 7Wuu8 #: cui/uiconfig/ui/numberingoptionspage.ui:373 @@ -12872,7 +12866,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:401 msgctxt "numberingoptionspage|extended_tip|orientlb" msgid "Select the alignment option for the graphic." -msgstr "" +msgstr "Изаберите опције поравнања графике." #. CoAAt #: cui/uiconfig/ui/numberingoptionspage.ui:412 @@ -12884,7 +12878,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:424 msgctxt "numberingoptionspage|extended_tip|bitmap" msgid "Select the graphic, or locate the graphic file that you want to use as a bullet." -msgstr "" +msgstr "Изаберите графика или пронађите датотеку са сликом коју желите да користите као цртицу." #. NCamZ #: cui/uiconfig/ui/numberingoptionspage.ui:446 @@ -12896,7 +12890,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:464 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 "" +msgstr "Унесите вредност за коју желите да промените величину знака поштујући висину фонта за тренутни пасус." #. M4aPS #: cui/uiconfig/ui/numberingoptionspage.ui:475 @@ -12908,7 +12902,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:481 msgctxt "numberingoptionspage|extended_tip|bullet" msgid "Select the graphic, or locate the graphic file that you want to use as a bullet." -msgstr "" +msgstr "Изаберите график или пронађите датотеку са сликом коју желите да користите као цртицу." #. RJa39 #: cui/uiconfig/ui/numberingoptionspage.ui:499 @@ -12932,7 +12926,7 @@ #: cui/uiconfig/ui/numberingoptionspage.ui:555 msgctxt "numberingoptionspage|extended_tip|prefix" msgid "Enter a character or the text to display in front of the number in the list." -msgstr "" +msgstr "Унесите знак или текст који ће бити приказан испред броја у листи." #. FLJWG #: cui/uiconfig/ui/numberingoptionspage.ui:568 @@ -13121,12 +13115,14 @@ "Minimum space between\n" "numbering and text:" msgstr "" +"Највећи размак између\n" +"набрајања и текста:" #. 8FbxK #: cui/uiconfig/ui/numberingpositionpage.ui:359 msgctxt "numberingpositionpage|numalign" msgid "N_umbering alignment:" -msgstr "" +msgstr "По_равнање набрајања:" #. Bu2uC #: cui/uiconfig/ui/numberingpositionpage.ui:374 @@ -13150,19 +13146,19 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:380 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 "" +msgstr "Поставља поравнање симбола за набрајање. Изаберите „Лево“ да поравнате симбол набрајања на почетак, одмах на положај „Поравнано на“. Изаберите „Десно“ да поравнате симбол на крај, одмах пре положаја „Поравнано на“. Изаберите „Центрирано“ да ставите симбол на средини положаја „Поравнано на“." #. mLBFy #: cui/uiconfig/ui/numberingpositionpage.ui:395 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 "" +msgstr "Поставља поравнање симбола за набрајање. Изаберите „Лево“ да поравнате симбол набрајања на почетак, одмах на положај „Поравнано на“. Изаберите „Десно“ да поравнате симбол на крај, одмах пре положаја „Поравнано на“. Изаберите „Центрирано“ да ставите симбол на средини положаја „Поравнано на“." #. 6DLtp #: cui/uiconfig/ui/numberingpositionpage.ui:412 msgctxt "numberingpositionpage|label10" msgid "Position and Spacing" -msgstr "" +msgstr "Положај и размак" #. x2AGL #: cui/uiconfig/ui/numberingpositionpage.ui:447 @@ -13174,19 +13170,19 @@ #: cui/uiconfig/ui/numberingpositionpage.ui:454 msgctxt "numberingpositionpage|extended_tip|standard" msgid "Resets the indent and the spacing values to the default values." -msgstr "" +msgstr "Поново поставља увлачење и размак вредности на подразумеване вредности." #. eLFGG #: cui/uiconfig/ui/numberingpositionpage.ui:502 msgctxt "numberingpositionpage|previewframe" msgid "Preview" -msgstr "" +msgstr "Преглед" #. oBArM #: cui/uiconfig/ui/numberingpositionpage.ui:563 msgctxt "numberingpositionpage|extended_tip|levellb" msgid "Select the level(s) that you want to modify." -msgstr "" +msgstr "Изаберите ниво(е) које желите да измените." #. jRE6s #: cui/uiconfig/ui/numberingpositionpage.ui:576 @@ -13210,7 +13206,7 @@ #: cui/uiconfig/ui/objectnamedialog.ui:129 msgctxt "objectnamedialog|extended_tip|ObjectNameDialog" msgid "Enter a name for the selected object. The name will be visible in the Navigator." -msgstr "" +msgstr "Унесите име за изабрани објекат. Име ће бити видљиво у навигатору." #. 4TRWw #: cui/uiconfig/ui/objecttitledescdialog.ui:15 @@ -13228,7 +13224,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:112 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 "" +msgstr "Унесите наслов текста. Ово кратко име је видљиво као алтернативна ознака у HTML формату. Алатке за приступачност ће моћи да прочитају овај текст." #. kDbQ9 #: cui/uiconfig/ui/objecttitledescdialog.ui:126 @@ -13240,13 +13236,13 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:149 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 "" +msgstr "Унесите текст за опис. Дугачки текст описа може бити унет да објасните сложене објекте или групе објеката корисницима који имају софтвер за читање са екрана. Опис ће бити видљив као ознака алатима за приступачност." #. 8BCe3 #: cui/uiconfig/ui/objecttitledescdialog.ui:180 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 "" +msgstr "Додељује наслов и опис изабраном објекту. Ово ће бити доступно алатима за приступачност као алтернативна ознака када извезете документ." #. s8E7z #: cui/uiconfig/ui/optaccessibilitypage.ui:31 @@ -13258,7 +13254,7 @@ #: 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 "" +msgstr "Дозвољава вам да користите помоћне алатке, као што је екстерни читач ектана, Брајев уређај или улазни уређаји за препознавање говора. Окружење за покретање Java програма (JRE) мора бити инсталирано на вашем рачунару уколико желите да користите ове помоћне алатке." #. EZqPM #: cui/uiconfig/ui/optaccessibilitypage.ui:52 @@ -13270,7 +13266,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:61 msgctxt "extended_tip|textselinreadonly" msgid "Displays cursor in read-only documents." -msgstr "" +msgstr "Приказује курсор у документима који су отворени само за читање." #. APEfF #: cui/uiconfig/ui/optaccessibilitypage.ui:73 @@ -13282,7 +13278,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:82 msgctxt "extended_tip|animatedgraphics" msgid "Previews animated graphics, such as GIF images, in %PRODUCTNAME." -msgstr "" +msgstr "Приказује преглед анимиране графике, као што је GIF у %PRODUCTNAME." #. 3Q66x #: cui/uiconfig/ui/optaccessibilitypage.ui:94 @@ -13294,7 +13290,7 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:103 msgctxt "extended_tip|animatedtext" msgid "Previews animated text, such as blinking and scrolling, in %PRODUCTNAME." -msgstr "" +msgstr "Приказује преглед анимираног текста, као што је треперење или клизање у %PRODUCTNAME." #. 2A83C #: cui/uiconfig/ui/optaccessibilitypage.ui:121 @@ -13312,19 +13308,19 @@ #: 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 "" +msgstr "Ставља %PRODUCTNAME у режим високог контраста када је позадина система веома тамна." #. Sc8Cq #: cui/uiconfig/ui/optaccessibilitypage.ui:175 msgctxt "optaccessibilitypage|autofontcolor" msgid "Use automatic font _color for screen display" -msgstr "Користи аутоматски _боју слова за приказ на екрану" +msgstr "Користи аутоматски _боју фонта на екрану" #. 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 "" +msgstr "Приказује фонтове у %PRODUCTNAME помоћу поставки системске боје. Ова опција утиче на приказ на екрану." #. n24Cd #: cui/uiconfig/ui/optaccessibilitypage.ui:196 @@ -13336,19 +13332,19 @@ #: cui/uiconfig/ui/optaccessibilitypage.ui:205 msgctxt "extended_tip|systempagepreviewcolor" msgid "Applies the high contrast settings of the operating system to page previews." -msgstr "" +msgstr "Примењује поставке високог контраста оперативног система на преглед странице." #. hGpaw #: cui/uiconfig/ui/optaccessibilitypage.ui:223 msgctxt "optaccessibilitypage|label2" msgid "Options for High Contrast Appearance" -msgstr "" +msgstr "Опције изгледа у високом контрасту" #. 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 "" +msgstr "Поставља опције помоћу којих ће %PRODUCTNAME програми бити приступачнији корисницима са слабијим видом, лошијом покретљивошћу или другим инвалидитетом." #. kishx #: cui/uiconfig/ui/optadvancedpage.ui:61 @@ -13360,7 +13356,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:70 msgctxt "extended_tip|javaenabled" msgid "Allows you to run Java applications in %PRODUCTNAME." -msgstr "" +msgstr "Омогућава вам покретање Java програма у %PRODUCTNAME." #. DFVFw #: cui/uiconfig/ui/optadvancedpage.ui:102 @@ -13378,7 +13374,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:135 msgctxt "extended_tip|add" msgid "Add a path to the root folder of a JRE on your computer." -msgstr "" +msgstr "Додај путању до JRE корене фасцикле на вашем рачунару." #. YtgBL #: cui/uiconfig/ui/optadvancedpage.ui:147 @@ -13390,7 +13386,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:154 msgctxt "extended_tip|parameters" msgid "Opens the Java Start Parameters dialog." -msgstr "" +msgstr "Отвара прозорче за почетне Java параметре." #. dhf5G #: cui/uiconfig/ui/optadvancedpage.ui:166 @@ -13402,7 +13398,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:173 msgctxt "extended_tip|classpath" msgid "Opens the Class Path dialog." -msgstr "" +msgstr "Отвара прозорче путање класе." #. MxHGu #: cui/uiconfig/ui/optadvancedpage.ui:245 @@ -13420,7 +13416,7 @@ #: cui/uiconfig/ui/optadvancedpage.ui:269 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 "" +msgstr "Изаберите JRE који желите да користите. На другим системима морате сачекати минут док се не излиста цео списак. На неким системима, морате поново покренути %PRODUCTNAME да користите ваше промењене поставке." #. erNBk #: cui/uiconfig/ui/optadvancedpage.ui:297 @@ -13438,91 +13434,91 @@ #: cui/uiconfig/ui/optadvancedpage.ui:348 msgctxt "optadvancedpage|label1" msgid "Java Options" -msgstr "" +msgstr "Java опције" #. rEtsc #: cui/uiconfig/ui/optadvancedpage.ui:384 msgctxt "optadvancedpage|experimental" msgid "Enable experimental features (may be unstable)" -msgstr "" +msgstr "Омогући експерименталне могућности (може бити нестабилно)" #. CyDsa #: cui/uiconfig/ui/optadvancedpage.ui:393 msgctxt "extended_tip|experimental" msgid "Enable experimental features" -msgstr "" +msgstr "Омогући експерименталне могућности" #. rMVcA #: cui/uiconfig/ui/optadvancedpage.ui:404 msgctxt "optadvancedpage|macrorecording" msgid "Enable macro recording (may be limited)" -msgstr "" +msgstr "Омогући снимање макроа (може бити ограничено)" #. 8Gjtp #: cui/uiconfig/ui/optadvancedpage.ui:413 msgctxt "extended_tip|macrorecording" msgid "Enable macro recording" -msgstr "" +msgstr "Омогући снимање макроа" #. NgRXw #: cui/uiconfig/ui/optadvancedpage.ui:424 msgctxt "optadvancedpage|expertconfig" msgid "Open Expert Configuration" -msgstr "" +msgstr "Отвара напредна подешавања" #. rAnYG #: cui/uiconfig/ui/optadvancedpage.ui:432 msgctxt "extended_tip|expertconfig" msgid "Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME." -msgstr "" +msgstr "Отвара прозорче за напредна подешавања програма %PRODUCTNAME." #. ZLtrh #: cui/uiconfig/ui/optadvancedpage.ui:449 msgctxt "optadvancedpage|label12" msgid "Optional Features" -msgstr "" +msgstr "Опционе могућности" #. wJx8x #: cui/uiconfig/ui/optadvancedpage.ui:465 msgctxt "extended_tip|OptAdvancedPage" msgid "Allows you to run Java applications in %PRODUCTNAME." -msgstr "" +msgstr "Дозвољава да покренете Java програме у %PRODUCTNAME." #. dmvLE #: cui/uiconfig/ui/optappearancepage.ui:38 msgctxt "optappearancepage|label3" msgid "_Scheme:" -msgstr "" +msgstr "_Шема:" #. k8ACj #: cui/uiconfig/ui/optappearancepage.ui:56 msgctxt "extended_tip|save" msgid "Saves the current settings as a color scheme that you can reload later." -msgstr "" +msgstr "Чува тренутне поставке као шему боје коју можете учитати касније." #. 4YuTW #: cui/uiconfig/ui/optappearancepage.ui:74 msgctxt "extended_tip|delete" msgid "Deletes the color scheme shown in the Scheme box. You cannot delete the Default scheme." -msgstr "" +msgstr "Брише шему боје која је приказана у пољу за шеме. Не можете обрисати подразумевану шему." #. Gii2p #: cui/uiconfig/ui/optappearancepage.ui:90 msgctxt "extended_tip|colorschemelb" msgid "Selects the color scheme you want to use." -msgstr "" +msgstr "Изаберите шему боје коју желите да користите." #. jzELX #: cui/uiconfig/ui/optappearancepage.ui:107 msgctxt "optappearancepage|label1" msgid "Color Scheme" -msgstr "" +msgstr "Шема боје" #. RAEbU #: cui/uiconfig/ui/optappearancepage.ui:202 msgctxt "extended_tip|colorconfig" msgid "Select the colors for the user interface elements." -msgstr "" +msgstr "Изаберите боје за елементе корисничког сучеља." #. BtFUJ #: cui/uiconfig/ui/optappearancepage.ui:235 @@ -13546,37 +13542,37 @@ #: cui/uiconfig/ui/optappearancepage.ui:284 msgctxt "optappearancepage|label2" msgid "Custom Colors" -msgstr "" +msgstr "Произвољне боје" #. vxBRc #: cui/uiconfig/ui/optappearancepage.ui:299 msgctxt "extended_tip|OptAppearancePage" msgid "Sets the colors for the %PRODUCTNAME user interface." -msgstr "" +msgstr "Поставља боје за %PRODUCTNAME корисничко сучеље." #. nRFne #: cui/uiconfig/ui/optasianpage.ui:31 msgctxt "optasianpage|charkerning" msgid "_Western text only" -msgstr "" +msgstr "_Само западни текст" #. QCvQv #: cui/uiconfig/ui/optasianpage.ui:41 msgctxt "extended_tip|charkerning" msgid "Specifies that kerning is only applied to western text." -msgstr "" +msgstr "Поставља кернинг само за западни текст." #. WEFrz #: cui/uiconfig/ui/optasianpage.ui:53 msgctxt "optasianpage|charpunctkerning" msgid "Western _text and Asian punctuation" -msgstr "" +msgstr "Западни _текст и азијска интерпункција" #. PCrHe #: cui/uiconfig/ui/optasianpage.ui:63 msgctxt "extended_tip|charpunctkerning" msgid "Specifies that kerning is applied to both western text and Asian punctuation." -msgstr "" +msgstr "Поставља кернинг на западни текст и азијске знакове интерпункције." #. 4wTpB #: cui/uiconfig/ui/optasianpage.ui:81 @@ -13588,49 +13584,49 @@ #: cui/uiconfig/ui/optasianpage.ui:113 msgctxt "optasianpage|nocompression" msgid "_No compression" -msgstr "" +msgstr "_Без сабијања" #. DGBhs #: cui/uiconfig/ui/optasianpage.ui:123 msgctxt "extended_tip|nocompression" msgid "Specifies that no compression at all will occur." -msgstr "" +msgstr "Поставља да се не корисни никакво сабијање." #. GvJuV #: cui/uiconfig/ui/optasianpage.ui:135 msgctxt "optasianpage|punctcompression" msgid "_Compress punctuation only" -msgstr "" +msgstr "_Сабиј само интерпунцију" #. 8FYbX #: cui/uiconfig/ui/optasianpage.ui:145 msgctxt "extended_tip|punctcompression" msgid "Specifies that only the punctuation is compressed." -msgstr "" +msgstr "Поставља да се само интерпункција сабија." #. aGY7H #: cui/uiconfig/ui/optasianpage.ui:157 msgctxt "optasianpage|punctkanacompression" msgid "Compress punctuation and Japanese Kana" -msgstr "" +msgstr "Сабиј интерпункцију у јапанску кану" #. k2K9z #: cui/uiconfig/ui/optasianpage.ui:167 msgctxt "extended_tip|punctkanacompression" msgid "Specifies that punctuation and Japanese Kana are compressed." -msgstr "" +msgstr "Поставља да се сабија интерпункција и јапанска кана." #. DAgwH #: cui/uiconfig/ui/optasianpage.ui:185 msgctxt "optasianpage|label2" msgid "Character Spacing" -msgstr "" +msgstr "Размак између знакова" #. LbEDU #: cui/uiconfig/ui/optasianpage.ui:240 msgctxt "extended_tip|language" msgid "Specifies the language for which you want to define first and last characters." -msgstr "" +msgstr "Одређује језик за који желите да одредите прве и последње знакове." #. CeSy8 #: cui/uiconfig/ui/optasianpage.ui:252 @@ -13642,7 +13638,7 @@ #: cui/uiconfig/ui/optasianpage.ui:261 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 "" +msgstr "Када означите као подразумевано, следећа два текстуална поља ће бити попуњена подразумеваним знацима за изабрани језик:" #. WmjE9 #: cui/uiconfig/ui/optasianpage.ui:281 @@ -13654,49 +13650,49 @@ #: cui/uiconfig/ui/optasianpage.ui:295 msgctxt "optasianpage|startft" msgid "Not _at start of line:" -msgstr "" +msgstr "Није н_а почетку реда:" #. TiFfn #: cui/uiconfig/ui/optasianpage.ui:309 msgctxt "optasianpage|endft" msgid "Not at _end of line:" -msgstr "" +msgstr "Није на _крају реда:" #. ebuCA #: cui/uiconfig/ui/optasianpage.ui:328 msgctxt "extended_tip|start" msgid "Specifies the characters that should not appear alone at the beginning of a line." -msgstr "" +msgstr "Одређује знакове који не треба да се појаве сами на почетку реда." #. 6EoPs #: cui/uiconfig/ui/optasianpage.ui:346 msgctxt "extended_tip|end" msgid "Specifies the characters that should not appear alone at the end of a line." -msgstr "" +msgstr "Одређује знаке који не треба да се појаве сами на крају реда." #. dSvmP #: cui/uiconfig/ui/optasianpage.ui:366 msgctxt "optasianpage|hintft" msgid "Without user-defined line break symbols" -msgstr "" +msgstr "Без кориснички дефинисаних прелома симбола" #. BCwCp #: cui/uiconfig/ui/optasianpage.ui:383 msgctxt "optasianpage|label3" msgid "First and Last Characters" -msgstr "" +msgstr "Први и последњи знаци" #. DpgnD #: cui/uiconfig/ui/optbasicidepage.ui:30 msgctxt "optbasicidepage|codecomplete_enable" msgid "Enable code completion" -msgstr "" +msgstr "Омогући завршавање кода" #. oQJh3 #: cui/uiconfig/ui/optbasicidepage.ui:39 msgctxt "extended_tip|codecomplete_enable" msgid "Display methods of a Basic object." -msgstr "" +msgstr "Прикажи методе Бејзик објеката." #. B8fvE #: cui/uiconfig/ui/optbasicidepage.ui:56 @@ -13708,67 +13704,67 @@ #: cui/uiconfig/ui/optbasicidepage.ui:89 msgctxt "optbasicidepage|autoclose_proc" msgid "Autoclose procedures" -msgstr "" +msgstr "Процедуре аутоматског затварања" #. hjYfe #: cui/uiconfig/ui/optbasicidepage.ui:98 msgctxt "extended_tip|autoclose_proc" msgid "Automatically insert closing statements for procedures." -msgstr "" +msgstr "Аутоматски уметни завршни исказ за процедуре." #. qKTPa #: cui/uiconfig/ui/optbasicidepage.ui:109 msgctxt "optbasicidepage|autoclose_paren" msgid "Autoclose parenthesis" -msgstr "" +msgstr "Аутоматски затвори заграде" #. UmekG #: cui/uiconfig/ui/optbasicidepage.ui:118 msgctxt "extended_tip|autoclose_paren" msgid "Automatically close open parenthesis." -msgstr "" +msgstr "Аутоматски затвори отворене заграде." #. EExBY #: cui/uiconfig/ui/optbasicidepage.ui:129 msgctxt "optbasicidepage|autoclose_quotes" msgid "Autoclose quotes" -msgstr "" +msgstr "Аутоматски затвори наводнике" #. GKCkD #: cui/uiconfig/ui/optbasicidepage.ui:138 msgctxt "extended_tip|autoclose_quotes" msgid "Automatically close open quotes." -msgstr "" +msgstr "Аутоматски затвори отворене наводнике." #. CCtUM #: cui/uiconfig/ui/optbasicidepage.ui:149 msgctxt "optbasicidepage|autocorrect" msgid "Autocorrection" -msgstr "" +msgstr "Аутоматско исправљање" #. czdha #: cui/uiconfig/ui/optbasicidepage.ui:159 msgctxt "extended_tip|autocorrect" msgid "Correct cases of Basic variables and keywords while typing." -msgstr "" +msgstr "Исправи велика и мала слова Бејзика са променљивим и кључним речима током куцања." #. dJWhM #: cui/uiconfig/ui/optbasicidepage.ui:176 msgctxt "optbasicidepage|label2" msgid "Code Suggestion" -msgstr "" +msgstr "Предлог кода" #. iUBCy #: cui/uiconfig/ui/optbasicidepage.ui:209 msgctxt "optbasicidepage|extendedtypes_enable" msgid "Use extended types" -msgstr "" +msgstr "Користи проширене типове" #. zYY9B #: cui/uiconfig/ui/optbasicidepage.ui:218 msgctxt "extended_tip|extendedtypes_enable" msgid "Allow UNO object types as valid Basic types." -msgstr "" +msgstr "Дозволи UNO врсте објекта као исправну врсту Бејзика." #. rG8Fi #: cui/uiconfig/ui/optbasicidepage.ui:235 @@ -13780,13 +13776,13 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:80 msgctxt "extended_tip|colors" msgid "Displays all the colors available for the data series." -msgstr "" +msgstr "Приказује све доступне боје за серије података." #. vTZjC #: cui/uiconfig/ui/optchartcolorspage.ui:93 msgctxt "optchartcolorspage|label20" msgid "Chart Colors" -msgstr "" +msgstr "Графици боја" #. WA57y #: cui/uiconfig/ui/optchartcolorspage.ui:166 @@ -13798,7 +13794,7 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:173 msgctxt "extended_tip|default" msgid "Restores the color settings that were defined when the program was installed." -msgstr "" +msgstr "Враћа поставке боје које су биле одређене када је програм инсталиран." #. KoHHw #: cui/uiconfig/ui/optchartcolorspage.ui:241 @@ -13810,49 +13806,49 @@ #: cui/uiconfig/ui/optchartcolorspage.ui:256 msgctxt "extended_tip|OptChartColorsPage" msgid "Displays all the colors available for the data series." -msgstr "" +msgstr "Приказује све доступне боје за серије података." #. fVDQp #: cui/uiconfig/ui/optctlpage.ui:32 msgctxt "optctlpage|sequencechecking" msgid "Use se_quence checking" -msgstr "" +msgstr "Користи проверу _редоследа" #. 47pP9 #: cui/uiconfig/ui/optctlpage.ui:41 msgctxt "extended_tip|sequencechecking" msgid "Enables sequence input checking for languages such as Thai." -msgstr "" +msgstr "Омогућава проверу редоследа на улазу за језик као што је тајски." #. DTWHd #: cui/uiconfig/ui/optctlpage.ui:63 msgctxt "optctlpage|restricted" msgid "Restricted" -msgstr "" +msgstr "Ограничено" #. HtGj9 #: cui/uiconfig/ui/optctlpage.ui:72 msgctxt "extended_tip|restricted" msgid "Prevents the use as well as the printing of illegal character combinations." -msgstr "" +msgstr "Онемогућава коришћење и штампање недозвољене комбинације знакова." #. wkSPW #: cui/uiconfig/ui/optctlpage.ui:83 msgctxt "optctlpage|typeandreplace" msgid "_Type and replace" -msgstr "" +msgstr "_Укуцај и замени" #. 4fM2r #: cui/uiconfig/ui/optctlpage.ui:112 msgctxt "optctlpage|label1" msgid "Sequence Checking" -msgstr "" +msgstr "Провера редоследа" #. oBBi6 #: cui/uiconfig/ui/optctlpage.ui:148 msgctxt "optctlpage|label3" msgid "Movement:" -msgstr "" +msgstr "Покрет:" #. R7YUB #: cui/uiconfig/ui/optctlpage.ui:158 @@ -13864,31 +13860,31 @@ #: cui/uiconfig/ui/optctlpage.ui:168 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 "" +msgstr "Притиском на тастер са стрелицом на десно ћете пометири курсор текста ка крају тренутног текста. Притиском леве стрелице ћете померити курсор на почетак тренутног текста." #. aEwYW #: cui/uiconfig/ui/optctlpage.ui:179 msgctxt "optctlpage|movementvisual" msgid "_Visual" -msgstr "" +msgstr "_Визуелно" #. wpUXS #: cui/uiconfig/ui/optctlpage.ui:189 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 "" +msgstr "Притиском тастера са стрелицом на десно ћете померити курсор на десну страну. Притиском леве стрелице ћете померити курсор на лево." #. 78DkF #: cui/uiconfig/ui/optctlpage.ui:209 msgctxt "optctlpage|label2" msgid "Cursor Control" -msgstr "" +msgstr "Контрола курсора" #. LcTwD #: cui/uiconfig/ui/optctlpage.ui:244 msgctxt "optctlpage|label5" msgid "_Numerals:" -msgstr "" +msgstr "_Бројеви:" #. BdfCk #: cui/uiconfig/ui/optctlpage.ui:259 @@ -13900,7 +13896,7 @@ #: cui/uiconfig/ui/optctlpage.ui:260 msgctxt "optctlpage|numerals" msgid "Eastern Arabic (٣ ,٢ ,١…)" -msgstr "" +msgstr "Источно арапски (٣ ,٢ ,١…)" #. uFBEA #: cui/uiconfig/ui/optctlpage.ui:261 @@ -13918,7 +13914,7 @@ #: cui/uiconfig/ui/optctlpage.ui:266 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 "" +msgstr "Изаберите врсту бројева који ће се користити унутар текста, текста у објекрима, поља, контрола за све %PRODUCTNAME модуле. Само садржај ћелија %PRODUCTNAME Рачуна неће бити промењене овим подешавањем." #. kWczF #: cui/uiconfig/ui/optctlpage.ui:283 @@ -13930,19 +13926,19 @@ #: cui/uiconfig/ui/optctlpage.ui:298 msgctxt "extended_tip|OptCTLPage" msgid "Defines the options for documents with complex text layouts." -msgstr "" +msgstr "Одређује опције за документе са сложеним распоредом текста." #. G5EDD #: cui/uiconfig/ui/optemailpage.ui:35 msgctxt "optemailpage|label2" msgid "_Email program:" -msgstr "" +msgstr "Програм за _е-пошту:" #. bEyeK #: cui/uiconfig/ui/optemailpage.ui:55 msgctxt "extended_tip|url" msgid "Enter the email program path and name." -msgstr "" +msgstr "Унесите путању и име програма који ће бити коришћен за е-пошту." #. ACQCM #: cui/uiconfig/ui/optemailpage.ui:66 @@ -13954,7 +13950,7 @@ #: cui/uiconfig/ui/optemailpage.ui:73 msgctxt "extended_tip|browse" msgid "Opens a file dialog to select the email program." -msgstr "" +msgstr "Отвара прозорче датотеке за избор програма за е-пошту." #. EHBa5 #: cui/uiconfig/ui/optemailpage.ui:99 @@ -13966,65 +13962,65 @@ #: cui/uiconfig/ui/optemailpage.ui:125 msgctxt "optemailpage|suppress" msgid "Suppress hidden elements of documents" -msgstr "" +msgstr "Склања скривене елементе докумената" #. vbcqb #: cui/uiconfig/ui/optemailpage.ui:194 msgctxt "optemailpage|label1" msgid "Sending Documents as Email Attachments" -msgstr "" +msgstr "Шаље документе као прилог уз е-пошту" #. DoGA3 #: cui/uiconfig/ui/optemailpage.ui:202 msgctxt "extended_tip|OptEmailPage" msgid "Enter the email program path and name." -msgstr "" +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:89 msgctxt "optfltrembedpage|column1" msgid "[L]" -msgstr "" +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:111 msgctxt "optfltrembedpage|column2" msgid "[S]" -msgstr "" +msgstr "[С]" #. xrKRQ #: cui/uiconfig/ui/optfltrembedpage.ui:136 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 "" +msgstr "[У] и [С] поља приказују уносе за пар OLE објеката које можете претворити приликом учитавања унутар %PRODUCTNAME [У] и/или када их чувате у Microsoft формат [С]. " #. x5kfq #. The [L] here is repeated as the column title for the "Load" column of this options page #: cui/uiconfig/ui/optfltrembedpage.ui:157 msgctxt "optfltrembedpage|label2" msgid "[L]: Load and convert the object" -msgstr "" +msgstr "[У]: Учитава и претвара објекат" #. PiDB7 #. The [S] here is repeated as the column title for the "Save" column of this options page #: cui/uiconfig/ui/optfltrembedpage.ui:170 msgctxt "optfltrembedpage|label3" msgid "[S]: Convert and save the object" -msgstr "" +msgstr "[С]: Претвара и чува објекат" #. f2hGQ #: cui/uiconfig/ui/optfltrembedpage.ui:194 msgctxt "optfltrembedpage|label1" msgid "Embedded Objects" -msgstr "" +msgstr "Угњежђени објекти" #. nvE89 #: cui/uiconfig/ui/optfltrembedpage.ui:228 msgctxt "optfltrembedpage|label5" msgid "Export as:" -msgstr "" +msgstr "Извези као:" #. FEeH6 #: cui/uiconfig/ui/optfltrembedpage.ui:243 @@ -14036,7 +14032,7 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:253 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 "" +msgstr "Microsoft Office има две знаковне особине сличне са %PRODUCTNAME позадином знака. Изаберите одговарајућу особину (истицање или сенчење) коју желите да користите приликом извоза у Microsoft Office формате датотека." #. Dnrx7 #: cui/uiconfig/ui/optfltrembedpage.ui:265 @@ -14048,49 +14044,49 @@ #: cui/uiconfig/ui/optfltrembedpage.ui:275 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 "" +msgstr "Microsoft Office има две знаковне особине сличне са %PRODUCTNAME позадином знака. Изаберите одговарајућу особину (истицање или сенчење) коју желите да користите приликом извоза у Microsoft Office формате датотека." #. gKwdG #: cui/uiconfig/ui/optfltrembedpage.ui:300 msgctxt "optfltrembedpage|label4" msgid "Character Highlighting" -msgstr "" +msgstr "Истицање знака" #. tyACF #: cui/uiconfig/ui/optfltrembedpage.ui:331 msgctxt "optfltrembedpage|mso_lockfile" msgid "Create MSO lock file" -msgstr "" +msgstr "Направи MSO датотеку за закључавање" #. NDG4H #: cui/uiconfig/ui/optfltrembedpage.ui:341 msgctxt "extended_tip|mso_lockfile" msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to %PRODUCTNAME own lock file." -msgstr "" +msgstr "Укључите ово да направите додатну Microsoft Office датотеку за закључавање уз %PRODUCTNAME датотеку за закључавање." #. Sg5Bw #: cui/uiconfig/ui/optfltrembedpage.ui:359 msgctxt "optfltrembedpage|label5" msgid "Lock Files" -msgstr "" +msgstr "Датотеке за закључавање" #. EUBnP #: cui/uiconfig/ui/optfltrembedpage.ui:373 msgctxt "extended_tip|OptFilterPage" msgid "Specifies the settings for importing and exporting Microsoft Office and other documents." -msgstr "" +msgstr "Одређује поставке за увоз и извоз у Microsoft Office и друге документе." #. ttAk5 #: cui/uiconfig/ui/optfltrpage.ui:31 msgctxt "optfltrpage|wo_basic" msgid "Load Basic _code" -msgstr "Учитај бејзик _код" +msgstr "Учитај Бејзик _код" #. q4wdN #: cui/uiconfig/ui/optfltrpage.ui:40 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 "" +msgstr "Учитава и чува Бејзик кодове из Microsoft документа као посебан %PRODUCTNAME Бејзик модул унутар документа. Онемогућени Microsoft Бејзик код се види у %PRODUCTNAME Бејзик IDE између Sub и End Sub." #. AChYC #: cui/uiconfig/ui/optfltrpage.ui:51 @@ -14102,37 +14098,37 @@ #: cui/uiconfig/ui/optfltrpage.ui:61 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 "" +msgstr "VBA (Визуелни Бејзик за апликације) код ће бити учитан спреман за покретање. Уколико није укључено, VBA код ће бити у виду коментара, тако да га можете погледати, али не и покренути." #. avyQV #: cui/uiconfig/ui/optfltrpage.ui:72 msgctxt "optfltrpage|wo_saveorig" msgid "Save _original Basic code" -msgstr "Сачувај _оригинални бејзик код" +msgstr "Сачувај _оригинални Бејзик код" #. 4pGYB #: cui/uiconfig/ui/optfltrpage.ui:81 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 "" +msgstr "Поставља оригинални Microsoft Бејзик код унутар документ у специјалној интерној меморији док год је документ учитан у %PRODUCTNAME. Када чувате документ у Microsoft-ов формат, Бејзик код ће бити сачуван поново без било каквих промена." #. W6nED #: cui/uiconfig/ui/optfltrpage.ui:98 msgctxt "optfltrpage|label1" msgid "Microsoft Word" -msgstr "" +msgstr "Microsoft Word" #. Z88Ms #: cui/uiconfig/ui/optfltrpage.ui:131 msgctxt "optfltrpage|ex_basic" msgid "Lo_ad Basic code" -msgstr "Учитај бејзик _код" +msgstr "Учитај Бејзик _код" #. QcFGD #: cui/uiconfig/ui/optfltrpage.ui:140 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 "" +msgstr "Учитава и чува Бејзик код из Microsoft документ као посебан %PRODUCTNAME Бејзик модул унутар документа. Онемогућени Microsoft Бејзик код ће бити видљив у %PRODUCTNAME Бејзик IDE окружењу, између Sub и End Sub." #. S6ozV #: cui/uiconfig/ui/optfltrpage.ui:151 @@ -14144,25 +14140,25 @@ #: cui/uiconfig/ui/optfltrpage.ui:161 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 "" +msgstr "VBA (Визуелни Бејзик за апликације) код ће бити учитан спреман за покретање. Уколико није укључено, VBA код ће бити у виду коментара, тако да га можете погледати, али не и покренути." #. K6YYX #: cui/uiconfig/ui/optfltrpage.ui:172 msgctxt "optfltrpage|ex_saveorig" msgid "Sa_ve original Basic code" -msgstr "_Сачувај оригинални бејзик код" +msgstr "_Сачувај оригинални Бејзик код" #. QzDgZ #: cui/uiconfig/ui/optfltrpage.ui:181 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 "" +msgstr "Поставља оригинални Microsoft Бејзик код унутар документ у специјалној интерној меморији док год је документ учитан у %PRODUCTNAME. Када чувате документ у Microsoft-ов формат, Бејзик код ће бити сачуван поново без било каквих промена." #. a5EkB #: cui/uiconfig/ui/optfltrpage.ui:198 msgctxt "optfltrpage|label2" msgid "Microsoft Excel" -msgstr "" +msgstr "Microsoft Excel" #. z9TKA #: cui/uiconfig/ui/optfltrpage.ui:231 @@ -14174,37 +14170,37 @@ #: cui/uiconfig/ui/optfltrpage.ui:240 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 "" +msgstr "Учитава и чува Бејзик код из Microsoft документ као посебан %PRODUCTNAME Бејзик модул унутар документа. Онемогућени Microsoft Бејзик код ће бити видљив у %PRODUCTNAME Бејзик IDE окружењу, између Sub и End Sub." #. VSdyY #: cui/uiconfig/ui/optfltrpage.ui:251 msgctxt "optfltrpage|pp_saveorig" msgid "Sav_e original Basic code" -msgstr "Са_чувај оригинални бејзик код" +msgstr "Са_чувај оригинални Бејзик код" #. tTQXM #: cui/uiconfig/ui/optfltrpage.ui:260 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 "" +msgstr "Поставља оригинални Microsoft Бејзик код унутар документ у специјалној интерној меморији док год је документ учитан у %PRODUCTNAME. Када чувате документ у Microsoft-ов формат, Бејзик код ће бити сачуван поново без било каквих промена." #. sazZt #: cui/uiconfig/ui/optfltrpage.ui:277 msgctxt "optfltrpage|label3" msgid "Microsoft PowerPoint" -msgstr "" +msgstr "Microsoft PowerPoint" #. yV3zh #: cui/uiconfig/ui/optfltrpage.ui:292 msgctxt "extended_tip|OptFltrPage" msgid "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code." -msgstr "" +msgstr "Одређује опште особине за учитавање и чување Microsoft Office докумената уз VBA (Визуелни Бејзик за апликације) код." #. Q8yvt #: cui/uiconfig/ui/optfontspage.ui:87 msgctxt "optfontspage|label2" msgid "_Font:" -msgstr "" +msgstr "_Фонт:" #. TAig5 #: cui/uiconfig/ui/optfontspage.ui:101 @@ -14240,37 +14236,37 @@ #: cui/uiconfig/ui/optfontspage.ui:202 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 "" +msgstr "Исписује оригинални фонт и фонт који ће га заменити. Изаберите „Увек“ да замените фонт чак и када је оригинални фонт инсталиран на систему. Изаберите „Само екран“ да замените фонт на екрану, али не и приликом штампе." #. BGoZq #: cui/uiconfig/ui/optfontspage.ui:231 msgctxt "extended_tip | apply" msgid "Applies the selected font replacement." -msgstr "" +msgstr "Примењује изабране замене фонта." #. sYmaA #: cui/uiconfig/ui/optfontspage.ui:250 msgctxt "extended_tip | delete" msgid "Deletes the selected font replacement." -msgstr "" +msgstr "Брише изабрани заменски фонт." #. gtiJp #: cui/uiconfig/ui/optfontspage.ui:275 msgctxt "extended_tip | font2" msgid "Enter or select the name of the replacement font." -msgstr "" +msgstr "Унесите или изаберите име заменског фонта." #. SABse #: cui/uiconfig/ui/optfontspage.ui:300 msgctxt "extended_tip | font1" msgid "Enter or select the name of the font that you want to replace." -msgstr "" +msgstr "Унесите или изаберите име фонта који желите да замените." #. k4PCs #: cui/uiconfig/ui/optfontspage.ui:311 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 "" +msgstr "Мења фонт фонтом који ви изаберете. Заменски фонт ће заменити фонт само на екрану или на екрану и приликом штампе. Замена не мења поставке фонта које су сачуване унутар документа." #. 7ECDC #: cui/uiconfig/ui/optfontspage.ui:323 @@ -14282,19 +14278,19 @@ #: cui/uiconfig/ui/optfontspage.ui:332 msgctxt "extended_tip | usetable" msgid "Enables the font replacement settings that you define." -msgstr "" +msgstr "Омогућава поставке замене фонта, које сами одаберете." #. wDa4A #: cui/uiconfig/ui/optfontspage.ui:350 msgctxt "optfontspage|label4" msgid "Replacement Table" -msgstr "" +msgstr "Таблица за замену" #. z93yC #: cui/uiconfig/ui/optfontspage.ui:389 msgctxt "optfontspage|label8" msgid "Fon_ts:" -msgstr "" +msgstr "_Фонтови:" #. L9aT3 #: cui/uiconfig/ui/optfontspage.ui:404 @@ -14312,7 +14308,7 @@ #: cui/uiconfig/ui/optfontspage.ui:423 msgctxt "extended_tip | fontname" msgid "Select the font for the display of HTML and Basic source code." -msgstr "" +msgstr "Изаберите фонт за приказ HTML и Бејзик изворног кода." #. Cc5tn #: cui/uiconfig/ui/optfontspage.ui:434 @@ -14324,43 +14320,43 @@ #: cui/uiconfig/ui/optfontspage.ui:443 msgctxt "extended_tip | nonpropfontonly" msgid "Check to display only non-proportional fonts in the Fonts list box." -msgstr "" +msgstr "Укључите да прикажете само непропорционалне фонтове у поље са списком фонтова." #. GAiec #: cui/uiconfig/ui/optfontspage.ui:460 msgctxt "extended_tip | fontheight" msgid "Select a font size for the display of HTML and Basic source code." -msgstr "" +msgstr "Изаберите величину фонта за приказ HTML и Бејзик изворног кода." #. AafuA #: cui/uiconfig/ui/optfontspage.ui:480 msgctxt "optfontspage|label1" msgid "Font Settings for HTML, Basic and SQL Sources" -msgstr "" +msgstr "Поставке фонта за HTML, Бејзик и SQL изворе" #. AFEDo #: cui/uiconfig/ui/optgeneralpage.ui:37 msgctxt "optgeneralpage|exthelp" msgid "_Extended tips" -msgstr "_Продужени савети" +msgstr "_Проширени савети" #. ypuz2 #: cui/uiconfig/ui/optgeneralpage.ui:46 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 "" +msgstr "Приказује помоћни текст када поставите курсор на иконицу, наредбу менија или контролу унутар прозорчета." #. Cbeuc #: cui/uiconfig/ui/optgeneralpage.ui:57 msgctxt "optgeneralpage|popupnohelp" msgid "Show \"No offline help installed\" popup" -msgstr "" +msgstr "Приказује искачућу поруку уколико није инсталирана помоћ за рад ван мреже" #. YUaEz #: cui/uiconfig/ui/optgeneralpage.ui:71 msgctxt "optgeneralpage|TipOfTheDayCheckbox" msgid "Show \"Tip of the Day\" dialog on start-up" -msgstr "" +msgstr "Приказује прозорче са „Саветом дана“ приликом покретања" #. BR6gf #: cui/uiconfig/ui/optgeneralpage.ui:92 @@ -14378,7 +14374,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:158 msgctxt "optgeneralpage|label2" msgid "Open/Save Dialogs" -msgstr "" +msgstr "Прозорчићи за отварање/чување" #. JAW5C #: cui/uiconfig/ui/optgeneralpage.ui:184 @@ -14390,7 +14386,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:199 msgctxt "optgeneralpage|label3" msgid "Print Dialogs" -msgstr "" +msgstr "Прозорчићи за штампање" #. SFLLC #: cui/uiconfig/ui/optgeneralpage.ui:225 @@ -14402,13 +14398,13 @@ #: cui/uiconfig/ui/optgeneralpage.ui:234 msgctxt "extended_tip | docstatus" msgid "Specifies whether the printing of the document counts as a modification." -msgstr "" +msgstr "Одређује да ли се штампа документа рачуна као измена садржаја документа." #. 4yo9c #: cui/uiconfig/ui/optgeneralpage.ui:245 msgctxt "optgeneralpage|label4" msgid "Document Status" -msgstr "" +msgstr "Стање документа" #. zEUCi #: cui/uiconfig/ui/optgeneralpage.ui:279 @@ -14420,7 +14416,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:298 msgctxt "extended_tip | year" msgid "Defines a date range, within which the system recognizes a two-digit year." -msgstr "" +msgstr "Одређује опсег датума унутар којих ће систем препознати годину на основу два броја." #. AhF6m #: cui/uiconfig/ui/optgeneralpage.ui:311 @@ -14432,31 +14428,31 @@ #: cui/uiconfig/ui/optgeneralpage.ui:326 msgctxt "optgeneralpage|label5" msgid "Year (Two Digits)" -msgstr "" +msgstr "Година (две цифре)" #. FqdXe #: cui/uiconfig/ui/optgeneralpage.ui:357 msgctxt "optgeneralpage|collectusageinfo" msgid "Collect usage data and send it to The Document Foundation" -msgstr "" +msgstr "Прикупљај податке о коришћењу и шаљи из нашој фондацији" #. xkgEo #: cui/uiconfig/ui/optgeneralpage.ui:367 msgctxt "extended_tip | collectusageinfo" msgid "Send usage data to help The Document Foundation improve the software usability." -msgstr "" +msgstr "Шаље податке о коришћењу који могу помоћи Документ фондацији да побољша употребљивост и квалитет програма." #. pRnqG #: cui/uiconfig/ui/optgeneralpage.ui:378 msgctxt "optgeneralpage|crashreport" msgid "Sen_d crash reports to The Document Foundation" -msgstr "" +msgstr "_Пошаљите нам податке о паду програма" #. rS3dG #: cui/uiconfig/ui/optgeneralpage.ui:400 msgctxt "optgeneralpage|label7" msgid "Help Improve %PRODUCTNAME" -msgstr "" +msgstr "Помозите да побољшамо %PRODUCTNAME" #. 2MFwd #: cui/uiconfig/ui/optgeneralpage.ui:432 @@ -14480,103 +14476,103 @@ #: cui/uiconfig/ui/optgeneralpage.ui:499 msgctxt "optgeneralpage|fileassoc" msgid "Windows Default apps" -msgstr "" +msgstr "Подразумеване Windows апликације" #. fXjVB #: cui/uiconfig/ui/optgeneralpage.ui:519 msgctxt "optgeneralpage|fileassoc" msgid "%PRODUCTNAME File Associations" -msgstr "" +msgstr "Веза %PRODUCTNAME и врсте датотека" #. coFbL #: cui/uiconfig/ui/optgeneralpage.ui:533 msgctxt "extended_tip | OptGeneralPage" msgid "Specifies the general settings for %PRODUCTNAME." -msgstr "" +msgstr "Одређује опште поставке за %PRODUCTNAME." #. FsiDE #: cui/uiconfig/ui/opthtmlpage.ui:90 msgctxt "opthtmlpage|size7FT" msgid "Size _7:" -msgstr "" +msgstr "Величина _7:" #. eSVmw #: cui/uiconfig/ui/opthtmlpage.ui:107 msgctxt "extended_tip|size7" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. SfHVG #: cui/uiconfig/ui/opthtmlpage.ui:120 msgctxt "opthtmlpage|size6FT" msgid "Size _6:" -msgstr "" +msgstr "Величина _6:" #. wWFqw #: cui/uiconfig/ui/opthtmlpage.ui:137 msgctxt "extended_tip|size6" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. mbGGc #: cui/uiconfig/ui/opthtmlpage.ui:150 msgctxt "opthtmlpage|size5FT" msgid "Size _5:" -msgstr "" +msgstr "Величина _5:" #. GAy87 #: cui/uiconfig/ui/opthtmlpage.ui:167 msgctxt "extended_tip|size5" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. PwaSa #: cui/uiconfig/ui/opthtmlpage.ui:180 msgctxt "opthtmlpage|size4FT" msgid "Size _4:" -msgstr "" +msgstr "Величина _4:" #. QEA47 #: cui/uiconfig/ui/opthtmlpage.ui:197 msgctxt "extended_tip|size4" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. FSRpm #: cui/uiconfig/ui/opthtmlpage.ui:210 msgctxt "opthtmlpage|size3FT" msgid "Size _3:" -msgstr "" +msgstr "Величина _3:" #. drCYA #: cui/uiconfig/ui/opthtmlpage.ui:227 msgctxt "extended_tip|size3" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. unrKj #: cui/uiconfig/ui/opthtmlpage.ui:240 msgctxt "opthtmlpage|size2FT" msgid "Size _2:" -msgstr "" +msgstr "Величина _2:" #. tvwUA #: cui/uiconfig/ui/opthtmlpage.ui:257 msgctxt "extended_tip|size2" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. aiSoE #: cui/uiconfig/ui/opthtmlpage.ui:270 msgctxt "opthtmlpage|size1FT" msgid "Size _1:" -msgstr "" +msgstr "Величина _1:" #. 99HCd #: cui/uiconfig/ui/opthtmlpage.ui:287 msgctxt "extended_tip|size1" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Употребите дугме да поставите вредност од 1 до 7 како би задали одговарајућу величину фонта за HTML ознаке до ." #. rRkQd #: cui/uiconfig/ui/opthtmlpage.ui:304 @@ -14588,37 +14584,37 @@ #: cui/uiconfig/ui/opthtmlpage.ui:354 msgctxt "opthtmlpage|ignorefontnames" msgid "Ignore _font settings" -msgstr "" +msgstr "Занемари поставке _фонта" #. kD39h #: cui/uiconfig/ui/opthtmlpage.ui:364 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 "" +msgstr "Укључите ово да занемарите све поставке фонта приликом увоза. Фонтови који су одређени у стилу HTML странице ће бити фонтови који ће бити коришћени. " #. 7bZSP #: cui/uiconfig/ui/opthtmlpage.ui:375 msgctxt "opthtmlpage|unknowntag" msgid "_Import unknown HTML tags as fields" -msgstr "" +msgstr "_Увези непонате HTML ознаке као поља" #. QvehA #: cui/uiconfig/ui/opthtmlpage.ui:385 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 "" +msgstr "Укључите ово уколико желите да увезете и ознаке које нису препознте у %PRODUCTNAME као поља." #. VFTrU #: cui/uiconfig/ui/opthtmlpage.ui:396 msgctxt "opthtmlpage|numbersenglishus" msgid "_Use '%ENGLISHUSLOCALE' locale for numbers" -msgstr "" +msgstr "_Користи „%ENGLISHUSLOCALE“ језик за бројеве" #. c4j5A #: cui/uiconfig/ui/opthtmlpage.ui:406 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 "" +msgstr "Уколико није укључено, бројеви ће бити тумачени на основу поставки у Поставке језика – Језик за – Поставке језика у прозорчету за Опције. Уколико је укључено, програм ће претпоставити са су бројеви написани у америчком енглеском језику." #. Fnsdh #: cui/uiconfig/ui/opthtmlpage.ui:423 @@ -14636,19 +14632,19 @@ #: cui/uiconfig/ui/opthtmlpage.ui:487 msgctxt "extended_tip|charset" msgid "Select the appropriate character set for the export" -msgstr "" +msgstr "Изаберите одговарајући сет знака за извоз" #. nJtoS #: cui/uiconfig/ui/opthtmlpage.ui:504 msgctxt "opthtmlpage|savegrflocal" msgid "_Copy local images to Internet" -msgstr "" +msgstr "_Копирај локалне слике на интернет" #. fPAEu #: cui/uiconfig/ui/opthtmlpage.ui:514 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 "" +msgstr "Означите ово да аутоматски пошаљете уметнуте слике на интернет сервер током слања преко FTP протокола. Користите прозорче „Сачувај као“ да сачувате документ и унесете целу FTP адресу као име датотеке на интернету." #. Xc4iM #: cui/uiconfig/ui/opthtmlpage.ui:525 @@ -14660,31 +14656,31 @@ #: cui/uiconfig/ui/opthtmlpage.ui:535 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 "" +msgstr "Уколико сте означили ово поље, распоред за штампу тренутног документа (на пример, садржај на обострано поравнатим странама без водећих тачака) ће бити такође извезен." #. Wwuvt #: cui/uiconfig/ui/opthtmlpage.ui:546 msgctxt "opthtmlpage|starbasicwarning" msgid "Display _warning" -msgstr "" +msgstr "Прикажи _упозорења" #. wArnh #: cui/uiconfig/ui/opthtmlpage.ui:557 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 "" +msgstr "Уколико је ово укључено, биће приказано упозорење приликом извоза у HTML уколико ће %PRODUCTNAME Бејзик макрои бити изгубљени." #. puyKW #: cui/uiconfig/ui/opthtmlpage.ui:568 msgctxt "opthtmlpage|starbasic" msgid "LibreOffice _Basic" -msgstr "" +msgstr "LibreOffice _Бејзик" #. BtWXE #: cui/uiconfig/ui/opthtmlpage.ui:578 msgctxt "extended_tip|starbasic" msgid "Mark this check box to include the %PRODUCTNAME Basic instructions when exporting to HTML format." -msgstr "" +msgstr "Омогућите ово уколико желите да укључите %PRODUCTNAME Бејзик упутства прилико извоза у HTML формат." #. sEnBN #: cui/uiconfig/ui/opthtmlpage.ui:595 @@ -14696,7 +14692,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:617 msgctxt "extended_tip|OptHtmlPage" msgid "Defines settings for HTML pages." -msgstr "" +msgstr "Одређује поставке за HTML странице." #. ecN5A #: cui/uiconfig/ui/optionsdialog.ui:18 @@ -14708,13 +14704,13 @@ #: 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 "" +msgstr "Враћа измене напрвљене у тренутној картици на оне које се могу применити када је овај прозорчић отворен." #. r2pWX #: cui/uiconfig/ui/optionsdialog.ui:91 msgctxt "optionsdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Чува све промене и затвара прозорче." #. 9asgn #: cui/uiconfig/ui/optionsdialog.ui:110 @@ -14726,235 +14722,235 @@ #: cui/uiconfig/ui/optjsearchpage.ui:35 msgctxt "optjsearchpage|matchcase" msgid "_uppercase/lowercase" -msgstr "" +msgstr "_велика/мала слова" #. HLhzj #: cui/uiconfig/ui/optjsearchpage.ui:44 msgctxt "extended_tip|matchcase" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује да се опције сматрају једнаким током претраге." #. MkLv3 #: cui/uiconfig/ui/optjsearchpage.ui:55 msgctxt "optjsearchpage|matchfullhalfwidth" msgid "_full-width/half-width forms" -msgstr "" +msgstr "образац у _пуној/у пола ширине" #. 35mFr #: cui/uiconfig/ui/optjsearchpage.ui:64 msgctxt "extended_tip|matchfullhalfwidth" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. FPFmB #: cui/uiconfig/ui/optjsearchpage.ui:75 msgctxt "optjsearchpage|matchhiraganakatakana" msgid "_hiragana/katakana" -msgstr "" +msgstr "_хирагана/катакана" #. LUPFs #: cui/uiconfig/ui/optjsearchpage.ui:84 msgctxt "extended_tip|matchhiraganakatakana" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. vx6x8 #: cui/uiconfig/ui/optjsearchpage.ui:95 msgctxt "optjsearchpage|matchcontractions" msgid "_contractions (yo-on, sokuon)" -msgstr "" +msgstr "_контракције (јо-он, сокјоон)" #. xYeGB #: cui/uiconfig/ui/optjsearchpage.ui:104 msgctxt "extended_tip|matchcontractions" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. DLxj9 #: cui/uiconfig/ui/optjsearchpage.ui:115 msgctxt "optjsearchpage|matchminusdashchoon" msgid "_minus/dash/cho-on" -msgstr "" +msgstr "_минус/цртица/чо-он" #. pkg8E #: cui/uiconfig/ui/optjsearchpage.ui:124 msgctxt "extended_tip|matchminusdashchoon" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. hYq5H #: cui/uiconfig/ui/optjsearchpage.ui:135 msgctxt "optjsearchpage|matchrepeatcharmarks" msgid "'re_peat character' marks" -msgstr "" +msgstr "ознаке за „понови знак“" #. fHHv6 #: cui/uiconfig/ui/optjsearchpage.ui:144 msgctxt "extended_tip|matchrepeatcharmarks" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. 62963 #: cui/uiconfig/ui/optjsearchpage.ui:155 msgctxt "optjsearchpage|matchvariantformkanji" msgid "_variant-form kanji (itaiji)" -msgstr "" +msgstr "_варијанта канџи (итаиџи)" #. EQ6FA #: cui/uiconfig/ui/optjsearchpage.ui:164 msgctxt "extended_tip|matchvariantformkanji" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. ghXPH #: cui/uiconfig/ui/optjsearchpage.ui:175 msgctxt "optjsearchpage|matcholdkanaforms" msgid "_old Kana forms" -msgstr "" +msgstr "_стари кана обрасци" #. 2WWSU #: cui/uiconfig/ui/optjsearchpage.ui:184 msgctxt "extended_tip|matcholdkanaforms" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. Wxc7u #: cui/uiconfig/ui/optjsearchpage.ui:195 msgctxt "optjsearchpage|matchdiziduzu" msgid "_di/zi, du/zu" -msgstr "" +msgstr "_di/zi, du/zu" #. EBvfD #: cui/uiconfig/ui/optjsearchpage.ui:204 msgctxt "extended_tip|matchdiziduzu" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. mAzGZ #: cui/uiconfig/ui/optjsearchpage.ui:215 msgctxt "optjsearchpage|matchbavahafa" msgid "_ba/va, ha/fa" -msgstr "" +msgstr "_ba/va, ha/fa" #. QMJfK #: cui/uiconfig/ui/optjsearchpage.ui:224 msgctxt "extended_tip|matchbavahafa" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. MJAYD #: cui/uiconfig/ui/optjsearchpage.ui:235 msgctxt "optjsearchpage|matchtsithichidhizi" msgid "_tsi/thi/chi, dhi/zi" -msgstr "" +msgstr "_tsi/thi/chi, dhi/zi" #. WBzBC #: cui/uiconfig/ui/optjsearchpage.ui:244 msgctxt "extended_tip|matchtsithichidhizi" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. CDA8F #: cui/uiconfig/ui/optjsearchpage.ui:255 msgctxt "optjsearchpage|matchhyuiyubyuvyu" msgid "h_yu/fyu, byu/vyu" -msgstr "" +msgstr "h_yu/fyu, byu/vyu" #. ZHDR5 #: cui/uiconfig/ui/optjsearchpage.ui:264 msgctxt "extended_tip|matchhyuiyubyuvyu" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. MsCme #: cui/uiconfig/ui/optjsearchpage.ui:275 msgctxt "optjsearchpage|matchseshezeje" msgid "_se/she, ze/je" -msgstr "" +msgstr "_se/she, ze/je" #. ZgHGb #: cui/uiconfig/ui/optjsearchpage.ui:284 msgctxt "extended_tip|matchseshezeje" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. nRKqj #: cui/uiconfig/ui/optjsearchpage.ui:295 msgctxt "optjsearchpage|matchiaiya" msgid "_ia/iya (piano/piyano)" -msgstr "" +msgstr "_иа/ија (piano/piyano)" #. SANdY #: cui/uiconfig/ui/optjsearchpage.ui:304 msgctxt "extended_tip|matchiaiya" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. 4i3uv #: cui/uiconfig/ui/optjsearchpage.ui:315 msgctxt "optjsearchpage|matchkiku" msgid "_ki/ku (tekisuto/tekusuto)" -msgstr "" +msgstr "_ки/ку (tekisuto/tekusuto)" #. s4qyS #: cui/uiconfig/ui/optjsearchpage.ui:324 msgctxt "extended_tip|matchkiku" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. eEXX5 #: cui/uiconfig/ui/optjsearchpage.ui:335 msgctxt "optjsearchpage|matchprolongedsoundmark" msgid "Prolon_ged vowels (ka-/kaa)" -msgstr "" +msgstr "Продужени _самогласници (ка-/каа)" #. rRCUA #: cui/uiconfig/ui/optjsearchpage.ui:344 msgctxt "extended_tip|matchprolongedsoundmark" msgid "Specifies the options to be treated as equal in a search." -msgstr "" +msgstr "Одређује опције које ће бити сматране истим унутар претраге." #. rPGGZ #: cui/uiconfig/ui/optjsearchpage.ui:361 msgctxt "optjsearchpage|label1" msgid "Treat as Equal" -msgstr "" +msgstr "Сматрај једнаким" #. wT3mJ #: cui/uiconfig/ui/optjsearchpage.ui:396 msgctxt "optjsearchpage|ignorepunctuation" msgid "Pu_nctuation characters" -msgstr "" +msgstr "З_наци интерпункције" #. zACWR #: cui/uiconfig/ui/optjsearchpage.ui:405 msgctxt "extended_tip|ignorepunctuation" msgid "Specifies the characters to be ignored." -msgstr "" +msgstr "Одређује знакове који ће бити занемарени." #. 5JD7N #: cui/uiconfig/ui/optjsearchpage.ui:416 msgctxt "optjsearchpage|ignorewhitespace" msgid "_Whitespace characters" -msgstr "" +msgstr "_Знакови размака" #. vyC8h #: cui/uiconfig/ui/optjsearchpage.ui:425 msgctxt "extended_tip|ignorewhitespace" msgid "Specifies the characters to be ignored." -msgstr "" +msgstr "Одређује знакове који ће бити занемарени." #. W92kS #: cui/uiconfig/ui/optjsearchpage.ui:436 msgctxt "optjsearchpage|ignoremiddledot" msgid "Midd_le dots" -msgstr "" +msgstr "_Средишње тачке" #. kA2cf #: cui/uiconfig/ui/optjsearchpage.ui:445 msgctxt "extended_tip|ignoremiddledot" msgid "Specifies the characters to be ignored." -msgstr "" +msgstr "Одређује знакове који ће бити занемарени." #. nZXcM #: cui/uiconfig/ui/optjsearchpage.ui:465 @@ -14972,43 +14968,43 @@ #: cui/uiconfig/ui/optlanguagespage.ui:85 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 "" +msgstr "Изаберите језик који се користи за корисничко окружење, на пример за меније прозорчиће, датотеке за помоћ. Мора бити инсталиран бар један додатни језички пакет или вишејезично издање %PRODUCTNAME." #. e8VE3 #: cui/uiconfig/ui/optlanguagespage.ui:102 msgctxt "optlanguagespage|label1" msgid "Language Of" -msgstr "" +msgstr "Језик за" #. E3UQs #: cui/uiconfig/ui/optlanguagespage.ui:159 msgctxt "extended_tip|westernlanguage" msgid "Specifies the language used for the spellcheck function in western alphabets." -msgstr "" +msgstr "Одређује језик који се користи за функцију провере писања у западним азбукама." #. oP5CC #: cui/uiconfig/ui/optlanguagespage.ui:191 msgctxt "extended_tip|asianlanguage" msgid "Specifies the language used for the spellcheck function in Asian alphabets." -msgstr "" +msgstr "Одређује језик који се користи за функцију провере писања у азијским азбукама." #. cZNNA #: cui/uiconfig/ui/optlanguagespage.ui:223 msgctxt "extended_tip|complexlanguage" msgid "Specifies the language for the complex text layout spellcheck." -msgstr "" +msgstr "Одређује језик за проверу писања код сложеног размештаја текста." #. 3JLVm #: cui/uiconfig/ui/optlanguagespage.ui:234 msgctxt "optlanguagespage|currentdoc" msgid "For the current document only" -msgstr "" +msgstr "Само за тренутни документ" #. Xg3qT #: cui/uiconfig/ui/optlanguagespage.ui:244 msgctxt "extended_tip|currentdoc" msgid "Specifies that the settings for default languages are valid only for the current document." -msgstr "" +msgstr "Одређује да поставке подразумеваних језика важе само за тренутни документ." #. zeaKX #: cui/uiconfig/ui/optlanguagespage.ui:255 @@ -15020,121 +15016,121 @@ #: cui/uiconfig/ui/optlanguagespage.ui:264 msgctxt "extended_tip|ctlsupport" msgid "Activates complex text layout support. You can now modify the settings corresponding to complex text layout in %PRODUCTNAME." -msgstr "" +msgstr "Активира подршку за сложене распореде текста. Можете изменити поставке одговарајућих распореда сложених текстова у %PRODUCTNAME." #. mpLF7 #: cui/uiconfig/ui/optlanguagespage.ui:275 msgctxt "optlanguagespage|asiansupport" msgid "Asian:" -msgstr "" +msgstr "Азијски:" #. GT6AZ #: cui/uiconfig/ui/optlanguagespage.ui:284 msgctxt "extended_tip|asiansupport" msgid "Activates Asian languages support. You can now modify the corresponding Asian language settings in %PRODUCTNAME." -msgstr "" +msgstr "Активира подршку за азијске језике. Сада можете изменити поставке одговарајућег азијског језика у %PRODUCTNAME." #. QwDAK #: cui/uiconfig/ui/optlanguagespage.ui:297 msgctxt "optlanguagespage|western" msgid "Western:" -msgstr "" +msgstr "Западни:" #. K62Ex #: cui/uiconfig/ui/optlanguagespage.ui:318 msgctxt "optlanguagespage|label2" msgid "Default Languages for Documents" -msgstr "" +msgstr "Подразумевани језици за документе" #. 25J4E #: cui/uiconfig/ui/optlanguagespage.ui:350 msgctxt "optlanguagespage|ignorelanguagechange" msgid "Ignore s_ystem input language" -msgstr "" +msgstr "Заменари улазни језик _система" #. CCumn #: cui/uiconfig/ui/optlanguagespage.ui:359 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 "" +msgstr "Одређује да ли се промене језика/тастатуре у систему занемарују. Уколико је занемарено, унос новог текста ће пратити поставке језика у документу или у тренутном пасусу, не на читавом систему." #. 83eTv #: cui/uiconfig/ui/optlanguagespage.ui:376 msgctxt "optlanguagespage|label3" msgid "Enhanced Language Support" -msgstr "" +msgstr "Напредна подршка за језик" #. XqCkq #: cui/uiconfig/ui/optlanguagespage.ui:414 msgctxt "optlanguagespage|localesettingFT" msgid "Locale setting:" -msgstr "" +msgstr "Поставке језика:" #. Zyao3 #: cui/uiconfig/ui/optlanguagespage.ui:428 msgctxt "optlanguagespage|label6" msgid "Decimal separator key:" -msgstr "" +msgstr "Децимални раздвојник:" #. cuqUB #: cui/uiconfig/ui/optlanguagespage.ui:442 msgctxt "optlanguagespage|defaultcurrency" msgid "_Default currency:" -msgstr "" +msgstr "Подразумевана _валута:" #. XmgPh #: cui/uiconfig/ui/optlanguagespage.ui:456 msgctxt "optlanguagespage|dataaccpatterns" msgid "Date acceptance _patterns:" -msgstr "" +msgstr "_Шаблон прихватања датума:" #. yBkAN #: cui/uiconfig/ui/optlanguagespage.ui:474 msgctxt "extended_tip|localesetting" msgid "Specifies the locale setting of the country setting. This influences settings for numbering, currency and units of measure." -msgstr "" +msgstr "Одређује поставке језика на основу подешавања државе. Ово утиче на поставке бројева, валуте и мерних јединица." #. XqESm #: cui/uiconfig/ui/optlanguagespage.ui:491 msgctxt "extended_tip|currencylb" msgid "Specifies the default currency that is used for the currency format and the currency fields." -msgstr "" +msgstr "Одређује подразумевану валуту која се користи за формат валуте у пољима валуте." #. eNFJn #: cui/uiconfig/ui/optlanguagespage.ui:510 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 "" +msgstr "Одређује шаблон за прихватање датума за тренутни језик. Улазне табеле у Рачуну и Писцу треба да се поклапају са датумом који је одређен шаблоном језика да би их програм правилно препознао као датум." #. WoNAA #: cui/uiconfig/ui/optlanguagespage.ui:521 msgctxt "optlanguagespage|decimalseparator" msgid "_Same as locale setting ( %1 )" -msgstr "" +msgstr "_Исто као у поставкама језика (%1)" #. G5VXy #: cui/uiconfig/ui/optlanguagespage.ui:530 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 "" +msgstr "Одређује да се користи децимални раздвојник који је постављен у систему, када притиснете задато дугме на нумеричкој тастатури." #. BGtpx #: cui/uiconfig/ui/optlanguagespage.ui:547 msgctxt "optlanguagespage|label7" msgid "Formats" -msgstr "" +msgstr "Формати" #. HASiD #: cui/uiconfig/ui/optlanguagespage.ui:561 msgctxt "extended_tip|OptLanguagesPage" msgid "Defines the default languages and some other locale settings for documents." -msgstr "" +msgstr "Одређује подразумеване језике и друге поставке језика за документе." #. CgUDR #: cui/uiconfig/ui/optlingupage.ui:136 msgctxt "lingumodules" msgid "Contains the installed language modules." -msgstr "" +msgstr "Садржи инсталиране језичке модуле." #. 8kxYC #: cui/uiconfig/ui/optlingupage.ui:149 @@ -15152,19 +15148,19 @@ #: cui/uiconfig/ui/optlingupage.ui:158 msgctxt "lingumodulesedit" msgid "To edit a language module, select it and click Edit." -msgstr "" +msgstr "Да уредите језички модул, изаберите га и кликните „Уреди“." #. SBvTc #: cui/uiconfig/ui/optlingupage.ui:226 msgctxt "optlingupage|lingumodulesft" msgid "_Available Language Modules" -msgstr "" +msgstr "_Доступни језички модули" #. efvBg #: cui/uiconfig/ui/optlingupage.ui:309 msgctxt "lingudicts" msgid "Lists the available user dictionaries." -msgstr "" +msgstr "Исписује доступне корисничке речнике." #. qBrCR #: cui/uiconfig/ui/optlingupage.ui:329 @@ -15176,7 +15172,7 @@ #: 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 "" +msgstr "Отвара прозорче за нови речник у коме можете именовати нови кориснички одређен речник или речник изузетака и одредити ваш језик." #. mCu3q #: cui/uiconfig/ui/optlingupage.ui:348 @@ -15194,7 +15190,7 @@ #: 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 "" +msgstr "Отвара прозорче за уређивање произвољног речника одакле можете додати произвољни речник или уредити постојеће уносе." #. WCFD5 #: cui/uiconfig/ui/optlingupage.ui:368 @@ -15206,19 +15202,19 @@ #: cui/uiconfig/ui/optlingupage.ui:375 msgctxt "lingudictsdelete" msgid "Deletes the selected dictionary after a confirmation, provided it is not write-protected." -msgstr "" +msgstr "Брише изабрани речник након потврде, уколико није заштићен за писање." #. qEqZD #: cui/uiconfig/ui/optlingupage.ui:420 msgctxt "optlingupage|lingudictsft" msgid "_User-defined Dictionaries" -msgstr "" +msgstr "_Кориснички одређени речници" #. sE9tc #: cui/uiconfig/ui/optlingupage.ui:505 msgctxt "linguoptions" msgid "Defines the options for the spellcheck and hyphenation." -msgstr "" +msgstr "Одређује опције за проверу писања и прелом речи." #. 58e5v #: cui/uiconfig/ui/optlingupage.ui:518 @@ -15236,7 +15232,7 @@ #: cui/uiconfig/ui/optlingupage.ui:527 msgctxt "linguoptionsedit" msgid "If you want to change a value, select the entry and then click Edit." -msgstr "" +msgstr "Уколико желите да промените вредност, изаберите унос и кликните „Уреди“." #. XCpcE #: cui/uiconfig/ui/optlingupage.ui:554 @@ -15248,25 +15244,25 @@ #: cui/uiconfig/ui/optlingupage.ui:597 msgctxt "optlingupage|label4" msgid "_Options" -msgstr "" +msgstr "_Опције" #. ARk3s #: cui/uiconfig/ui/optlingupage.ui:632 msgctxt "OptLinguPage" msgid "Specifies the properties of the spelling, thesaurus and hyphenation." -msgstr "" +msgstr "Поставља особине које се користе за проверу писања, речник синонима и прелом речи." #. ADZ8E #: cui/uiconfig/ui/optnewdictionarydialog.ui:8 msgctxt "optnewdictionarydialog|OptNewDictionaryDialog" msgid "New Dictionary" -msgstr "" +msgstr "Нови речник" #. oWC8W #: cui/uiconfig/ui/optnewdictionarydialog.ui:106 msgctxt "nameedit" msgid "Specifies the name of the new custom dictionary." -msgstr "" +msgstr "Одређује име новог произвољног речника." #. XucrZ #: cui/uiconfig/ui/optnewdictionarydialog.ui:119 @@ -15284,19 +15280,19 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:145 msgctxt "optnewdictionarydialog|except" msgid "_Exception (-)" -msgstr "" +msgstr "_Изузеци (-)" #. saphk #: cui/uiconfig/ui/optnewdictionarydialog.ui:154 msgctxt "except" msgid "Specifies whether you wish to avoid certain words in your documents." -msgstr "" +msgstr "Одређује да ли желите да избегавате одређене речи у вашим документима." #. VJQ4d #: cui/uiconfig/ui/optnewdictionarydialog.ui:178 msgctxt "language" msgid "By selecting a certain language you can limit the use of the custom dictionary." -msgstr "" +msgstr "Избором одређених језика можете ограничити коришћење произвољног речника." #. CpgB2 #: cui/uiconfig/ui/optnewdictionarydialog.ui:195 @@ -15308,7 +15304,7 @@ #: cui/uiconfig/ui/optnewdictionarydialog.ui:220 msgctxt "OptNewDictionaryDialog" msgid "In the Dictionary section you can name a new user-defined dictionary or dictionary of exceptions and specify the language." -msgstr "" +msgstr "У одељку речника можете именовати нови кориснички одређени речник или речник изузетака и задати ваш језик." #. n6vQH #: cui/uiconfig/ui/optonlineupdatepage.ui:35 @@ -15320,55 +15316,55 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:44 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 "" +msgstr "Означите да проверите ажурирања на мрежи с времена на време, а затим изаберите интервал на који ће %PRODUCTNAME тражити ажурирања." #. Hbe2C #: cui/uiconfig/ui/optonlineupdatepage.ui:66 msgctxt "optonlineupdatepage|everyday" msgid "Every da_y" -msgstr "" +msgstr "Сваког _дана" #. yFD8D #: cui/uiconfig/ui/optonlineupdatepage.ui:76 msgctxt "extended_tip|everyday" msgid "A check will be performed once a day." -msgstr "" +msgstr "Провера ће бити обављена једном дневно." #. 3zd7m #: cui/uiconfig/ui/optonlineupdatepage.ui:87 msgctxt "optonlineupdatepage|everyweek" msgid "Every _week" -msgstr "" +msgstr "Сваке _недеље" #. Xcj78 #: cui/uiconfig/ui/optonlineupdatepage.ui:97 msgctxt "extended_tip|everyweek" msgid "A check will be performed once a week. This is the default setting." -msgstr "" +msgstr "Провера ће бити обављена једном недељно. Ово су подразумеване поставке." #. 29exv #: cui/uiconfig/ui/optonlineupdatepage.ui:108 msgctxt "optonlineupdatepage|everymonth" msgid "Every _month" -msgstr "" +msgstr "Сваког _месеца" #. oEWBt #: cui/uiconfig/ui/optonlineupdatepage.ui:118 msgctxt "extended_tip|everymonth" msgid "A check will be performed once a month." -msgstr "" +msgstr "Провера ће бити обављена једном месечно." #. pGuvH #: cui/uiconfig/ui/optonlineupdatepage.ui:138 msgctxt "optonlineupdatepage|checknow" msgid "Check _Now" -msgstr "" +msgstr "Провери _сада" #. 4DhgF #: cui/uiconfig/ui/optonlineupdatepage.ui:146 msgctxt "extended_tip|checknow" msgid "A check will be performed now." -msgstr "" +msgstr "Провера ће сада бити покренута." #. UvuAC #: cui/uiconfig/ui/optonlineupdatepage.ui:171 @@ -15392,7 +15388,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:242 msgctxt "extended_tip|autodownload" msgid "Enable the automatic download of updates to the specified folder." -msgstr "" +msgstr "Омогућава аутоматско преузимање ажурирања у одређену фасциклу." #. AmVMh #: cui/uiconfig/ui/optonlineupdatepage.ui:266 @@ -15404,7 +15400,7 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:274 msgctxt "extended_tip|changepath" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "Кликните да изаберете циљну фасциклу за преузете датотеке." #. iCVFj #: cui/uiconfig/ui/optonlineupdatepage.ui:292 @@ -15416,43 +15412,43 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:296 msgctxt "extended_tip|destpathlabel" msgid "Click to select the destination folder for downloaded files." -msgstr "" +msgstr "Кликните да изаберете циљну фасциклу за преузете датотеке." #. vDRC5 #: cui/uiconfig/ui/optonlineupdatepage.ui:342 msgctxt "optonlineupdatepage|labeldest" msgid "Download Destination" -msgstr "" +msgstr "Одредиште за преузето" #. JqAh4 #: cui/uiconfig/ui/optonlineupdatepage.ui:377 msgctxt "optonlineupdatepage|extrabits" msgid "_Send OS version and basic hardware information" -msgstr "" +msgstr "_Шаљи верзију система и основне податке хардвера" #. b95Sc #: cui/uiconfig/ui/optonlineupdatepage.ui:381 msgctxt "optonlineupdatepage|extrabits|tooltip_text" msgid "This information lets us make optimizations for your hardware and operating system." -msgstr "" +msgstr "Ови подаци вам омогућавају да побољшате рад на вашем рачунару и оперативном систему." #. f2Wtr #: cui/uiconfig/ui/optonlineupdatepage.ui:406 msgctxt "optonlineupdatepage|useragent_label" msgid "User Agent:" -msgstr "" +msgstr "Кориснички агент:" #. agWbu #: cui/uiconfig/ui/optonlineupdatepage.ui:418 msgctxt "optonlineupdatepage|useragent_changed" msgid "Hit apply to update" -msgstr "" +msgstr "Кликните на „Примени“ да ажурирате" #. ZC9EF #: cui/uiconfig/ui/optonlineupdatepage.ui:456 msgctxt "optonlineupdatepage|labelagent" msgid "User Agent" -msgstr "" +msgstr "Кориснички агент" #. 3J5As #: cui/uiconfig/ui/optonlineupdatepage.ui:475 @@ -15464,31 +15460,31 @@ #: cui/uiconfig/ui/optonlineupdatepage.ui:483 msgctxt "extended_tip|OptOnlineUpdatePage" msgid "Specifies some options for the automatic notification and downloading of online updates to %PRODUCTNAME." -msgstr "" +msgstr "Одређује неке опције аутоматских обавештења и преузимање ажурирања за %PRODUCTNAME са мреже." #. QYxCN #: cui/uiconfig/ui/optopenclpage.ui:29 msgctxt "optopenclpage|useopencl" msgid "Allow use of OpenCL" -msgstr "" +msgstr "Дозволи OpenCL" #. MAc4P #: cui/uiconfig/ui/optopenclpage.ui:47 msgctxt "optopenclpage|openclused" msgid "OpenCL is available for use." -msgstr "" +msgstr "OpenCL је доступан за коришћење." #. fAEQH #: cui/uiconfig/ui/optopenclpage.ui:59 msgctxt "optopenclpage|openclnotused" msgid "OpenCL is not used." -msgstr "" +msgstr "OpenCL се не користи." #. xWE5i #: cui/uiconfig/ui/optopenclpage.ui:75 msgctxt "optopenclpage|label1" msgid "OpenCL Options" -msgstr "" +msgstr "Опције за OpenCL" #. 7AXsY #: cui/uiconfig/ui/optpathspage.ui:82 @@ -15500,19 +15496,19 @@ #: cui/uiconfig/ui/optpathspage.ui:104 msgctxt "optpathspage|user_paths" msgid "User Paths" -msgstr "" +msgstr "Корисничке путање" #. xPUYD #: cui/uiconfig/ui/optpathspage.ui:118 msgctxt "optpathspage|internal_paths" msgid "Internal Paths" -msgstr "" +msgstr "Унутарње путање" #. 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 "" +msgstr "Да измените унос у овај списак, кликните на унос, а затим „Уреди“. Поред тога, можете и двапут кликнути на унос." #. rfDum #: cui/uiconfig/ui/optpathspage.ui:150 @@ -15530,7 +15526,7 @@ #: cui/uiconfig/ui/optpathspage.ui:178 msgctxt "default" msgid "The Default button resets the predefined paths for all selected entries." -msgstr "" +msgstr "Подразумевано дугме за поновно постављање подразумеваних путања за све изабране уносе." #. q8JFc #: cui/uiconfig/ui/optpathspage.ui:190 @@ -15542,61 +15538,61 @@ #: cui/uiconfig/ui/optpathspage.ui:197 msgctxt "edit" msgid "Click to display the Select Path or Edit Paths dialog." -msgstr "" +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 "" +msgstr "Овај одсек садржи подразумеване путање до важних фасцикли у %PRODUCTNAME. Ове путање може променити корисник." #. pQEWv #: cui/uiconfig/ui/optproxypage.ui:31 msgctxt "optproxypage|label2" msgid "Proxy s_erver:" -msgstr "" +msgstr "Сервер посредника (проксија):" #. KLjce #: cui/uiconfig/ui/optproxypage.ui:51 msgctxt "extended_tip|http" msgid "Type the name of the proxy server for HTTP." -msgstr "" +msgstr "Унесите име посредничког (прокси) сервера за HTTP." #. 4Aszp #: cui/uiconfig/ui/optproxypage.ui:70 msgctxt "extended_tip|https" msgid "Type the name of the proxy server for HTTPS. Type the port in the right-hand field." -msgstr "" +msgstr "Унесите име посредничког (прокси) сервера за HTTPS. Унесите порт у поље са десне стране." #. wtMPj #: cui/uiconfig/ui/optproxypage.ui:89 msgctxt "extended_tip|ftp" msgid "Type the name of the proxy server for FTP." -msgstr "" +msgstr "Унесите име прокси сервера за FTP." #. 6oaAC #: cui/uiconfig/ui/optproxypage.ui:108 msgctxt "extended_tip|noproxy" msgid "Specifies the names of the servers that do not require any proxy servers, separated by semicolons." -msgstr "" +msgstr "Одређује имена сервера који не захтевају посредничке (прокси) сервере, раздвојене тачком и зарезом." #. DyExz #: cui/uiconfig/ui/optproxypage.ui:129 msgctxt "extended_tip|httpport" msgid "Type the port for the corresponding proxy server." -msgstr "" +msgstr "Унесите порт за одговарајући посреднички (прокси) сервер." #. 5RqLF #: cui/uiconfig/ui/optproxypage.ui:150 msgctxt "extended_tip|httpsport" msgid "Type the port for the corresponding proxy server." -msgstr "" +msgstr "Унесите порт за одговарајући посреднички (прокси) сервер." #. sTzye #: cui/uiconfig/ui/optproxypage.ui:171 msgctxt "extended_tip|ftpport" msgid "Type the port for the corresponding proxy server." -msgstr "" +msgstr "Унесите порт за одговарајући посреднички (прокси) сервер." #. LBWG4 #: cui/uiconfig/ui/optproxypage.ui:185 @@ -15620,31 +15616,31 @@ #: cui/uiconfig/ui/optproxypage.ui:191 msgctxt "extended_tip|proxymode" msgid "Specifies the type of proxy definition." -msgstr "" +msgstr "Одређује врсту дефиниције посредовања." #. pkdvs #: cui/uiconfig/ui/optproxypage.ui:204 msgctxt "optproxypage|httpft" msgid "HT_TP proxy:" -msgstr "" +msgstr "HTTP про_кси:" #. dGMMs #: cui/uiconfig/ui/optproxypage.ui:218 msgctxt "optproxypage|httpportft" msgid "_Port:" -msgstr "" +msgstr "Пор_т:" #. 5tuq7 #: cui/uiconfig/ui/optproxypage.ui:231 msgctxt "optproxypage|httpsft" msgid "HTTP_S proxy:" -msgstr "" +msgstr "HTTPS прок_си:" #. egcgL #: cui/uiconfig/ui/optproxypage.ui:245 msgctxt "optproxypage|ftpft" msgid "_FTP proxy:" -msgstr "" +msgstr "FTP прокс_и:" #. ZaUmG #: cui/uiconfig/ui/optproxypage.ui:259 @@ -15656,13 +15652,13 @@ #: cui/uiconfig/ui/optproxypage.ui:273 msgctxt "optproxypage|httpsportft" msgid "P_ort:" -msgstr "" +msgstr "_Порт:" #. kmBDu #: cui/uiconfig/ui/optproxypage.ui:286 msgctxt "optproxypage|ftpportft" msgid "P_ort:" -msgstr "" +msgstr "По_рт:" #. RW6E4 #: cui/uiconfig/ui/optproxypage.ui:299 @@ -15680,7 +15676,7 @@ #: cui/uiconfig/ui/optproxypage.ui:330 msgctxt "extended_tip|OptProxyPage" msgid "Specifies the type of proxy definition." -msgstr "" +msgstr "Одређује врсту дефиниције посредника." #. Cdbvg #: cui/uiconfig/ui/optsavepage.ui:38 @@ -15692,7 +15688,7 @@ #: cui/uiconfig/ui/optsavepage.ui:47 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 "" +msgstr "Уколико је омогућено, поставке штампача ће бити учитане заједно са документом. На тај начин можете да одштампате документ на удаљени штампач, уколико не промените ручно штампач у прозорчићу за штампу. Уколико је омогућено, ваш стандардни штампач ће бити коришћен за штампу докумената. Тренутне поставке штампача ће бити сачуване са документом без обзира да ли је ова опција изабрана." #. VdFnA #: cui/uiconfig/ui/optsavepage.ui:58 @@ -15704,7 +15700,7 @@ #: cui/uiconfig/ui/optsavepage.ui:67 msgctxt "load_settings" msgid "Loads the user-specific settings saved in a document with the document." -msgstr "" +msgstr "Учитава специфичне поставке корисника које су сачуване у документ заједно са документом." #. js6Gn #: cui/uiconfig/ui/optsavepage.ui:84 @@ -15716,19 +15712,19 @@ #: cui/uiconfig/ui/optsavepage.ui:123 msgctxt "optsavepage|autosave" msgid "Save _AutoRecovery information every:" -msgstr "" +msgstr "Сачувај _Ауто опоравак на сваких:" #. 6L2Yh #: cui/uiconfig/ui/optsavepage.ui:132 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 "" +msgstr "Одређује са %PRODUCTNAME чува податке који су потребни за враћање отворених докумената у случајевима пада програма. Можете одредити временски интервал за чување." #. ipCBG #: cui/uiconfig/ui/optsavepage.ui:151 msgctxt "autosave_spin" msgid "Specifies the time interval in minutes for the automatic recovery option." -msgstr "" +msgstr "Одређује временски интервал у минутима за опције аутоматског опоравка." #. BN5Js #: cui/uiconfig/ui/optsavepage.ui:164 @@ -15770,7 +15766,7 @@ #: cui/uiconfig/ui/optsavepage.ui:228 msgctxt "docinfo" msgid "Specifies that the Properties dialog will appear every time you select the Save As command." -msgstr "" +msgstr "Одређује да се прозорче за особине појављује сваки пут када изаберете наредбу „Сачувај као“." #. ctAxA #: cui/uiconfig/ui/optsavepage.ui:239 @@ -15782,7 +15778,7 @@ #: cui/uiconfig/ui/optsavepage.ui:248 msgctxt "relative_inet" msgid "Select this box for relative saving of URLs to the Internet." -msgstr "" +msgstr "Изаберите ово поље за чување релативних адреса на интернет." #. YsjVX #: cui/uiconfig/ui/optsavepage.ui:259 @@ -15794,7 +15790,7 @@ #: cui/uiconfig/ui/optsavepage.ui:268 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 "" +msgstr "Чува претходну верзију документа као резервну копију сваку пут када сачувате докуемент. Сваки пут када %PRODUCTNAME направи резервну копију, претходна копија ће бити замењена. Резервне копије имају екстензију .BAK." #. NaGCU #: cui/uiconfig/ui/optsavepage.ui:285 @@ -15812,14 +15808,14 @@ #: cui/uiconfig/ui/optsavepage.ui:327 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 "" +msgstr "Можете изабрати да добијате поруке са упозорењем када чувате документ у формат који није OpenDocument или који нисте поставили као подразумевани формат у Учитај/Сачувај – Опште у прозорчету поља „Опције“." #. 5ANvD #. EN-US, the term 'extended' must not be translated. #: cui/uiconfig/ui/optsavepage.ui:348 msgctxt "optsavepage|odfwarning_label" msgid "Not using ODF 1.3 Extended may cause information to be lost." -msgstr "" +msgstr "Уколико не користите проширени ODF 1.3, може доћи до губитка података." #. 6Tfns #: cui/uiconfig/ui/optsavepage.ui:378 @@ -15837,31 +15833,31 @@ #: cui/uiconfig/ui/optsavepage.ui:380 msgctxt "optsavepage|odfversion" msgid "1.2 Extended (compatibility mode)" -msgstr "" +msgstr "Проширени 1.2 (режим компатибилности)" #. G826f #: cui/uiconfig/ui/optsavepage.ui:381 msgctxt "optsavepage|odfversion" msgid "1.2 Extended" -msgstr "" +msgstr "Проширени 1.2" #. vLmeZ #: cui/uiconfig/ui/optsavepage.ui:382 msgctxt "optsavepage|odfversion" msgid "1.3" -msgstr "" +msgstr "1.3" #. e6EP2 #: cui/uiconfig/ui/optsavepage.ui:383 msgctxt "optsavepage|odfversion" msgid "1.3 Extended (recommended)" -msgstr "" +msgstr "Проширени 1.3 (препоручено)" #. w2urA #: cui/uiconfig/ui/optsavepage.ui:387 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 "" +msgstr "Нека предузећа или организације могу да захтевају ODF документе у ODF 1.0/1.1 или ODF 1.2 формату. Можете изабрати ове формате да сачувате у поље списка. Ови старији формати не могу да сачувају све нове функције, па је нови формат, ODF 1.3 (проширени), препоручљив за коришћење кад год је то могуће." #. cxPqV #: cui/uiconfig/ui/optsavepage.ui:400 @@ -15921,13 +15917,13 @@ #: cui/uiconfig/ui/optsavepage.ui:439 msgctxt "doctype" msgid "Specifies the document type for which you want to define the default file format." -msgstr "" +msgstr "Одређује врсту документа за који желите да одредите подразумевани формат датотеке." #. 69GMF #: cui/uiconfig/ui/optsavepage.ui:454 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 "" +msgstr "Одређује како ће документи изабране врсте на левој страни увек бити сачувани као ова врста датотеке. Можете изабрати другу врсту датотеке за тренутни документ у прозорчету „Сачувај као“." #. 29FUf #: cui/uiconfig/ui/optsavepage.ui:467 @@ -15945,31 +15941,31 @@ #: cui/uiconfig/ui/optsavepage.ui:499 msgctxt "OptSavePage" msgid "In the General section, you can select default settings for saving documents, and can select default file formats." -msgstr "" +msgstr "У одељку „Опште“ можете изабрати подразумеване поставке за чување докумената и изабрати подразумеване формате датотеке." #. ArEZy #: cui/uiconfig/ui/optsecuritypage.ui:37 msgctxt "optsecuritypage|label9" msgid "Maintain a list of Time Stamping Authority (TSA) URLs to be used for digital signatures in PDF export." -msgstr "" +msgstr "Одржавај списак адреса организације која издаје временски печат (TSA) који ће бити коришћен за извоз у PDF." #. nXJ6o #: cui/uiconfig/ui/optsecuritypage.ui:50 msgctxt "optsecuritypage|tsas" msgid "_TSAs..." -msgstr "" +msgstr "TSA печа_ти…" #. Wzygs #: cui/uiconfig/ui/optsecuritypage.ui:58 msgctxt "extended_tip|tsas" msgid "Opens the Time Stamping Authority URLs dialog." -msgstr "" +msgstr "Отвара прозорче за адресе организације која издаје временски печат." #. vrbum #: cui/uiconfig/ui/optsecuritypage.ui:75 msgctxt "optsecuritypage|label10" msgid "TSAs" -msgstr "" +msgstr "TSA печати" #. dgPTb #: cui/uiconfig/ui/optsecuritypage.ui:113 @@ -15987,7 +15983,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:134 msgctxt "extended_tip|cert" msgid "Opens the Certificate Path dialog." -msgstr "" +msgstr "Отвара прозорче путање сертификата." #. UCYi2 #: cui/uiconfig/ui/optsecuritypage.ui:151 @@ -16011,7 +16007,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:210 msgctxt "extended_tip|macro" msgid "Opens the Macro Security dialog." -msgstr "" +msgstr "Отвара прозорче за сигурност макроа." #. rDJXk #: cui/uiconfig/ui/optsecuritypage.ui:227 @@ -16029,7 +16025,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:278 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 "" +msgstr "Уколико је омогућено, %PRODUCTNAME ће сигурно сачувати све лозинке које користите за приступ датотекама на веб серверима. Можете видети лозинке са списка након што унесете главну лозинку." #. Gyqwf #: cui/uiconfig/ui/optsecuritypage.ui:302 @@ -16065,7 +16061,7 @@ #: cui/uiconfig/ui/optsecuritypage.ui:384 msgctxt "extended_tip|connections" msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog." -msgstr "" +msgstr "Пита за главну лозинку. Уколико је главна лозинка исправна, приказује прозорче са сачуваним подацима за повезивање на веб." #. SWrMn #: cui/uiconfig/ui/optsecuritypage.ui:406 @@ -16077,13 +16073,13 @@ #: cui/uiconfig/ui/optsecuritypage.ui:414 msgctxt "extended_tip|masterpassword" msgid "Opens the Enter Master Password dialog." -msgstr "" +msgstr "Отвара прозорче за унос главне лозинке." #. UtNEn #: cui/uiconfig/ui/optsecuritypage.ui:443 msgctxt "optsecuritypage|label2" msgid "Passwords for Web Connections" -msgstr "" +msgstr "Лозинке за веб повезивања" #. EYFvA #: cui/uiconfig/ui/optsecuritypage.ui:481 @@ -16101,13 +16097,13 @@ #: cui/uiconfig/ui/optsecuritypage.ui:502 msgctxt "extended_tip|options" msgid "Opens the \"Security Options and Warnings\" dialog." -msgstr "" +msgstr "Отвара прозорче за сигурносне опције и упозорења." #. GqVkJ #: cui/uiconfig/ui/optsecuritypage.ui:519 msgctxt "optsecuritypage|label1" msgid "Security Options and Warnings" -msgstr "" +msgstr "Опције сигурности и упозорења" #. rwtuC #: cui/uiconfig/ui/optsecuritypage.ui:533 @@ -16821,7 +16817,7 @@ #: cui/uiconfig/ui/optviewpage.ui:448 msgctxt "optviewpage|iconstyle" msgid "Sifr" -msgstr "" +msgstr "Sifr" #. Erw8o #: cui/uiconfig/ui/optviewpage.ui:449 @@ -16929,7 +16925,7 @@ #: 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 "" +msgstr "Приказује имена фонтова који се могу изабрати међу фонтовима, на пример. фонтови у пољу „Фонт“ у траци за форматирање." #. 2FKuk #: cui/uiconfig/ui/optviewpage.ui:740 @@ -17435,7 +17431,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:495 msgctxt "paraindentspacing|extended_tip|checkCB_REGISTER" msgid "If page line-spacing is activated and the Page style uses page line-spacing, then this paragraph will align to an invisible vertical page grid, regardless of their font size, so that each line is the same height." -msgstr "" +msgstr "Уколико је проред странице активиран и стилови странице користе проред странице, овај пасус ће се поравнати у невидљивој, усправној мрежи, без обзира на величину фонта, тако да сваки ред буде исте висине." #. GxJB6 #: cui/uiconfig/ui/paraindentspacing.ui:513 @@ -17465,7 +17461,7 @@ #: cui/uiconfig/ui/paratabspage.ui:246 msgctxt "paratabspage|radiobuttonST_LEFTTAB_ASIAN" msgid "_Left/Top" -msgstr "" +msgstr "_Лево/горе" #. dtaBp #: cui/uiconfig/ui/paratabspage.ui:273 @@ -17525,7 +17521,7 @@ #: cui/uiconfig/ui/paratabspage.ui:557 msgctxt "paratabspage|extended_tip|buttonBTN_DEL" msgid "Deletes the selected element or elements after confirmation." -msgstr "" +msgstr "Брише изабрани елемент или елементе након потврде." #. WCcAj #: cui/uiconfig/ui/paratabspage.ui:570 @@ -17537,61 +17533,61 @@ #: cui/uiconfig/ui/paratabspage.ui:583 msgctxt "paratabspage|label5" msgid "dashes" -msgstr "" +msgstr "црте" #. CYnkr #: cui/uiconfig/ui/paratabspage.ui:596 msgctxt "paratabspage|label6" msgid "underscores" -msgstr "" +msgstr "доње црте" #. qAMT2 #: cui/uiconfig/ui/password.ui:8 msgctxt "password|PasswordDialog" msgid "Set Password" -msgstr "" +msgstr "Постави лозинку" #. XDzCT #: cui/uiconfig/ui/password.ui:102 msgctxt "password|extended_tip|newpassEntry" msgid "Type a password. A password is case sensitive." -msgstr "" +msgstr "Унесите лозинку. Лозинка препознаје велика и мала слова." #. QbKd2 #: cui/uiconfig/ui/password.ui:122 msgctxt "password|extended_tip|confirmpassEntry" msgid "Re-enter the password." -msgstr "" +msgstr "Поново унесите лозинку." #. vMhFF #: cui/uiconfig/ui/password.ui:135 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 "" +msgstr "Напомена: Након што поставите лозинку, документ ће бити отворен са лозинком. Уколико изгубите лозинку, неће бити начина да повратите документ. Имајте у виду да постоји разлика између великих и малих слова у лозинкама." #. scLkF #: cui/uiconfig/ui/password.ui:171 msgctxt "password|readonly" msgid "Open file read-only" -msgstr "" +msgstr "Отвори само за читање" #. f5Ydx #: cui/uiconfig/ui/password.ui:223 msgctxt "password|label7" msgid "Enter password to allow editing" -msgstr "" +msgstr "Унесите лозинку да дозволите уређивање" #. AgwpD #: cui/uiconfig/ui/password.ui:268 msgctxt "password|label8" msgid "Confirm password" -msgstr "" +msgstr "Потврди лозинку" #. SEgNR #: cui/uiconfig/ui/password.ui:312 msgctxt "password|label6" msgid "File Sharing Password" -msgstr "" +msgstr "Лозинка за дељење датотеке" #. Sjh3k #: cui/uiconfig/ui/password.ui:324 @@ -17603,25 +17599,25 @@ #: cui/uiconfig/ui/password.ui:330 msgctxt "password|extended_tip|expander" msgid "Click to show or hide the file sharing password options." -msgstr "" +msgstr "Кликните да прикажете или сакријете опције лозинке за дељење датотека." #. wqXmU #: cui/uiconfig/ui/password.ui:348 msgctxt "password|label4" msgid "_Enter password to open" -msgstr "" +msgstr "_Унесите лозинку да отворите" #. ujTNz #: cui/uiconfig/ui/password.ui:393 msgctxt "password|label5" msgid "Confirm password" -msgstr "" +msgstr "Потврди лозинку" #. FfyCu #: cui/uiconfig/ui/password.ui:437 msgctxt "password|label2" msgid "File Encryption Password" -msgstr "" +msgstr "Лозинка за шифровање датотеке" #. oGoKp #: cui/uiconfig/ui/pastespecial.ui:16 @@ -17639,13 +17635,13 @@ #: cui/uiconfig/ui/pastespecial.ui:116 msgctxt "pastespecial|extended_tip|source" msgid "Displays the source of the clipboard contents." -msgstr "" +msgstr "Приказује извор садржаја унутар исечка." #. 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 "" +msgstr "Изаберите формат садржаја међу исечцима који желите да уметнете. Доступни формати зависе од копираног или исеченог формата." #. gjnwU #: cui/uiconfig/ui/pastespecial.ui:194 @@ -17657,13 +17653,13 @@ #: 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 "" +msgstr "Умеће садржај из исечка у тренутну датотеку у формат који можете одабрати." #. 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 "" +msgstr "Додаје произвољни шаблон на тренутни списак. Одредите особине вашег шаблона и кликните на ово дугме." #. 68KjX #: cui/uiconfig/ui/patterntabpage.ui:87 @@ -17675,7 +17671,7 @@ #: 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 "" +msgstr "Примењује особине тренутног шаблона на изабрани шаблон. Уколико желите, можете сачувати шаблон под другим именом." #. SnESZ #: cui/uiconfig/ui/patterntabpage.ui:119 @@ -17687,31 +17683,31 @@ #: cui/uiconfig/ui/patterntabpage.ui:166 msgctxt "patterntabpage|label4" msgid "Pattern Editor:" -msgstr "" +msgstr "Уређивач шаблона:" #. 7nWqN #: cui/uiconfig/ui/patterntabpage.ui:197 msgctxt "patterntabpage|CTL_PIXEL-atkobject" msgid "Pattern Editor" -msgstr "" +msgstr "Уређивач шаблона" #. 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 "" +msgstr "Исцртајте шаблон на табли од 8×8 пиксела. Кликните на шаблон пиксела да га омогућите или кликните поново да га онемогућите." #. BvHTn #: cui/uiconfig/ui/patterntabpage.ui:229 msgctxt "patterntabpage|label5" msgid "Foreground Color:" -msgstr "" +msgstr "Предња боја:" #. EkYFZ #: cui/uiconfig/ui/patterntabpage.ui:253 msgctxt "patterntabpage|extended_tip|LB_COLOR" msgid "Set the color of the activated pattern pixels." -msgstr "" +msgstr "Изаберите боју за активирани шаблон пиксела." #. S8mpk #: cui/uiconfig/ui/patterntabpage.ui:280 @@ -18626,7 +18622,7 @@ #: cui/uiconfig/ui/screenshotannotationdialog.ui:70 msgctxt "screenshotannotationdialog|label2" msgid "Click the widgets to add annotation:" -msgstr "" +msgstr "Кликните како би додали напомену:" #. F4dCG #: cui/uiconfig/ui/screenshotannotationdialog.ui:98 @@ -20403,13 +20399,13 @@ #: cui/uiconfig/ui/textattrtabpage.ui:125 msgctxt "textattrtabpage|TSB_CONTOUR" msgid "_Adjust to contour" -msgstr "" +msgstr "_Подеси на оквир" #. QBTi6 #: cui/uiconfig/ui/textattrtabpage.ui:135 msgctxt "textattrtabpage|extended_tip|TSB_CONTOUR" msgid "Adapts the text flow so that it matches the contours of the selected drawing object." -msgstr "" +msgstr "Прилагођава ток текста тако да се поклапа са оквиром исцртаног објеката који је изабран." #. ZxFbp #: cui/uiconfig/ui/textattrtabpage.ui:152 @@ -20793,7 +20789,7 @@ #: cui/uiconfig/ui/textflowpage.ui:650 msgctxt "textflowpage|extended_tip|TextFlowPage" msgid "Specify hyphenation and pagination options." -msgstr "" +msgstr "Одредите прелом речи и опције нумерисања страница." #. 5BskL #: cui/uiconfig/ui/thesaurus.ui:23 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/sr/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,15 +4,16 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2010-07-06 19:42+0100\n" -"Last-Translator: Goran Rakic \n" -"Language-Team: Serbian \n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" +"Last-Translator: Милош Поповић \n" +"Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" #. BiN6g #: dbaccess/inc/query.hrc:26 @@ -4467,7 +4468,7 @@ #: dbaccess/uiconfig/ui/rowheightdialog.ui:138 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 "" +msgstr "Подесите висину реда на висину постављену у подразумеваном шаблону. Постојећи садржај може бити усправно изрезан. Висина се више не повећава аутоматски када унесете већи садржај." #. qEa9T #: dbaccess/uiconfig/ui/rowheightdialog.ui:169 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/sr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/sr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2020-06-23 11:13+0000\n" -"Last-Translator: gpopac \n" -"Language-Team: Serbian \n" +"PO-Revision-Date: 2021-03-26 18:37+0000\n" +"Last-Translator: Милош Поповић \n" +"Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" #. Bshz7 @@ -24,7 +24,7 @@ "Label\n" "value.text" msgid "Language Settings" -msgstr "Језичка подешавања" +msgstr "Поставке језика" #. BnABt #: OptionsDialog.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/extras/source/autocorr/emoji.po libreoffice-7.1.3~rc2/translations/source/sr/extras/source/autocorr/emoji.po --- libreoffice-7.1.2~rc2/translations/source/sr/extras/source/autocorr/emoji.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/extras/source/autocorr/emoji.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2019-07-11 18:38+0200\n" -"PO-Revision-Date: 2021-03-05 15:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" #. ¢ (U+000A2), see http://wiki.documentfoundation.org/Emoji #. 6xmho @@ -5508,7 +5508,7 @@ "MICROPHONE\n" "LngText.text" msgid "microphone" -msgstr "" +msgstr "микрофон" #. 🎥 (U+1F3A5), see http://wiki.documentfoundation.org/Emoji #. cJB24 @@ -11334,7 +11334,7 @@ "STUDIO_MICROPHONE\n" "LngText.text" msgid "microphone2" -msgstr "" +msgstr "микрофон 2" #. 🎚 (U+1F39A), see http://wiki.documentfoundation.org/Emoji #. FNDDe diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-22 17:37+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -1294,7 +1294,7 @@ "Label\n" "value.text" msgid "C~onditional" -msgstr "У_словно" +msgstr "У~словно" #. 9zgw5 #: CalcCommands.xcu @@ -4134,7 +4134,7 @@ "Label\n" "value.text" msgid "Formula to Value" -msgstr "Формула у валуту" +msgstr "Формула у вредност" #. u5Hxi #: CalcCommands.xcu @@ -7874,7 +7874,7 @@ "Label\n" "value.text" msgid "S~lide" -msgstr "С_лајд" +msgstr "С~лајд" #. q5YwD #: DrawImpressCommands.xcu @@ -8654,7 +8654,7 @@ "Label\n" "value.text" msgid "~Custom Slide Show..." -msgstr "~Прилагођени ток презентације…" +msgstr "~Прилагођена пројекција…" #. iTs8m #: DrawImpressCommands.xcu @@ -10264,7 +10264,7 @@ "Label\n" "value.text" msgid "~Slide Show" -msgstr "~Покрени слајдове" +msgstr "~Пројекција" #. EyFG4 #: DrawImpressCommands.xcu @@ -18604,7 +18604,7 @@ "Label\n" "value.text" msgid "~Options..." -msgstr "~Подешавања…" +msgstr "~Опције…" #. DAyDw #: GenericCommands.xcu @@ -18964,7 +18964,7 @@ "Label\n" "value.text" msgid "Crop Image Dialog..." -msgstr "Прозорче за исецање слике…" +msgstr "Прозорче за изрезање слике…" #. RNGxu #: GenericCommands.xcu @@ -18974,7 +18974,7 @@ "ContextLabel\n" "value.text" msgid "Crop Dialog..." -msgstr "Прозорче за исецање…" +msgstr "Прозорче изрезања…" #. G8UuW #: GenericCommands.xcu @@ -18984,7 +18984,7 @@ "Label\n" "value.text" msgid "Crop" -msgstr "Исеци" +msgstr "Изрежи" #. k775N #: GenericCommands.xcu @@ -18994,7 +18994,7 @@ "TooltipLabel\n" "value.text" msgid "Crop Image" -msgstr "Исеци слику" +msgstr "Изрежи слику" #. DfjcA #: GenericCommands.xcu @@ -19626,7 +19626,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Bulleted List" -msgstr "Укључи листу у цртицама" +msgstr "Укључи листу са цртицама" #. 4PAqA #: GenericCommands.xcu @@ -24496,7 +24496,7 @@ "ContextLabel\n" "value.text" msgid "~Email Document..." -msgstr "Пошаљи документе _е-поштом…" +msgstr "Пошаљи документе ~е-поштом…" #. 6yTaz #: GenericCommands.xcu @@ -25796,7 +25796,7 @@ "Label\n" "value.text" msgid "Formatting Mark" -msgstr "Ознака форматирања" +msgstr "Ознаке форматирања" #. FbCCL #: GenericCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-17 10:36+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -1153,7 +1153,7 @@ "STR_REMOVE_CROP_AREA\n" "value.text" msgid "~Delete cropped image areas" -msgstr "~Избришите исечене области слике" +msgstr "~Избришите изрезане области слике" #. CWoEW #: PresentationMinimizer.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/sc/messages.po libreoffice-7.1.3~rc2/translations/source/sr/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-11 16:58+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -31225,7 +31225,7 @@ #: sc/uiconfig/scalc/ui/rowheightdialog.ui:130 msgctxt "rowheightdialog|extended_tip|default" msgid "Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents." -msgstr "" +msgstr "Подешава висину реда на величину која подешена у основном шаблону. Постојећи садржај може бити приказан усправно изрезан. Висина се више не подешава аутоматски када унесете већи садржај." #. qEa9T #: sc/uiconfig/scalc/ui/rowheightdialog.ui:161 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/sd/messages.po libreoffice-7.1.3~rc2/translations/source/sr/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-21 11:36+0000\n" +"PO-Revision-Date: 2021-03-26 18:36+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" #. WDjkB @@ -1362,7 +1362,7 @@ #: sd/inc/strings.hrc:191 msgctxt "STR_NEW_CUSTOMSHOW" msgid "New Custom Slide Show" -msgstr "Нови прилагођени ток презентације" +msgstr "Нова прилагођена пројекција" #. FDwKp #: sd/inc/strings.hrc:192 @@ -5571,10 +5571,9 @@ #. KmamJ #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:24 -#, fuzzy msgctxt "definecustomslideshow|DefineCustomSlideShow" msgid "Define Custom Slide Show" -msgstr "Одреди прилагођени ток презентације" +msgstr "Одреди прилагођену пројекцију" #. mhsyF #: sd/uiconfig/simpress/ui/definecustomslideshow.ui:109 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/svx/messages.po libreoffice-7.1.3~rc2/translations/source/sr/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2013-01-24 22:42+0100\n" -"Last-Translator: Goran Rakic \n" -"Language-Team: Serbian \n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" +"Last-Translator: Милош Поповић \n" +"Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-Project-Style: openoffice\n" #. 3GkZj @@ -1256,10 +1256,9 @@ #. YjghP #: include/svx/strings.hrc:224 -#, fuzzy msgctxt "STR_DragMethCrop" msgid "Crop %1" -msgstr "Изрежи %O" +msgstr "Изрежи %1" #. ViifK #: include/svx/strings.hrc:225 @@ -11436,7 +11435,6 @@ #. jC786 #: svx/inc/svxerr.hrc:51 -#, fuzzy msgctxt "RID_SVXERRCODE" msgid "" "$(ARG1) is not supported by the spellcheck function or is not presently active.\n" @@ -11445,7 +11443,7 @@ msgstr "" "$(ARG1) није подржан за проверу писања или није тренутно активан.\n" "Проверите инсталацију и, ако је потребно, инсталирајте потребни језички модул\n" -" или га активирајте преко „Алатке - Подешавања - Језичка подешавања - Помоћ при писању“." +" или га активирајте преко „Алатке - Подешавања - Поставке језика - Помоћ при писању“." #. JhrPu #: svx/inc/svxerr.hrc:53 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr/sw/messages.po libreoffice-7.1.3~rc2/translations/source/sr/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-19 17:37+0000\n" +"PO-Revision-Date: 2021-03-28 22:37+0000\n" "Last-Translator: Милош Поповић \n" "Language-Team: Serbian \n" "Language: sr\n" @@ -23532,7 +23532,7 @@ #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:368 msgctxt "outlinepositionpage|alignedat" msgid "Aligned at:" -msgstr "Поравнато са:" +msgstr "Поравнано на:" #. kWMhW #: sw/uiconfig/swriter/ui/outlinepositionpage.ui:389 diff -Nru libreoffice-7.1.2~rc2/translations/source/sr-Latn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sr-Latn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sr-Latn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sr-Latn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: OpenOffice.org\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2013-01-21 01:22+0100\n" "Last-Translator: Goran Rakic \n" "Language-Team: Serbian \n" @@ -2522,1071 +2522,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ss/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ss/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ss/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ss/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2470,1071 +2470,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/st/cui/messages.po libreoffice-7.1.3~rc2/translations/source/st/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/st/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/st/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:45+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2474,1071 +2474,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sv/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sv/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sv/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sv/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,17 +3,17 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2020-11-09 15:35+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" "Last-Translator: Andreas Pettersson \n" -"Language-Team: Swedish \n" +"Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562761710.000000\n" #. GyY9M @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME stödjer fyra makrosäkerhetsnivåer (från låg till mycket hög) och betrodda källor." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 avser att ansöka som en organisation för Google Summer of Code (GSoC) se:" - -#. SNTbc -#: 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 "Visste du att du kan bifoga kommentarer till delar av texten? Använd bara genvägen %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Behöver du flytta ett eller flera stycken? Inget behov av att klippa och klistra in: Använd kortkommandot %MOD1+%MOD2+pil (upp/ner)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Ändra de grundläggande teckensnitten för den fördefinierade mallen eller det aktuella dokumentet med Verktyg ▸ Alternativ ▸ %PRODUCTNAME Writer ▸ Grundläggande teckensnitt." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Vill du hitta ord som innehåller mer än 10 tecken? Redigera ▸ Hitta och ersätt ▸ Sök ▸ [a-z]{10,} ▸ Andra alternativ ▸ markera Reguljära uttryck." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Öppna en CSV-fil som ett nytt ark i det aktuella kalkylbladet via Blad ▸ Infoga blad från fil." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Om du skriver i fetstil, kursiv stil eller understruket i Writer kan du fortsätta med standardattributen med genvägen %MOD1+Skift+X (ta bort direkta teckenformat)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Använd %MOD1+%MOD2+Skift+V för att klistra in innehållet från urklipp som oformaterad text." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Anpassa fotnotsutseende med Verktyg ▸ Fot-/slutnoter…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Med Presentation ▸ Individuell bildskärmspresentation, ordna om och välj bilder för att anpassa ett bildspel efter dina tittares behov." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Vill du ändra stavningskontroll för någon del av texten? Klicka i språkfältet i statusfältet eller bättre, använd en stil." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer kan infoga en tom sida mellan två udda (jämna) sidor som följer. Markera “Skriv ut automatiskt infogade tomma sidor” i utskriftsdialogrutans flik %PRODUCTNAME Writer." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Vill du inte skriva ut alla kolumner? Dölj eller gruppera de du inte behöver." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "För att ändra en AutoPlay-presentation, öppna den och när den har startat högerklickar du och väljer Redigera i snabbmenyn." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Behöver du positionera exakt? %MOD2+pilknappar flyttar objekt (former, bilder, formler) med en pixel." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Inbäddad hjälp är tillgänglig genom att trycka på F1 om du har installerat den. Kolla annars online:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Högerklicka i statusfältet i %PRODUCTNAME Calc och välj \"Antal i markering\" för att visa antalet valda celler." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Vill du ha två eller flera kolumner för bara en del av en %PRODUCTNAME Writer-sida? Infoga ▸ Område, ställ in med fliken Kolumner och placera text i det området." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Använd Data ▸ Statistik för stickprov, deskriptiv statistik, variansanalys, korrelation och mycket mer i %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Du kan kopiera från ett blad till ett annat utan urklipp. Välj det område som ska kopieras, %MOD1+klicka på målbladets flik och använd Blad ▸ Fyll celler ▸ Fyll blad." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Du kan ändra utseendet på %PRODUCTNAME via Verktyg ▸ Alternativ ▸ Visa ▸ Användargränssnitt." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "I %PRODUCTNAME Impress, använd Infoga ▸ Media ▸ Fotoalbum för att skapa ett bildspel från en serie bilder med funktionen \"Fotoalbum\"." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Du kan visa formler istället för resultat med Visa ▸ Visa formel (eller Verktyg ▸ Alternativ ▸ %PRODUCTNAME Calc ▸ Visa ▸ Visa ▸ Formler)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME utvecklas av en vänlig gemenskap, som består av hundratals bidragsgivare världen runt. Förena dig med oss med dina egenskaper utöver kodning." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Vänsterhänt? Aktivera Verktyg ▸ Alternativ ▸ Språkinställningar ▸ Språk ▸ Asiatiska och markera Verktyg ▸ Alternativ ▸ %PRODUCTNAME Writer ▸ Visa ▸ Linjal ▸ Högerjusterad, som visar rullningsfältet till vänster." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Vill du att dina kapiteltitlar alltid ska börja på en ny sida? Redigera Rubrik1 (styckeformatmall) ▸ Textflöde ▸ Brytningar och markera Infoga ▸ Sida ▸ Före." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Datum/tidsvärde är bara ett antal dagar sedan en vald dag noll; i talet representerar heltalets datum och bråkdel är tid (förfluten del av en dag), med 0,5 som representerar middag." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Skift+%MOD1+Del tar bort från markören till slutet av den aktuella meningen." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Använd kolumn- eller radetiketter i formler. Om du till exempel har två kolumner, \"Tid\" och \"KM\", använd = Tid/KM för att få minuter per kilometer." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Irriterad på \"marscherande myror\" runt celler i Calc? Tryck på Esc för att stoppa dem. Det kopierade innehållet förblir tillgängligt för inklistring." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Vill du bli en %PRODUCTNAME-ambassadör? Det finns certifieringar för utvecklare, administratörer och utbildare." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Blanda porträtt- och liggandeorienteringar i ett Calc-kalkylblad genom att tillämpa olika sidformatmallar på blad." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Klicka på specialteckenikonen i verktygsraden för att få snabb åtkomst till favorit- och senaste tecken för att infoga." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Välj \"Hierarkisk vy\" i sidofältet Stilar för att se förhållandet mellan stilar." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Du kan använda stilar för att göra tabellerna i ditt dokument konsekventa. Välj en av de fördefinierade via formatmallar (F11) eller via Tabell ▸ Autoformat." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Konfigurera användningen av %MOD1-tangenten för att öppna hyperlänkar? Verktyg ▸ Alternativ ▸ %PRODUCTNAME ▸ Säkerhet ▸ Alternativ ▸ “%MOD1+klicka krävs för att öppna hyperlänkar”." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Du vill se beräkningen av enskilda element i en formel, välja respektive element och tryck på F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Du kan skydda celler med Format ▸ Celler ▸ Skydd. För att förhindra infogning, radering, namnbyte, flytta/kopiera blad använder du Verktyg ▸ Skydda blad." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Skriva längs en kurva? Rita linjen, dubbelklicka, skriv in texten, Format ▸ Textruta och Form ▸ Fontwork." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Vill du bara visa de högsta värdena i ett kalkylblad? Välj meny Data ▸ AutoFilter, klicka på rullgardinspilen och välj “Top10”." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "För att ta bort sidnumret från innehållsförteckningen, gå till Infoga ▸ Innehållsförteckning (eller högerklicka och redigera det tidigare infogade indexet). Ta bort sidnumret (#) från strukturraden." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Med Navigator kan du välja och flytta upp/ner rubriker och texten under rubriken, i Navigatorn och i dokumentet." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "För att snabbt få ett matematikobjekt i Writer skriver du din formel, markerar den och använder Infoga ▸ Objekt ▸ Formel för att konvertera texten." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "Med %PRODUCTNAME är det mycket enkelt att installera en ny ordlista: de levereras som tillägg." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME har en portabel version som ger dig mobilitet. Även utan administratörsrättigheter på din dator kan du också installera %PRODUCTNAME Portable på din hårddisk." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer låter dig räkna dina fotnoter per sida, kapitel, dokument: Verktyg ▸ Fot-/slutnoter ▸ Fliken fotnoter ▸ Räknar." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Ditt Writer-dokument öppnas inte igen med textmarkören på samma redigeringsposition som när du sparade det? Lägg till för- eller efternamn i Verktyg ▸ Alternativ ▸ %PRODUCTNAME ▸ Användardata ▸ För-/efternamn." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Citationshantering? Använd ett tillägg från tredje part." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Vill du infoga ett värde på samma plats på flera blad? Välj bladen: håll ned %MOD1-tangenten och klicka på flikarna innan du skriver in." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Vill du dölja lite text i ett dokument? Välj texten. Infoga ▸ Område och välj “Dölj”." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Du kan anpassa den mellersta musknappen enligt Verktyg ▸ Alternativ ▸ %PRODUCTNAME ▸ Visa ▸ Mus Mittknappen." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Vill du skriva ut två stående sidor på ett liggande sida (minska A4 till A5)? Arkiv ▸ Skriv ut och välj 2 för “Sidor per ark”." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "För snabb åtkomst till dina dokumentbokmärken högerklickar du på statusfältets sidnummer (nedre vänstra hörnet av dokumentfönstret)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Välj ett objekt i dokumentbakgrunden med hjälp av markeringsverktyget i verktygsraden Teckning för att omge objektet som ska väljas." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Definiera texter som du ofta använder som AutoText. Du kommer att kunna infoga dem efter namn, genväg eller verktygsrad i vilket Writer-dokument som helst." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "Spela musik genom ett bildspel genom att tilldela ljudet till den första bildövergången utan att klicka på knappen \"Använd i alla bilder\"." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 beräknar inte från vänster till höger men respekterar ordningen Parenteser - Exponenter - Multiplikation - Division - Addition - Subtraktion." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Skaffa %PRODUCTNAME dokumentation och gratis användarhandböcker på:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "Vill du ta bort alla <> samtidigt och behålla texten inom? Redigera ▸ Hitta och ersätt: Sök = [<>], Ersätt = tomt och markera \"Reguljära uttryck\" under Övriga alternativ." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Behöver du presentera en rapport skriven med Writer? Arkiv ▸ Skicka ▸ Disposition till presentation skapar automatiskt ett bildspel från dispositionen." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Vill du hantera presentationen av hyperlänkar i ett kalkylblad? Infoga dem med HYPERLÄNK-funktionen." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Avmarkera Verktyg ▸ Alternativ ▸ %PRODUCTNAME Calc ▸ Visa ▸ Zoom: “Synkronisera blad” så att varje blad i Calc har sin egen zoomfaktor." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Du kan ställa in en färg för varje flik: högerklicka på fliken eller använd Blad ▸ Flikfärg." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Spåra celler som används i en formel, överordnade (Shift+F9) eller underordnade (Shift+F5) (eller använd Verktyg ▸ Detektiv). För varje träff går du ett steg till i kedjan." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Infoga och numrera dina formler i ett steg: skriv fn och sedan F3. En AutoText infogas med formel och nummer i en tabell." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Du kan skapa ett illustrationsindex från objektnamn, inte bara från bildtexter." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Använd din Android eller iPhone för att fjärrstyra din Impress-presentation." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Vill du veta hur många dagar det finns den aktuella månaden? Använd funktionen DAGARIMÅNADEN(IDAG())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Dina tal visas som ### i ditt kalkylblad? Kolumnen är för smal för att visa alla siffror." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Aktivera massiva parallella beräkningar av formelceller via Verktyg ▸ Alternativ ▸ OpenCL." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Använd Förbindelse-verktyget från verktygsraden Teckning i Draw/Impress för att skapa fina flödesscheman och kopiera/klistra in objektet i Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Dina donationer stödjer vår globala gemenskap." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Vill du lägga till x månader till ett datum? Använd =EDATE(date;months)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "För att välja ett sammanhängande cellområde som innehåller data och avgränsas av tomma rader och kolumner använder du %MOD1+* (numeriskt tangentbord)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "För att anpassa datumigenkänningsmönstret? Använd Verktyg ▸ Alternativ ▸ Språkinställningar ▸ Språk ▸ Godkända datummönster för att justera mönstret." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Vill du exportera formler till CSV? Arkiv ▸ Spara som ▸ Filformat: Text CSV, markera “Redigera filterinställningar” och markera “Spara cellformler” i nästa dialogruta." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Presentatörskonsolen är en fantastisk funktion när du arbetar med %PRODUCTNAME Impress. Har du prövat den?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "För att ta bort flera kommentarer, välj celler med kommentarer och använd Blad ▸ Cellkommentar ▸ Ta bort kommentar." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Konvertera enkelt dina dokument till PDF med ett klick genom att klicka på PDF-ikonen i verktygsfältet." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Vill du välja ett stort antal celler utan att bläddra? Skriv områdesreferensen (t.ex. A1: A1000) i namnrutan och tryck sedan på Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Vill du veta giltiga kommandoradsparametrar? Skriv soffice med --help eller -h eller -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Anpassa ditt blad eller utskriftsintervall till en sida med Format ▸ Sida ▸ Fliken Blad ▸ Skalningsläge." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Behöver du ett onumrerat objekt i en lista? Använd “Infoga post utan nummer” i verktygsraden Punkter och numrering." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Du kan rotera cellorientering i en cell med Tabell ▸ Egenskaper... ▸ Textflöde ▸ Textorientering." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "I %PRODUCTNAME Draw för att ändra linjernas 0/0-punkt, dra skärningspunkten mellan de två linjalerna i det övre vänstra hörnet till arbetsområdet." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Flytta en kolumn i Calc mellan två andra i ett steg? Klicka på rubriken och sedan på en cell i kolumnen, håll ned musknappen och flytta till målet med %MOD2-tangenten." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Markera automatiskt alfabetiska indexposter med en konkordansfil." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Använd Format ▸ Rada upp (eller snabbmenyn) för exakt placering av objekt i Draw/Impress: det centreras på sidan om ett objekt är valt eller på gruppen." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Använd inte tabb för att placera objekt i ett Writer-dokument. Beroende på vad du försöker göra kan ett tabell utan kanter vara ett bättre val." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Du behöver inte bläddra igenom listan i Verktyg ▸ Anpassa ▸ Tangentbord för att hitta en genväg: skriv bara in den." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME kan automatiskt lägga till en numrerad bildtext när du infogar objekt. Se Verktyg ▸ Alternativ ▸ %PRODUCTNAME Writer ▸ Autobeskrivning." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "Med %PRODUCTNAME kan du använda ditt Google Mail-konto för att göra en e-postfusion. Fyll i Verktyg ▸ Alternativ ▸ %PRODUCTNAME Writer ▸ E-post kopplad utskrift." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Behåll kolumnrubriker på ett blad synliga när du bläddrar via Visa ▸ Lås celler ▸ Lås första raden." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Vill du börja arbeta med grundläggande makron? Ta en titt på exemplen under Verktyg ▸ Makron ▸ Redigera makron." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Använda formatmallar för rubriker i Writer med kortkommandon: %MOD1+1 gäller Rubrik 1, %MOD1+2 gäller Rubrik 2, etc." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Gå inte vilse i stora dokument. Använd Navigator (F5) för att hitta i innehållet." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Redigera ▸ Hitta och ersätt låter dig infoga specialtecken direkt: högerklicka i inmatningsfältet eller tryck på Skift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Behöver du anpassat innehåll för metadataegenskaper? Arkiv ▸ Egenskaper ▸ Fliken Anpassade egenskaper låter dig skapa vad du vill." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Vill du se, men inte skriva ut, ett objekt i Draw? Rita det på ett lager som flaggan \"Utskrivbar\" inte är satt (högerklicka på fliken Layout och \"Ändra lager\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "För att infoga det aktuella datumet i ditt dokument, använd Infoga ▸ Fält ▸ Datum." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Har du många bilder i ditt Writer-dokument? Snabba upp skärmen genom att inaktivera Visa ▸ Bilder och diagram." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Använd Blad ▸ Fyll celler ▸ Fyll slumpmässiga tal för att generera en slumpmässig serie baserad på olika distributioner." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "Byt namn på dina bilder i Impress så att du kan definiera interaktioner med \"Gå till sida\" och ha en mer sammanfattande sammanfattning än Slide1, Slide2…" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Dialogrutan för kapitelnummerering låter dig ställa in att texten ska visas före kapitelnumret. Skriv till exempel “Chapter” för att visa “Chapter1”" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Transponera en Writer-tabell? Kopiera och klistra in i Calc, transponera med kopiera/klistra in special sedan kopiera/klistra in special ▸ Formaterad text i Writer." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "För att få verktyget \"Vertikal text\" i verktygsfältet Ritning, markera Verktyg ▸ Alternativ ▸ Språkinställningar ▸ Språk ▸ Standardspråk ▸ Asiatiskt (och gör knappen synlig med högerklick)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "För att snabbt zooma in på ett markerat område, högerklicka på zoom-delen av statusfältet och välj Optimal." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Du kan signera befintliga PDF-filer och även verifiera dessa signaturer." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Skapa du ofta ett dokument från ett annat? Överväg att använda en mall." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Använd Format ▸ Villkorlig formatering ▸ Hantera i Calc för att ta reda på vilka celler som har definierats med villkorlig formatering." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Verktyg ▸ Detektiv ▸ Markera ogiltiga data markerar alla celler i bladet som innehåller värden utanför valideringsreglerna." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Använd inbäddning av teckensnitt för bättre interoperabilitet med andra kontorssviter i Arkiv ▸ Egenskaper ▸ Teckensnitt." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "För att konvertera en formel till statiska värden behöver du inte kopiera/klistra in; använd Data ▸ Beräkna ▸ Formel till värde." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Du kan formatera alla kommentarer i ett dokument genom att klicka på nedåtpilen i en kommentar och välja \"Formatera alla kommentarer\"." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Vill du ha samma layout för skärmvisning och utskrift? Kontrollera Verktyg ▸ Alternativ ▸ %PRODUCTNAME Calc ▸ Allmänt ▸ Använd skrivarmått för textformatering." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer hjälper dig att göra säkerhetskopior: med Arkiv ▸ Spara en kopia skapar du ett nytt dokument medan du fortsätter att arbeta med originalet." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "När du har skapat en formatmall baserat på en annan kan du ange ett procentvärde eller ett poängvärde (t.ex. 110% eller −2pt eller + 5pt)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "För att kopiera en kommentar utan att förlora innehållet i målcellen bör du använda Klistra in Special och avmarkera allt utom \"Kommentarer\" i dialogrutan. Använd operationerna \"Lägg till\" för att inte åsidosätta befintligt innehåll." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Batchkonvertera dina MS Office-dokument till OpenDocument-format med hjälp av guiden dokumentkonverterare i menyn Arkiv ▸ Guider ▸ Dokumentkonverterare." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "När du redigerar en cell på plats kan du högerklicka och infoga fält: datum, bladnamn, dokumenttitel etc." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Behöver du flytta en Writer-tabell? Tabell ▸ Välj ▸ Tabell och infoga ▸ Ram ▸ Ram och flytta dit du vill." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Med Verktyg ▸ Autotext ▸ Autotext ▸ Importera kan du välja ett Word-dokument eller en mall som innehåller AutoText-posterna som du vill importera." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "Infoga inte manuella radbryt för att separera två stycken. Ändra snarare Indrag & Avstånd ▸ Avstånd ▸ Nedanför stycke vid egenskaperna för stil/stycke." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "Behåll nollorna före ett tal med hjälp av cellformatalternativet \"ledande nollor\" eller formatera cellen som text innan du anger talet." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Vill du återgå till standard efter att ha använt en listformatmall? Klicka på Punkter eller nummrering på/av i verktygsfältet Formatering." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Ta bort alla dina utskriftsområden i ett steg: välj alla blad och sedan Format ▸ Utskriftsområden ▸ Rensa." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Lägg till bakgrundsbilder i kalkylblad via Infoga ▸ Bild eller dra en bakgrund från Galleriet och sedan Format ▸ Ordna ▸ Till bakgrund." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "Har du problem med att klistra in text från PDF-filer eller webbsidor i dokument? Försök att klistra in som oformaterad text (%MOD1+%MOD2+Skift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "I Calc använder du TRIMMEDEL() för att returnera medelvärdet för en datamängd exklusive de högsta och lägsta värdena." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Den fjärde valfria parametern för Calc-funktionen LETARAD indikerar om den första kolumnen med data är sorterad. Om inte, ange FALSE eller noll." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Verktygsfält är kontextuella—de öppnas beroende på sammanhanget. Om du inte vill ha det avmarkerar du dem från Visa ▸ Verktygsfält." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Skapa ett huvuddokument från det aktuella Writer-dokumentet? Arkiv ▸ Skicka ▸ Skapa huvuddokument (underdokument skapas beroende på dispositionen)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Vill du centrera celler på en utskriven sida i Calc? Format ▸ Sida, Sida ▸ Layoutinställningar ▸ Tabelljustering." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Ramar kan länkas så att texten flyter från den ena till den andra precis som i desktop publishing." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Skapa ett diagram baserat på en Writer-tabell genom att klicka i tabellen och välja Infoga ▸ Diagram." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Välj alternativ i Verktyg ▸ Alternativ ▸ %PRODUCTNAME Writer ▸ Formateringshjälpmedel ▸ Visa för att ange vilka tecken som inte skrivs ut." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Vill du hoppa till en viss sida efter dess nummer? Klicka på posten längst till vänster i statusfältet eller använd Redigera ▸ Gå till sida ... eller tryck på %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME stöder över 150 språk." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Avmarkera Bildspel ▸ Inställningar ▸ Presentation alltid överst om du behöver ett annat program som visas över din presentation." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Vill du hitta orden i fetstil i ett Writer-dokument? Redigera ▸ Hitta och ersätt ▸ Andra alternativ ▸ Attribut ▸ Teckensnittsvikt." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Du kan sortera stycken eller tabellrader alfabetiskt eller numeriskt med Verktyg ▸ Sortera." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "För att infoga ett stycke före (efter) ett avsnitt, tryck på %MOD2+Enter i början (slutet) av avsnittet." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME har ett mallcenter för att skapa snygga dokument—kolla in det." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Beräkna låneavdrag med Calc: t.ex. BETALNING (2%/12;36;2500) ränta per betalningsperiod 2%/12, 36 månader, lånebelopp 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Kan du inte hitta det du vill ha med VLOOKUP-funktionen i Calc? Med INDEX och MATCH kan du göra allt!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Vill du visa dold kolumn A? Klicka på en cell i kolumn B, tryck på vänster musknapp, flytta musen åt vänster, släpp. Slå sedan på den via Format ▸ Kolumner ▸ Visa." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "För att ändra numret på en sida i Writer, gå till egenskaperna för första stycket och på fliken Textflöde markera Bryt ▸ Infoga och ange numret." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Kör %PRODUCTNAME i valfri webbläsare via rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Konstig felkod i Calc, Err: följt av ett nummer? Den här sidan förklarar det:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Inkludera ett stycke som inte är en rubrik i innehållsförteckningen genom att ändra disposition och numrering i styckeinställningar till en dispositionsnivå." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Förutom innehållsförteckningen kan %PRODUCTNAME skapa alfabetiska, illustrationer, tabeller, objekt, bibliografi, användardefinierade index." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Kan du inte ändra eller ta bort en anpassad cellformatmall? Kontrollera alla blad, inget ska skyddas." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." -msgstr "" +msgstr "Behöver du fylla en serie? Välj cellintervall och Blad ▸ Fyll celler ▸ Fyll serie och välj mellan Linjär, Tillväxt, Datum och Fyll automatiskt." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Vill du veta om en cell hänvisas i formler för andra celler? Verktyg ▸ Detektiv ▸ Spårberoende (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Du kan använda jokertecken .* i inmatningsfältet för att ersätta alternativ för automatisk korrigering." #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Vill du kopiera raden ovan? Tryck på %MOD1+D eller använd Blad ▸ Fyll celler ▸ Fyll ner." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Om du vill söka i flera kalkylblad väljer du dem innan du startar sökningen." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Dra och släpp celler från Calc till normalvyn av en bild skapar en tabell; i dispositionsvyn skapar varje cell en rad i dispositionen." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME hjälper dig att inte ange två eller flera mellanslag i Writer. Kontrollera Verktyg ▸ Autokorrigering ▸ Alternativ för autokorrigering ▸ Alternativ ▸ Ignorera dubbla mellanslag." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Vill du att markören ska gå till höger i cellen efter att du har angett ett värde i Calc? Använd Tab-tangenten istället för Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "För att visa rullningsfältet till vänster, aktivera Verktyg ▸ Alternativ ▸ Språkinställningar ▸ Språk ▸ Komplex text och markera Blad ▸ Höger-till-vänster." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Dra ett formaterat objekt till fönstret Formatmallar och formatering. En dialogruta öppnas, ange bara namnet på den nya stilen." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Nya versioner av %PRODUCTNAME ger nya funktioner, buggfixar och säkerhetsuppdateringar. Håll din programvara uppdaterad!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Utvecklar du nya XSLT- och XML-filter?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Hjälp" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Mer information" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Kör den här åtgärden nu..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Dagens tips: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -4439,10 +4433,9 @@ #. 5B9tX #: cui/uiconfig/ui/acorexceptpage.ui:82 -#, 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 "Lägger automatiskt till förkortningar eller ord som börjar med två stora bokstäver i motsvarande lista med undantag. Den här funktionen fungerar bara om något av alternativen KOrrigera två versaler i BÖrjan av ordet eller Börjavarje mening med stor bokstav har markerats i kolumnen [I] under fliken Alternativ i den här dialogrutan. " +msgstr "Lägger automatiskt till förkortningar eller ord som börjar med två stora bokstäver i motsvarande lista med undantag. Den här funktionen fungerar bara om något av alternativen KOrrigera två versaler i BÖrjan av ordet eller Börja varje mening med stor bokstav har markerats i kolumnen [I] under fliken Alternativ i den här dialogrutan." #. tpV8t #: cui/uiconfig/ui/acorexceptpage.ui:109 @@ -4488,10 +4481,9 @@ #. 6fGTF #: cui/uiconfig/ui/acorexceptpage.ui:282 -#, 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 "Lägger automatiskt till förkortningar eller ord som börjar med två stora bokstäver i motsvarande lista med undantag. Den här funktionen fungerar bara om något av alternativen KOrrigera två versaler i BÖrjan av ordet eller Börjavarje mening med stor bokstav har markerats i kolumnen [I] under fliken Alternativ i den här dialogrutan. " +msgstr "Lägger automatiskt till förkortningar eller ord som börjar med två stora bokstäver i motsvarande lista med undantag. Den här funktionen fungerar bara om något av alternativen KOrrigera två versaler i BÖrjan av ordet eller Börja varje mening med stor bokstav har markerats i kolumnen [I] under fliken Alternativ i den här dialogrutan." #. AcEEf #: cui/uiconfig/ui/acorexceptpage.ui:309 @@ -4611,7 +4603,7 @@ #: cui/uiconfig/ui/additionsdialog.ui:12 msgctxt "customanimationfragment|90" msgid "Active version only" -msgstr "" +msgstr "Endast aktiv version" #. 6ZZPG #: cui/uiconfig/ui/additionsdialog.ui:25 @@ -4623,19 +4615,19 @@ #: cui/uiconfig/ui/additionsdialog.ui:34 msgctxt "menuassignpage|gear_textOnly" msgid "Voting" -msgstr "" +msgstr "Betyg" #. KsZpM #: cui/uiconfig/ui/additionsdialog.ui:43 msgctxt "menuassignpage|gear_textOnly" msgid "Downloads" -msgstr "" +msgstr "Nedladdningar" #. A4zUt #: cui/uiconfig/ui/additionsdialog.ui:52 msgctxt "menuassignpage|gear_textOnly" msgid "Comments" -msgstr "" +msgstr "Kommentarer" #. ncCYE #: cui/uiconfig/ui/additionsdialog.ui:71 @@ -4732,25 +4724,25 @@ #: cui/uiconfig/ui/additionsfragment.ui:124 msgctxt "additionsEntry|labelComments" msgid "Comments:" -msgstr "" +msgstr "Kommentarer:" #. TkztG #: cui/uiconfig/ui/additionsfragment.ui:142 msgctxt "additionsEntry|labelComments" msgid "Downloads:" -msgstr "" +msgstr "Nedladdningar" #. JRe5b #: cui/uiconfig/ui/additionsfragment.ui:356 msgctxt "additionsEntry|buttonInstall" msgid "Install" -msgstr "" +msgstr "Installera" #. VEbVr #: cui/uiconfig/ui/additionsfragment.ui:370 msgctxt "additionsEntry|buttonWebsite" msgid "Website" -msgstr "" +msgstr "Webbplats" #. BuMBh #: cui/uiconfig/ui/agingdialog.ui:15 @@ -9112,7 +9104,7 @@ #: cui/uiconfig/ui/fmsearchdialog.ui:590 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 "Här kan du ange sökalternativ för liknande skrivsätt på japanska. Markera den här kryssrutan, klicka på knappen ... och ange sökalternativ. " +msgstr "Här kan du ange sökalternativ för liknande skrivsätt på japanska. Markera den här kryssrutan, klicka på knappen ... och ange sökalternativ." #. 2Gsbd #: cui/uiconfig/ui/fmsearchdialog.ui:601 @@ -11897,7 +11889,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:153 msgctxt "macroassignpage|extended_tip|assign" msgid "Opens the Macro Selector to assign a macro to the selected event." -msgstr "" +msgstr "Öppnar makroväljaren för att tilldela ett makro till den valda händelsen." #. nhxq7 #: cui/uiconfig/ui/macroassignpage.ui:165 @@ -11915,7 +11907,7 @@ #: cui/uiconfig/ui/macroassignpage.ui:186 msgctxt "macroassignpage|extended_tip|delete" msgid "Deletes the macro or component assignment for the selected event." -msgstr "" +msgstr "Tar bort makrotilldelningen eller komponenttilldelningen för den valda händelsen." #. CqT9E #: cui/uiconfig/ui/macroassignpage.ui:204 @@ -12077,7 +12069,7 @@ #: cui/uiconfig/ui/menuassignpage.ui:291 msgctxt "menuassignpage|extended_tip|desc" msgid "The text box contains a short description of the selected command." -msgstr "" +msgstr "Textrutan innehåller en kort beskrivning av det valda kommandot." #. qiiBX #: cui/uiconfig/ui/menuassignpage.ui:308 @@ -13227,7 +13219,7 @@ #: cui/uiconfig/ui/objecttitledescdialog.ui:112 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 "Fastslå en rubrik. Rubriken används i ALT attributen i HTML element för att hjälpa med tillgägnlighetsverktyg. " +msgstr "Ange en titeltext. Detta korta namn är synligt som en alternativ tagg i HTML-format. Tillgänglighetsverktyg kan läsa den här texten." #. kDbQ9 #: cui/uiconfig/ui/objecttitledescdialog.ui:126 @@ -14173,7 +14165,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:240 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 "" +msgstr "Läser in och sparar Basic-koden från ett Microsoft-dokument som en speciell %PRODUCTNAME Basic-modul med dokumentet. Den inaktiverade Microsoft Basic-koden är synlig i %PRODUCTNAME Basic IDE mellan Sub och End Sub." #. VSdyY #: cui/uiconfig/ui/optfltrpage.ui:251 @@ -14185,7 +14177,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:260 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 "" +msgstr "Anger att den ursprungliga Microsoft Basic-koden i dokumentet förvaras i ett speciellt internt minne så länge dokumentet förblir laddat i %PRODUCTNAME. När du sparar dokumentet i Microsoft-format sparas Microsoft Basic igen med koden i oförändrad form." #. sazZt #: cui/uiconfig/ui/optfltrpage.ui:277 @@ -14197,7 +14189,7 @@ #: cui/uiconfig/ui/optfltrpage.ui:292 msgctxt "extended_tip|OptFltrPage" msgid "Specifies the general properties for loading and saving Microsoft Office documents with VBA (Visual Basic for Applications) code." -msgstr "Anger allmänna egenskaper för att ladda och spara Microsoft Office-dokument som innehåller VBA-kod(Visual Basic for Applications). " +msgstr "Anger allmänna egenskaper för att ladda och spara Microsoft Office-dokument som innehåller VBA-kod(Visual Basic for Applications)." #. Q8yvt #: cui/uiconfig/ui/optfontspage.ui:87 @@ -14443,7 +14435,7 @@ #: cui/uiconfig/ui/optgeneralpage.ui:367 msgctxt "extended_tip | collectusageinfo" msgid "Send usage data to help The Document Foundation improve the software usability." -msgstr "" +msgstr "Skicka användningsdata för att hjälpa Document Foundation att förbättra programvarans användbarhet." #. pRnqG #: cui/uiconfig/ui/optgeneralpage.ui:378 @@ -14503,7 +14495,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:107 msgctxt "extended_tip|size7" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. SfHVG #: cui/uiconfig/ui/opthtmlpage.ui:120 @@ -14515,7 +14507,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:137 msgctxt "extended_tip|size6" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. mbGGc #: cui/uiconfig/ui/opthtmlpage.ui:150 @@ -14527,7 +14519,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:167 msgctxt "extended_tip|size5" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. PwaSa #: cui/uiconfig/ui/opthtmlpage.ui:180 @@ -14539,7 +14531,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:197 msgctxt "extended_tip|size4" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. FSRpm #: cui/uiconfig/ui/opthtmlpage.ui:210 @@ -14551,7 +14543,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:227 msgctxt "extended_tip|size3" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. unrKj #: cui/uiconfig/ui/opthtmlpage.ui:240 @@ -14563,7 +14555,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:257 msgctxt "extended_tip|size2" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. aiSoE #: cui/uiconfig/ui/opthtmlpage.ui:270 @@ -14575,7 +14567,7 @@ #: cui/uiconfig/ui/opthtmlpage.ui:287 msgctxt "extended_tip|size1" msgid "Use the spin buttons Size 1 to Size 7 to define the respective font sizes for the HTML to tags." -msgstr "" +msgstr "Använd rotationsknapparna Storlek 1 till Storlek 7 för att definiera respektive teckensnittsstorlek för HTML-taggar till ." #. rRkQd #: cui/uiconfig/ui/opthtmlpage.ui:304 @@ -14707,19 +14699,19 @@ #: 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 "" +msgstr "Återställer ändringar som gjorts på den aktuella fliken till de som gällde när dialogrutan öppnades." #. r2pWX #: cui/uiconfig/ui/optionsdialog.ui:91 msgctxt "optionsdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Sparar alla ändringar och stänger dialogrutan." #. 9asgn #: cui/uiconfig/ui/optionsdialog.ui:110 msgctxt "optionsdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Stänger dialogrutan och förkastar alla ändringar." #. CgiEq #: cui/uiconfig/ui/optjsearchpage.ui:35 @@ -16736,7 +16728,7 @@ #: cui/uiconfig/ui/optviewpage.ui:337 msgctxt "extended_tip | sidebariconsize" msgid "Specifies the display size of sidebar icons." -msgstr "" +msgstr "Anger skärmstorleken för sidofältets ikoner." #. kPSBA #: cui/uiconfig/ui/optviewpage.ui:350 @@ -16772,7 +16764,7 @@ #: cui/uiconfig/ui/optviewpage.ui:373 msgctxt "extended_tip | iconsize" msgid "Specifies the display size of toolbar icons." -msgstr "" +msgstr "Anger skärmstorleken för verktygsfältets ikoner." #. PdeBj #: cui/uiconfig/ui/optviewpage.ui:386 @@ -16784,7 +16776,7 @@ #: cui/uiconfig/ui/optviewpage.ui:404 msgctxt "optviewpage|label1" msgid "Icon Size" -msgstr "" +msgstr "Ikonstorlek" #. 8CiB5 #: cui/uiconfig/ui/optviewpage.ui:443 @@ -16832,25 +16824,25 @@ #: cui/uiconfig/ui/optviewpage.ui:453 msgctxt "extended_tip | iconstyle" msgid "Specifies the icon style for icons in toolbars and dialogs." -msgstr "" +msgstr "Anger ikonstilen för ikoner i verktygsfält och dialogrutor." #. anMTd #: cui/uiconfig/ui/optviewpage.ui:466 msgctxt "optviewpage|label6" msgid "Icon s_tyle:" -msgstr "Ikoner:" +msgstr "Ikonstil:" #. StBQN #: cui/uiconfig/ui/optviewpage.ui:481 msgctxt "optviewpage|btnMoreIcons" msgid "Add more icon themes via extension" -msgstr "" +msgstr "Lägg till fler ikonteman via tillägg" #. eMqmK #: cui/uiconfig/ui/optviewpage.ui:499 msgctxt "optviewpage|label1" msgid "Icon Style" -msgstr "" +msgstr "Ikonstil" #. stYtM #: cui/uiconfig/ui/optviewpage.ui:540 @@ -19399,7 +19391,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:370 msgctxt "slantcornertabpage|extended_tip|controlx2" msgid "Enter the X coordinate of the control point 2" -msgstr "" +msgstr "Ange X-koordinaten för kontrollpunkt 2" #. 3EL7K #: cui/uiconfig/ui/slantcornertabpage.ui:395 @@ -19411,7 +19403,7 @@ #: cui/uiconfig/ui/slantcornertabpage.ui:416 msgctxt "slantcornertabpage|extended_tip|controly2" msgid "Enter the Y coordinate of the control point 2" -msgstr "" +msgstr "Ange Y-koordinaten för kontrollpunkt 2" #. FzWQs #: cui/uiconfig/ui/slantcornertabpage.ui:440 @@ -20947,31 +20939,31 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:182 msgctxt "ToolbarmodeDialog|radiobutton6" msgid "Groupedbar Compact" -msgstr "" +msgstr "Kompakt grupperat fält" #. iSVgL #: cui/uiconfig/ui/toolbarmodedialog.ui:200 msgctxt "ToolbarmodeDialog|radiobutton8" msgid "Contextual Single" -msgstr "" +msgstr "Kontextuell ensam" #. TrcWq #: cui/uiconfig/ui/toolbarmodedialog.ui:218 msgctxt "ToolbarmodeDialog|radiobutton9" msgid "Contextual Groups" -msgstr "" +msgstr "Kontextuella grupper" #. wTDDF #: cui/uiconfig/ui/toolbarmodedialog.ui:236 msgctxt "ToolbarmodeDialog|radiobutton2" msgid "Single Toolbar" -msgstr "" +msgstr "Enkel verktygsrad" #. AMgFL #: cui/uiconfig/ui/toolbarmodedialog.ui:254 msgctxt "ToolbarmodeDialog|radiobutton3" msgid "Sidebar" -msgstr "" +msgstr "Sidopanel" #. kGdXR #: cui/uiconfig/ui/toolbarmodedialog.ui:278 @@ -20983,7 +20975,7 @@ #: cui/uiconfig/ui/toolbarmodedialog.ui:368 msgctxt "ToolbarmodeDialog|rightframe" msgid "Preview" -msgstr "" +msgstr "Förhandsgranska" #. WChLB #: cui/uiconfig/ui/transparencytabpage.ui:78 @@ -21385,7 +21377,7 @@ #: 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 "" +msgstr "Ändrar storlek på skärmen så att den passar bredden på texten i dokumentet när kommandot startas." #. RfuDU #: cui/uiconfig/ui/zoomdialog.ui:134 @@ -21397,7 +21389,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:144 msgctxt "zoomdialog|extended_tip|fitwandh" msgid "Displays the entire page on your screen." -msgstr "" +msgstr "Visar hela sidan på skärmen." #. P9XGA #: cui/uiconfig/ui/zoomdialog.ui:156 @@ -21409,7 +21401,7 @@ #: 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 "" +msgstr "Visar hela sidans bredd. Sidans övre och nedre kanter kanske inte syns." #. qeWB6 #: cui/uiconfig/ui/zoomdialog.ui:178 @@ -21421,7 +21413,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:188 msgctxt "zoomdialog|extended_tip|100pc" msgid "Displays the document at its actual size." -msgstr "" +msgstr "Visar dokumentet i dess verkliga storlek." #. DE7hS #: cui/uiconfig/ui/zoomdialog.ui:205 @@ -21433,7 +21425,7 @@ #: 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 "" +msgstr "Ange den zoomfaktor som du vill visa dokumentet med. Ange en procentsats i rutan." #. QGHoo #: cui/uiconfig/ui/zoomdialog.ui:240 @@ -21445,7 +21437,7 @@ #: cui/uiconfig/ui/zoomdialog.ui:241 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 "" +msgstr "Ange den zoomfaktor som du vill visa dokumentet med. Ange en procentsats i rutan." #. 8iPB6 #: cui/uiconfig/ui/zoomdialog.ui:266 diff -Nru libreoffice-7.1.2~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sv/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-02-04 18:36+0000\n" "Last-Translator: Robert \n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "blinkande teckensnitt blinkande teckensnitt" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Blinkande" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Får markerade tecken att blinka. Du kan inte ändra hur snabbt de blinkar." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sv/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-12-26 09:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562689978.000000\n" #. W5ukN @@ -35226,7 +35226,7 @@ "Label\n" "value.text" msgid "Inspector Deck" -msgstr "" +msgstr "Stilinspektör" #. joS9f #: WriterFormWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/sv/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/sv/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/sv/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sv/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-05 21:36+0000\n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556445275.000000\n" #. bHbFE @@ -3887,7 +3887,7 @@ #: sfx2/uiconfig/ui/searchdialog.ui:125 msgctxt "searchdialog|matchcase" msgid "Ma_tch case" -msgstr "Skilj på stora och små bokstäver" +msgstr "Exak_t jämförelse" #. B2ksn #: sfx2/uiconfig/ui/searchdialog.ui:140 diff -Nru libreoffice-7.1.2~rc2/translations/source/sv/svx/messages.po libreoffice-7.1.3~rc2/translations/source/sv/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/sv/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sv/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-01-04 20:36+0000\n" +"PO-Revision-Date: 2021-04-19 03:37+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1542737388.000000\n" #. 3GkZj @@ -15442,7 +15442,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:116 msgctxt "dockingfontwork|extended_tip|hori" msgid "Horizontally slants the characters in the text object." -msgstr "" +msgstr "Tippa tecknen i textobjektet horisontellt." #. XnPrn #: svx/uiconfig/ui/dockingfontwork.ui:129 @@ -15454,7 +15454,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:135 msgctxt "dockingfontwork|extended_tip|vert" msgid "Vertically slants the characters in the text object." -msgstr "" +msgstr "Tippa tecknen i textobjektet vertikalt." #. AKiRy #: svx/uiconfig/ui/dockingfontwork.ui:159 @@ -15466,7 +15466,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:164 msgctxt "dockingfontwork|extended_tip|orientation" msgid "Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text." -msgstr "" +msgstr "Omvandlar flödesriktningen och vänder texten horisontellt eller vertikalt. För att använda detta kommando måste du först tillämpa en annan baslinje på texten." #. BncCM #: svx/uiconfig/ui/dockingfontwork.ui:187 @@ -15478,7 +15478,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:193 msgctxt "dockingfontwork|extended_tip|left" msgid "Aligns the text to the left end of the text baseline." -msgstr "" +msgstr "Justerar texten till vänster ände på textbaslinjen." #. Gd3Fn #: svx/uiconfig/ui/dockingfontwork.ui:206 @@ -15490,7 +15490,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:212 msgctxt "dockingfontwork|extended_tip|center" msgid "Centers the text on the text baseline." -msgstr "" +msgstr "Centrerar texten i textbaslinjen." #. rdSr2 #: svx/uiconfig/ui/dockingfontwork.ui:225 @@ -15502,7 +15502,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:231 msgctxt "dockingfontwork|extended_tip|right" msgid "Aligns the text to the right end of the text baseline." -msgstr "" +msgstr "Justerar texten till höger i textbaslinjen." #. nQTV8 #: svx/uiconfig/ui/dockingfontwork.ui:244 @@ -15514,7 +15514,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:250 msgctxt "dockingfontwork|extended_tip|autosize" msgid "Resizes the text to fit the length of the text baseline." -msgstr "" +msgstr "Ändrar storlek på texten så att den passar längden på textens baslinje." #. YDeQs #: svx/uiconfig/ui/dockingfontwork.ui:288 @@ -15526,7 +15526,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:294 msgctxt "dockingfontwork|extended_tip|distance" msgid "Enter the amount of space that you want to leave between the text baseline and the base of the individual characters." -msgstr "" +msgstr "Ange hur mycket utrymme du vill lämna mellan textbaslinjen och basen för de enskilda tecknen." #. 5Dm35 #: svx/uiconfig/ui/dockingfontwork.ui:332 @@ -15538,7 +15538,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:339 msgctxt "dockingfontwork|extended_tip|indent" msgid "Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text." -msgstr "" +msgstr "Ange hur mycket utrymme som ska finnas mellan början av textens baslinje och början av texten." #. TG72M #: svx/uiconfig/ui/dockingfontwork.ui:363 @@ -15550,7 +15550,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:368 msgctxt "dockingfontwork|extended_tip|contour" msgid "Shows or hides the text baseline, or the edges of the selected object." -msgstr "" +msgstr "Visar eller döljer textbaslinjen eller kanterna på det markerade objektet." #. MA9vQ #: svx/uiconfig/ui/dockingfontwork.ui:381 @@ -15562,7 +15562,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:386 msgctxt "dockingfontwork|extended_tip|textcontour" msgid "Shows or hides the borders of the individual characters in the text." -msgstr "" +msgstr "Visar eller döljer kanterna för de enskilda tecknen i texten." #. kMFUd #: svx/uiconfig/ui/dockingfontwork.ui:409 @@ -15574,7 +15574,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:415 msgctxt "dockingfontwork|extended_tip|noshadow" msgid "Removes the shadow effects that you applied to the text." -msgstr "" +msgstr "Tar bort skuggeffekterna som du använde på texten." #. 5BrEJ #: svx/uiconfig/ui/dockingfontwork.ui:428 @@ -15586,7 +15586,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:434 msgctxt "dockingfontwork|extended_tip|vertical" msgid "Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes." -msgstr "" +msgstr "Lägger till en skugga i texten i det valda objektet. Klicka på den här knappen och ange sedan skuggans mått i rutorna Avstånd X och Avstånd Y." #. hcSuP #: svx/uiconfig/ui/dockingfontwork.ui:447 @@ -15598,7 +15598,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:453 msgctxt "dockingfontwork|extended_tip|slant" msgid "Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the Distance X and the Distance Y boxes." -msgstr "" +msgstr "Lägger till en lutad skugga till texten i det valda objektet. Klicka på den här knappen och ange sedan skuggans mått i rutorna Avstånd X och Avstånd Y." #. fVeQ8 #: svx/uiconfig/ui/dockingfontwork.ui:491 @@ -15610,7 +15610,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:498 msgctxt "dockingfontwork|extended_tip|distancex" msgid "Enter the horizontal distance between the text characters and the edge of the shadow." -msgstr "" +msgstr "Ange det horisontella avståndet mellan texttecken och skuggkanten." #. FTYwo #: svx/uiconfig/ui/dockingfontwork.ui:536 @@ -15622,7 +15622,7 @@ #: svx/uiconfig/ui/dockingfontwork.ui:543 msgctxt "dockingfontwork|extended_tip|distancey" msgid "Enter the vertical distance between the text characters and the edge of the shadow." -msgstr "" +msgstr "Ange det vertikala avståndet mellan texttecken och skuggkanten." #. MDpHx #: svx/uiconfig/ui/dockingfontwork.ui:563 @@ -15634,13 +15634,13 @@ #: svx/uiconfig/ui/dockingfontwork.ui:573 msgctxt "dockingfontwork|extended_tip|color" msgid "Select a color for the text shadow." -msgstr "" +msgstr "Välj en färg för textskuggan." #. Eovtw #: svx/uiconfig/ui/dockingfontwork.ui:584 msgctxt "dockingfontwork|extended_tip|DockingFontwork" msgid "Simple tool for putting text along a curve without any fancy effects." -msgstr "" +msgstr "Enkelt verktyg för att lägga text längs en kurva utan några snygga effekter." #. ASETE #: svx/uiconfig/ui/docrecoverybrokendialog.ui:16 @@ -15778,7 +15778,7 @@ #: svx/uiconfig/ui/extrustiondepthdialog.ui:163 msgctxt "extrustiondepthdialog|extended_tip|ExtrustionDepthDialog" msgid "Enter an extrusion depth." -msgstr "" +msgstr "Ange ett extruderingsdjup." #. HDhiV #: svx/uiconfig/ui/filtermenu.ui:12 @@ -15808,7 +15808,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:8 msgctxt "findreplacedialog-mobile|FindReplaceDialog" msgid "Find & Replace" -msgstr "" +msgstr "Sök och ersätt" #. eByBj #: svx/uiconfig/ui/findreplacedialog-mobile.ui:142 @@ -15820,13 +15820,13 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:196 msgctxt "findreplacedialog-mobile|matchcase" msgid "Ma_tch case" -msgstr "" +msgstr "Skilj på stora och små bokstäver" #. uiV7G #: svx/uiconfig/ui/findreplacedialog-mobile.ui:212 msgctxt "findreplacedialog-mobile|searchformatted" msgid "For_matted display" -msgstr "" +msgstr "Visa for_materat" #. 3KibH #: svx/uiconfig/ui/findreplacedialog-mobile.ui:232 @@ -15838,7 +15838,7 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:250 msgctxt "findreplacedialog-mobile|entirecells" msgid "_Entire cells" -msgstr "" +msgstr "_Hela cellen" #. xFvzF #: svx/uiconfig/ui/findreplacedialog-mobile.ui:268 @@ -15850,193 +15850,193 @@ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:307 msgctxt "findreplacedialog-mobile|label1" msgid "_Search For" -msgstr "" +msgstr "_Sök efter" #. aHAoN #: svx/uiconfig/ui/findreplacedialog-mobile.ui:394 msgctxt "findreplacedialog-mobile|label5" msgid "Re_place:" -msgstr "" +msgstr "_Ersätt:" #. PhyMv #: svx/uiconfig/ui/findreplacedialog-mobile.ui:434 msgctxt "findreplacedialog-mobile|label2" msgid "Re_place With" -msgstr "" +msgstr "Ersätt _med" #. gi3jL #: svx/uiconfig/ui/findreplacedialog-mobile.ui:460 msgctxt "findreplacedialog-mobile|searchall" msgid "Find _All" -msgstr "" +msgstr "Sök _alla" #. xizGS #: svx/uiconfig/ui/findreplacedialog-mobile.ui:474 msgctxt "findreplacedialog-mobile|backsearch" msgid "Find Pre_vious" -msgstr "" +msgstr "Sök f_öregående" #. Fnoy9 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:488 msgctxt "findreplacedialog-mobile|search" msgid "Find Ne_xt" -msgstr "" +msgstr "Sök _nästa" #. 4xbpA #: svx/uiconfig/ui/findreplacedialog-mobile.ui:504 msgctxt "findreplacedialog-mobile|replace" msgid "_Replace" -msgstr "" +msgstr "_Ersätt" #. LXUGG #: svx/uiconfig/ui/findreplacedialog-mobile.ui:518 msgctxt "findreplacedialog-mobile|replaceall" msgid "Replace A_ll" -msgstr "" +msgstr "Ersätt a_lla" #. 8pjvL #: svx/uiconfig/ui/findreplacedialog-mobile.ui:677 msgctxt "findreplacedialog-mobile|selection" msgid "C_urrent selection only" -msgstr "" +msgstr "E_ndast aktuell markering" #. kXCyp #: svx/uiconfig/ui/findreplacedialog-mobile.ui:692 msgctxt "findreplacedialog-mobile|regexp" msgid "Re_gular expressions" -msgstr "" +msgstr "Reguljära uttryck" #. PHsrD #: svx/uiconfig/ui/findreplacedialog-mobile.ui:714 msgctxt "findreplacedialog-mobile|attributes" msgid "Attribut_es..." -msgstr "" +msgstr "Attribut..." #. GRaeC #: svx/uiconfig/ui/findreplacedialog-mobile.ui:728 msgctxt "findreplacedialog-mobile|format" msgid "For_mat..." -msgstr "" +msgstr "F_ormat..." #. cx7u7 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:742 msgctxt "findreplacedialog-mobile|noformat" msgid "_No Format" -msgstr "" +msgstr "Inget format" #. TnTGs #: svx/uiconfig/ui/findreplacedialog-mobile.ui:763 msgctxt "findreplacedialog-mobile|layout" msgid "Search for st_yles" -msgstr "" +msgstr "Sök efter _formatmallar" #. QZvqy #: svx/uiconfig/ui/findreplacedialog-mobile.ui:778 msgctxt "findreplacedialog-mobile|includediacritics" msgid "Diac_ritic-sensitive" -msgstr "" +msgstr "Diak_ritisk-känslig" #. jgEBu #: svx/uiconfig/ui/findreplacedialog-mobile.ui:793 msgctxt "findreplacedialog-mobile|includekashida" msgid "_Kashida-sensitive" -msgstr "" +msgstr "_Kashida-känslig" #. HEtSQ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:808 msgctxt "findreplacedialog-mobile|matchcharwidth" msgid "Match character _width" -msgstr "" +msgstr "Ta hänsyn till teckenbredd" #. PeENq #: svx/uiconfig/ui/findreplacedialog-mobile.ui:828 msgctxt "findreplacedialog-mobile|similarity" msgid "S_imilarity search" -msgstr "" +msgstr "Likhetssökning" #. BxPGW #: svx/uiconfig/ui/findreplacedialog-mobile.ui:844 msgctxt "findreplacedialog-mobile|similaritybtn" msgid "Similarities..." -msgstr "" +msgstr "Likheter..." #. z8Uiz #: svx/uiconfig/ui/findreplacedialog-mobile.ui:871 msgctxt "findreplacedialog-mobile|soundslike" msgid "Sounds like (_Japanese)" -msgstr "" +msgstr "Liknar (japanska)" #. e7EkJ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:887 msgctxt "findreplacedialog-mobile|soundslikebtn" msgid "Sounds..." -msgstr "" +msgstr "Liknar..." #. ZvWKZ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:913 msgctxt "findreplacedialog-mobile|wildcard" msgid "Wil_dcards" -msgstr "" +msgstr "Jokertecken" #. jCtqG #: svx/uiconfig/ui/findreplacedialog-mobile.ui:929 msgctxt "findreplacedialog-mobile|notes" msgid "_Comments" -msgstr "" +msgstr "_Kommentarer" #. CABZs #: svx/uiconfig/ui/findreplacedialog-mobile.ui:951 msgctxt "findreplacedialog-mobile|replace_backwards" msgid "Replace _backwards" -msgstr "" +msgstr "Ersätt baklänges" #. EjXBb #: svx/uiconfig/ui/findreplacedialog-mobile.ui:988 msgctxt "findreplacedialog-mobile|searchinlabel" msgid "Search i_n:" -msgstr "" +msgstr "Sök _i:" #. vHG2V #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1003 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Formulas" -msgstr "" +msgstr "Formler" #. BC8U6 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1004 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Values" -msgstr "" +msgstr "Värden" #. BkByZ #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1005 msgctxt "findreplacedialog-mobile|calcsearchin" msgid "Notes" -msgstr "" +msgstr "Anteckningar" #. a8BE2 #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1030 msgctxt "findreplacedialog-mobile|searchdir" msgid "Direction:" -msgstr "" +msgstr "Riktning:" #. GPC8q #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1047 msgctxt "findreplacedialog-mobile|rows" msgid "Ro_ws" -msgstr "" +msgstr "_Rader" #. xCeTz #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1067 msgctxt "findreplacedialog-mobile|cols" msgid "Colum_ns" -msgstr "" +msgstr "Kolum_ner" #. fPE4f #: svx/uiconfig/ui/findreplacedialog-mobile.ui:1114 msgctxt "findreplacedialog-mobile|label3" msgid "Other _options" -msgstr "" +msgstr "Fler alternativ" #. 2B7FQ #: svx/uiconfig/ui/findreplacedialog.ui:8 @@ -16048,13 +16048,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:112 msgctxt "findreplacedialog|extended_tip|searchterm" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Ange texten som du vill hitta eller välj en tidigare sökning från listan." #. qZujP #: svx/uiconfig/ui/findreplacedialog.ui:128 msgctxt "findreplacedialog|extended_tip|searchlist" msgid "Enter the text that you want to find, or select a previous search from the list." -msgstr "" +msgstr "Ange texten som du vill hitta eller välj en tidigare sökning från listan." #. bathy #: svx/uiconfig/ui/findreplacedialog.ui:150 @@ -16072,7 +16072,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:214 msgctxt "findreplacedialog|extended_tip|matchcase" msgid "Distinguishes between uppercase and lowercase characters." -msgstr "" +msgstr "Skiljer mellan versaler och gemener." #. EP8P3 #: svx/uiconfig/ui/findreplacedialog.ui:226 @@ -16084,7 +16084,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:235 msgctxt "findreplacedialog|extended_tip|searchformatted" msgid "Includes number formatting characters in the search." -msgstr "" +msgstr "Inkluderar sifferformateringstecken i sökningen." #. eTjvm #: svx/uiconfig/ui/findreplacedialog.ui:251 @@ -16096,7 +16096,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:260 msgctxt "findreplacedialog|extended_tip|wholewords" msgid "Searches for whole words or cells that are identical to the search text." -msgstr "" +msgstr "Söker efter hela ord eller celler som är identiska med söktexten." #. wfECE #: svx/uiconfig/ui/findreplacedialog.ui:274 @@ -16114,7 +16114,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:331 msgctxt "findreplacedialog|label1" msgid "Search For" -msgstr "" +msgstr "Sök efter" #. YCdJW #: svx/uiconfig/ui/findreplacedialog.ui:391 @@ -16162,19 +16162,19 @@ #: svx/uiconfig/ui/findreplacedialog.ui:522 msgctxt "findreplacedialog|extended_tip|backsearch" msgid "Finds and selects the previous occurrence of the text or format that you are searching for in the document." -msgstr "" +msgstr "Hitta och markerar föregående förekomst av texten eller formatet du söker efter i dokumentet." #. PQ58E #: svx/uiconfig/ui/findreplacedialog.ui:534 msgctxt "findreplacedialog|search" msgid "Find Ne_xt" -msgstr "Sök n_ästa" +msgstr "Sök _nästa" #. YCMFa #: svx/uiconfig/ui/findreplacedialog.ui:543 msgctxt "findreplacedialog|extended_tip|search" msgid "Finds and selects the next occurrence of the text or format that you are searching for in the document." -msgstr "" +msgstr "Hitta och markera nästa förekomst av texten eller formatet du söker efter i dokumentet." #. ZLDbk #: svx/uiconfig/ui/findreplacedialog.ui:555 @@ -16198,7 +16198,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:581 msgctxt "findreplacedialog|extended_tip|replaceall" msgid "Replaces all of the occurrences of the text or format that you want to replace." -msgstr "" +msgstr "Ersätter alla förekomster av texten eller formatet som du vill ersätta." #. gRMJL #: svx/uiconfig/ui/findreplacedialog.ui:733 @@ -16210,7 +16210,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:742 msgctxt "findreplacedialog|extended_tip|selection" msgid "Searches only the selected text or cells." -msgstr "" +msgstr "Söker endast i den markerade texten eller cellerna." #. CwXAb #: svx/uiconfig/ui/findreplacedialog.ui:753 @@ -16234,7 +16234,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:796 msgctxt "findreplacedialog|extended_tip|format" msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics." -msgstr "" +msgstr "Hitta specifika textformateringsfunktioner, till exempel typsnitt, teckensnittseffekter och textflödesegenskaper." #. C4Co9 #: svx/uiconfig/ui/findreplacedialog.ui:808 @@ -16252,19 +16252,19 @@ #: svx/uiconfig/ui/findreplacedialog.ui:838 msgctxt "findreplacedialog|extended_tip|layout" msgid "Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Find list. To specify a replacement style, select a style from the Replace list." -msgstr "" +msgstr "Söker efter text formaterad med den formatmall du anger. Markera den här kryssrutan och välj sedan en stil i listan Sök. För att ange en ersättningsstil väljer du en stil i listan Ersätt." #. wjEUp #: svx/uiconfig/ui/findreplacedialog.ui:849 msgctxt "findreplacedialog|includediacritics" msgid "Diacritic-_sensitive" -msgstr "" +msgstr "Diak_ritisk-känslig" #. J8Zou #: svx/uiconfig/ui/findreplacedialog.ui:864 msgctxt "findreplacedialog|includekashida" msgid "_Kashida-sensitive" -msgstr "_Kashidakänslig" +msgstr "_Kashida-känslig" #. AtLV3 #: svx/uiconfig/ui/findreplacedialog.ui:879 @@ -16288,7 +16288,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:913 msgctxt "findreplacedialog|extended_tip|similarity" msgid "Find terms that are similar to the Find text. Select this checkbox, and then click the Similarities button to define the similarity options." -msgstr "" +msgstr "Hitta termer som liknar söktexten. Markera den här kryssrutan och klicka sedan på knappen Likheter för att definiera likhetsalternativen." #. mKiVJ #: svx/uiconfig/ui/findreplacedialog.ui:925 @@ -16336,7 +16336,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1025 msgctxt "findreplacedialog|notes" msgid "Comme_nts" -msgstr "" +msgstr "_Kommentarer" #. z68pk #: svx/uiconfig/ui/findreplacedialog.ui:1034 @@ -16354,7 +16354,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1061 msgctxt "findreplacedialog|extended_tip|replace_backwards" msgid "Search starts at the current cursor position and goes backwards to the beginning of the file." -msgstr "" +msgstr "Sökningen börjar vid den aktuella markörpositionen och går bakåt till början av filen." #. t4J9E #: svx/uiconfig/ui/findreplacedialog.ui:1094 @@ -16408,13 +16408,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:1227 msgctxt "findreplacedialog|extended_tip|label3" msgid "Shows more or fewer search options. Click this label again to hide the extended search options." -msgstr "" +msgstr "Visar fler eller färre sökalternativ. Klicka på den här etiketten igen för att dölja de utökade sökalternativen." #. YpLau #: svx/uiconfig/ui/findreplacedialog.ui:1263 msgctxt "findreplacedialog|extended_tip|FindReplaceDialog" msgid "Finds or replaces text or formats in the current document." -msgstr "" +msgstr "Hitta eller ersätter text eller format i det aktuella dokumentet." #. j63XL #: svx/uiconfig/ui/floatingareastyle.ui:59 @@ -17152,7 +17152,7 @@ #: svx/uiconfig/ui/imapdialog.ui:167 msgctxt "imapdialog|extended_tip|TBI_OPEN" msgid "Loads an existing image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "Läser in en befintlig bildkarta i filformatet MAP-CERN, MAP-NCSA eller SIP StarView ImageMap." #. FhXsi #: svx/uiconfig/ui/imapdialog.ui:181 @@ -17164,7 +17164,7 @@ #: svx/uiconfig/ui/imapdialog.ui:185 msgctxt "imapdialog|extended_tip|TBI_SAVEAS" msgid "Saves the image map in the MAP-CERN, MAP-NCSA or SIP StarView ImageMap file format." -msgstr "" +msgstr "Sparar bildkartan i filformatet MAP-CERN, MAP-NCSA eller SIP StarView ImageMap." #. zicE4 #: svx/uiconfig/ui/imapdialog.ui:199 @@ -17194,7 +17194,7 @@ #: svx/uiconfig/ui/imapdialog.ui:233 msgctxt "imapdialog|extended_tip|TBI_RECT" msgid "Draws a rectangular hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Ritar en rektangulär hotspot där du drar in bilden. Därefter kan du ange adressen och texten för hotspot och sedan välja den ram där du vill att webbadressen ska öppnas." #. CxNuP #: svx/uiconfig/ui/imapdialog.ui:247 @@ -17206,7 +17206,7 @@ #: svx/uiconfig/ui/imapdialog.ui:251 msgctxt "imapdialog|extended_tip|TBI_CIRCLE" msgid "Draws an elliptical hotspot where you drag in the graphic. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Ritar en elliptisk hotspot där du drar in bilden. Därefter kan du ange adressen och texten för hotspot och sedan välja den ram där du vill att webbadressen ska öppnas." #. SGPH5 #: svx/uiconfig/ui/imapdialog.ui:265 @@ -17218,7 +17218,7 @@ #: svx/uiconfig/ui/imapdialog.ui:269 msgctxt "imapdialog|extended_tip|TBI_POLY" msgid "Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Ritar en polygonal hotspot i bilden. Klicka på den här ikonen, dra in bilden och klicka sedan för att definiera en sida av polygonen. Flytta dit där du vill placera slutet på nästa sida och klicka. Upprepa tills du har ritat alla sidorna av polygonen. När du är klar dubbelklickar du för att stänga polygonen. Därefter kan du ange adressen och texten för hotspot och sedan välja den ram där du vill att webbadressen ska öppnas." #. zUUCB #: svx/uiconfig/ui/imapdialog.ui:283 @@ -17230,7 +17230,7 @@ #: svx/uiconfig/ui/imapdialog.ui:287 msgctxt "imapdialog|extended_tip|TBI_FREEPOLY" msgid "Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the Address and the Text for the hotspot, and then select the Frame where you want the URL to open." -msgstr "" +msgstr "Ritar en hotspot som är baserad på en frihandspolygon. Klicka på den här ikonen och flytta dit där du vill rita hotspot. Dra en frihandslinje och släpp för att stänga formen. Därefter kan du ange adressen och texten för hotspot och sedan välja den ram där du vill att webbadressen ska öppnas." #. kG6AK #: svx/uiconfig/ui/imapdialog.ui:301 @@ -17344,7 +17344,7 @@ #: svx/uiconfig/ui/imapdialog.ui:507 msgctxt "imapdialog|extended_tip|text" msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser." -msgstr "" +msgstr "Ange texten som du vill visa när musen vilar på hotspot i en webbläsare." #. 5BPAy #: svx/uiconfig/ui/imapdialog.ui:545 @@ -17356,7 +17356,7 @@ #: svx/uiconfig/ui/imapdialog.ui:568 msgctxt "imapdialog|extended_tip|url" msgid "Enter the URL for the file that you want to open when you click the selected hotspot." -msgstr "" +msgstr "Ange webbadressen för filen som du vill öppna när du klickar på den valda hotspot." #. CnDFH #: svx/uiconfig/ui/imapdialog.ui:608 @@ -17368,7 +17368,7 @@ #: svx/uiconfig/ui/imapdialog.ui:639 msgctxt "imapdialog|extended_tip|ImapDialog" msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots." -msgstr "" +msgstr "Låter dig bifoga webbadresser till specifika områden, så kallade hotspots, på en grafik eller en grupp grafik. En bildkarta är en grupp med en eller flera hotspots." #. aHyrG #: svx/uiconfig/ui/imapmenu.ui:12 @@ -17434,13 +17434,13 @@ #: svx/uiconfig/ui/inspectortextpanel.ui:62 msgctxt "inspectortextpanel|property" msgid "Properties" -msgstr "" +msgstr "Egenskaper" #. RyWCg #: svx/uiconfig/ui/inspectortextpanel.ui:78 msgctxt "inspectortextpanel|value" msgid "Values" -msgstr "" +msgstr "Värden" #. kCqGA #: svx/uiconfig/ui/lightingwindow.ui:58 @@ -17578,31 +17578,31 @@ #: svx/uiconfig/ui/navigationbar.ui:129 msgctxt "navigationbar|first" msgid "First" -msgstr "" +msgstr "Första" #. mX6CE #: svx/uiconfig/ui/navigationbar.ui:150 msgctxt "navigationbar|prev" msgid "Previous" -msgstr "" +msgstr "Föregående" #. ggpok #: svx/uiconfig/ui/navigationbar.ui:171 msgctxt "navigationbar|next" msgid "Next" -msgstr "" +msgstr "Nästa" #. E3c7E #: svx/uiconfig/ui/navigationbar.ui:191 msgctxt "navigationbar|last" msgid "Last" -msgstr "" +msgstr "Sista" #. GbURX #: svx/uiconfig/ui/navigationbar.ui:211 msgctxt "navigationbar|new" msgid "New" -msgstr "" +msgstr "Ny" #. Z8rca #: svx/uiconfig/ui/optgridpage.ui:75 @@ -17626,7 +17626,7 @@ #: svx/uiconfig/ui/optgridpage.ui:104 msgctxt "extended_tip|gridvisible" msgid "Specifies whether to display the grid." -msgstr "" +msgstr "Anger om raster ska visas." #. qpLqx #: svx/uiconfig/ui/optgridpage.ui:121 @@ -17728,7 +17728,7 @@ #: svx/uiconfig/ui/optgridpage.ui:467 msgctxt "extended_tip|snaphelplines" msgid "Snaps the edge of a dragged object to the nearest snap line when you release the mouse." -msgstr "" +msgstr "Fäster kanten på ett draget objekt till närmaste stödlinje när du släpper musen." #. YkLQN #: svx/uiconfig/ui/optgridpage.ui:478 @@ -17740,7 +17740,7 @@ #: svx/uiconfig/ui/optgridpage.ui:487 msgctxt "extended_tip|snapborder" msgid "Specifies whether to align the contour of the graphic object to the nearest page margin." -msgstr "" +msgstr "Anger om konturen för det grafiska objektet ska anpassas till närmaste sidmarginal." #. GhDiX #: svx/uiconfig/ui/optgridpage.ui:498 @@ -17752,7 +17752,7 @@ #: svx/uiconfig/ui/optgridpage.ui:507 msgctxt "extended_tip|snapframe" msgid "Specifies whether to align the contour of the graphic object to the border of the nearest graphic object." -msgstr "" +msgstr "Anger om grafikobjektets kontur ska justeras mot gränsen för närmaste grafiska objekt." #. akbks #: svx/uiconfig/ui/optgridpage.ui:518 @@ -17764,7 +17764,7 @@ #: svx/uiconfig/ui/optgridpage.ui:527 msgctxt "extended_tip|snappoints" msgid "Specifies whether to align the contour of the graphic object to the points of the nearest graphic object." -msgstr "" +msgstr "Anger om grafikobjektets kontur ska anpassas till punkterna för närmaste grafiska objekt." #. rY7Uu #: svx/uiconfig/ui/optgridpage.ui:551 @@ -17812,7 +17812,7 @@ #: svx/uiconfig/ui/optgridpage.ui:680 msgctxt "extended_tip|mtrfldangle" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control." -msgstr "" +msgstr "Anger att grafiska objekt bara kan roteras inom den rotationsvinkel som du valde i kontrollen Vid rotation." #. a6oQ8 #: svx/uiconfig/ui/optgridpage.ui:691 @@ -17824,7 +17824,7 @@ #: svx/uiconfig/ui/optgridpage.ui:703 msgctxt "extended_tip|rotate" msgid "Specifies that graphic objects can only be rotated within the rotation angle that you selected in the When rotating control." -msgstr "" +msgstr "Anger att grafiska objekt bara kan roteras inom den rotationsvinkel som du valde i kontrollen Vid rotation." #. xEPJC #: svx/uiconfig/ui/optgridpage.ui:722 @@ -18212,7 +18212,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:46 msgctxt "redlinefilterpage|extended_tip|date" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. EnyT2 #: svx/uiconfig/ui/redlinefilterpage.ui:57 @@ -18224,7 +18224,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:66 msgctxt "redlinefilterpage|extended_tip|author" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "" +msgstr "Filtrerar ändringslistan efter författarens namn som du väljer i listan." #. G36HS #: svx/uiconfig/ui/redlinefilterpage.ui:77 @@ -18236,19 +18236,19 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:89 msgctxt "redlinefilterpage|extended_tip|comment" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "" +msgstr "Filtrerar kommentarers ändringar enligt det nyckelord som du anger." #. gPhYL #: svx/uiconfig/ui/redlinefilterpage.ui:109 msgctxt "redlinefilterpage|commentedit-atkobject" msgid "Comment" -msgstr "Kommentarer" +msgstr "Kommentar" #. QXgua #: svx/uiconfig/ui/redlinefilterpage.ui:110 msgctxt "redlinefilterpage|extended_tip|commentedit" msgid "Filters the comments of the changes according to the keyword(s) that you enter." -msgstr "" +msgstr "Filtrerar kommentarers ändringar enligt det nyckelord som du anger." #. 3joBm #: svx/uiconfig/ui/redlinefilterpage.ui:121 @@ -18260,7 +18260,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:130 msgctxt "redlinefilterpage|extended_tip|range" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "" +msgstr "Filtrerar ändringslistan efter det cellintervall som du anger. För att välja ett cellområde i ditt ark klickar du på knappen Ange referens(...)." #. fdw75 #: svx/uiconfig/ui/redlinefilterpage.ui:151 @@ -18272,7 +18272,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:152 msgctxt "redlinefilterpage|extended_tip|actionlist" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "" +msgstr "Filtrerar ändringslistan efter den ändringstyp du väljer i rutan Åtgärd." #. c4doe #: svx/uiconfig/ui/redlinefilterpage.ui:163 @@ -18284,7 +18284,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:172 msgctxt "redlinefilterpage|extended_tip|action" msgid "Filters the list of changes according to the type of change that you select in the Action box." -msgstr "" +msgstr "Filtrerar ändringslistan efter den ändringstyp du väljer i rutan Åtgärd." #. r9bBY #: svx/uiconfig/ui/redlinefilterpage.ui:193 @@ -18296,7 +18296,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:194 msgctxt "redlinefilterpage|extended_tip|authorlist" msgid "Filters the list of changes according to the name of the author that you select from the list." -msgstr "" +msgstr "Filtrerar ändringslistan efter författarens namn som du väljer i listan." #. mGrjp #: svx/uiconfig/ui/redlinefilterpage.ui:222 @@ -18308,13 +18308,13 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:223 msgctxt "redlinefilterpage|extended_tip|rangeedit" msgid "Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the Set Reference button (...)." -msgstr "" +msgstr "Filtrerar ändringslistan efter det cellintervall som du anger. För att välja ett cellområde i ditt ark klickar du på knappen Ange referens(...)." #. CcvJU #: svx/uiconfig/ui/redlinefilterpage.ui:240 msgctxt "redlinefilterpage|dotdotdot|tooltip_text" msgid "Set reference" -msgstr "Sätt referens" +msgstr "Ange referens" #. g7HYA #: svx/uiconfig/ui/redlinefilterpage.ui:268 @@ -18362,7 +18362,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:281 msgctxt "redlinefilterpage|extended_tip|datecond" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. Z2Wv3 #: svx/uiconfig/ui/redlinefilterpage.ui:304 @@ -18380,7 +18380,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:326 msgctxt "redlinefilterpage|extended_tip|startdate" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. CyQhk #: svx/uiconfig/ui/redlinefilterpage.ui:347 @@ -18392,7 +18392,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:348 msgctxt "redlinefilterpage|extended_tip|starttime" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. TbDDR #: svx/uiconfig/ui/redlinefilterpage.ui:363 @@ -18410,7 +18410,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:384 msgctxt "redlinefilterpage|extended_tip|enddate" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. jbLhY #: svx/uiconfig/ui/redlinefilterpage.ui:405 @@ -18422,7 +18422,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:406 msgctxt "redlinefilterpage|extended_tip|endtime" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. PAFLU #: svx/uiconfig/ui/redlinefilterpage.ui:421 @@ -18434,7 +18434,7 @@ #: svx/uiconfig/ui/redlinefilterpage.ui:447 msgctxt "redlinefilterpage|extended_tip|RedlineFilterPage" msgid "Filters the list of changes according to the date and the time that you specify." -msgstr "" +msgstr "Filtrerar ändringslistan efter datum och tid som du anger." #. p8TCX #: svx/uiconfig/ui/redlineviewpage.ui:69 svx/uiconfig/ui/redlineviewpage.ui:175 @@ -18994,7 +18994,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:146 msgctxt "sidebarglow|glow" msgid "Glow" -msgstr "" +msgstr "Glöd" #. SABEF #: svx/uiconfig/ui/sidebareffect.ui:182 @@ -19006,7 +19006,7 @@ #: svx/uiconfig/ui/sidebareffect.ui:213 msgctxt "sidebarsoftedge|softedge" msgid "Soft Edge" -msgstr "" +msgstr "Mjuk kant" #. BEqw7 #: svx/uiconfig/ui/sidebarempty.ui:26 @@ -19042,13 +19042,13 @@ #: svx/uiconfig/ui/sidebargallery.ui:354 msgctxt "sidebargallery|RID_SVXSTR_GALLERY_CREATETHEME" msgid "New..." -msgstr "" +msgstr "Ny..." #. RfChe #: svx/uiconfig/ui/sidebargallery.ui:373 msgctxt "sidebargallery|btnMoreGalleries" msgid "Add more galleries via extension" -msgstr "" +msgstr "Lägg till fler gallerier via tillägg" #. BdPh5 #: svx/uiconfig/ui/sidebargraphic.ui:52 @@ -19474,7 +19474,7 @@ #: svx/uiconfig/ui/sidebarpossize.ui:186 msgctxt "sidebarpossize|transparencylabel" msgid "Transparency:" -msgstr "" +msgstr "Transparens:" #. nLGDu #: svx/uiconfig/ui/sidebarpossize.ui:196 @@ -19577,7 +19577,7 @@ #: svx/uiconfig/ui/sidebarshadow.ui:129 msgctxt "sidebarshadow|blur_label" msgid "Blur:" -msgstr "" +msgstr "Suddighet:" #. SLW9V #: svx/uiconfig/ui/sidebarshadow.ui:156 @@ -19607,13 +19607,13 @@ #: svx/uiconfig/ui/stylespreview.ui:102 msgctxt "stylespreview|up" msgid "Previous" -msgstr "" +msgstr "Föregående" #. XiCNc #: svx/uiconfig/ui/stylespreview.ui:127 msgctxt "stylespreview|down" msgid "Next" -msgstr "" +msgstr "Nästa" #. nQGet #: svx/uiconfig/ui/surfacewindow.ui:37 @@ -19877,7 +19877,7 @@ #: svx/uiconfig/ui/zoommenu.ui:16 msgctxt "zoommenu|extended_tip|page" msgid "Displays the entire page on your screen." -msgstr "" +msgstr "Visar hela sidan på skärmen." #. gZGXQ #: svx/uiconfig/ui/zoommenu.ui:25 @@ -19889,7 +19889,7 @@ #: svx/uiconfig/ui/zoommenu.ui:29 msgctxt "zoommenu|extended_tip|width" msgid "Displays the complete width of the document page. The top and bottom edges of the page may not be visible." -msgstr "" +msgstr "Visar hela sidans bredd. Sidans övre och nedre kanter kanske inte syns." #. ZQxa5 #: svx/uiconfig/ui/zoommenu.ui:38 @@ -19901,7 +19901,7 @@ #: svx/uiconfig/ui/zoommenu.ui:42 msgctxt "zoommenu|extended_tip|optimal" msgid "Resizes the display to fit the width of the text in the document at the moment the command is started." -msgstr "" +msgstr "Ändrar storlek på skärmen så att den passar bredden på texten i dokumentet när kommandot startas." #. tMYhp #: svx/uiconfig/ui/zoommenu.ui:51 @@ -19925,7 +19925,7 @@ #: svx/uiconfig/ui/zoommenu.ui:71 msgctxt "zoommenu|extended_tip|100" msgid "Displays the document at its actual size." -msgstr "" +msgstr "Visar dokumentet i dess verkliga storlek." #. DjAKP #: svx/uiconfig/ui/zoommenu.ui:80 diff -Nru libreoffice-7.1.2~rc2/translations/source/sv/sw/messages.po libreoffice-7.1.3~rc2/translations/source/sv/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/sv/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sv/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-01-07 18:36+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Andreas Pettersson \n" "Language-Team: Swedish \n" "Language: sv\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1556827645.000000\n" #. v3oJv @@ -80,31 +80,31 @@ #: sw/inc/AccessibilityCheckStrings.hrc:26 msgctxt "STR_NON_INTERACTIVE_FORMS" msgid "An input form is not interactive." -msgstr "" +msgstr "Inmatningsformuläret är inte interaktivt." #. Z6sHT #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_FLOATING_TEXT" msgid "Avoid floating text." -msgstr "" +msgstr "Undvik flytande text." #. 77aXx #: sw/inc/AccessibilityCheckStrings.hrc:28 msgctxt "STR_HEADING_IN_TABLE" msgid "Tables must not contain headings." -msgstr "" +msgstr "Tabeller får inte innehålla rubriker." #. LxJKy #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "" +msgstr "Håll rubriknivåerna ordnade. Rubriknivå %LEVEL_CURRENT% får inte komma efter %LEVEL_PREV%." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_FONTWORKS" msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text." -msgstr "" +msgstr "Undvik fontwork-objekt i dina dokument. Se till att du använder de för exempel eller annan meningslös text." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 @@ -614,13 +614,13 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "" +msgstr "Direkt teckenformatering" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "" +msgstr "Direkt styckeformatering" #. YUbUQ #. Format names @@ -633,19 +633,19 @@ #: sw/inc/inspectorproperties.hrc:36 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Border Distance" -msgstr "" +msgstr "Kantavstånd" #. sKjYr #: sw/inc/inspectorproperties.hrc:37 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Inner Line Width" -msgstr "" +msgstr "Inre linjebredd" #. yrAyD #: sw/inc/inspectorproperties.hrc:38 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Line Distance" -msgstr "" +msgstr "Linjeavstånd" #. jS4tt #: sw/inc/inspectorproperties.hrc:39 @@ -663,7 +663,7 @@ #: sw/inc/inspectorproperties.hrc:41 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Outer Line Width" -msgstr "" +msgstr "Yttre linjebredd" #. c7Qfp #: sw/inc/inspectorproperties.hrc:42 @@ -8012,13 +8012,13 @@ #: sw/inc/strings.hrc:1084 msgctxt "STR_SURROUND_IDEAL" msgid "Optimal" -msgstr "" +msgstr "Optimal" #. HEuGy #: sw/inc/strings.hrc:1085 msgctxt "STR_SURROUND_NONE" msgid "None" -msgstr "" +msgstr "Ingen" #. 4tA4q #: sw/inc/strings.hrc:1086 @@ -8030,19 +8030,19 @@ #: sw/inc/strings.hrc:1087 msgctxt "STR_SURROUND_PARALLEL" msgid "Parallel" -msgstr "" +msgstr "Parallell" #. hyEQ5 #: sw/inc/strings.hrc:1088 msgctxt "STR_SURROUND_LEFT" msgid "Before" -msgstr "" +msgstr "Före" #. bGBtQ #: sw/inc/strings.hrc:1089 msgctxt "STR_SURROUND_RIGHT" msgid "After" -msgstr "" +msgstr "Efter" #. SrG3D #: sw/inc/strings.hrc:1090 @@ -8138,13 +8138,13 @@ #: sw/inc/strings.hrc:1105 msgctxt "STR_REGISTER_ON" msgid "Page line-spacing" -msgstr "" +msgstr "Sidradavstånd" #. Cui3U #: sw/inc/strings.hrc:1106 msgctxt "STR_REGISTER_OFF" msgid "Not page line-spacing" -msgstr "" +msgstr "Inget sidradavstånd" #. 4RL9X #: sw/inc/strings.hrc:1107 @@ -9980,13 +9980,13 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:42 msgctxt "annotationmenu|resolvethread" msgid "Resolve Thread" -msgstr "" +msgstr "Lös tråd" #. gE5Sy #: sw/uiconfig/swriter/ui/annotationmenu.ui:50 msgctxt "annotationmenu|unresolvethread" msgid "Unresolve Thread" -msgstr "" +msgstr "Gör tråd olöst" #. qAYam #: sw/uiconfig/swriter/ui/annotationmenu.ui:58 @@ -9998,7 +9998,7 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:66 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "" +msgstr "Ta bort _Kommentarstråd" #. z2NAS #: sw/uiconfig/swriter/ui/annotationmenu.ui:74 @@ -10136,7 +10136,7 @@ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:160 msgctxt "assignfieldsdialog|extended_tip|FIELDS" msgid "Select a field name in your database for each logical address element." -msgstr "" +msgstr "Välj ett fältnamn i din databas för varje logiskt adresselement." #. B8UUd #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:191 @@ -10172,7 +10172,7 @@ #: sw/uiconfig/swriter/ui/assignfieldsdialog.ui:302 msgctxt "assignfieldsdialog|extended_tip|AssignFieldsDialog" msgid "Matches the logical field names of the layout dialog to the field names in your database when you create new address blocks or salutations." -msgstr "" +msgstr "Matchar de logiska fältnamnen i layoutdialogen med fältnamnen i din databas när du skapar nya adressblock eller hälsningar." #. RhjgE #: sw/uiconfig/swriter/ui/assignstylesdialog.ui:92 @@ -10274,7 +10274,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:101 msgctxt "extended_tip|authentication" msgid "Enables the authentication that is required to send email by SMTP." -msgstr "" +msgstr "Aktiverar autentisering som krävs för att skicka e-post via SMTP." #. 5F7CW #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:113 @@ -10328,7 +10328,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:232 msgctxt "extended_tip|smtpafterpop" msgid "Select if you are required to first read your email before you can send email." -msgstr "" +msgstr "Välj om du måste läsa din e-post innan du kan skicka e-post." #. hguDR #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:247 @@ -10424,19 +10424,19 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:39 msgctxt "autoformattable|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "Stänger dialogrutan och förkastar alla ändringar." #. V6Tpf #: sw/uiconfig/swriter/ui/autoformattable.ui:60 msgctxt "autoformattable|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "Sparar alla ändringar och stänger dialogrutan." #. NTY8D #: sw/uiconfig/swriter/ui/autoformattable.ui:135 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "Visar en förhandsgranskning av det aktuella urvalet." #. q7HjF #: sw/uiconfig/swriter/ui/autoformattable.ui:177 @@ -10538,7 +10538,7 @@ #: sw/uiconfig/swriter/ui/autoformattable.ui:442 msgctxt "autoformattable|extended_tip|AutoFormatTableDialog" msgid "Automatically applies formats to the current table, including fonts, shading, and borders." -msgstr "" +msgstr "Tillämpar automatiskt format på den aktuella tabellen, inklusive teckensnitt, skuggning och kantlinjer." #. RoSFi #: sw/uiconfig/swriter/ui/autotext.ui:12 @@ -10994,7 +10994,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:131 msgctxt "extended tip | company" msgid "Type the name of your company in this field." -msgstr "" +msgstr "Skriv ditt företags namn i det här fältet." #. 7PLeB #: sw/uiconfig/swriter/ui/businessdatapage.ui:162 @@ -11006,7 +11006,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:163 msgctxt "extended tip | position" msgid "Type your position in the company in this field." -msgstr "" +msgstr "Skriv din position i företaget i det här fältet." #. KckUP #: sw/uiconfig/swriter/ui/businessdatapage.ui:193 @@ -11018,7 +11018,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:194 msgctxt "extended tip | fax" msgid "Type company fax number in this field." -msgstr "" +msgstr "Skriv företagets faxnummer i det här fältet." #. iGBqW #: sw/uiconfig/swriter/ui/businessdatapage.ui:226 @@ -11030,7 +11030,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:227 msgctxt "extended tips | url" msgid "Company homepage" -msgstr "" +msgstr "Företagets hemsida" #. JBxqb #: sw/uiconfig/swriter/ui/businessdatapage.ui:245 @@ -11042,7 +11042,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:246 msgctxt "extended tip | email" msgid "Type your company email address." -msgstr "" +msgstr "Skriv ditt företags e-postadress." #. CCKWa #: sw/uiconfig/swriter/ui/businessdatapage.ui:265 @@ -11060,7 +11060,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:291 msgctxt "extended tips | company2" msgid "Company second line" -msgstr "" +msgstr "Företagets andra rad" #. Po3B3 #: sw/uiconfig/swriter/ui/businessdatapage.ui:310 @@ -11078,7 +11078,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:336 msgctxt "extended tip | icity" msgid "Type the company city" -msgstr "" +msgstr "Skriv företagets stad" #. ytCQe #: sw/uiconfig/swriter/ui/businessdatapage.ui:354 @@ -11090,25 +11090,25 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:355 msgctxt "extended tip | izip" msgid "Type company ZIP in this field." -msgstr "" +msgstr "Skriv företagets postnummer i det här fältet." #. iVLAA #: sw/uiconfig/swriter/ui/businessdatapage.ui:385 msgctxt "extended tips | slogan" msgid "Company slogan" -msgstr "" +msgstr "Företagets slogan" #. GAi2c #: sw/uiconfig/swriter/ui/businessdatapage.ui:416 msgctxt "extended tips | country" msgid "Company country" -msgstr "" +msgstr "Företagets land" #. ZFNQd #: sw/uiconfig/swriter/ui/businessdatapage.ui:434 msgctxt "extended tip | state" msgid "Type company state." -msgstr "" +msgstr "Skriv företagets stat/region." #. yvuE2 #: sw/uiconfig/swriter/ui/businessdatapage.ui:453 @@ -11126,7 +11126,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:480 msgctxt "extended tips | phone" msgid "Type business phone" -msgstr "" +msgstr "Skriv företagets telefon" #. BGbZN #: sw/uiconfig/swriter/ui/businessdatapage.ui:498 @@ -11138,7 +11138,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:499 msgctxt "extended tips | mobile" msgid "Type company mobile" -msgstr "" +msgstr "Skriv företagets mobil" #. 9TjDF #: sw/uiconfig/swriter/ui/businessdatapage.ui:518 @@ -11150,7 +11150,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:543 msgctxt "extended tip | street" msgid "Type the name of company street in this field." -msgstr "" +msgstr "Skriv gatunamnet för företaget i det här fältet." #. RTBTC #: sw/uiconfig/swriter/ui/businessdatapage.ui:566 @@ -11312,7 +11312,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:173 msgctxt "cardmediumpage|extended_tip|database" msgid "Select the database that you want to use as the data source for your label." -msgstr "" +msgstr "Välj den databas som du vill använda som datakälla för dina etiketter." #. G2Vhh #: sw/uiconfig/swriter/ui/cardmediumpage.ui:200 @@ -11336,7 +11336,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:261 msgctxt "cardmediumpage|extended_tip|field" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "" +msgstr "Välj det databasfält som du vill ha och klicka sedan på pilen till vänster om den här rutan för att infoga fältet i textrutan Etikett." #. VfLpb #: sw/uiconfig/swriter/ui/cardmediumpage.ui:287 @@ -11348,7 +11348,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:293 msgctxt "cardmediumpage|extended_tip|insert" msgid "Select the database field that you want, and then click the arrow to the left of this box to insert the field into the Label text box." -msgstr "" +msgstr "Välj det databasfält som du vill ha och klicka sedan på pilen till vänster om den här rutan för att infoga fältet i textrutan Etikett." #. Y9YPN #: sw/uiconfig/swriter/ui/cardmediumpage.ui:310 @@ -11402,7 +11402,7 @@ #: sw/uiconfig/swriter/ui/cardmediumpage.ui:491 msgctxt "cardmediumpage|extended_tip|formatinfo" msgid "The paper type and the dimensions of the business card are displayed at the bottom of the Format area." -msgstr "" +msgstr "Papperstypen och visitkortets mått visas längst ner i området Format." #. 3zCCN #: sw/uiconfig/swriter/ui/cardmediumpage.ui:518 @@ -11444,13 +11444,13 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:150 msgctxt "ccdialog|extended_tip|cc" msgid "Enter the recipients of email copies, separated by a semicolon (;)." -msgstr "" +msgstr "Ange mottagarna av e-postkopior, åtskilda med semikolon (;)." #. BCsoU #: sw/uiconfig/swriter/ui/ccdialog.ui:168 msgctxt "ccdialog|extended_tip|bcc" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Ange mottagarna av dolda e-postkopior, åtskilda med semikolon (;)." #. P3CcW #: sw/uiconfig/swriter/ui/ccdialog.ui:185 @@ -11600,13 +11600,13 @@ #: sw/uiconfig/swriter/ui/charurlpage.ui:288 msgctxt "charurlpage|extended_tip|visitedlb" msgid "Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "" +msgstr "Välj en formateringsstil som ska användas för besökta länkar från listan. För att lägga till eller ändra en stil i den här listan stänger du den här dialogrutan och klickar på ikonen Stilar i verktygsfältet Formatering." #. w7Cdu #: sw/uiconfig/swriter/ui/charurlpage.ui:303 msgctxt "charurlpage|extended_tip|unvisitedlb" msgid "Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the Styles icon on the Formatting toolbar." -msgstr "" +msgstr "Välj en formateringsstil som ska användas för ej besökta länkar från listan. För att lägga till eller ändra en stil i den här listan stänger du den här dialogrutan och klickar på ikonen Stilar i verktygsfältet Formatering." #. 43fvG #: sw/uiconfig/swriter/ui/charurlpage.ui:320 @@ -11948,7 +11948,7 @@ #: sw/uiconfig/swriter/ui/conditionpage.ui:182 msgctxt "conditionpage|extended_tip|apply" msgid "Click Apply to apply the selected Paragraph Style to the defined context." -msgstr "" +msgstr "Klicka på Tillämpa för att tillämpa den valda styckeformaten i det definierade sammanhanget." #. xC6d7 #: sw/uiconfig/swriter/ui/conditionpage.ui:230 @@ -12434,7 +12434,7 @@ #: sw/uiconfig/swriter/ui/createaddresslist.ui:448 msgctxt "createaddresslist|extended_tip|CreateAddressList" msgid "Enter new addresses or edit the addresses for mail merge documents." -msgstr "" +msgstr "Ange nya adresser eller redigera adresserna för kopplingsdokument." #. bZoQN #: sw/uiconfig/swriter/ui/createauthorentry.ui:8 @@ -12662,7 +12662,7 @@ #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:59 msgctxt "dropdownfielddialog|extended_tip|next" msgid "Closes the current Input list and displays the next, if available." -msgstr "" +msgstr "Stänger aktuell inmatningslista och visar nästa, om tillgänglig." #. Ct7px #: sw/uiconfig/swriter/ui/dropdownfielddialog.ui:84 @@ -29369,4 +29369,4 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:571 msgctxt "wrappage|extended_tip|WrapPage" msgid "Specify the way you want text to wrap around an object." -msgstr "" +msgstr "Ange hur du vill att texten ska anpassas runt ett objekt." diff -Nru libreoffice-7.1.2~rc2/translations/source/sw-TZ/cui/messages.po libreoffice-7.1.3~rc2/translations/source/sw-TZ/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/sw-TZ/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/sw-TZ/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2475,1071 +2475,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/szl/cui/messages.po libreoffice-7.1.3~rc2/translations/source/szl/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/szl/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/szl/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-04-28 19:16+0000\n" "Last-Translator: Grzegorz Kulik \n" "Language-Team: Silesian \n" @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Pōmoc %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Wiyncyj informacyji" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ta/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ta/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ta/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ta/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2461,1071 +2461,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ta/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ta/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ta/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ta/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-08-08 12:39+0000\n" "Last-Translator: serval2412 \n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/te/cui/messages.po libreoffice-7.1.3~rc2/translations/source/te/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/te/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/te/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2470,1071 +2470,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/tg/cui/messages.po libreoffice-7.1.3~rc2/translations/source/tg/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/tg/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tg/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tajik \n" @@ -2478,1071 +2478,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tg/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:11+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Чашмакзанӣ" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/th/cui/messages.po libreoffice-7.1.3~rc2/translations/source/th/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/th/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/th/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-02-01 14:41+0000\n" "Last-Translator: aefgh39622 \n" "Language-Team: Thai \n" @@ -2454,1071 +2454,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ti/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ti/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ti/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ti/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:46+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2442,1071 +2442,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/tn/cui/messages.po libreoffice-7.1.3~rc2/translations/source/tn/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/tn/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tn/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2476,1071 +2476,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/tr/cui/messages.po libreoffice-7.1.3~rc2/translations/source/tr/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/tr/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tr/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-11-22 11:56+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME dört makro güvenlik seviyesini (düşükten çok yükseğe) ve güvenilir kaynakları destekler." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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, Google Summer of Code (GSoC) için bir kuruluş olarak başvurmayı planlıyor:" - -#. SNTbc -#: 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 "Metnin bölümlerine yorum ekleyebileceğinizi biliyor muydunuz? Sadece %MOD1+%MOD2+C kısayolunu kullanın." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Bir ya da daha fazla paragrafı taşımanız mı gerekiyor? Kes ve yapıştır yapmanıza gerek yok: %MOD1+%MOD2+Ok (Yukarı/Aşağı) klavye kısayolunu kullanın." #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Araçlar ▸ Seçenekler ▸ %PRODUCTNAME Writer ▸ Temel Yazı Tipleri menüsünü kullanarak öntanımlı şablon veya mevcut belge için temel yazı tiplerini değiştirin" #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "10'dan fazla harf içeren kelimeleri bulmak mı istiyorsunuz? Düzenle ▸ Bul ve Değiştir ▸ Ara ▸ [a-z]{10,} ▸ Diğer Seçenekler ▸ Düzenli İfadeler'i seç." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Bir CSV dosyasını mevcut hesap tablosunda Sayfa ▸ Dosyadan çalışma sayfası ekle menüsünü kullanarak bir safya olarak açın." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Writer'da kalın, eğik veya altı çizili yazarken %MOD1+Shift+X (doğrudan karakter biçimlendirmesini kaldırır) kısayolunu kullanarak standart biçimde yazmaya devam edebilirsiniz." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Pano içeriğini biçimlendirilmemiş metin olarak yapıştırmak için %MOD1+%MOD2+Shift+V tuşlarını kullanın." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Araçlar ▸ Dipnot ve Sonnot… menüsü ile dipnot görünümünü özelleştirebilirsiniz" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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 "Slayt Gösterisi ▸ Özel Slayt Gösterisi ile slayt gösterilerini izleyicilerinizin ihtiyaçlarına göre yeniden düzenleyin ve seçin." #. ZZZZo -#: cui/inc/tipoftheday.hrc:117 +#: cui/inc/tipoftheday.hrc:116 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 "Metnin bir kısmı için yazım denetimini değiştirmek ister misiniz? Durum çubuğunun dil bölgesini tıklayın veya daha iyisi bir biçem uygulayın." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer takip eden iki tek (çift) sayfa arasına boş bir sayfa ekleyebilir. %PRODUCTNAME Writer sekmesindeki yazıcı penceresinde \"Otomatik olarak eklenmiş boş sayfaları yazdır\" seçeneğini işaretleyin." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You do not want to print all columns? Hide or group the ones you do not need." msgstr "Tüm sütunların yazdırmak istemiyor musunuz? Yazdırmak istemediklerinizi gizleyin ya da gruplayın." #. pZZxV -#: cui/inc/tipoftheday.hrc:120 +#: cui/inc/tipoftheday.hrc:119 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 "Otomatik çalışan sunumu düzenlemek için, çalıştırdıktan sonra sağ tıklayın ve içerik menüsünden Düzenle'yi seçin." #. WZi38 -#: cui/inc/tipoftheday.hrc:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Hassas konumlandırmaya mı ihtiyacınız var? %MOD2+ok tuşları ile nesneleri (şekiller, resimler, formüller) bir piksel kaydırabilirsiniz." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Eğer yüklemişseniz, F1 tuşuna basarak gömülü yardımı kullanabilirsiniz. Aksi halde şuradan çevrimiçi bakın:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Seçili hücre sayısını görüntülemek için %PRODUCTNAME Calc uygulamasında durum çubuğu üzerinde sağ tıklayın ve “Seçim sayısı”nı işaretleyin." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Bir %PRODUCTNAME Writer sayfasının sadece bir bölümünde bir veya daha fazla sütuna mı ihtiyacınız var? Ekle ▸ Bölüm ▸ Sütunlar sekmesinden sütun sayısını ayarlayın ve metni o bölüme yerleştirin." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "%PRODUCTNAME Calc'da örneklem, tanımlayıcı istatistikler, varyans analizi, korelasyon ve çok daha fazlasını yapmak için Veri ▸ İstatistikler menüsünü kullanın." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Pano kullanmadan bir sayfadan diğer sayfaya kopyalama yapabilirsiniz. Kopyalayacağınız alanı seçip hedef sayfa sekmesine %MOD1+tıkla yapıp Çalışma Sayfası ▸ Hücreleri Doldur ▸ Çalışma Sayfalarını Doldur menüsünü kullanın." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Araçlar ▸ Seçenekler ▸ Görünüm ▸ Kullanıcı Arayüzü yolu ile %PRODUCTNAME görünümünü değiştirebilirsiniz." #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "%PRODUCTNAME Impress'de \"Fotoğraf Albümü\" ile bir fotoğraf serisinden bir slayt gösterisi hazırlamak için Ekle ▸ Ortam ▸ Fotoğraf Albümü menüsünü kullanın." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Görünüm ▸ Formülü Göster (veya Araçlar ▸ Seçenekler ▸ %PRODUCTNAME Calc ▸ Görünüm ▸ Göster ▸ Formüller) menüsü ile formül sonuçları yerine formülleri gösterebilirsiniz." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME dünyada çapında binlerce katkıcıdan oluşan dost canlısı bir topluluk tarafından geliştirilmektedir. Kodlamanın ötesinde farklı yeteneklerinizle bize katılın." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Solak mısınız? Araçlar ▸ Seçenekler ▸ Dil Ayarları ▸ Diller ▸ Asya seçeneğini etkinleştirin ve Kaydırma çubuğunu solda göstermek için Araçlar ▸ Seçenekler ▸ %PRODUCTNAME Writer ▸ Görünüm ▸ Cetvel ▸ Sağa Hizalı seçeneğini seçin." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Bölüm başlıklarınızın daima yeni bir sayfa oluşturmasını mı istiyorsunuz? Başlık 1(paragraf biçemi)'i sağ tıklayıp Düzenle'yi seçin. Açılan pencereden Metin Akışı sekmesini açıp Kesmeler bölümünden Ekle ▸ Sayfa ▸ Önce seçeneklerini seçin." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Tarih/saat değeri, sıfır kabul edilen günden bu yana geçen gün sayısıdır. Sayının tam sayı kısmı tarihi, kesirli kısmı zamanı (günün geçen kısmını), 0.5 ise öğleyi temsil eder." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del tuşları imlecin bulunduğu yerden mevcut cümlenin sonuna kadar olan kısmı siler." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "Formüllerde sütun veya satır etiketlerini kullanın. Örneğin, \"Zaman\" ve \"KM\" adında iki sütun varsa =Zaman/KM yazarak kilometre başına dakikayı hesaplayabilirsiniz." #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "Calc'da kopyalama esnasında hücre etrafında dönen çizgiler sizi rahatsız mı ediyor? Esc tuşuna basarak durdurun; kopyalanmış içerik yapıştırmak için panoda muhafaza edilecektir." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "%PRODUCTNAME Temsilcisi mi olmak istiyorsunuz? Geliştiriciler, yöneticiler ve eğitimciler için sertifikalar bulunmaktadır." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Calc Hesap Tablosunda, sayfalara farklı sayfa biçemlerini uygulayarak dikey ve yatay yönlendirmeyi karıştırın." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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 "Sık ve en son kullanılan karakterlere hızlıca erişmek ve eklemek için araç çubuğundaki özel karakter simgesine tıklayın." #. 7UE7V -#: cui/inc/tipoftheday.hrc:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Biçemler arasındaki ilişkiyi görmek için Biçemler kenar çubuğundaki “Hiyerarşik Görünüm”ü seçin." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Belgenizdeki tabloları tutarlı görünmeleri için biçemleri kullanabilirsiniz. Önceden tanımlanmış Biçemler (F11) içinden birini seçebilir veya Tablo ▸ Otomatik Biçimlendirme kullanabilirsiniz." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "%MOD1 tuşunu köprüleri açmak için ayarlamak mı istiyorsunuz? Araçlar ▸ Seçenekler ▸ %PRODUCTNAME ▸ Güvenlik ▸ Seçenekler ▸ “Köprüleri açmak için %MOD1+tık gerekli” seçeneğini seçin." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Bir formülün birbirinden ayrı ögelerinin hesaplanmasını görüntülemek istiyorsanız, ilgili ögeleri seçin ve F9'a basın." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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 "Hücreleri Biçim ▸ Hücreler ▸ Koruma ile koruyabilirsiniz. Sayfalara eklemeyi, silmeyi, yeniden adlandırmayı, taşımayı/kopyalamayı önlemek için Araçlar ▸ Sayfayı Koru kullanabilirsiniz." #. L6brZ #. local help missing -#: cui/inc/tipoftheday.hrc:145 +#: cui/inc/tipoftheday.hrc:144 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Write along a curve? Draw the line, double click, type the text, Format ▸ Text Box and Shape ▸ Fontwork." msgstr "Bir eğri üstüne yazmak mı istiyorsunuz? Çizgiyi çizin, çift tıklayın, metni yazın, Biçim ▸ Metin Kutusu ve Şekil ▸ Yazı Sanatı menüsünü kullanın." #. ZE6D5 -#: cui/inc/tipoftheday.hrc:146 +#: cui/inc/tipoftheday.hrc:145 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 "Hesap Tablosundaki en yüksek değerleri mi görüntülemek istiyorsunuz? Veri ▸ Otomatik Süzgeç'i etkinleştirin, düşey liste okuna tıklayın ve “Üst 10”u seçin." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "İçindekiler tablosundan sayfa numaralarını silmek için Ekle ▸ İçindekiler Tablosu ve Dizin kullanın (veya en son eklenmiş İçindekiler tablosuna sağ tıklayın ve Düzenle'yi seçin). Girdiler sekmesinde Yapı satırından sayfa numarasını (#) silin." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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 "Gezgin ile başlıkları ve başlık altındaki metni seçebilir, Gezgin içinde ve belge içinde yukarı/aşağı taşıyabilirsiniz." #. 8qYrk -#: cui/inc/tipoftheday.hrc:149 +#: cui/inc/tipoftheday.hrc:148 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 "Writer içinde hızlıca matematik nesneleri eklemek formülü yazıp işaretleyin ve metni dönüştürmek için Ekle ▸ Nesne ▸ Formül menüsünü kullanın." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "%PRODUCTNAME ile yeni bir sözlük kurmak çok kolay çünkü sözlükler zaten birer eklenti olarak sunulmakta." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME'in taşınabilir bir versiyonu var. Bilgisayarınızın yönetici izinleri olmadan %PRODUCTNAME taşınabilir sürümünü de sabit diskinize kurabilirsiniz." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer dip notlarınızı her sayfa, bölüm, belge için numaralandırmanıza izin verir. Araçlar ▸ Dipnotlar ve Sonnotlar ▸ Dipnot ▸ Numaralandırma seçeneğini kullanabilirsiniz." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Writer belgeniz kaydettiğinizdeki aynı düzenleme konumunda metin imleci ile yeniden açılmıyor mu? Araçlar ▸ Seçenekler ▸ %PRODUCTNAME ▸ Kullanıcı Verisi ▸ Ad/soyad bölümüne Adınızı veya Soyadınızı ekleyin." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Atıf yönetimi için üçüncü taraf bir eklenti kullanın." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Birkaç sayfada aynı yere bir değer girmek mi istiyorsunuz? Sayfaları seçin: %MOD1 tuşuna basılı tutun ve giriş yapmadan önce sayfaların sekmelerini tıklayın." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to hide some text in a document? Select the text. Insert ▸ Section, and select “Hide”." msgstr "Belgedeki metnin bir kısmını gizlemek mi istiyorsunuz? Metni seçin. Ekle ▸ Bölüm menüsünü kullanarak \"Gizle\"yi seçin." #. WMnj2 #. online help is different https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/hidden_text.html#hd_id3148675 -#: cui/inc/tipoftheday.hrc:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Araçlar ▸ Seçenekler ▸ %PRODUCTNAME ▸ Görünüm ▸ Orta düğme seçeneği ile fare orta düğmesini özelleştirebilirsiniz." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "İki dikey sayfayı bir yatay sayfaya (A4'ten A5'e küçülterek) yazdırmak mı istiyorsunuz? Dosya ▸ Yazdır ve \"Bir sayfadaki sayfalar\"'da 2'yi seçin." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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 "Belge yer imlerinize hızlıca erişmek için, durum çubuğundaki sayfa numarasına sağ tıklayın (belge penceresinin sol-alt köşesi)." #. Eb85a -#: cui/inc/tipoftheday.hrc:160 +#: cui/inc/tipoftheday.hrc:159 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 "Seçilecek nesneyi çevrelemek için Çizim araç çubuğundaki Seç aracı aracılığıyla belge arka planında bir nesne seçin." #. T3RSB -#: cui/inc/tipoftheday.hrc:161 +#: cui/inc/tipoftheday.hrc:160 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 "Sıkça kullandığınız metinleri otomatik metin olarak tanımlayın. Onları, herhangi bir Writer belgesine isimlerine, kısayollarına veya araç çubuklarına göre ekleyebilirsiniz." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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 "“Bütün Slaytlara Uygula” düğmesine tıklamadan, sesi ilk slayt geçişine atayarak slayt gösterisi boyunca müzik çalın." #. Xrnns -#: cui/inc/tipoftheday.hrc:163 +#: cui/inc/tipoftheday.hrc:162 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 soldan sağa doğru hesaplamaz, ancak Parantezler – Üsler – Çarpma – Bölme – Toplama – Çıkarma sırasına uyar." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "%PRODUCTNAME belgelendirme ve ücretsiz kullanıcı kılavuzları şuradan edinebilirsiniz:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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 "<> karakterlerini tek seferde silmek ve içindeki metni muhafaza etmek mi istiyorsunuz? Düzenle ▸ Bul ve Değiştir: Bul = [<>], Değiştir = boş ve Diğer seçenekler altındaki \"Düzenli ifadeler\" seçeneğini seçin." #. e3dfT #. local help missing -#: cui/inc/tipoftheday.hrc:166 +#: cui/inc/tipoftheday.hrc:165 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 "Writer ile yazılmış bir rapor mu sunmanız gerekiyor? Anahattan otomatik olarak sunum oluşturmak için Dosya ▸ Gönder ▸ Sunum Çerçevesine menüsünü kullanın." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Bir hesap tablosunda köprü bağlantılarının sunumunu yönetmek ister misiniz? Bunları HYPERLINK işleviyle yerleştirin." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Calc'da her sayfayı kendi yakınlaştırma değerinde tutmak için Araçlar ▸ Seçenekler ▸ %PRODUCTNAME Calc ▸ Görünüm ▸ Yakınlaştır: \"Sayfaları eşitle\" seçeneğinin seçimini kaldırın." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Her sekme için bir renk belirleyebilirsiniz: Bunun için sekmeyi sağ tıklayın veya Sayfa ▸ Sayfa Sekme Rengi menüsünü kullanın." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Bir formülde kullanılan örnekleri (Shift+F9) veya bağımlılıkları (Shift+F5) izleyin (veya Araçlar ▸ Algıla menüsünü kullanın). Her bir vuruşta zincirde bir adım ilerlersiniz." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Formüllerinizi tek seferde ekleyin ve numaralandırın: fn yazın ve F3'e basın. Hizalanmış formül ve sayıl ile bir otomatik metin bir tabloya eklenir." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can create an illustration index from object names, not only from captions." msgstr "Sadece başlıklardan değil, nesne isimlerinden de bir şekiller dizini oluşturabilirsiniz." #. Bqtz5 #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/05190000.html -#: cui/inc/tipoftheday.hrc:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Impress sunumlarınızı uzaktan kontrol etmek için Android veya iPhone kullanın." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Bu ayın kaç gün çektiğini öğrenmek mi istiyorsunuz? AYDAKİGÜNLER(BUGÜN()) işlevini kullanın." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Hesap tablonuzda sayılar ### olarak mı görünüyor? Sütun genişliği tüm rakamları göstermek için yeterli değildir." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Formül hücrelerinin paralel hesaplamalarını Araçlar ▸ Seçenekler ▸ OpenCL ile etkinleştirin." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Güzel akış grafikleri oluşturmak ve isterseniz Writer'a nesne olarak kopyala/yapıştır yapmak için Draw/Impress'de Çizim araç çubuğundan Bağlayıcı aracını kullanın." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Bağışlarınız dünya çapındaki topluluğumuzu destekliyor." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Bir tarihe x ayları eklemek mi istiyorsunuz? =SERİTARİH(Başlangıç tarihi; aylar) formülünü kullanın." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Veri içeren ve boş satır ve sütunlarla sınırlandırılmış bitişik hücre aralığını seçmek için %MOD1+* (sayısal tuş takımı) kullanın." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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 "Tarih kabul şablonunuz yeterince uygun değil mi? Şablonu düzenlemek için Araçlar ▸ Seçenekler ▸ Dil Ayarları ▸ Dil ▸ Tarih kabul şablonları kullanın." #. MZyXB -#: cui/inc/tipoftheday.hrc:182 +#: cui/inc/tipoftheday.hrc:181 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 "Formülleri CSV'ye aktarmak mı istiyorsunuz? Dosya ▸ Farklı Kaydet ▸ Tür:Metin CSV, ardından “Süzgeç ayarlarını düzenle\"yi işaretleyin ve bir sonraki pencerede “Hücre formüllerini kaydet”i işaretleyin." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Sunucu konsolu, %PRODUCTNAME Impress'in harika bir özelliği. Daha önce denemiş miydiniz?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To delete multiple comments, select cells with comments and use Sheet ▸ Cell Comments ▸ Delete Comment." msgstr "Birden çok açıklamayı silmek için, açıklamalı hücreleri seçin ve Sayfa ▸ Hücre Açıklamaları ▸ Açıklamayı Sil menüsünü kullanın." #. SMLUg -#: cui/inc/tipoftheday.hrc:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Araç çubuğundaki PDF simgesini tıklayarak belgelerinizi tek bir tıklamayla kolayca PDF'ye dönüştürün." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Kaydırmadan büyük hücre aralıkları seçmek mi istiyorsunuz? İsim kutusuna başvuru aralığını (ör. A1:A1000) girin ve Enter tuşuna basın." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Geçerli komut satırı parametrelerini öğrenmek mi istiyorsunuz? soffice komutunu --help veya -h veya -? ile başlatın." #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." msgstr "Sayfayı veya yazdırma aralığını sayfaya sığdırmak için Biçim ▸ Sayfa ▸ Sayfa Sekmesi ▸ Ölçekleme Kipi kullanın." #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need an unnumbered item in a list? Use “Insert Unnumbered Entry” in the Bullets and Numbering toolbar." msgstr "Listede numaralandırılmamış bir öğeye mi ihtiyacınız var? Madde İşaretleri ve Numaralandırma araç çubuğunda \"Numarasız Giriş Ekle\" seçeneğini kullanın." #. ZacQo -#: cui/inc/tipoftheday.hrc:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Hücrelerin tablo yönünü Tablo ▸ Özellikler… ▸ Metin Akışı ▸ Metin yönü ile döndürebilirsiniz." #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "%PRODUCTNAME Draw uygulamasında cetvellerin 0/0 noktasını değiştirmek için sol üst köşedeki iki cetvelin kesişme noktasını çalışma alanına sürükleyin." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Calc içinde bir sütunu bir adımda diğer ikisi arasında taşımak mı istiyorsunuz? Başlığı ve ardından sütundaki bir hücreyi tıklayın, fare düğmesini ve %MOD2 tuşunu basılı tutarak hedefe sürükleyin." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Bir uyumluluk dosyası kullanarak alfabetik dizin girişlerini otomatik olarak işaretleyin." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Draw/Impress'te nesneleri hassas konumlandırmak için Biçim ▸ Hizala (veya içerik) menüsünü kullanın: sırasıyla bir nesne seçilirse veya grupta çalışırsa sayfada ortalanır." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Bir Writer belgesindeki öğeleri boşluk bırakmak için sekmeler kullanmayın. Ne yapmaya çalıştığınıza bağlı olarak, kenarlıksız bir tablo daha iyi bir seçim olabilir." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "No need to scroll through the list at Tools ▸ Customize ▸ Keyboard to find a shortcut: just type it." msgstr "Bir kısayol bulmak için Araçlar ▸ Özelleştir ▸ Klavye'deki listede gezinmenize gerek yoktur: sadece yazın." #. 63noP -#: cui/inc/tipoftheday.hrc:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "% PRODUCTNAME, nesne eklediğinizde otomatik olarak numaralı bir başlık ekleyebilir. Araçlar ▸ Seçenekler ▸% PRODUCTNAME Writer ▸ Otomatik Başlık menüsüne bakın." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "% PRODUCTNAME ile adres mektup birleştirme yapmak için Google Mail hesabınızı kullanabilirsiniz. Araçları ▸ Seçenekler ▸ %PRODUCTNAME Writer ▸ Adres Mektup Birleştirme E-postası alanını doldurun." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." msgstr "Satırları kaydırırken sütun başlıklarını görünür tutmak için Görünüm ▸ Hücreleri Dondur ▸ İlk Satırı Dondur menüsünü kullanın." #. mCfdK -#: cui/inc/tipoftheday.hrc:200 +#: cui/inc/tipoftheday.hrc:199 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 "Basic makroları ile başlamak mı istiyorsunuz? Araçlar ▸ Makrolar ▸ Makroları Düzenle altındaki örneklere bir gözatın." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Writer'da kısayol kullanarak paragraf biçemleri uygulayın: %MOD1+1 Başlık 1 uygular, %MOD1+2 Başlık 2 uygular, vb." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Büyük belgelerde kaybolmayın. İçerikte yolunuzu bulmak için Gezgin'i (F5) kullanın." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Düzenle ▸ Bul ve Değiştir'e doğrudan özel karakterler girebilirsiniz: girdi alanında sağ tıklayın veya Shift+%MOD1+S tuşlarını kullanın." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want." msgstr "Üstveri özellikleri için özel içeriğe mi ihtiyacınız var? Dosya ▸ Özellikler ▸ Özel Özellikler sekmesi, istediğinizi oluşturmanıza olanak tanır." #. 9TnEA -#: cui/inc/tipoftheday.hrc:205 +#: cui/inc/tipoftheday.hrc:204 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 "Draw'da bir nesneyi görmek, ancak yazdırmamak mı istiyorsunuz? \"Yazdırılabilir\" bayrağının ayarlanmadığı bir katman üzerine çizin (sekmeyi sağ tıklayın ve \"Katmanı Değiştir\")." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Geçerli tarihi belgenize eklemek için Ekle ▸ Alan ▸ Tarih menüsünü kullanın" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Writer belgenizde çok fazla resim var mı? Görünüm ▸ Resimler ve çizelgeler seçeneğini devre dışı bırakarak ekranı hızlandırın." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." msgstr "Çeşitli dağıtımlara dayalı rastgele bir seri oluşturmak için Sayfa ▸ Hücreleri Doldur ▸ Rastgele Sayı menüsünü kullanın." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html -#: cui/inc/tipoftheday.hrc:209 +#: cui/inc/tipoftheday.hrc:208 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 "“Sayfaya git” etkileşimlerini tanımlamanıza ve Slayt1, Slayt2… 'den daha açık bir özete sahip olmanıza yardımcı olması için slaytlarınızı Impress'te yeniden adlandırın." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Bölüm numaralandırma iletişim kutusu, bölüm numarasından önce görüntülenecek metni ayarlamanızı sağlar. Örneğin, “Bölüm 1” i görüntülemek için “Bölüm” yazın" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Bir Writer tablosunu aktarmak mı istiyorsunuz? Kopyalayın ve Calc'da yapıştırın, özel kopyala/yapıştır ile aktarın ve sonra Özel kopyala/Yapıştır ▸ Writer'da biçimlendirilmiş metin." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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 "Çizim araç çubuğundaki “Dikey Metin” aracını almak için Araçlar ▸ Seçenekler ▸ Dil Ayarları ▸ Diller ▸ Varsayılan diller ▸ Asya seçeneğini seçin (ve sağ tıklamayla düğmeyi görünür yapın)." #. mmG7g -#: cui/inc/tipoftheday.hrc:213 +#: cui/inc/tipoftheday.hrc:212 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 "Aralık seçimini hızlıca yakınlaştırmak için durum çubuğunun yakınlaştırma kısmına sağ tıklayın ve En Uygun Görünüm'ü seçin." #. FDNiA -#: cui/inc/tipoftheday.hrc:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Mevcut PDF dosyalarını imzalayabilir ve bu imzaları doğrulayabilirsiniz." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Sık sık bir belgeden başka bir belge mi oluşturuyorsunuz? Şablon kullanmayı düşünebilirsiniz." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Calc'da hangi hücrelerin koşullu biçimlendirmeyle tanımlandığını bulmak için Biçim ▸ Koşullu Biçimlendirme ▸ Yönet menüsünü kullanın." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Tools ▸ Detective ▸ Mark Invalid Data highlights all cells in the sheet that contain values outside the validation rules." msgstr "Araçlar ▸ Dedektif ▸ Geçersiz Verileri İşaretle, sayfadaki doğrulama kurallarının dışında değerler içeren tüm hücreleri vurgular." #. 4V4Vw #. local help missing -#: cui/inc/tipoftheday.hrc:218 +#: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use font embedding for greater interoperability with other office suites at File ▸ Properties ▸ Font." msgstr "Diğer ofis paketleriyle daha fazla birlikte çalışabilirlik için Dosya ▸ Özellikler ▸ Yazı Tipi sekmesindeki Yazı tiplerini belgeye göm özelliğini kullanın." #. 9Uy9Q -#: cui/inc/tipoftheday.hrc:219 +#: cui/inc/tipoftheday.hrc:218 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 "Bir formülü statik değerlere dönüştürmek için kopyalamanız/yapıştırmanız gerekmez; Veri ▸ Hesapla ▸ Formülden Değere menüsünü kullanın." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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 "Bir yorumdaki aşağı oku tıklayıp \"Tüm Yorumları Biçimlendir\" i seçerek belgedeki tüm yorumları yeniden biçimlendirebilirsiniz." #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "Ekran görüntüsü ve baskı için aynı düzeni mi istiyorsunuz? Araçlar ▸ Seçenekler ▸% PRODUCTNAME Calc ▸ Genel ▸ Metni biçimlendirmek için yazıcının ölçü birimlerini kullan." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer yedeklemenize yardımcı olur: Dosya ▸ Bir Kopyasını Kaydet ile orijinal üzerinde çalışmaya devam eden yeni bir belge oluşturursunuz." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "Bir başka biçeme dayalı bir Biçem oluşturduğunuzda, bir yüzde değeri veya bir nokta değeri (ör. %110 veya −2pt veya + 5pt) girebilirsiniz." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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 "Hedef hücrenin içeriğini kaybetmeden bir açıklamayı kopyalamak için Özel Yapıştır'ı kullanmalı ve iletişim kutusundaki \"Açıklamalar\" dışındaki her şeyin işaretini kaldırmalısınız. Mevcut içeriğin üzerine yazmak için İşlemler bölümünden “Ekle” seçeneğini işaretleyin." #. Mu27G -#: cui/inc/tipoftheday.hrc:225 +#: cui/inc/tipoftheday.hrc:224 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 "Toplu olarak MS Office belgelerinizi Dosya ▸ Sihirbazlar ▸ Belge Dönüştürücü menüsünden Belge Dönüştürücü sihirbazı ile OpenDocument biçimine dönüştürün." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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 "Bir hücreyi biçimlendirirken sağ tıklayıp alan ekleyebilirsiniz: Tarih, Sayfa adı, Belge başlığı, vb." #. qAVmk -#: cui/inc/tipoftheday.hrc:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Bir Writer tablosunu taşımanız mı gerekiyor? Tablo ▸ Seç ▸ Tablo menüsünü ve Ekle ▸ Çerçeve ▸ Çerçeve menüsünü kullanın ve tabloyu istediğiniz yere taşıyın." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "Araçlar ▸ Otomatik Metin ▸ Otomatik Metin ▸ İçe Aktar ile içe aktarmak istediğiniz Otomatik Metin girdilerini içeren bir Word belgesi veya şablonu seçebilirsiniz." #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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 "İki paragrafı ayırmak için elle sonlandırıcı eklemeyin. Biçem/Paragraf özelliklerinden Girintiler ve Aralıklar ▸ Boşluk ▸ Paragrafın altında değerini değiştirin." #. rxTGc -#: cui/inc/tipoftheday.hrc:230 +#: cui/inc/tipoftheday.hrc:229 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 "\"Virgül öncesi sıfır sayısı\" hücre biçimlendirme seçeneğini kullanarak ya da hücreyi sayı girmeden önce metin olarak biçimlendirerek sıfırları muhafaza edin." #. jkXFE -#: cui/inc/tipoftheday.hrc:231 +#: cui/inc/tipoftheday.hrc:230 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 "Liste stilini uyguladıktan sonra öntanımlıya geri mi dönmek istiyorsunuz? Biçimlendirme araç çubuğundaki Madde İşaretleri veya Numaralandırma Aç/Kapat aracına tıklayın." #. wAFRP -#: cui/inc/tipoftheday.hrc:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." msgstr "Tek seferde tüm yazdırma alanlarınızı silin: tüm sayfaları seçin, ardından Biçim ▸ Yazdırma Alanları ▸ Temizle uygulayın." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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 "Hesap tablolarına arka plan resmi eklemek için: Ekle ▸ Resim veya Galeriden bir arka plan sürükleyin, ardından Biçim ▸ Sıralama ▸ Arkaplana." #. khFDu -#: cui/inc/tipoftheday.hrc:234 +#: cui/inc/tipoftheday.hrc:233 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 "PDF veya web sayfalarından kopyaladığınız metni yapıştırırken sorun mu yaşıyorsunuz? Biçimsiz metni yapıştırmak için (%MOD1+%MOD2+Shift+V) deneyin." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "Calc'ta bir veri setinin en yüksek ve en düşük değerlerini dışarıda bırakarak ortalamasını almak için KIRPORTALAMA() kullanın." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "DÜŞEYARA() Calc işlevinin 4. isteğe bağlı parametresi, ilk veri sütununun sıralı olup olmadığını gösterir. Değilse YANLIŞ veya sıfır girin." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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 "Araç çubukları bağlamsaldır — İçeriğe bağlı olarak açılırlar. Eğer bu özelliği istemezseniz, Görünüm ▸ Araç Çubuğu sekmesinden işaretini kaldırın." #. XzmhB -#: cui/inc/tipoftheday.hrc:238 +#: cui/inc/tipoftheday.hrc:237 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 "Geçerli Writer belgesinden ana belge oluşturmak mı istiyorsunuz ? Dosya ▸ Gönder ▸ Ana Belge Oluştur (alt-belgeler anahata bağlı olarak oluşturulur) menüsünü kullanın" #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Calc'da yazdırılan bir sayfadaki hücreleri ortalamak ister misiniz? Biçim ▸ Sayfa , Sayfa ▸ Düzen Ayarları ▸ Tablo hizalaması'nı ayarlayın." #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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 "Çerçeveler köprülenebilir. Böylece masaüstü yayıncılığındaki gibi yazı birinden diğerine akar." #. GB8vo #. local help missing -#: cui/inc/tipoftheday.hrc:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Bir Writer tablosundan grafik oluşturmak için tabloyu tıklayın ve Ekle ▸ Grafik menüsünü kullanın." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Yazdırılmayan karakterlerin hangisinin gösterileceğini belirlemek için Araçlar ▸ Seçenekler ▸% PRODUCTNAME Writer ▸ Biçimlendirme Yardımı ▸ Biçimlendirmeyi Göster menüsünü kullanın." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Numarasına göre belirli bir sayfaya geçmek ister misiniz? En soldaki durum çubuğu girişini tıklayın veya Düzenle ▸ Sayfaya Git… 'i kullanın ya da %MOD1+G kısayolunu kullanın." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME 150'den fazla dili destekler." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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 "Başka bir programın penceresini sunumun önünde göstermeye ihtiyacınız varsa Slayt Gösterisi ▸ Ayarlar ▸ Sunumu hep önde göster seçeneğinin işaretini kaldırın." #. sogyj -#: cui/inc/tipoftheday.hrc:246 +#: cui/inc/tipoftheday.hrc:245 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 "Bir Writer belgesinde kalın harflerle yazılmış kelimeleri bulmak ister misiniz? Düzenle ▸ Bul ve Değiştir ▸ Diğer seçenekler ▸ Öznitelikler ▸ Yazı tipi genişliği seçeneğini kullanın." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Paragrafları veya tablo satırlarını Araçlar ▸ Sırala menüsünü kullanarak alfabetik veya sayısal olarak sıralayabilirsiniz." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Bir bölümden önce (sonra) bir paragraf eklemek için bölümün başında (sonunda) %MOD2+Enter tuşlarına basın." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "% PRODUCTNAME, iyi görünümlü belgeler oluşturmak için bir şablon merkezine sahip." #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Calc ile kredi geri ödemelerini hesaplayın: örn. DEVRESEL_ÖDEME (%2/12; 36; 2500) ödeme dönemi başına faiz oranı %2/12, 36 ay, kredi tutarı 2500." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Calc'daki DÜŞEYARA işleviyle istediğinizi bulamıyor musunuz? İNDİS ve EŞLEŞTİR ile her şeyi yapabilirsiniz!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Gizli sütun A'yı göstermek mi istiyorsunuz? B'deki bir hücreye tıklayın, sol fare düğmesine basın, fareyi sola hareket ettirin, bırakın. Ardından Biçim ▸ Sütunlar▸ Göster ile açın." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Writer'daki bir sayfanın numarasını değiştirmek için ilk paragrafın özelliklerine gidin ve Metin Akışı sekmesinde Kesme ▸ Ekle'yi işaretleyin ve sayıyı girin." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "%PRODUCTNAME uygulamasını rollApp ile herhangi bir tarayıcıda çalıştırın." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Calc'da garip hata kodu, Err: ardından bir sayı mı geliyor? Açıklaması bu sayfada:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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 "Paragraf ayarlarında Anahat ve Numaralandırmayı anahat düzeyine değiştirerek içindekiler tablosuna başlık olmayan bir paragraf ekleyin." #. Jx7Fr -#: cui/inc/tipoftheday.hrc:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "İçindekiler tablosunun yanı sıra, %PRODUCTNAME Alfabetik, Çizimler, Tablolar, Nesneler, Kaynakça, Kullanıcı Tanımlı dizinler oluşturabilir." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Özel bir hücre biçemini değiştiremiyor veya silemiyor musunuz? Tüm sayfaları kontrol edin, hiçbiri korunmamalıdır." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? Select the cell range and Sheet ▸ Fill Cells ▸ Fill Series and choose between Linear, Growth, Date and AutoFill." msgstr "Bir seri doldurmanız mı gerekiyor? Hücre aralığını işaretleyin ve Sayfa ▸ Hücreleri Doldur ▸ Serileri Doldur'u seçip Doğrusal, Büyüme, Tarih ve Otomatik Doldurma arasından seçiminizi yapın." #. BiSJM #. local help missing -#: cui/inc/tipoftheday.hrc:260 +#: cui/inc/tipoftheday.hrc:259 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 "Bir hücreye diğer hücrelerin formüllerinde başvurulup başvurulmadığını bilmek ister misiniz? Araçlar ▸ Dedektif ▸ Bağımlıları İzle (Shift + F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" msgstr "Otomatik düzeltme seçeneklerinin değiştirme giriş alanında joker karakterleri kullanabilirsiniz. *" #. G7J8m -#: cui/inc/tipoftheday.hrc:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Yukarıdaki satırı çoğaltmak ister misiniz? %MOD1+D tuşlarına basın veya Sayfa ▸ Hücreleri Doldur ▸ Aşağı Doldur menüsünü kullanın." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Birkaç hesap tablosunda arama yapmak için, aramaya başlamadan önce onları seçin." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Hücreleri Calc'dan normal slayt görünümüne sürükleyip bırakmak bir tablo oluşturur; anahat görünümünde, her hücre anahatta bir çizgi oluşturur." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "% PRODUCTNAME, Writer'da iki veya daha fazla boşluk girmemenize yardımcı olur. Araçlar ▸ Otomatik Düzelt ▸ Otomatik Düzeltme Seçenekleri ▸ Seçenekler ▸ Çift boşlukları yoksay'ı kontrol edin." #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Calc'da bir değer girdikten sonra imlecin sağdaki hücreye gitmesini ister misiniz? Enter yerine Sekme tuşunu kullanın." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Kaydırma çubuğunu solda görüntülemek için, Araçlar ▸ Seçenekler ▸ Dil Ayarları ▸ Diller ▸ Karmaşık metin'i etkinleştirin ve Sayfa ▸ Sağdan Sola seçeneğini işaretleyin." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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 "Biçimlendirilmiş bir nesneyi Biçemler ve Biçimlendirme penceresine sürükleyin. Bir iletişim penceresi açılır, sadece yeni biçemin adını girin." #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "%PRODUCTNAME 'in yeni sürümleri yeni özellikler, hata düzeltmeleri ve güvenlik yamaları sağlar. Yazılımınızı güncel tutun!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Yeni XSLT ve XML filtreleri mi geliştiriyorsunuz?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Araçlar ▸ Seçenekler ▸%PRODUCTNAME ▸ Genel'de \"Genişletilmiş ipuçları\" etkinleştirilmediğinde, iletişim kutularında mevcut tüm genişletilmiş araç ipuçlarını görmek için Shift + F1 tuşlarına basın." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME Yardım" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Daha fazla bilgi" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Bu eylemi şimdi çalıştır..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Günün İpucu: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/tr/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/tr/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/tr/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tr/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2020-12-02 14:36+0000\n" "Last-Translator: Ayhan YALÇINSOY \n" "Language-Team: Turkish \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "yanıp sönen yazı tiplerigörünüp kaybolan yazı tipleri" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Yanıp sönme" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Seçili karakterlerin yanıp sönmesini sağlar. Yanıp sönme sıklığını değiştiremezsiniz." - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/tr/sw/messages.po libreoffice-7.1.3~rc2/translations/source/tr/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/tr/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tr/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2020-11-03 11:56+0000\n" -"Last-Translator: Ayhan YALÇINSOY \n" -"Language-Team: Turkish \n" +"PO-Revision-Date: 2021-04-25 10:37+0000\n" +"Last-Translator: Zeki Bildirici \n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554880865.000000\n" #. v3oJv @@ -98,13 +98,13 @@ #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "" +msgstr "Başlık düzeylerini sıralı tutun. Başlık düzeyi %LEVEL_CURRENT%, %LEVEL_PREV%. düzeyinden sonra gelmemeli." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_FONTWORKS" msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text." -msgstr "" +msgstr "Belgelerinizde Yazı Sanatı nesnelerinden sakının. Örnek veya diğer anlamsız metinler için kullandığınızdan emin olun." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 @@ -614,13 +614,13 @@ #: sw/inc/inspectorproperties.hrc:31 msgctxt "RID_CHAR_DIRECTFORMAT" msgid "Character Direct Formatting" -msgstr "" +msgstr "Karakter Doğrudan Biçimlendirme" #. fYAUc #: sw/inc/inspectorproperties.hrc:32 msgctxt "RID_PARA_DIRECTFORMAT" msgid "Paragraph Direct Formatting" -msgstr "" +msgstr "Paragraf Doğrudan Biçimlendirme" #. YUbUQ #. Format names @@ -699,19 +699,19 @@ #: sw/inc/inspectorproperties.hrc:47 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Escapement" -msgstr "" +msgstr "Karakter Otomatik Eşapman" #. sGjrW #: sw/inc/inspectorproperties.hrc:48 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Kerning" -msgstr "" +msgstr "Otomatik Karakter Aralama" #. jP3gx #: sw/inc/inspectorproperties.hrc:49 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Auto Style Name" -msgstr "" +msgstr "Otomatik Karakter Biçem Adı" #. BB8yt #: sw/inc/inspectorproperties.hrc:50 @@ -723,31 +723,31 @@ #: sw/inc/inspectorproperties.hrc:51 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Back Transparent" -msgstr "" +msgstr "Arkası Şeffaf Karakter" #. a6CtM #: sw/inc/inspectorproperties.hrc:52 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Border Distance" -msgstr "" +msgstr "Karakter Kenarlığı Mesafesi" #. CGu8x #: sw/inc/inspectorproperties.hrc:53 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Bottom Border" -msgstr "" +msgstr "Karakter Alt Kenarlık" #. s75ej #: sw/inc/inspectorproperties.hrc:54 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Bottom Border Distance" -msgstr "" +msgstr "Karakter Alt Kenarlık Mesafesi" #. pZwAM #: sw/inc/inspectorproperties.hrc:55 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Case Map" -msgstr "" +msgstr "Karakter Büyük/Küçük Harf Haritası" #. AxVck #: sw/inc/inspectorproperties.hrc:56 @@ -759,85 +759,85 @@ #: sw/inc/inspectorproperties.hrc:57 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine is On" -msgstr "" +msgstr "Karakter Birleştirme Açık" #. 5kpZt #: sw/inc/inspectorproperties.hrc:58 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Prefix" -msgstr "" +msgstr "Karakter Ön Ek Birleştirme" #. nq7ZN #: sw/inc/inspectorproperties.hrc:59 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Combine Suffix" -msgstr "" +msgstr "Karakter Son Ek Birleştirme" #. EYEqN #: sw/inc/inspectorproperties.hrc:60 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Contoured" -msgstr "" +msgstr "Çevreli Karakter" #. ZBAH9 #: sw/inc/inspectorproperties.hrc:61 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Crossed Out" -msgstr "" +msgstr "Üzeri Çizili Karakter" #. gABwu #: sw/inc/inspectorproperties.hrc:62 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height" -msgstr "" +msgstr "Yüksekliği Farklı Karakter" #. ccULG #: sw/inc/inspectorproperties.hrc:63 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height Asian" -msgstr "" +msgstr "Yüksekliği Farklı Karakter, Asya" #. LVABm #: sw/inc/inspectorproperties.hrc:64 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Difference Height Complex" -msgstr "" +msgstr "Yüksekliği Farklı Karmaşık Karakter" #. B2CTr #: sw/inc/inspectorproperties.hrc:65 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Emphasis" -msgstr "" +msgstr "Vurgulu Karakter" #. bXxkA #: sw/inc/inspectorproperties.hrc:66 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement" -msgstr "" +msgstr "Karakter Eşapmanı" #. QikGB #: sw/inc/inspectorproperties.hrc:67 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Escapement Height" -msgstr "" +msgstr "Karakter Eşapmanı Yüksekliği" #. t2UDu #: sw/inc/inspectorproperties.hrc:68 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Flash" -msgstr "" +msgstr "Yanıp Sönen Karakter" #. XXqBJ #: sw/inc/inspectorproperties.hrc:69 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Char Set" -msgstr "" +msgstr "Karakter Yazı Tipi Karakteri Kümesi" #. ZonDP #: sw/inc/inspectorproperties.hrc:70 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Char Font Char Set Asian" -msgstr "" +msgstr "Karakter Yazı Tipi Karakteri Kümesi, Asya" #. qrfZA #: sw/inc/inspectorproperties.hrc:71 diff -Nru libreoffice-7.1.2~rc2/translations/source/ts/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ts/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ts/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ts/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2471,1071 +2471,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/tt/cui/messages.po libreoffice-7.1.3~rc2/translations/source/tt/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/tt/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/tt/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Tatar \n" @@ -2467,1071 +2467,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ug/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ug/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ug/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ug/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2461,1071 +2461,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ug/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2018-11-14 12:12+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "چاقنا" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/uk/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,23 +4,23 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-10-14 19:36+0000\n" -"Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1552029176.000000\n" #. NCRDD #: chart2/inc/chart.hrc:16 msgctxt "tp_ChartType|liststore1" msgid "Bar" -msgstr "Стовпчик" +msgstr "Стовпець" #. YpLZF #: chart2/inc/chart.hrc:17 @@ -620,7 +620,7 @@ #: chart2/inc/strings.hrc:120 msgctxt "STR_COLUMN_LABEL" msgid "Column %COLUMNNUMBER" -msgstr "Стовпчик %COLUMNNUMBER" +msgstr "Стовпець %COLUMNNUMBER" #. dmCD9 #: chart2/inc/strings.hrc:121 @@ -918,7 +918,7 @@ #: chart2/inc/strings.hrc:171 msgctxt "STR_TYPE_COMBI_COLUMN_LINE" msgid "Column and Line" -msgstr "Стовпчик та лінія" +msgstr "Стовпці та лінії" #. nVKfC #: chart2/inc/strings.hrc:172 @@ -1110,7 +1110,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:109 msgctxt "chartdatadialog|InsertTextColumn" msgid "Insert Text Column" -msgstr "Вставити текстовий стовпчик" +msgstr "Вставити текстовий стовпець" #. tVACy #: chart2/uiconfig/ui/chartdatadialog.ui:114 @@ -1152,7 +1152,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:178 msgctxt "chartdatadialog|extended_tip|MoveLeftColumn" msgid "Switches the current column with its neighbor at the left." -msgstr "Міняє місцями поточний стовпчик із сусідом зліва." +msgstr "Міняє місцями поточний стовпець із сусіднім зліва." #. DfxQy #: chart2/uiconfig/ui/chartdatadialog.ui:191 @@ -3516,7 +3516,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:443 msgctxt "tp_ChartType|extended_tip|nolines" msgid "Set the number of lines for the Column and Line chart type." -msgstr "Вкажіть кількість ліній для стовпчикових і лінійних діаграм." +msgstr "Вкажіть кількість ліній для стовпцевих і лінійних діаграм." #. M2sxB #: chart2/uiconfig/ui/tp_ChartType.ui:512 @@ -4374,7 +4374,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:104 msgctxt "tp_RangeChooser|RB_DATAROWS" msgid "Data series in _rows" -msgstr "Рядки даних у рядках" +msgstr "Ряди даних у рядках" #. w6DuB #: chart2/uiconfig/ui/tp_RangeChooser.ui:114 @@ -4386,7 +4386,7 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:125 msgctxt "tp_RangeChooser|RB_DATACOLS" msgid "Data series in _columns" -msgstr "Рядки даних у _стовпцях" +msgstr "Ряди даних у _стовпцях" #. RfFZF #: chart2/uiconfig/ui/tp_RangeChooser.ui:135 @@ -4404,13 +4404,13 @@ #: chart2/uiconfig/ui/tp_RangeChooser.ui:155 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 "Для ряду даних у стовпцях: перший рядок в діапазоні використовується як назви для ряду даних. Для ряду даних в рядках: перший рядок в діапазоні використовується як категорії. Інші рядки утворюють ряд даних. Якщо цей параметр не вибрано, всі рядки є рядами даних." +msgstr "Для рядів даних у стовпцях: значення першого рядка діапазону використовуються як назви для рядів даних. Для рядів даних у рядках: значення першого рядка діапазону використовуються як категорії. Інші рядки утворюють ряди даних. Якщо цей параметр не вибрано, всі рядки є рядами даних." #. ER2D7 #: chart2/uiconfig/ui/tp_RangeChooser.ui:166 msgctxt "tp_RangeChooser|CB_FIRST_COLUMN_ASLABELS" msgid "F_irst column as label" -msgstr "Перший стовпчик як підпис" +msgstr "Перший стовпець як підпис" #. tTAhH #: chart2/uiconfig/ui/tp_RangeChooser.ui:175 @@ -4725,7 +4725,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:210 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 "Рядки з різних рядів даних відображаються так, мовби вони були приєднані тільки до однієї осі." +msgstr "Рядки з різних рядів даних зображаються так, ніби вони були приєднані тільки до однієї осі." #. b7cbo #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:222 @@ -4767,7 +4767,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:322 msgctxt "tp_SeriesToAxis|RB_ASSUME_ZERO" msgid "_Assume zero" -msgstr "_Покласти нуль" +msgstr "_Вважати за нуль" #. y6EGH #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:333 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/cui/messages.po libreoffice-7.1.3~rc2/translations/source/uk/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-09 04:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566384412.000000\n" #. GyY9M @@ -2111,7 +2111,7 @@ #: 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 "Щоб надрукувати примітки до слайдів, перейдіть на вкладку File ▸ Print ▸ Impress і в списку Документ ▸ Тип виберіть Примітки." +msgstr "Щоб надрукувати примітки до слайдів, перейдіть на вкладку Файл ▸ Друк ▸ Impress і в списку Документ ▸ Тип виберіть Примітки." #. TWjA5 #: cui/inc/tipoftheday.hrc:51 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME підтримує чотири рівні безпеки макросів (від низького до дуже високого) і довірені джерела." -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 має намір подати заявку, як організація, на Google Summer of Code (GSoC), дивіться:" - -#. SNTbc -#: 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 "Ви знаєте, як додати коментарі до виділеного тексту? Використайте сполучення клавіш %MOD1+%MOD2+C." #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "Потрібно перемістити один чи більше абзаців? Не потрібно вирізати та вставляти: Використовуй клавіатурне скорочення %MOD1+%MOD2+стрілки (вгору/вниз)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "Змініть основні шрифти для визначеного шаблону або поточного документа, використовуючи діалог Засоби ▸ Параметри ▸ %PRODUCTNAME Writer ▸ Основні шрифти (західні)." #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "Бажаєте знайти слова, що містять більше ніж 10 символів? Зміни ▸ Знайти та замінити ▸ у полі \"Знайти\" наберіть [a-я]{10,}. Переконайтесь, що опція \"Регулярні вирази\" позначена." #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "Щоб відкрити файл CSV як новий аркуш у поточній таблиці, скористайтесь меню Аркуш ▸ Вставити аркуш із файла." #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "Набираючи текст жирним шрифтом, курсивом або з підкресленням у Writer, ви можете продовжити набір простим текстом, використовуючи поєднання клавіш %MOD1+Shift+X (видаляє пряме форматування символів)." #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "Скористайтесь сполученням клавіш %MOD1+%MOD2+Shift+V, щоб вставити вміст буфера обміну як неформатований текст." #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "Налаштуйте вигляд виносок у діалозі Засоби ▸ Виноски та кінцеві виноски…" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "Хочете змінити мову перевірки правопису для деякої частини тексту? Клацніть по мові в рядку стану або, що буде краще, застосуйте стиль." #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer може вставити порожню сторінку між двома непарними (парними) сторінками: встановіть позначку «Друкувати автоматично вставлені порожні сторінки» на вкладці LibreOffice Writer в діалозі Друк." #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "Треба задати точне положення? Клавіші %MOD2+стрілка переміщують об'єкти (фігуру, малюнок, формулу) на один піксель." #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "Довідка, якщо ви встановили її, доступна за клавішею F1. В іншому випадку вона доступна онлайн:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "Клацніть правою кнопкою по рядку стану в %PRODUCTNAME Calc і виберіть Кількість вибраних у контекстному меню, щоб показувати кількість вибраних комірок." #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "Хочете мати два або більше стовпчиків тільки на частині сторінки %PRODUCTNAME Writer? «Вставка ▸ Розділ», налаштуйте потрібне на вкладці «Колонки» і помістіть текст у розділі." #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "Використовуйте діалог \"Дані ▸ Статистика\" для налаштувань вибірки, кореляції та багато іншого в %PRODUCTNAME Calc." #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "Ви можете копіювати дані з одного аркуша на інший, не користуючись буфером обміну. Виділіть діапазон для копіювання, утримуючи клавішу %MOD1, клацніть по вкладці потрібного аркуша і виберіть пункт меню «Аркуш ▸ Заповнити комірки ▸ Аркуші»." #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "Ви можете змінити вигляд %PRODUCTNAME в діалозі \"Засоби ▸ Параметри ▸ Перегляд ▸ Інтерфейс користувача\"" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "У %PRODUCTNAME Impress використовуйте меню «Вставка ▸ Медіа ▸ Фотоальбом» для створення презентації із серії зображень з можливістю налаштувань." #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "Ви можете показувати формули замість результатів, використовуючи меню «Перегляд ▸ Показати формулу» (або «Засоби ▸ Параметри ▸ %PRODUCTNAME Calc ▸ Перегляд ▸ Показати ▸ Формули»)." #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME розробляється доброзичливою спільнотою, що складається з сотень учасників з усього світу. Приєднуйтесь до нас, навіть якщо ви не вмієте програмувати." #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "Ви шульга? Оберіть «Засоби ▸ Параметри ▸ Параметри мови ▸ Мови ▸ Азійські (без перевірки)» та увімкніть «Засоби ▸ Параметри ▸ %PRODUCTNAME Writer ▸ Перегляд ▸ Вертикальна лінійка ▸ Праворуч», щоб помістити смугу прокрутки зліва." #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "Бажаєте, щоб розділи починались з нової сторінки? Змініть стиль абзацу Заголовок 1 (або інший за необхідності), на вкладці Розташування тексту ▸ Розриви ▸ Вставити ▸ Тип \"Сторінка\" ▸ положення \"Перед\"." #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "Значення дати/часу - просте число днів від обраної нульової дати; у цьому числі ціла частина являє собою дату, а дробова — час (частина дня, що минула), 0.5 показує полудень." #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Delete видалить все від курсора до кінця поточного речення." #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "Дратують \"рухомі мурахи\" навколо скопійованих комірок у Calc? Натисніть Escape, щоб зупинити їх, скопійований вміст залишиться доступним для вставляння." #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "Хочете стати представником %PRODUCTNAME? Є сертифікації для розробників, адміністраторів і людей, які проводять тренінги." #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "Застосовуйте різну орієнтацію сторінок для різних аркушів у файлі електронної таблиці Calc, застосовуючи різні стилі сторінок до різних аркушів." #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "Оберіть \"Ієрархічно\" на боковій панелі \"Стилі\", щоб побачити зв'язок між стилями." #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "Ви можете використовувати стилі для таблиць Writer. Оберіть один із доступних у Боковій панелі (F11) або через меню Таблиця ▸ Стилі автоформату." #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "Налаштувати використання клавіші % MOD1 для переходу за гіперпосиланнями? «Засоби ▸ Параметри ▸ % PRODUCTNAME ▸ Безпека ▸ Параметри ▸ % MOD1 + клац для переходу за гіперпосиланнями»." #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "Ви хочете переглянути розрахунок окремих елементів формули? Виберіть відповідні елементи і натисніть F9." #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "Хочете показати тільки найбільші значення в таблиці? Виберіть пункт меню Дані ▸ Автофільтр, клацніть по стрілці в комірці і виберіть у вікні автофільтра «Перші 10»." #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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 "Щоб видалити номер сторінки зі змісту, клацніть правою кнопкою миші по змісту і виберіть Редагування покажчика. На вкладці Елементи видаліть номер сторінки (#) з рядка структури, натиснувши клавішу Delete." #. JPu6C -#: cui/inc/tipoftheday.hrc:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "Для швидкого отримання формули Math у Writer, введіть формулу мовою розмітки, виберіть її, а потім виберіть меню Вставка ▸ Об'єкт ▸ Формула для конвертування тексту в об'єкт." #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "У %PRODUCTNAME дуже легко додавати нові словники: вони доступні, як розширення." #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "Є портативна версія %PRODUCTNAME. Навіть без прав адміністратора на вашому комп'ютері ви зможете встановити %PRODUCTNAME Portable на ваш твердий диск." #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer дозволяє нумерувати виноски за сторінками, розділами, в цілому по документу. Використовуйте діалог Засоби ▸ Виноски та кінцеві виноски." #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "Ваш документ Writer не відкривається на місці, яке ви редагували востаннє перед закриттям документа? Заповніть інформацію про користувача (Прізвище та Ім'я) в діалозі Засоби ▸ Параметри ▸ %PRODUCTNAME ▸ Користувач." #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "Керування цитатами? Використовуйте сторонні розширення." #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "Хочете вставити значення в одне і те ж місце на різних аркушах? Виділіть аркуші: затисніть клавішу %MOD1 і клацніть потрібні вкладки листів перед уведенням значення." #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "Ви можете налаштувати дію для середньої кнопки миші, вибравши варіант зі списку Середня кнопка миші в діалозі Засоби ▸ Параметри ▸ %PRODUCTNAME ▸ Перегляд." #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "Хочете надрукувати дві сторінки з портретною орієнтацією на одній - з альбомною (зменшивши А4 до А5)? Оберіть Файл ▸ Друк та поставте 2 в пункті \"Сторінок на аркуш\"." #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "Задайте текст, який ви часто використовуєте, як Автотекст. Ви зможете вставити свій текст за назвою, сполученням клавіш або за допомогою панелі інструментів у будь-який документ Writer." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 обчислює не зліва направо, а дотримується такого порядку: дужки – степінь – множення – ділення – додавання – віднімання." #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "Отримайте документацію до %PRODUCTNAME і безкоштовні посібники:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "Потрібно презентувати звіт, написаний у Writer? Меню Файл ▸ Надіслати ▸ Структуру в презентацію автоматично створить презентацію зі структури заголовків документа." #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "Хочете керувати поданням гіперпосилань в електронній таблиці? Вставте їх за допомогою функції HYPERLINK." #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "Зніміть позначку з опції «Синхронізувати аркуші» в діалозі «Засоби ▸ Параметри ▸ %PRODUCTNAME Calc ▸ Перегляд ▸ Масштаб», щоб кожен аркуш у Calc мав власний масштаб." #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." msgstr "Можна встановити колір для кожної вкладки аркуша в Calc: клацніть правою кнопкою вкладку або скористайтесь меню «Аркуш ▸ Колір вкладки аркуша»." #. YGUAo -#: cui/inc/tipoftheday.hrc:170 +#: cui/inc/tipoftheday.hrc:169 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 "Відстежите комірки, які використовуються у формулі, що впливає (Shift+F9) або залежить (Shift+F5) (або скористайтесь меню «Засоби ▸ Залежності»)." #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "Вставляйте і нумеруйте ваші формули в один крок: введіть \"fn\", а потім натисніть клавішу F3. Цим ви вставите в документ формулу і її порядковий номер у вигляді однорядкової таблиці без меж." #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "Скористайтесь для керування презентацією Impress пристроєм з Android або iPhone." #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "Хочете дізнатися, скільки днів у поточному місяці? Скористайтеся функцією DAYSINMONTH(TODAY())." #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "Число в комірці таблиці відображається, як ###? Стовпець занадто вузький для відображення всього числа. Просто зроби стовпець ширшим." #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "Увімкніть масивні паралельні обчислення формул у комірках, скориставшись діалогом «Засоби ▸ Параметри ▸ OpenCL»." #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Користуйтесь інструментом З'єднувальна лінія на панелі інструментів Малювання в Draw/Impress, щоб створювати красиві блок-схеми, і, за потреби, вставляти їх у Writer." #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "Ваші пожертви підтримують нашу всесвітню спільноту." #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "Бажаєте додати декілька місяців до дати? Скористайтесь =EDATE(дата;місяці)." #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "Щоб вибрати неперервний діапазон комірок, що містить дані і обмежений символом нового рядка і стовпцями, використовуйте %MOD1 + * (цифрова клавіатура)." #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "Хочете експортувати формули в CSV? Меню «Файл ▸ Зберегти як», виберіть Тип «Текст CSV», позначте прапорцем опцію «Зміна параметрів фільтра» і в наступному діалозі позначте опцію «Зберігати формули комірок»." #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "Консоль доповідача (доступна за наявності двох підключених дисплеїв) - це крута можливість при роботі з %PRODUCTNAME Impress. Ви вже перевірили це?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "Легко перетворіть документ у формат PDF, клацнувши кнопку PDF на панелі інструментів." #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "Бажаєте виділити великий діапазон комірок без прокрутки аркуша? Наберіть адресу діапазону (наприклад, A1:A1000) у полі Область аркуша (зліва від рядка вводу формул) і натисніть Enter." #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "Хочете дізнатися коректні параметри командного рядка? Запустіть у терміналі команду soffice з параметром --help, або -h, або -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Fit your sheet or print ranges to a page with Format ▸ Page ▸ Sheet Tab ▸ Scaling Mode." -msgstr "Помістіть аркуш або діапазони друку на сторінку з допомогою діалогу «Формат ▸ Сторінка ▸ вкладка Аркуш ▸ Масштаб»" +msgstr "Помістіть аркуш або області друку на сторінку з допомогою діалогу «Формат ▸ Сторінка ▸ вкладка Аркуш ▸ Масштаб»" #. AFuSB -#: cui/inc/tipoftheday.hrc:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "Ви можете змінити орієнтацію тексту в комірках таблиці з допомогою «Таблиця ▸ Властивості ▸ Розташування тексту ▸ Напрямок тексту»" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "У %PRODUCTNAME Draw для зміни координат точки 0/0 лінійок, перетягніть перетин двох лінійок з верхнього лівого кута в робочу область." #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "Перемістити стовпчик у Calc між двома іншими однією дією? Клацніть по заголовку, потім комірку у стовпчику, утримуючи кнопку миші і клавішу %MOD2 перетягніть стовпчик." #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "Автоматично позначайте записи алфавітного покажчика, використовуючи файл відповідності." #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "Використовуйте Формат ▸ Вирівнювання (або контекстне меню) для точного позиціювання об'єктів у Draw/Impress: об'єкт розміщується по центру сторінки, якщо обрано лише один об'єкт, або вирівнювання спрацює для групи об'єктів відповідно." #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "Не використовуйте табуляцію для розміщення елементів у документі Writer. Залежно від того, що Ви хочете зробити, таблиця без границь може бути кращим варіантом." #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME може автоматично додавати нумерований підпис до вставленого об'єкта. Дивіться діалог «Засоби ▸ Параметри ▸ %PRODUCTNAME Writer ▸ Автопідпис»." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "З %PRODUCTNAME ви можете використовувати ваш обліковий запис Google Mail для розсилання пошти. Заповніть поля в діалозі «Засоби ▸ Параметри ▸ %PRODUCTNAME Writer ▸ Розсилання електронної пошти»." #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "Бажаєте розпочати роботу з макросами %PRODUCTNAME на BASIC? Перегляньте приклади в розділі «Засоби ▸ Макроси ▸ Змінити макрос»." #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "Застосовуйте стилі типу Заголовок у Writer, використовуючи сполучення клавіш: %MOD1+1 застосує стиль Заголовок 1, %MOD1+2 застосує стиль Заголовок 2 і так далі." #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "Не загубіться у великих документах. Використовуйте Навігатор (F5), щоб бачити увесь вміст." #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "Діалог «Зміни ▸ Знайти і замінити» дозволить Вам вставити спеціальний символ одразу в поле: клацніть по полю правою кнопкою миші або натисніть сполучення клавіш Shift+%MOD1+S." #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "Хочете бачити об'єкт у Draw, але не хочете його друкувати? Намалюйте його на шарі, у якого в налаштуваннях не встановлений параметр „Для друку“." #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "Щоб вставити поточну дату в Ваш документ, використовуйте «Вставка ▸ Поле ▸ Дата»." #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Багато зображень у документі? Прискорте роботу, вимкнувши «Перегляд ▸ Малюнки і діаграми»." #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "Перейменовуйте ваші слайди в Impress для спрощення навігації поміж слайдів." #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "Діалогове вікно „Нумерація розділів“ дозволяє налаштувати текст для показу перед номером розділу. Наприклад, наберіть \"Розділ\" у полі До: для показу «Розділ 1»" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "Потрібно транспонувати таблицю Writer? Скопіюйте і вставте її у Calc. Транспонуйте таблицю в Calc, використовуючи діалог „Вставити як...“. Транспоновану таблицю скопіюйте і вставте назад у Writer, використовуючи діалог «Вставити як ▸ Форматований текст (RTF)»." #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "Ви можете підписувати наявні PDF-файли, а також перевіряти їхні підписи." #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "Часто створюєте документ на основі іншого документа? Скористайтесь шаблонами." #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "Скористайтесь у Calc діалогом «Формат ▸ Умовний ▸ Керування» для пошуку комірок з умовним форматуванням." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "Потрібна однакова розмітка для виведення на екран і для друку? Перевірте опцію «Засоби ▸ Параметри ▸% PRODUCTNAME Calc ▸ Загальне ▸ Використовувати параметри принтера для форматування тексту»." #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer допомагає робити резервні копії: скориставшись меню «Файл ▸ Зберегти копію» ви створите новий документ і продовжите працювати з оригіналом." #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "При створенні стилю на основі іншого стилю можна ввести відсоткове значення або значення в пунктах (наприклад, 110% або -2 пт або +5 пт)." #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "Перетворіть усі документи MS Office у формат OpenDocument за допомогою конвертора з меню «Файл ▸ Помічники ▸ Конвертор документів»." #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "Потрібно перемістити таблицю Writer? Використовуйте меню «Таблиця ▸ Вибрати ▸ Таблицю» і потім «Вставка ▸ Рамка ▸ Рамка ...» і переміщайте, куди потрібно." #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Delete all of your printing areas in one step: select all sheets, then Format ▸ Print Ranges ▸ Clear." -msgstr "Видаліть усі діапазони друку за один крок: виберіть усі аркуші, а потім виберіть пункт меню «Формат ▸ Області друку ▸ Очистити»." +msgstr "Видаліть усі області друку за один крок: виберіть усі аркуші, а потім виберіть пункт меню «Формат ▸ Області друку ▸ Очистити»." #. Cqtjg -#: cui/inc/tipoftheday.hrc:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "Маєте проблеми зі вставкою тексту з файлу PDF чи веб-сторінки в документ? Спробуйте вставити як неформатований текст (%MOD1+%MOD2+Shift+V)." #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "В Calc використовуйте функцію TRIMMEAN() для отримання середнього значення набору даних, за винятком найбільшого і найменшого значень." #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "4-й, необов'язковий параметр функції VLOOKUP у Calc показує, чи впорядкований перший стовпець даних. Якщо ні, введіть БРЕХНЯ або нуль." #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "Бажаєте створити складений документ з поточного документа Writer? «Файл ▸ Надіслати ▸ Створити складений документ» (вкладені документи будуть створені на основі структури поточного документа)." #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "Хочете центрувати комірки на друкованій сторінці в Calc? «Формат ▸ Сторінка ▸ вкладка Сторінка ▸ Вирівнювання таблиці»" #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "Створюйте діаграми на основі таблиць Writer, клацнувши мишею всередині таблиці і вибравши пункт меню «Вставка ▸ Діаграма»." #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "Щоб задати показ символів не для друку, відмітьте галочками опції в розділі „Показати форматування“ у діалозі «Засоби ▸ Параметри ▸ %PRODUCTNAME Writer ▸ Знаки форматування»." #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "Бажаєте перейти на певну сторінку за її номером? Клацніть на запис у лівій частині рядка стану або використайте меню Зміни ▸ Перейти на сторінку... або натисніть %MOD1+G." #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME підтримує більше 150 мов." #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "Бажаєте знайти у документі Writer слова, написані жирним? «Зміни ▸ Знайти і замінити ▸ Інші параметри ▸ Атрибути ▸ Жирність»." #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "Ви можете сортувати абзаци або рядки таблиці в алфавітному або числовому порядку, використовуючи меню «Засоби ▸ Сортувати»." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "Для вставки абзацу перед (після) розділу, натисніть %MOD2+Enter на початку (в кінці) розділу." #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "У %PRODUCTNAME є центр управління шаблонами для створення ідеальних документів – випробуйте його саме зараз!" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "Розрахуйте погашення кредиту з Calc: наприклад, формула PMT(2%/12;36;2500), де 2%/12 - це процентна ставка в рік, 36 - кількість виплат, 2500 - сума позики, дасть щомісячний розмір виплати." #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "Не можете знайти бажане функцією Calc VLOOKUP? З допомогою функцій INDEX та MATCH можливо все!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "Хочете зробити видимим прихований стовпець A? Клацніть на комірці у стовпці В, затисніть ліву кнопку миші, перемістіть мишу вліво, відпустіть кнопку. Потім проявіть його з меню «Формат ▸ Стовпці ▸ Показати»." #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "Щоб змінити номер сторінки у Writer, перейдіть у властивості першого абзацу, на вкладці \"Розташування тексту\" виберіть «Розриви ▸ Вставити» і введіть потрібний номер." #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "Запустіть %PRODUCTNAME у будь-якому браузері через rollApp." #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "Дивний код помилки в Calc, Err: після якого йде число? На цій сторінці знайдете пояснення:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "Крім змісту,%PRODUCTNAME може створювати алфавітні покажчики, списки ілюстрацій, таблиць, об'єктів і бібліографію, задані користувачем." #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "Неможливо змінити або видалити користувацький стиль комірки? Перевірте всі листи, жоден з них не повинен бути захищений." #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "Хочете знати, чи є згадка про комірку у формулах інших комірок? «Засоби ▸ Залежності ▸ Залежні комірки» (Shift+F5)." #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "Хочете продублювати рядок над курсором? Натисніть %MOD1+D або використайте меню «Аркуш ▸ Заповнити комірки ▸ Заповнити вниз»." #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Для пошуку на кількох аркушах спершу виділіть їх." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "Перетягування комірок з Calc на слайд презентації Impress в режимі Звичайний - створить таблицю, в режимі Структура - кожна комірка створить рядок у структурі." #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME допоможе Вам не вводити два чи більше пробілів підряд у Writer. Поставте галочку в діалозі «Засоби ▸ Автозаміна ▸ Параметри автозаміни ▸ Параметри ▸ Нехтувати подвійні пропуски»" #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "Хочете, щоб курсор в Calc переміщався вправо від комірки після введення значення? Використайте клавішу Tab замість Enter." #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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 "Щоб у Calc розмістити полосу прокрутки зліва, активуйте опцію \"Складні системи писемності\" в діалоговому вікні «Засоби ▸ Параметри ▸ Параметри мови ▸ Мови», потім виберіть пункт меню «Аркуш ▸ Справа наліво»." #. gqs9W -#: cui/inc/tipoftheday.hrc:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "Нові версії %PRODUCTNAME містять нові функції, виправлення помилок та вразливостей. Оновлюйте програмне забезпечення!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "Розробляєте нові фільтри XSLT та XML?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "Натисніть Shift + F1, щоб побачити будь-які доступні розширені підказки в діалогових вікнах, якщо в меню «Засоби ▸ Параметри ▸ %PRODUCTNAME ▸ Загальне» докладні підказки не активовані." #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "Довідка %PRODUCTNAME" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "Більше інформації" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "Виконати цю дію зараз..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "Порада дня: %CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -9344,7 +9338,7 @@ #: cui/uiconfig/ui/galleryfilespage.ui:117 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 "Перелічуються доступні файли. Виберіть файли, які слід додати, а потім натисніть кнопку Додати. Щоб додати всі файли зі списку, натисніть кнопку Додати всі." +msgstr "Перелічуються доступні файли. Виберіть файли, які слід додати, а потім натисніть кнопку «Додати». Щоб додати всі файли зі списку, натисніть кнопку «Додати всі»." #. UnmAz #: cui/uiconfig/ui/galleryfilespage.ui:148 @@ -20255,7 +20249,7 @@ #: cui/uiconfig/ui/textanimtabpage.ui:275 msgctxt "textanimtabpage|TSB_START_INSIDE" msgid "S_tart inside" -msgstr "_Розпочати з середини" +msgstr "_Запуск всередині" #. WeZT4 #: cui/uiconfig/ui/textanimtabpage.ui:285 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/filter/messages.po libreoffice-7.1.3~rc2/translations/source/uk/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-12-01 11:51+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562230682.000000\n" #. 5AQgJ @@ -309,7 +309,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:57 msgctxt "pdfgeneralpage|extended_tip|all" msgid "Exports all defined print ranges. If no print range is defined, exports the entire document." -msgstr "Експорт усіх призначених діапазонів друку. Якщо таких нема, то експорт усього документа." +msgstr "Експорт усіх призначених областей друку. Якщо таких нема, то експорт усього документа." #. NXztB #: filter/uiconfig/ui/pdfgeneralpage.ui:69 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/schart/01.po libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/schart/01.po --- libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/schart/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/schart/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-11-06 12:35+0000\n" +"PO-Revision-Date: 2021-04-06 06:37+0000\n" "Last-Translator: Olexandr Pylypchuk \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.1.1\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560361726.000000\n" #. DsZFP @@ -1652,7 +1652,7 @@ "par_id8962065\n" "help.text" msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R2, even if they are not shown: click on the trend line to see the information in the status bar." -msgstr "Якщо діаграма знаходиться в режимі редагування, то у %PRODUCTNAME відображається рівняння лінії тренду і коефіцієнту визначення R2, навіть якщо вони не відобразилися: клацніть на лінії тренду, щоб побачити цю інформацію в рядку стану." +msgstr "Якщо діаграма перебуває в режимі редагування, то у %PRODUCTNAME надає рівняння лінії тренду і коефіцієнту визначення R2, навіть якщо їх не показано: клацніть на лінії тренду, щоб побачити цю інформацію в рядку стану." #. xHGhE #: 04050100.xhp @@ -1706,7 +1706,7 @@ "hd_id180820161534333509\n" "help.text" msgid "Trend Lines Curve Types" -msgstr "Типи Кривої Лінії Тренду" +msgstr "Типи кривої ліній тренду" #. AB9tE #: 04050100.xhp @@ -5594,7 +5594,7 @@ "par_id3640247\n" "help.text" msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas." -msgstr "\"З накопиченням\" - в цьому підтипі значення розташовані одне над іншим. Це забезпечує відображення всіх значень, тобто набір даних не буде закрито іншими наборами даних. Однак значення Y більше не є абсолютними значеннями, крім останнього стовпця, який знаходиться в нижній частині областей з накопиченням." +msgstr "\"З накопиченням\" - у цьому підтипі значення розташовані одне над іншим. Це забезпечує відображення всіх значень, тобто набір даних не буде закрито іншими наборами даних. Однак значення Y більше не є абсолютними значеннями, крім останнього стовпця, розташованого в нижній частині областей з накопиченням." #. CAP7s #: type_area.xhp @@ -6278,7 +6278,7 @@ "par_id2655720\n" "help.text" msgid "Mark Stack series to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select Percent, the y values are scaled as percentage of the category total." -msgstr "Параметр Ряди з накопиченням використовується для розміщення сукупних значень точок Y одна над одною. Значення Y більше не є абсолютними значеннями, крім першого стовпчика, який знаходиться в нижній частині точок з накопиченням. При виборі параметра Відсоток значення Y масштабуються у вигляді відсотка від загального числа категорій." +msgstr "Параметр Ряди з накопиченням використовується для розміщення сукупних значень точок Y одна над одною. Значення Y більше не є абсолютними значеннями, крім першого стовпця, розташованого внизу. При виборі параметра Відсоток значення Y масштабуються як відсотки від суми категорії." #. mwECA #: type_line.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2020-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-08 23:36+0000\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" +"PO-Revision-Date: 2021-04-17 04:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "шрифти, що блимають мерехтіння шрифту" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Блимання" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "Змушує вибрані символи блимати. Частоту блимання змінювати неможливо." - #. B3MEb #: 05020200.xhp msgctxt "" @@ -30614,7 +30587,7 @@ "hd_id3153114\n" "help.text" msgid "To the Left" -msgstr "" +msgstr "Вліво" #. AnRg8 #: 05320000.xhp @@ -30623,7 +30596,7 @@ "par_id3152867\n" "help.text" msgid "Scrolls text from right to left." -msgstr "" +msgstr "Промотує текст справа наліво." #. NCSAV #: 05320000.xhp @@ -30650,7 +30623,7 @@ "hd_id3147010\n" "help.text" msgid "To the Right" -msgstr "" +msgstr "Вправо" #. D6Jhw #: 05320000.xhp @@ -30659,7 +30632,7 @@ "par_id3143267\n" "help.text" msgid "Scrolls text from left to right." -msgstr "" +msgstr "Промотує текст зліва направо." #. CLFAv #: 05320000.xhp @@ -30686,7 +30659,7 @@ "hd_id3155323\n" "help.text" msgid "To the Top" -msgstr "" +msgstr "Вверх" #. 4dVsE #: 05320000.xhp @@ -30695,7 +30668,7 @@ "par_id3145416\n" "help.text" msgid "Scrolls text from bottom to top." -msgstr "" +msgstr "Промотує текст знизу вверх." #. aE6yV #: 05320000.xhp @@ -30722,7 +30695,7 @@ "hd_id3153717\n" "help.text" msgid "To the Bottom" -msgstr "" +msgstr "Вниз" #. PCbAr #: 05320000.xhp @@ -30731,7 +30704,7 @@ "par_id3155388\n" "help.text" msgid "Scrolls text from top to bottom." -msgstr "" +msgstr "Промотує текст зверху вниз." #. TGcQ5 #: 05320000.xhp @@ -30767,7 +30740,7 @@ "hd_id3156434\n" "help.text" msgid "Start Inside" -msgstr "" +msgstr "Запуск всередині" #. jUaCs #: 05320000.xhp @@ -30776,7 +30749,7 @@ "par_id3150866\n" "help.text" msgid "Text is visible and inside the drawing object when the effect is applied." -msgstr "" +msgstr "Коли цей ефект застосовано, текст видимий і знаходиться всередині нарисованого об'єкта." #. XYkTz #: 05320000.xhp @@ -30785,7 +30758,7 @@ "hd_id3150359\n" "help.text" msgid "Text visible when exiting" -msgstr "" +msgstr "Текст видимий при виході" #. 7MyjD #: 05320000.xhp @@ -30794,7 +30767,7 @@ "par_id3154938\n" "help.text" msgid "Text remains visible after the effect is applied." -msgstr "" +msgstr "Текст залишається видимим після застосування ефекту." #. 95kqY #: 05320000.xhp @@ -30803,7 +30776,7 @@ "hd_id3155738\n" "help.text" msgid "Animation effects" -msgstr "" +msgstr "Цикли анімації" #. sFDa7 #: 05320000.xhp @@ -30812,7 +30785,7 @@ "par_id3149291\n" "help.text" msgid "Set the looping options for the animation effect." -msgstr "" +msgstr "Встановлює параметри повтору для ефекту анімації." #. yLSxE #: 05320000.xhp @@ -49064,7 +49037,7 @@ "hd_id2188787\n" "help.text" msgid "Changes" -msgstr "" +msgstr "Зміни" #. huf8W #: ref_pdf_export_security.xhp @@ -49073,7 +49046,7 @@ "hd_id5833307\n" "help.text" msgid "Not permitted" -msgstr "" +msgstr "Не дозволено" #. DK4FY #: ref_pdf_export_security.xhp @@ -49082,7 +49055,7 @@ "par_id7726676\n" "help.text" msgid "No changes of the content are permitted." -msgstr "" +msgstr "Вносити зміни у вміст не дозволено." #. ZzgJG #: ref_pdf_export_security.xhp @@ -49091,7 +49064,7 @@ "hd_id3729361\n" "help.text" msgid "Inserting, deleting, and rotating pages" -msgstr "" +msgstr "Вставлення, видалення та обертання сторінок" #. ECsAs #: ref_pdf_export_security.xhp @@ -49100,7 +49073,7 @@ "par_id9573961\n" "help.text" msgid "Only inserting, deleting, and rotating pages is permitted." -msgstr "" +msgstr "Дозволені лише вставка, видалення та обертання сторінок." #. BBKXs #: ref_pdf_export_security.xhp @@ -49109,7 +49082,7 @@ "hd_id7700430\n" "help.text" msgid "Filling in form fields" -msgstr "" +msgstr "Заповнення полів форми" #. VEprE #: ref_pdf_export_security.xhp @@ -49118,7 +49091,7 @@ "par_id1180455\n" "help.text" msgid "Only filling in form fields is permitted." -msgstr "" +msgstr "Допускається лише заповнення полів форми." #. uNYzx #: ref_pdf_export_security.xhp @@ -49127,7 +49100,7 @@ "hd_id3405560\n" "help.text" msgid "Commenting, filling in form fields" -msgstr "" +msgstr "Коментування, заповнення полів форми" #. XuQVH #: ref_pdf_export_security.xhp @@ -49136,7 +49109,7 @@ "par_id3409527\n" "help.text" msgid "Only commenting and filling in form fields is permitted." -msgstr "" +msgstr "Дозволено лише коментування та заповнення полів форми." #. jEsBj #: ref_pdf_export_security.xhp @@ -49145,7 +49118,7 @@ "hd_id7112338\n" "help.text" msgid "Any except extracting pages" -msgstr "" +msgstr "Будь-що, крім вилучення сторінок" #. mZe6m #: ref_pdf_export_security.xhp @@ -49154,7 +49127,7 @@ "par_id2855616\n" "help.text" msgid "All changes are permitted, except extracting pages." -msgstr "" +msgstr "Усі зміни дозволені, крім вилучення сторінок." #. JHbUu #: ref_pdf_export_security.xhp @@ -49163,7 +49136,7 @@ "hd_id841574111651138\n" "help.text" msgid "Contents" -msgstr "" +msgstr "Вміст" #. xUSS6 #: ref_pdf_export_security.xhp @@ -49172,7 +49145,7 @@ "hd_id2091433\n" "help.text" msgid "Enable copying of content" -msgstr "" +msgstr "Активувати копіювання вмісту" #. F9N4b #: ref_pdf_export_security.xhp @@ -49181,7 +49154,7 @@ "par_id5092318\n" "help.text" msgid "Select to enable copying of content to the clipboard." -msgstr "" +msgstr "Позначте, щоб увімкнути копіювання вмісту в буфер обміну." #. YN4vV #: ref_pdf_export_security.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/shared/optionen.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-14 15:33+0100\n" -"PO-Revision-Date: 2021-03-07 20:36+0000\n" +"PO-Revision-Date: 2021-04-20 19:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -10220,7 +10220,7 @@ "bm_id3149399\n" "help.text" msgid "references; iterative (Calc) calculating;iterative references (Calc) iterative references in spreadsheets recursions in spreadsheets dates; default (Calc) dates; start 1900/01/01 (Calc) dates; start 1904/01/01 (Calc) case sensitivity;comparing cell contents (Calc) decimal places displayed (Calc) precision as shown (Calc) values; rounded as shown (Calc) rounding precision (Calc) search criteria for database functions in cells Excel; search criteria" -msgstr "" +msgstr "посилання; циклічні (Calc) розрахунок;циклічні посилання (Calc) циклічні посилання в електронних таблицях рекурсії в електронних таблицях дати; типові (Calc) дати; початок 1900/01/01 (Calc) дати; початок 1904/01/01 (Calc) врахування регістру;порівняння вмісту комірок (Calc) відображення десяткових розрядів(Calc) точність як на екрані (Calc) значення; округлення як на екрані (Calc) точність округлення (Calc) критерії пошуку для функцій баз даних у комірках Excel; критерії пошуку" #. CUWxB #: 01060500.xhp @@ -10319,7 +10319,7 @@ "par_id3154760\n" "help.text" msgid "Switch on the iterations to correctly calculate the formulas, otherwise a 'Circular reference' error message appears in the Status Bar." -msgstr "" +msgstr "Увімкніть ітерації для правильного розрахунку формул, інакше в рядку Стану з'явиться повідомлення \"Помилка: циклічне посилання\"." #. GykKF #: 01060500.xhp @@ -10328,7 +10328,7 @@ "par_id3154365\n" "help.text" msgid "A" -msgstr "" +msgstr "A" #. J4nN3 #: 01060500.xhp @@ -10337,7 +10337,7 @@ "par_id3145606\n" "help.text" msgid "B" -msgstr "" +msgstr "Б" #. ygByF #: 01060500.xhp @@ -10346,7 +10346,7 @@ "par_id3149202\n" "help.text" msgid "5" -msgstr "" +msgstr "5" #. 6z38X #: 01060500.xhp @@ -10355,7 +10355,7 @@ "par_id3151041\n" "help.text" msgid "Selling Price" -msgstr "" +msgstr "Ціна продажу" #. ZaFFo #: 01060500.xhp @@ -10364,7 +10364,7 @@ "par_id3159149\n" "help.text" msgid "100" -msgstr "" +msgstr "100" #. TGxF8 #: 01060500.xhp @@ -10373,7 +10373,7 @@ "par_id3159254\n" "help.text" msgid "6" -msgstr "" +msgstr "6" #. MZAGg #: 01060500.xhp @@ -10382,7 +10382,7 @@ "par_id3147317\n" "help.text" msgid "Net" -msgstr "" +msgstr "Чиста" #. TeJB8 #: 01060500.xhp @@ -10391,7 +10391,7 @@ "par_id3147348\n" "help.text" msgid "=B5-B7" -msgstr "" +msgstr "=B5-B7" #. xAexy #: 01060500.xhp @@ -10400,7 +10400,7 @@ "par_id3154918\n" "help.text" msgid "7" -msgstr "" +msgstr "7" #. aLbs4 #: 01060500.xhp @@ -10409,7 +10409,7 @@ "par_id3153573\n" "help.text" msgid "Tax" -msgstr "" +msgstr "Податок" #. 7ZEHi #: 01060500.xhp @@ -10418,7 +10418,7 @@ "par_id3154319\n" "help.text" msgid "=B6*0.15" -msgstr "" +msgstr "=B6*0.15" #. k6GMF #: 01060500.xhp @@ -10427,7 +10427,7 @@ "hd_id3145750\n" "help.text" msgid "Steps" -msgstr "" +msgstr "Кроки" #. ioE9i #: 01060500.xhp @@ -10436,7 +10436,7 @@ "par_id3152576\n" "help.text" msgid "Sets the maximum number of iteration steps." -msgstr "" +msgstr "Встановлює максимальну кількість кроків ітерації." #. 6X8Ae #: 01060500.xhp @@ -10445,7 +10445,7 @@ "hd_id3153728\n" "help.text" msgid "Minimum Change" -msgstr "" +msgstr "Мінімальна зміна" #. PtqGQ #: 01060500.xhp @@ -10454,7 +10454,7 @@ "par_id3153139\n" "help.text" msgid "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop." -msgstr "" +msgstr "Вказує різницю між двома послідовними результатами кроків ітерації. Якщо результат кроку ітерації нижчий за значення мінімальної зміни, ітерація зупиниться." #. WVcLB #: 01060500.xhp @@ -10589,7 +10589,7 @@ "par_id3150644\n" "help.text" msgid "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number." -msgstr "" +msgstr "Вказує, чи варто під час обчислень використовувати округлі значення, що відображаються на аркуші. Діаграми будуть показані з відображеними значеннями. Якщо параметр Точність, як на екрані не позначений, відображувані числа округлюються, але при внутрішніх обчисленнях використовуються не округлені значення." #. AqDaL #: 01060500.xhp @@ -10859,7 +10859,7 @@ "hd_id315634199\n" "help.text" msgid "Limit decimals for general number format" -msgstr "" +msgstr "Обмежити кількість десяткових знаків для загального числового формату" #. EheA2 #: 01060500.xhp @@ -10868,7 +10868,7 @@ "par_id315343818\n" "help.text" msgid "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows." -msgstr "" +msgstr "Ви можете вказати максимальну кількість десяткових знаків, які відображаються за замовчуванням, для комірок із загальним числовим форматом. Якщо параметр не активовано, комірки із загальним числовим форматом відображають стільки десяткових знаків, скільки дозволяє ширина стовпця." #. tf3Dw #: 01060500.xhp @@ -10877,7 +10877,7 @@ "hd_id3145231\n" "help.text" msgid "Decimal places" -msgstr "" +msgstr "Кількість десяткових знаків" #. 7DTNC #: 01060500.xhp @@ -10886,7 +10886,7 @@ "par_id3149568\n" "help.text" msgid "Defines the number of decimals to be displayed for numbers with the General number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers." -msgstr "" +msgstr "Визначає кількість десяткових знаків, що відображатимуться для чисел із Загальним числовим форматом. Числа відображаються округленими, але не зберігаються такими." #. Mn4xC #: 01060600.xhp @@ -10895,7 +10895,7 @@ "tit\n" "help.text" msgid "Changes" -msgstr "" +msgstr "Зміни" #. N8N4j #: 01060600.xhp @@ -10913,7 +10913,7 @@ "par_id3155390\n" "help.text" msgid "The Changes dialog specifies various options for highlighting recorded changes in documents." -msgstr "" +msgstr "Діалогове вікно Зміни визначає різні параметри виділення записаних змін у документах." #. 3CJuy #: 01060600.xhp @@ -10922,7 +10922,7 @@ "par_id3156343\n" "help.text" msgid "To record changes to your work, choose Edit - Track Changes - Record." -msgstr "" +msgstr "Щоб записати зміни у своїй роботі, виберіть Зміни - Відстеження змін - Запис." #. 5VaNX #: 01060600.xhp @@ -10931,7 +10931,7 @@ "hd_id3152812\n" "help.text" msgid "Color Definition for Changes" -msgstr "" +msgstr "Колір для виправлень" #. MGAF3 #: 01060600.xhp @@ -10940,7 +10940,7 @@ "par_id3150792\n" "help.text" msgid "Defines colors for recorded changes. If you select the \"By author\" entry, $[officename] will automatically set the color depending on the author who undertook the changes." -msgstr "" +msgstr "Тут задають колір для відстежуваних виправлень. Якщо вибрати елемент \"За автором\", $[officename] автоматично призначатиме колір залежно від автора кожної зміни." #. WA3Q2 #: 01060600.xhp @@ -10949,7 +10949,7 @@ "hd_id3150400\n" "help.text" msgid "Changes" -msgstr "" +msgstr "Зміни" #. QCb6A #: 01060600.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/smath/01.po libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/smath/01.po --- libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/smath/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/smath/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-10-24 15:35+0000\n" +"PO-Revision-Date: 2021-04-27 16:37+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1551368309.000000\n" #. QmNGE @@ -2426,7 +2426,7 @@ "par_idN10081\n" "help.text" msgid "Natural Exponential Icon" -msgstr "" +msgstr "Піктограма Звичайна експоненційна" #. HBgfc #: 03090400.xhp @@ -2453,7 +2453,7 @@ "par_idN100BC\n" "help.text" msgid "Natural Logarithm Icon" -msgstr "" +msgstr "Піктограма Натуральний логарифм" #. 7g3BJ #: 03090400.xhp @@ -2480,7 +2480,7 @@ "par_idN100F7\n" "help.text" msgid "Exponential Icon" -msgstr "" +msgstr "Піктограма Експоненційної функції" #. ipXvm #: 03090400.xhp @@ -2507,7 +2507,7 @@ "par_idN10132\n" "help.text" msgid "Logarithm Icon" -msgstr "" +msgstr "Піктограма Логарифм" #. LX2Ke #: 03090400.xhp @@ -2534,7 +2534,7 @@ "par_id3149483\n" "help.text" msgid "Power Icon" -msgstr "" +msgstr "Піктограма Степінь" #. XKMzK #: 03090400.xhp @@ -2561,7 +2561,7 @@ "par_idN101B1\n" "help.text" msgid "Sine Icon" -msgstr "" +msgstr "Піктограма Синус" #. FeedP #: 03090400.xhp @@ -2588,7 +2588,7 @@ "par_idN101EA\n" "help.text" msgid "Cosine Icon" -msgstr "" +msgstr "Піктограма Косинус" #. LRNwp #: 03090400.xhp @@ -2615,7 +2615,7 @@ "par_idN10223\n" "help.text" msgid "Tangent Icon" -msgstr "" +msgstr "Піктограма тангенс " #. nBpjo #: 03090400.xhp @@ -2642,7 +2642,7 @@ "par_idN1025C\n" "help.text" msgid "Cotangent Icon" -msgstr "" +msgstr "Піктограма Котангенс" #. DsEAG #: 03090400.xhp @@ -2669,7 +2669,7 @@ "par_idN10295\n" "help.text" msgid "Hyperbolic Sine Icon" -msgstr "" +msgstr "Піктограма Гіперболічний синус" #. pW3gq #: 03090400.xhp @@ -2696,7 +2696,7 @@ "par_idN102CE\n" "help.text" msgid "Square Root Icon" -msgstr "" +msgstr "Піктограма Квадратний корінь" #. JpriW #: 03090400.xhp @@ -2723,7 +2723,7 @@ "par_idN10309\n" "help.text" msgid "Hyperbolic Cosine Icon" -msgstr "" +msgstr "Піктограма Гіперболічний косинус" #. aRuFQ #: 03090400.xhp @@ -2750,7 +2750,7 @@ "par_idN10342\n" "help.text" msgid "Hyperbolic Tangent Icon" -msgstr "" +msgstr "Піктограма Гіперболічний тангенс" #. Qy9Es #: 03090400.xhp @@ -2777,7 +2777,7 @@ "par_idN1037C\n" "help.text" msgid "Hyperbolic Cotangent Icon" -msgstr "" +msgstr "Піктограма Гіперболічний котангенс" #. fiHbq #: 03090400.xhp @@ -2804,7 +2804,7 @@ "par_idN103B5\n" "help.text" msgid "nth Root Icon" -msgstr "" +msgstr "Піктограма Корінь n-го степеня" #. o7MGD #: 03090400.xhp @@ -2831,7 +2831,7 @@ "par_idN103EE\n" "help.text" msgid "Arc Sine Icon" -msgstr "" +msgstr "Піктограма Арксинус" #. obD2E #: 03090400.xhp @@ -2858,7 +2858,7 @@ "par_idN10427\n" "help.text" msgid "Arc Cosine Icon" -msgstr "" +msgstr "Піктограма Арккосинус" #. EWWTb #: 03090400.xhp @@ -2885,7 +2885,7 @@ "par_idN10460\n" "help.text" msgid "Arc Tangent Icon" -msgstr "" +msgstr "Піктограма Арктангенс" #. nj4au #: 03090400.xhp @@ -2912,7 +2912,7 @@ "par_idN10493\n" "help.text" msgid "Arc Cotangent Icon" -msgstr "" +msgstr "Піктограма Арккотангенс" #. 3EDX2 #: 03090400.xhp @@ -2939,7 +2939,7 @@ "par_idN104CC\n" "help.text" msgid "Absolute Value Icon" -msgstr "" +msgstr "Піктограма Модуль" #. CBa6U #: 03090400.xhp @@ -2966,7 +2966,7 @@ "par_idN10507\n" "help.text" msgid "Area Hyperbolic Sine Icon" -msgstr "" +msgstr "Піктограма Гіперболічний арксинус" #. RZeD9 #: 03090400.xhp @@ -2993,7 +2993,7 @@ "par_idN1053A\n" "help.text" msgid "Area Hyperbolic Cosine Icon" -msgstr "" +msgstr "Піктограма Гіперболічний арккосинус" #. GCRqn #: 03090400.xhp @@ -3020,7 +3020,7 @@ "par_idN10573\n" "help.text" msgid "Area Hyperbolic Tangent Icon" -msgstr "" +msgstr "Піктограма Гіперболічний арктангенс" #. xTiN8 #: 03090400.xhp @@ -3047,7 +3047,7 @@ "par_idN105AC\n" "help.text" msgid "Area Hyperbolic Cotangent Icon" -msgstr "" +msgstr "Піктограма Гіперболічний арккотангенс" #. VE7SB #: 03090400.xhp @@ -3074,7 +3074,7 @@ "par_idN105E5\n" "help.text" msgid "Factorial Icon" -msgstr "" +msgstr "Піктограма Факторіал" #. ACkUz #: 03090400.xhp @@ -3173,7 +3173,7 @@ "par_idN10084\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. aLk7N #: 03090500.xhp @@ -3200,7 +3200,7 @@ "par_idN100BF\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. MVphJ #: 03090500.xhp @@ -3227,7 +3227,7 @@ "par_idN100F8\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. UcoeP #: 03090500.xhp @@ -3254,7 +3254,7 @@ "par_idN10131\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. 57jhB #: 03090500.xhp @@ -3281,7 +3281,7 @@ "par_idN1016C\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. nzF9h #: 03090500.xhp @@ -3308,7 +3308,7 @@ "par_idN101A5\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. P4AEV #: 03090500.xhp @@ -3335,7 +3335,7 @@ "par_idN101DE\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. odKaL #: 03090500.xhp @@ -3362,7 +3362,7 @@ "par_idN10217\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. SoGCr #: 03090500.xhp @@ -3389,7 +3389,7 @@ "par_idN10253\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. BqAqN #: 03090500.xhp @@ -3416,7 +3416,7 @@ "par_idN1028E\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. ochKP #: 03090500.xhp @@ -3443,7 +3443,7 @@ "par_idN102CC\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. AuYFG #: 03090500.xhp @@ -3470,7 +3470,7 @@ "par_idN10307\n" "help.text" msgid "Icon" -msgstr "" +msgstr "Піктограма" #. t9EKx #: 03090500.xhp @@ -3497,7 +3497,7 @@ "par_idN10342\n" "help.text" msgid "Braces (scalable) Icon" -msgstr "" +msgstr "Піктограма Фігурні дужки(змінної висоти)" #. BdcD4 #: 03090500.xhp @@ -3524,7 +3524,7 @@ "par_idN1037E\n" "help.text" msgid "Single vertical bars (scalable) Icon" -msgstr "" +msgstr "Піктограма Одинарні вертикальні риски (змінної висоти)" #. 5tjEk #: 03090500.xhp @@ -3551,7 +3551,7 @@ "par_idN103B7\n" "help.text" msgid "Double vertical bars (scalable) Icon" -msgstr "" +msgstr "Піктограма Подвійні вертикальні риски (змінної висоти)" #. ZADAD #: 03090500.xhp @@ -3578,7 +3578,7 @@ "par_idN103F0\n" "help.text" msgid "Angle brackets (scalable) Icon" -msgstr "" +msgstr "Піктограма Кутасті дужки (змінної висоти)" #. 4VDU7 #: 03090500.xhp @@ -3605,7 +3605,7 @@ "par_idN10429\n" "help.text" msgid "Operator brackets (scalable) Icon" -msgstr "" +msgstr "Піктограма Операторні дужки (змінної висоти)" #. upS7Q #: 03090500.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po --- libreoffice-7.1.2~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/helpcontent2/source/text/swriter/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-21 13:37+0000\n" +"PO-Revision-Date: 2021-03-30 05:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -7034,7 +7034,7 @@ "par_id3154580\n" "help.text" msgid "Enter outline level of the chapter to be displayed. The inserted field will display the value taken from last paragraph with the specified outline level placed before the inserted field." -msgstr "" +msgstr "Введіть рівень структури розділу для відображення. Вставлене поле відображатиме значення, взяте з останнього абзацу, із зазначеним рівнем структури, розміщеним перед вставленим полем." #. GtaP3 #: 04090001.xhp @@ -16097,7 +16097,7 @@ "par_id3153536\n" "help.text" msgid "To change the numbering options for paragraphs that use the same paragraph style, choose View - Styles, and then click the Paragraph Styles icon. Right-click the style in the list, choose Modify, and then click the Outline & Numbering tab." -msgstr "" +msgstr "Щоб змінити параметри нумерації абзаців, які використовують однаковий стиль абзацу, виберіть Перегляд - Стилі і натисніть на піктограмі Стилі абзаців. Клацніть правою кнопкою миші на стилі у списку, виберіть Змінити, і перейдіть на вкладку Структура та нумерація." #. F7xsK #: 05030800.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-02-27 15:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566240534.000000\n" #. W5ukN @@ -1604,7 +1604,7 @@ "TooltipLabel\n" "value.text" msgid "Clear Print Ranges" -msgstr "Спорожнити діапазони друку" +msgstr "Спорожнити області друку" #. PFJ6t #: CalcCommands.xcu @@ -1634,7 +1634,7 @@ "TooltipLabel\n" "value.text" msgid "Edit Print Ranges" -msgstr "Зміна діапазону друку" +msgstr "Зміна областей друку" #. t8Rwk #: CalcCommands.xcu @@ -1664,7 +1664,7 @@ "TooltipLabel\n" "value.text" msgid "Add Print Range" -msgstr "Додати діапазон друку" +msgstr "Додати область друку" #. qwxGD #: CalcCommands.xcu @@ -28326,7 +28326,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "Інспектор стилів" +msgstr "Огляд стилів" #. GEHrf #: Sidebar.xcu @@ -28476,7 +28476,7 @@ "Title\n" "value.text" msgid "Style Inspector" -msgstr "Інспектор стилів" +msgstr "Огляд стилів" #. aCGNS #: Sidebar.xcu @@ -35226,7 +35226,7 @@ "Label\n" "value.text" msgid "Inspector Deck" -msgstr "Платформа інспектора" +msgstr "Панель огляду" #. joS9f #: WriterFormWindowState.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2020-12-16 10:55+0000\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" "Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560071179.000000\n" #. HhMVS @@ -1514,7 +1514,7 @@ "STR_INFO_2\n" "value.text" msgid "The Presentation Minimizer has successfully updated the presentation '%TITLE'. The file size has changed from %OLDFILESIZE MB to approximated %NEWFILESIZE MB." -msgstr "Оптимізатор презентації успішно оновив презентацію '%TITLE'. Розмір файлу вже змінено із %OLDFILESIZE Мб до приблизно %NEWFILESIZE Мб." +msgstr "Оптимізатор презентації успішно оновив презентацію '%TITLE'. Розмір файлу вже змінено із %OLDFILESIZE Мб до приблизно %NEWFILESIZE Мб." #. Kz34E #: PresentationMinimizer.xcu @@ -1524,7 +1524,7 @@ "STR_INFO_3\n" "value.text" msgid "The Presentation Minimizer has successfully updated the presentation '%TITLE'. The file size has changed to %NEWFILESIZE MB." -msgstr "Оптимізатор презентації успішно оновив презентацію '%TITLE'. Розмір файлу змінено до %NEWFILESIZE Мб." +msgstr "Оптимізатор презентації успішно оновив презентацію '%TITLE'. Розмір файлу змінено до %NEWFILESIZE Мб." #. zcPbA #: PresentationMinimizer.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/sc/messages.po libreoffice-7.1.3~rc2/translations/source/uk/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-22 17:37+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -3001,7 +3001,7 @@ #: sc/inc/globstr.hrc:511 msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE" msgid "Print Range Empty" -msgstr "Діапазон друку порожній" +msgstr "Область друку порожня" #. 3GHaw #: sc/inc/globstr.hrc:512 @@ -14560,7 +14560,7 @@ #: sc/inc/scfuncs.hrc:3560 msgctxt "SC_OPCODE_CLEAN" msgid "Removes all nonprintable characters from text." -msgstr "Вилучає з тексту всі недруковані символи." +msgstr "Вилучає з тексту всі недруковані символи." #. hAtdo #: sc/inc/scfuncs.hrc:3561 @@ -24244,13 +24244,13 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:177 msgctxt "multipleoperationsdialog|extended_tip|row" msgid "Enter the input cell reference that you want to use as a variable for the rows in the data table." -msgstr "" +msgstr "Введіть посилання на комірку вводу, яку хочете використовувати як змінну для рядків у таблиці даних." #. E5T7X #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:196 msgctxt "multipleoperationsdialog|extended_tip|col" msgid "Enter the input cell reference that you want to use as a variable for the columns in the data table." -msgstr "" +msgstr "Введіть посилання на комірку вводу, яку Ви хочете використовувати як змінну для стовпців у таблиці даних." #. uQeAG #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:212 @@ -24280,7 +24280,7 @@ #: sc/uiconfig/scalc/ui/multipleoperationsdialog.ui:286 msgctxt "multipleoperationsdialog|extended_tip|MultipleOperationsDialog" msgid "Applies the same formula to different cells, but with different parameter values." -msgstr "" +msgstr "Застосовує до різних комірок однакову формулу, але з різними значеннями параметрів." #. jbFci #: sc/uiconfig/scalc/ui/namerangesdialog.ui:16 @@ -24304,7 +24304,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:137 msgctxt "namerangesdialog|extended_tip|edassign" msgid "Displays the cell reference of each label range." -msgstr "" +msgstr "Тут (буде) показано посилання на комірки для кожного діапазону підписів." #. JXXhm #: sc/uiconfig/scalc/ui/namerangesdialog.ui:156 @@ -24322,7 +24322,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:191 msgctxt "namerangesdialog|extended_tip|colhead" msgid "Includes column labels in the current label range." -msgstr "" +msgstr "Виберіть цей параметр, щоб включити підписи стовпців у поточний діапазон підписів." #. WDLCJ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:202 @@ -24334,7 +24334,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:213 msgctxt "namerangesdialog|extended_tip|rowhead" msgid "Includes row labels in the current label range." -msgstr "" +msgstr "Виберіть цей параметр, щоб включити підписи рядків у поточний діапазон підписів." #. CaLyt #: sc/uiconfig/scalc/ui/namerangesdialog.ui:232 @@ -24346,7 +24346,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:258 msgctxt "namerangesdialog|extended_tip|edassign2" msgid "Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse." -msgstr "" +msgstr "Тут задають область даних, для якої діє виділений діапазон підписів. Щоб змінити її, клацніть на аркуші і виділіть мишкою іншу область." #. PvBUo #: sc/uiconfig/scalc/ui/namerangesdialog.ui:277 @@ -24358,7 +24358,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:308 msgctxt "namerangesdialog|extended_tip|add" msgid "Adds the current label range to the list." -msgstr "" +msgstr "Додає до списку поточний діапазон підписів." #. ozH98 #: sc/uiconfig/scalc/ui/namerangesdialog.ui:327 @@ -24370,7 +24370,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:379 msgctxt "namerangesdialog|extended_tip|range" msgid "Displays the cell reference of each label range." -msgstr "" +msgstr "Відображає посилання на комірки для кожного діапазону підписів." #. AFqD5 #: sc/uiconfig/scalc/ui/namerangesdialog.ui:398 @@ -24382,7 +24382,7 @@ #: sc/uiconfig/scalc/ui/namerangesdialog.ui:423 msgctxt "namerangesdialog|extended_tip|NameRangesDialog" msgid "Opens a dialog in which you can define a label range." -msgstr "" +msgstr "Відкриває діалогове вікно, в якому можна призначити діапазон підписів." #. ba8wC #: sc/uiconfig/scalc/ui/navigatorpanel.ui:22 @@ -25218,13 +25218,13 @@ #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2653 msgctxt "notebookbar_groupedbar_full|Header1" msgid "Heading 1" -msgstr "" +msgstr "Заголовок 1" #. 6Ej4G #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2661 msgctxt "notebookbar_groupedbar_full|Header2" msgid "Heading 2" -msgstr "" +msgstr "Заголовок 2" #. sqE94 #: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2675 @@ -25950,7 +25950,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:70 msgctxt "optcalculatepage|label4" msgid "CPU Threading Settings" -msgstr "" +msgstr "Налаштування потоків процесора" #. XyA9j #: sc/uiconfig/scalc/ui/optcalculatepage.ui:103 @@ -25980,13 +25980,13 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:133 msgctxt "extended_tip|calc" msgid "Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the Precision as shown option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number." -msgstr "" +msgstr "Вказує, чи варто під час обчислень використовувати округлі значення, що відображаються на аркуші. Діаграми будуть показані з відображеними значеннями. Якщо параметр \"Точність, як на екрані\" не позначений, відображувані числа округлюються, але при внутрішніх обчисленнях використовуються не округлені значення." #. BiDg6 #: sc/uiconfig/scalc/ui/optcalculatepage.ui:144 msgctxt "optcalculatepage|match" msgid "Search criteria = and <> must apply to _whole cells" -msgstr "Критерій пошуку = і <> мають поширюватись на вс_ю комірку" +msgstr "Критерії пошуку = і <> мають поширюватись на вс_ю комірку" #. d3ZgB #: sc/uiconfig/scalc/ui/optcalculatepage.ui:148 @@ -25998,7 +25998,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:154 msgctxt "extended_tip|match" msgid "Specifies that the search criteria you set for the Calc database functions must match the whole cell exactly. When both, the Search criteria = and <> must apply to whole cells box and the Enable wildcards in formulas box are marked, %PRODUCTNAME Calc behaves exactly as Microsoft Excel when searching cells in the database functions." -msgstr "" +msgstr "Вказує, що критерії пошуку, які задаються для функцій бази даних Calc, мають точно збігатися з усією коміркою. Коли встановлено прапорці Критерії пошуку = і <> мають поширюватись на всю комірку і Увімкнути шаблони у формулах, поведінка% PRODUCTNAME Calc повністю збігається з поведінкою MS Excel при пошуку комірок у функціях бази даних." #. 5Wn8V #: sc/uiconfig/scalc/ui/optcalculatepage.ui:165 @@ -26010,7 +26010,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:174 msgctxt "extended_tip|lookup" msgid "Specifies that you can use the text in any cell as a label for the column below the text or the row to the right of the text. The text must consist of at least one word and must not contain any operators." -msgstr "" +msgstr "Вказує, що можна використовувати текст з будь-якої комірки як підпис для стовпця, розташованого під цим текстом, або рядка, що міститься праворуч від цього тексту. Цей текст має містити не менше одного слова і не може містити операторів." #. DwExc #: sc/uiconfig/scalc/ui/optcalculatepage.ui:185 @@ -26022,7 +26022,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:194 msgctxt "extended_tip|generalprec" msgid "You can specify the maximum number of decimal places that are shown by default for cells with General number format. If not enabled, cells with General number format show as many decimal places as the column width allows." -msgstr "" +msgstr "Ви можете вказати максимальну кількість десяткових знаків, які відображаються за замовчуванням, для комірок із загальним числовим форматом. Якщо параметр не активовано, комірки із загальним числовим форматом відображають стільки десяткових знаків, скільки дозволяє ширина стовпця." #. buc6F #: sc/uiconfig/scalc/ui/optcalculatepage.ui:217 @@ -26034,7 +26034,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:236 msgctxt "extended_tip|prec" msgid "Defines the number of decimals to be displayed for numbers with the General number format. The numbers are displayed as rounded numbers, but are not saved as rounded numbers." -msgstr "" +msgstr "Визначає кількість десяткових знаків, що відображатимуться для чисел із загальним числовим форматом. Числа відображаються округленими, але не зберігаються такими." #. tnj5y #: sc/uiconfig/scalc/ui/optcalculatepage.ui:262 @@ -26052,7 +26052,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:304 msgctxt "extended_tip|iterate" msgid "Specifies whether formulas with iterative references (formulas that are continuously repeated until the problem is solved) are calculated after a specific number of repetitions." -msgstr "" +msgstr "Вказує, чи мають обчислюватися формули з циклічними посиланнями (формули, які постійно повторюються до розв'язання задачі) після певного числа повторень." #. S6iwg #: sc/uiconfig/scalc/ui/optcalculatepage.ui:330 @@ -26070,13 +26070,13 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:363 msgctxt "extended_tip|steps" msgid "Sets the maximum number of iteration steps." -msgstr "" +msgstr "Задає найбільше число ітерацій." #. ZekEF #: sc/uiconfig/scalc/ui/optcalculatepage.ui:381 msgctxt "extended_tip|minchange" msgid "Specifies the difference between two consecutive iteration step results. If the result of the iteration is lower than the minimum change value, then the iteration will stop." -msgstr "" +msgstr "Вказує різницю між двома послідовними результатами кроків ітерації. Якщо результат кроку ітерації нижчий за значення мінімальної зміни, ітерація зупиниться." #. UoUqA #: sc/uiconfig/scalc/ui/optcalculatepage.ui:407 @@ -26100,7 +26100,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:450 msgctxt "extended_tip|datestd" msgid "Sets 12/30/1899 as day zero." -msgstr "" +msgstr "Встановлює 30.12.1899 \"нульовою\" датою відліку." #. mznb9 #: sc/uiconfig/scalc/ui/optcalculatepage.ui:461 @@ -26118,7 +26118,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:472 msgctxt "extended_tip|datesc10" msgid "Sets 1/1/1900 as day zero. Use this setting for StarCalc 1.0 spreadsheets containing date entries." -msgstr "" +msgstr "Встановлює 01.01.1900 в якості нульової дати. Використовуйте це налаштування для електронних таблиць StarCalc 1.0, які містять дати." #. J9ECM #: sc/uiconfig/scalc/ui/optcalculatepage.ui:483 @@ -26136,7 +26136,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:494 msgctxt "extended_tip|date1904" msgid "Sets 1/1/1904 as day zero. Use this setting for spreadsheets that are imported in a foreign format." -msgstr "" +msgstr "Встановлює 01.01.1904 \"нульовим\" днем. Використовуйте це налаштування для електронних таблиць, які імпортуються в інакшому форматі." #. ggkEL #: sc/uiconfig/scalc/ui/optcalculatepage.ui:511 @@ -26148,7 +26148,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:542 msgctxt "optcalculatepage|formulawildcards" msgid "Enable w_ildcards in formulas" -msgstr "Увімкнути _підстановочні знаки у формулах" +msgstr "Увімкнути _шаблони у формулах" #. BKAzW #: sc/uiconfig/scalc/ui/optcalculatepage.ui:546 @@ -26160,7 +26160,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:553 msgctxt "extended_tip|formulawildcards" msgid "Specifies that wildcards are enabled when searching and also for character string comparisons." -msgstr "" +msgstr "Вказує, що замінні знаки можна використовувати під час пошуку, а також для порівняння рядків символів." #. Gghyb #: sc/uiconfig/scalc/ui/optcalculatepage.ui:564 @@ -26172,7 +26172,7 @@ #: sc/uiconfig/scalc/ui/optcalculatepage.ui:574 msgctxt "extended_tip|formularegex" msgid "Specifies that regular expressions instead of simple wildcards are enabled when searching and also for character string comparisons." -msgstr "" +msgstr "Вказує, що під час пошуку, а також для порівняння рядків символів використовуються сталі вирази замість простих замінних знаків." #. gg3Am #: sc/uiconfig/scalc/ui/optcalculatepage.ui:585 @@ -26346,7 +26346,7 @@ #: sc/uiconfig/scalc/ui/optdlg.ui:116 msgctxt "extended_tip|printCB" msgid "Specifies that only contents from selected sheets are printed, even if you specify a wider range in the File - Print dialog or in the Format - Print Ranges dialog. Contents from sheets that are not selected will not be printed." -msgstr "" +msgstr "Вказує, що друкується лише вміст із вибраних аркушів, навіть якщо ви вказали ширший діапазон у діалоговому вікні «Файл - Друк» або у діалоговому вікні «Формат - Області друку». Вміст аркушів, які не вибрано, друкуватися не буде." #. wT6PN #: sc/uiconfig/scalc/ui/optdlg.ui:134 @@ -27036,7 +27036,7 @@ #: sc/uiconfig/scalc/ui/pastespecial.ui:586 msgctxt "pastespecial|extended_tip|link" msgid "Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the \"Paste All\" option is also selected." -msgstr "" +msgstr "Вставляє діапазон комірок як посилання, щоб зміни, внесені до комірок у вихідному файлі, оновлювались у цільовому файлі. Щоб переконатися, що зміни, внесені до порожніх комірок у вихідному файлі, оновлюються у цільовому файлі, перевірте, чи вибрано параметр \"Вставити все\"." #. HCco8 #: sc/uiconfig/scalc/ui/pastespecial.ui:604 @@ -27600,7 +27600,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:8 msgctxt "printareasdialog|PrintAreasDialog" msgid "Edit Print Ranges" -msgstr "Зміна діапазонів друку" +msgstr "Зміна областей друку" #. 9SYaB #: sc/uiconfig/scalc/ui/printareasdialog.ui:33 @@ -27624,7 +27624,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:143 msgctxt "printareasdialog|extended_tip|edprintarea" msgid "Allows you to modify a defined print range." -msgstr "" +msgstr "Дозволяє змінювати задану область друку." #. ED3qW #: sc/uiconfig/scalc/ui/printareasdialog.ui:157 @@ -27654,13 +27654,13 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:164 msgctxt "printareasdialog|extended_tip|lbprintarea" msgid "Allows you to modify a defined print range." -msgstr "" +msgstr "Тут можна змінити задану область друку." #. frRTf #: sc/uiconfig/scalc/ui/printareasdialog.ui:181 msgctxt "printareasdialog|label1" msgid "Print Range" -msgstr "Діапазон друку" +msgstr "Область друку" #. eySzA #: sc/uiconfig/scalc/ui/printareasdialog.ui:226 @@ -27738,7 +27738,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:413 msgctxt "printareasdialog|extended_tip|PrintAreasDialog" msgid "Opens a dialog where you can specify the print range." -msgstr "" +msgstr "Ця команда відкриває діалогове вікно, де можна задати область друку." #. 4tC5Y #: sc/uiconfig/scalc/ui/printeroptions.ui:25 @@ -32256,7 +32256,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:15 msgctxt "validationhelptabpage-mobile|tsbhelp" msgid "_Show input help when cell is selected" -msgstr "" +msgstr "_Якщо комірку вибрано, показати довідку щодо вводу" #. ZJEXj #: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:57 @@ -32268,7 +32268,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage-mobile.ui:71 msgctxt "validationhelptabpage-mobile|inputhelp_label" msgid "_Input help:" -msgstr "" +msgstr "_Довідка щодо вводу:" #. 4etq8 #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:15 @@ -32280,13 +32280,13 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:26 msgctxt "validationhelptabpage|extended_tip|tsbhelp" msgid "Displays the message that you enter in the Contents box when the cell or cell range is selected in the sheet." -msgstr "" +msgstr "Повідомлення, введене в поле Вміст, виводитиметься при виділенні комірки або діапазону комірок на аркуші." #. 9NNLK #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:70 msgctxt "validationhelptabpage|extended_tip|title" msgid "Enter the title that you want to display when the cell or cell range is selected." -msgstr "" +msgstr "Введіть заголовок, який виводитиметься при виділенні цієї комірки або діапазону комірок на аркуші." #. WZNfj #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:83 @@ -32304,7 +32304,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:123 msgctxt "validationhelptabpage|extended_tip|inputhelp" msgid "Enter the message that you want to display when the cell or cell range is selected." -msgstr "" +msgstr "Введіть повідомлення, яке має виводитися при виборі цієї комірки або діапазону комірок." #. epdvk #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:142 @@ -32316,7 +32316,7 @@ #: sc/uiconfig/scalc/ui/validationhelptabpage.ui:157 msgctxt "validationhelptabpage|extended_tip|ValidationHelpTabPage" msgid "Enter the message that you want to display when the cell or cell range is selected in the sheet." -msgstr "" +msgstr "Введіть повідомлення, яке має виводитися при виборі цієї комірки або діапазону комірок на аркуші." #. pSFWN #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:23 @@ -32364,7 +32364,7 @@ #: sc/uiconfig/scalc/ui/xmlsourcedialog.ui:312 msgctxt "xmlsourcedialog|extended_tip|XMLSourceDialog" msgid "Import XML data in a spreadsheet." -msgstr "" +msgstr "Імпортувати дані XML у таблицю." #. 5ozTx #: sc/uiconfig/scalc/ui/ztestdialog.ui:99 @@ -32412,4 +32412,4 @@ #: sc/uiconfig/scalc/ui/ztestdialog.ui:322 msgctxt "ztestdialog|extended_tip|ZTestDialog" msgid "Calculates the z-Test of two data samples." -msgstr "" +msgstr "Обчислює z-тест двох вибірок даних." diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/sd/messages.po libreoffice-7.1.3~rc2/translations/source/uk/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-16 10:09+0000\n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -1540,7 +1540,7 @@ "is not a valid audio file !" msgstr "" "Некоректний \n" -" звуковий файл % !" +"звуковий файл % !" #. SRWpo #: sd/inc/strings.hrc:228 @@ -5907,7 +5907,7 @@ #: sd/uiconfig/simpress/ui/headerfootertab.ui:49 msgctxt "headerfootertab|extended_tip|header_cb" msgid "Adds the text that you enter in the Header text box to the top of the slide." -msgstr "Додає текст, введений у поле заголовок, у верхню частину слайда." +msgstr "Додає текст, введений у поле \"Верхній колонтитул\", у верхню частину слайда." #. Qktzq #: sd/uiconfig/simpress/ui/headerfootertab.ui:74 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/uk/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-08 11:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560423609.000000\n" #. bHbFE @@ -1689,7 +1689,7 @@ #: include/sfx2/strings.hrc:305 msgctxt "STR_TEMPLATE_NAME4" msgid "Blueprint Plans" -msgstr "Світлокопія" +msgstr "Креслення" #. AEtHT #: include/sfx2/strings.hrc:306 @@ -3460,7 +3460,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:219 msgctxt "optprintpage|reducegrad" msgid "Reduce _gradient" -msgstr "Зменшити _градієнт" +msgstr "Зменшити _градієнти" #. GC8dk #: sfx2/uiconfig/ui/optprintpage.ui:228 @@ -3502,7 +3502,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:336 msgctxt "optprintpage|label1" msgid "Reduce Gradient" -msgstr "Зменшити градієнт" +msgstr "Зменшення градієнтів" #. abbre #: sfx2/uiconfig/ui/optprintpage.ui:344 @@ -3604,7 +3604,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:516 msgctxt "optprintpage|label1" msgid "Reduce Bitmaps" -msgstr "Зменшити растри" +msgstr "Зменшення растрових зображень" #. B4C76 #: sfx2/uiconfig/ui/optprintpage.ui:559 @@ -3646,7 +3646,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:635 msgctxt "optprintpage|label1" msgid "Reduce Transparency" -msgstr "Зменшити прозорість" +msgstr "Зменшення прозорості" #. GAFzh #: sfx2/uiconfig/ui/optprintpage.ui:667 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/starmath/messages.po libreoffice-7.1.3~rc2/translations/source/uk/starmath/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/starmath/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/starmath/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-06 19:36+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" +"Last-Translator: Євген Кондратюк \n" "Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" @@ -1401,13 +1401,13 @@ #: starmath/inc/strings.hrc:195 msgctxt "RID_COLORX_AQUA_HELP" msgid "Color Aqua" -msgstr "" +msgstr "Колір морської хвилі" #. 6zGQ2 #: starmath/inc/strings.hrc:196 msgctxt "RID_COLORX_FUCHSIA_HELP" msgid "Color Fuchsia" -msgstr "" +msgstr "Колір фуксія" #. em3aA #: starmath/inc/strings.hrc:197 @@ -1467,85 +1467,85 @@ #: starmath/inc/strings.hrc:206 msgctxt "RID_COLORX_RGB_HELP" msgid "Color RGB" -msgstr "Повна гама" +msgstr "Колір RGB" #. FHLCx #: starmath/inc/strings.hrc:207 msgctxt "RID_COLORX_RGBA_HELP" msgid "Color RGBA" -msgstr "" +msgstr "Колір RGBA" #. UxFDW #: starmath/inc/strings.hrc:208 msgctxt "RID_COLORX_HEX_HELP" msgid "Color hexadecimal" -msgstr "" +msgstr "Шістнадцятковий колір" #. MGdCv #: starmath/inc/strings.hrc:209 msgctxt "RID_COLORX_CORAL_HELP" msgid "Color Coral" -msgstr "" +msgstr "Кораловий колір" #. gPCCe #: starmath/inc/strings.hrc:210 msgctxt "RID_COLORX_CRIMSON_HELP" msgid "Color Crimson" -msgstr "" +msgstr "Багряний колір" #. oDRbR #: starmath/inc/strings.hrc:211 msgctxt "RID_COLORX_MIDNIGHT_HELP" msgid "Color Midnight blue" -msgstr "" +msgstr "Колір опівнічний синій" #. 4aCMu #: starmath/inc/strings.hrc:212 msgctxt "RID_COLORX_VIOLET_HELP" msgid "Color Violet" -msgstr "" +msgstr "Фіолетовий колір" #. Qivdb #: starmath/inc/strings.hrc:213 msgctxt "RID_COLORX_ORANGE_HELP" msgid "Color Orange" -msgstr "" +msgstr "Помаранчевий колір" #. CVygm #: starmath/inc/strings.hrc:214 msgctxt "RID_COLORX_ORANGERED_HELP" msgid "Color Orangered" -msgstr "" +msgstr "Оранжево-червоний колір" #. LbfRK #: starmath/inc/strings.hrc:215 msgctxt "RID_COLORX_SEAGREEN_HELP" msgid "Color Seagreen" -msgstr "" +msgstr "Зелений морський колір" #. DKivY #: starmath/inc/strings.hrc:216 msgctxt "RID_COLORX_INDIGO_HELP" msgid "Color Indigo" -msgstr "" +msgstr "Колір індиго" #. TZQzN #: starmath/inc/strings.hrc:217 msgctxt "RID_COLORX_HOTPINK_HELP" msgid "Color Hot pink" -msgstr "" +msgstr "Яскраво-рожевий колір" #. GHgTB #: starmath/inc/strings.hrc:218 msgctxt "RID_COLORX_LAVENDER_HELP" msgid "Color Lavender" -msgstr "" +msgstr "Лавандовий колір" #. HQmw7 #: starmath/inc/strings.hrc:219 msgctxt "RID_COLORX_SNOW_HELP" msgid "Color Snow" -msgstr "" +msgstr "Сніговий колір" #. A2GQ4 #: starmath/inc/strings.hrc:220 @@ -1851,13 +1851,13 @@ #: starmath/inc/strings.hrc:270 msgctxt "RID_LAPLACE_HELP" msgid "Laplace transform" -msgstr "" +msgstr "Лапласове перетворення" #. ajf9X #: starmath/inc/strings.hrc:271 msgctxt "RID_FOURIER_HELP" msgid "Fourier transform" -msgstr "" +msgstr "Перетворення Фур'є" #. aQpTD #: starmath/inc/strings.hrc:272 @@ -2169,7 +2169,7 @@ #: starmath/inc/strings.hrc:324 msgctxt "RID_EXAMPLE_A_TAYLOR_SERIES_HELP" msgid "Taylor series" -msgstr "" +msgstr "Ряд Тейлора" #. MuqjR #: starmath/inc/strings.hrc:325 @@ -2181,7 +2181,7 @@ #: starmath/inc/strings.hrc:326 msgctxt "RID_EXAMPLE_EULER_LAGRANGE_HELP" msgid "Euler-Lagrange equation" -msgstr "" +msgstr "Рівняння Ейлера-Лагранжа" #. LnNNA #: starmath/inc/strings.hrc:327 @@ -2193,31 +2193,31 @@ #: starmath/inc/strings.hrc:328 msgctxt "RID_EXAMPLE_CHAOS_HELP" msgid "Chaos equation" -msgstr "" +msgstr "Рівняння хаосу" #. afEQ8 #: starmath/inc/strings.hrc:329 msgctxt "RID_EXAMPLE_EULER_IDENTITY_HELP" msgid "Euler's identity" -msgstr "" +msgstr "Тотожність Ейлера" #. m3ukF #: starmath/inc/strings.hrc:330 msgctxt "RID_EXAMPLE_2NEWTON" msgid "Newton's second law" -msgstr "" +msgstr "Другий закон Ньютона" #. ZmaUU #: starmath/inc/strings.hrc:331 msgctxt "RID_EXAMPLE_GENERAL_RELATIVITY_HELP" msgid "General relativity" -msgstr "" +msgstr "Загальна теорія відносності" #. ADBy9 #: starmath/inc/strings.hrc:332 msgctxt "RID_EXAMPLE_SPECIAL_RELATIVITY_HELP" msgid "Special relativity" -msgstr "" +msgstr "Спеціальна теорія відносності" #. u47dF #: starmath/inc/strings.hrc:334 @@ -2265,13 +2265,13 @@ #: starmath/inc/strings.hrc:341 msgctxt "STR_AQUA" msgid "aqua" -msgstr "" +msgstr "морська хвиля" #. GLy7q #: starmath/inc/strings.hrc:342 msgctxt "STR_FUCHSIA" msgid "fuchsia" -msgstr "" +msgstr "фуксія" #. fZKES #: starmath/inc/strings.hrc:343 @@ -2331,67 +2331,67 @@ #: starmath/inc/strings.hrc:352 msgctxt "STR_CORAL" msgid "coral" -msgstr "" +msgstr "кораловий" #. RZSh6 #: starmath/inc/strings.hrc:353 msgctxt "STR_CRIMSON" msgid "crimson" -msgstr "" +msgstr "багряний" #. QGibF #: starmath/inc/strings.hrc:354 msgctxt "STR_MIDNIGHT" msgid "midnight" -msgstr "" +msgstr "опівнічний" #. NKAkW #: starmath/inc/strings.hrc:355 msgctxt "STR_VIOLET" msgid "violet" -msgstr "" +msgstr "фіолетовий" #. sF9zc #: starmath/inc/strings.hrc:356 msgctxt "STR_ORANGE" msgid "orange" -msgstr "" +msgstr "помаранчевий" #. CXMyK #: starmath/inc/strings.hrc:357 msgctxt "STR_ORANGERED" msgid "orangered" -msgstr "" +msgstr "оранжево-червоний" #. Ak3yd #: starmath/inc/strings.hrc:358 msgctxt "STR_LAVENDER" msgid "lavender" -msgstr "" +msgstr "лавандовий" #. DLUaV #: starmath/inc/strings.hrc:359 msgctxt "STR_SNOW" msgid "snow" -msgstr "" +msgstr "сніжний" #. QDTEU #: starmath/inc/strings.hrc:360 msgctxt "STR_SEAGREEN" msgid "seagreen" -msgstr "" +msgstr "морський зелений" #. PNveS #: starmath/inc/strings.hrc:361 msgctxt "STR_INDIGO" msgid "indigo" -msgstr "" +msgstr "індиго" #. r5S8P #: starmath/inc/strings.hrc:362 msgctxt "STR_HOTPINK" msgid "hotpink" -msgstr "" +msgstr "яскраво-рожевий" #. NNmRT #: starmath/inc/strings.hrc:363 @@ -2403,13 +2403,13 @@ #: starmath/inc/strings.hrc:364 msgctxt "STR_RGBA" msgid "rgba" -msgstr "" +msgstr "rgba" #. BRYCu #: starmath/inc/strings.hrc:365 msgctxt "STR_HEX" msgid "hex" -msgstr "" +msgstr "hex" #. CCpNs #: starmath/inc/strings.hrc:366 @@ -2547,7 +2547,7 @@ #: starmath/inc/strings.hrc:388 msgctxt "RID_ERR_NUMBEREXPECTED" msgid "Expected number" -msgstr "" +msgstr "Очікується число" #. ZWBDD #: starmath/inc/strings.hrc:389 @@ -2745,7 +2745,7 @@ #: starmath/uiconfig/smath/ui/catalogdialog.ui:247 msgctxt "catalogdialog|extended_tip|CatalogDialog" msgid "Opens the Symbols dialog, in which you can select a symbol to insert in the formula." -msgstr "" +msgstr "Відкриває діалогове вікно Символи, в якому можна вибрати символ для вставлення у формулу." #. P3rFo #: starmath/uiconfig/smath/ui/dockingelements.ui:16 @@ -3225,7 +3225,7 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:215 msgctxt "extended_tip|zoom" msgid "Reduces or enlarges the size of the printed formula by a specified enlargement factor." -msgstr "" +msgstr "Зменшує або збільшує розмір друкованої формули на заданий коефіцієнт збільшення." #. kMZqq #: starmath/uiconfig/smath/ui/smathsettings.ui:240 @@ -3243,7 +3243,7 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:282 msgctxt "extended_tip|norightspaces" msgid "Specifies that these space wildcards will be removed if they are at the end of a line." -msgstr "" +msgstr "Вказує, що ці шаблони буде усунено, якщо вони розташовані в кінці рядка." #. RCEH8 #: starmath/uiconfig/smath/ui/smathsettings.ui:294 @@ -3255,7 +3255,7 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:303 msgctxt "extended_tip|saveonlyusedsymbols" msgid "Saves only those symbols with each formula that are used in that formula." -msgstr "" +msgstr "Зберігає з кожною формулою лише ті символи, які використовуються в цій формулі." #. DfkEY #: starmath/uiconfig/smath/ui/smathsettings.ui:315 @@ -3273,7 +3273,7 @@ #: starmath/uiconfig/smath/ui/smathsettings.ui:352 msgctxt "extended_tip|SmathSettings" msgid "Defines formula settings that will be valid for all documents." -msgstr "" +msgstr "Визначає параметри формули, які будуть дійсними для всіх документів." #. AQFsm #: starmath/uiconfig/smath/ui/spacingdialog.ui:28 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/svx/messages.po libreoffice-7.1.3~rc2/translations/source/uk/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-11-22 11:56+0000\n" -"Last-Translator: Євген Кондратюк \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" +"Last-Translator: Olexandr Pylypchuk \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1563958774.000000\n" #. 3GkZj @@ -7235,7 +7235,7 @@ #: include/svx/strings.hrc:1295 msgctxt "RID_SVXSTR_WARN_MISSING_SMARTART" msgid "Could not load all SmartArt objects. Saving in Microsoft Office 2010 or later would avoid this issue." -msgstr "" +msgstr "Не вдалося завантажити всі об’єкти SmartArt. Збереження в Microsoft Office 2010 або пізнішої версії дозволить уникнути цієї проблеми." #. Bc5Sg #: include/svx/strings.hrc:1296 @@ -10518,7 +10518,7 @@ #: svx/inc/formnavi.hrc:47 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToSpinButton" msgid "Spin Button" -msgstr "Кнопка обертання" +msgstr "Лічильник" #. HYbc6 #: svx/inc/formnavi.hrc:48 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/sw/messages.po libreoffice-7.1.3~rc2/translations/source/uk/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-06 19:36+0000\n" +"PO-Revision-Date: 2021-04-16 19:50+0000\n" "Last-Translator: Olexandr Pylypchuk \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565448874.000000\n" #. v3oJv @@ -1233,7 +1233,7 @@ #: sw/inc/inspectorproperties.hrc:136 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Background" -msgstr "" +msgstr "Тло заповнення" #. TvMCc #: sw/inc/inspectorproperties.hrc:137 @@ -1323,13 +1323,13 @@ #: sw/inc/inspectorproperties.hrc:151 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color" -msgstr "" +msgstr "Колір заповнення" #. neFA2 #: sw/inc/inspectorproperties.hrc:152 msgctxt "RID_ATTRIBUTE_NAMES_MAP" msgid "Fill Color2" -msgstr "" +msgstr "Колір заповнення2" #. 72i4Q #: sw/inc/inspectorproperties.hrc:153 @@ -2895,13 +2895,13 @@ #: sw/inc/strings.hrc:144 msgctxt "STR_POOLCOLL_ENVELOPE_ADDRESS" msgid "Addressee" -msgstr "" +msgstr "Адресат" #. PvoVz #: sw/inc/strings.hrc:145 msgctxt "STR_POOLCOLL_SEND_ADDRESS" msgid "Sender" -msgstr "" +msgstr "Відправник" #. AChE4 #: sw/inc/strings.hrc:146 @@ -3197,7 +3197,7 @@ #: sw/inc/strings.hrc:196 msgctxt "STR_POOLPAGE_ENVELOPE" msgid "Envelope" -msgstr "" +msgstr "Конверт" #. jGSGz #: sw/inc/strings.hrc:197 @@ -5763,7 +5763,7 @@ #: sw/inc/strings.hrc:647 msgctxt "STR_OUTLINE_CONTENT_TOGGLE_VISIBILITY_EXT" msgid "right-click to include sub levels" -msgstr "" +msgstr "клацніть правою кнопкою, щоб включити підрівні" #. kDbnu #: sw/inc/strings.hrc:648 @@ -8019,7 +8019,7 @@ #: sw/inc/strings.hrc:1084 msgctxt "STR_SURROUND_IDEAL" msgid "Optimal" -msgstr "" +msgstr "Оптимально" #. HEuGy #: sw/inc/strings.hrc:1085 @@ -8037,19 +8037,19 @@ #: sw/inc/strings.hrc:1087 msgctxt "STR_SURROUND_PARALLEL" msgid "Parallel" -msgstr "" +msgstr "Паралельно" #. hyEQ5 #: sw/inc/strings.hrc:1088 msgctxt "STR_SURROUND_LEFT" msgid "Before" -msgstr "" +msgstr "Перед" #. bGBtQ #: sw/inc/strings.hrc:1089 msgctxt "STR_SURROUND_RIGHT" msgid "After" -msgstr "" +msgstr "Після" #. SrG3D #: sw/inc/strings.hrc:1090 @@ -9987,13 +9987,13 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:42 msgctxt "annotationmenu|resolvethread" msgid "Resolve Thread" -msgstr "" +msgstr "Вирішено для гілки" #. gE5Sy #: sw/uiconfig/swriter/ui/annotationmenu.ui:50 msgctxt "annotationmenu|unresolvethread" msgid "Unresolve Thread" -msgstr "" +msgstr "Не вирішено для гілки" #. qAYam #: sw/uiconfig/swriter/ui/annotationmenu.ui:58 @@ -10005,7 +10005,7 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:66 msgctxt "annotationmenu|deletethread" msgid "Delete _Comment Thread" -msgstr "" +msgstr "Видалити _гілку коментарів" #. z2NAS #: sw/uiconfig/swriter/ui/annotationmenu.ui:74 @@ -10281,7 +10281,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:101 msgctxt "extended_tip|authentication" msgid "Enables the authentication that is required to send email by SMTP." -msgstr "" +msgstr "Включає автентифікацію, необхідну для надсилання електронної пошти за SMTP." #. 5F7CW #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:113 @@ -10293,7 +10293,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:124 msgctxt "extended_tip|separateauthentication" msgid "Select if your SMTP server requires a user name and password." -msgstr "" +msgstr "Виберіть цей параметр, якщо сервер SMTP вимагає введення імені користувача і пароля." #. 4Y4mH #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:139 @@ -10305,7 +10305,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:158 msgctxt "extended_tip|username" msgid "Enter the user name for the SMTP server." -msgstr "" +msgstr "Введіть ім'я користувача сервера SMTP." #. G9RDY #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:172 @@ -10317,7 +10317,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:194 msgctxt "extended_tip|outpassword" msgid "Enter the password for the user name." -msgstr "" +msgstr "Введіть пароль для цього імені користувача." #. Sd4zx #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:208 @@ -10335,7 +10335,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:232 msgctxt "extended_tip|smtpafterpop" msgid "Select if you are required to first read your email before you can send email." -msgstr "" +msgstr "Виберіть, якщо потрібно перевірити листи перед надсиланням." #. hguDR #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:247 @@ -10347,7 +10347,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:266 msgctxt "extended_tip|server" msgid "Enter the server name of your POP 3 or IMAP mail server." -msgstr "" +msgstr "Введіть назву сервера для поштового сервера POP 3 або IMAP." #. 2Kevy #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:280 @@ -10359,7 +10359,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:300 msgctxt "extended_tip|port" msgid "Enter the port on the POP3 or IMAP server." -msgstr "" +msgstr "Зазначте порт на сервері POP3 або IMAP." #. DVAwX #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:313 @@ -10383,7 +10383,7 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:348 msgctxt "extended_tip|pop3" msgid "Specifies that the incoming mail server uses POP 3." -msgstr "" +msgstr "Вказує, що сервер вхідної пошти використовує протокол POP 3." #. b9FGk #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:359 @@ -10395,19 +10395,19 @@ #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:370 msgctxt "extended_tip|imap" msgid "Specifies that the incoming mail server uses IMAP." -msgstr "" +msgstr "Вказує, що сервер вхідної пошти використовує протокол IMAP." #. 6rQFw #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:389 msgctxt "extended_tip|inusername" msgid "Enter the user name for the IMAP server." -msgstr "" +msgstr "Введіть ім'я користувача для сервера IMAP." #. YWCC2 #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:410 msgctxt "extended_tip|inpassword" msgid "Enter the password." -msgstr "" +msgstr "Введіть пароль." #. eEGih #: sw/uiconfig/swriter/ui/authenticationsettingsdialog.ui:424 @@ -11025,7 +11025,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:194 msgctxt "extended tip | fax" msgid "Type company fax number in this field." -msgstr "" +msgstr "Вкажіть номер факсу організації." #. iGBqW #: sw/uiconfig/swriter/ui/businessdatapage.ui:226 @@ -11037,7 +11037,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:227 msgctxt "extended tips | url" msgid "Company homepage" -msgstr "" +msgstr "Домашня сторінка організації" #. JBxqb #: sw/uiconfig/swriter/ui/businessdatapage.ui:245 @@ -11049,7 +11049,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:246 msgctxt "extended tip | email" msgid "Type your company email address." -msgstr "" +msgstr "Вкажіть електронну адресу організації." #. CCKWa #: sw/uiconfig/swriter/ui/businessdatapage.ui:265 @@ -11067,7 +11067,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:291 msgctxt "extended tips | company2" msgid "Company second line" -msgstr "" +msgstr "Організація - другий рядок" #. Po3B3 #: sw/uiconfig/swriter/ui/businessdatapage.ui:310 @@ -11085,7 +11085,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:336 msgctxt "extended tip | icity" msgid "Type the company city" -msgstr "" +msgstr "Вкажіть місто" #. ytCQe #: sw/uiconfig/swriter/ui/businessdatapage.ui:354 @@ -11097,25 +11097,25 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:355 msgctxt "extended tip | izip" msgid "Type company ZIP in this field." -msgstr "" +msgstr "Вкажіть поштовий індекс." #. iVLAA #: sw/uiconfig/swriter/ui/businessdatapage.ui:385 msgctxt "extended tips | slogan" msgid "Company slogan" -msgstr "" +msgstr "Гасло організації" #. GAi2c #: sw/uiconfig/swriter/ui/businessdatapage.ui:416 msgctxt "extended tips | country" msgid "Company country" -msgstr "" +msgstr "Країна організації" #. ZFNQd #: sw/uiconfig/swriter/ui/businessdatapage.ui:434 msgctxt "extended tip | state" msgid "Type company state." -msgstr "" +msgstr "Вкажіть країну організації." #. yvuE2 #: sw/uiconfig/swriter/ui/businessdatapage.ui:453 @@ -11133,7 +11133,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:480 msgctxt "extended tips | phone" msgid "Type business phone" -msgstr "" +msgstr "Вкажіть робочий телефон" #. BGbZN #: sw/uiconfig/swriter/ui/businessdatapage.ui:498 @@ -11145,7 +11145,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:499 msgctxt "extended tips | mobile" msgid "Type company mobile" -msgstr "" +msgstr "Вкажіть робочий телефон" #. 9TjDF #: sw/uiconfig/swriter/ui/businessdatapage.ui:518 @@ -11157,7 +11157,7 @@ #: sw/uiconfig/swriter/ui/businessdatapage.ui:543 msgctxt "extended tip | street" msgid "Type the name of company street in this field." -msgstr "" +msgstr "Вкажіть вулицю" #. RTBTC #: sw/uiconfig/swriter/ui/businessdatapage.ui:566 @@ -11451,13 +11451,13 @@ #: sw/uiconfig/swriter/ui/ccdialog.ui:150 msgctxt "ccdialog|extended_tip|cc" msgid "Enter the recipients of email copies, separated by a semicolon (;)." -msgstr "" +msgstr "Введіть одержувачів копій через крапку з комою (\";\")." #. BCsoU #: sw/uiconfig/swriter/ui/ccdialog.ui:168 msgctxt "ccdialog|extended_tip|bcc" msgid "Enter the recipients of email blind copies, separated by a semicolon (;)." -msgstr "" +msgstr "Введіть одержувачів прихованих копій через крапку з комою (\";\")." #. P3CcW #: sw/uiconfig/swriter/ui/ccdialog.ui:185 @@ -27277,7 +27277,7 @@ #: sw/uiconfig/swriter/ui/testmailsettings.ui:33 msgctxt "extended_tip|stop" msgid "Click the Stop button to stop a test session manually." -msgstr "" +msgstr "Натисніть кнопку \"Зупинити\", щоб вручну зупинити сеанс перевірки." #. 4Bcop #: sw/uiconfig/swriter/ui/testmailsettings.ui:107 @@ -28807,19 +28807,19 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:269 msgctxt "extended_tip|hiddenparafield" msgid "If you have inserted text using the Hidden Paragraph field, specifies whether to display the hidden paragraph." -msgstr "" +msgstr "Якщо ви вставили текст за допомогою поля Прихований абзац, вказується, чи відображати прихований абзац." #. hFXBr #: sw/uiconfig/swriter/ui/viewoptionspage.ui:286 msgctxt "viewoptionspage|fieldslabel" msgid "Display Fields" -msgstr "" +msgstr "Показати поля" #. EiyCk #: sw/uiconfig/swriter/ui/viewoptionspage.ui:320 msgctxt "viewoptionspage|changesinmargin" msgid "Tracked _deletions in margin" -msgstr "" +msgstr "_Відстежені видалення на полях" #. vvvb7 #: sw/uiconfig/swriter/ui/viewoptionspage.ui:329 @@ -28837,7 +28837,7 @@ #: sw/uiconfig/swriter/ui/viewoptionspage.ui:361 msgctxt "viewoptionspage|changeslabel" msgid "Display tracked changes" -msgstr "" +msgstr "Показувати відстежені зміни" #. CuQqf #: sw/uiconfig/swriter/ui/viewoptionspage.ui:395 @@ -29185,7 +29185,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:59 msgctxt "wrappage|none" msgid "_Wrap Off" -msgstr "" +msgstr "_Без обтікання" #. KSWRg #: sw/uiconfig/swriter/ui/wrappage.ui:75 @@ -29197,7 +29197,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:86 msgctxt "wrappage|before" msgid "Be_fore" -msgstr "" +msgstr "_До" #. tE9SC #: sw/uiconfig/swriter/ui/wrappage.ui:102 @@ -29209,7 +29209,7 @@ #: sw/uiconfig/swriter/ui/wrappage.ui:113 msgctxt "wrappage|after" msgid "Aft_er" -msgstr "" +msgstr "_Після" #. vpZfS #: sw/uiconfig/swriter/ui/wrappage.ui:129 diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/sysui/desktop/share.po libreoffice-7.1.3~rc2/translations/source/uk/sysui/desktop/share.po --- libreoffice-7.1.2~rc2/translations/source/uk/sysui/desktop/share.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/sysui/desktop/share.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2016-05-07 21:35+0200\n" -"PO-Revision-Date: 2016-11-27 01:15+0000\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-04-13 09:37+0000\n" "Last-Translator: Olexandr Pylypchuk \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Generator: LibreOffice\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1480209320.000000\n" +#. a9uCy #: documents.ulf msgctxt "" "documents.ulf\n" @@ -24,6 +25,7 @@ msgid "OpenOffice.org 1.0 Text Document" msgstr "Текстовий документ OpenOffice.org 1.0" +#. 9mfCV #: documents.ulf msgctxt "" "documents.ulf\n" @@ -32,14 +34,16 @@ msgid "OpenOffice.org 1.0 Text Document Template" msgstr "Шаблон текстового документа OpenOffice.org 1.0" +#. hj5SQ #: documents.ulf msgctxt "" "documents.ulf\n" "master-document\n" "LngText.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "Головний документ OpenOffice.org 1.0" +msgstr "Складений документ OpenOffice.org 1.0" +#. 8tGE4 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -48,6 +52,7 @@ msgid "OpenOffice.org 1.0 Formula" msgstr "Формула OpenOffice.org 1.0" +#. iJFTG #: documents.ulf msgctxt "" "documents.ulf\n" @@ -56,6 +61,7 @@ msgid "OpenOffice.org 1.0 Presentation" msgstr "Презентація OpenOffice.org 1.0" +#. CA7gZ #: documents.ulf msgctxt "" "documents.ulf\n" @@ -64,6 +70,7 @@ msgid "OpenOffice.org 1.0 Presentation Template" msgstr "Шаблон презентації OpenOffice.org 1.0" +#. AuLrq #: documents.ulf msgctxt "" "documents.ulf\n" @@ -72,6 +79,7 @@ msgid "OpenOffice.org 1.0 Drawing" msgstr "Рисунок OpenOffice.org 1.0" +#. sHiv9 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -80,6 +88,7 @@ msgid "OpenOffice.org 1.0 Drawing Template" msgstr "Шаблон рисунку OpenOffice.org 1.0" +#. rSDA2 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -88,6 +97,7 @@ msgid "OpenOffice.org 1.0 Spreadsheet" msgstr "Електронна таблиця OpenOffice.org 1.0" +#. iUGdT #: documents.ulf msgctxt "" "documents.ulf\n" @@ -96,6 +106,7 @@ msgid "OpenOffice.org 1.0 Spreadsheet Template" msgstr "Шаблон електронної таблиці OpenOffice.org 1.0" +#. dup8a #: documents.ulf msgctxt "" "documents.ulf\n" @@ -104,6 +115,7 @@ msgid "OpenDocument Text" msgstr "Текстовий документ OpenDocument" +#. Tvbts #: documents.ulf msgctxt "" "documents.ulf\n" @@ -112,6 +124,7 @@ msgid "OpenDocument Text (Flat XML)" msgstr "Текстовий документ OpenDocument (плоский XML)" +#. 7rxHH #: documents.ulf msgctxt "" "documents.ulf\n" @@ -120,14 +133,16 @@ msgid "OpenDocument Text Template" msgstr "Шаблон текстового документа OpenDocument" +#. qGKKU #: documents.ulf msgctxt "" "documents.ulf\n" "oasis-master-document\n" "LngText.text" msgid "OpenDocument Master Document" -msgstr "Складовий документ OpenDocument" +msgstr "Складений документ OpenDocument" +#. LDcMd #: documents.ulf msgctxt "" "documents.ulf\n" @@ -136,6 +151,7 @@ msgid "OpenDocument Master Document Template" msgstr "Шаблон складеного документа OpenDocument" +#. xUvzk #: documents.ulf msgctxt "" "documents.ulf\n" @@ -144,6 +160,7 @@ msgid "OpenDocument Formula" msgstr "Формула OpenDocument" +#. QaoV9 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -152,6 +169,7 @@ msgid "OpenDocument Presentation" msgstr "Презентація OpenDocument" +#. 7KXDa #: documents.ulf msgctxt "" "documents.ulf\n" @@ -160,6 +178,7 @@ msgid "OpenDocument Presentation (Flat XML)" msgstr "Презентація OpenDocument (плоский XML)" +#. r5mkr #: documents.ulf msgctxt "" "documents.ulf\n" @@ -168,6 +187,7 @@ msgid "OpenDocument Presentation Template" msgstr "Шаблон презентації OpenDocument" +#. ABKBq #: documents.ulf msgctxt "" "documents.ulf\n" @@ -176,6 +196,7 @@ msgid "OpenDocument Drawing" msgstr "Рисунок OpenDocument" +#. uAguG #: documents.ulf msgctxt "" "documents.ulf\n" @@ -184,6 +205,7 @@ msgid "OpenDocument Drawing (Flat XML)" msgstr "Малюнок OpenDocument (плоский XML)" +#. nbGeB #: documents.ulf msgctxt "" "documents.ulf\n" @@ -192,6 +214,7 @@ msgid "OpenDocument Drawing Template" msgstr "Шаблон рисунку OpenDocument" +#. ww4GY #: documents.ulf msgctxt "" "documents.ulf\n" @@ -200,6 +223,7 @@ msgid "OpenDocument Spreadsheet" msgstr "Електронна таблиця OpenDocument" +#. U6S6A #: documents.ulf msgctxt "" "documents.ulf\n" @@ -208,6 +232,7 @@ msgid "OpenDocument Spreadsheet (Flat XML)" msgstr "Електронна таблиця OpenDocument (плоский XML)" +#. GRcE4 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -216,6 +241,7 @@ msgid "OpenDocument Spreadsheet Template" msgstr "Шаблон електронної таблиці OpenDocument" +#. FBzW7 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -224,6 +250,7 @@ msgid "OpenDocument Database" msgstr "База даний OpenDocument" +#. PHjCX #: documents.ulf msgctxt "" "documents.ulf\n" @@ -232,6 +259,7 @@ msgid "HTML Document Template" msgstr "Шаблон документа HTML" +#. z5v7A #: documents.ulf msgctxt "" "documents.ulf\n" @@ -240,6 +268,7 @@ msgid "%PRODUCTNAME Extension" msgstr "Розширення %PRODUCTNAME" +#. yfXFW #: documents.ulf msgctxt "" "documents.ulf\n" @@ -248,6 +277,7 @@ msgid "Microsoft Excel Worksheet" msgstr "Електронна таблиця Microsoft Excel" +#. GFWsF #: documents.ulf msgctxt "" "documents.ulf\n" @@ -256,6 +286,7 @@ msgid "Microsoft PowerPoint Presentation" msgstr "Презентація Microsoft PowerPoint" +#. sXwCV #: documents.ulf msgctxt "" "documents.ulf\n" @@ -264,6 +295,7 @@ msgid "Microsoft Word Document" msgstr "Документ Microsoft Word" +#. N9WPd #: documents.ulf msgctxt "" "documents.ulf\n" @@ -272,6 +304,7 @@ msgid "Microsoft Word Document" msgstr "Документ Microsoft Word" +#. jtBEd #: documents.ulf msgctxt "" "documents.ulf\n" @@ -280,6 +313,7 @@ msgid "Microsoft Excel Worksheet" msgstr "Електронна таблиця Microsoft Excel" +#. YMdW5 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -288,6 +322,7 @@ msgid "Microsoft Excel Worksheet Template" msgstr "Шаблон аркуша Microsoft Excel" +#. kg6D4 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -296,6 +331,7 @@ msgid "Microsoft PowerPoint Presentation" msgstr "Презентація Microsoft PowerPoint" +#. 7TjD7 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -304,6 +340,7 @@ msgid "Microsoft PowerPoint Presentation Template" msgstr "Шаблон презентації Microsoft PowerPoint" +#. 9YtZo #: documents.ulf msgctxt "" "documents.ulf\n" @@ -312,6 +349,7 @@ msgid "Microsoft Word Document" msgstr "Документ Microsoft Word" +#. PXrJC #: documents.ulf msgctxt "" "documents.ulf\n" @@ -320,6 +358,7 @@ msgid "Microsoft Word Document Template" msgstr "Шаблон документа Microsoft Word" +#. EENV4 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -328,6 +367,7 @@ msgid "Microsoft PowerPoint Presentation" msgstr "Презентація Microsoft PowerPoint" +#. aBQW3 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -336,6 +376,7 @@ msgid "Microsoft PowerPoint Presentation Template" msgstr "Шаблон презентації Microsoft PowerPoint" +#. CTtV4 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -344,6 +385,7 @@ msgid "Microsoft Excel Worksheet" msgstr "Електронна таблиця Microsoft Excel" +#. Dk7Bj #: documents.ulf msgctxt "" "documents.ulf\n" @@ -352,6 +394,7 @@ msgid "Microsoft Excel Worksheet Template" msgstr "Шаблон аркуша Microsoft Excel" +#. So2PB #: documents.ulf msgctxt "" "documents.ulf\n" @@ -360,6 +403,7 @@ msgid "Microsoft Word Document" msgstr "Документ Microsoft Word" +#. gHPAp #: documents.ulf msgctxt "" "documents.ulf\n" @@ -368,6 +412,7 @@ msgid "Microsoft Word Document Template" msgstr "Шаблон документа Microsoft Word" +#. rJW59 #: documents.ulf msgctxt "" "documents.ulf\n" @@ -376,6 +421,7 @@ msgid "Microsoft Excel Worksheet" msgstr "Електронна таблиця Microsoft Excel" +#. Bpj3J #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -384,6 +430,7 @@ msgid "Create and edit text and images in letters, reports, documents and Web pages by using Writer." msgstr "Створюйте та редагуйте текст та графіку у листах, звітах, документах та веб-сторінках за допомогою Writer." +#. hnW8F #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -392,6 +439,7 @@ msgid "Create and edit presentations for slideshows, meeting and Web pages by using Impress." msgstr "Створення та редагування презентацій для показу слайдів, зустрічей та веб-сторінок." +#. YkHme #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -400,6 +448,7 @@ msgid "Create and edit drawings, flow charts, and logos by using Draw." msgstr "Створення та редагування малюнків, діаграми та емблем." +#. US56A #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -408,6 +457,7 @@ msgid "Perform calculations, analyze information and manage lists in spreadsheets by using Calc." msgstr "Виконання розрахунків, аналіз інформації та керування списками в електронних таблицях за допомогою Calc." +#. xb7SC #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -416,6 +466,7 @@ msgid "Create and edit scientific formulas and equations by using Math." msgstr "Створення та редагування наукових формул та рівнянь." +#. mbYRJ #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -424,6 +475,7 @@ msgid "Manage databases, create queries and reports to track and manage your information by using Base." msgstr "Керування базами даних, створення запитів та звітів для стеження та керування вашою інформацією." +#. 8R6uw #: launcher_comment.ulf msgctxt "" "launcher_comment.ulf\n" @@ -432,6 +484,7 @@ msgid "The office productivity suite compatible to the open and standardized ODF document format. Supported by The Document Foundation." msgstr "Офісний пакет сумісний з відкритим і стандартизованим форматом документів ODF. Підтримується The Document Foundation." +#. BhNQQ #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -440,6 +493,7 @@ msgid "Word Processor" msgstr "Текстовий процесор" +#. zknFm #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -448,6 +502,7 @@ msgid "Presentation" msgstr "Презентація" +#. czB83 #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -456,6 +511,7 @@ msgid "Spreadsheet" msgstr "Електронна таблиця" +#. AXNAJ #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -464,6 +520,7 @@ msgid "Database Development" msgstr "База даних" +#. EkVbD #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -472,6 +529,7 @@ msgid "Formula Editor" msgstr "Редактор формул" +#. oDGKs #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -480,6 +538,7 @@ msgid "Drawing Program" msgstr "Програма для малювання" +#. DdFuQ #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -488,6 +547,7 @@ msgid "Office" msgstr "Офіс" +#. N3RXU #: launcher_genericname.ulf msgctxt "" "launcher_genericname.ulf\n" @@ -496,6 +556,7 @@ msgid "XSLT based filters" msgstr "Фільтри XSLT" +#. DE2Gk #: launcher_unityquicklist.ulf msgctxt "" "launcher_unityquicklist.ulf\n" @@ -504,6 +565,7 @@ msgid "New Document" msgstr "~Створити документ" +#. Wz7Fu #: launcher_unityquicklist.ulf msgctxt "" "launcher_unityquicklist.ulf\n" @@ -512,6 +574,7 @@ msgid "New Presentation" msgstr "Презентація" +#. 7VLq2 #: launcher_unityquicklist.ulf msgctxt "" "launcher_unityquicklist.ulf\n" @@ -520,6 +583,7 @@ msgid "New Spreadsheet" msgstr "Електронна таблиця ODF" +#. UXCET #: launcher_unityquicklist.ulf msgctxt "" "launcher_unityquicklist.ulf\n" @@ -528,6 +592,7 @@ msgid "New Database" msgstr "Нова база даних" +#. FDPZi #: launcher_unityquicklist.ulf msgctxt "" "launcher_unityquicklist.ulf\n" @@ -536,6 +601,7 @@ msgid "New Formula" msgstr "Створити формулу" +#. UQjBd #: launcher_unityquicklist.ulf msgctxt "" "launcher_unityquicklist.ulf\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/uk/uui/messages.po libreoffice-7.1.3~rc2/translations/source/uk/uui/messages.po --- libreoffice-7.1.2~rc2/translations/source/uk/uui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uk/uui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-20 20:35+0000\n" -"Last-Translator: Olexandr Pylypchuk \n" -"Language-Team: Ukrainian \n" +"PO-Revision-Date: 2021-04-21 17:21+0000\n" +"Last-Translator: Євген Кондратюк \n" +"Language-Team: Ukrainian \n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560362815.000000\n" #. DLY8p @@ -70,7 +70,7 @@ "\n" "$(ARG1)\n" "\n" -"Are you certain that this file is a legacy document created many years ago?" +"Ви впевнені, що цей документ у застарілому форматі створений багато років тому?" #. v6bPE #: uui/inc/ids.hrc:45 diff -Nru libreoffice-7.1.2~rc2/translations/source/ur/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ur/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ur/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ur/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2440,1071 +2440,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/uz/cui/messages.po libreoffice-7.1.3~rc2/translations/source/uz/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/uz/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/uz/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2020-10-31 11:35+0000\n" "Last-Translator: Christian Lohmaier \n" "Language-Team: Uzbek \n" @@ -2466,1071 +2466,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/ve/cui/messages.po libreoffice-7.1.3~rc2/translations/source/ve/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/ve/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/ve/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:47+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2476,1071 +2476,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/cui/messages.po libreoffice-7.1.3~rc2/translations/source/vec/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,10 +3,10 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2020-09-02 17:35+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-03 14:37+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1136,7 +1136,7 @@ #: cui/inc/strings.hrc:212 msgctxt "RID_SVXSTR_PASSWORD_LEN_INDICATOR" msgid "Password length limit of %1 reached" -msgstr "" +msgstr "Łìmite łonghesa password de %1 rivà" #. Fko49 #: cui/inc/strings.hrc:214 @@ -1761,7 +1761,7 @@ #: cui/inc/strings.hrc:335 msgctxt "RID_SVXSTR_ANGLE_QUOTES" msgid "Replace << and >> with angle quotes" -msgstr "" +msgstr "Sostituisi << e >> co łe virgołete base" #. Rc6Zg #: cui/inc/strings.hrc:336 @@ -2038,7 +2038,7 @@ #: 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 "" +msgstr "L'URL o el testo el ze masa łongo par el łiveło de coresion erori atuałe. Scurta el testo o dezbasa el łiveło de coresion." #. AD8QJ #: cui/inc/strings.hrc:391 @@ -2344,7 +2344,7 @@ #: 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 "" +msgstr "Meti rento imàzine e foto inte łe forme so Draw e Impress. Struca el dreto so na forma, sernisi Area ▸ Bitmap ▸ Zonta/Inporta e dòpara łe opsion par justarghe ła siera." #. W6E2A #: cui/inc/tipoftheday.hrc:89 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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 "Par convartir na fòrmuła inte vałori stàteghi A no te serve copiar e petar; dòpara Dati ▸ Càlcoła ▸ Da fòrmuła a vałor." #. rxKUR -#: cui/inc/tipoftheday.hrc:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "Par sercar so racuanti foji ełetròneghi, sełesiónełi prima de tacar ła reserca." #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/desktop/messages.po libreoffice-7.1.3~rc2/translations/source/vec/desktop/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/desktop/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/desktop/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-11-16 13:42+0100\n" -"PO-Revision-Date: 2020-08-02 07:43+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1537769016.000000\n" #. v2iwK @@ -128,7 +128,7 @@ #: desktop/inc/strings.hrc:46 msgctxt "RID_STR_PACKAGE_BUNDLE" msgid "All supported files" -msgstr "" +msgstr "Tuti i file suportài" #. 5TAZB #: desktop/inc/strings.hrc:48 diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/filter/messages.po libreoffice-7.1.3~rc2/translations/source/vec/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-05-23 22:47+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1521161243.000000\n" #. 5AQgJ @@ -333,7 +333,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:106 msgctxt "pdfgeneralpage|extended_tip|selection" msgid "Exports the current selection." -msgstr "" +msgstr "L'esporta ła sèrnita atuałe." #. qQrdx #: filter/uiconfig/ui/pdfgeneralpage.ui:128 diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-08-02 07:43+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1552631672.000000\n" #. W5ukN @@ -584,7 +584,7 @@ "Label\n" "value.text" msgid "Freeze First Column" -msgstr "" +msgstr "Bloca prima cołona" #. WDbnU #: CalcCommands.xcu @@ -594,7 +594,7 @@ "Label\n" "value.text" msgid "Freeze First Row" -msgstr "" +msgstr "Bloca prima riga" #. Qz2C5 #: CalcCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/readlicense_oo/docs.po libreoffice-7.1.3~rc2/translations/source/vec/readlicense_oo/docs.po --- libreoffice-7.1.2~rc2/translations/source/vec/readlicense_oo/docs.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/readlicense_oo/docs.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2020-08-02 07:43+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1549866631.000000\n" #. q6Gg3 @@ -230,7 +230,7 @@ "s256we\n" "readmeitem.text" msgid "GTK version 3.20 or higher;" -msgstr "" +msgstr "GTK varsion 3.20 o pì resente;" #. nA9h9 #: readme.xrm @@ -392,7 +392,7 @@ "rpminstall5\n" "readmeitem.text" msgid "For Fedora-based systems: sudo dnf install *.rpm" -msgstr "" +msgstr "Par i sistemi bazài so Fedora: sudo dnf install *.rpm" #. BwvxR #: readme.xrm diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/reportdesign/messages.po libreoffice-7.1.3~rc2/translations/source/vec/reportdesign/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/reportdesign/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/reportdesign/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,23 +4,23 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-05-23 22:48+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-03 14:37+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1520989894.000000\n" #. FBVr9 #: reportdesign/inc/stringarray.hrc:17 msgctxt "RID_STR_FORCENEWPAGE_CONST" msgid "None" -msgstr "Njauna" +msgstr "Nesuna" #. 2VDzY #: reportdesign/inc/stringarray.hrc:18 @@ -44,7 +44,7 @@ #: reportdesign/inc/stringarray.hrc:26 msgctxt "RID_STR_GROUPKEEPTOGETHER_CONST" msgid "Per Page" -msgstr "Par pàjina" +msgstr "Par pàzina" #. zemtQ #: reportdesign/inc/stringarray.hrc:27 @@ -68,13 +68,13 @@ #: reportdesign/inc/stringarray.hrc:35 msgctxt "RID_STR_REPORTPRINTOPTION_CONST" msgid "Not With Report Footer" -msgstr "Sensa pie de pàjina de'l rezoconto" +msgstr "Sensa pie de pàzina de'l rezoconto" #. uvfAP #: reportdesign/inc/stringarray.hrc:36 msgctxt "RID_STR_REPORTPRINTOPTION_CONST" msgid "Not With Report Header/Footer" -msgstr "Sensa intestasion/pie de pàjina de'l rezoconto" +msgstr "Sensa intestasion/pie de pàzina de'l rezoconto" #. ZC2oS #: reportdesign/inc/stringarray.hrc:42 @@ -188,7 +188,7 @@ #: reportdesign/inc/strings.hrc:27 msgctxt "RID_STR_FORCENEWPAGE" msgid "Force New Page" -msgstr "Sforsa na pàjina nova" +msgstr "Sforsa na pàzina nova" #. MHbFf #: reportdesign/inc/strings.hrc:28 @@ -242,13 +242,13 @@ #: reportdesign/inc/strings.hrc:36 msgctxt "RID_STR_STARTNEWPAGE" msgid "Start new page" -msgstr "Taca na pàjina nova" +msgstr "Taca na pàzina nova" #. 3ranM #: reportdesign/inc/strings.hrc:37 msgctxt "RID_STR_RESETPAGENUMBER" msgid "Reset page number" -msgstr "Reinposta el nùmaro de pàjina" +msgstr "Reinposta el nùmaro de pàzina" #. 9vA38 #: reportdesign/inc/strings.hrc:38 @@ -278,13 +278,13 @@ #: reportdesign/inc/strings.hrc:42 msgctxt "RID_STR_PAGEHEADEROPTION" msgid "Page header" -msgstr "Intestasion pàjina" +msgstr "Intestasion pàzina" #. rzwjM #: reportdesign/inc/strings.hrc:43 msgctxt "RID_STR_PAGEFOOTEROPTION" msgid "Page footer" -msgstr "Pie de pàjina" +msgstr "Pie de pàzina" #. eg94E #: reportdesign/inc/strings.hrc:44 @@ -584,13 +584,13 @@ #: reportdesign/inc/strings.hrc:95 msgctxt "RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER" msgid "Remove report header / report footer" -msgstr "Cava vìa intestasion rezoconto / pie de pàjina rezoconto" +msgstr "Cava via intestasion rezoconto / pie de pàzina rezoconto" #. iHU5A #: reportdesign/inc/strings.hrc:96 msgctxt "RID_STR_UNDO_ADD_REPORTHEADERFOOTER" msgid "Add report header / report footer" -msgstr "Zonta intestasion rezoconto / pie de pàjina rezoconto" +msgstr "Zonta intestasion rezoconto / pie de pàzina rezoconto" #. EGhDu #. The # character is used for replacing @@ -615,13 +615,13 @@ #: reportdesign/inc/strings.hrc:101 msgctxt "RID_STR_UNDO_ADD_GROUP_FOOTER" msgid "Add group footer " -msgstr "Zonta pie de pàjina de'l grupo " +msgstr "Zonta pie de pàzina de'l grupo " #. 5yiAd #: reportdesign/inc/strings.hrc:102 msgctxt "RID_STR_UNDO_REMOVE_GROUP_FOOTER" msgid "Remove group footer " -msgstr "Cava vìa pie de pàjina de'l grupo " +msgstr "Cava via pie de pàzina de'l grupo " #. nGU7F #: reportdesign/inc/strings.hrc:103 @@ -695,7 +695,7 @@ #: reportdesign/inc/strings.hrc:116 msgctxt "RID_STR_GROUPFOOTER" msgid "GroupFooter" -msgstr "Pie de pàjina grupo" +msgstr "Pie de pàzina grupo" #. NZ68L #: reportdesign/inc/strings.hrc:117 @@ -727,7 +727,7 @@ #: reportdesign/inc/strings.hrc:123 msgctxt "RID_STR_FOOTER" msgid "# Footer" -msgstr "# Pie de pàjina" +msgstr "# Pie de pàzina" #. RqygD #: reportdesign/inc/strings.hrc:124 @@ -769,31 +769,31 @@ #: reportdesign/inc/strings.hrc:130 msgctxt "RID_STR_UNDO_CHANGEPAGE" msgid "Change page attributes" -msgstr "Modìfega atribudi pàjina" +msgstr "Modìfega atribudi pàzina" #. 4A4DL #: reportdesign/inc/strings.hrc:131 msgctxt "RID_STR_PAGEHEADERFOOTER_INSERT" msgid "Insert Page Header/Footer" -msgstr "Insarisi intestasion/pie de pàjina" +msgstr "Insarisi intestasion/pie de pàzina" #. JZEaA #: reportdesign/inc/strings.hrc:132 msgctxt "RID_STR_PAGEHEADERFOOTER_DELETE" msgid "Delete Page Header/Footer" -msgstr "Ełìmina intestasion/pie de pàjina" +msgstr "Ełìmena intestasion/pie de pàzina" #. zENVV #: reportdesign/inc/strings.hrc:133 msgctxt "RID_STR_REPORTHEADERFOOTER_INSERT" msgid "Insert Report Header/Footer" -msgstr "Insarisi intestasion/pie de pàjina rezoconto" +msgstr "Insarisi intestasion/pie de pàzina rezoconto" #. cF5cE #: reportdesign/inc/strings.hrc:134 msgctxt "RID_STR_REPORTHEADERFOOTER_DELETE" msgid "Delete Report Header/Footer" -msgstr "Ełìmina intestasion/pie de pàjina rezoconto" +msgstr "Ełìmina intestasion/pie de pàzina rezoconto" #. YfLKD #: reportdesign/inc/strings.hrc:135 @@ -823,13 +823,13 @@ #: reportdesign/inc/strings.hrc:139 msgctxt "RID_STR_PAGE_HEADER" msgid "Page Header" -msgstr "Intestasion pàjina" +msgstr "Intestasion pàzina" #. VaKUs #: reportdesign/inc/strings.hrc:140 msgctxt "RID_STR_PAGE_FOOTER" msgid "Page Footer" -msgstr "Pie de pàjina" +msgstr "Pie de pàzina" #. yH4py #: reportdesign/inc/strings.hrc:141 @@ -841,7 +841,7 @@ #: reportdesign/inc/strings.hrc:142 msgctxt "RID_STR_REPORT_FOOTER" msgid "Report Footer" -msgstr "Pie de pàjina de'l rezoconto" +msgstr "Pie de pàzina de'l rezoconto" #. TsJeZ #: reportdesign/inc/strings.hrc:144 @@ -925,7 +925,7 @@ #: reportdesign/inc/strings.hrc:158 msgctxt "STR_RPT_HELP_FOOTER" msgid "Display a footer for this group?" -msgstr "Vuto far védar un pie de pàjina par 'sto grupo?" +msgstr "Vuto far védar un pie de pàzina par 'sto grupo?" #. DNABi #: reportdesign/inc/strings.hrc:159 @@ -943,7 +943,7 @@ #: reportdesign/inc/strings.hrc:161 msgctxt "STR_RPT_HELP_KEEP" msgid "Keep group together on one page?" -msgstr "Tenjer el grupo so na pàjina ùnega?" +msgstr "Tenjer el grupo so na pàzina ùnega?" #. 2FHLD #: reportdesign/inc/strings.hrc:162 @@ -956,7 +956,7 @@ #: reportdesign/inc/strings.hrc:165 msgctxt "STR_RPT_PN_PAGE" msgid "\"Page \" & #PAGENUMBER#" -msgstr "\"Pàjina \" & #PAGENUMBER#" +msgstr "\"Pàzina \" & #PAGENUMBER#" #. 3GWzf #. The space before and after the word is no error. #PAGECOUNT# is a replacement and & must not be translated as well as " @@ -987,7 +987,7 @@ #: reportdesign/inc/strings.hrc:173 msgctxt "RID_STR_GROUP_FOOTER" msgid "Group Footer" -msgstr "Pie de pàjina de'l grupo" +msgstr "Pie de pàzina de'l grupo" #. LaroG #: reportdesign/inc/strings.hrc:174 @@ -1347,7 +1347,7 @@ #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:240 msgctxt "floatingsort|label8" msgid "Group Footer" -msgstr "Pie de pàjina de'l grupo" +msgstr "Pie de pàzina de'l grupo" #. GWWsG #: reportdesign/uiconfig/dbreport/ui/floatingsort.ui:254 @@ -1455,13 +1455,13 @@ #: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:26 msgctxt "navigatormenu|page" msgid "Page Header/Footer..." -msgstr "Intestasion/pie de pàjina..." +msgstr "Intestasion/pie de pàzina..." #. dCNEo #: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:34 msgctxt "navigatormenu|report" msgid "Report Header/Footer..." -msgstr "Intestasion/pie de pàjina de'l rezoconto..." +msgstr "Intestasion/pie de pàzina de'l rezoconto..." #. tDRkM #: reportdesign/uiconfig/dbreport/ui/navigatormenu.ui:48 @@ -1485,13 +1485,13 @@ #: reportdesign/uiconfig/dbreport/ui/pagedialog.ui:8 msgctxt "pagedialog|PageDialog" msgid "Page Setup" -msgstr "Inpostasion de ła pàjina" +msgstr "Inpostasion de ła pàzina" #. C2GxE #: reportdesign/uiconfig/dbreport/ui/pagedialog.ui:138 msgctxt "pagedialog|page" msgid "Page" -msgstr "Pàjina" +msgstr "Pàzina" #. DNNCb #: reportdesign/uiconfig/dbreport/ui/pagedialog.ui:185 @@ -1503,19 +1503,19 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:8 msgctxt "pagenumberdialog|PageNumberDialog" msgid "Page Numbers" -msgstr "Nùmari de pàjina" +msgstr "Nùmari de pàzina" #. wt9iJ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:105 msgctxt "pagenumberdialog|pagen" msgid "_Page N" -msgstr "_Pàjina N" +msgstr "_Pàzina N" #. MpNXo #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:122 msgctxt "pagenumberdialog|pagenofm" msgid "Page _N of M" -msgstr "Pàjina _N de M" +msgstr "Pàzina _N de M" #. 2wFXb #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:145 @@ -1527,13 +1527,13 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:183 msgctxt "pagenumberdialog|toppage" msgid "_Top of Page (Header)" -msgstr "Ini_sio pàjina (intestasion)" +msgstr "Ini_sio pàzina (intestasion)" #. Bt5Xv #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:200 msgctxt "pagenumberdialog|bottompage" msgid "_Bottom of Page (Footer)" -msgstr "Fon_do pàjina (pie de pàjina)" +msgstr "Fon_do pàzina (pie de pàzina)" #. eLQVW #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:224 @@ -1569,7 +1569,7 @@ #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:294 msgctxt "pagenumberdialog|shownumberonfirstpage" msgid "Show Number on First Page" -msgstr "Mostra nùmaro so ła prima pàjina" +msgstr "Mostra nùmaro so ła prima pàzina" #. B7qwT #: reportdesign/uiconfig/dbreport/ui/pagenumberdialog.ui:316 diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/sc/messages.po libreoffice-7.1.3~rc2/translations/source/vec/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-08-02 07:43+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-03 14:37+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550683064.000000\n" #. kBovX @@ -1469,7 +1469,7 @@ #: sc/inc/globstr.hrc:272 msgctxt "STR_STYLENAME_STANDARD" msgid "Default" -msgstr "" +msgstr "Predefinìo" #. TG9pD #: sc/inc/globstr.hrc:273 diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/vec/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-09-07 15:25+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-03 14:37+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1550770581.000000\n" #. bHbFE @@ -1623,13 +1623,13 @@ #: include/sfx2/strings.hrc:290 msgctxt "STR_SIGNATURE_NOTVALIDATED" msgid "At least one signature has problems: the certificate could not be validated." -msgstr "" +msgstr "Almanco na firma ła ga problemi: el sertifegado no'l ze mìa stà vałidà." #. tjCmr #: include/sfx2/strings.hrc:291 msgctxt "STR_SIGNATURE_PARTIAL_OK" msgid "At least one signature has problems: the document is only partially signed." -msgstr "" +msgstr "Almanco na firma ła ga problemi: el documento el ze stà firmà parsiałe." #. mU6ot #: include/sfx2/strings.hrc:292 diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/sw/messages.po libreoffice-7.1.3~rc2/translations/source/vec/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,9 +4,9 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-03-10 17:17+0100\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-15 18:00+0200\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,31 +80,31 @@ #: sw/inc/AccessibilityCheckStrings.hrc:26 msgctxt "STR_NON_INTERACTIVE_FORMS" msgid "An input form is not interactive." -msgstr "" +msgstr "Un formułario de input no'l ze mìa intarativo." #. Z6sHT #: sw/inc/AccessibilityCheckStrings.hrc:27 msgctxt "STR_FLOATING_TEXT" msgid "Avoid floating text." -msgstr "" +msgstr "Scansa testo flotante." #. 77aXx #: sw/inc/AccessibilityCheckStrings.hrc:28 msgctxt "STR_HEADING_IN_TABLE" msgid "Tables must not contain headings." -msgstr "" +msgstr "Łe tabełe no łe ga da contenjer intestasion." #. LxJKy #: sw/inc/AccessibilityCheckStrings.hrc:29 msgctxt "STR_HEADING_ORDER" msgid "Keep headings' levels ordered. Heading level %LEVEL_CURRENT% must not go after %LEVEL_PREV%." -msgstr "" +msgstr "Mantien l'órdene de i łivełi de intestasion. L'intestasion de łiveło %LEVEL_CURRENT% no ła ga da ndar dapò cueła de łiveło %LEVEL_PREV%." #. TBXjj #: sw/inc/AccessibilityCheckStrings.hrc:30 msgctxt "STR_FONTWORKS" msgid "Avoid Fontwork objects in your documents. Make sure you use it for samples or other meaningless text." -msgstr "" +msgstr "Èvita łe robe de Fontwork inte i documenti. Segùrate de dopararle solche par ezenpi o altri testi de poco conto." #. UWv4T #: sw/inc/AccessibilityCheckStrings.hrc:32 diff -Nru libreoffice-7.1.2~rc2/translations/source/vec/xmlsecurity/messages.po libreoffice-7.1.3~rc2/translations/source/vec/xmlsecurity/messages.po --- libreoffice-7.1.2~rc2/translations/source/vec/xmlsecurity/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vec/xmlsecurity/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-04-19 22:16+0000\n" -"Last-Translator: Còdaze Veneto \n" -"Language-Team: Venetian \n" +"PO-Revision-Date: 2021-04-06 16:26+0000\n" +"Last-Translator: projetolovec \n" +"Language-Team: Venetian \n" "Language: vec\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1539881128.000000\n" #. EyJrF @@ -244,13 +244,13 @@ #: xmlsecurity/uiconfig/ui/certdetails.ui:73 msgctxt "extended_tip|tablecontainer" msgid "The Details page of the View Certificate dialog displays detailed information about the certificate." -msgstr "" +msgstr "Ła pàzina \"Detaji\" de ła fenestra de diàłogo Varda sertifegado ła mostra informasion detajàe so'l sertifegado." #. xcuF8 #: xmlsecurity/uiconfig/ui/certdetails.ui:101 msgctxt "extended_tip|valuedetails" msgid "Use the value list box to view values and copy them to the clipboard." -msgstr "" +msgstr "Doparar ła cazeła de riepìłogo vałor par vardar i vałori e copiarli inte i aponti." #. JXgjT #: xmlsecurity/uiconfig/ui/certdetails.ui:115 @@ -472,13 +472,13 @@ #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:426 msgctxt "digitalsignaturesdialog|oldsignatureft" msgid "At least one signature has problems: the document is only partially signed." -msgstr "" +msgstr "Almanco na firma ła ga problemi: el documento el ze stà firmà parsiałe." #. wn85z #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:439 msgctxt "digitalsignaturesdialog|notvalidatedft" msgid "At least one signature has problems: the certificate could not be validated." -msgstr "" +msgstr "Almanco na firma ła ga problemi: el sertifegado no'l ze mìa stà vałidà." #. DFTZB #: xmlsecurity/uiconfig/ui/digitalsignaturesdialog.ui:488 diff -Nru libreoffice-7.1.2~rc2/translations/source/vi/cui/messages.po libreoffice-7.1.3~rc2/translations/source/vi/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/vi/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vi/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2477,1071 +2477,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/vi/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-08-09 08:37+0000\n" "Last-Translator: serval2412 \n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "phông nhấp nháyphông chớp nháy" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "Nhấp nháy" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/xh/cui/messages.po libreoffice-7.1.3~rc2/translations/source/xh/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/xh/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/xh/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2469,1071 +2469,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-12-03 21:40+0000\n" +"PO-Revision-Date: 2021-04-05 07:37+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562193945.000000\n" #. NCRDD @@ -1284,13 +1284,13 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:201 msgctxt "dlg_DataLabel|PB_NUMBERFORMAT" msgid "Number _format..." -msgstr "数字格式(_F)..." +msgstr "数值格式(_F)..." #. yHa5z #: chart2/uiconfig/ui/dlg_DataLabel.ui:209 msgctxt "dlg_DataLabel|extended_tip|PB_NUMBERFORMAT" msgid "Opens a dialog to select the number format." -msgstr "打开对话框以选择数字格式。" +msgstr "打开对话框以选择数值格式。" #. cFD6D #: chart2/uiconfig/ui/dlg_DataLabel.ui:220 @@ -3582,13 +3582,13 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:133 msgctxt "tp_DataLabel|PB_NUMBERFORMAT" msgid "Number _format..." -msgstr "数字格式(_F)..." +msgstr "数值格式(_F)..." #. nzq24 #: chart2/uiconfig/ui/tp_DataLabel.ui:141 msgctxt "tp_DataLabel|extended_tip|PB_NUMBERFORMAT" msgid "Opens a dialog to select the number format." -msgstr "打开对话框以选择数字格式。" +msgstr "打开对话框以选择数值格式。" #. PYC2b #: chart2/uiconfig/ui/tp_DataLabel.ui:152 @@ -4494,7 +4494,7 @@ #: 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 "对一些类型的轴,您可以选择将一轴格式化为文本或日期,或自动侦测类型。" +msgstr "对一些类型的轴,您可以选择将轴设置为文本或日期格式,也可以自动侦测类型。" #. Vf7vB #: chart2/uiconfig/ui/tp_Scale.ui:165 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/cui/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-04-07 14:15+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -1749,7 +1749,7 @@ #: cui/inc/strings.hrc:333 msgctxt "RID_SVXSTR_ORDINAL" msgid "Format ordinal numbers suffixes (1st -> 1^st)" -msgstr "格式化序数后缀 (1st -> 1^st)" +msgstr "为序数的后缀转换格式 (1st -> 1^st)" #. 6oHuF #: cui/inc/strings.hrc:334 @@ -2458,1071 +2458,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME 支持四种宏安全级别 (从「低」到「非常高」),还支持可信来源。" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 计划以开源组织身份申请参与谷歌暑期代码项目 (Google Summer of Code, GSoC),详情请见:" - -#. SNTbc -#: 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 "您知道可以对一部分(而非整段)文字添加批注吗?请使用快捷键 %MOD1+%MOD2+C。" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "想要移动一个或多个段落?没必要使用剪贴粘贴,您可以使用快捷键 %MOD1+%MOD2+上下方向键。" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "更改预定义模板或者当前文档中的默认字体:工具 ▸ 选项 ▸ %PRODUCTNAME Writer ▸ 基本字体。" #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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 "想要查找包含 10 个以上字符的单词?在“编辑 ▸ 查找和替换 ▸ 查找”中输入“[a-z]{10,}”,并在“其他选项”中勾选“正则表达式”。" #. 7dDjc -#: cui/inc/tipoftheday.hrc:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "要在当前电子表格将 CSV 文件作为新工作表打开,请使用“工作表 ▸ 从文件插入工作表”菜单。" #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "在 Writer 中以粗体、斜体或下划线格式键入后,您可以使用快捷键 %MOD1+Shift+X(移除直接字符格式)继续以默认属性键入。" #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "使用 %MOD1+%MOD2+Shift+V 可以将剪贴板中的内容粘贴为无格式文本。" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "使用“工具 ▸ 脚注和尾注...”自定义脚注外观。" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "希望更改文本某些部分的拼写检查选项?点击在状态栏的语言区域,或采用更好的方案:应用样式。" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer 可以在两个连续的奇数(偶数)页之间插入一个空白页:在打印对话框的 %PRODUCTNAME Writer 选项卡上,勾选“打印自动插入的空白页”。" #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "想要精准定位?使用 %MOD2+方向键,可以将对象(形状、图像、公式等)每次移动一个像素。" #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "若已安装了离线帮助,按下 F1 键即可打开。若没有安装,那么可以在线查看:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "在 %PRODUCTNAME Calc 的状态栏右侧计数区域,右键单击,然后勾选“选中范围计数”,即可统计所选单元格的数量。" #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "只想让 %PRODUCTNAME Writer 页面的一部分分成两栏或多栏?在“插入 ▸ 区域”的“分栏”选项卡中设置,并在分栏区域输入文本。" #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "在 %PRODUCTNAME Calc 中,可以通过“数据 ▸ 统计”菜单,进行抽样、描述性统计、方差分析、相关性分析等各种统计分析。" #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "不用剪贴板,也可以在工作表之间复制。选择要复制的区域,在目标工作表的标签页上 %MOD1+单击,然后使用“工作表 ▸ 填充单元格 ▸ 填充工作表”菜单项。" #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "您可以通过“工具 ▸ 选项 ▸ 视图 ▸ 用户界面”来更改 %PRODUCTNAME 的外观。" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "在 %PRODUCTNAME Impress 中,可以通过“插入 ▸ 媒体 ▸ 相册”功能,使用多张图片创建类似“相册”的幻灯片。" #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "您可以在电子表格中显示公式本身,而不是公式的计算结果。视图 ▸ 显示公式(或者:工具 ▸ 选项 ▸ %PRODUCTNAME Calc ▸ 视图 ▸ 显示 ▸ 公式)。" #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME 由友好社区开发,全世界数千人参与。加入我们,能力不只限于编程。" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "左撇子?启用“工具 ▸ 选项 ▸ 语言设置 ▸ 语言 ▸ 亚洲”,并选中“工具 ▸ 选项 ▸ %PRODUCTNAME Writer ▸ 视图 ▸ 垂直标尺 ▸ 向右对齐”,即可将滚动条显示在屏幕左侧。" #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "想让章节标题总是以新的页面开始(在标题前插入分页符)?编辑“标题1”的段落样式,在“文字流 ”标签页的“分页符和分栏符”区域,勾选“插入”,类型为“分页符”,位置为“段落前”。" #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "日期和时间值实际上一个数字,代表的是从给定的第 0 天开始经过的天数。在该数字中,整数部分代表的是日期,小数部分代表的是这一天中经过的时间,例如 0.5 代表中午。" #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "使用 Shift+%MOD1+Del 快捷键,可以删除从光标位置到当前句尾的内容。" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "在公式中可以使用行标签或列标签。比如,假设您有两列数据,列标签(数据的第一行)分别为 \"Time\" 和 \"KM\", 则公式 = Time/KM 将得到每公里所用时间。要使用这项功能,需启用“工具 ▸ 选项 ▸ LibreOffice Calc ▸ 计算 ▸ 常规计算:自动搜索列标签和行标签”。" #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "看到 Calc 中单元格周围“转圈的虚线”时有点恼火?按下 Esc 键可以取消它,复制的内容仍然可供粘贴。" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "想成为 %PRODUCTNAME 大使?我们提供针对开发者、管理员以及培训人员的认证项目。" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "在”样式”侧边栏中,选择“等级式”以直观显示各个样式之间的继承关系。" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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 "在文档中使用表格样式,以使您的文档具有一致性的外观。按下F11快捷键从预定义的表格样式中选择一款,或者从“表格 ▸ 自动格式样式”中选择。" #. UuBRE -#: cui/inc/tipoftheday.hrc:142 +#: cui/inc/tipoftheday.hrc:141 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 "要设置用 %MOD1 键打开超链接的方式?在“工具 ▸ 选项 ▸ %PRODUCTNAME ▸ 安全 ▸ 选项” 中勾选“需要用 %MOD1+点击才能打开超链接”。" #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "希望查看公式中各元素的计算过程?选择相应元素,然后按 F9。" #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "只想显示电子表格中的最高值?选择菜单「数据 ▸ 自动筛选」,点击下拉箭头,然后选择「前 10」。" #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "要在 Writer 中快速生成 Math 对象,请先输入公式,然后使用「插入 ▸ 对象 ▸ 公式」将文本转换为公式。" #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "为 %PRODUCTNAME 安装新词典很简单:它们是作为扩展提供的。" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME 有便携式版本,使用起来更为灵活。即使没有计算机的管理员权限,也可以在硬盘中安装便携版 %PRODUCTNAME。" #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer 允许您按每页、每章节或整篇文档对脚注进行编号:「工具 ▸ 脚注与尾注 ▸ ‘脚注’选项卡 ▸ 计数」。" #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "您的 Writer 文档打开时,光标不在保存时所编辑的位置?在「工具 ▸ 选项 ▸ %PRODUCTNAME ▸ 用户数据 ▸ 姓/名」处添加您的姓或名。" #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "要管理对参考文献的引用?请使用第三方扩展。" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "想要在多个工作表上的相同位置插入值?这样选择多个工作表:按住 %MOD1 键并点击各工作表的标签,然后再输入。" #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "您可以自定义鼠标中键的行为:工具 ▸ 选项 ▸ %PRODUCTNAME ▸ 视图 ▸ 鼠标中键。" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "想要将两个纵向页面打印在一张横向纸张上(将 A4 缩小为 A5)?“文件 ▸ 打印”,然后在“更多:每张纸打印页数”中选择 2。" #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "将经常用到的文本定义为「自动图文集」。您可以在任意 Writer 文档中通过名称、快捷方式或工具栏插入它们。" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 并非从左到右依次计算,而是尊重优先级顺序:括号—指数—乘法—除法—加法—减法。" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "在这里获取 %PRODUCTNAME 文档以及免费的用户指南手册:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "你要演示通过 Writer 撰写的报告吗?「文件 ▸ 发送 ▸ 大纲到演示文稿」可自动根据大纲创建幻灯片。" #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "希望控制电子表格中超链接的显示?使用 HYPERLINK 函数插入超链接。" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "取消选中「工具 ▸ 选项 ▸ %PRODUCTNAME Calc ▸ 视图 ▸ 缩放: “同步工作表”」即可为 Calc 中的每个工作表设置独立的缩放系数。" #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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 "跟踪公式、先决单元格 (Shift+F9) 或从属单元格 (Shift+F5) 中用到的单元格 (或使用「工具 ▸ 侦探」)。每一次命中意味着你在依赖链中向前一步。" #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "一次性插入公式并对其进行编号:输入 fn 然后按 F3。会随公式插入「自动图文集」,且数字在表格中对齐。" #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "您可以使用安卓或苹果手机远程控制您的 Impress 演示文稿。" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "想知道当月有多少天吗?使用 DAYSINMONTH(TODAY()) 函数。" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "您的数值在电子表格中显示为 ###?这是因为该列太窄,无法显示每一位数字。" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "通过「工具 ▸ 选项 ▸ OpenCL」,实现公式单元格的大规模并行计算。" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "在 Draw/Impress 中使用「绘图」工具栏中的「连接器」工具创建漂亮的流程图。对象可以复制/粘贴到 Writer 中。" #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "您的捐赠将支持我们全世界的社区。" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "想对日期增加 x 个月?使用 =EDATE(日期;月数)。" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "若要选择包含数据的毗邻范围单元格,且以空行/空列为边界,请按 %MOD1+*(数字小键盘区的乘号)。" #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "希望将公式导出到 CSV?「文件 ▸ 另存为 ▸ 类型: 文本 CSV」,选中「编辑筛选设置」,并在弹出的对话框中选中「保存单元格公式」。" #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "使用 %PRODUCTNAME Impress 做演示时,「演讲者控制台」非常有用。您尝试过这个功能没?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "点击工具栏中的 PDF 图标,即可一键将文档转换为 PDF 格式。" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "想要不滚动就选择大范围的单元格?在名称框中输入范围引用(如 A1:A1000)再按回车键即可。" #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "想知道有效的命令行参数?启动 soffice 时添加参数 --help 或 -h 或 -?" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "可通过「表格 ▸ 属性… ▸ 文本流 ▸ 文本方向」旋转表格单元格的文字方向。" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "在 %PRODUCTNAME Draw 中,要更改标尺原点的位置,请将左上角两个标尺的交叉点拖到工作空间。" #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "在 Calc 中,希望一次性在其他两列之间移动一列?点击列标题,然后点击该列的一个单元格,保持鼠标按钮按住,然后按 %MOD2 键移动到目标。" #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "可以使用索引文件自动标记按字母顺序排列的索引条目。" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "在 Draw/Impress 中使用「格式 ▸ 对齐」(或右键菜单) 可精确放置对象:如选中一个对象,或对组合操作,则在页面内居中。" #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "在 Writer 文档中,不要使用制表符隔开各项。根据你的目标,无边框表格可能是更好的选择。" #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME 可以在插入对象时自动添加带编号的标题。参见「工具 ▸ 选项 ▸ %PRODUCTNAME Writer ▸ 自动插入标题」。" #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "在 %PRODUCTNAME 中,您可以使用 Google Mail 账号进行邮件合并。在「工具 ▸ 选项 ▸ %PRODUCTNAME Writer ▸ 邮件合并电子邮件」处填写。" #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "想要开始使用 Basic 宏吗?可以查看“工具 ▸ 宏 ▸ 编辑宏”里面的示例。" #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "在 Writer 中,可使用快捷键应用「标题」段落样式:「%MOD1+1」应用「标题 1」「%MOD1+2」应用「标题 2」等。" #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "在大文档中迷失方向?使用「导航」(F5) 定位内容。" #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "「编辑 ▸ 查找与替换」允许您直接插入特殊字符:右击输入框或按「Shift+%MOD1+S」。" #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "在 Draw 中,只想查看、但不想打印某个对象?您可以将该对象绘制在某个未设置“可打印”选项的分层上(右键单击页面底部对应的分层选项卡,点击“修改分层”,然后取消勾选“可打印”)。" #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "要在文档中插入当前日期,请使用“插入 ▸ 字段 ▸ 日期”。" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "Writer 文档中图像很多?禁用“视图 ▸ 图像与图表”可以加快显示速度。" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "在 Impress 中重命名幻灯片有助于您定义“转到页面”的交互,使摘要比“幻灯片 1”、“幻灯片 2”等更为明确。" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "可以在「章节编号」对话框设置希望显示在章节编号之前的文字。例如,输入「章节 」可以显示「章节 1」" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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 "想转置 Writer 表格?复制后,在 Calc 中通过「选择性粘贴」转置,然后复制,在 Writer 中「选择性粘贴 ▸ 格式化文本」。" +msgstr "想转置 Writer 表格?复制后,在 Calc 中通过「选择性粘贴」转置,然后复制,在 Writer 中「选择性粘贴 ▸ 设置文本格式」。" #. DKBCg -#: cui/inc/tipoftheday.hrc:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "您可以签署现有的 PDF 文件,也可以验证这些签名。" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "经常以一个文档为基础创建另一个文档?请考虑使用模板。" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "在 Calc 中使用「格式 ▸ 条件格式 ▸ 管理」来查看哪些单元格已定义条件格式。" #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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 "点击批注中的向下箭头,然后选择「格式化所有批注」可重新格式化文档中的所有批注。" +msgstr "点击批注中的向下箭头,然后选择「为所有批注设置格式」可重新设置文档中所有批注的格式。" #. 3masz -#: cui/inc/tipoftheday.hrc:221 +#: cui/inc/tipoftheday.hrc:220 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 "希望屏幕显示和打印的布局相同?选中「工具 ▸ 选项 ▸ %PRODUCTNAME Calc ▸ 常规 ▸ 文字格式化时使用打印机参数」。" +msgstr "希望屏幕显示和打印的布局相同?选中「工具 ▸ 选项 ▸ %PRODUCTNAME Calc ▸ 常规 ▸ 使用打印机度量衡设置文本格式」。" #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer 可帮助您进行备份:使用「文件 ▸ 保存副本」可创建一个新文档,继续在原始文档上工作。" #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "当您基于一个样式创建另一个时,可以输入百分比或相对点值(例如 110%、-2pt 或 +5pt)。" #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "通过「文件 ▸ 向导」菜单中的「文档转换器」将 MS Office 文档批量转换为 OpenDocument 格式。" #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "需要移动 Writer 中的表格?点击“表格 ▸ 选择 ▸ 表格”和“插入 ▸ 框架 ▸ 框架”,即可移动到所需的位置。" #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "使用“工具 ▸ 自动图文集 ▸ 自动图文集 ▸ 导入”,您可以选择从 Word 文档或模板中导入自动图文集条目。" #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "将 PDF 文件或网页中的文本粘贴到文档中时遇到问题?试试粘贴无格式文本(%MOD1+%MOD2+Shift+V)。" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "在 Calc 中,使用 TRIMMEAN() 返回数据集的平均值,但计算时不包括最大值和最小值。" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Calc 中 VLOOKUP 函数可选的第四个参数指定数据的第一列是否已经排序。如果未排序,请输入 FALSE 或 0。" #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "想根据当前 Writer 文档创建主控文档?请选择:文件 ▸ 发送 ▸ 创建主控文档(子文档将根据大纲创建)。" #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "想让 Calc 中的单元格在打印的页面上居中显示?「格式 ▸ 页面」「页面 ▸ 布局设置 ▸ 表格对齐」。" #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "要基于 Writer 表格创建图表,点击表格内部,选择「插入 ▸ 图表」。" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." -msgstr "在「工具 ▸ 选项 ▸ %PRODUCTNAME Writer ▸ 格式化辅助 ▸ 显示」可指定显示哪些非打印字符。" +msgstr "在「工具 ▸ 选项 ▸ %PRODUCTNAME Writer ▸ 格式设置辅助 ▸ 显示」可指定显示哪些非打印字符。" #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "想按页码跳转到特定页面吗?点击最左侧的状态栏条目或使用「编辑 ▸ 转到页面…」或按「%MOD1+G」。" #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME 支持 150 多种语言。" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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 "想在 Writer 文档中查找粗体内容?「编辑 ▸ 查找与替换 ▸ 其他选项 ▸ 属性 ▸ 字重」。" #. ppAeT #. local help missing -#: cui/inc/tipoftheday.hrc:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "您可以通过「工具 ▸ 排序」按字母或数字顺序对段落或表格行进行排序。" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "要在区域之前(之后)插入段落,请在区域的开头(结尾)按 %MOD2+Enter 键。" #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME 有个模板中心可帮助您创建美观的文档——去看看。" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "用 Calc 计算贷款偿还额: 例如 PMT(2%/12;36;2500) 每期利率 2%/12, 36 个月, 贷款金额 2500。" #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "在 Calc 中用 VLOOKUP 函数无法得到你想要的结果?善用 INDEX 与 MATCH 函数,什么都可以做到!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "想显示隐藏的 A 列?点击 B 列中的单元格,按住鼠标左键,将鼠标向左移动,释放。「格式 ▸ 列 ▸ 显示」。" #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "在 Writer 中,若要更改页码,请转到第一段的属性,然后在「文本流」选项卡选中「分页 ▸ 插入」并输入数字。" #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "通过 rollApp 可在任意浏览器中运行 %PRODUCTNAME。" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "在 Calc 中遇到奇怪的错误代码,Err: 后面跟着一个数字?此页有详细说明:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "除目录外,%PRODUCTNAME 还可以创建字母顺序索引、插图、表格、对象、参考文献、用户定义的索引。" #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "无法修改或删除自定义单元格样式?选中所有工作表,确保所有工作表均不处于保护状态。" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "想知道一个单元格是否被其他单元格的公式所引用?工具 ▸ 侦探 ▸ 追踪从属单元格 (Shift+F5)。" #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "希望复制上一行?按 %MOD1+D 或使用「工作表 ▸ 填充单元格 ▸ 向下填充」。" #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "要在多个工作表中查找,请在开始查找前选中它们。" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "将单元格从 Calc 拖放到幻灯片的常规视图可创建表格;而在大纲视图, 每个单元格会变为大纲中一行。" #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME 可帮助您避免在 Writer 中输入两个或多个连续的半角空格。勾选“工具 ▸ 自动更正 ▸ 自动更正选项 ▸ 选项 ▸ 忽略连续空格”即可。" #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "在 Calc 的单元格中输入值后, 希望光标跳到右侧的单元格?使用 Tab 键而不是回车键。" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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 "将已格式化的对象拖到「样式和格式」窗口。在弹出的对话框中输入新样式的名称即可。" +msgstr "将已设定格式的对象拖到「样式和格式」窗口。在弹出的对话框中输入新样式的名称即可。" #. EabEN -#: cui/inc/tipoftheday.hrc:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "新版本的 %PRODUCTNAME 提供新功能、问题修复和安全补丁。请您保持软件更新!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "正在开发新的 XSLT 和 XML 筛选器?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "如果没有在「工具 ▸ 选项 ▸ %PRODUCTNAME ▸ 通用」中启用「扩展提示」功能,需要时可以按 Shift+F1 键查看对话框中提供的扩展工具提示。" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME 帮助" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "更多信息" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "立刻执行此操作..." #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "每日贴士:%CURRENT/%TOTAL" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" @@ -3561,13 +3555,13 @@ #: 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 "分组式工具栏把各种功能分组显示,最常用的用图标表示,不太常用的列于下拉菜单中。此简洁模式着重于减小工具栏高度。" +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 "分组式工具栏把各种功能分组显示,最常用的用图标表示,不太常用的列于下拉菜单中。此完整模式默认着重于列全功能,比另一模式的界面尺寸略大。" +msgstr "分组式工具栏把各种功能分组显示,最常用的用图标表示,不太常用的列于下拉菜单中。此完整模式侧重于列全功能,比另一模式的界面尺寸略大。" #. LNaMA #: cui/inc/toolbarmode.hrc:29 @@ -3747,7 +3741,7 @@ #: cui/inc/treeopt.hrc:72 msgctxt "SID_SW_EDITOPTIONS_RES" msgid "Formatting Aids" -msgstr "格式化辅助" +msgstr "格式设置辅助" #. V3usW #: cui/inc/treeopt.hrc:73 @@ -3831,7 +3825,7 @@ #: cui/inc/treeopt.hrc:90 msgctxt "SID_SW_ONLINEOPTIONS_RES" msgid "Formatting Aids" -msgstr "格式化辅助" +msgstr "格式设置辅助" #. 9fj7Y #: cui/inc/treeopt.hrc:91 @@ -9306,7 +9300,7 @@ #: cui/uiconfig/ui/formatcellsdialog.ui:329 msgctxt "formatcellsdialog|shadow" msgid "Shadow" -msgstr "" +msgstr "阴影" #. dpU36 #: cui/uiconfig/ui/formatnumberdialog.ui:8 @@ -10711,7 +10705,7 @@ #: cui/uiconfig/ui/hyperlinkmailpage.ui:221 msgctxt "hyperlinkmailpage|name_label" msgid "N_ame:" -msgstr "名称(_N):" +msgstr "名称(_A):" #. PJMVD #: cui/uiconfig/ui/hyperlinkmailpage.ui:239 @@ -10885,7 +10879,7 @@ #: cui/uiconfig/ui/hyperlinknewdocpage.ui:310 msgctxt "hyperlinknewdocpage|name_label" msgid "N_ame:" -msgstr "名称(_N):" +msgstr "名称(_A):" #. J9DQE #: cui/uiconfig/ui/hyperlinknewdocpage.ui:328 @@ -12661,7 +12655,7 @@ #: cui/uiconfig/ui/numberingformatpage.ui:561 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 "选择币种,然后滚动到「格式」列表的顶部以查看该货币的格式化选项。" +msgstr "选择币种,然后滚动到「格式」列表的顶部以查看该货币的格式选项。" #. TBLU5 #: cui/uiconfig/ui/numberingformatpage.ui:602 @@ -12721,7 +12715,7 @@ #: 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 "选择要定义格式化选项的级别。" +msgstr "选择为哪个级别定义格式选项。" #. iHsAJ #: cui/uiconfig/ui/numberingoptionspage.ui:129 @@ -15862,7 +15856,7 @@ #: cui/uiconfig/ui/optsavepage.ui:387 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 "" +msgstr "某些公司或机构可能会有 ODF 文档使用 ODF 1.0/1.1 或 ODF 1.2 格式的需求。您可以在列表框中选择这些格式。但是这些旧格式并不支持所有的新功能,所以如果可行则推荐使用新的 ODF 1.3 或 ODF 1.3 扩展格式。" #. cxPqV #: cui/uiconfig/ui/optsavepage.ui:400 @@ -18303,7 +18297,7 @@ #: cui/uiconfig/ui/qrcodegen.ui:363 msgctxt "qr code dialog title" msgid "Generate QR Code for any text or URL." -msgstr "" +msgstr "为任意文本或 URL 网址生成二维码。" #. 3HNDZ #: cui/uiconfig/ui/querychangelineenddialog.ui:7 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/dbaccess/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/dbaccess/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/dbaccess/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/dbaccess/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-12-09 13:36+0000\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562192836.000000\n" #. BiN6g @@ -1912,7 +1912,7 @@ #: dbaccess/inc/strings.hrc:345 msgctxt "STR_WIZ_TYPE_SELECT_TITEL" msgid "Type formatting" -msgstr "类型格式化" +msgstr "类型格式" #. C5Zs4 #: dbaccess/inc/strings.hrc:346 @@ -2872,7 +2872,7 @@ #: dbaccess/uiconfig/ui/copytablepage.ui:180 msgctxt "copytablepage|infoLabel" msgid "Existing data fields can be set as primary key on the type formatting step (third page) of the wizard." -msgstr "已有的数据字段可以在向导的类型格式化步骤 (第三页) 设置为主键。" +msgstr "已有的数据字段可以在向导的设置类型格式步骤 (第三页) 设置为主键。" #. LqAEB #: dbaccess/uiconfig/ui/copytablepage.ui:199 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/extensions/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/extensions/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/extensions/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/extensions/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-10-17 08:35+0000\n" +"PO-Revision-Date: 2021-03-24 15:37+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1561324898.000000\n" #. cBx8W @@ -2212,7 +2212,7 @@ #: extensions/inc/strings.hrc:271 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. WiNUf #: extensions/inc/strings.hrc:272 @@ -2248,7 +2248,7 @@ #: extensions/inc/strings.hrc:277 msgctxt "RID_STR_PROPTITLE_IMAGECONTROL" msgid "Image Control" -msgstr "图式控制" +msgstr "图形控件" #. 6Qvho #: extensions/inc/strings.hrc:278 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/extras/source/gallery/share.po libreoffice-7.1.3~rc2/translations/source/zh-CN/extras/source/gallery/share.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/extras/source/gallery/share.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/extras/source/gallery/share.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-06-22 17:23+0200\n" -"PO-Revision-Date: 2020-06-24 10:14+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1558531692.000000\n" #. oG3Mq @@ -41,7 +41,7 @@ "bpmn\n" "LngText.text" msgid "BPMN" -msgstr "业务流程模型和标记 (BPMN)" +msgstr "业务流程 (BPMN)" #. arWXh #: gallery_names.ulf diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/filter/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-11-04 20:46+0000\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562192689.000000\n" #. 5AQgJ @@ -182,7 +182,7 @@ #: filter/inc/strings.hrc:53 msgctxt "T602FILTER_STR_REFORMAT_TEXT" msgid "Reformat the text" -msgstr "重新格式化文本" +msgstr "重新设置文本格式" #. MGmYA #: filter/inc/strings.hrc:54 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/framework/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/framework/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/framework/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/framework/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-02-27 14:31+0100\n" -"PO-Revision-Date: 2020-04-28 19:16+0000\n" +"PO-Revision-Date: 2021-04-24 08:37+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 3.10.3\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1560999224.000000\n" #. 5dTDC @@ -92,13 +92,13 @@ #: framework/inc/strings.hrc:37 msgctxt "STR_CLEAR_RECENT_FILES" msgid "Clear List" -msgstr "清除列表" +msgstr "清空列表" #. y5BFt #: framework/inc/strings.hrc:38 msgctxt "STR_CLEAR_RECENT_FILES_HELP" msgid "Clears the list with the most recently opened files. This action can not be undone." -msgstr "清除最近打开文件的列表。该操作无法撤消。" +msgstr "清空最近打开文件的列表。该操作无法撤消。" #. JDATD #: framework/inc/strings.hrc:39 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po libreoffice-7.1.3~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/helpcontent2/source/text/schart/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-27 12:31+0100\n" -"PO-Revision-Date: 2019-07-10 04:02+0000\n" -"Last-Translator: Dian LI \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"PO-Revision-Date: 2021-04-04 23:37+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562731363.000000\n" #. DsZFP @@ -3965,7 +3965,7 @@ "par_id59225\n" "help.text" msgid "For some types of axes, you can select to format an axis as text or date, or to detect the type automatically. For the axis type \"Date\" you can set the following options." -msgstr "对一些类型的轴,您可以选择将一轴格式化为文本或日期,或自动侦测类型。 对「日期」类型的轴您可以设置以下选项。" +msgstr "对一些类型的轴,您可以选择将轴设置为文本或日期格式,也可以自动侦测类型。 对「日期」类型的轴您可以设置以下选项。" #. ZDvDA #: 05040201.xhp diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2021-01-14 05:36+0000\n" "Last-Translator: Petro Ding \n" "Language-Team: Chinese (Simplified) \n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1562731357.000000\n" #. 3u8hR @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "闪烁字体 闪烁字体" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "闪动" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "闪烁选中字符。您不能更改闪烁频率。" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2021-03-10 07:37+0000\n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -1324,7 +1324,7 @@ "Label\n" "value.text" msgid "Conditional Formatting..." -msgstr "条件格式化..." +msgstr "设置条件格式..." #. YFKd7 #: CalcCommands.xcu @@ -3744,7 +3744,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "格式化为货币" +msgstr "设为货币格式" #. UHwJu #: CalcCommands.xcu @@ -3764,7 +3764,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Currency" -msgstr "格式化为货币" +msgstr "设为货币格式" #. GAf7B #: CalcCommands.xcu @@ -3784,7 +3784,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Percent" -msgstr "格式化为百分比" +msgstr "设为百分比格式" #. Yq2ZF #: CalcCommands.xcu @@ -3804,7 +3804,7 @@ "TooltipLabel\n" "value.text" msgid "Format as General" -msgstr "格式化为常规格式" +msgstr "设为常规格式" #. oEtif #: CalcCommands.xcu @@ -3824,7 +3824,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Date" -msgstr "格式化为日期" +msgstr "设为日期格式" #. 7TEEu #: CalcCommands.xcu @@ -3844,7 +3844,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Number" -msgstr "格式化为数值" +msgstr "设为数值格式" #. sDWH8 #: CalcCommands.xcu @@ -3864,7 +3864,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Scientific" -msgstr "格式化为科学记数格式" +msgstr "设为科学记数格式" #. e83bu #: CalcCommands.xcu @@ -3884,7 +3884,7 @@ "TooltipLabel\n" "value.text" msgid "Format as Time" -msgstr "格式化为时间格式" +msgstr "设为时间格式" #. DbAGi #: CalcCommands.xcu @@ -4274,7 +4274,7 @@ "Label\n" "value.text" msgid "Format Cell Borders" -msgstr "格式化单元格边框" +msgstr "设置单元格边框格式" #. 4gL7K #: CalcCommands.xcu @@ -5624,7 +5624,7 @@ "Label\n" "value.text" msgid "Format Selection..." -msgstr "格式化选区..." +msgstr "为所选内容设置格式..." #. 2Mrjz #: ChartCommands.xcu @@ -5634,7 +5634,7 @@ "Label\n" "value.text" msgid "Format Legend" -msgstr "格式化图例" +msgstr "设置图例格式" #. kTSbA #: ChartCommands.xcu @@ -5954,7 +5954,7 @@ "Label\n" "value.text" msgid "Format Wall..." -msgstr "格式化背景墙..." +msgstr "设置背景墙格式..." #. LXJ6q #: ChartCommands.xcu @@ -5964,7 +5964,7 @@ "Label\n" "value.text" msgid "Format Floor..." -msgstr "格式化基底..." +msgstr "设置基底格式..." #. qcsAY #: ChartCommands.xcu @@ -5974,7 +5974,7 @@ "Label\n" "value.text" msgid "Format Chart Area..." -msgstr "格式化图表区域..." +msgstr "为图表区域设置格式..." #. EJgaX #: ChartCommands.xcu @@ -5994,7 +5994,7 @@ "Label\n" "value.text" msgid "Format Title..." -msgstr "格式化标题..." +msgstr "设置标题格式..." #. E3VBk #: ChartCommands.xcu @@ -6024,7 +6024,7 @@ "Label\n" "value.text" msgid "Format Legend..." -msgstr "格式化图例..." +msgstr "设置图例格式..." #. xBCAR #: ChartCommands.xcu @@ -6064,7 +6064,7 @@ "Label\n" "value.text" msgid "Format Axis..." -msgstr "格式化轴..." +msgstr "设置轴格式..." #. AQnWn #: ChartCommands.xcu @@ -6104,7 +6104,7 @@ "Label\n" "value.text" msgid "Format Major Grid..." -msgstr "格式化主网格..." +msgstr "设置主网格格式..." #. oecFv #: ChartCommands.xcu @@ -6134,7 +6134,7 @@ "Label\n" "value.text" msgid "Format Minor Grid..." -msgstr "格式化次网格..." +msgstr "设置次网格格式..." #. 5tswt #: ChartCommands.xcu @@ -6164,7 +6164,7 @@ "Label\n" "value.text" msgid "Format Trend Line..." -msgstr "格式化趋势线..." +msgstr "设置趋势线格式..." #. AunGC #: ChartCommands.xcu @@ -6224,7 +6224,7 @@ "Label\n" "value.text" msgid "Format Trend Line Equation..." -msgstr "格式化趋势线方程式..." +msgstr "为趋势线方程式设置格式..." #. ho5Fo #: ChartCommands.xcu @@ -6254,7 +6254,7 @@ "Label\n" "value.text" msgid "Format Mean Value Line..." -msgstr "格式化均值线..." +msgstr "设置均值线格式..." #. QZnBn #: ChartCommands.xcu @@ -6284,7 +6284,7 @@ "Label\n" "value.text" msgid "Format X Error Bars..." -msgstr "格式化 X 误差线..." +msgstr "设置 X 误差线格式..." #. nLUhP #: ChartCommands.xcu @@ -6314,7 +6314,7 @@ "Label\n" "value.text" msgid "Format Y Error Bars..." -msgstr "格式化 Y 误差线..." +msgstr "设置 Y 误差线格式..." #. r2zFH #: ChartCommands.xcu @@ -6344,7 +6344,7 @@ "Label\n" "value.text" msgid "Format Data Labels..." -msgstr "格式化多个数据标签..." +msgstr "为多个数据标签设置格式..." #. Zt2Yk #: ChartCommands.xcu @@ -6374,7 +6374,7 @@ "Label\n" "value.text" msgid "Format Single Data Label..." -msgstr "格式化单个数据标签..." +msgstr "为单个数据标签设置格式..." #. 3wU84 #: ChartCommands.xcu @@ -6384,7 +6384,7 @@ "Label\n" "value.text" msgid "Format Data Series..." -msgstr "格式化数据序列..." +msgstr "设置数据序列格式..." #. 2A33p #: ChartCommands.xcu @@ -6394,7 +6394,7 @@ "Label\n" "value.text" msgid "Format Data Point..." -msgstr "格式化数据点..." +msgstr "设置数据点格式..." #. Gget5 #: ChartCommands.xcu @@ -6424,7 +6424,7 @@ "Label\n" "value.text" msgid "Format Stock Loss..." -msgstr "格式化股票损失..." +msgstr "设置股票损失格式..." #. gVH2f #: ChartCommands.xcu @@ -6434,7 +6434,7 @@ "Label\n" "value.text" msgid "Format Stock Gain..." -msgstr "格式化股票收益..." +msgstr "设置股票收益格式..." #. yp45D #: ChartCommands.xcu @@ -8794,7 +8794,7 @@ "Label\n" "value.text" msgid "Format Page" -msgstr "格式化页面" +msgstr "设置页面格式" #. FbDxM #: DrawImpressCommands.xcu @@ -8814,7 +8814,7 @@ "Label\n" "value.text" msgid "Format Slide" -msgstr "格式化幻灯片" +msgstr "设置幻灯片格式" #. GNR3n #: DrawImpressCommands.xcu @@ -18224,7 +18224,7 @@ "Label\n" "value.text" msgid "Search Formatted Display String" -msgstr "搜索已格式化的显示字符" +msgstr "搜索依设定格式显示成的字符串" #. hoECC #: GenericCommands.xcu @@ -20146,7 +20146,7 @@ "Label\n" "value.text" msgid "Image Control" -msgstr "图形控制" +msgstr "图形控件" #. EDfVz #: GenericCommands.xcu @@ -20416,7 +20416,7 @@ "Label\n" "value.text" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. Ra3DV #: GenericCommands.xcu @@ -24016,7 +24016,7 @@ "Label\n" "value.text" msgid "Image Button" -msgstr "图标按钮" +msgstr "图形按钮" #. 9MZPH #: GenericCommands.xcu @@ -24446,7 +24446,7 @@ "Label\n" "value.text" msgid "Image Control" -msgstr "图形控制" +msgstr "图形控件" #. yx6TJ #: GenericCommands.xcu @@ -24666,7 +24666,7 @@ "Label\n" "value.text" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. QWesw #: GenericCommands.xcu @@ -24876,7 +24876,7 @@ "Label\n" "value.text" msgid "Replace with Formatted Field" -msgstr "用格式化的字段替换" +msgstr "用已设定格式的字段替换" #. Ga7yE #: GenericCommands.xcu @@ -25256,7 +25256,7 @@ "Label\n" "value.text" msgid "Format All Comments" -msgstr "格式化所有批注" +msgstr "设置所有批注格式" #. daD6s #: GenericCommands.xcu @@ -25796,7 +25796,7 @@ "Label\n" "value.text" msgid "Formatting Mark" -msgstr "格式化标记" +msgstr "格式用标记" #. FbCCL #: GenericCommands.xcu @@ -27736,7 +27736,7 @@ "Label\n" "value.text" msgid "For~mats" -msgstr "格式化(~M)" +msgstr "格式(~M)" #. QBa62 #: MathCommands.xcu @@ -28156,7 +28156,7 @@ "Label\n" "value.text" msgid "Select all Formatted Fields" -msgstr "选取所有格式化的字段" +msgstr "选取所有已设定格式的字段" #. REJMA #: ReportCommands.xcu @@ -33816,7 +33816,7 @@ "Label\n" "value.text" msgid "Formatting Marks" -msgstr "格式化标记" +msgstr "格式用标记" #. FFNXc #: WriterCommands.xcu @@ -33826,7 +33826,7 @@ "ContextLabel\n" "value.text" msgid "For~matting Marks" -msgstr "格式标记(~M)" +msgstr "格式用标记(~M)" #. 9EFfF #: WriterCommands.xcu @@ -33836,7 +33836,7 @@ "TooltipLabel\n" "value.text" msgid "Toggle Formatting Marks" -msgstr "切换格式化标记的显示" +msgstr "切换是否显示格式用标记" #. 2GDoU #: WriterCommands.xcu @@ -34106,7 +34106,7 @@ "PopupLabel\n" "value.text" msgid "~Format All Comments..." -msgstr "格式化所有批注(~F)..." +msgstr "为所有批注设置格式(~F)..." #. kivrj #: WriterCommands.xcu @@ -34576,7 +34576,7 @@ "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "预格式化的文本(~F)" +msgstr "预设定格式的文本(~F)" #. nGLkD #: WriterCommands.xcu @@ -34586,7 +34586,7 @@ "Label\n" "value.text" msgid "Pre~formatted Text" -msgstr "预格式化的文本(~F)" +msgstr "预设定格式的文本(~F)" #. 6KDdJ #: WriterCommands.xcu @@ -34596,7 +34596,7 @@ "TooltipLabel\n" "value.text" msgid "Preformatted Text Paragraph Style" -msgstr "预格式化的文本段落样式" +msgstr "预设定格式的文本段落样式" #. fQ4qE #: WriterCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.1.3~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/officecfg/registry/data/org/openoffice/Office.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 14:56+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -1814,7 +1814,7 @@ "Left\n" "value.text" msgid "Left click, right or down arrow, spacebar, page down, enter, return, 'N'" -msgstr "鼠标左键,右/下箭头、空格、Page Down、回车 (换行)、或 N 键" +msgstr "鼠标左键, 右/下箭头, 空格, Page Down, 回车 (换行), 或 N 键" #. 4sxF6 #: PresenterScreen.xcu @@ -1834,7 +1834,7 @@ "Left\n" "value.text" msgid "Right click, left or up arrow, page up, backspace, 'P'" -msgstr "鼠标右键,左/上箭头、Page Up、退格、或 P 键" +msgstr "鼠标右键, 左/上箭头, Page Up, 退格, 或 P 键" #. yhyBn #: PresenterScreen.xcu @@ -2174,7 +2174,7 @@ "String\n" "value.text" msgid "Click to exit presentation..." -msgstr "点击退出演示..." +msgstr "请按鼠标左键退出演示..." #. rSDU4 #: PresenterScreen.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/reportdesign/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/reportdesign/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/reportdesign/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/reportdesign/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-05-23 22:48+0000\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1552979085.000000\n" #. FBVr9 @@ -512,7 +512,7 @@ #: reportdesign/inc/strings.hrc:83 msgctxt "RID_STR_PROPTITLE_IMAGECONTROL" msgid "Image Control" -msgstr "图像控件" +msgstr "图形控件" #. JAEb9 #: reportdesign/inc/strings.hrc:84 @@ -530,7 +530,7 @@ #: reportdesign/inc/strings.hrc:86 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. aFQ9E #: reportdesign/inc/strings.hrc:87 @@ -1011,7 +1011,7 @@ #: reportdesign/inc/strings.hrc:177 msgctxt "RID_STR_FORMATTEDFIELD" msgid "Formatted field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. ktd53 #: reportdesign/inc/strings.hrc:178 @@ -1209,7 +1209,7 @@ #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:289 msgctxt "conditionwin|ToolBoxItem6" msgid "Character Formatting" -msgstr "字符格式化" +msgstr "字符格式" #. PSCFe #: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:369 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/sc/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-12 08:36+0000\n" +"PO-Revision-Date: 2021-04-23 07:37+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -850,7 +850,7 @@ #: sc/inc/globstr.hrc:160 msgctxt "STR_SELCOUNT" msgid "Selected: $1, $2" -msgstr "已选择: $1, $2" +msgstr "已选中:$1 $2" #. FgTCG #. To translators: STR_SELCOUNT_ROWARG is $1 of STR_SELCOUNT. $1 of STR_SELCOUNT_ROWARG is number of rows @@ -3031,7 +3031,7 @@ #: sc/inc/globstr.hrc:517 msgctxt "STR_TABLE_COUNT" msgid "Sheet %1 of %2" -msgstr "工作表 %1 ,共 %2 张" +msgstr "工作表 %1,共 %2 张" #. pWcDK #: sc/inc/globstr.hrc:518 @@ -15112,7 +15112,7 @@ #: sc/inc/scfuncs.hrc:3746 msgctxt "SC_OPCODE_FIXED" msgid "Formats a number with a fixed number of places after the decimal point and thousands separator." -msgstr "用小数点位数和千位点来格式化一个数字。" +msgstr "将数字设置为小数点和千位分隔符后有固定位数的格式。" #. KZCZj #: sc/inc/scfuncs.hrc:3747 @@ -15124,7 +15124,7 @@ #: sc/inc/scfuncs.hrc:3748 msgctxt "SC_OPCODE_FIXED" msgid "The number to be formatted." -msgstr "要格式化的数字。" +msgstr "要设置格式的数字。" #. ysgvz #: sc/inc/scfuncs.hrc:3749 @@ -19675,7 +19675,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:420 msgctxt "conditionalentry|datetype" msgid "Last 7 days" -msgstr "过去7天" +msgstr "过去七天" #. 8FQAS #: sc/uiconfig/scalc/ui/conditionalentry.ui:421 @@ -19717,7 +19717,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:427 msgctxt "conditionalentry|datetype" msgid "This year" -msgstr "本年" +msgstr "今年" #. BRRzp #: sc/uiconfig/scalc/ui/conditionalentry.ui:428 @@ -19729,7 +19729,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:429 msgctxt "conditionalentry|datetype" msgid "Next year" -msgstr "下一年" +msgstr "明年" #. vgneU #: sc/uiconfig/scalc/ui/conditionalentry.ui:441 @@ -21271,7 +21271,7 @@ #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:39 msgctxt "datetimetransformationentry|type" msgid "Type:" -msgstr "类型(_T):" +msgstr "类型:" #. YKqPN #: sc/uiconfig/scalc/ui/datetimetransformationentry.ui:53 @@ -23367,7 +23367,7 @@ #: sc/uiconfig/scalc/ui/headerfootercontent.ui:614 msgctxt "headerfootercontent|extended_tip|HeaderFooterContent" msgid "Defines or formats a header or footer for a Page Style." -msgstr "定义或格式化某个页面样式的页眉与页脚。" +msgstr "定义页面样式中的页眉或页脚,或设置其格式。" #. CAMCt #: sc/uiconfig/scalc/ui/headerfooterdialog.ui:8 @@ -25835,7 +25835,7 @@ #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:39 msgctxt "numbertransformationentry|type" msgid "Type:" -msgstr "类型(_T):" +msgstr "类型:" #. mZxLU #: sc/uiconfig/scalc/ui/numbertransformationentry.ui:53 @@ -28632,13 +28632,13 @@ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:392 msgctxt "scgeneralpage|textfmtcb" msgid "Use printer metrics for text formatting" -msgstr "文字格式化时使用打印机参数" +msgstr "使用打印机度量衡设置文本格式" #. ECUd7 #: sc/uiconfig/scalc/ui/scgeneralpage.ui:400 msgctxt "extended_tip|textfmtcb" msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen." -msgstr "指定在打印以及格式化屏幕显示时应用打印机参数。" +msgstr "设定在打印以及为屏幕显示设置格式时,使用打印机的度量衡。" #. zW9SZ #: sc/uiconfig/scalc/ui/scgeneralpage.ui:412 @@ -31237,7 +31237,7 @@ #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:199 msgctxt "subtotaloptionspage|extended_tip|formats" msgid "Considers formatting attributes when sorting." -msgstr "排序时考虑格式化属性。" +msgstr "排序时考虑格式属性。" #. 4rGHy #: sc/uiconfig/scalc/ui/subtotaloptionspage.ui:210 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/sd/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-14 02:59+0000\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -1510,7 +1510,7 @@ #: sd/inc/strings.hrc:223 msgctxt "STR_PRES_SOFTEND" msgid "Click to exit presentation..." -msgstr "请点击鼠标左键,退出放映..." +msgstr "请按鼠标左键退出演示..." #. EzUVJ #: sd/inc/strings.hrc:224 @@ -7838,13 +7838,13 @@ #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:605 msgctxt "optimpressgeneralpage|printermetrics" msgid "Us_e printer metrics for document formatting" -msgstr "文档格式化时使用打印机参数(_E)" +msgstr "使用打印机度量衡设置文档格式(_E)" #. mTuAd #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:614 msgctxt "extended_tip|printermetrics" msgid "Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing." -msgstr "指定在打印以及格式化屏幕显示时应用打印机参数。如果未选中该框,则格式化屏幕显示和打印时将使用与打印机无关的版式。" +msgstr "指定在打印以及设置屏幕显示的格式时,使用打印机度量衡。如果未选中该框,则屏幕显示和打印时将使用与打印机无关的版式。" #. VVZZf #: sd/uiconfig/simpress/ui/optimpressgeneralpage.ui:625 @@ -8858,7 +8858,7 @@ #: sd/uiconfig/simpress/ui/publishingdialog.ui:1262 msgctxt "publishingdialog|extended_tip|resolution3Radiobutton" msgid "Select a high resolution for a high quality slide display." -msgstr "要获得显示高质量的幻灯片显示,请选择高分辨率。" +msgstr "要获得高质量的幻灯片显示,请选择高分辨率。" #. zsvW6 #: sd/uiconfig/simpress/ui/publishingdialog.ui:1280 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/sfx2/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/sfx2/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/sfx2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/sfx2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-03-13 07:26+0000\n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" "Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" @@ -1737,7 +1737,7 @@ #: include/sfx2/strings.hrc:313 msgctxt "STR_TEMPLATE_NAME12" msgid "Lights" -msgstr "光亮" +msgstr "灯光" #. AiFo4 #: include/sfx2/strings.hrc:314 @@ -1749,7 +1749,7 @@ #: include/sfx2/strings.hrc:315 msgctxt "STR_TEMPLATE_NAME14" msgid "Metropolis" -msgstr "都市" +msgstr "大都市" #. FFDBk #: include/sfx2/strings.hrc:316 @@ -1779,7 +1779,7 @@ #: include/sfx2/strings.hrc:320 msgctxt "STR_TEMPLATE_NAME19" msgid "Portfolio" -msgstr "工具箱" +msgstr "作品集" #. ysBGy #: include/sfx2/strings.hrc:321 @@ -1858,7 +1858,7 @@ #: include/sfx2/strings.hrc:334 msgctxt "STR_TEMPLATE_NAME32" msgid "BPMN" -msgstr "业务流程模型和标记 (BPMN)" +msgstr "业务流程 (BPMN)" #. ZaGGB #: include/sfx2/strings.hrc:336 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/svx/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/svx/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/svx/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/svx/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-12-15 12:48+0000\n" +"PO-Revision-Date: 2021-04-12 07:37+0000\n" "Last-Translator: Ming Hua \n" -"Language-Team: Chinese (Simplified) \n" +"Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562193991.000000\n" #. 3GkZj @@ -3030,7 +3030,7 @@ #: include/svx/strings.hrc:530 msgctxt "STR_TABLE_NUMFORMAT" msgid "Format cell" -msgstr "单元格格式" +msgstr "设置单元格格式" #. pSCJC #: include/svx/strings.hrc:531 @@ -6640,7 +6640,7 @@ #: include/svx/strings.hrc:1195 msgctxt "RID_STR_PROPTITLE_FORMATTED" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. WiNUf #: include/svx/strings.hrc:1196 @@ -6658,19 +6658,19 @@ #: include/svx/strings.hrc:1198 msgctxt "RID_STR_PROPTITLE_IMAGEBUTTON" msgid "Image Button" -msgstr "图像按钮" +msgstr "图形按钮" #. qT2Ed #: include/svx/strings.hrc:1199 msgctxt "RID_STR_PROPTITLE_IMAGECONTROL" msgid "Image Control" -msgstr "图像控件" +msgstr "图形控件" #. 6Qvho #: include/svx/strings.hrc:1200 msgctxt "RID_STR_PROPTITLE_FILECONTROL" msgid "File Selection" -msgstr "文件选择" +msgstr "选择文件" #. a7gAj #: include/svx/strings.hrc:1201 @@ -7619,7 +7619,7 @@ #: include/svx/strings.hrc:1368 msgctxt "RID_SVXSTR_FINDBAR_SEARCHFORMATTED" msgid "Formatted Display" -msgstr "格式化的显示结果" +msgstr "依格式显示效果" #. vYw6p #: include/svx/strings.hrc:1370 @@ -10506,7 +10506,7 @@ #: svx/inc/formnavi.hrc:45 msgctxt "RID_SVXSW_CONVERTMENU|ConvertToFormatted" msgid "Fo~rmatted Field" -msgstr "格式化的字段(~R)" +msgstr "已设定格式的字段(~R)" #. aEXn5 #: svx/inc/formnavi.hrc:46 @@ -13572,7 +13572,7 @@ #: svx/uiconfig/ui/colsmenu.ui:92 msgctxt "colsmenu|FormattedField" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. fWsc3 #: svx/uiconfig/ui/colsmenu.ui:100 @@ -13644,7 +13644,7 @@ #: svx/uiconfig/ui/colsmenu.ui:195 msgctxt "colsmenu|FormattedField1" msgid "Formatted Field" -msgstr "格式化的字段" +msgstr "已设定格式的字段" #. EH9hj #: svx/uiconfig/ui/colsmenu.ui:203 @@ -13938,7 +13938,7 @@ #: svx/uiconfig/ui/convertmenu.ui:157 msgctxt "convertmenu|ConvertToFormatted" msgid "Fo_rmatted Field" -msgstr "格式化的字段(_R)" +msgstr "已设定格式的字段(_R)" #. FtKsQ #: svx/uiconfig/ui/convertmenu.ui:166 @@ -16078,13 +16078,13 @@ #: svx/uiconfig/ui/findreplacedialog.ui:226 msgctxt "findreplacedialog|searchformatted" msgid "For_matted display" -msgstr "格式化的显示(_M)" +msgstr "依格式显示效果(_M)" #. vzB7B #: svx/uiconfig/ui/findreplacedialog.ui:235 msgctxt "findreplacedialog|extended_tip|searchformatted" msgid "Includes number formatting characters in the search." -msgstr "搜索时包含格式化为字符的数字。" +msgstr "搜索时匹配数值型数据依设定格式显示成的字符。" #. eTjvm #: svx/uiconfig/ui/findreplacedialog.ui:251 @@ -16258,7 +16258,7 @@ #: svx/uiconfig/ui/findreplacedialog.ui:849 msgctxt "findreplacedialog|includediacritics" msgid "Diacritic-_sensitive" -msgstr "区分附加符号(_S)" +msgstr "区分是否添加变音标记(_S)" #. J8Zou #: svx/uiconfig/ui/findreplacedialog.ui:864 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/sw/messages.po libreoffice-7.1.3~rc2/translations/source/zh-CN/sw/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/sw/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/sw/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-03-10 16:23+0100\n" -"PO-Revision-Date: 2021-01-15 16:36+0000\n" -"Last-Translator: Petro Ding \n" +"PO-Revision-Date: 2021-04-21 07:37+0000\n" +"Last-Translator: Ming Hua \n" "Language-Team: Chinese (Simplified) \n" "Language: zh-CN\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1566296512.000000\n" #. v3oJv @@ -3148,7 +3148,7 @@ #: sw/inc/strings.hrc:187 msgctxt "STR_POOLCOLL_HTML_PRE" msgid "Preformatted Text" -msgstr "预格式化的文本" +msgstr "预设定格式的文本" #. AA9gY #: sw/inc/strings.hrc:188 @@ -3529,7 +3529,7 @@ #: sw/inc/strings.hrc:260 msgctxt "STR_STATSTR_AUTOFORMAT" msgid "Formatting document automatically..." -msgstr "正在自动格式化文档..." +msgstr "正在自动设置文档格式..." #. APY2j #: sw/inc/strings.hrc:261 @@ -3711,7 +3711,7 @@ #: sw/inc/strings.hrc:292 msgctxt "STR_WORDCOUNT" msgid "Selected: $1, $2" -msgstr "已选择: $1, $2" +msgstr "已选中:$1,$2" #. E6L2o #. To translators: STR_WORDCOUNT_WORDARG is $1 of STR_WORDCOUNT. $1 of STR_WORDCOUNT is number of words @@ -3735,7 +3735,7 @@ #: sw/inc/strings.hrc:299 msgctxt "STR_WORDCOUNT_NO_SELECTION" msgid "$1, $2" -msgstr "$1, $2" +msgstr "$1,$2" #. uzSNE #. To translators: STR_WORDCOUNT_WORDARG_NO_SELECTION is $1 of STR_WORDCOUNT_NO_SELECTION. @@ -4743,7 +4743,7 @@ #: sw/inc/strings.hrc:472 msgctxt "STR_TABLE_NUMFORMAT" msgid "Format cell" -msgstr "格式化单元格" +msgstr "设置单元格格式" #. UbSKw #: sw/inc/strings.hrc:473 @@ -8720,7 +8720,7 @@ #: sw/inc/strings.hrc:1206 msgctxt "STR_REDLINE_FORMAT" msgid "Formatted" -msgstr "已格式化" +msgstr "已设定格式" #. YWr7C #: sw/inc/strings.hrc:1207 @@ -8840,7 +8840,7 @@ #: sw/inc/strings.hrc:1226 msgctxt "STR_FORMAT_HEADER" msgid "Format Header..." -msgstr "格式化页眉..." +msgstr "设置页眉格式..." #. DrAUe #: sw/inc/strings.hrc:1227 @@ -8852,7 +8852,7 @@ #: sw/inc/strings.hrc:1228 msgctxt "STR_FORMAT_FOOTER" msgid "Format Footer..." -msgstr "格式化页脚..." +msgstr "设置页脚格式..." #. ApT5B #: sw/inc/strings.hrc:1230 @@ -10009,7 +10009,7 @@ #: sw/uiconfig/swriter/ui/annotationmenu.ui:90 msgctxt "annotationmenu|formatall" msgid "Format All Comments..." -msgstr "格式化所有批注..." +msgstr "为所有批注设置格式..." #. NPgr3 #: sw/uiconfig/swriter/ui/asciifilterdialog.ui:8 @@ -10765,7 +10765,7 @@ #: sw/uiconfig/swriter/ui/autotext.ui:591 msgctxt "autotext|extended_tip|AutoTextDialog" msgid "Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3." -msgstr "创建、编辑或插入自动图文集。可以将已经格式化的文字、带有图形的文字、表格和字段保存为自动图文集。要快速插入自动图文集,请在文档中输入自动图文集的缩写,然后按 F3 键。" +msgstr "创建、编辑或插入自动图文集。可以将已设定格式的文字、带有图形的文字、表格和字段保存为自动图文集。要快速插入自动图文集,请在文档中输入自动图文集的缩写,然后按 F3 键。" #. bBcSd #: sw/uiconfig/swriter/ui/bibliographyentry.ui:8 @@ -13394,7 +13394,7 @@ #: sw/uiconfig/swriter/ui/envformatpage.ui:552 msgctxt "envformatpage|label12" msgid "F_ormat" -msgstr "格式化(_O)" +msgstr "格式(_O)" #. Ay9BJ #: sw/uiconfig/swriter/ui/envformatpage.ui:566 @@ -20996,7 +20996,7 @@ #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:9503 msgctxt "notebookbar_groupedbar_full|FormatButton" msgid "F_ormat" -msgstr "格式化(_O)" +msgstr "格式(_O)" #. RFMpm #: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:5160 @@ -21750,7 +21750,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:332 msgctxt "numparapage|checkCB_COUNT_PARA" msgid "_Include this paragraph in line numbering" -msgstr "在编号中包含这个段落(_I)" +msgstr "在行编号中包含这个段落(_I)" #. mhtFH #: sw/uiconfig/swriter/ui/numparapage.ui:343 @@ -22090,7 +22090,7 @@ #: sw/uiconfig/swriter/ui/optcompatpage.ui:235 msgctxt "optcompatpage|format" msgid "Use printer metrics for document formatting" -msgstr "文档格式化时使用打印机参数" +msgstr "使用打印机度量衡设置文档格式" #. R7PfG #: sw/uiconfig/swriter/ui/optcompatpage.ui:236 @@ -22408,7 +22408,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:167 msgctxt "extended_tip|hiddentext" msgid "Displays text that uses the character format \"hidden\", when View - Formatting Marks is enabled." -msgstr "在「视图 - 格式化标记」启用时,显示使用「隐藏」字符格式的文字。" +msgstr "在「视图 - 格式用标记」启用时,显示使用「隐藏」字符格式的文字。" #. ubosK #: sw/uiconfig/swriter/ui/optformataidspage.ui:178 @@ -22964,7 +22964,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:74 msgctxt "extended_tip|header" msgid "Specifies that the first row of the table is formatted with the \"Table heading\" Paragraph Style." -msgstr "指定表格首行以「表格标题」段落样式进行格式化。" +msgstr "指定表格首行的格式以「表格标题」段落样式来设置。" #. pUDwB #: sw/uiconfig/swriter/ui/opttablepage.ui:85 @@ -23018,7 +23018,7 @@ #: sw/uiconfig/swriter/ui/opttablepage.ui:198 msgctxt "extended_tip|numformatting" msgid "Specifies that numbers in a text table are recognized and formatted as numbers." -msgstr "指定将文本表格中的数字识别为数字,并按数字格式格式化。" +msgstr "指定将文本表格中的数字识别为数字,并设置为数字格式。" #. U6v8M #: sw/uiconfig/swriter/ui/opttablepage.ui:209 @@ -25012,7 +25012,7 @@ #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:32 msgctxt "queryredlinedialog|extended_tip|cancel" msgid "Rejects all of the formatting changes." -msgstr "拒绝所有格式化变更。" +msgstr "拒绝所有对格式的变更。" #. cF9tc #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:44 @@ -25024,7 +25024,7 @@ #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:53 msgctxt "queryredlinedialog|extended_tip|ok" msgid "Applies all of the formatting changes." -msgstr "应用所有格式化变更。" +msgstr "应用所有对格式的变更。" #. 2L3ML #: sw/uiconfig/swriter/ui/queryredlinedialog.ui:65 @@ -28690,7 +28690,7 @@ #: sw/uiconfig/swriter/ui/tocstylespage.ui:225 msgctxt "tocstylespage|extended_tip|assign" msgid "Formats the selected index level with the selected paragraph style." -msgstr "使用选中的段落样式格式化选中的索引级别。" +msgstr "将选中索引级别的格式设为选中的段落样式。" #. ddB7L #: sw/uiconfig/swriter/ui/tocstylespage.ui:248 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-CN/swext/mediawiki/help.po libreoffice-7.1.3~rc2/translations/source/zh-CN/swext/mediawiki/help.po --- libreoffice-7.1.2~rc2/translations/source/zh-CN/swext/mediawiki/help.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-CN/swext/mediawiki/help.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,19 +3,20 @@ 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: 2018-11-15 13:53+0100\n" -"PO-Revision-Date: 2019-07-10 01:31+0000\n" -"Last-Translator: Dian LI \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\n" +"POT-Creation-Date: 2019-07-11 18:38+0200\n" +"PO-Revision-Date: 2021-03-27 18:14+0000\n" +"Last-Translator: Ming Hua \n" +"Language-Team: Chinese (Simplified) \n" +"Language: zh-CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Pootle 2.8\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1562722300.000000\n" +#. 7EFBE #: help.tree msgctxt "" "help.tree\n" @@ -24,6 +25,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. E2gyu #: help.tree msgctxt "" "help.tree\n" @@ -32,6 +34,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. qUKTw #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -40,6 +43,7 @@ msgid "Wiki Publisher" msgstr "Wiki Publisher" +#. FJwZh #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -48,6 +52,7 @@ msgid "Wiki;Wiki PublisherWiki Publisherextensions;MediaWiki" msgstr "Wiki;Wiki 发布器Wiki 发布器扩展;MediaWiki" +#. AQP9D #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -56,6 +61,7 @@ msgid "Wiki Publisher" msgstr "Wiki Publisher" +#. Cn2Za #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -64,6 +70,7 @@ msgid "By using the Wiki Publisher you can upload your current Writer text document to a MediaWiki server. After uploading, all wiki users can read your document on the wiki." msgstr "使用「Wiki 发布器」,您可以将当前的 Writer 文本文档上传至 MediaWiki 服务器。上传之后,所有 wiki 用户都可以在 wiki 中阅读您的文档。" +#. CJbT6 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -72,6 +79,7 @@ msgid "Choose File - Send - To MediaWiki to upload the current Writer document to a MediaWiki server." msgstr "选择「文件 - 发送 - 发送至 MediaWiki」可将当前的 Writer 文档上传至 MediaWiki 服务器。" +#. GWuG5 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -80,6 +88,7 @@ msgid "System Requirements" msgstr "系统要求" +#. Qu7zC #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -88,6 +97,7 @@ msgid "Java Runtime Environment" msgstr "Java 运行时环境" +#. TpDDo #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -96,6 +106,7 @@ msgid "A wiki account on a supported MediaWiki server" msgstr "受支持的 MediaWiki 服务器中的 wiki 帐户" +#. XCFLj #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -104,6 +115,7 @@ msgid "Installing Wiki Publisher" msgstr "正在安装 Wiki Publisher" +#. a43c7 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -112,6 +124,7 @@ msgid "Before you use the Wiki Publisher, ensure that %PRODUCTNAME uses a Java Runtime Environment (JRE). To check the status of the JRE, choose Tools - Options - %PRODUCTNAME - Advanced. Ensure that “Use a Java runtime environment” is checked and that a Java runtime folder is selected in the big listbox. If no JRE was activated, then activate a JRE of version 1.4 or later and restart %PRODUCTNAME." msgstr "在使用 wiki 发布器之前,请您确保 %PRODUCTNAME 已经使用了 Java 运行环境 (Java Runtime Environment, JRE)。要检查JRE的状态,请在菜单中选择「工具 - 选项 - %PRODUCTNAME - 高级」。请确保该界面中的「使用 Java 运行时环境」选项已被勾选,并且列表框中已经有一个 Java 运行时文件夹被勾选。如果没有已勾选的 JRE,请勾选一个大于等于 1.4 版本的 JRE,然后重新启动 %PRODUCTNAME。" +#. AgmN5 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -120,6 +133,7 @@ msgid "To Connect to a Wiki" msgstr "连接至 Wiki" +#. v3JN9 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -128,6 +142,7 @@ msgid "Note: You can store your user name and password for all respective dialogs inside %PRODUCTNAME. The password will be stored in a secure way, where access is maintained by a master password. To enable the master password, choose Tools - Options - %PRODUCTNAME - Security." msgstr "注: 您可以为 %PRODUCTNAME 中各相应对话框储存用户名与密码。密码将加密储存,存取由主密码维护。要启用主密码,请选择「工具 - 选项 - %PRODUCTNAME - 安全」。" +#. 5xi4b #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -136,6 +151,7 @@ msgid "Note: If you connect to the web using a proxy server, enter the proxy information to Tools - Options - Internet - Proxy, and restart the software." msgstr "注意: 如果您使用代理服务器连接至 Web,请在「工具 - 选项 - Internet - 代理」中输入代理信息,然后重新启动软件。" +#. CCnbF #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -144,6 +160,7 @@ msgid "Open a Writer document, and choose Tools - Options - Internet - MediaWiki." msgstr "打开 Writer 文档,然后选择「工具 - 选项 - Internet - MediaWiki」。" +#. fGcyZ #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -152,6 +169,7 @@ msgid "In the Options dialog, click Add." msgstr "在「选项」对话框,点击「添加」。" +#. pkAFV #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -160,6 +178,7 @@ msgid "In the MediaWiki dialog, enter the account information for the wiki." msgstr "在「MediaWiki」对话框,输入 wiki 的账号信息。" +#. L5NjG #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -168,6 +187,7 @@ msgid "In the URL text box, enter the address of a wiki that you want to connect to." msgstr "在「URL」文本框中,输入您想要连接到的 wiki 地址。" +#. xc4AX #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -176,6 +196,7 @@ msgid "You can copy the URL from a web browser and paste it into the textbox." msgstr "您可以从 Web 浏览器中复制 URL 并将其粘贴到文本框中。" +#. HKsED #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -184,6 +205,7 @@ msgid "In the Username box, enter your user ID for your wiki account." msgstr "在「用户名」框中,输入您的 wiki 帐号。" +#. RRpwP #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -192,6 +214,7 @@ msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty." msgstr "如果该wiki允许匿名写操作,您可以将用户名和密码框留空。" +#. JvYgU #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -200,6 +223,7 @@ msgid "In the Password box, enter the password for your wiki account, then click OK." msgstr "在「密码」框中,输入您的 wiki 帐号的密码,然后点「确定」。" +#. 5c9bL #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -208,6 +232,7 @@ msgid "Optionally enable “Save password” to save the password between sessions. A master password is used to maintain access to all saved passwords. Choose Tools - Options - %PRODUCTNAME - Security to enable the master password. “Save password” is unavailable when the master password is not enabled." msgstr "您可以勾选「保存密码」以方便后续访问。「主密码」被用来管理所有的已保存密码的会话。您可以在「工具 - 选项 - %PRODUCTNAME - 安全」中启用主密码。如果您尚未设置主密码,则在当前的对话框中「保存密码」选项不可用。" +#. Afp56 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -216,6 +241,7 @@ msgid "To Create a New Wiki Page" msgstr "创建新的 Wiki 页面" +#. rWxKE #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -224,6 +250,7 @@ msgid "Open a Writer document." msgstr "打开 Writer 文档。" +#. VNAGB #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -232,6 +259,7 @@ msgid "Write the content of the wiki page. You can use formatting such as text formats, headings, footnotes, and more. See the list of supported formats." msgstr "编写wiki页面的内容。您可以使用文本格式、标题样式、脚注等。请参见受支持的格式清单。" +#. sqvcC #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -240,6 +268,7 @@ msgid "Choose File - Send - To MediaWiki." msgstr "选择「文件 - 发送 - 发送至 MediaWiki」。" +#. 6jREj #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -248,6 +277,7 @@ msgid "In the Send to MediaWiki dialog, specify the settings for your entry." msgstr "在「发送至 MediaWiki」对话框,指定所撰写条目的设置。" +#. i7MPF #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -256,6 +286,7 @@ msgid "MediaWiki server: Select the wiki." msgstr "「MediaWiki 服务器」: 选择 wiki。" +#. Vghfw #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -264,6 +295,7 @@ msgid "Title: Type the title of your page. Type the title of an existing page to overwrite the page with your current text document. Type a new title to create a new page on the wiki." msgstr "「标题」: 输入wiki页面的标题。输入已有页面的标题可以使用当前文本文档中的内容覆盖该wiki页面的内容;输入一个不存页面的标题可以新建一个wiki页面。" +#. AAS4F #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -272,6 +304,7 @@ msgid "Summary: Enter an optional short summary of your page." msgstr "「摘要」: 输入页面的可选简短摘要。" +#. QidFi #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -280,6 +313,7 @@ msgid "This is a minor edit: Check this box to mark the uploaded page as a minor edit of the already existing page with the same title." msgstr "「这是次要编辑」: 选中此框可将上载的页面标记为现有同标题页面的次要编辑。" +#. 6qSqt #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -288,6 +322,7 @@ msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." msgstr "「在浏览器中显示」: 勾选这个框可以使用您的系统默认浏览器打开并显示已上传的wiki页面。" +#. Ehnz2 #: wiki.xhp msgctxt "" "wiki.xhp\n" @@ -296,6 +331,7 @@ msgid "Click Send." msgstr "点击「发送」。" +#. JoNcG #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -304,6 +340,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. MQ3NB #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -312,6 +349,7 @@ msgid "MediaWiki" msgstr "MediaWiki" +#. kXBwS #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -320,6 +358,7 @@ msgid "Use the MediaWiki dialog to add or edit your MediaWiki account settings." msgstr "使用「MediaWiki」对话框可添加或编辑您的 MediaWiki 帐户设置。" +#. F32QW #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -328,6 +367,7 @@ msgid "Enter the URL of a MediaWiki server, starting with \"https://\"." msgstr "输入以「https://」开头的 MediaWiki 服务器 URL。" +#. PiGDX #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -336,6 +376,7 @@ msgid "Enter your user name on the MediaWiki server. Leave empty for anonymous access." msgstr "输入您的 MediaWiki 服务器用户名。保留为空可进行匿名访问。" +#. FSKfy #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -344,6 +385,7 @@ msgid "Enter your password on the MediaWiki server. Leave empty for anonymous access." msgstr "输入您的 MediaWiki 服务器密码。保留为空可进行匿名访问。" +#. zLCx7 #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -352,6 +394,7 @@ msgid "Enable to store your password between sessions. The master password must be enabled; see Tools - Options - %PRODUCTNAME - Security." msgstr "启用以为未来的会话保存密码。要使用保存密码功能,您必须在「工具 - 选项 - %PRODUCTNAME - 安全」中启用主密码。" +#. EDeV9 #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -360,6 +403,7 @@ msgid "Enter the Internet address of a wiki server in a format like “https://wiki.documentfoundation.org” or copy the URL from a web browser." msgstr "输入 wiki 服务器的地址,格式类似于「https://wiki.documentfoundation.org」,或者从浏览器中复制 URL。" +#. boKaA #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -368,6 +412,7 @@ msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password." msgstr "如果 wiki 允许匿名访问,则您可以将帐户文本框保留为空。否则,请输入您的用户名和密码。" +#. M6uYF #: wikiaccount.xhp msgctxt "" "wikiaccount.xhp\n" @@ -376,6 +421,7 @@ msgid "If you have enabled the master password feature on the Security tab page of the Tools - Options - %PRODUCTNAME dialog, then the software can store your password and automatically insert the data where necessary. Enable the Save password checkbox to store your password." msgstr "如果您在「工具 - 选项 - %PRODUCTNAME」对话框的「安全」选项卡启用了主密码功能,软件将储存您的密码,并在需要的时候自动插入数据。启用「保存密码」复选框可储存密码。" +#. TpaPN #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -384,6 +430,7 @@ msgid "MediaWiki Formats" msgstr "MediaWiki 格式" +#. C6oUL #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -392,6 +439,7 @@ msgid "MediaWiki Formats" msgstr "MediaWiki 格式" +#. sKvY6 #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -400,6 +448,7 @@ msgid "The following list gives an overview of the text formats that the Wiki Publisher can upload to the wiki server." msgstr "以下简要列出了Wiki发布器支持的可以上传到wiki服务器的文本格式清单。" +#. wC6T7 #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -408,6 +457,7 @@ msgid "The OpenDocument format used by Writer and the MediaWiki format are quite different. Only a subset of all features can be transformed from one format to the other." msgstr "Writer 所使用的开放文档 (OpenDocument) 格式与 MediaWiki 格式有很大的不同。只有一小部分功能可以在两种格式之间相互转换。" +#. R74Ai #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -416,6 +466,7 @@ msgid "Headings" msgstr "标题" +#. 5nuqC #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -424,6 +475,7 @@ msgid "Apply a heading paragraph style to the headings in your Writer document. The wiki will show the heading styles of the same outline level, formatted as defined by the wiki engine." msgstr "在Writer文档中为标题段落应用标题样式。在wiki中将会显示为相同大纲级别的标题样式,具体的显示格式由wiki引擎定义。" +#. YAjYW #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -432,6 +484,7 @@ msgid "Hyperlinks" msgstr "超链接" +#. u3Gky #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -440,6 +493,7 @@ msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links." msgstr "原生的OpenDocument超链接会被转换为「外部」wiki链接。因此,内置的OpenDocument链接功能仅仅只能用来创建指向wiki外部目标的链接。要创建指向相同wiki域的其他主题的wiki链接,请使用wiki链接。" +#. ULYGr #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -448,6 +502,7 @@ msgid "Lists" msgstr "列表" +#. Cah9p #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -456,6 +511,7 @@ msgid "Lists can be exported reliably when the whole list uses a consistent list style. Use the Numbering or Bullets icon to generate a list in Writer. If you need a list without numbering or bullets, use Format - Bullets and Numbering to define and apply the respective list style." msgstr "只有当您使用了一致的列表样式时,列表才可以被可靠地导出为wiki格式。在Writer中请使用「项目符号与编号」图标来创建列表。如果您需要创建没有项目符号与编号的列表,请使用「格式 - 项目符号与编号」来定义并应用相应的列表样式。" +#. GJaHG #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -464,6 +520,7 @@ msgid "Paragraphs" msgstr "段落" +#. LBFtS #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -472,6 +529,7 @@ msgid "Alignment" msgstr "对齐" +#. Gdu22 #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -480,22 +538,25 @@ msgid "Explicit text alignment should not be used in wiki articles. Nevertheless, text alignment is supported for left, centered, and right alignment of text." msgstr "在wiki文章中不应当使用显式的文本对其属性。尽管如此,文本的左对齐、居中对其以及右对齐属性仍然是被支持的。" +#. gUGmf #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" "hd_id7486190\n" "help.text" msgid "Pre-formatted text" -msgstr "预格式化文本" +msgstr "预设定格式的文本" +#. Luezz #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" "par_id1459395\n" "help.text" msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text." -msgstr "在Writer中被应用了等宽字体的段落在wiki中会被转换为预格式化的文本。预格式化的文本在wiki中将会显示为周围有边框的文本。" +msgstr "使用等宽字体的段落格式会被转换为预设定格式的文本。预设定格式的文本在wiki中将会显示为周围有边框的文本。" +#. 22nLD #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -504,6 +565,7 @@ msgid "Character styles" msgstr "字符样式" +#. fvYKL #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -512,6 +574,7 @@ msgid "Character styles modify the appearance of parts of a paragraph. The transformation supports bold, italics, bold/italics, subscript and superscript. All fixed-width fonts are transformed into the wiki typewriter style." msgstr "字符样式可用来装饰段落中某一部分文本的外观。这种格式转换目前支持加粗、斜体、加粗斜体、上标和下标。所有的等宽字体的字符将被转换为wiki中的typewriter样式。" +#. uhHcL #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -520,6 +583,7 @@ msgid "Images" msgstr "图像" +#. G3qA6 #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -528,6 +592,7 @@ msgid "Images cannot be exported by a transformation producing a single file of wiki text. However, if the image is already uploaded to the target wiki domain (e. g., Wikimedia Commons), then the transformation produces a valid image tag that includes the image. Image captions are also supported." msgstr "无法通过生成单个 Wiki 文本文件的变换导出图像。但是,如果图像已上载至目标 Wiki 域 (例如 WikiMedia Commons),则变换会生成有效的图像标记 (标记中包括图像)。此外,还支持图像标题。" +#. nGuGG #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -536,6 +601,7 @@ msgid "Tables" msgstr "表格" +#. w8BUf #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -544,6 +610,7 @@ msgid "Simple tables are supported well. Table headers are translated into corresponding wiki-style table headers. However, custom formatting of table borders, column sizes and background colors is ignored." msgstr "简单的表格格式也被支持。表格的表头行会被转换为相应的 wiki 样式的表格表头。但是,自定义的表格边框、列宽以及背景颜色会被忽略。" +#. DF3o9 #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -552,6 +619,7 @@ msgid "Joined Cells" msgstr "组合单元格" +#. b3CZe #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -560,6 +628,7 @@ msgid "OpenDocument and especially LibreOffice represent tables that have joined cells that span rows as tables with nested tables. In contrast, the wiki model of table is to declare column and row spans for such joined cells." msgstr "OpenDocument,尤其是 LibreOffice,将含有跨行合并单元格的表格作为嵌套表格对待。相反,wiki 的表格模型会声明此类合并单元格所跨的列数与行数。" +#. vn3bR #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -568,6 +637,7 @@ msgid "If only columns of the same row are joined, the result of the transformation resembles the source document very well." msgstr "如果只组合同一行的各列,变换的结果将与原文档非常相似。" +#. DCjAG #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -576,6 +646,7 @@ msgid "Borders" msgstr "边框" +#. GXBsK #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -584,6 +655,7 @@ msgid "Irrespective of custom table styles for border and background, a table is always exported as “prettytable,” which renders in the wiki engine with simple borders and bold header." msgstr "无论在writer中表格的边框和背景颜色如何设置,所有的表格在wiki中都会被导出为具有「prettytable,」属性的表格,在wiki引擎中这种表格会被渲染为具有简单边框以及粗体表头。" +#. kDcRS #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -592,6 +664,7 @@ msgid "Character set and special characters" msgstr "字符集和特殊字符" +#. zv83m #: wikiformats.xhp msgctxt "" "wikiformats.xhp\n" @@ -600,6 +673,7 @@ msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice." msgstr "格式转换时字符集被固定为UTF-8. 取决于您的操作系统的设置,该字符集可能不是您系统中的默认字符集。这可能会导致特殊字符在默认设置下看起来会乱码。但是,您可以将您的编辑器设置为UTF-8编码来解决这一问题。如果您的编辑器不支持更改编码字符集,您可以将转换结果显示在Firefox浏览器中,然后在浏览器中将编码切换为UTF-8. 之后,您可以将转换结果复制粘贴到您想要的程序中。" +#. CTEdB #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -608,6 +682,7 @@ msgid "Send to MediaWiki" msgstr "发送至 MediaWiki" +#. Uomdh #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -616,6 +691,7 @@ msgid "Send to MediaWiki" msgstr "发送至 MediaWiki" +#. F4YJF #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -624,6 +700,7 @@ msgid "In the Send to MediaWiki dialog, specify the settings for your current wiki upload." msgstr "在「发送至 MediaWiki」对话框中,指定您当前 wiki 的上传设置。" +#. KmSsg #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -632,6 +709,7 @@ msgid "Select the MediaWiki server where you want to publish your document. Click Add to add a new server to the list." msgstr "选择用于发布文档的 MediaWiki 服务器。点击「添加」可向列表中添加新的服务器。" +#. D9EhE #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -640,6 +718,7 @@ msgid "Enter the title of your wiki entry. This is the top heading of your wiki entry. For a new entry, the title must be unique on this wiki. If you enter an existing title, your upload will overwrite the existing wiki entry." msgstr "输入 wiki 条目的标题。这是 wiki 条目的顶部标题。对于新的条目,标题必须在 wiki 中唯一。如果您输入了一个已经存在的标题,则上传时 Writer 中的内容将会覆盖已有 wiki 的内容。" +#. ACh6X #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -648,6 +727,7 @@ msgid "Enter an optional short summary or comment. See https://meta.wikimedia.org/wiki/Help:Edit_summary." msgstr "输入可选的简短摘要或注释。 参见 https://meta.wikimedia.org/wiki/Help:Edit_summary。" +#. 6dCeT #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -656,6 +736,7 @@ msgid "This is a minor edit: Check this box to mark the uploaded page as a minor edit of the already existing page with the same title." msgstr "「这是次要编辑」: 选中此框可将上载的页面标记为现有同标题页面的次要编辑。" +#. KF3qq #: wikisend.xhp msgctxt "" "wikisend.xhp\n" @@ -664,6 +745,7 @@ msgid "Show in web browser: Check this box to open your system web browser and show the uploaded wiki page." msgstr "「在浏览器中显示」: 选择这个选项可以在浏览器中打开已上传到wiki中的页面。" +#. rt8Df #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -672,6 +754,7 @@ msgid "MediaWiki Options" msgstr "MediaWiki 选项" +#. R7RVE #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -680,6 +763,7 @@ msgid "MediaWiki Options" msgstr "MediaWiki 选项" +#. 39jox #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -688,6 +772,7 @@ msgid "You can add, edit and remove MediaWiki servers. Open the options dialog by going to Tools - Options - Internet - MediaWiki." msgstr "您可以添加、编辑或移除 MediaWiki 服务器。可通过「工具 - 选项 - Internet - MediaWiki」打开选项对话框。" +#. 44myu #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -696,6 +781,7 @@ msgid "Click Add to add a new wiki server.
Select an entry and click Edit to edit the account settings.
Select an entry and click Remove to remove the entry from the list.
" msgstr "点击」添加「以添加新的wiki服务器。
选择一个条目并点击」编辑「以编辑该服务器的账户设置。
选择一个条目并点击」移除「可将该条目从列表中移除。
" +#. 5JhsD #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -704,6 +790,7 @@ msgid "Opens the MediaWiki dialog to add a new entry to the list." msgstr "打开「MediaWiki」对话框,向列表中添加新条目。" +#. Q2kSq #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -712,6 +799,7 @@ msgid "Opens the MediaWiki dialog to edit the selected entry." msgstr "打开「MediaWiki」对话框,编辑选中的条目。" +#. GCH8n #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" @@ -720,6 +808,7 @@ msgid "Removes the selected entry from the list." msgstr "从列表中删除选中的条目。" +#. mi2NR #: wikisettings.xhp msgctxt "" "wikisettings.xhp\n" diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/chart2/messages.po libreoffice-7.1.3~rc2/translations/source/zh-TW/chart2/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/chart2/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/chart2/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2020-08-12 05:35+0000\n" -"Last-Translator: Po-Yen Huang \n" -"Language-Team: Chinese (Traditional) \n" +"PO-Revision-Date: 2021-03-24 15:36+0000\n" +"Last-Translator: Po-Yen Huang \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1547561555.000000\n" #. NCRDD @@ -1152,7 +1152,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:178 msgctxt "chartdatadialog|extended_tip|MoveLeftColumn" msgid "Switches the current column with its neighbor at the left." -msgstr "" +msgstr "切換目前欄與其左側相鄰欄。" #. DfxQy #: chart2/uiconfig/ui/chartdatadialog.ui:191 @@ -1176,7 +1176,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:214 msgctxt "chartdatadialog|extended_tip|MoveUpRow" msgid "Switches the current row with its neighbor above." -msgstr "" +msgstr "切換目前列與其上方相鄰列。" #. TvbuK #: chart2/uiconfig/ui/chartdatadialog.ui:227 @@ -1194,7 +1194,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:366 msgctxt "chartdatadialog|extended_tip|ChartDataDialog" msgid "Opens the Data Table dialog where you can edit the chart data." -msgstr "" +msgstr "開啟「資料範圍」對話框,您可以在此編輯圖表資料。" #. KbkRw #: chart2/uiconfig/ui/charttypedialog.ui:8 @@ -1464,7 +1464,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:447 msgctxt "dlg_DataLabel|extended_tip|NF_LABEL_DEGREES" msgid "Enter the counterclockwise rotation angle for the data labels." -msgstr "" +msgstr "輸入資料標籤的順時針旋轉角度。" #. Jhjwb #: chart2/uiconfig/ui/dlg_DataLabel.ui:461 @@ -1494,19 +1494,19 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:561 msgctxt "dlg_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "將置換後的資料標籤連結到資料點(_C)" #. MJdmK #: chart2/uiconfig/ui/dlg_DataLabel.ui:570 msgctxt "dlg_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "畫一條連結資料標籤與資料點的線" #. UKVF9 #: chart2/uiconfig/ui/dlg_DataLabel.ui:588 msgctxt "dlg_DataLabel|label3" msgid "Leader Lines" -msgstr "" +msgstr "指引線" #. 6bBph #: chart2/uiconfig/ui/dlg_DataLabel.ui:604 @@ -1536,7 +1536,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:137 msgctxt "dlg_InsertErrorBars|extended_tip|RB_NONE" msgid "Does not show any error bars." -msgstr "" +msgstr "不要顯示任何誤差線。" #. sMZoy #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:149 @@ -1548,7 +1548,7 @@ #: 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 "" +msgstr "顯示您在 [參數] 區域指定的參數值。" #. UzxQQ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:171 @@ -1560,7 +1560,7 @@ #: 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 "" +msgstr "顯示百分比。顯示參考對應的資料點。在 [參數] 區域設定百分比。" #. tSBH9 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:207 @@ -1728,7 +1728,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:627 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 "" +msgstr "啟用將正誤差值同時作為負誤差值。您可以僅變更「正 (+)」方塊中的值。該值會自動複製到「負 (-)」方塊中。" #. ogVMg #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:645 @@ -1866,7 +1866,7 @@ #: 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 "主軸與輔助軸可具有不同的顯示比例。例如,可將一個軸的顯示比例調整為 2 英吋,而將另一個軸的顯示比例調整為 1.5 英吋。" +msgstr "主軸與輔助軸可具有不同的顯示比例。例如,可將一個軸的顯示比例調整為 2 英吋,而將另一個軸的顯示比例調整為 1.5 英吋。 " #. CAFjD #: chart2/uiconfig/ui/insertaxisdlg.ui:253 @@ -2004,13 +2004,13 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:125 msgctxt "inserttitledlg|extended_tip|maintitle" msgid "Enter the desired title for the chart." -msgstr "" +msgstr "輸入圖表的標題。" #. 5eiq7 #: chart2/uiconfig/ui/inserttitledlg.ui:143 msgctxt "inserttitledlg|extended_tip|subtitle" msgid "Enter the desired subtitle for the chart." -msgstr "" +msgstr "輸入圖表的副題。" #. y8KiH #: chart2/uiconfig/ui/inserttitledlg.ui:182 @@ -2034,19 +2034,19 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:229 msgctxt "inserttitledlg|extended_tip|primaryXaxis" msgid "Enter the desired title for the X axis of the chart." -msgstr "" +msgstr "輸入圖表 X 軸的標題。" #. 3m5Dk #: chart2/uiconfig/ui/inserttitledlg.ui:247 msgctxt "inserttitledlg|extended_tip|primaryYaxis" msgid "Enter the desired title for the Y axis of the chart." -msgstr "" +msgstr "輸入圖表 Y 軸的標題。" #. PY2EU #: chart2/uiconfig/ui/inserttitledlg.ui:265 msgctxt "inserttitledlg|extended_tip|primaryZaxis" msgid "Enter the desired title for the Z axis of the chart." -msgstr "" +msgstr "輸入圖表 Z 軸的標題。" #. aHvzY #: chart2/uiconfig/ui/inserttitledlg.ui:282 @@ -2070,13 +2070,13 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:351 msgctxt "inserttitledlg|extended_tip|secondaryXaxis" msgid "Enter the desired secondary title for the X axis of the chart." -msgstr "" +msgstr "輸入圖表 X 軸的次要標題。" #. bnwti #: chart2/uiconfig/ui/inserttitledlg.ui:369 msgctxt "inserttitledlg|extended_tip|secondaryYaxis" msgid "Enter the desired secondary title for the Y axis of the chart." -msgstr "" +msgstr "輸入圖表 Y 軸的次要標題。" #. XvJwD #: chart2/uiconfig/ui/inserttitledlg.ui:386 @@ -2088,7 +2088,7 @@ #: chart2/uiconfig/ui/inserttitledlg.ui:418 msgctxt "inserttitledlg|extended_tip|InsertTitleDialog" msgid "Opens a dialog to enter or modify the titles in a chart." -msgstr "" +msgstr "開啟輸入或修改圖表中標題的對話方塊。" #. 23FsQ #: chart2/uiconfig/ui/paradialog.ui:8 @@ -2658,7 +2658,7 @@ #: chart2/uiconfig/ui/smoothlinesdlg.ui:136 msgctxt "smoothlinesdlg|extended_tip|SplineTypeComboBox" msgid "Apply a line curve model." -msgstr "" +msgstr "套用曲線模型。" #. eecxc #: chart2/uiconfig/ui/smoothlinesdlg.ui:171 @@ -2688,7 +2688,7 @@ #: chart2/uiconfig/ui/smoothlinesdlg.ui:255 msgctxt "smoothlinesdlg|extended_tip|SmoothLinesDialog" msgid "Apply a line curve model." -msgstr "" +msgstr "套用曲線模型。" #. RyJg5 #: chart2/uiconfig/ui/steppedlinesdlg.ui:132 @@ -2700,7 +2700,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:142 msgctxt "steppedlinesdlg|extended_tip|step_start_rb" msgid "Start with horizontal line and step up vertically at the end." -msgstr "" +msgstr "從水平線開始,最後垂直向上。" #. iJCAt #: chart2/uiconfig/ui/steppedlinesdlg.ui:153 @@ -2712,7 +2712,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:164 msgctxt "steppedlinesdlg|extended_tip|step_center_x_rb" msgid "Start to step up vertically and end with horizontal line." -msgstr "" +msgstr "從垂直開始,最後為水平線。" #. vtGik #: chart2/uiconfig/ui/steppedlinesdlg.ui:175 @@ -2724,7 +2724,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:186 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 "" +msgstr "從水平線開始,在 X 值中間垂直上移,然後以水平線結束。" #. X3536 #: chart2/uiconfig/ui/steppedlinesdlg.ui:197 @@ -2736,7 +2736,7 @@ #: chart2/uiconfig/ui/steppedlinesdlg.ui:208 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 "" +msgstr "垂直向上到 Y 值中間,繪製一條水平線,然後以垂直向上結束。" #. oDDMr #: chart2/uiconfig/ui/steppedlinesdlg.ui:236 @@ -3054,7 +3054,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:312 msgctxt "tp_3D_SceneIllumination|FT_LIGHTSOURCE" msgid "_Light Source" -msgstr "" +msgstr "光源(_L)" #. WssJA #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:358 @@ -3078,7 +3078,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:395 msgctxt "tp_3D_SceneIllumination|FT_AMBIENTLIGHT" msgid "_Ambient Light" -msgstr "" +msgstr "環境光(_A)" #. snUGf #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:439 @@ -3090,7 +3090,7 @@ #: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:497 msgctxt "tp_3D_SceneIllumination|extended_tip|tp_3D_SceneIllumination" msgid "Set the light sources for the 3D view." -msgstr "" +msgstr "設定 3D 檢視的光源。" #. XRVrG #: chart2/uiconfig/ui/tp_AxisPositions.ui:48 @@ -3162,7 +3162,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:197 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 "" +msgstr "將軸指定到第一個/最後一個刻度線上。這樣可以讓資料點視覺上在值軸開始/結束。" #. gSFeZ #: chart2/uiconfig/ui/tp_AxisPositions.ui:208 @@ -3174,7 +3174,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:218 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 "" +msgstr "將軸指定到刻度線間。這樣可以讓資料點視覺上在值軸一段距離處開始/結束。" #. ExBDm #: chart2/uiconfig/ui/tp_AxisPositions.ui:235 @@ -3492,7 +3492,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:379 msgctxt "tp_ChartType|extended_tip|properties" msgid "Opens a dialog to set the line or curve properties." -msgstr "" +msgstr "開啟對話方塊來設定直線或曲線屬性。" #. KzGZQ #: chart2/uiconfig/ui/tp_ChartType.ui:396 @@ -3762,7 +3762,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:379 msgctxt "tp_DataLabel|extended_tip|NF_LABEL_DEGREES" msgid "Enter the counterclockwise rotation angle for the data labels." -msgstr "" +msgstr "輸入資料標籤的順時針旋轉角度。" #. VArif #: chart2/uiconfig/ui/tp_DataLabel.ui:393 @@ -3792,19 +3792,19 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:493 msgctxt "tp_DataLabel|CB_CUSTOM_LEADER_LINES" msgid "_Connect displaced data labels to data points" -msgstr "" +msgstr "將置換後的資料標籤連結到資料點(_C)" #. BXobT #: chart2/uiconfig/ui/tp_DataLabel.ui:502 msgctxt "tp_DataLabel|extended_tip|CB_CUSTOM_LEADER_LINES" msgid "Draws a line connecting the data labels to the data points" -msgstr "" +msgstr "畫一條連結資料標籤與資料點的線" #. MBFBB #: chart2/uiconfig/ui/tp_DataLabel.ui:520 msgctxt "tp_DataLabel|label3" msgid "Leader Lines" -msgstr "" +msgstr "指引線" #. iDheE #: chart2/uiconfig/ui/tp_DataLabel.ui:536 @@ -3822,7 +3822,7 @@ #: 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 "" +msgstr "不顯示選取的資料序列或資料點的圖例項目。" #. DUQwA #: chart2/uiconfig/ui/tp_DataPointOption.ui:67 @@ -3972,7 +3972,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:68 msgctxt "tp_ErrorBars|extended_tip|RB_NONE" msgid "Does not show any error bars." -msgstr "" +msgstr "不要顯示任何誤差線。" #. Cq44D #: chart2/uiconfig/ui/tp_ErrorBars.ui:80 @@ -3984,7 +3984,7 @@ #: 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 "" +msgstr "顯示您在 [參數] 區域指定的參數值。" #. Njqok #: chart2/uiconfig/ui/tp_ErrorBars.ui:103 @@ -3996,7 +3996,7 @@ #: 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 "" +msgstr "顯示百分比。顯示參考對應的資料點。在 [參數] 區域設定百分比。" #. qCQY8 #: chart2/uiconfig/ui/tp_ErrorBars.ui:141 @@ -4164,7 +4164,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:566 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 "" +msgstr "啟用將正誤差值同時作為負誤差值。您可以僅變更「正 (+)」方塊中的值。該值會自動複製到「負 (-)」方塊中。" #. BEj3C #: chart2/uiconfig/ui/tp_ErrorBars.ui:584 @@ -4272,7 +4272,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:231 msgctxt "tp_LegendPosition|extended_tip|CB_NO_OVERLAY" msgid "Specifies whether the legend should overlap the chart." -msgstr "" +msgstr "指定圖例是否應與圖表重疊。" #. 82yue #: chart2/uiconfig/ui/tp_LegendPosition.ui:249 @@ -4494,7 +4494,7 @@ #: 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 "" +msgstr "對於某些類型的軸,您可以選擇將軸格式化為文字或日期,或是自動偵測類型。" #. Vf7vB #: chart2/uiconfig/ui/tp_Scale.ui:165 @@ -4563,7 +4563,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:295 msgctxt "tp_Scale|extended_tip|LB_TIME_RESOLUTION" msgid "Resolution can be set to show days, months, or years as interval steps." -msgstr "" +msgstr "可以設定解析度以將間隔設定為數天、數月或數年。" #. ezN7c #: chart2/uiconfig/ui/tp_Scale.ui:307 @@ -4581,13 +4581,13 @@ #: chart2/uiconfig/ui/tp_Scale.ui:367 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 "" +msgstr "可以將主要間隔設定為顯示特定天數、月或年。" #. BD5BE #: chart2/uiconfig/ui/tp_Scale.ui:388 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 "" +msgstr "可以將主要間隔設定為顯示特定天數、月或年。" #. a2Gjv #: chart2/uiconfig/ui/tp_Scale.ui:415 @@ -4623,7 +4623,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:531 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 "" +msgstr "可以將次要間隔設定為顯示特定天數、月或年。" #. X8FAK #: chart2/uiconfig/ui/tp_Scale.ui:543 @@ -4815,7 +4815,7 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:447 msgctxt "tp_SeriesToAxis|extended_tip|CB_LEGEND_ENTRY_HIDDEN" msgid "Do not show legend entry for the selected data series or data point." -msgstr "" +msgstr "不顯示選取的資料序列或資料點的圖例項目。" #. q8CTC #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:465 @@ -4881,7 +4881,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:164 msgctxt "tp_Trendline|extended_tip|polynomial" msgid "A polynomial trend line is shown with a given degree." -msgstr "" +msgstr "多項式趨勢線以給定的次方數顯示。" #. BkiE2 #: chart2/uiconfig/ui/tp_Trendline.ui:175 @@ -4893,7 +4893,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:186 msgctxt "tp_Trendline|extended_tip|movingAverage" msgid "A moving average trend line is shown with a given period." -msgstr "" +msgstr "顯示了指定範圍的移動平均趨勢線。" #. mGkUE #: chart2/uiconfig/ui/tp_Trendline.ui:205 @@ -4905,13 +4905,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:210 msgctxt "tp_Trendline|extended_tip|label3" msgid "Degree of polynomial trend line." -msgstr "" +msgstr "多項式趨勢線的次方數。" #. EAkKg #: chart2/uiconfig/ui/tp_Trendline.ui:228 msgctxt "tp_Trendline|extended_tip|degree" msgid "Degree of polynomial trend line." -msgstr "" +msgstr "多項式趨勢線的次方數。" #. ZvFov #: chart2/uiconfig/ui/tp_Trendline.ui:253 @@ -4923,13 +4923,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:258 msgctxt "tp_Trendline|extended_tip|label4" msgid "Number of points to calculate average of moving average trend line." -msgstr "" +msgstr "計算移動平均趨勢線平均的點數量。" #. g3mex #: chart2/uiconfig/ui/tp_Trendline.ui:276 msgctxt "tp_Trendline|extended_tip|period" msgid "Number of points to calculate average of moving average trend line." -msgstr "" +msgstr "計算移動平均趨勢線平均的點數量。" #. ptaCA #: chart2/uiconfig/ui/tp_Trendline.ui:371 @@ -4947,7 +4947,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:414 msgctxt "tp_Trendline|extended_tip|label7" msgid "Trend line is extrapolated for higher x-values." -msgstr "" +msgstr "為更高的 x 值推斷趨勢線。" #. tUrKr #: chart2/uiconfig/ui/tp_Trendline.ui:427 @@ -4959,7 +4959,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:433 msgctxt "tp_Trendline|extended_tip|label8" msgid "Trend line is extrapolated for lower x-values." -msgstr "" +msgstr "為更低的 x 值推斷趨勢線。" #. BGkFJ #: chart2/uiconfig/ui/tp_Trendline.ui:473 @@ -4971,7 +4971,7 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:485 msgctxt "tp_Trendline|extended_tip|setIntercept" msgid "For linear, polynomial and exponential trend lines, intercept value is forced to a given value." -msgstr "" +msgstr "對於線性、多項式與指數趨勢線,截距被強制指定為給定的值。" #. CSHNm #: chart2/uiconfig/ui/tp_Trendline.ui:496 @@ -5007,19 +5007,19 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:546 msgctxt "tp_Trendline|extended_tip|label5" msgid "Name of trend line in legend." -msgstr "" +msgstr "圖例中趨勢線的名稱。" #. FBT3Y #: chart2/uiconfig/ui/tp_Trendline.ui:563 msgctxt "tp_Trendline|extended_tip|entry_name" msgid "Name of trend line in legend." -msgstr "" +msgstr "圖例中趨勢線的名稱。" #. C4C6e #: chart2/uiconfig/ui/tp_Trendline.ui:588 msgctxt "tp_Trendline|extended_tip|interceptValue" msgid "Value of intercept if it is forced." -msgstr "" +msgstr "若已強制指定的截距值。" #. GEKL2 #: chart2/uiconfig/ui/tp_Trendline.ui:601 @@ -5031,13 +5031,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:607 msgctxt "tp_Trendline|extended_tip|label6" msgid "Name of X variable in trend line equation." -msgstr "" +msgstr "趨勢線方程式中 X 變數的值。" #. Fz8b3 #: chart2/uiconfig/ui/tp_Trendline.ui:624 msgctxt "tp_Trendline|extended_tip|entry_Xname" msgid "Name of X variable in trend line equation." -msgstr "" +msgstr "趨勢線方程式中 X 變數的值。" #. GDQuF #: chart2/uiconfig/ui/tp_Trendline.ui:637 @@ -5049,13 +5049,13 @@ #: chart2/uiconfig/ui/tp_Trendline.ui:643 msgctxt "tp_Trendline|extended_tip|label9" msgid "Name of Y variable in trend line equation." -msgstr "" +msgstr "趨勢線方程式中 Y 變數的值。" #. WHNXu #: chart2/uiconfig/ui/tp_Trendline.ui:660 msgctxt "tp_Trendline|extended_tip|entry_Yname" msgid "Name of Y variable in trend line equation." -msgstr "" +msgstr "趨勢線方程式中 Y 變數的值。" #. 9WeUe #: chart2/uiconfig/ui/tp_Trendline.ui:677 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/cui/messages.po libreoffice-7.1.3~rc2/translations/source/zh-TW/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" -"PO-Revision-Date: 2021-03-22 17:37+0000\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" +"PO-Revision-Date: 2021-03-30 14:37+0000\n" "Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4.2\n" +"X-Generator: LibreOffice\n" "X-POOTLE-MTIME: 1565612879.000000\n" #. GyY9M @@ -2209,7 +2209,7 @@ #: 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 "" +msgstr "您可以在「投影片放映」▸「投影片放映設定」▸「循環播放」中指定的暫停後重新開始放映。" #. 5SoBD #: cui/inc/tipoftheday.hrc:67 @@ -2456,1071 +2456,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "%PRODUCTNAME 支援四種巨集安全層級(從低到非常高)和信任的來源功能。" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 打算申請 Google Summer of Code (GSoC) 的參與計劃,請見:" - -#. SNTbc -#: 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 "您知道可以對部分的文字內容附上評註嗎?請利用 %MOD1+%MOD2+C 快捷鍵。" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "需要移動一個或多個段落嗎?其實不需要動用剪下和貼上:利用鍵盤快捷鍵 %MOD1+%MOD2+方向鍵 (上鍵/下鍵)" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Change the basic fonts for the predefined template or current document per Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Basic Fonts." msgstr "如果想變更預先定義範本或目前文件的基本字型,請利用「工具 ▸ 選項 ▸ %PRODUCTNAME Writer ▸ 基本字型」。" #. 5Anfg #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01040300.html -#: cui/inc/tipoftheday.hrc:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Open a CSV file as a new sheet in the current spreadsheet via Sheet ▸ Sheet from file." msgstr "透過「工作表 ▸ 從檔案插入工作表」可以在目前的試算表中開啟 CSV 檔作為新的工作表。" #. aJtLS -#: cui/inc/tipoftheday.hrc:113 +#: cui/inc/tipoftheday.hrc:112 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 "在 Writer 中的粗體、義式斜體、底線格式中輸入時,您可以利用 %MOD1+Shift+X 快捷鍵(移除直接字元格式)繼續回到預設文字特性。" #. iXjDF -#: cui/inc/tipoftheday.hrc:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "利用 %MOD1+%MOD2+Shift+V 將剪貼簿的內容以無格式設定的文字貼上。" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "透過「工具 ▸ 註腳與尾註...」可以自訂註腳外觀。" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "想要變更某部分文字的拼字檢查設定嗎?點按狀態列的語言區,或是更好的辦法:套用樣式。" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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 "Writer 可以在兩張連續的奇數頁(或偶數頁)之間插入空白頁。到列印對話視窗的「%PRODUCTNAME Writer」分頁標籤中勾選「列印自動插入的空白頁」。" #. YVF2y -#: cui/inc/tipoftheday.hrc:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to precisely position? %MOD2+arrow Keys move objects (shapes, pictures, formulas) by one pixel." msgstr "需要精準定位嗎?%MOD2+方向鍵可以讓物件(形狀、圖形、公式)一次移動一個像素。" #. FhocH -#: cui/inc/tipoftheday.hrc:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "如果您有安裝內建說明的話,按下 F1 可以取用。不然,也可以線上查看:" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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 "在 %PRODUCTNAME Calc 中以右鍵點按狀態列,選取「選取計數」能顯示目前選了幾個儲存格。" #. h7afF -#: cui/inc/tipoftheday.hrc:124 +#: cui/inc/tipoftheday.hrc:123 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 "想要讓某一部分的 %PRODUCTNAME Writer 頁面有兩個以上的欄?「插入 ▸ 區段」,以「欄」分頁標籤作設定,接著在該區段裡放入文字。" #. DmbfV -#: cui/inc/tipoftheday.hrc:125 +#: cui/inc/tipoftheday.hrc:124 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." msgstr "在 %PRODUCTNAME Calc 中可使用「資料 ▸ 統計」作取樣、描述性統計、變異數分析、相關……等統計作業。" #. cVaQ3 -#: cui/inc/tipoftheday.hrc:126 +#: cui/inc/tipoftheday.hrc:125 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 "您可以不用動用剪貼簿,就能從一份工作表複製到另一份工作表。選取要複製的區塊,%MOD1+左鍵點按目標工作表的分頁標籤,再用「工作表 ▸ 填入儲存格 ▸ 填入工作表」。" #. QDmWG -#: cui/inc/tipoftheday.hrc:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "您可以透過「工具 ▸ 選項 ▸ 檢視 ▸ 使用者介面」變更 %PRODUCTNAME 的外觀。" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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 "在 %PRODUCTNAME Impress 中,可以利用「插入 ▸ 媒體 ▸ 相簿」的「相簿」功能,將一系列圖片製作成投影片放映秀。" #. BcK3A -#: cui/inc/tipoftheday.hrc:129 +#: cui/inc/tipoftheday.hrc:128 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 "您可以顯示公式而非顯示計算結果,「檢視 ▸ 顯示公式」(或是「工具 ▸ 選項 ▸ %PRODUCTNAME Calc ▸ 檢視 ▸ 顯示 ▸ 公式」)。" #. bY8ve -#: cui/inc/tipoftheday.hrc:130 +#: cui/inc/tipoftheday.hrc:129 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 "%PRODUCTNAME 是由親切友善的社群開發,貢獻者來自世界各地,有數百位成員。歡迎您加入我們的行列,需要的領域不只寫程式,其他能力也都非常歡迎。" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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 "慣用左手嗎?啟用「工具 ▸ 選項 ▸ 語言設定 ▸ 語言 ▸ 亞洲語言」,接著勾選「工具 ▸ 選項 ▸ %PRODUCTNAME Writer ▸ 檢視 ▸ 尺規 ▸ 向右對齊」可以讓卷軸切換到左手邊。" #. Bs9w9 -#: cui/inc/tipoftheday.hrc:132 +#: cui/inc/tipoftheday.hrc:131 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 "想讓您的章節題名總是以新頁開始嗎?編輯「標題1 (段落樣式) ▸ 排文和分頁 ▸ 隔斷符」,勾選「插入 ▸ 頁面 ▸ 之前」。" #. UVRgV -#: cui/inc/tipoftheday.hrc:133 +#: cui/inc/tipoftheday.hrc:132 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 "日期/時間的值只是從某個挑選日期為零起的日數;在這段數字中,整數部分代表日期,小數部分為時間(一天經過的部分),而 0.5 代表正中午。" #. o2fy3 -#: cui/inc/tipoftheday.hrc:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "Shift+%MOD1+Del 會從游標所在位置刪除到目前句子的結尾。" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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 "在公式中可以使用欄標籤或列標籤作運算。舉例,如果您有兩欄,分別為「Time」和「KM」,那麼 =Time/KM 則可以計算每公里幾分鐘。" #. E7GZz -#: cui/inc/tipoftheday.hrc:136 +#: cui/inc/tipoftheday.hrc:135 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 "受夠 Calc 複製儲存格時周圍出現「繞圈行軍的螞蟻」嗎?按下「Esc」鍵可以阻止它們;複製的內容依然可以繼續貼上。" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "想要成為 %PRODUCTNAME 推動大使嗎?我們有針對開發者、專家、專業訓練師的認證計劃。" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Mix portrait and landscape orientations in a Calc spreadsheet by applying different page styles on sheets." msgstr "您可以在 Calc 試算表中,讓工作表套用不同的頁面樣式,就能混合使用橫向與直向的工作表。" #. eRzRG -#: cui/inc/tipoftheday.hrc:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "在「樣式」側邊欄中選擇「階層式」檢視,可以看出樣式之間的關係。" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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 "想要設定開啟超連結的 %MOD1 鍵嗎?「工具 ▸ 選項 ▸ %PRODUCTNAME ▸ 安全 ▸ 選項 ▸ 『需要%MOD1+點按,才能開啟超連結』 」。" #. cCnpG -#: cui/inc/tipoftheday.hrc:143 +#: cui/inc/tipoftheday.hrc:142 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 "您如果想要檢視公式個別元素的計算,請選取對應的元素並按 F9。" #. 9HtDt -#: cui/inc/tipoftheday.hrc:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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 "想要讓試算表只顯示其中最高的數值嗎?選取選單中的「資料 ▸ 自動篩選」,再點按下拉箭頭,選擇「前10個」。" #. wAQLx -#: cui/inc/tipoftheday.hrc:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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 "如果要在 Writer 中快速製作數學物件,請先輸入好公式,反白標記,使用「插入 ▸ 物件 ▸ 公式」來轉換文字。" #. Zj7NA -#: cui/inc/tipoftheday.hrc:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "在 %PRODUCTNAME 中要安裝新的拼字檢查字典很簡單:有很多相關擴充套件可以利用。" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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 "%PRODUCTNAME 也提供可攜版讓您方便四處作業。即便沒有電腦的系統管理員權利,您依然可以將 %PRODUCTNAME Portable 安裝到您的硬碟上。" #. GSVYQ -#: cui/inc/tipoftheday.hrc:152 +#: cui/inc/tipoftheday.hrc:151 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Writer lets you number your footnotes per page, chapter, document: Tools ▸ Footnotes and Endnotes ▸ Footnotes tab ▸ Counting." msgstr "Writer 讓您可以根據每頁、每章、每份文件為單位計算註腳數目:先設定好註腳後,對註腳按下右鍵,選擇「 註腳與尾註 ▸ 註腳標籤頁 ▸ 計數」。" #. gpVRV -#: cui/inc/tipoftheday.hrc:153 +#: cui/inc/tipoftheday.hrc:152 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 "您的 Writer 文件在重新開啟後,游標沒有出現在上次文件儲存時的位置?請到「工具 ▸ 選項 ▸ %PRODUCTNAME ▸ 使用者資料 ▸ 姓氏/名字」填入您的姓或名。" #. udDRb -#: cui/inc/tipoftheday.hrc:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "想要管理引用的出處資料嗎?可以善用第三方提供的擴充套件。" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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 "想要在多份工作表中的相同位置插入某個數值嗎?選取那些工作表:按住 %MOD1 鍵不放,點按完各個分頁標籤後再輸入。" #. XsdGx -#: cui/inc/tipoftheday.hrc:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "您可以自訂滑鼠中鍵的用途,「工具 ▸ 選項 ▸ %PRODUCTNAME ▸ 檢視 ▸ 滑鼠中鍵」。" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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 "想要在一張橫向紙張上,列印兩頁的直向頁面嗎(將 A4 縮印為 A5)?到「檔案 ▸ 列印」的「每張紙上縮印的頁數」選 2。" #. GmBZk -#: cui/inc/tipoftheday.hrc:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "您可以將經常使用的文字定義為「自動圖文集」。之後就能在任何 Writer 文件中根據其命名與快捷鍵,或是工具列來插入這段文字。" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 不是從左計算到右,而是根據括號、指數、乘號、除號、加號、減號的順序先後計算。" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "此處可取得 %PRODUCTNAME 文件與免費的使用者指引電子書:" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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 "需要將 Writer 寫的內容作成報告嗎?「檔案 ▸ 傳送 ▸ 大綱送至簡報」可以自動根據大綱製作投影片。" #. ZdyGi -#: cui/inc/tipoftheday.hrc:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "想要在試算表中管理與呈現超連結嗎?請以 HYPERLINK 函式插入連結。" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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 "取消勾選「工具 ▸ 選項 ▸ %PRODUCTNAME Calc ▸ 檢視 ▸ 遠近調整」的「同步工作表」,這樣 Calc 中的每一張工作表都有自己的遠近調整係數。" #. qK7Xz -#: cui/inc/tipoftheday.hrc:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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 "追蹤公式中使用的儲存格,例如前導參照 (Shift+F9)、從屬參照 (Shift+F5)(或使用「工具 ▸ 偵探」)。每按一次,您就更進一步追蹤該鏈的前一項。" #. mJ6Gu #. local help missing -#: cui/inc/tipoftheday.hrc:171 +#: cui/inc/tipoftheday.hrc:170 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 "想要一個步驟同時插入公式並計算數目嗎?輸入 fn 後按下 F3。程式會插入一則自動圖文集,公式與數字以表格方式對齊。" #. 8rA8u -#: cui/inc/tipoftheday.hrc:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "您可以使用 Android 或 iPhone 遠端遙控您的 Impress 簡報。" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "想要知道現在這個月有幾天嗎?使用 DAYSINMONTH(TODAY()) 函式。" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "您的數字在試算表中以 ### 呈現嗎?代表該欄太窄無法顯示所有位數。" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "透過「工具 ▸ 選項 ▸ OpenCL」可以啟用公式儲存格的大量平行運算。" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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 "Draw/Impress 中的「繪圖」工具列提供「連接線」工具,方便您製作優秀的流程圖,也能選擇性複製/貼上該物件到 Writer 中。" #. Uq3tZ -#: cui/inc/tipoftheday.hrc:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "您的捐款將是我們全球性社群的有力支柱。" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "您想要對某個日期再加上 x 個月嗎?請用 =EDATE(date;months)。" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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 "如果要選取一塊內含資料,周圍由空白列和欄包住的連續範圍儲存格,可以用 %MOD1+* (數字鍵盤上)。" #. u4FZP -#: cui/inc/tipoftheday.hrc:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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 "想要將公式匯出成 CSV 檔?「檔案 ▸ 另存新檔 ▸ 類型選:文字 CSV」,勾選「編輯篩選器設定值」,並且在下個對話視窗中勾選「將儲存格的公式儲存起來,而不是計算出數值」。" #. XLN9z -#: cui/inc/tipoftheday.hrc:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "當您使用 %PRODUCTNAME Impress 時,演講者主控臺是很棒的功能。您試過了嗎?" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "點按工具列上的 PDF 圖示一下,就能輕鬆將您的文件轉換成 PDF 檔。" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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 "想要不捲動螢幕畫面就選取一大片範圍的儲存格嗎?在命名方塊中輸入範圍參照(例:A1:A1000 接著按 Enter)的定義。" #. Tc7Nf -#: cui/inc/tipoftheday.hrc:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "想要知道有效的指令列參數有哪些嗎?可以提供 --help 或 -h 或 -? 參數給 soffice 指令執行。" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "您可以到「表格 ▸ 屬性... ▸ 排文和分頁 ▸ 文字方向」旋轉儲存格表格方向。" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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 "如果要在 %PRODUCTNAME Draw 中變更尺規的 0/0 點位置,從工作區域左上角將雙尺規交叉圖拖曳到您希望的點。" #. Fcnsr -#: cui/inc/tipoftheday.hrc:192 +#: cui/inc/tipoftheday.hrc:191 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 "想要在 Calc 中一個步驟移動兩側有欄的中央欄嗎?點按欄標頭後,接著點按其中的儲存格,以 %MOD2 鍵搭配滑鼠按鍵拖曳到您所要的目標位置。" #. 3xJeA -#: cui/inc/tipoftheday.hrc:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "利用語匯索引檔可自動標記英文字母順序索引條目。" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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 "使用「格式 ▸ 對齊」(或是右鍵情境選單)來精確定位 Draw/Impress 中的物件:選取一個物件時會以頁面為中心,或是根據群組狀況個別處理。" #. TijVG -#: cui/inc/tipoftheday.hrc:195 +#: cui/inc/tipoftheday.hrc:194 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 "在 Writer 文件中請不要以 Tab 鍵作為項目定位之用。您應該根據想達成的狀態來判斷做法,有時沒有框線的表格會是個好選擇。" #. 6GtGH -#: cui/inc/tipoftheday.hrc:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." msgstr "%PRODUCTNAME 可以在您插入物件時自動加入帶有編號的圖表標示。請見「工具 ▸ 選項 ▸ %PRODUCTNAME Writer ▸ 自動圖表標示」。" #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html -#: cui/inc/tipoftheday.hrc:198 +#: cui/inc/tipoftheday.hrc:197 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 "有了 %PRODUCTNAME 您可以使用您的 GMail 帳號執行郵件合併列印,請利用「工具 ▸ 選項 ▸ %PRODUCTNAME Writer ▸ 合併列印電子郵件」。" #. 87ozj #. local help missing -#: cui/inc/tipoftheday.hrc:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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 "您想要開始使用 Basic 巨集嗎?請看一下「工具 ▸ 巨集 ▸ 編輯巨集」下的範例。" #. 5fYgo -#: cui/inc/tipoftheday.hrc:201 +#: cui/inc/tipoftheday.hrc:200 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 "在 Writer 中可以利用快捷鍵套用標題段落樣式:%MOD1+1 套用標題 1,%MOD1+2 套用標題 2,依此類推。" #. DA82R -#: cui/inc/tipoftheday.hrc:202 +#: cui/inc/tipoftheday.hrc:201 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not get lost in large documents. Use the Navigator (F5) to find your way through the content." msgstr "不想在大型文件中失去方向嗎?利用「助手」(F5) 可協助您找出內容位置。" #. naXEz -#: cui/inc/tipoftheday.hrc:203 +#: cui/inc/tipoftheday.hrc:202 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 "您可以利用「編輯 ▸ 尋找與取代」直接插入特殊字元:在輸入欄位中按滑鼠右鍵,或是按下 Shift+%MOD1+S。" #. vNBR3 -#: cui/inc/tipoftheday.hrc:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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 "想要在 Draw 中看見物件但不要列印出來嗎?先畫在某個圖層上,再取消「可列印」的旗標設定(在分頁標籤上點按右鍵,選取「修改圖層」)。" #. CGQaY -#: cui/inc/tipoftheday.hrc:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "如果要在您的文件中插入目前的日期,請用「插入 ▸ 欄位 ▸ 日期」。" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "您的 Writer 文件中有太多影像嗎?可以用「檢視 ▸ 影像與圖表」停用其顯示以加速作業。" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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 "重新命名 Impress 中的投影片,可以幫助您在「互動」操作下「前往頁面或物件」時,會有定義更精確的摘要名稱可用,而不是看到投影片 1、投影片 2……這類。" #. JBgEb -#: cui/inc/tipoftheday.hrc:210 +#: cui/inc/tipoftheday.hrc:209 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 "章節標號對話視窗,讓您可以設定章節號前方所要顯示的文字。例如,輸入「章節」來顯示「章節 1」。" #. z3rPd -#: cui/inc/tipoftheday.hrc:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "您可以簽署既有的 PDF 檔,也可以驗證那些簽章。" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "經常利用某一種文件來製作新文件嗎?考慮做成範本吧。" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." msgstr "利用 Calc 中的「格式 ▸ 條件式 ▸ 管理」,可以找出那些條件式格式設定所定義的儲存格。" #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html -#: cui/inc/tipoftheday.hrc:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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 "想要讓螢幕顯示和列印呈現的版面配置相同嗎?勾選「工具 ▸ 選項 ▸ %PRODUCTNAME Calc ▸ 一般 ▸ 文字格式設定使用印表機字型尺度」。" #. zD57W -#: cui/inc/tipoftheday.hrc:222 +#: cui/inc/tipoftheday.hrc:221 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 "Writer 能協助您作檔案備份:「檔案 ▸ 另存副本」讓您可以一邊繼續處理原始檔案,另一邊儲存新的一份文件。" #. fkvVZ -#: cui/inc/tipoftheday.hrc:223 +#: cui/inc/tipoftheday.hrc:222 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 "當您建立出一個以其他樣式為基礎的樣式以後,您可以輸入百分比或是字級點值(例:110% 或 -2pt 或 +5pt)。" #. PBjFr -#: cui/inc/tipoftheday.hrc:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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 "您可以利用選單中的「檔案 ▸ 精靈 ▸ 文件轉換器」,批次將微軟 Office 文件大量轉換為 OpenDocument 格式。" #. WMueE -#: cui/inc/tipoftheday.hrc:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." msgstr "需要移動 Writer 表格的位置嗎?請先選「表格 ▸ 選取 ▸ 表格」,再按「插入 ▸ 外框 ▸ 外框」,接著就能移動到您所希望擺放的位置了。" #. TmaSP -#: cui/inc/tipoftheday.hrc:228 +#: cui/inc/tipoftheday.hrc:227 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 "透過「工具 ▸ 自動圖文集 ▸ 自動圖文集 ▸ 匯入」,您可以選取一份內容中有您想匯入自動圖文集條目的 Word 文件或範本。" #. kwxqQ -#: cui/inc/tipoftheday.hrc:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "從 PDF 檔或網頁來源貼文字到文件上時遇到困難嗎?試著以無設定格式的文字貼上 (%MOD1+%MOD2+Shift+V)。" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "在 Calc 中,利用 TRIMMEAN() 可以傳回資料集合排除最大和最小極值後的平均數。" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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 "Calc 的 VLOOKUP 函式第四個選填參數,可以指示資料的第一欄是不是有排序。如果沒有,輸入 FALSE 或 0。" #. LThNS -#: cui/inc/tipoftheday.hrc:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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 "想要以目前的 Writer 文件製作成主控文件嗎?「檔案 ▸ 傳送 ▸ 製作主控文件」(子文件依據大綱建立)。" #. cPNVv -#: cui/inc/tipoftheday.hrc:239 +#: cui/inc/tipoftheday.hrc:238 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." msgstr "想要在 Calc 列印出來的頁面上將儲存格置中嗎?選取「格式 ▸ 頁面」,查看「頁面 ▸ 版面配置設定 ▸ 表格中央對齊」。" #. dpyeU -#: cui/inc/tipoftheday.hrc:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "點選好 Writer 表格後,選擇「插入 ▸ 圖表」可以根據表格製作成圖表。" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Select options in Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ Formatting Aids ▸ Display to specify which non-printing characters are displayed." msgstr "在「工具 ▸ 選項 ▸ %PRODUCTNAME Writer ▸ 格式設定輔助 ▸ 顯示格式設定」中,可以指定要顯示那些非列印用字元。" #. 9cyVB -#: cui/inc/tipoftheday.hrc:243 +#: cui/inc/tipoftheday.hrc:242 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 "想要以頁碼直接跳到特定頁面嗎?點按狀態列最左邊的條目,或是用「編輯 ▸ 前往頁面...」,或按 %MOD1+G。" #. ULATG -#: cui/inc/tipoftheday.hrc:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "%PRODUCTNAME 支援 150 種以上的語言。" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "您可以利用「工具 ▸ 排序」,根據數字順序或筆畫順序等方式排序段落或表格中的列。" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert a paragraph before (after) a section, press %MOD2+Enter at the beginning (end) of the section." msgstr "如果要在某一個區段之前(之後)插入段落,請在區段的開頭(結尾)按下 %MOD2+Enter。" #. 7dGQR -#: cui/inc/tipoftheday.hrc:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "%PRODUCTNAME 有個方便您製作好看文件的範本中心——去看看吧。" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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 "利用 Calc 計算貸款還款金額,例:PMT(2%/12;36;2500) ,即分期付款利率 2%/12(年利率 2%),期間36 個月,貸款金額為 2500。" #. evDnS #. local help missing -#: cui/inc/tipoftheday.hrc:251 +#: cui/inc/tipoftheday.hrc:250 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 "在 Calc 中的 VLOOKUP 函式找不到您想要的?利用 INDEX 和 MATCH 您就能暢行無阻!" #. ARJgA #. local help missing -#: cui/inc/tipoftheday.hrc:252 +#: cui/inc/tipoftheday.hrc:251 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 "想要顯示隱藏的 A 欄?點按 B 欄中的某一儲存格,按住滑鼠左鍵,向左邊移動,放開滑鼠;接著到「格式 ▸ 欄 ▸ 顯示」切換出來。" #. Wzpbw -#: cui/inc/tipoftheday.hrc:253 +#: cui/inc/tipoftheday.hrc:252 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 "如果要更改 Writer 中某一頁的頁數,前往第一段的屬性設定,到「排文和分頁」標籤頁中勾選「隔斷符 ▸ 插入」,設定並輸入數字。" #. AgQyA -#: cui/inc/tipoftheday.hrc:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "透過 rollApp 可以在任何瀏覽器中執行 %PRODUCTNAME。" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "遇到 Calc 中奇怪的錯誤代碼,例如 Err: 後面接著數字嗎?這個頁面提供解釋:" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Apart from table of contents, %PRODUCTNAME can create Alphabetical, Illustrations, Tables, Objects, Bibliography, User-Defined indexes." msgstr "除了目次,%PRODUCTNAME 還能製作順序索引、圖片表、表格索引、物件列表、使用者自訂索引等。" #. 2DrYx #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/indices_toc.html -#: cui/inc/tipoftheday.hrc:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "無法修改或刪除自訂的儲存格樣式嗎?檢查所有的工作表,是否有受到寫入保護。" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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 "想知道某個儲存格是否被其他儲存格的公式參照了嗎?「工具 ▸ 偵探 ▸ 追蹤從屬參照 (Shift+F5」。" #. QeBjt -#: cui/inc/tipoftheday.hrc:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to duplicate the above line? Press %MOD1+D or use Sheet ▸ Fill Cells ▸ Fill Down." msgstr "想要重複上一列嗎?按下 %MOD1+D 或是使用「工作表 ▸ 填入儲存格 ▸ 往下填」。" #. MG7Pu -#: cui/inc/tipoftheday.hrc:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "如果要在多份試算表中搜尋,在開始搜尋之前先選取試算表。" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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 "將 Calc 中的儲存格拖曳並放到投影片的一般檢視畫面中,會建立一份表格;拖放到大綱檢視畫面中,則會在大綱中建立一行文字。" #. DgSwJ -#: cui/inc/tipoftheday.hrc:265 +#: cui/inc/tipoftheday.hrc:264 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 "%PRODUCTNAME 能協助您在 Writer 中避免重複輸入兩個或多個空格。請勾選「工具 > 自動校正 > 自動校正選項 > 選項 > 忽略雙格空格」。" #. 3Fjtd -#: cui/inc/tipoftheday.hrc:266 +#: cui/inc/tipoftheday.hrc:265 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 "想要讓游標在 Calc 中輸入某個數值後前往右側的儲存格嗎?請改用 Tab 鍵取代 Enter 鍵。" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "新版的 %PRODUCTNAME 會提供新功能、有修正臭蟲,且修補好安全性問題。請持續更新您的軟體!" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "正在開發新的 XSLT 和 XML 篩選器?" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "%PRODUCTNAME 說明" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "更多資訊" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "⌘ Cmd" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "Ctrl" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "Alt" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "⌥ Opt" diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/filter/messages.po libreoffice-7.1.3~rc2/translations/source/zh-TW/filter/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/filter/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/filter/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:54+0100\n" -"PO-Revision-Date: 2021-03-19 17:37+0000\n" -"Last-Translator: Po-Yen Huang \n" +"PO-Revision-Date: 2021-04-21 07:37+0000\n" +"Last-Translator: Cheng-Chia Tseng \n" "Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" @@ -98,13 +98,13 @@ #: filter/inc/strings.hrc:38 msgctxt "STR_FILTER_HAS_BEEN_SAVED" msgid "The XML filter '%s' has been saved as package '%s'. " -msgstr "XML 篩選器「%s」已經另存為包裝「%s」。 " +msgstr "XML 篩選器「%s」已經另存為「%s」包裝。 " #. tJeU3 #: filter/inc/strings.hrc:39 msgctxt "STR_FILTERS_HAVE_BEEN_SAVED" msgid "%s XML filters have been saved in the package '%s'." -msgstr "%s XML 篩選器已經存入包裝「%s」。" +msgstr "%s XML 篩選器已經存入「%s」包裝。" #. ZULF4 #: filter/inc/strings.hrc:40 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po libreoffice-7.1.3~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/helpcontent2/source/text/shared/01.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ 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-12-14 15:33+0100\n" +"POT-Creation-Date: 2021-04-06 15:30+0200\n" "PO-Revision-Date: 2019-08-09 08:02+0000\n" "Last-Translator: serval2412 \n" "Language-Team: LANGUAGE \n" @@ -15379,33 +15379,6 @@ msgid "Small capitals - Changes the selected lowercase characters to uppercase characters, and then reduces their size." msgstr "" -#. kGuxJ -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"bm_id410168\n" -"help.text" -msgid "blinking fonts flashing fonts" -msgstr "閃動字型 閃爍字型" - -#. Suvvn -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"hd_id3152941\n" -"help.text" -msgid "Blinking" -msgstr "閃動" - -#. 2FiCB -#: 05020200.xhp -msgctxt "" -"05020200.xhp\n" -"par_id3145662\n" -"help.text" -msgid "Makes the selected characters blink. You cannot change the blink frequency." -msgstr "" - #. B3MEb #: 05020200.xhp msgctxt "" diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.1.3~rc2/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "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-12-01 12:34+0100\n" -"PO-Revision-Date: 2020-08-19 14:35+0000\n" -"Last-Translator: Cheng-Chia Tseng \n" -"Language-Team: Chinese (Traditional) \n" +"PO-Revision-Date: 2021-04-01 17:37+0000\n" +"Last-Translator: Po-Yen Huang \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1565101556.000000\n" #. W5ukN @@ -584,7 +584,7 @@ "Label\n" "value.text" msgid "Freeze First Column" -msgstr "" +msgstr "凍結第一欄" #. WDbnU #: CalcCommands.xcu @@ -594,7 +594,7 @@ "Label\n" "value.text" msgid "Freeze First Row" -msgstr "" +msgstr "凍結第一列" #. Qz2C5 #: CalcCommands.xcu @@ -8034,7 +8034,7 @@ "Label\n" "value.text" msgid "Te~xt Attributes..." -msgstr "" +msgstr "文字屬性……(~X)" #. GR6Sf #: DrawImpressCommands.xcu @@ -8434,7 +8434,7 @@ "Label\n" "value.text" msgid "Reset line skew" -msgstr "" +msgstr "重設行偏斜" #. avSPK #: DrawImpressCommands.xcu @@ -8804,7 +8804,7 @@ "ContextLabel\n" "value.text" msgid "Page Properties..." -msgstr "" +msgstr "頁面屬性……" #. W6trc #: DrawImpressCommands.xcu @@ -8824,7 +8824,7 @@ "ContextLabel\n" "value.text" msgid "Slide Properties..." -msgstr "" +msgstr "投影片屬性……" #. bhvTx #: DrawImpressCommands.xcu @@ -10624,7 +10624,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "刪除表格" #. Lbfd9 #: DrawImpressCommands.xcu @@ -12104,7 +12104,7 @@ "UIName\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "分配選取" #. qQQAi #: Effects.xcu @@ -13574,7 +13574,7 @@ "Label\n" "value.text" msgid "Regular Triangle" -msgstr "" +msgstr "正三角形" #. BUJ28 #: Effects.xcu @@ -14144,7 +14144,7 @@ "Label\n" "value.text" msgid "Fall and fade out" -msgstr "" +msgstr "落下並淡出" #. cCMGr #: Effects.xcu @@ -14154,7 +14154,7 @@ "Label\n" "value.text" msgid "Fall simulated" -msgstr "" +msgstr "落下模擬" #. BqK9h #: Effects.xcu @@ -14164,7 +14164,7 @@ "Label\n" "value.text" msgid "Shoot right and return" -msgstr "" +msgstr "向右射出並返回" #. DHrg4 #: Effects.xcu @@ -14174,7 +14174,7 @@ "Label\n" "value.text" msgid "Shoot left and return" -msgstr "" +msgstr "向左射出並返回" #. MZBtm #: Effects.xcu @@ -25056,7 +25056,7 @@ "Label\n" "value.text" msgid "User ~Interface..." -msgstr "" +msgstr "使用者介面……(~I)" #. i8oSn #: GenericCommands.xcu @@ -25066,7 +25066,7 @@ "TooltipLabel\n" "value.text" msgid "Shows a dialog to select the user interface" -msgstr "" +msgstr "顯示用來選取使用者介面的對話方塊" #. uQVBR #: GenericCommands.xcu @@ -25296,7 +25296,7 @@ "Label\n" "value.text" msgid "Delete Comment Thread" -msgstr "" +msgstr "刪除評註串" #. s3CwY #: GenericCommands.xcu @@ -25316,7 +25316,7 @@ "Label\n" "value.text" msgid "Resolved Thread" -msgstr "" +msgstr "已解決的討論串" #. JZHpu #: GenericCommands.xcu @@ -25516,7 +25516,7 @@ "Label\n" "value.text" msgid "Alig~n Objects" -msgstr "" +msgstr "對齊物件(~N)" #. VK2hz #: GenericCommands.xcu @@ -25526,7 +25526,7 @@ "Label\n" "value.text" msgid "Align Tex~t" -msgstr "" +msgstr "對齊文字(~T)" #. y3E2U #: GenericCommands.xcu @@ -26426,7 +26426,7 @@ "Label\n" "value.text" msgid "~Distribution" -msgstr "" +msgstr "散佈(~D)" #. 2HWrF #: GenericCommands.xcu @@ -26436,7 +26436,7 @@ "TooltipLabel\n" "value.text" msgid "Select at least three objects to distribute" -msgstr "" +msgstr "選取至少三個要散佈的物件" #. zEiFi #: GenericCommands.xcu @@ -26446,7 +26446,7 @@ "ContextLabel\n" "value.text" msgid "Distribute Selection" -msgstr "" +msgstr "選取散佈" #. vDkBA #: GenericCommands.xcu @@ -26456,7 +26456,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Left" -msgstr "" +msgstr "水平向左散佈" #. gjrG6 #: GenericCommands.xcu @@ -26466,7 +26466,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Left" -msgstr "" +msgstr "水平向左(~L)" #. BBazW #: GenericCommands.xcu @@ -26476,7 +26476,7 @@ "Label\n" "value.text" msgid "Distribute Horizontally Center" -msgstr "" +msgstr "水平中央散佈" #. SqFTB #: GenericCommands.xcu @@ -26486,7 +26486,7 @@ "ContextLabel\n" "value.text" msgid "Horizontally ~Center" -msgstr "" +msgstr "水平中央(~C)" #. QXntz #: GenericCommands.xcu diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/sc/messages.po libreoffice-7.1.3~rc2/translations/source/zh-TW/sc/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/sc/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/sc/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2021-02-16 09:36+0000\n" -"Last-Translator: Cheng-Chia Tseng \n" +"PO-Revision-Date: 2021-04-27 19:50+0000\n" +"Last-Translator: Po-Yen Huang \n" "Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.4\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1557418135.000000\n" #. kBovX @@ -1473,103 +1473,103 @@ #: sc/inc/globstr.hrc:273 msgctxt "STR_STYLENAME_HEADING" msgid "Heading" -msgstr "" +msgstr "標題" #. NM7R3 #: sc/inc/globstr.hrc:274 msgctxt "STR_STYLENAME_HEADING_1" msgid "Heading 1" -msgstr "" +msgstr "標題 1" #. 8XF63 #: sc/inc/globstr.hrc:275 msgctxt "STR_STYLENAME_HEADING_2" msgid "Heading 2" -msgstr "" +msgstr "標題 2" #. WBuWS #: sc/inc/globstr.hrc:276 msgctxt "STR_STYLENAME_TEXT" msgid "Text" -msgstr "" +msgstr "文字" #. tMJaD #: sc/inc/globstr.hrc:277 msgctxt "STR_STYLENAME_NOTE" msgid "Note" -msgstr "" +msgstr "備註" #. Df8xB #: sc/inc/globstr.hrc:278 msgctxt "STR_STYLENAME_FOOTNOTE" msgid "Footnote" -msgstr "" +msgstr "註腳" #. 2hk6H #: sc/inc/globstr.hrc:279 msgctxt "STR_STYLENAME_HYPERLINK" msgid "Hyperlink" -msgstr "" +msgstr "超連結" #. aeksB #: sc/inc/globstr.hrc:280 msgctxt "STR_STYLENAME_STATUS" msgid "Status" -msgstr "" +msgstr "狀態" #. pxAhk #: sc/inc/globstr.hrc:281 msgctxt "STR_STYLENAME_GOOD" msgid "Good" -msgstr "" +msgstr "優良" #. Ebk8F #: sc/inc/globstr.hrc:282 msgctxt "STR_STYLENAME_NEUTRAL" msgid "Neutral" -msgstr "" +msgstr "中立" #. FdWhD #: sc/inc/globstr.hrc:283 msgctxt "STR_STYLENAME_BAD" msgid "Bad" -msgstr "" +msgstr "不佳" #. t6f8W #: sc/inc/globstr.hrc:284 msgctxt "STR_STYLENAME_WARNING" msgid "Warning" -msgstr "" +msgstr "警告" #. 99BgJ #: sc/inc/globstr.hrc:285 msgctxt "STR_STYLENAME_ERROR" msgid "Error" -msgstr "" +msgstr "錯誤" #. yGAVF #: sc/inc/globstr.hrc:286 msgctxt "STR_STYLENAME_ACCENT" msgid "Accent" -msgstr "" +msgstr "強調" #. fw24e #: sc/inc/globstr.hrc:287 msgctxt "STR_STYLENAME_ACCENT_1" msgid "Accent 1" -msgstr "" +msgstr "強調 1" #. nHhDx #: sc/inc/globstr.hrc:288 msgctxt "STR_STYLENAME_ACCENT_2" msgid "Accent 2" -msgstr "" +msgstr "強調 2" #. NsLP7 #: sc/inc/globstr.hrc:289 msgctxt "STR_STYLENAME_ACCENT_3" msgid "Accent 3" -msgstr "" +msgstr "強調 3" #. GATGM #: sc/inc/globstr.hrc:290 @@ -2581,7 +2581,7 @@ #: sc/inc/globstr.hrc:447 msgctxt "STR_ERR_NAME_INVALID" msgid "Invalid name. Start with a letter, use only letters, numbers and underscore." -msgstr "" +msgstr "名稱無效。使用字母開頭,僅能使用字母、數字與底線。" #. owW4Y #: sc/inc/globstr.hrc:448 @@ -14680,7 +14680,7 @@ #: sc/inc/scfuncs.hrc:3606 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Compares expression against list of value/result pairs, and returns result for first value that matches the expression. If expression does not match any value, a default result is returned, if it is placed as final item in parameter list without a value." -msgstr "" +msgstr "將正規表示式與值/結果對列表進行比較,並回傳與表示式相符的第一個結果。 如果表示式未與任何值相符,將會回傳預設結果(如果其為沒有值的參數清單的最後一個項目的話)。" #. PneN8 #: sc/inc/scfuncs.hrc:3607 @@ -14692,7 +14692,7 @@ #: sc/inc/scfuncs.hrc:3608 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to be compared against value1…valueN (N ≤ 127)" -msgstr "" +msgstr "要與 value1…valueN (N ≤ 127) 比較的值" #. 9wcvj #: sc/inc/scfuncs.hrc:3609 @@ -14704,7 +14704,7 @@ #: sc/inc/scfuncs.hrc:3610 msgctxt "SC_OPCODE_SWITCH_MS" msgid "Value to compare against expression. If no result is given, then value is returned as default result." -msgstr "" +msgstr "要與表示式比較的值。若未給值,將會把值回傳作為預設結果。" #. dsARv #: sc/inc/scfuncs.hrc:3611 @@ -16403,37 +16403,37 @@ #: sc/inc/scfuncs.hrc:4140 msgctxt "SC_OPCODE_RANDOM_NV" msgid "Returns a random number between 0 and 1, non-volatile." -msgstr "" +msgstr "回傳介於 0 與 1 間的隨機數,非揮發性。" #. op2W5 #: sc/inc/scfuncs.hrc:4146 msgctxt "SC_OPCODE_RANDBETWEEN_NV" msgid "Returns a random integer between the numbers you specify, non-volatile." -msgstr "" +msgstr "回傳您指定的數字間的隨機整數,非揮發性。" #. o3i8h #: sc/inc/scfuncs.hrc:4147 msgctxt "SC_OPCODE_RANDBETWEEN_NV" msgid "Bottom" -msgstr "" +msgstr "底部" #. HdKGo #: sc/inc/scfuncs.hrc:4148 msgctxt "SC_OPCODE_RANDBETWEEN_NV" msgid "The smallest integer returned." -msgstr "" +msgstr "回傳的最小整數。" #. 8s6nU #: sc/inc/scfuncs.hrc:4149 msgctxt "SC_OPCODE_RANDBETWEEN_NV" msgid "Top" -msgstr "" +msgstr "頂部" #. x9uuF #: sc/inc/scfuncs.hrc:4150 msgctxt "SC_OPCODE_RANDBETWEEN_NV" msgid "The largest integer returned." -msgstr "" +msgstr "回傳的最大整數。" #. pDDme #: sc/inc/scstyles.hrc:29 @@ -18481,19 +18481,19 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:38 msgctxt "advancedfilterdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "儲存所有變動並關閉對話框。" #. gzGAU #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:58 msgctxt "advancedfilterdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "關閉對話框並放棄所有變更。" #. v3B8V #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:125 msgctxt "advancedfilterdialog|extended_tip|rbfilterarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "點擊「收縮」圖示以將對話框縮小到輸入欄位的大小。如此就可以更輕鬆地在工作表中標記需要的參照。然後該圖示會自動轉換為「擴展」圖示。點擊它就可以讓對話框恢復原本的大小。" #. yFS2F #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:140 @@ -18613,7 +18613,7 @@ #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:413 msgctxt "advancedfilterdialog|extended_tip|rbcopyarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "點擊「收縮」圖示以將對話框縮小到輸入欄位的大小。如此就可以更輕鬆地在工作表中標記需要的參照。然後該圖示會自動轉換為「擴展」圖示。點擊它就可以讓對話框恢復原本的大小。" #. RGXM4 #: sc/uiconfig/scalc/ui/advancedfilterdialog.ui:438 @@ -18811,7 +18811,7 @@ #: sc/uiconfig/scalc/ui/analysisofvariancedialog.ui:466 msgctxt "analysisofvariancedialog|extended_tip|AnalysisOfVarianceDialog" msgid "Produces the analysis of variance (ANOVA) of a given data set" -msgstr "" +msgstr "生成指定資料集的變異數分析 (ANOVA)" #. ETqet #: sc/uiconfig/scalc/ui/autoformattable.ui:16 @@ -18823,19 +18823,19 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:39 msgctxt "autoformattable|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "關閉對話框並放棄所有變更。" #. V6Tpf #: sc/uiconfig/scalc/ui/autoformattable.ui:60 msgctxt "autoformattable|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "儲存所有變動並關閉對話框。" #. NTY8D #: sc/uiconfig/scalc/ui/autoformattable.ui:135 msgctxt "autoformattable|extended_tip|preview" msgid "Displays a preview of the current selection." -msgstr "" +msgstr "顯示目前選取的預覽。" #. qcCWk #: sc/uiconfig/scalc/ui/autoformattable.ui:177 @@ -18847,7 +18847,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:210 msgctxt "autoformattable|extended_tip|add" msgid "Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats." -msgstr "" +msgstr "讓您可以將至少 4 x 4 儲存格範圍的目前格式新增到預先定義的自動格式化列表中。" #. DYbCK #: sc/uiconfig/scalc/ui/autoformattable.ui:229 @@ -18865,7 +18865,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:247 msgctxt "autoformattable|extended_tip|rename" msgid "Opens a dialog where you can change the name of the selected AutoFormat." -msgstr "" +msgstr "開啟對話框,您可以在其中變更選定的自動格式名稱。" #. SEACv #: sc/uiconfig/scalc/ui/autoformattable.ui:271 @@ -19189,7 +19189,7 @@ #: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:284 msgctxt "chisquaretestdialog|extended_tip|ChiSquareTestDialog" msgid "Calculates the Chi-square test of a data sample." -msgstr "" +msgstr "計算資料樣本的卡方檢定。" #. L8JmP #: sc/uiconfig/scalc/ui/colorrowdialog.ui:8 @@ -19291,7 +19291,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:157 msgctxt "condformatmanager|extended_tip|CONTAINER" msgid "The Conditional Formats list displays the active conditional formatting rules set in the current spreadsheet." -msgstr "" +msgstr "條件式格式列表顯示了目前試算表中設定的作用中條件式格式規則。" #. rCgD4 #: sc/uiconfig/scalc/ui/condformatmanager.ui:177 @@ -19303,7 +19303,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:183 msgctxt "condformatmanager|extended_tip|add" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "您可以在此新增、編輯或移除一個或多個條件式格式。" #. 8XXd8 #: sc/uiconfig/scalc/ui/condformatmanager.ui:195 @@ -19315,7 +19315,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:201 msgctxt "condformatmanager|extended_tip|edit" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "您可以在此新增、編輯或移除一個或多個條件式格式。" #. oLc2f #: sc/uiconfig/scalc/ui/condformatmanager.ui:213 @@ -19327,7 +19327,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:219 msgctxt "condformatmanager|extended_tip|remove" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "您可以在此新增、編輯或移除一個或多個條件式格式。" #. dV9US #: sc/uiconfig/scalc/ui/condformatmanager.ui:244 @@ -19339,7 +19339,7 @@ #: sc/uiconfig/scalc/ui/condformatmanager.ui:269 msgctxt "condformatmanager|extended_tip|CondFormatManager" msgid "This dialog allows you to see all the conditional formatting defined in the spreadsheet." -msgstr "" +msgstr "此對話框可以讓您檢視試算表中定義的所有條件式格式。" #. E8ANs #: sc/uiconfig/scalc/ui/conditionalentry.ui:75 @@ -19573,49 +19573,49 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:392 msgctxt "conditionalentry|typeis" msgid "is in top N elements" -msgstr "" +msgstr "在前 N 個元素中" #. FGAML #: sc/uiconfig/scalc/ui/conditionalentry.ui:393 msgctxt "conditionalentry|typeis" msgid "is in bottom N elements" -msgstr "" +msgstr "在最後 N 個元素中" #. BCnE4 #: sc/uiconfig/scalc/ui/conditionalentry.ui:394 msgctxt "conditionalentry|typeis" msgid "is in top N percent" -msgstr "" +msgstr "在前百分之 N 中" #. 2EFQe #: sc/uiconfig/scalc/ui/conditionalentry.ui:395 msgctxt "conditionalentry|typeis" msgid "is in bottom N percent" -msgstr "" +msgstr "在後百分之 N 中" #. mgJrq #: sc/uiconfig/scalc/ui/conditionalentry.ui:396 msgctxt "conditionalentry|typeis" msgid "is above average" -msgstr "" +msgstr "大於平均值" #. 7Scqx #: sc/uiconfig/scalc/ui/conditionalentry.ui:397 msgctxt "conditionalentry|typeis" msgid "is below average" -msgstr "" +msgstr "小於平均值" #. hrCLZ #: sc/uiconfig/scalc/ui/conditionalentry.ui:398 msgctxt "conditionalentry|typeis" msgid "is above or equal average" -msgstr "" +msgstr "大於或等於平均值" #. B75cQ #: sc/uiconfig/scalc/ui/conditionalentry.ui:399 msgctxt "conditionalentry|typeis" msgid "is below or equal average" -msgstr "" +msgstr "小於或等於平均值" #. 3MvCE #: sc/uiconfig/scalc/ui/conditionalentry.ui:400 @@ -19921,25 +19921,25 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:34 msgctxt "conditionalformatdialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "儲存所有變動並關閉對話框。" #. zqDuf #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:54 msgctxt "conditionalformatdialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "關閉對話框並放棄所有變更。" #. VP7Xe #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:162 msgctxt "conditionalformatdialog|extended_tip|list" msgid "List of the conditions defined for the cell range in order of evaluation." -msgstr "" +msgstr "按評估順序為儲存格範圍定義的條件列表。" #. oEPbA #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:191 msgctxt "conditionalformatdialog|extended_tip|add" msgid "Here you can add, edit or remove one or several conditional formattings." -msgstr "" +msgstr "您可以在此新增、編輯或移除一個或多個條件式格式。" #. ejKTF #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:210 @@ -19951,13 +19951,13 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:229 msgctxt "conditionalformatdialog|extended_tip|up" msgid "Increase priority of the selected condition." -msgstr "" +msgstr "增加所選條件式的優先程度。" #. ykMES #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:248 msgctxt "conditionalformatdialog|extended_tip|down" msgid "Decrease priority of the selected condition." -msgstr "" +msgstr "降低所選條件式的優先程度。" #. Q6Ag7 #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:273 @@ -19975,7 +19975,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:343 msgctxt "conditionalformatdialog|extended_tip|rbassign" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "點擊「收縮」圖示以將對話框縮小到輸入欄位的大小。如此就可以更輕鬆地在工作表中標記需要的參照。然後該圖示會自動轉換為「擴展」圖示。點擊它就可以讓對話框恢復原本的大小。" #. BH5wk #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:361 @@ -19987,7 +19987,7 @@ #: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:386 msgctxt "conditionalformatdialog|extended_tip|ConditionalFormatDialog" msgid "Choose Conditional Formatting to define format styles depending on certain conditions." -msgstr "" +msgstr "選擇「條件式格式」以根據特定條件定義格式樣式。" #. XFw3E #: sc/uiconfig/scalc/ui/conditionaliconset.ui:22 @@ -20089,13 +20089,13 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:43 msgctxt "consolidatedialog|extended_tip|ok" msgid "Saves all changes and closes dialog." -msgstr "" +msgstr "儲存所有變動並關閉對話框。" #. EHBqo #: sc/uiconfig/scalc/ui/consolidatedialog.ui:63 msgctxt "consolidatedialog|extended_tip|cancel" msgid "Closes dialog and discards all changes." -msgstr "" +msgstr "關閉對話框並放棄所有變更。" #. kkPF3 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:110 @@ -20191,19 +20191,19 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:238 msgctxt "consolidatedialog|extended_tip|lbdataarea" msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select the name of a predefined cell from the Source data range list." -msgstr "" +msgstr "指定您想要合併計算的儲存格範圍,並在「合併計算範圍」方塊中列出。選取工作表中的儲存格範圍,然後點擊「新增」。您也可以從「來源資料範圍」清單中選取預定義的儲存格名稱。" #. 6x7He #: sc/uiconfig/scalc/ui/consolidatedialog.ui:257 msgctxt "consolidatedialog|extended_tip|eddataarea" msgid "Specifies the cell range that you want to consolidate with the cell ranges listed in the Consolidation ranges box. Select a cell range in a sheet, and then click Add. You can also select the name of a predefined cell from the Source data range list." -msgstr "" +msgstr "指定您想要合併計算的儲存格範圍,並在「合併計算範圍」方塊中列出。選取工作表中的儲存格範圍,然後點擊「新增」。您也可以從「來源資料範圍」清單中選取預定義的儲存格名稱。" #. N6jCs #: sc/uiconfig/scalc/ui/consolidatedialog.ui:276 msgctxt "consolidatedialog|extended_tip|rbdataarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "點擊「收縮」圖示以將對話框縮小到輸入欄位的大小。如此就可以更輕鬆地在工作表中標記需要的參照。然後該圖示會自動轉換為「擴展」圖示。點擊它就可以讓對話框恢復原本的大小。" #. ziYLq #: sc/uiconfig/scalc/ui/consolidatedialog.ui:306 @@ -20221,7 +20221,7 @@ #: sc/uiconfig/scalc/ui/consolidatedialog.ui:344 msgctxt "consolidatedialog|extended_tip|rbdestarea" msgid "Click the Shrink icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the Maximize icon. Click it to restore the dialog to its original size." -msgstr "" +msgstr "點擊「收縮」圖示以將對話框縮小到輸入欄位的大小。如此就可以更輕鬆地在工作表中標記需要的參照。然後該圖示會自動轉換為「擴展」圖示。點擊它就可以讓對話框恢復原本的大小。" #. zrSv3 #: sc/uiconfig/scalc/ui/consolidatedialog.ui:376 @@ -20359,7 +20359,7 @@ #: sc/uiconfig/scalc/ui/correlationdialog.ui:283 msgctxt "correlationdialog|extended_tip|CorrelationDialog" msgid "Calculates the correlation of two sets of numeric data." -msgstr "" +msgstr "計算兩組數值資料間的相關性。" #. XYtja #: sc/uiconfig/scalc/ui/covariancedialog.ui:8 @@ -20407,7 +20407,7 @@ #: sc/uiconfig/scalc/ui/covariancedialog.ui:283 msgctxt "covariancedialog|extended_tip|CovarianceDialog" msgid "Calculates the covariance of two sets of numeric data." -msgstr "" +msgstr "計算兩組數值資料間的共變異數。" #. F22h3 #: sc/uiconfig/scalc/ui/createnamesdialog.ui:8 @@ -20737,7 +20737,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:152 msgctxt "datafielddialog|extended_tip|functions" msgid "Click the type of subtotal that you want to calculate. This option is only available if the User-defined option is selected." -msgstr "" +msgstr "點擊您想要計算的小計類型。此選項僅在選取了使用者定義的選項石材有用。" #. oY6n8 #: sc/uiconfig/scalc/ui/datafielddialog.ui:171 @@ -20755,7 +20755,7 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:194 msgctxt "datafielddialog|extended_tip|checkbutton1" msgid "Includes empty columns and rows in the results table." -msgstr "" +msgstr "在結果表格中包含空的欄與列。" #. CNVLs #: sc/uiconfig/scalc/ui/datafielddialog.ui:213 @@ -20839,13 +20839,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:320 msgctxt "datafielddialog|extended_tip|type" msgid "Select the type of calculating of the displayed value for the data field." -msgstr "" +msgstr "選取資料欄位顯示值的計算類型。" #. DdvoS #: sc/uiconfig/scalc/ui/datafielddialog.ui:335 msgctxt "datafielddialog|extended_tip|basefield" msgid "Select the field from which the respective value is taken as base for the calculation." -msgstr "" +msgstr "選取要用來作為計算基礎對應值的欄位。" #. u5kvr #: sc/uiconfig/scalc/ui/datafielddialog.ui:349 @@ -20863,13 +20863,13 @@ #: sc/uiconfig/scalc/ui/datafielddialog.ui:354 msgctxt "datafielddialog|extended_tip|baseitem" msgid "Select the item of the base field from which the respective value is taken as base for the calculation." -msgstr "" +msgstr "選取要作為計算基礎對應值的基礎欄位項目。" #. XxEhf #: sc/uiconfig/scalc/ui/datafielddialog.ui:371 msgctxt "datafielddialog|label3" msgid "Displayed Value" -msgstr "" +msgstr "已顯示的值" #. mk9vJ #: sc/uiconfig/scalc/ui/datafielddialog.ui:376 diff -Nru libreoffice-7.1.2~rc2/translations/source/zh-TW/sd/messages.po libreoffice-7.1.3~rc2/translations/source/zh-TW/sd/messages.po --- libreoffice-7.1.2~rc2/translations/source/zh-TW/sd/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zh-TW/sd/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-30 14:55+0100\n" -"PO-Revision-Date: 2020-06-30 19:04+0000\n" -"Last-Translator: Cheng-Chia Tseng \n" -"Language-Team: Chinese (Traditional) \n" +"PO-Revision-Date: 2021-04-06 08:37+0000\n" +"Last-Translator: Po-Yen Huang \n" +"Language-Team: Chinese (Traditional) \n" "Language: zh-TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.4.2\n" "X-POOTLE-MTIME: 1554782162.000000\n" #. WDjkB @@ -2120,7 +2120,7 @@ #: sd/inc/strings.hrc:325 msgctxt "STR_SLIDE_SETUP_TITLE" msgid "Slide Properties" -msgstr "" +msgstr "投影片屬性" #. pA7rP #: sd/inc/strings.hrc:327 diff -Nru libreoffice-7.1.2~rc2/translations/source/zu/cui/messages.po libreoffice-7.1.3~rc2/translations/source/zu/cui/messages.po --- libreoffice-7.1.2~rc2/translations/source/zu/cui/messages.po 2021-03-24 16:28:09.000000000 +0000 +++ libreoffice-7.1.3~rc2/translations/source/zu/cui/messages.po 2021-04-28 16:17:44.000000000 +0000 @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" -"POT-Creation-Date: 2021-03-10 16:22+0100\n" +"POT-Creation-Date: 2021-04-06 15:29+0200\n" "PO-Revision-Date: 2018-11-14 11:48+0000\n" "Last-Translator: Anonymous Pootle User\n" "Language-Team: LANGUAGE \n" @@ -2472,1071 +2472,1065 @@ msgid "%PRODUCTNAME supports four macro security levels (from low to very high) and trusted sources." msgstr "" -#. FnWjD +#. SNTbc #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01030300.html #: 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 "" - -#. SNTbc -#: 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 "" #. wZDsJ -#: cui/inc/tipoftheday.hrc:109 +#: cui/inc/tipoftheday.hrc:108 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 "" #. JDGDc -#: cui/inc/tipoftheday.hrc:110 +#: cui/inc/tipoftheday.hrc:109 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:111 +#: cui/inc/tipoftheday.hrc:110 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:112 +#: cui/inc/tipoftheday.hrc:111 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:113 +#: cui/inc/tipoftheday.hrc:112 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:114 +#: cui/inc/tipoftheday.hrc:113 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." msgstr "" #. TD8Ux -#: cui/inc/tipoftheday.hrc:115 +#: cui/inc/tipoftheday.hrc:114 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Customize footnote appearance with Tools ▸ Footnotes and Endnotes…" msgstr "" #. muc5F -#: cui/inc/tipoftheday.hrc:116 +#: cui/inc/tipoftheday.hrc:115 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:117 +#: cui/inc/tipoftheday.hrc:116 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 "" #. oTX4L -#: cui/inc/tipoftheday.hrc:118 +#: cui/inc/tipoftheday.hrc:117 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:119 +#: cui/inc/tipoftheday.hrc:118 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:120 +#: cui/inc/tipoftheday.hrc:119 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:121 +#: cui/inc/tipoftheday.hrc:120 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:122 +#: cui/inc/tipoftheday.hrc:121 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Embedded help is available by pressing F1, if you have installed it. Otherwise check online at:" msgstr "" #. n3b6P -#: cui/inc/tipoftheday.hrc:123 +#: cui/inc/tipoftheday.hrc:122 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:124 +#: cui/inc/tipoftheday.hrc:123 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:125 +#: cui/inc/tipoftheday.hrc:124 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:126 +#: cui/inc/tipoftheday.hrc:125 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:127 +#: cui/inc/tipoftheday.hrc:126 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can change the look of %PRODUCTNAME via Tools ▸ Options ▸ View ▸ User Interface." msgstr "" #. J853i -#: cui/inc/tipoftheday.hrc:128 +#: cui/inc/tipoftheday.hrc:127 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:129 +#: cui/inc/tipoftheday.hrc:128 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:130 +#: cui/inc/tipoftheday.hrc:129 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 "" #. GEJXj -#: cui/inc/tipoftheday.hrc:131 +#: cui/inc/tipoftheday.hrc:130 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:132 +#: cui/inc/tipoftheday.hrc:131 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:133 +#: cui/inc/tipoftheday.hrc:132 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:134 +#: cui/inc/tipoftheday.hrc:133 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." msgstr "" #. XDhNo -#: cui/inc/tipoftheday.hrc:135 +#: cui/inc/tipoftheday.hrc:134 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:136 +#: cui/inc/tipoftheday.hrc:135 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 "" #. fsDVc -#: cui/inc/tipoftheday.hrc:137 +#: cui/inc/tipoftheday.hrc:136 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to become a %PRODUCTNAME Ambassador? There are certifications for developers, admins, and trainers." msgstr "" #. VWNyB -#: cui/inc/tipoftheday.hrc:138 +#: cui/inc/tipoftheday.hrc:137 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:139 +#: cui/inc/tipoftheday.hrc:138 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:140 +#: cui/inc/tipoftheday.hrc:139 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Choose “Hierarchical View” in the Styles sidebar to see the relation between styles." msgstr "" #. FKfZB -#: cui/inc/tipoftheday.hrc:141 +#: cui/inc/tipoftheday.hrc:140 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:142 +#: cui/inc/tipoftheday.hrc:141 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:143 +#: cui/inc/tipoftheday.hrc:142 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:144 +#: cui/inc/tipoftheday.hrc:143 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:145 +#: cui/inc/tipoftheday.hrc:144 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:146 +#: cui/inc/tipoftheday.hrc:145 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:147 +#: cui/inc/tipoftheday.hrc:146 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:148 +#: cui/inc/tipoftheday.hrc:147 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:149 +#: cui/inc/tipoftheday.hrc:148 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:150 +#: cui/inc/tipoftheday.hrc:149 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With %PRODUCTNAME it is very easy to install a new dictionary: they are supplied as extensions." msgstr "" #. 7kaMQ -#: cui/inc/tipoftheday.hrc:151 +#: cui/inc/tipoftheday.hrc:150 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:152 +#: cui/inc/tipoftheday.hrc:151 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:153 +#: cui/inc/tipoftheday.hrc:152 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:154 +#: cui/inc/tipoftheday.hrc:153 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Citation management? Use a 3rd party extension." msgstr "" #. ALczh -#: cui/inc/tipoftheday.hrc:155 +#: cui/inc/tipoftheday.hrc:154 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:156 +#: cui/inc/tipoftheday.hrc:155 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:157 +#: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can customize the middle mouse button per Tools ▸ Options ▸ %PRODUCTNAME ▸ View ▸ Middle Mouse button." msgstr "" #. qQsXD -#: cui/inc/tipoftheday.hrc:158 +#: cui/inc/tipoftheday.hrc:157 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:159 +#: cui/inc/tipoftheday.hrc:158 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:160 +#: cui/inc/tipoftheday.hrc:159 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:161 +#: cui/inc/tipoftheday.hrc:160 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 "" #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html -#: cui/inc/tipoftheday.hrc:162 +#: cui/inc/tipoftheday.hrc:161 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:163 +#: cui/inc/tipoftheday.hrc:162 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 "" #. heb7V -#: cui/inc/tipoftheday.hrc:164 +#: cui/inc/tipoftheday.hrc:163 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Get %PRODUCTNAME documentation and free user guide books at:" msgstr "" #. T6uNP -#: cui/inc/tipoftheday.hrc:165 +#: cui/inc/tipoftheday.hrc:164 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:166 +#: cui/inc/tipoftheday.hrc:165 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:167 +#: cui/inc/tipoftheday.hrc:166 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." msgstr "" #. qyyJ4 #. local help missing -#: cui/inc/tipoftheday.hrc:168 +#: cui/inc/tipoftheday.hrc:167 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:169 +#: cui/inc/tipoftheday.hrc:168 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:170 +#: cui/inc/tipoftheday.hrc:169 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:171 +#: cui/inc/tipoftheday.hrc:170 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:172 +#: cui/inc/tipoftheday.hrc:171 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:173 +#: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use your Android or iPhone to remotely control your Impress presentation." msgstr "" #. GgzTh #. local help missing -#: cui/inc/tipoftheday.hrc:174 +#: cui/inc/tipoftheday.hrc:173 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know how many days there are in the current month? Use the DAYSINMONTH(TODAY()) function." msgstr "" #. z72JP -#: cui/inc/tipoftheday.hrc:175 +#: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." msgstr "" #. REoF7 -#: cui/inc/tipoftheday.hrc:176 +#: cui/inc/tipoftheday.hrc:175 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Enable massive parallel calculations of formula cells via Tools ▸ Options ▸ OpenCL." msgstr "" #. zAqfX #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/opencl.html -#: cui/inc/tipoftheday.hrc:177 +#: cui/inc/tipoftheday.hrc:176 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:178 +#: cui/inc/tipoftheday.hrc:177 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your donations support our worldwide community." msgstr "" #. V2QjS -#: cui/inc/tipoftheday.hrc:179 +#: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You want to add x months to a date? Use =EDATE(date;months)." msgstr "" #. uYpVp #. local help missing -#: cui/inc/tipoftheday.hrc:180 +#: cui/inc/tipoftheday.hrc:179 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:181 +#: cui/inc/tipoftheday.hrc:180 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:182 +#: cui/inc/tipoftheday.hrc:181 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:183 +#: cui/inc/tipoftheday.hrc:182 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "The presenter console is a great feature when working with %PRODUCTNAME Impress. Have you checked it out?" msgstr "" #. PFGhM #. local help missing -#: cui/inc/tipoftheday.hrc:184 +#: cui/inc/tipoftheday.hrc:183 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:185 +#: cui/inc/tipoftheday.hrc:184 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Easily convert your documents to PDF with one click by clicking on the PDF icon in the toolbar." msgstr "" #. UwBoZ -#: cui/inc/tipoftheday.hrc:186 +#: cui/inc/tipoftheday.hrc:185 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:187 +#: cui/inc/tipoftheday.hrc:186 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know the valid command line parameters? Start soffice with --help or -h or -?" msgstr "" #. pmP5i #. local help missing -#: cui/inc/tipoftheday.hrc:188 +#: cui/inc/tipoftheday.hrc:187 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:189 +#: cui/inc/tipoftheday.hrc:188 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:190 +#: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can rotate cells table orientation with Table ▸ Properties… ▸ Text Flow ▸ Text orientation." msgstr "" #. Vi6L8 -#: cui/inc/tipoftheday.hrc:191 +#: cui/inc/tipoftheday.hrc:190 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:192 +#: cui/inc/tipoftheday.hrc:191 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:193 +#: cui/inc/tipoftheday.hrc:192 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Automatically mark alphabetical index entries using a concordance file." msgstr "" #. BnMpb #. local help missing -#: cui/inc/tipoftheday.hrc:194 +#: cui/inc/tipoftheday.hrc:193 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:195 +#: cui/inc/tipoftheday.hrc:194 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:196 +#: cui/inc/tipoftheday.hrc:195 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:197 +#: cui/inc/tipoftheday.hrc:196 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:198 +#: cui/inc/tipoftheday.hrc:197 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:199 +#: cui/inc/tipoftheday.hrc:198 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:200 +#: cui/inc/tipoftheday.hrc:199 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:201 +#: cui/inc/tipoftheday.hrc:200 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:202 +#: cui/inc/tipoftheday.hrc:201 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:203 +#: cui/inc/tipoftheday.hrc:202 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:204 +#: cui/inc/tipoftheday.hrc:203 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:205 +#: cui/inc/tipoftheday.hrc:204 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:206 +#: cui/inc/tipoftheday.hrc:205 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To insert the current date in your document, use Insert ▸ Field ▸ Date." msgstr "" #. vGKBe -#: cui/inc/tipoftheday.hrc:207 +#: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." msgstr "" #. Y85ij -#: cui/inc/tipoftheday.hrc:208 +#: cui/inc/tipoftheday.hrc:207 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:209 +#: cui/inc/tipoftheday.hrc:208 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:210 +#: cui/inc/tipoftheday.hrc:209 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:211 +#: cui/inc/tipoftheday.hrc:210 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:212 +#: cui/inc/tipoftheday.hrc:211 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:213 +#: cui/inc/tipoftheday.hrc:212 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:214 +#: cui/inc/tipoftheday.hrc:213 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." msgstr "" #. hDiRV #. local help missing -#: cui/inc/tipoftheday.hrc:215 +#: cui/inc/tipoftheday.hrc:214 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Often create one document from another? Consider using a template." msgstr "" #. nESeG -#: cui/inc/tipoftheday.hrc:216 +#: cui/inc/tipoftheday.hrc:215 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:217 +#: cui/inc/tipoftheday.hrc:216 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:218 +#: cui/inc/tipoftheday.hrc:217 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:219 +#: cui/inc/tipoftheday.hrc:218 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:220 +#: cui/inc/tipoftheday.hrc:219 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:221 +#: cui/inc/tipoftheday.hrc:220 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:222 +#: cui/inc/tipoftheday.hrc:221 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:223 +#: cui/inc/tipoftheday.hrc:222 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:224 +#: cui/inc/tipoftheday.hrc:223 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:225 +#: cui/inc/tipoftheday.hrc:224 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:226 +#: cui/inc/tipoftheday.hrc:225 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:227 +#: cui/inc/tipoftheday.hrc:226 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:228 +#: cui/inc/tipoftheday.hrc:227 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:229 +#: cui/inc/tipoftheday.hrc:228 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:230 +#: cui/inc/tipoftheday.hrc:229 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:231 +#: cui/inc/tipoftheday.hrc:230 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:232 +#: cui/inc/tipoftheday.hrc:231 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:233 +#: cui/inc/tipoftheday.hrc:232 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:234 +#: cui/inc/tipoftheday.hrc:233 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 "" #. BtaBD -#: cui/inc/tipoftheday.hrc:235 +#: cui/inc/tipoftheday.hrc:234 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In Calc use TRIMMEAN() to return the mean of a data set excluding the highest and lowest values." msgstr "" #. U2cxc #. local help missing -#: cui/inc/tipoftheday.hrc:236 +#: cui/inc/tipoftheday.hrc:235 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:237 +#: cui/inc/tipoftheday.hrc:236 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:238 +#: cui/inc/tipoftheday.hrc:237 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:239 +#: cui/inc/tipoftheday.hrc:238 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:240 +#: cui/inc/tipoftheday.hrc:239 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:241 +#: cui/inc/tipoftheday.hrc:240 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Create a chart based on a Writer table by clicking in the table and choosing Insert ▸ Chart." msgstr "" #. j4m6F -#: cui/inc/tipoftheday.hrc:242 +#: cui/inc/tipoftheday.hrc:241 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:243 +#: cui/inc/tipoftheday.hrc:242 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:244 +#: cui/inc/tipoftheday.hrc:243 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME supports over 150 languages." msgstr "" #. SLU8G -#: cui/inc/tipoftheday.hrc:245 +#: cui/inc/tipoftheday.hrc:244 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:246 +#: cui/inc/tipoftheday.hrc:245 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:247 +#: cui/inc/tipoftheday.hrc:246 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." msgstr "" #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html -#: cui/inc/tipoftheday.hrc:248 +#: cui/inc/tipoftheday.hrc:247 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:249 +#: cui/inc/tipoftheday.hrc:248 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME has a template center to create good looking documents—check it out." msgstr "" #. tvpFN -#: cui/inc/tipoftheday.hrc:250 +#: cui/inc/tipoftheday.hrc:249 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:251 +#: cui/inc/tipoftheday.hrc:250 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:252 +#: cui/inc/tipoftheday.hrc:251 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:253 +#: cui/inc/tipoftheday.hrc:252 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:254 +#: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Run %PRODUCTNAME in any browser via rollApp." msgstr "" #. mPz5B -#: cui/inc/tipoftheday.hrc:255 +#: cui/inc/tipoftheday.hrc:254 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" msgstr "" #. BJ5aN #. local help missing -#: cui/inc/tipoftheday.hrc:256 +#: cui/inc/tipoftheday.hrc:255 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:257 +#: cui/inc/tipoftheday.hrc:256 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:258 +#: cui/inc/tipoftheday.hrc:257 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." msgstr "" #. 55Nfb -#: cui/inc/tipoftheday.hrc:259 +#: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You need to fill a series? 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:260 +#: cui/inc/tipoftheday.hrc:259 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:261 +#: cui/inc/tipoftheday.hrc:260 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:262 +#: cui/inc/tipoftheday.hrc:261 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:263 +#: cui/inc/tipoftheday.hrc:262 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." msgstr "" #. Jd6KJ -#: cui/inc/tipoftheday.hrc:264 +#: cui/inc/tipoftheday.hrc:263 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:265 +#: cui/inc/tipoftheday.hrc:264 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:266 +#: cui/inc/tipoftheday.hrc:265 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 "" #. UggLQ -#: cui/inc/tipoftheday.hrc:267 +#: cui/inc/tipoftheday.hrc:266 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:268 +#: cui/inc/tipoftheday.hrc:267 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:269 +#: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "New versions of %PRODUCTNAME provide new features, bug fixes, and security patches. Keep your software updated!" msgstr "" #. cmz6r -#: cui/inc/tipoftheday.hrc:270 +#: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Developing new XSLT and XML filters?" msgstr "" #. C7Ya2 -#: cui/inc/tipoftheday.hrc:271 +#: cui/inc/tipoftheday.hrc:270 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Press Shift+F1 to see any available extended tooltips in dialog boxes, when \"Extended tips\" is not enabled in Tools ▸ Options ▸ %PRODUCTNAME ▸ General." msgstr "" #. hsZPg -#: cui/inc/tipoftheday.hrc:274 +#: cui/inc/tipoftheday.hrc:273 msgctxt "STR_HELP_LINK" msgid "%PRODUCTNAME Help" msgstr "" #. NG4jW -#: cui/inc/tipoftheday.hrc:275 +#: cui/inc/tipoftheday.hrc:274 msgctxt "STR_MORE_LINK" msgid "More info" msgstr "" #. sCREc -#: cui/inc/tipoftheday.hrc:276 +#: cui/inc/tipoftheday.hrc:275 msgctxt "STR_UNO_LINK" msgid "Run this action now..." msgstr "" #. P6JME -#: cui/inc/tipoftheday.hrc:277 +#: cui/inc/tipoftheday.hrc:276 msgctxt "STR_TITLE" msgid "Tip of the Day: %CURRENT/%TOTAL" msgstr "" #. C6Dsn -#: cui/inc/tipoftheday.hrc:278 +#: cui/inc/tipoftheday.hrc:277 msgctxt "STR_CMD" msgid "⌘ Cmd" msgstr "" #. RpVWs #. use narrow no-break space U+202F here -#: cui/inc/tipoftheday.hrc:279 +#: cui/inc/tipoftheday.hrc:278 msgctxt "STR_CTRL" msgid "Ctrl" msgstr "" #. mZWSR -#: cui/inc/tipoftheday.hrc:280 +#: cui/inc/tipoftheday.hrc:279 msgctxt "STR_CMD" msgid "Alt" msgstr "" #. QtEGa -#: cui/inc/tipoftheday.hrc:281 +#: cui/inc/tipoftheday.hrc:280 msgctxt "STR_CTRL" msgid "⌥ Opt" msgstr "" diff -Nru libreoffice-7.1.2~rc2/ucb/source/ucp/gio/gio_content.cxx libreoffice-7.1.3~rc2/ucb/source/ucp/gio/gio_content.cxx --- libreoffice-7.1.2~rc2/ucb/source/ucp/gio/gio_content.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/ucb/source/ucp/gio/gio_content.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -790,6 +790,8 @@ else mpInfo = pNewInfo; + pNewInfo = nullptr; + if (mpFile) //Discard and refetch { g_object_unref(mpFile); @@ -801,6 +803,9 @@ notifyPropertiesChange( aChanges ); } + if (pNewInfo) + g_object_unref(pNewInfo); + return aRet; } diff -Nru libreoffice-7.1.2~rc2/vcl/headless/svpgdi.cxx libreoffice-7.1.3~rc2/vcl/headless/svpgdi.cxx --- libreoffice-7.1.2~rc2/vcl/headless/svpgdi.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/headless/svpgdi.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1982,6 +1982,7 @@ 1.0); cairo_set_source(cr, pattern); + cairo_pattern_destroy(pattern); basegfx::B2DRange extents = getClippedFillDamage(cr); cairo_fill_preserve(cr); @@ -2001,8 +2002,7 @@ for (auto const & rPolygon : rPolyPolygon) AddPolygonToPath(cr, rPolygon, rObjectToDevice, !getAntiAlias(), false); - cairo_pattern_t* pattern; - pattern = cairo_pattern_create_linear(rGradient.maPoint1.getX(), rGradient.maPoint1.getY(), rGradient.maPoint2.getX(), rGradient.maPoint2.getY()); + cairo_pattern_t* pattern = cairo_pattern_create_linear(rGradient.maPoint1.getX(), rGradient.maPoint1.getY(), rGradient.maPoint2.getX(), rGradient.maPoint2.getY()); for (SalGradientStop const & rStop : rGradient.maStops) { @@ -2015,6 +2015,7 @@ cairo_pattern_add_color_stop_rgba(pattern, offset, r, g, b, a); } cairo_set_source(cr, pattern); + cairo_pattern_destroy(pattern); basegfx::B2DRange extents = getClippedFillDamage(cr); cairo_fill_preserve(cr); diff -Nru libreoffice-7.1.2~rc2/vcl/inc/impfont.hxx libreoffice-7.1.3~rc2/vcl/inc/impfont.hxx --- libreoffice-7.1.2~rc2/vcl/inc/impfont.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/inc/impfont.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -64,14 +64,12 @@ void SetCharSet( const rtl_TextEncoding eCharSet ) { meCharSet = eCharSet; } void SetFontSize( const Size& rSize ) { -#ifndef _WIN32 if(rSize.Height() != maAverageFontSize.Height()) { // reset evtl. buffered calculated AverageFontSize, it depends // on Font::Height mnCalculatedAverageFontWidth = 0; } -#endif maAverageFontSize = rSize; } @@ -91,10 +89,8 @@ void IncreaseQualityBy( int nQualityAmount ) { mnQuality += nQualityAmount; } void DecreaseQualityBy( int nQualityAmount ) { mnQuality -= nQualityAmount; } -#ifndef _WIN32 tools::Long GetCalculatedAverageFontWidth() const { return mnCalculatedAverageFontWidth; } void SetCalculatedAverageFontWidth(tools::Long nNew) { mnCalculatedAverageFontWidth = nNew; } -#endif bool operator==( const ImplFont& ) const; @@ -146,9 +142,7 @@ int mnQuality; -#ifndef _WIN32 tools::Long mnCalculatedAverageFontWidth; -#endif }; #endif // INCLUDED_VCL_INC_IMPFONT_HXX diff -Nru libreoffice-7.1.2~rc2/vcl/inc/salvtables.hxx libreoffice-7.1.3~rc2/vcl/inc/salvtables.hxx --- libreoffice-7.1.2~rc2/vcl/inc/salvtables.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/inc/salvtables.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -828,8 +828,8 @@ int get_menu_button_width() const override { - const int nButtonWidth = 20; - return nButtonWidth; + OutputDevice* pDefault = Application::GetDefaultDevice(); + return 20 * (pDefault ? pDefault->GetDPIScaleFactor() : 1.0); } void CallHandleEventListener(VclWindowEvent& rEvent) diff -Nru libreoffice-7.1.2~rc2/vcl/inc/unx/fontmanager.hxx libreoffice-7.1.3~rc2/vcl/inc/unx/fontmanager.hxx --- libreoffice-7.1.2~rc2/vcl/inc/unx/fontmanager.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/inc/unx/fontmanager.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -39,6 +39,7 @@ * friends are PostScript afm style, that is they are 1/1000 font height */ +class FontAttributes; class FontSubsetInfo; class FontConfigFontOptions; class FontSelectPattern; @@ -309,7 +310,9 @@ in different fonts in e.g. english and japanese */ void matchFont( FastPrintFontInfo& rInfo, const css::lang::Locale& rLocale ); - static std::unique_ptr getFontOptions( const FastPrintFontInfo&, int nSize); + + static std::unique_ptr getFontOptions(const FontAttributes& rFontAttributes, int nSize); + static void clearFontOptionsCache(); void Substitute(FontSelectPattern &rPattern, OUString& rMissingCodes); diff -Nru libreoffice-7.1.2~rc2/vcl/Library_vclplug_gtk3_kde5.mk libreoffice-7.1.3~rc2/vcl/Library_vclplug_gtk3_kde5.mk --- libreoffice-7.1.2~rc2/vcl/Library_vclplug_gtk3_kde5.mk 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/Library_vclplug_gtk3_kde5.mk 2021-04-28 16:17:45.000000000 +0000 @@ -41,6 +41,7 @@ $(eval $(call gb_Library_add_defs,vclplug_gtk3_kde5,\ -DVCLPLUG_GTK_IMPLEMENTATION -DVCLPLUG_GTK3_KDE5_IMPLEMENTATION \ + -DVCL_INTERNALS \ )) $(eval $(call gb_Library_use_custom_headers,vclplug_gtk3_kde5,\ diff -Nru libreoffice-7.1.2~rc2/vcl/Library_vclplug_gtk3.mk libreoffice-7.1.3~rc2/vcl/Library_vclplug_gtk3.mk --- libreoffice-7.1.2~rc2/vcl/Library_vclplug_gtk3.mk 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/Library_vclplug_gtk3.mk 2021-04-28 16:17:45.000000000 +0000 @@ -36,6 +36,7 @@ $(eval $(call gb_Library_add_defs,vclplug_gtk3,\ -DVCLPLUG_GTK_IMPLEMENTATION \ + -DVCL_INTERNALS \ )) $(eval $(call gb_Library_use_custom_headers,vclplug_gtk3,\ diff -Nru libreoffice-7.1.2~rc2/vcl/qa/cppunit/BackendTest.cxx libreoffice-7.1.3~rc2/vcl/qa/cppunit/BackendTest.cxx --- libreoffice-7.1.2~rc2/vcl/qa/cppunit/BackendTest.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/qa/cppunit/BackendTest.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -95,6 +95,8 @@ void testDrawRectWithRectangle() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestRect aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -106,6 +108,8 @@ void testDrawRectWithPixel() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPixel aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -117,6 +121,8 @@ void testDrawRectWithLine() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -128,6 +134,8 @@ void testDrawRectWithPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -138,6 +146,8 @@ void testDrawRectWithPolyLine() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -148,6 +158,8 @@ void testDrawRectWithPolyLineB2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyLineB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -158,6 +170,8 @@ void testDrawRectWithPolyPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -168,6 +182,8 @@ void testDrawRectWithPolyPolygonB2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyPolygonB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangle(aBitmap); @@ -178,6 +194,8 @@ void testDrawRectAAWithRectangle() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestRect aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -188,6 +206,8 @@ void testDrawRectAAWithPixel() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPixel aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -198,6 +218,8 @@ void testDrawRectAAWithLine() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -208,6 +230,8 @@ void testDrawRectAAWithPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -218,6 +242,8 @@ void testDrawRectAAWithPolyLine() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -228,6 +254,8 @@ void testDrawRectAAWithPolyLineB2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyLineB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -238,6 +266,8 @@ void testDrawRectAAWithPolyPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -248,6 +278,8 @@ void testDrawRectAAWithPolyPolygonB2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyPolygonB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRectangle(true); auto eResult = vcl::test::OutputDeviceTestCommon::checkRectangleAA(aBitmap); @@ -258,6 +290,8 @@ void testDrawFilledRectWithRectangle() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestRect aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap, false); @@ -273,6 +307,8 @@ void testDrawFilledRectWithPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap, false); @@ -288,6 +324,8 @@ void testDrawFilledRectWithPolyPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyPolygon aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap, false); @@ -303,6 +341,8 @@ void testDrawFilledRectWithPolyPolygon2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyPolygonB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupFilledRectangle(false); auto eResult = vcl::test::OutputDeviceTestCommon::checkFilledRectangle(aBitmap, false); @@ -388,6 +428,8 @@ void testDrawBezierWithPolylineB2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyLineB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupBezier(); auto eResult = vcl::test::OutputDeviceTestCommon::checkBezier(aBitmap); @@ -398,6 +440,8 @@ void testDrawBezierAAWithPolylineB2D() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestPolyLineB2D aOutDevTest; Bitmap aBitmap = aOutDevTest.setupAABezier(); auto eResult = vcl::test::OutputDeviceTestCommon::checkBezier(aBitmap); @@ -408,6 +452,8 @@ void testDrawBitmap() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestBitmap aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDrawBitmap(); exportImage("08-01_bitmap_test.png", aBitmap); @@ -418,6 +464,8 @@ void testDrawTransformedBitmap() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestBitmap aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDrawTransformedBitmap(); auto eResult = vcl::test::OutputDeviceTestBitmap::checkTransformedBitmap(aBitmap); @@ -428,6 +476,8 @@ void testDrawBitmapExWithAlpha() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestBitmap aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDrawBitmapExWithAlpha(); auto eResult = vcl::test::OutputDeviceTestBitmap::checkBitmapExWithAlpha(aBitmap); @@ -438,6 +488,8 @@ void testDrawMask() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestBitmap aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDrawMask(); auto eResult = vcl::test::OutputDeviceTestBitmap::checkMask(aBitmap); @@ -448,6 +500,8 @@ void testDrawBlend() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestBitmap aOutDevTest; BitmapEx aBitmapEx = aOutDevTest.setupDrawBlend(); auto eResult = vcl::test::OutputDeviceTestBitmap::checkBlend(aBitmapEx); @@ -458,6 +512,8 @@ void testDrawXor() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestAnotherOutDev aOutDevTest; Bitmap aBitmap = aOutDevTest.setupXOR(); auto eResult = vcl::test::OutputDeviceTestAnotherOutDev::checkXOR(aBitmap); @@ -468,6 +524,8 @@ void testClipRectangle() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestClip aOutDevTest; Bitmap aBitmap = aOutDevTest.setupClipRectangle(); auto eResult = vcl::test::OutputDeviceTestClip::checkClip(aBitmap); @@ -478,6 +536,8 @@ void testClipPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestClip aOutDevTest; Bitmap aBitmap = aOutDevTest.setupClipPolygon(); auto eResult = vcl::test::OutputDeviceTestClip::checkClip(aBitmap); @@ -488,6 +548,8 @@ void testClipPolyPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestClip aOutDevTest; Bitmap aBitmap = aOutDevTest.setupClipPolyPolygon(); auto eResult = vcl::test::OutputDeviceTestClip::checkClip(aBitmap); @@ -498,6 +560,8 @@ void testClipB2DPolyPolygon() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestClip aOutDevTest; Bitmap aBitmap = aOutDevTest.setupClipB2DPolyPolygon(); auto eResult = vcl::test::OutputDeviceTestClip::checkClip(aBitmap); @@ -508,6 +572,8 @@ void testDrawOutDev() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestAnotherOutDev aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDrawOutDev(); auto eResult = vcl::test::OutputDeviceTestAnotherOutDev::checkDrawOutDev(aBitmap); @@ -518,6 +584,8 @@ void testDashedLine() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestLine aOutDevTest; Bitmap aBitmap = aOutDevTest.setupDashedLine(); auto eResult = vcl::test::OutputDeviceTestLine::checkDashedLine(aBitmap); @@ -528,6 +596,8 @@ void testErase() { + if (getDefaultDeviceBitCount() < 24) + return; { // Create normal virtual device (no alpha). ScopedVclPtr device @@ -593,6 +663,8 @@ void testLinearGradient() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestGradient aOutDevTest; Bitmap aBitmap = aOutDevTest.setupLinearGradient(); auto eResult = vcl::test::OutputDeviceTestGradient::checkLinearGradient(aBitmap); @@ -603,6 +675,8 @@ void testLinearGradientAngled() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestGradient aOutDevTest; Bitmap aBitmap = aOutDevTest.setupLinearGradientAngled(); auto eResult = vcl::test::OutputDeviceTestGradient::checkLinearGradientAngled(aBitmap); @@ -623,6 +697,8 @@ void testLinearGradientIntensity() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestGradient aOutDevTest; Bitmap aBitmap = aOutDevTest.setupLinearGradientIntensity(); auto eResult = vcl::test::OutputDeviceTestGradient::checkLinearGradientIntensity(aBitmap); @@ -633,6 +709,8 @@ void testLinearGradientSteps() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestGradient aOutDevTest; Bitmap aBitmap = aOutDevTest.setupLinearGradientSteps(); auto eResult = vcl::test::OutputDeviceTestGradient::checkLinearGradientSteps(aBitmap); @@ -643,6 +721,8 @@ void testAxialGradient() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestGradient aOutDevTest; Bitmap aBitmap = aOutDevTest.setupAxialGradient(); auto eResult = vcl::test::OutputDeviceTestGradient::checkAxialGradient(aBitmap); @@ -653,6 +733,8 @@ void testRadialGradient() { + if (getDefaultDeviceBitCount() < 24) + return; vcl::test::OutputDeviceTestGradient aOutDevTest; Bitmap aBitmap = aOutDevTest.setupRadialGradient(); auto eResult = vcl::test::OutputDeviceTestGradient::checkRadialGradient(aBitmap); @@ -676,6 +758,8 @@ { // TODO: This unit test is not executed for macOS unless bitmap scaling is implemented #ifndef MACOSX + if (getDefaultDeviceBitCount() < 24) + return; // Create virtual device with alpha. ScopedVclPtr device = VclPtr::Create(DeviceFormat::DEFAULT, DeviceFormat::DEFAULT); @@ -728,6 +812,8 @@ { // TODO: This unit test is not executed for macOS unless bitmap scaling is implemented #ifndef MACOSX + if (getDefaultDeviceBitCount() < 24) + return; // Normal virtual device. ScopedVclPtr device = VclPtr::Create(DeviceFormat::DEFAULT); // Virtual device with alpha. @@ -822,6 +908,8 @@ void testTdf136171() { + if (getDefaultDeviceBitCount() < 24) + return; // Create virtual device with alpha. ScopedVclPtr device = VclPtr::Create(DeviceFormat::DEFAULT, DeviceFormat::DEFAULT); diff -Nru libreoffice-7.1.2~rc2/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx libreoffice-7.1.3~rc2/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx --- libreoffice-7.1.2~rc2/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/qa/cppunit/bitmaprender/BitmapRenderTest.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -122,6 +122,8 @@ { // TODO: This unit test is not executed for macOS unless bitmap scaling is implemented #ifndef MACOSX + if (getDefaultDeviceBitCount() < 24) + return; ScopedVclPtrInstance pVDev; pVDev->SetOutputSizePixel(Size(8, 8)); pVDev->SetBackground(Wallpaper(COL_WHITE)); diff -Nru libreoffice-7.1.2~rc2/vcl/qa/cppunit/complextext.cxx libreoffice-7.1.3~rc2/vcl/qa/cppunit/complextext.cxx --- libreoffice-7.1.2~rc2/vcl/qa/cppunit/complextext.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/qa/cppunit/complextext.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -91,9 +91,12 @@ CPPUNIT_ASSERT_EQUAL(tools::Long(14), pOutDev->GetTextHeight()); // exact bounding rectangle, not essentially the same as text width/height - tools::Rectangle aBoundRect, aTestRect( 0, 1, 71, 15 ); + tools::Rectangle aBoundRect; pOutDev->GetTextBoundRect(aBoundRect, aOneTwoThree); - CPPUNIT_ASSERT_EQUAL(aTestRect, aBoundRect); + CPPUNIT_ASSERT_DOUBLES_EQUAL(0, aBoundRect.getX(), 1); // This sometimes equals to 1 + CPPUNIT_ASSERT_DOUBLES_EQUAL(1, aBoundRect.getY(), 1); + CPPUNIT_ASSERT_DOUBLES_EQUAL(71, aBoundRect.getWidth(), 1); // This sometimes equals to 70 + CPPUNIT_ASSERT_DOUBLES_EQUAL(15, aBoundRect.getHeight(), 1); #if 0 // FIXME: This seems to be wishful thinking, GetTextRect() does not take diff -Nru libreoffice-7.1.2~rc2/vcl/qa/cppunit/skia/skia.cxx libreoffice-7.1.3~rc2/vcl/qa/cppunit/skia/skia.cxx --- libreoffice-7.1.2~rc2/vcl/qa/cppunit/skia/skia.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/qa/cppunit/skia/skia.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -36,6 +36,7 @@ void testAlphaBlendWith(); void testBitmapCopyOnWrite(); void testTdf137329(); + void testTdf140848(); CPPUNIT_TEST_SUITE(SkiaTest); CPPUNIT_TEST(testBitmapErase); @@ -44,6 +45,7 @@ CPPUNIT_TEST(testAlphaBlendWith); CPPUNIT_TEST(testBitmapCopyOnWrite); CPPUNIT_TEST(testTdf137329); + CPPUNIT_TEST(testTdf140848); CPPUNIT_TEST_SUITE_END(); private: @@ -326,6 +328,34 @@ CPPUNIT_ASSERT_EQUAL(COL_BLACK, device->GetPixel(Point(4, 4))); } +void SkiaTest::testTdf140848() +{ + if (!SkiaHelper::isVCLSkiaEnabled()) + return; + ScopedVclPtr device = VclPtr::Create(DeviceFormat::DEFAULT); + device->SetOutputSizePixel(Size(1300, 400)); + device->SetBackground(Wallpaper(COL_BLACK)); + device->SetAntialiasing(AntialiasingFlags::Enable); + device->Erase(); + device->SetLineColor(); + device->SetFillColor(COL_WHITE); + basegfx::B2DPolygon p1 = { { 952.73121259842514519, 102.4599685039370911 }, + { 952.73121259842514519, 66.55445669291347599 }, + { 1239.9753070866140661, 66.554456692913390725 }, + { 1239.9753070866140661, 138.36548031496062094 }, + { 952.73121259842514519, 138.36548031496070621 } }; + basegfx::B2DPolygon p2 = { { 1168.1642834645670064, 210.17650393700790801 }, + { 1168.1642834645670064, 66.554456692913404936 }, + { 1239.9753070866140661, 66.554456692913390725 }, + { 1239.9753070866142934, 353.79855118110236845 }, + { 1168.1642834645670064, 353.79855118110236845 } }; + device->DrawPolyPolygon(basegfx::B2DPolyPolygon(p1)); + device->DrawPolyPolygon(basegfx::B2DPolyPolygon(p2)); + //savePNG("/tmp/tdf140848.png", device); + // Rounding errors caused the overlapping part not to be drawn. + CPPUNIT_ASSERT_EQUAL(COL_WHITE, device->GetPixel(Point(1200, 100))); +} + } // namespace CPPUNIT_TEST_SUITE_REGISTRATION(SkiaTest); diff -Nru libreoffice-7.1.2~rc2/vcl/qt5/Qt5Clipboard.cxx libreoffice-7.1.3~rc2/vcl/qt5/Qt5Clipboard.cxx --- libreoffice-7.1.2~rc2/vcl/qt5/Qt5Clipboard.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/qt5/Qt5Clipboard.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -150,6 +150,15 @@ osl::ClearableMutexGuard aGuard(m_aMutex); + // QtWayland will send a second change notification (seemingly without any + // trigger). And any C'n'P operation in the Qt file picker emits a signal, + // with LO still holding the clipboard ownership, but internally having lost + // it. So ignore any signal, which still delivers the internal Qt5MimeData + // as the clipboard content and is no "advertised" change. + if (!m_bOwnClipboardChange && isOwner(aMode) + && dynamic_cast(QApplication::clipboard()->mimeData(aMode))) + return; + css::uno::Reference xOldOwner(m_aOwner); css::uno::Reference xOldContents(m_aContents); // ownership change from LO POV is handled in setContents diff -Nru libreoffice-7.1.2~rc2/vcl/qt5/Qt5Frame.cxx libreoffice-7.1.3~rc2/vcl/qt5/Qt5Frame.cxx --- libreoffice-7.1.2~rc2/vcl/qt5/Qt5Frame.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/qt5/Qt5Frame.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -290,11 +290,11 @@ void Qt5Frame::InitQt5SvpGraphics(Qt5SvpGraphics* pQt5SvpGraphics) { - int width = 640; - int height = 480; + QSize aSize = m_pQWidget->size() * devicePixelRatioF(); m_pSvpGraphics = pQt5SvpGraphics; - m_pSurface.reset(cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height)); - m_pSvpGraphics->setSurface(m_pSurface.get(), basegfx::B2IVector(width, height)); + m_pSurface.reset( + cairo_image_surface_create(CAIRO_FORMAT_ARGB32, aSize.width(), aSize.height())); + m_pSvpGraphics->setSurface(m_pSurface.get(), basegfx::B2IVector(aSize.width(), aSize.height())); cairo_surface_set_user_data(m_pSurface.get(), Qt5SvpGraphics::getDamageKey(), &m_aDamageHandler, nullptr); } diff -Nru libreoffice-7.1.2~rc2/vcl/skia/gdiimpl.cxx libreoffice-7.1.3~rc2/vcl/skia/gdiimpl.cxx --- libreoffice-7.1.2~rc2/vcl/skia/gdiimpl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/skia/gdiimpl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1012,6 +1012,20 @@ return true; } +// Tdf#140848 - basegfx::utils::mergeToSinglePolyPolygon() seems to have rounding +// errors that sometimes cause it to merge incorrectly. +static void roundPolygonPoints(basegfx::B2DPolyPolygon& polyPolygon) +{ + for (basegfx::B2DPolygon& polygon : polyPolygon) + { + polygon.makeUnique(); + for (sal_uInt32 i = 0; i < polygon.count(); ++i) + polygon.setB2DPoint(i, basegfx::B2DPoint(basegfx::fround(polygon.getB2DPoint(i)))); + // Control points are saved as vectors relative to points, so hopefully + // there's no need to round those. + } +} + void SkiaSalGraphicsImpl::checkPendingDrawing() { if (mLastPolyPolygonInfo.polygons.size() != 0) @@ -1023,10 +1037,12 @@ if (polygons.size() == 1) performDrawPolyPolygon(polygons.front(), transparency, true); else - // TODO: tdf#136222 shows that basegfx::utils::mergeToSinglePolyPolygon() is unreliable - // in corner cases, possibly either a bug or rounding errors somewhere. + { + for (basegfx::B2DPolyPolygon& p : polygons) + roundPolygonPoints(p); performDrawPolyPolygon(basegfx::utils::mergeToSinglePolyPolygon(polygons), transparency, true); + } } } diff -Nru libreoffice-7.1.2~rc2/vcl/skia/win/gdiimpl.cxx libreoffice-7.1.3~rc2/vcl/skia/win/gdiimpl.cxx --- libreoffice-7.1.2~rc2/vcl/skia/win/gdiimpl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/skia/win/gdiimpl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -213,6 +213,12 @@ GlyphOrientation glyphOrientation = GlyphOrientation::Apply; if (!typeface) // fall back to GDI text rendering { + // If lfWidth is kept, then with fHScale != 1 characters get too wide, presumably + // because the horizontal scaling gets applied twice if GDI is used for drawing (tdf#141715). + // Using lfWidth /= fHScale gives slightly incorrect sizes, for a reason I don't understand. + // LOGFONT docs say that 0 means GDI will find out the right value on its own somehow, + // and it apparently works. + logFont.lfWidth = 0; typeface.reset(SkCreateTypefaceFromLOGFONT(logFont)); glyphOrientation = GlyphOrientation::Ignore; } diff -Nru libreoffice-7.1.2~rc2/vcl/source/bitmap/BitmapSepiaFilter.cxx libreoffice-7.1.3~rc2/vcl/source/bitmap/BitmapSepiaFilter.cxx --- libreoffice-7.1.2~rc2/vcl/source/bitmap/BitmapSepiaFilter.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/bitmap/BitmapSepiaFilter.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -103,7 +103,7 @@ } if (bRet) - return rBitmapEx; + return BitmapEx(aBitmap); return BitmapEx(); } diff -Nru libreoffice-7.1.2~rc2/vcl/source/bitmap/BitmapSmoothenFilter.cxx libreoffice-7.1.3~rc2/vcl/source/bitmap/BitmapSmoothenFilter.cxx --- libreoffice-7.1.2~rc2/vcl/source/bitmap/BitmapSmoothenFilter.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/bitmap/BitmapSmoothenFilter.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -24,7 +24,7 @@ bRet = BitmapFilter::Filter(aBitmapEx, BitmapSeparableUnsharpenFilter(mfRadius)); if (bRet) - return rBitmapEx; + return aBitmapEx; return BitmapEx(); } diff -Nru libreoffice-7.1.2~rc2/vcl/source/bitmap/BitmapSolarizeFilter.cxx libreoffice-7.1.3~rc2/vcl/source/bitmap/BitmapSolarizeFilter.cxx --- libreoffice-7.1.2~rc2/vcl/source/bitmap/BitmapSolarizeFilter.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/bitmap/BitmapSolarizeFilter.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -63,7 +63,7 @@ } if (bRet) - return rBitmapEx; + return BitmapEx(aBitmap); return BitmapEx(); } diff -Nru libreoffice-7.1.2~rc2/vcl/source/control/button.cxx libreoffice-7.1.3~rc2/vcl/source/control/button.cxx --- libreoffice-7.1.2~rc2/vcl/source/control/button.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/control/button.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -821,6 +821,8 @@ // calculate symbol size tools::Long nSymbolSize = pDev->GetTextHeight() / 2 + 1; + if (nSymbolSize > aSize.Width() / 2) + nSymbolSize = aSize.Width() / 2; nSeparatorX = aInRect.Right() - 2*nSymbolSize; aSize.AdjustWidth( -(2*nSymbolSize) ); diff -Nru libreoffice-7.1.2~rc2/vcl/source/filter/ipdf/pdfread.cxx libreoffice-7.1.3~rc2/vcl/source/filter/ipdf/pdfread.cxx --- libreoffice-7.1.2~rc2/vcl/source/filter/ipdf/pdfread.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/filter/ipdf/pdfread.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -74,6 +74,8 @@ { // Downconvert to PDF-1.6. auto pPdfium = vcl::pdf::PDFiumLibrary::get(); + if (!pPdfium) + return false; // Read input into a buffer. SvMemoryStream aInBuffer; diff -Nru libreoffice-7.1.2~rc2/vcl/source/filter/wmf/emfwr.cxx libreoffice-7.1.3~rc2/vcl/source/filter/wmf/emfwr.cxx --- libreoffice-7.1.2~rc2/vcl/source/filter/wmf/emfwr.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/filter/wmf/emfwr.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -474,7 +474,7 @@ // specific formats. const tools::Long nAverageFontWidth(rFont.GetOrCalculateAverageFontWidth()); - if(nAverageFontWidth > 0) + if(nFontHeight > 0) { const double fScaleFactor(static_cast(nAverageFontWidth) / static_cast(nFontHeight)); nFontWidth = static_cast(static_cast(nFontWidth) * fScaleFactor); diff -Nru libreoffice-7.1.2~rc2/vcl/source/font/font.cxx libreoffice-7.1.3~rc2/vcl/source/font/font.cxx --- libreoffice-7.1.2~rc2/vcl/source/font/font.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/font/font.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -33,6 +33,7 @@ #include #include +#include #ifdef _WIN32 #include @@ -366,34 +367,49 @@ // tdf#127471 for corrections on EMF/WMF we need the AvgFontWidth in Windows-specific notation tools::Long Font::GetOrCalculateAverageFontWidth() const { -#ifdef _WIN32 - // on windows we just have it available - return GetAverageFontWidth(); -#else - // On non-Windows systems we need to calculate AvgFontWidth - // as close as possible (discussion see documentation in task) if(0 == mpImplFont->GetCalculatedAverageFontWidth()) { - // calculate it. For discussion of method used, see task - const std::size_t nSize(127 - 32); - std::array aArray; + // VirtualDevice is not thread safe + SolarMutexGuard aGuard; + + // create unscaled copy of font (this), a VirtualDevice and set it there + vcl::Font aUnscaledFont(*this); + ScopedVclPtr pTempVirtualDevice(VclPtr::Create()); + aUnscaledFont.SetAverageFontWidth(0); + pTempVirtualDevice->SetFont(aUnscaledFont); - for(sal_Unicode a(0); a < nSize; a++) +#ifdef _WIN32 + // on Windows systems use FontMetric to get/create AverageFontWidth from system + const FontMetric aMetric(pTempVirtualDevice->GetFontMetric()); + const_cast(this)->mpImplFont->SetCalculatedAverageFontWidth(aMetric.GetAverageFontWidth()); +#else + // On non-Windows systems we need to calculate AvgFontWidth + // as close as possible (discussion see documentation in task), + // so calculate it. For discussion of method used, see task + // buffer measure string creation, will always use the same + static OUString aMeasureString; + + if(!aMeasureString.getLength()) { - aArray[a] = a + 32; + const std::size_t nSize(127 - 32); + std::array aArray; + + for(sal_Unicode a(0); a < nSize; a++) + { + aArray[a] = a + 32; + } + + aMeasureString = OUString(aArray.data()); } - vcl::Font aUnscaledFont(*this); - ScopedVclPtr pVirDev(VclPtr::Create()); - aUnscaledFont.SetAverageFontWidth(0); - pVirDev->SetFont(aUnscaledFont); const double fAverageFontWidth( - pVirDev->GetTextWidth(OUString(aArray.data(), nSize)) / static_cast(nSize)); + pTempVirtualDevice->GetTextWidth(aMeasureString, 0, aMeasureString.getLength()) / + static_cast(aMeasureString.getLength())); const_cast(this)->mpImplFont->SetCalculatedAverageFontWidth(basegfx::fround(fAverageFontWidth)); +#endif } return mpImplFont->GetCalculatedAverageFontWidth(); -#endif } SvStream& ReadImplFont( SvStream& rIStm, ImplFont& rImplFont, tools::Long& rnNormedFontScaling ) @@ -518,7 +534,7 @@ aUnscaledFont.SetAverageFontWidth(0); const FontMetric aUnscaledFontMetric(Application::GetDefaultDevice()->GetFontMetric(aUnscaledFont)); - if (aUnscaledFontMetric.GetAverageFontWidth() > 0) + if (nHeight > 0) { const double fScaleFactor(static_cast(nNormedFontScaling) / static_cast(nHeight)); nScaledWidth = basegfx::fround(static_cast(aUnscaledFontMetric.GetAverageFontWidth()) * fScaleFactor); @@ -882,10 +898,8 @@ maFillColor( COL_TRANSPARENT ), mbWordLine( false ), mnOrientation( 0 ), - mnQuality( 0 ) -#ifndef _WIN32 - , mnCalculatedAverageFontWidth(0) -#endif + mnQuality( 0 ), + mnCalculatedAverageFontWidth( 0 ) {} ImplFont::ImplFont( const ImplFont& rImplFont ) : @@ -917,10 +931,8 @@ maFillColor( rImplFont.maFillColor ), mbWordLine( rImplFont.mbWordLine ), mnOrientation( rImplFont.mnOrientation ), - mnQuality( rImplFont.mnQuality ) -#ifndef _WIN32 - , mnCalculatedAverageFontWidth(rImplFont.mnCalculatedAverageFontWidth) -#endif + mnQuality( rImplFont.mnQuality ), + mnCalculatedAverageFontWidth( rImplFont.mnCalculatedAverageFontWidth ) {} bool ImplFont::operator==( const ImplFont& rOther ) const diff -Nru libreoffice-7.1.2~rc2/vcl/source/gdi/print2.cxx libreoffice-7.1.3~rc2/vcl/source/gdi/print2.cxx --- libreoffice-7.1.2~rc2/vcl/source/gdi/print2.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/gdi/print2.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -790,6 +790,18 @@ ++nActionNum; } + if (nLastBgAction != -1) + { + size_t nActionSize = rInMtf.GetActionSize(); + // tdf#134736 move nLastBgAction to also include any trailing pops + for (size_t nPostLastBgAction = nLastBgAction + 1; nPostLastBgAction < nActionSize; ++nPostLastBgAction) + { + if (rInMtf.GetAction(nPostLastBgAction)->GetType() != MetaActionType::POP) + break; + nLastBgAction = nPostLastBgAction; + } + } + aMapModeVDev->ClearStack(); // clean up aMapModeVDev // fast-forward until one after the last background action diff -Nru libreoffice-7.1.2~rc2/vcl/source/window/layout.cxx libreoffice-7.1.3~rc2/vcl/source/window/layout.cxx --- libreoffice-7.1.2~rc2/vcl/source/window/layout.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/window/layout.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1913,31 +1913,36 @@ tools::Long nAvailHeight = rAllocation.Height() - 2 * m_nBorderWidth; tools::Long nAvailWidth = rAllocation.Width() - 2 * m_nBorderWidth; + // vert. ScrollBar + bool bShowVScroll; if (GetStyle() & WB_AUTOVSCROLL) - { - m_pVScroll->Show(nAvailHeight < aChildReq.Height()); - } - else if (m_pVScroll->IsVisible() != bool(GetStyle() & WB_VSCROLL)) - m_pVScroll->Show((GetStyle() & WB_VSCROLL) != 0); + bShowVScroll = nAvailHeight < aChildReq.Height(); + else + bShowVScroll = (GetStyle() & WB_VSCROLL) != 0; - if (m_pVScroll->IsVisible()) + if (bShowVScroll) nAvailWidth -= getLayoutRequisition(*m_pVScroll).Width(); // horz. ScrollBar + bool bShowHScroll; if (GetStyle() & WB_AUTOHSCROLL) { - bool bShowHScroll = nAvailWidth < aChildReq.Width(); - m_pHScroll->Show(bShowHScroll); + bShowHScroll = nAvailWidth < aChildReq.Width(); if (bShowHScroll) nAvailHeight -= getLayoutRequisition(*m_pHScroll).Height(); if (GetStyle() & WB_AUTOVSCROLL) - m_pVScroll->Show(nAvailHeight < aChildReq.Height()); + bShowVScroll = nAvailHeight < aChildReq.Height(); } - else if (m_pHScroll->IsVisible() != bool(GetStyle() & WB_HSCROLL)) - m_pHScroll->Show((GetStyle() & WB_HSCROLL) != 0); + else + bShowHScroll = (GetStyle() & WB_HSCROLL) != 0; + + if (m_pHScroll->IsVisible() != bShowHScroll) + m_pHScroll->Show(bShowHScroll); + if (m_pVScroll->IsVisible() != bShowVScroll) + m_pVScroll->Show(bShowVScroll); Size aInnerSize(rAllocation); aInnerSize.AdjustWidth(-2 * m_nBorderWidth); diff -Nru libreoffice-7.1.2~rc2/vcl/source/window/menu.cxx libreoffice-7.1.3~rc2/vcl/source/window/menu.cxx --- libreoffice-7.1.2~rc2/vcl/source/window/menu.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/window/menu.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1302,7 +1302,7 @@ // Since PopupMenu are sometimes shared by different instances of MenuBar, the mxAccessible member gets // overwritten and may contain a disposed object when the initial menubar gets set again. So use the // mxAccessible member only for sub menus. - if ( pStartedFrom ) + if (pStartedFrom && pStartedFrom != this) { for ( sal_uInt16 i = 0, nCount = pStartedFrom->GetItemCount(); i < nCount; ++i ) { diff -Nru libreoffice-7.1.2~rc2/vcl/source/window/syswin.cxx libreoffice-7.1.3~rc2/vcl/source/window/syswin.cxx --- libreoffice-7.1.2~rc2/vcl/source/window/syswin.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/source/window/syswin.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1066,7 +1066,10 @@ if (!isLayoutEnabled()) return Window::GetOptimalSize(); - Size aSize = VclContainer::getLayoutRequisition(*GetWindow(GetWindowType::FirstChild)); + Window *pBox = GetWindow(GetWindowType::FirstChild); + // tdf#141318 Do the same as SystemWindow::setOptimalLayoutSize in case we're called before initial layout + const_cast(this)->settingOptimalLayoutSize(pBox); + Size aSize = VclContainer::getLayoutRequisition(*pBox); sal_Int32 nBorderWidth = get_border_width(); diff -Nru libreoffice-7.1.2~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx libreoffice-7.1.3~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx --- libreoffice-7.1.2~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/generic/fontmanager/fontconfig.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -18,6 +18,9 @@ */ #include +#include + +#include #include #include #include @@ -44,6 +47,7 @@ #include +#include #include #include @@ -51,7 +55,92 @@ namespace { - typedef std::pair lang_and_element; + +struct FontOptionsKey +{ + OUString m_sFamilyName; + int m_nFontSize; + FontItalic m_eItalic; + FontWeight m_eWeight; + FontWidth m_eWidth; + + bool operator==(const FontOptionsKey& rOther) const + { + return m_sFamilyName == rOther.m_sFamilyName && + m_nFontSize == rOther.m_nFontSize && + m_eItalic == rOther.m_eItalic && + m_eWeight == rOther.m_eWeight && + m_eWidth == rOther.m_eWidth; + } +}; + +} + +namespace std +{ + +template <> struct hash +{ + std::size_t operator()(const FontOptionsKey& k) const noexcept + { + std::size_t seed = k.m_sFamilyName.hashCode(); + boost::hash_combine(seed, k.m_nFontSize); + boost::hash_combine(seed, k.m_eItalic); + boost::hash_combine(seed, k.m_eWeight); + boost::hash_combine(seed, k.m_eWidth); + return seed; + } +}; + +} // end std namespace + +namespace +{ + +struct FcPatternDeleter +{ + void operator()(FcPattern* pPattern) const + { + FcPatternDestroy(pPattern); + } +}; + +typedef std::unique_ptr FcPatternUniquePtr; + +class CachedFontConfigFontOptions +{ +private: + FontOptionsKey m_aKey; + std::unique_ptr m_xLastFontOptions; + + o3tl::lru_map lru_options_cache; + +public: + CachedFontConfigFontOptions() + : lru_options_cache(10) // arbitrary cache size of 10 + { + } + + std::unique_ptr lookup(const FontOptionsKey& rKey) + { + auto it = lru_options_cache.find(rKey); + if (it != lru_options_cache.end()) + return std::make_unique(FcPatternDuplicate(it->second.get())); + return nullptr; + } + + void cache(const FontOptionsKey& rKey, const FcPattern* pPattern) + { + lru_options_cache.insert(std::make_pair(rKey, FcPatternUniquePtr(FcPatternDuplicate(pPattern)))); + } + + void clear() + { + m_xLastFontOptions.reset(); + } +}; + +typedef std::pair lang_and_element; class FontCfgWrapper { @@ -76,6 +165,7 @@ //to-do, make private and add some cleaner accessor methods std::unordered_map< OString, OString > m_aFontNameToLocalized; std::unordered_map< OString, OString > m_aLocalizedToCanonical; + CachedFontConfigFontOptions m_aCachedFontOptions; private: void cacheLocalizedFontNames(const FcChar8 *origfontname, const FcChar8 *bestfontname, const std::vector< lang_and_element > &lang_and_elements); @@ -367,6 +457,7 @@ m_pFontSet = nullptr; } m_pLanguageTag.reset(); + m_aCachedFontOptions.clear(); } /* @@ -1095,15 +1186,20 @@ FcPatternAddBool(mpPattern, FC_EMBOLDEN, bEmbolden ? FcTrue : FcFalse); } -std::unique_ptr PrintFontManager::getFontOptions(const FastPrintFontInfo& rInfo, int nSize) +std::unique_ptr PrintFontManager::getFontOptions(const FontAttributes& rInfo, int nSize) { + FontOptionsKey aKey{ rInfo.GetFamilyName(), nSize, rInfo.GetItalic(), rInfo.GetWeight(), rInfo.GetWidthType() }; + FontCfgWrapper& rWrapper = FontCfgWrapper::get(); - std::unique_ptr pOptions; + std::unique_ptr pOptions = rWrapper.m_aCachedFontOptions.lookup(aKey); + if (pOptions) + return pOptions; + FcConfig* pConfig = FcConfigGetCurrent(); FcPattern* pPattern = FcPatternCreate(); - OString sFamily = OUStringToOString( rInfo.m_aFamilyName, RTL_TEXTENCODING_UTF8 ); + OString sFamily = OUStringToOString(aKey.m_sFamilyName, RTL_TEXTENCODING_UTF8); std::unordered_map< OString, OString >::const_iterator aI = rWrapper.m_aLocalizedToCanonical.find(sFamily); if (aI != rWrapper.m_aLocalizedToCanonical.end()) @@ -1111,23 +1207,19 @@ if( !sFamily.isEmpty() ) FcPatternAddString(pPattern, FC_FAMILY, reinterpret_cast(sFamily.getStr())); - addtopattern(pPattern, rInfo.m_eItalic, rInfo.m_eWeight, rInfo.m_eWidth, rInfo.m_ePitch); + // TODO: ePitch argument of always PITCH_DONTKNOW is suspicious + addtopattern(pPattern, aKey.m_eItalic, aKey.m_eWeight, aKey.m_eWidth, PITCH_DONTKNOW); FcPatternAddDouble(pPattern, FC_PIXEL_SIZE, nSize); - int hintstyle = FC_HINT_FULL; - FcConfigSubstitute(pConfig, pPattern, FcMatchPattern); FontConfigFontOptions::cairo_font_options_substitute(pPattern); FcDefaultSubstitute(pPattern); FcResult eResult = FcResultNoMatch; FcFontSet* pFontSet = rWrapper.getFontSet(); - FcPattern* pResult = FcFontSetMatch( pConfig, &pFontSet, 1, pPattern, &eResult ); - if( pResult ) + if (FcPattern* pResult = FcFontSetMatch(pConfig, &pFontSet, 1, pPattern, &eResult)) { - (void) FcPatternGetInteger(pResult, - FC_HINT_STYLE, 0, &hintstyle); - + rWrapper.m_aCachedFontOptions.cache(aKey, pResult); pOptions.reset(new FontConfigFontOptions(pResult)); } @@ -1137,6 +1229,12 @@ return pOptions; } +void PrintFontManager::clearFontOptionsCache() +{ + FontCfgWrapper& rWrapper = FontCfgWrapper::get(); + rWrapper.m_aCachedFontOptions.clear(); +} + void PrintFontManager::matchFont( FastPrintFontInfo& rInfo, const css::lang::Locale& rLocale ) { FontCfgWrapper& rWrapper = FontCfgWrapper::get(); diff -Nru libreoffice-7.1.2~rc2/vcl/unx/generic/gdi/freetypetextrender.cxx libreoffice-7.1.3~rc2/vcl/unx/generic/gdi/freetypetextrender.cxx --- libreoffice-7.1.2~rc2/vcl/unx/generic/gdi/freetypetextrender.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/generic/gdi/freetypetextrender.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -101,6 +101,7 @@ void FreeTypeTextRenderImpl::ClearDevFontCache() { FreetypeManager::get().ClearFontCache(); + psp::PrintFontManager::clearFontOptionsCache(); } void FreeTypeTextRenderImpl::GetDevFontList( PhysicalFontCollection* pFontCollection ) diff -Nru libreoffice-7.1.2~rc2/vcl/unx/generic/glyphs/freetype_glyphcache.cxx libreoffice-7.1.3~rc2/vcl/unx/generic/glyphs/freetype_glyphcache.cxx --- libreoffice-7.1.2~rc2/vcl/unx/generic/glyphs/freetype_glyphcache.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/generic/glyphs/freetype_glyphcache.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -473,16 +473,9 @@ namespace { - std::unique_ptr GetFCFontOptions( const FontAttributes& rFontAttributes, int nSize) + std::unique_ptr GetFCFontOptions(const FontAttributes& rFontAttributes, int nSize) { - psp::FastPrintFontInfo aInfo; - - aInfo.m_aFamilyName = rFontAttributes.GetFamilyName(); - aInfo.m_eItalic = rFontAttributes.GetItalic(); - aInfo.m_eWeight = rFontAttributes.GetWeight(); - aInfo.m_eWidth = rFontAttributes.GetWidthType(); - - return psp::PrintFontManager::getFontOptions(aInfo, nSize); + return psp::PrintFontManager::getFontOptions(rFontAttributes, nSize); } } diff -Nru libreoffice-7.1.2~rc2/vcl/unx/gtk3/a11y/atkwrapper.hxx libreoffice-7.1.3~rc2/vcl/unx/gtk3/a11y/atkwrapper.hxx --- libreoffice-7.1.2~rc2/vcl/unx/gtk3/a11y/atkwrapper.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/gtk3/a11y/atkwrapper.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -46,6 +46,7 @@ { AtkObject aParent; AtkObject* mpOrig; //if we're a GtkDrawingArea acting as a custom LibreOffice widget, this is the toolkit default impl + AtkObject* mpSysObjChild; //if we're a container for a sysobj, then this is the sysobj native gtk AtkObject css::uno::Reference mpAccessible; css::uno::Reference mpContext; diff -Nru libreoffice-7.1.2~rc2/vcl/unx/gtk3/a11y/gtk3atkwrapper.cxx libreoffice-7.1.3~rc2/vcl/unx/gtk3/a11y/gtk3atkwrapper.cxx --- libreoffice-7.1.2~rc2/vcl/unx/gtk3/a11y/gtk3atkwrapper.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/gtk3/a11y/gtk3atkwrapper.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -40,9 +40,13 @@ #include #include #include +#include #include #include +#include +#include +#include #include "atkwrapper.hxx" #include "atkregistry.hxx" @@ -406,6 +410,10 @@ wrapper_get_n_children( AtkObject *atk_obj ) { AtkObjectWrapper *obj = ATK_OBJECT_WRAPPER (atk_obj); + + if (obj->mpSysObjChild) + return 1; + gint n = 0; if( obj->mpContext.is() ) @@ -428,6 +436,13 @@ gint i ) { AtkObjectWrapper *obj = ATK_OBJECT_WRAPPER (atk_obj); + + if (obj->mpSysObjChild) + { + g_object_ref(obj->mpSysObjChild); + return obj->mpSysObjChild; + } + AtkObject* child = nullptr; // see comments above atk_object_wrapper_remove_child @@ -874,6 +889,19 @@ } } + // tdf#141197 if we have a sysobj child then include that in the hierarchy + if (UnoWrapperBase* pWrapper = UnoWrapperBase::GetUnoWrapper()) + { + css::uno::Reference xAWTWindow(rxAccessible, css::uno::UNO_QUERY); + VclPtr xWindow = pWrapper->GetWindow(xAWTWindow); + if (xWindow && xWindow->GetType() == WindowType::SYSTEMCHILDWINDOW) + { + const SystemEnvData* pEnvData = static_cast(xWindow.get())->GetSystemData(); + if (GtkWidget *pSysObj = pEnvData ? static_cast(pEnvData->pWidget) : nullptr) + pWrap->mpSysObjChild = gtk_widget_get_accessible(pSysObj); + } + } + return ATK_OBJECT( pWrap ); } catch (const uno::Exception &) diff -Nru libreoffice-7.1.2~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx libreoffice-7.1.3~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx --- libreoffice-7.1.2~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/gtk3/gtk3gtkframe.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1554,8 +1554,13 @@ { m_bDefaultSize = false; + // tdf#131031 Just setting maGeometry.nWidth/nHeight will delete + // the evtl. implicitely existing space at top for the gtk native MenuBar, + // will make the Window too big and the StatusBar at the bottom vanish + // and thus breaks the fix in tdf#130841. + const int nImplicitMenuBarHeight(m_pSalMenu ? m_pSalMenu->GetMenuBarHeight() : 0); maGeometry.nWidth = nWidth; - maGeometry.nHeight = nHeight; + maGeometry.nHeight = nHeight - nImplicitMenuBarHeight; if( isChild( false ) ) widget_set_size_request(nWidth, nHeight); diff -Nru libreoffice-7.1.2~rc2/vcl/unx/gtk3/gtk3gtkinst.cxx libreoffice-7.1.3~rc2/vcl/unx/gtk3/gtk3gtkinst.cxx --- libreoffice-7.1.2~rc2/vcl/unx/gtk3/gtk3gtkinst.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/unx/gtk3/gtk3gtkinst.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -7783,8 +7783,8 @@ gdk_event_free(pKeyEvent); } -#else else +#endif { guint nButton; guint32 nTime; @@ -7806,7 +7806,6 @@ gtk_menu_popup(m_pMenu, nullptr, nullptr, nullptr, nullptr, nButton, nTime); } -#endif if (g_main_loop_is_running(pLoop)) { diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/DataFmtTransl.cxx libreoffice-7.1.3~rc2/vcl/win/dtrans/DataFmtTransl.cxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/DataFmtTransl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/DataFmtTransl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -92,13 +92,13 @@ return sal::static_int_cast(getFormatEtcForClipformat( sal::static_int_cast(cf) )); } -DataFlavor CDataFormatTranslator::getDataFlavorFromFormatEtc( const FORMATETC& aFormatEtc, LCID lcid ) const +DataFlavor CDataFormatTranslator::getDataFlavorFromFormatEtc(sal_uInt32 cfFormat, LCID lcid) const { DataFlavor aFlavor; try { - CLIPFORMAT aClipformat = aFormatEtc.cfFormat; + CLIPFORMAT aClipformat = cfFormat; Any aAny; aAny <<= static_cast< sal_Int32 >( aClipformat ); diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/DataFmtTransl.hxx libreoffice-7.1.3~rc2/vcl/win/dtrans/DataFmtTransl.hxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/DataFmtTransl.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/DataFmtTransl.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -42,7 +42,7 @@ CFormatEtc getFormatEtcFromDataFlavor( const css::datatransfer::DataFlavor& aDataFlavor ) const; css::datatransfer::DataFlavor getDataFlavorFromFormatEtc( - const FORMATETC& aFormatEtc, LCID lcid = GetThreadLocale( ) ) const; + sal_uInt32 cfFormat, LCID lcid = GetThreadLocale()) const; static CFormatEtc getFormatEtcForClipformat( CLIPFORMAT cf ); static CFormatEtc getFormatEtcForClipformatName( const OUString& aClipFmtName ); diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/DOTransferable.cxx libreoffice-7.1.3~rc2/vcl/win/dtrans/DOTransferable.cxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/DOTransferable.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/DOTransferable.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -25,6 +25,7 @@ #include "DOTransferable.hxx" #include "ImplHelper.hxx" #include "WinClip.hxx" +#include "WinClipboard.hxx" #include "DTransHelper.hxx" #include "TxtCnvtHlp.hxx" #include "MimeAttrib.hxx" @@ -208,19 +209,6 @@ } // end namespace -Reference< XTransferable > CDOTransferable::create( const Reference< XComponentContext >& rxContext, - IDataObjectPtr pIDataObject ) -{ - CDOTransferable* pTransf = new CDOTransferable(rxContext, pIDataObject); - Reference refDOTransf(pTransf); - - pTransf->acquire(); - pTransf->initFlavorList(); - pTransf->release(); - - return refDOTransf; -} - CDOTransferable::CDOTransferable( const Reference< XComponentContext >& rxContext, IDataObjectPtr rDataObject ) : m_rDataObject( rDataObject ), @@ -229,6 +217,20 @@ m_bUnicodeRegistered( false ), m_TxtFormatOnClipboard( CF_INVALID ) { + initFlavorList(); +} + +CDOTransferable::CDOTransferable( + const Reference& rxContext, + const css::uno::Reference& xClipboard, + const std::vector& rFormats) + : m_xClipboard(xClipboard) + , m_xContext(rxContext) + , m_DataFormatTranslator(rxContext) + , m_bUnicodeRegistered(false) + , m_TxtFormatOnClipboard(CF_INVALID) +{ + initFlavorListFromFormatList(rFormats); } Any SAL_CALL CDOTransferable::getTransferData( const DataFlavor& aFlavor ) @@ -312,6 +314,7 @@ void CDOTransferable::initFlavorList( ) { + std::vector aFormats; sal::systools::COMReference pEnumFormatEtc; HRESULT hr = m_rDataObject->EnumFormatEtc( DATADIR_GET, &pEnumFormatEtc ); if ( SUCCEEDED( hr ) ) @@ -321,39 +324,38 @@ FORMATETC fetc; while ( S_OK == pEnumFormatEtc->Next( 1, &fetc, nullptr ) ) { - // we use locales only to determine the - // charset if there is text on the cliboard - // we don't offer this format - if ( CF_LOCALE == fetc.cfFormat ) - continue; - - DataFlavor aFlavor = formatEtcToDataFlavor( fetc ); - - // if text or oemtext is offered we also pretend to have unicode text - if ( CDataFormatTranslator::isOemOrAnsiTextFormat( fetc.cfFormat ) && - !m_bUnicodeRegistered ) - { - addSupportedFlavor( aFlavor ); + aFormats.push_back(fetc.cfFormat); + // see MSDN IEnumFORMATETC + CoTaskMemFree( fetc.ptd ); + } + initFlavorListFromFormatList(aFormats); + } +} - m_TxtFormatOnClipboard = fetc.cfFormat; - m_bUnicodeRegistered = true; +void CDOTransferable::initFlavorListFromFormatList(const std::vector& rFormats) +{ + for (sal_uInt32 cfFormat : rFormats) + { + // we use locales only to determine the + // charset if there is text on the cliboard + // we don't offer this format + if (CF_LOCALE == cfFormat) + continue; - // register unicode text as accompany format - aFlavor = formatEtcToDataFlavor( - CDataFormatTranslator::getFormatEtcForClipformat( CF_UNICODETEXT ) ); - addSupportedFlavor( aFlavor ); - } - else if ( (CF_UNICODETEXT == fetc.cfFormat) && !m_bUnicodeRegistered ) + // if text or oemtext is offered we pretend to have unicode text + if (CDataFormatTranslator::isTextFormat(cfFormat)) + { + if (!m_bUnicodeRegistered) { - addSupportedFlavor( aFlavor ); - m_bUnicodeRegistered = true; - } - else - addSupportedFlavor( aFlavor ); + m_TxtFormatOnClipboard = cfFormat; + m_bUnicodeRegistered = true; - // see MSDN IEnumFORMATETC - CoTaskMemFree( fetc.ptd ); + // register unicode text as format + addSupportedFlavor(formatEtcToDataFlavor(CF_UNICODETEXT)); + } } + else + addSupportedFlavor(formatEtcToDataFlavor(cfFormat)); } } @@ -370,18 +372,9 @@ } } -DataFlavor CDOTransferable::formatEtcToDataFlavor( const FORMATETC& aFormatEtc ) +DataFlavor CDOTransferable::formatEtcToDataFlavor(sal_uInt32 cfFormat) { - LCID lcid = 0; - - // for non-unicode text format we must provide a locale to get - // the character-set of the text, if there is no locale on the - // clipboard we assume the text is in a charset appropriate for - // the current thread locale - if ( (CF_TEXT == aFormatEtc.cfFormat) || (CF_OEMTEXT == aFormatEtc.cfFormat) ) - lcid = getLocaleFromClipboard( ); - - return m_DataFormatTranslator.getDataFlavorFromFormatEtc( aFormatEtc, lcid ); + return m_DataFormatTranslator.getDataFlavorFromFormatEtc(cfFormat); } // returns the current locale on clipboard; if there is no locale on @@ -411,6 +404,18 @@ return lcid; } +void CDOTransferable::tryToGetIDataObjectIfAbsent() +{ + if (!m_rDataObject.is()) + { + auto xClipboard = m_xClipboard.get(); // holding the reference while we get the object + if (CWinClipboard* pWinClipboard = dynamic_cast(xClipboard.get())) + { + m_rDataObject = pWinClipboard->getIDataObject(); + } + } +} + // I think it's not necessary to call ReleaseStgMedium // in case of failures because nothing should have been // allocated etc. @@ -418,6 +423,9 @@ CDOTransferable::ByteSequence_t CDOTransferable::getClipboardData( CFormatEtc& aFormatEtc ) { STGMEDIUM stgmedium; + tryToGetIDataObjectIfAbsent(); + if (!m_rDataObject.is()) // Maybe we are shutting down, and clipboard is already destroyed? + throw RuntimeException(); HRESULT hr = m_rDataObject->GetData( aFormatEtc, &stgmedium ); // in case of failure to get a WMF metafile handle, try to get a memory block diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/DOTransferable.hxx libreoffice-7.1.3~rc2/vcl/win/dtrans/DOTransferable.hxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/DOTransferable.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/DOTransferable.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -23,12 +23,16 @@ #include #include "DataFmtTransl.hxx" +#include #include #include #include +#include #include +#include + // forward class CFormatEtc; @@ -39,9 +43,6 @@ public: typedef css::uno::Sequence< sal_Int8 > ByteSequence_t; - static css::uno::Reference< css::datatransfer::XTransferable > create( - const css::uno::Reference< css::uno::XComponentContext >& rxContext, IDataObjectPtr pIDataObject ); - // XTransferable virtual css::uno::Any SAL_CALL getTransferData( const css::datatransfer::DataFlavor& aFlavor ) override; @@ -54,18 +55,25 @@ virtual css::uno::Any SAL_CALL getData( const css::uno::Sequence& aProcessId ) override; -private: + explicit CDOTransferable( + const css::uno::Reference< css::uno::XComponentContext >& rxContext, + const css::uno::Reference& xClipboard, + const std::vector& rFormats); + explicit CDOTransferable( const css::uno::Reference< css::uno::XComponentContext >& rxContext, IDataObjectPtr rDataObject ); +private: // some helper functions void initFlavorList( ); + void initFlavorListFromFormatList(const std::vector& rFormats); void addSupportedFlavor( const css::datatransfer::DataFlavor& aFlavor ); - css::datatransfer::DataFlavor formatEtcToDataFlavor( const FORMATETC& aFormatEtc ); + css::datatransfer::DataFlavor formatEtcToDataFlavor(sal_uInt32 cfFormat); + void tryToGetIDataObjectIfAbsent(); ByteSequence_t getClipboardData( CFormatEtc& aFormatEtc ); OUString synthesizeUnicodeText( ); @@ -75,6 +83,7 @@ const css::datatransfer::DataFlavor& rhs ); private: + css::uno::WeakReference m_xClipboard; IDataObjectPtr m_rDataObject; css::uno::Sequence< css::datatransfer::DataFlavor > m_FlavorList; const css::uno::Reference< css::uno::XComponentContext > m_xContext; diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/FetcList.cxx libreoffice-7.1.3~rc2/vcl/win/dtrans/FetcList.cxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/FetcList.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/FetcList.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -285,10 +285,7 @@ bool CFormatRegistrar::hasUnicodeFlavor( const Reference< XTransferable >& aXTransferable ) const { - CFormatEtc fetc( CF_UNICODETEXT ); - - DataFlavor aFlavor = - m_DataFormatTranslator.getDataFlavorFromFormatEtc( fetc ); + DataFlavor aFlavor = m_DataFormatTranslator.getDataFlavorFromFormatEtc(CF_UNICODETEXT); return aXTransferable->isDataFlavorSupported( aFlavor ); } diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/target.cxx libreoffice-7.1.3~rc2/vcl/win/dtrans/target.cxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/target.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/target.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -321,8 +321,7 @@ else { // Convert the IDataObject to a XTransferable - m_currentData= CDOTransferable::create( - m_xContext, IDataObjectPtr(pDataObj)); + m_currentData = new CDOTransferable(m_xContext, IDataObjectPtr(pDataObj)); } //<-- TRA diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/WinClipboard.cxx libreoffice-7.1.3~rc2/vcl/win/dtrans/WinClipboard.cxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/WinClipboard.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/WinClipboard.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -108,6 +108,32 @@ uno::Reference rClipContent; + // get the current format list from clipboard + if (UINT nFormats; !GetUpdatedClipboardFormats(nullptr, 0, &nFormats) + && GetLastError() == ERROR_INSUFFICIENT_BUFFER) + { + std::vector aUINTFormats(nFormats); + if (GetUpdatedClipboardFormats(aUINTFormats.data(), nFormats, &nFormats)) + { + std::vector aFormats(aUINTFormats.begin(), aUINTFormats.end()); + rClipContent = new CDOTransferable(m_xContext, this, aFormats); + + osl::MutexGuard aGuard2(m_ClipContentMutex); + m_foreignContent = rClipContent; + } + } + + return rClipContent; +} + +IDataObjectPtr CWinClipboard::getIDataObject() +{ + osl::MutexGuard aGuard(m_aMutex); + + if (rBHelper.bDisposed) + throw lang::DisposedException("object is already disposed", + static_cast(this)); + // get the current dataobject from clipboard IDataObjectPtr pIDataObject; HRESULT hr = m_MtaOleClipboard.getClipboard(&pIDataObject); @@ -116,16 +142,10 @@ { // create an apartment neutral dataobject and initialize it with a // com smart pointer to the IDataObject from clipboard - IDataObjectPtr pIDo(new CAPNDataObject(pIDataObject)); - - // remember pIDo destroys itself due to the smart pointer - rClipContent = CDOTransferable::create(m_xContext, pIDo); - - osl::MutexGuard aGuard2(m_ClipContentMutex); - m_foreignContent = rClipContent; + pIDataObject = new CAPNDataObject(pIDataObject); } - return rClipContent; + return pIDataObject; } void SAL_CALL CWinClipboard::setContents( diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/WinClipboard.hxx libreoffice-7.1.3~rc2/vcl/win/dtrans/WinClipboard.hxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/WinClipboard.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/WinClipboard.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -32,10 +32,10 @@ #include #include #include +#include #include "MtaOleClipb.hxx" - -class CXNotifyingDataObject; +#include "XNotifyingDataObject.hxx" // implements the XClipboard[Ex] ... interfaces // for the clipboard viewer mechanism we need a static callback function @@ -113,6 +113,8 @@ virtual OUString SAL_CALL getImplementationName() override; virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override; virtual css::uno::Sequence SAL_CALL getSupportedServiceNames() override; + + IDataObjectPtr getIDataObject(); }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.1.2~rc2/vcl/win/dtrans/XTDataObject.cxx libreoffice-7.1.3~rc2/vcl/win/dtrans/XTDataObject.cxx --- libreoffice-7.1.2~rc2/vcl/win/dtrans/XTDataObject.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/vcl/win/dtrans/XTDataObject.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -636,10 +636,10 @@ DataFlavor aFlavor; if ( m_FormatRegistrar.hasSynthesizedLocale( ) ) - aFlavor = - m_DataFormatTranslator.getDataFlavorFromFormatEtc( aFormatEtc, CFormatRegistrar::getSynthesizedLocale( ) ); + aFlavor = m_DataFormatTranslator.getDataFlavorFromFormatEtc( + aFormatEtc.cfFormat, CFormatRegistrar::getSynthesizedLocale()); else - aFlavor = m_DataFormatTranslator.getDataFlavorFromFormatEtc( aFormatEtc ); + aFlavor = m_DataFormatTranslator.getDataFlavorFromFormatEtc(aFormatEtc.cfFormat); if ( !aFlavor.MimeType.getLength( ) ) throw UnsupportedFlavorException( ); diff -Nru libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx --- libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -1802,7 +1802,7 @@ // The spec says 0 is the same as the lack of the value, so don't parse that. if ( nIntValue ) { - if ( !IsStyleSheetImport() ) + if (!IsStyleSheetImport() && !IsNumberingImport()) m_pImpl->deferCharacterProperty( nSprmId, uno::makeAny( nIntValue )); else if (!m_pImpl->IsDocDefaultsImport()) { @@ -3666,10 +3666,11 @@ break; case NS_ooxml::LN_NUMBERING: { - + m_pImpl->SetNumberingImport(true); //the same for list tables ref->resolve( *m_pImpl->GetListTable() ); m_pImpl->GetListTable( )->CreateNumberingRules( ); + m_pImpl->SetNumberingImport(false); } break; case NS_ooxml::LN_THEMETABLE: @@ -4001,6 +4002,11 @@ return m_pImpl->IsStyleSheetImport(); } +bool DomainMapper::IsNumberingImport() const +{ + return m_pImpl->IsNumberingImport(); +} + void DomainMapper::enableInteropGrabBag(const OUString& aName) { m_pImpl->m_aInteropGrabBagName = aName; diff -Nru libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper.hxx libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper.hxx --- libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -114,6 +114,7 @@ bool IsInTable() const; void SetDocDefaultsImport(bool bSet); bool IsStyleSheetImport() const; + bool IsNumberingImport() const; bool IsInShape() const; void hasControls( const bool bSet ) { mbHasControls = bSet; } diff -Nru libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx --- libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -299,6 +299,7 @@ m_sDefaultParaStyleName(), m_bInDocDefaultsImport(false), m_bInStyleSheetImport( false ), + m_bInNumberingImport(false), m_bInAnyTableImport( false ), m_eInHeaderFooterImport( HeaderFooterImportState::none ), m_bDiscardHeaderFooter( false ), diff -Nru libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx --- libreoffice-7.1.2~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/writerfilter/source/dmapper/DomainMapper_Impl.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -510,6 +510,7 @@ OUString m_sDefaultParaStyleName; //caches the ConvertedStyleName of the default paragraph style bool m_bInDocDefaultsImport; bool m_bInStyleSheetImport; //in import of fonts, styles, lists or lfos + bool m_bInNumberingImport; //in import of numbering (i.e. numbering.xml) bool m_bInAnyTableImport; //in import of fonts, styles, lists or lfos enum class HeaderFooterImportState { @@ -770,6 +771,8 @@ bool IsDocDefaultsImport()const { return m_bInDocDefaultsImport;} void SetStyleSheetImport( bool bSet ) { m_bInStyleSheetImport = bSet;} bool IsStyleSheetImport()const { return m_bInStyleSheetImport;} + void SetNumberingImport( bool bSet ) { m_bInNumberingImport = bSet;} + bool IsNumberingImport() const { return m_bInNumberingImport;} void SetAnyTableImport( bool bSet ) { m_bInAnyTableImport = bSet;} bool IsAnyTableImport()const { return m_bInAnyTableImport;} bool IsInShape()const { return m_aAnchoredStack.size() > 0;} diff -Nru libreoffice-7.1.2~rc2/writerfilter/source/dmapper/GraphicImport.cxx libreoffice-7.1.3~rc2/writerfilter/source/dmapper/GraphicImport.cxx --- libreoffice-7.1.2~rc2/writerfilter/source/dmapper/GraphicImport.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/writerfilter/source/dmapper/GraphicImport.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -810,25 +810,51 @@ // Include effect extent in the margin to bring Writer layout closer // to Word. But do this for non-rotated shapes only, where effect // extents map to increased margins as-is. + + sal_Int32 nLineWidth{}; + if (xShapeProps->getPropertySetInfo()->hasPropertyByName("LineWidth")) + { + xShapeProps->getPropertyValue("LineWidth") >>= nLineWidth; + } + if (m_pImpl->m_oEffectExtentLeft) { - m_pImpl->nLeftMargin += oox::drawingml::convertEmuToHmm( + sal_Int32 nLeft = oox::drawingml::convertEmuToHmm( *m_pImpl->m_oEffectExtentLeft); + if (nLeft >= nLineWidth / 2) + { + nLeft -= nLineWidth / 2; + } + m_pImpl->nLeftMargin += nLeft; } if (m_pImpl->m_oEffectExtentTop) { - m_pImpl->nTopMargin += oox::drawingml::convertEmuToHmm( - *m_pImpl->m_oEffectExtentTop); + sal_Int32 nTop = oox::drawingml::convertEmuToHmm(*m_pImpl->m_oEffectExtentTop); + if (nTop >= nLineWidth / 2) + { + nTop -= nLineWidth / 2; + } + m_pImpl->nTopMargin += nTop; } if (m_pImpl->m_oEffectExtentRight) { - m_pImpl->nRightMargin += oox::drawingml::convertEmuToHmm( + sal_Int32 nRight = oox::drawingml::convertEmuToHmm( *m_pImpl->m_oEffectExtentRight); + if (nRight >= nLineWidth / 2) + { + nRight -= nLineWidth / 2; + } + m_pImpl->nRightMargin += nRight; } if (m_pImpl->m_oEffectExtentBottom) { - m_pImpl->nBottomMargin += oox::drawingml::convertEmuToHmm( + sal_Int32 nBottom = oox::drawingml::convertEmuToHmm( *m_pImpl->m_oEffectExtentBottom); + if (nBottom >= nLineWidth / 2) + { + nBottom -= nLineWidth / 2; + } + m_pImpl->nBottomMargin += nBottom; } } } diff -Nru libreoffice-7.1.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx libreoffice-7.1.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx --- libreoffice-7.1.2~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/writerfilter/source/rtftok/rtfdocumentimpl.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -371,6 +371,9 @@ void RTFDocumentImpl::outputSettingsTable() { + // tdf#136740: do not change trarget document settings when pasting + if (!m_bIsNewDoc) + return; writerfilter::Reference::Pointer_t pProp = new RTFReferenceProperties(m_aSettingsTableAttributes, m_aSettingsTableSprms); RTFReferenceTable::Entries_t aSettingsTableEntries; diff -Nru libreoffice-7.1.2~rc2/xmlsecurity/source/helper/ooxmlsecparser.cxx libreoffice-7.1.3~rc2/xmlsecurity/source/helper/ooxmlsecparser.cxx --- libreoffice-7.1.2~rc2/xmlsecurity/source/helper/ooxmlsecparser.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/xmlsecurity/source/helper/ooxmlsecparser.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -11,32 +11,1241 @@ #include "ooxmlsecparser.hxx" #include #include + +#include +#include + +#include + #include -using namespace com::sun::star; +using namespace com::sun::star; + +class OOXMLSecParser::Context +{ + protected: + friend class OOXMLSecParser; + OOXMLSecParser & m_rParser; + private: + std::unique_ptr m_pOldNamespaceMap; + + public: + Context(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : m_rParser(rParser) + , m_pOldNamespaceMap(std::move(pOldNamespaceMap)) + { + } + + virtual ~Context() = default; + + virtual void StartElement( + css::uno::Reference const& /*xAttrs*/) + { + } + + virtual void EndElement() + { + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const /*nNamespace*/, OUString const& /*rName*/); + + virtual void Characters(OUString const& /*rChars*/) + { + } +}; + +// it's possible that an unsupported element has an Id attribute and a +// ds:Reference digesting it - probably this means XSecController needs to know +// about it. (For known elements, the Id attribute is only processed according +// to the schema.) +class OOXMLSecParser::UnknownContext + : public OOXMLSecParser::Context +{ + public: + UnknownContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + m_rParser.HandleIdAttr(xAttrs); + } +}; + +auto OOXMLSecParser::Context::CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const /*nNamespace*/, OUString const& /*rName*/) +-> std::unique_ptr +{ + // default: create new base context + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); +} + +/** +note: anything in ds:Object should be trusted *only* if there is a ds:Reference + to it so it is signed (exception: the xades:EncapsulatedX509Certificate). + ds:SignedInfo precedes all ds:Object. + + There may be multiple ds:Signature for purpose of counter-signatures + but the way XAdES describes these, only the ds:SignatureValue element + would be referenced, so requiring a ds:Reference for anything in + ds:Object shouldn't cause issues. + */ +class OOXMLSecParser::ReferencedContextImpl + : public OOXMLSecParser::Context +{ + protected: + bool m_isReferenced; + + public: + ReferencedContextImpl(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_isReferenced(isReferenced) + { + } + + OUString CheckIdAttrReferenced(css::uno::Reference const& xAttrs) + { + OUString const id(m_rParser.HandleIdAttr(xAttrs)); + if (!id.isEmpty() && m_rParser.m_pXSecController->haveReferenceForId(id)) + { + m_isReferenced = true; + } + return id; + } +}; + +class OOXMLSecParser::DsX509CertificateContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + DsX509CertificateContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::DsX509SerialNumberContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + DsX509SerialNumberContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::DsX509IssuerNameContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + DsX509IssuerNameContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::DsX509IssuerSerialContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rX509IssuerName; + OUString & m_rX509SerialNumber; + + public: + DsX509IssuerSerialContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rIssuerName, OUString & rSerialNumber) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rX509IssuerName(rIssuerName) + , m_rX509SerialNumber(rSerialNumber) + { + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "X509IssuerName") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_rX509IssuerName); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "X509SerialNumber") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_rX509SerialNumber); + } + // missing: ds:X509SKI, ds:X509SubjectName, ds:X509CRL + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +/// can't be sure what is supposed to happen here because the spec is clear as mud +class OOXMLSecParser::DsX509DataContext + : public OOXMLSecParser::Context +{ + private: + // sigh... "No ordering is implied by the above constraints." + // so store the ball of mud in vectors and try to figure it out later. + std::vector> m_X509IssuerSerials; + std::vector m_X509Certificates; + + public: + DsX509DataContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void EndElement() override + { + m_rParser.m_pXSecController->setX509Data(m_X509IssuerSerials, m_X509Certificates); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "X509IssuerSerial") + { + m_X509IssuerSerials.emplace_back(); + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_X509IssuerSerials.back().first, m_X509IssuerSerials.back().second); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "X509Certificate") + { + m_X509Certificates.emplace_back(); + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_X509Certificates.back()); + } + // missing: ds:X509SKI, ds:X509SubjectName, ds:X509CRL + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsKeyInfoContext + : public OOXMLSecParser::Context +{ + public: + DsKeyInfoContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + m_rParser.HandleIdAttr(xAttrs); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "X509Data") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + // missing: ds:PGPData + // missing: ds:KeyName, ds:KeyValue, ds:RetrievalMethod, ds:SPKIData, ds:MgmtData + // (old code would read ds:Transform inside ds:RetrievalMethod but + // presumably that was a bug) + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } + +}; + +class OOXMLSecParser::DsSignatureValueContext + : public OOXMLSecParser::Context +{ + private: + OUString m_Value; + + public: + DsSignatureValueContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + m_rParser.HandleIdAttr(xAttrs); + } + + virtual void EndElement() override + { + m_rParser.m_pXSecController->setSignatureValue(m_Value); + } + + virtual void Characters(OUString const& rChars) override + { + m_Value += rChars; + } +}; + +class OOXMLSecParser::DsDigestValueContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + DsDigestValueContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void StartElement( + css::uno::Reference const& /*xAttrs*/) override + { + m_rValue.clear(); + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::DsDigestMethodContext + : public OOXMLSecParser::Context +{ + private: + sal_Int32 & m_rReferenceDigestID; + + public: + DsDigestMethodContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + sal_Int32 & rReferenceDigestID) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rReferenceDigestID(rReferenceDigestID) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + OUString ouAlgorithm = xAttrs->getValueByName("Algorithm"); + + SAL_WARN_IF( ouAlgorithm.isEmpty(), "xmlsecurity.helper", "no Algorithm in Reference" ); + if (!ouAlgorithm.isEmpty()) + { + SAL_WARN_IF( ouAlgorithm != ALGO_XMLDSIGSHA1 + && ouAlgorithm != ALGO_XMLDSIGSHA256 + && ouAlgorithm != ALGO_XMLDSIGSHA512, + "xmlsecurity.helper", "Algorithm neither SHA1, SHA256 nor SHA512"); + if (ouAlgorithm == ALGO_XMLDSIGSHA1) + m_rReferenceDigestID = css::xml::crypto::DigestID::SHA1; + else if (ouAlgorithm == ALGO_XMLDSIGSHA256) + m_rReferenceDigestID = css::xml::crypto::DigestID::SHA256; + else if (ouAlgorithm == ALGO_XMLDSIGSHA512) + m_rReferenceDigestID = css::xml::crypto::DigestID::SHA512; + else + m_rReferenceDigestID = 0; + } + } +}; + +class OOXMLSecParser::DsTransformContext + : public OOXMLSecParser::Context +{ + private: + bool & m_rIsC14N; + + public: + DsTransformContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool & rIsC14N) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rIsC14N(rIsC14N) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + OUString aAlgorithm = xAttrs->getValueByName("Algorithm"); + + if (aAlgorithm == ALGO_RELATIONSHIP) + { + m_rIsC14N = true; + } + } +}; + +class OOXMLSecParser::DsTransformsContext + : public OOXMLSecParser::Context +{ + private: + bool & m_rIsC14N; + + public: + DsTransformsContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool & rIsC14N) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rIsC14N(rIsC14N) + { + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "Transform") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_rIsC14N); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsReferenceContext + : public OOXMLSecParser::Context +{ + private: + OUString m_URI; + OUString m_Type; + OUString m_DigestValue; + bool m_IsC14N = false; + // Relevant for ODF. The digest algorithm selected by the DigestMethod + // element's Algorithm attribute. @see css::xml::crypto::DigestID. + sal_Int32 m_nReferenceDigestID = css::xml::crypto::DigestID::SHA256; + + public: + DsReferenceContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + m_rParser.HandleIdAttr(xAttrs); + + m_URI = xAttrs->getValueByName("URI"); + SAL_WARN_IF(m_URI.isEmpty(), "xmlsecurity.helper", "URI is empty"); + // Remember the type of this reference. + m_Type = xAttrs->getValueByName("Type"); + } + + virtual void EndElement() override + { + if (m_URI.startsWith("#")) + { + /* + * remove the first character '#' from the attribute value + */ + m_rParser.m_pXSecController->addReference(m_URI.copy(1), m_nReferenceDigestID, m_Type); + } + else + { + if (m_IsC14N) // this is determined by nested ds:Transform + { + m_rParser.m_pXSecController->addStreamReference(m_URI, false, m_nReferenceDigestID); + } + else + /* + * it must be an octet stream + */ + { + m_rParser.m_pXSecController->addStreamReference(m_URI, true, m_nReferenceDigestID); + } + } + + m_rParser.m_pXSecController->setDigestValue(m_nReferenceDigestID, m_DigestValue); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "Transforms") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_IsC14N); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "DigestMethod") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_nReferenceDigestID); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "DigestValue") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_DigestValue); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsSignatureMethodContext + : public OOXMLSecParser::Context +{ + public: + DsSignatureMethodContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + OUString ouAlgorithm = xAttrs->getValueByName("Algorithm"); + if (ouAlgorithm == ALGO_ECDSASHA1 || ouAlgorithm == ALGO_ECDSASHA256 + || ouAlgorithm == ALGO_ECDSASHA512) + { + m_rParser.m_pXSecController->setSignatureMethod(svl::crypto::SignatureMethodAlgorithm::ECDSA); + } + } +}; + +class OOXMLSecParser::DsSignedInfoContext + : public OOXMLSecParser::Context +{ + public: + DsSignedInfoContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + m_rParser.HandleIdAttr(xAttrs); + } + + virtual void EndElement() override + { + m_rParser.m_pXSecController->setReferenceCount(); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "SignatureMethod") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "Reference") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + // missing: ds:CanonicalizationMethod + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::XadesCertDigestContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rDigestValue; + sal_Int32 & m_rReferenceDigestID; + + public: + XadesCertDigestContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rDigestValue, sal_Int32 & rReferenceDigestID) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rDigestValue(rDigestValue) + , m_rReferenceDigestID(rReferenceDigestID) + { + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "DigestMethod") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_rReferenceDigestID); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "DigestValue") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_rDigestValue); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::XadesCertContext + : public OOXMLSecParser::ReferencedContextImpl +{ + private: + sal_Int32 m_nReferenceDigestID = css::xml::crypto::DigestID::SHA1; + OUString m_CertDigest; + OUString m_X509IssuerName; + OUString m_X509SerialNumber; + + public: + XadesCertContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void EndElement() override + { + if (m_isReferenced) + { + m_rParser.m_pXSecController->setX509CertDigest(m_CertDigest, m_nReferenceDigestID, m_X509IssuerName, m_X509SerialNumber); + } + else + { + SAL_INFO("xmlsecurity.helper", "ignoring unsigned xades:Cert"); + } + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "CertDigest") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_CertDigest, m_nReferenceDigestID); + } + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "IssuerSerial") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_X509IssuerName, m_X509SerialNumber); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::XadesSigningCertificateContext + : public OOXMLSecParser::ReferencedContextImpl +{ + public: + XadesSigningCertificateContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "Cert") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::XadesSigningTimeContext + : public OOXMLSecParser::ReferencedContextImpl +{ + private: + OUString m_Value; + + public: + XadesSigningTimeContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void EndElement() override + { + if (m_isReferenced) + { + m_rParser.m_pXSecController->setDate("", m_Value); + } + else + { + SAL_INFO("xmlsecurity.helper", "ignoring unsigned SigningTime"); + } + } + + virtual void Characters(OUString const& rChars) override + { + m_Value += rChars; + } +}; + +class OOXMLSecParser::XadesSignedSignaturePropertiesContext + : public OOXMLSecParser::ReferencedContextImpl +{ + public: + XadesSignedSignaturePropertiesContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + CheckIdAttrReferenced(xAttrs); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "SigningTime") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "SigningCertificate") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + // missing: xades:SignaturePolicyIdentifier, xades:SignatureProductionPlace, xades:SignerRole + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::XadesSignedPropertiesContext + : public OOXMLSecParser::ReferencedContextImpl +{ + public: + XadesSignedPropertiesContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + CheckIdAttrReferenced(xAttrs); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "SignedSignatureProperties") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + // missing: xades:SignedDataObjectProperties + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::XadesQualifyingPropertiesContext + : public OOXMLSecParser::ReferencedContextImpl +{ + public: + XadesQualifyingPropertiesContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + CheckIdAttrReferenced(xAttrs); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "SignedProperties") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + // missing: xades:UnsignedSignatureProperties + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::MsodigsigSetupIDContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + MsodigsigSetupIDContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::MsodigsigSignatureCommentsContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + MsodigsigSignatureCommentsContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::MsodigsigSignatureInfoV1Context + : public OOXMLSecParser::ReferencedContextImpl +{ + private: + OUString m_SetupID; + OUString m_SignatureComments; + + public: + MsodigsigSignatureInfoV1Context(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + CheckIdAttrReferenced(xAttrs); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_MSODIGSIG && rName == "SetupID") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_SetupID); + } + if (nNamespace == XML_NAMESPACE_MSODIGSIG && rName == "SignatureComments") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_SignatureComments); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } + + virtual void EndElement() override + { + if (m_isReferenced) + { + if (!m_SetupID.isEmpty()) + { + m_rParser.m_pXSecController->setSignatureLineId(m_SetupID); + } + if (!m_SignatureComments.isEmpty()) + { + m_rParser.m_pXSecController->setDescription("", m_SignatureComments); + + } + } + else + { + SAL_INFO("xmlsecurity.helper", "ignoring unsigned SignatureInfoV1"); + } + } +}; + +class OOXMLSecParser::MdssiValueContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + MdssiValueContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual void Characters(OUString const& rChars) override + { + m_rValue += rChars; + } +}; + +class OOXMLSecParser::MdssiSignatureTimeContext + : public OOXMLSecParser::Context +{ + private: + OUString & m_rValue; + + public: + MdssiSignatureTimeContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + OUString & rValue) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + , m_rValue(rValue) + { + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_MDSSI && rName == "Value") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_rValue); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + + +class OOXMLSecParser::DsSignaturePropertyContext + : public OOXMLSecParser::ReferencedContextImpl +{ + private: + enum class SignatureProperty { Unknown, Date, Info }; + SignatureProperty m_Property = SignatureProperty::Unknown; + OUString m_Id; + OUString m_Value; + + public: + DsSignaturePropertyContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + m_Id = CheckIdAttrReferenced(xAttrs); + } + + virtual void EndElement() override + { + if (m_isReferenced) + { + switch (m_Property) + { + case SignatureProperty::Unknown: + SAL_INFO("xmlsecurity.helper", "Unknown property in ds:Object ignored"); + break; + case SignatureProperty::Info: + break; // handled by child context + case SignatureProperty::Date: + m_rParser.m_pXSecController->setDate(m_Id, m_Value); + break; + } + } + else + { + SAL_INFO("xmlsecurity.helper", "ignoring unsigned SignatureProperty"); + } + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_MDSSI && rName == "SignatureTime") + { + m_Property = SignatureProperty::Date; + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_Value); + } + if (nNamespace == XML_NAMESPACE_MSODIGSIG && rName == "SignatureInfoV1") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsSignaturePropertiesContext + : public OOXMLSecParser::ReferencedContextImpl +{ + public: + DsSignaturePropertiesContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + CheckIdAttrReferenced(xAttrs); + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "SignatureProperty") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsManifestContext + : public OOXMLSecParser::ReferencedContextImpl +{ + public: + DsManifestContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap, + bool const isReferenced) + : ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), isReferenced) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + CheckIdAttrReferenced(xAttrs); + } + +#if 0 + ??? + virtual void EndElement() override + { + m_rParser.m_pXSecController->setReferenceCount(); + } +#endif + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "Reference") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + // missing: ds:CanonicalizationMethod + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsObjectContext + : public OOXMLSecParser::ReferencedContextImpl +{ + enum class Mode { Default, ValidSignatureLineImage, InvalidSignatureLineImage }; + Mode m_Mode = Mode::Default; + OUString m_Value; + + public: + DsObjectContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + // init with "false" here - the Signature element can't be referenced by its child + : OOXMLSecParser::ReferencedContextImpl(rParser, std::move(pOldNamespaceMap), false) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + OUString const id(CheckIdAttrReferenced(xAttrs)); + if (id == "idValidSigLnImg") + { + m_Mode = Mode::ValidSignatureLineImage; + } + else if (id == "idInvalidSigLnImg") + { + m_Mode = Mode::InvalidSignatureLineImage; + } + } + + virtual void EndElement() override + { + switch (m_Mode) + { + case Mode::ValidSignatureLineImage: + if (m_isReferenced) + { + m_rParser.m_pXSecController->setValidSignatureImage(m_Value); + } + else + { + SAL_INFO("xmlsecurity.helper", "ignoring unsigned SignatureLineValidImage"); + } + break; + case Mode::InvalidSignatureLineImage: + if (m_isReferenced) + { + m_rParser.m_pXSecController->setInvalidSignatureImage(m_Value); + } + else + { + SAL_INFO("xmlsecurity.helper", "ignoring unsigned SignatureLineInvalidImage"); + } + break; + case Mode::Default: + break; + } + } + + virtual void Characters(OUString const& rChars) override + { + m_Value += rChars; + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "SignatureProperties") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + if (nNamespace == XML_NAMESPACE_XADES132 && rName == "QualifyingProperties") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "Manifest") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap), m_isReferenced); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + +class OOXMLSecParser::DsSignatureContext + : public OOXMLSecParser::Context +{ + public: + DsSignatureContext(OOXMLSecParser & rParser, + std::unique_ptr pOldNamespaceMap) + : OOXMLSecParser::Context(rParser, std::move(pOldNamespaceMap)) + { + } + + virtual void StartElement( + css::uno::Reference const& xAttrs) override + { + OUString const ouIdAttr(m_rParser.HandleIdAttr(xAttrs)); + m_rParser.m_rXMLSignatureHelper.StartVerifySignatureElement(); + m_rParser.m_pXSecController->addSignature(); + if (!ouIdAttr.isEmpty()) + { + m_rParser.m_pXSecController->setId( ouIdAttr ); + } + } + + virtual std::unique_ptr CreateChildContext( + std::unique_ptr pOldNamespaceMap, + sal_uInt16 const nNamespace, OUString const& rName) override + { + if (nNamespace == XML_NAMESPACE_DS && rName == "SignedInfo") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "SignatureValue") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "KeyInfo") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + if (nNamespace == XML_NAMESPACE_DS && rName == "Object") + { + return std::make_unique(m_rParser, std::move(pOldNamespaceMap)); + } + return OOXMLSecParser::Context::CreateChildContext(std::move(pOldNamespaceMap), nNamespace, rName); + } +}; + OOXMLSecParser::OOXMLSecParser(XMLSignatureHelper& rXMLSignatureHelper, XSecController* pXSecController) - : m_pXSecController(pXSecController) - ,m_bInDigestValue(false) - ,m_bInSignatureValue(false) - ,m_bInX509Certificate(false) - ,m_bInMdssiValue(false) - ,m_bInSignatureComments(false) - ,m_bInX509IssuerName(false) - ,m_bInX509SerialNumber(false) - ,m_bInCertDigest(false) - ,m_bInValidSignatureImage(false) - ,m_bInInvalidSignatureImage(false) - ,m_bInSignatureLineId(false) - ,m_bReferenceUnresolved(false) + : m_pNamespaceMap(new SvXMLNamespaceMap) + , m_pXSecController(pXSecController) ,m_rXMLSignatureHelper(rXMLSignatureHelper) { + using namespace xmloff::token; + m_pNamespaceMap->Add( GetXMLToken(XML_XML), GetXMLToken(XML_N_XML), XML_NAMESPACE_XML ); + m_pNamespaceMap->Add( "_ds", GetXMLToken(XML_N_DS), XML_NAMESPACE_DS ); + m_pNamespaceMap->Add( "_xades132", GetXMLToken(XML_N_XADES132), XML_NAMESPACE_XADES132); + m_pNamespaceMap->Add( "_xades141", GetXMLToken(XML_N_XADES141), XML_NAMESPACE_XADES141); + m_pNamespaceMap->Add( "_dc", GetXMLToken(XML_N_DC), XML_NAMESPACE_DC ); + m_pNamespaceMap->Add( "_mdssi", NS_MDSSI, XML_NAMESPACE_MDSSI ); + m_pNamespaceMap->Add( "_msodigsig", "http://schemas.microsoft.com/office/2006/digsig", XML_NAMESPACE_MSODIGSIG ); + m_pNamespaceMap->Add( "_office_libo", + GetXMLToken(XML_N_LO_EXT), XML_NAMESPACE_LO_EXT); } OOXMLSecParser::~OOXMLSecParser() { } +OUString OOXMLSecParser::HandleIdAttr(css::uno::Reference const& xAttrs) +{ + OUString const aId = xAttrs->getValueByName("Id"); + if (!aId.isEmpty()) + { + m_pXSecController->collectToVerify(aId); + } + return aId; +} + void SAL_CALL OOXMLSecParser::startDocument() { if (m_xNextHandler.is()) @@ -51,231 +1260,69 @@ void SAL_CALL OOXMLSecParser::startElement(const OUString& rName, const uno::Reference& xAttribs) { - OUString aId = xAttribs->getValueByName("Id"); - if (!aId.isEmpty()) - m_pXSecController->collectToVerify(aId); + assert(m_pNamespaceMap); + std::unique_ptr pRewindMap( + SvXMLImport::processNSAttributes(m_pNamespaceMap, nullptr, xAttribs)); - if (rName == "Signature") - { - m_rXMLSignatureHelper.StartVerifySignatureElement(); - m_pXSecController->addSignature(); - if (!aId.isEmpty()) - m_pXSecController->setId(aId); - } - else if (rName == "SignatureMethod") - { - OUString ouAlgorithm = xAttribs->getValueByName("Algorithm"); - if (ouAlgorithm == ALGO_ECDSASHA1 || ouAlgorithm == ALGO_ECDSASHA256 - || ouAlgorithm == ALGO_ECDSASHA512) - m_pXSecController->setSignatureMethod(svl::crypto::SignatureMethodAlgorithm::ECDSA); - } - else if (rName == "Reference") - { - OUString aURI = xAttribs->getValueByName("URI"); - if (aURI.startsWith("#")) - m_pXSecController->addReference(aURI.copy(1), xml::crypto::DigestID::SHA1, OUString()); - else - { - m_aReferenceURI = aURI; - m_bReferenceUnresolved = true; - } - } - else if (rName == "Transform") - { - if (m_bReferenceUnresolved) - { - OUString aAlgorithm = xAttribs->getValueByName("Algorithm"); - if (aAlgorithm == ALGO_RELATIONSHIP) - { - m_pXSecController->addStreamReference(m_aReferenceURI, /*isBinary=*/false, /*nDigestID=*/xml::crypto::DigestID::SHA256); - m_bReferenceUnresolved = false; - } - } - } - else if (rName == "DigestValue" && !m_bInCertDigest) - { - m_aDigestValue.clear(); - m_bInDigestValue = true; - } - else if (rName == "SignatureValue") - { - m_aSignatureValue.clear(); - m_bInSignatureValue = true; - } - else if (rName == "X509Certificate") - { - m_aX509Certificate.clear(); - m_bInX509Certificate = true; - } - else if (rName == "mdssi:Value") - { - m_aMdssiValue.clear(); - m_bInMdssiValue = true; - } - else if (rName == "SignatureComments") - { - m_aSignatureComments.clear(); - m_bInSignatureComments = true; - } - else if (rName == "X509IssuerName") - { - m_aX509IssuerName.clear(); - m_bInX509IssuerName = true; - } - else if (rName == "X509SerialNumber") - { - m_aX509SerialNumber.clear(); - m_bInX509SerialNumber = true; - } - else if (rName == "xd:CertDigest") - { - m_aCertDigest.clear(); - m_bInCertDigest = true; - } - else if (rName == "Object") + OUString localName; + sal_uInt16 const nPrefix(m_pNamespaceMap->GetKeyByAttrName(rName, &localName)); + + std::unique_ptr pContext; + + if (m_ContextStack.empty()) { - OUString sId = xAttribs->getValueByName("Id"); - if (sId == "idValidSigLnImg") - { - m_aValidSignatureImage.clear(); - m_bInValidSignatureImage = true; - } - else if (sId == "idInvalidSigLnImg") + if (nPrefix == XML_NAMESPACE_DS + && localName == "Signature") { - m_aInvalidSignatureImage.clear(); - m_bInInvalidSignatureImage = true; + pContext.reset(new DsSignatureContext(*this, std::move(pRewindMap))); } else { - SAL_INFO("xmlsecurity.ooxml", "Unknown 'Object' child element: " << rName); + throw css::xml::sax::SAXException( + "xmlsecurity: unexpected root element", nullptr, + css::uno::Any()); } } - else if (rName == "SetupID") - { - m_aSignatureLineId.clear(); - m_bInSignatureLineId = true; - } else { - SAL_INFO("xmlsecurity.ooxml", "Unknown xml element: " << rName); + pContext = m_ContextStack.top()->CreateChildContext( + std::move(pRewindMap), nPrefix, localName); } + m_ContextStack.push(std::move(pContext)); + assert(!pRewindMap); + + m_ContextStack.top()->StartElement(xAttribs); + if (m_xNextHandler.is()) + { m_xNextHandler->startElement(rName, xAttribs); + } + } void SAL_CALL OOXMLSecParser::endElement(const OUString& rName) { - if (rName == "SignedInfo") - m_pXSecController->setReferenceCount(); - else if (rName == "Reference") - { - if (m_bReferenceUnresolved) - { - // No transform algorithm found, assume binary. - m_pXSecController->addStreamReference(m_aReferenceURI, /*isBinary=*/true, /*nDigestID=*/xml::crypto::DigestID::SHA256); - m_bReferenceUnresolved = false; - } - m_pXSecController->setDigestValue(xml::crypto::DigestID::SHA256, m_aDigestValue); - } - else if (rName == "DigestValue" && !m_bInCertDigest) - m_bInDigestValue = false; - else if (rName == "SignatureValue") - { - m_pXSecController->setSignatureValue(m_aSignatureValue); - m_bInSignatureValue = false; - } - else if (rName == "X509Data") - { - std::vector> X509IssuerSerials; - std::vector X509Certificates; - if (!m_aX509Certificate.isEmpty()) - { - X509Certificates.emplace_back(m_aX509Certificate); - } - if (!m_aX509IssuerName.isEmpty() && !m_aX509SerialNumber.isEmpty()) - { - X509IssuerSerials.emplace_back(m_aX509IssuerName, m_aX509SerialNumber); - } - m_pXSecController->setX509Data(X509IssuerSerials, X509Certificates); - } - else if (rName == "X509Certificate") - { - m_bInX509Certificate = false; - } - else if (rName == "mdssi:Value") - { - m_pXSecController->setDate("", m_aMdssiValue); - m_bInMdssiValue = false; - } - else if (rName == "SignatureComments") - { - m_pXSecController->setDescription("", m_aSignatureComments); - m_bInSignatureComments = false; - } - else if (rName == "X509IssuerName") - { - m_bInX509IssuerName = false; - } - else if (rName == "X509SerialNumber") - { - m_bInX509SerialNumber = false; - } - else if (rName == "xd:Cert") - { - m_pXSecController->setX509CertDigest(m_aCertDigest, css::xml::crypto::DigestID::SHA1, m_aX509IssuerName, m_aX509SerialNumber); - } - else if (rName == "xd:CertDigest") - { - m_bInCertDigest = false; - } - else if (rName == "Object") + assert(!m_ContextStack.empty()); // this should be checked by sax parser? + + m_ContextStack.top()->EndElement(); + + if (m_xNextHandler.is()) { - if (m_bInValidSignatureImage) - { - m_pXSecController->setValidSignatureImage(m_aValidSignatureImage); - m_bInValidSignatureImage = false; - } - else if (m_bInInvalidSignatureImage) - { - m_pXSecController->setInvalidSignatureImage(m_aInvalidSignatureImage); - m_bInInvalidSignatureImage = false; - } + m_xNextHandler->endElement(rName); } - else if (rName == "SetupID") + + if (m_ContextStack.top()->m_pOldNamespaceMap) { - m_pXSecController->setSignatureLineId(m_aSignatureLineId); - m_bInSignatureLineId = false; + m_pNamespaceMap = std::move(m_ContextStack.top()->m_pOldNamespaceMap); } - - if (m_xNextHandler.is()) - m_xNextHandler->endElement(rName); + m_ContextStack.pop(); } void SAL_CALL OOXMLSecParser::characters(const OUString& rChars) { - if (m_bInDigestValue && !m_bInCertDigest) - m_aDigestValue += rChars; - else if (m_bInSignatureValue) - m_aSignatureValue += rChars; - else if (m_bInX509Certificate) - m_aX509Certificate += rChars; - else if (m_bInMdssiValue) - m_aMdssiValue += rChars; - else if (m_bInSignatureComments) - m_aSignatureComments += rChars; - else if (m_bInX509IssuerName) - m_aX509IssuerName += rChars; - else if (m_bInX509SerialNumber) - m_aX509SerialNumber += rChars; - else if (m_bInCertDigest) - m_aCertDigest += rChars; - else if (m_bInValidSignatureImage) - m_aValidSignatureImage += rChars; - else if (m_bInInvalidSignatureImage) - m_aInvalidSignatureImage += rChars; - else if (m_bInSignatureLineId) - m_aSignatureLineId += rChars; + assert(!m_ContextStack.empty()); // this should be checked by sax parser? + m_ContextStack.top()->Characters(rChars); if (m_xNextHandler.is()) m_xNextHandler->characters(rChars); diff -Nru libreoffice-7.1.2~rc2/xmlsecurity/source/helper/ooxmlsecparser.hxx libreoffice-7.1.3~rc2/xmlsecurity/source/helper/ooxmlsecparser.hxx --- libreoffice-7.1.2~rc2/xmlsecurity/source/helper/ooxmlsecparser.hxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/xmlsecurity/source/helper/ooxmlsecparser.hxx 2021-04-28 16:17:45.000000000 +0000 @@ -15,6 +15,10 @@ #include +#include + +#include + class XSecController; class XMLSignatureHelper; @@ -25,38 +29,62 @@ css::lang::XInitialization > { +public: + class Context; +private: + class UnknownContext; + class ReferencedContextImpl; + class DsX509CertificateContext; + class DsX509SerialNumberContext; + class DsX509IssuerNameContext; + class DsX509IssuerSerialContext; + class DsX509DataContext; + class DsKeyInfoContext; + class DsSignatureValueContext; + class DsDigestValueContext; + class DsDigestMethodContext; + class DsTransformContext; + class DsTransformsContext; + class DsReferenceContext; + class DsSignatureMethodContext; + class DsSignedInfoContext; + class XadesEncapsulatedX509CertificateContext; + class XadesCertificateValuesContext; + class XadesUnsignedSignaturePropertiesContext; + class XadesUnsignedPropertiesContext; + class XadesCertDigestContext; + class XadesCertContext; + class XadesSigningCertificateContext; + class XadesSigningTimeContext; + class XadesSignedSignaturePropertiesContext; + class XadesSignedPropertiesContext; + class XadesQualifyingPropertiesContext; + class MdssiValueContext; + class MdssiSignatureTimeContext; + class MsodigsigSetupIDContext; + class MsodigsigSignatureCommentsContext; + class MsodigsigSignatureInfoV1Context; + class DsSignaturePropertyContext; + class DsSignaturePropertiesContext; + class DsManifestContext; + class DsObjectContext; + class DsSignatureContext; + class DsigSignaturesContext; + + std::stack> m_ContextStack; + std::unique_ptr m_pNamespaceMap; + XSecController* m_pXSecController; css::uno::Reference m_xNextHandler; - bool m_bInDigestValue; - OUString m_aDigestValue; - bool m_bInSignatureValue; - OUString m_aSignatureValue; - bool m_bInX509Certificate; - OUString m_aX509Certificate; - bool m_bInMdssiValue; - OUString m_aMdssiValue; - bool m_bInSignatureComments; - OUString m_aSignatureComments; - bool m_bInX509IssuerName; - OUString m_aX509IssuerName; - bool m_bInX509SerialNumber; - OUString m_aX509SerialNumber; - bool m_bInCertDigest; - OUString m_aCertDigest; - bool m_bInValidSignatureImage; - OUString m_aValidSignatureImage; - bool m_bInInvalidSignatureImage; - OUString m_aInvalidSignatureImage; - bool m_bInSignatureLineId; - OUString m_aSignatureLineId; - /// Last seen . OUString m_aReferenceURI; /// Already called addStreamReference() for this reference. bool m_bReferenceUnresolved; XMLSignatureHelper& m_rXMLSignatureHelper; + OUString HandleIdAttr(css::uno::Reference const& xAttrs); + public: explicit OOXMLSecParser(XMLSignatureHelper& rXMLSignatureHelper, XSecController* pXSecController); virtual ~OOXMLSecParser() override; diff -Nru libreoffice-7.1.2~rc2/xmlsecurity/source/helper/xmlsignaturehelper.cxx libreoffice-7.1.3~rc2/xmlsecurity/source/helper/xmlsignaturehelper.cxx --- libreoffice-7.1.2~rc2/xmlsecurity/source/helper/xmlsignaturehelper.cxx 2021-03-24 16:28:10.000000000 +0000 +++ libreoffice-7.1.3~rc2/xmlsecurity/source/helper/xmlsignaturehelper.cxx 2021-04-28 16:17:45.000000000 +0000 @@ -405,6 +405,7 @@ catch(const uno::Exception&) { DBG_UNHANDLED_EXCEPTION("xmlsecurity.helper"); + mbError = true; } mpXSecController->releaseSignatureReader();